Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/pepabo/go-netapp
golang's netapp client
https://github.com/pepabo/go-netapp
Last synced: about 1 month ago
JSON representation
golang's netapp client
- Host: GitHub
- URL: https://github.com/pepabo/go-netapp
- Owner: pepabo
- License: mit
- Created: 2017-10-04T01:21:02.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2021-10-04T23:40:20.000Z (about 3 years ago)
- Last Synced: 2024-06-18T23:04:36.763Z (7 months ago)
- Language: Go
- Size: 244 KB
- Stars: 16
- Watchers: 9
- Forks: 23
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# go-netapp
golang's netapp client## example
```golang
c, err := netapp.NewClient(
,
,
&netapp.ClientOptions{
},
)
if err != nil {
fmt.Fprintf(os.Stderr, "error: %v\n", err)
os.Exit(1)
}qRes, _, err := c.QuotaReport.Report(&netapp.QuotaReportOptions{
MaxRecords: 1,
Query: &netapp.QuotaReportEntryQuery{
QuotaReportEntry: &netapp.QuotaReportEntry{
QuotaTarget: quotaTarget,
},
},
})
```## Contribution
1. Fork ([https://github.com/pepabo/go-netapp/fork](https://github.com/pepabo/go-netapp/fork))
1. Create a feature branch
1. Commit your changes
1. Rebase your local changes against the master branch
1. Run test suite with the `go test ./...` command and confirm that it passes
1. Run `gofmt -s`
1. Create a new Pull Request## Author
[pyama86](https://github.com/pyama86)