https://github.com/nrdcg/auroradns
Go library for accessing the Aurora DNS API.
https://github.com/nrdcg/auroradns
api-client auroradns dns-client go golang pcextreme
Last synced: 5 months ago
JSON representation
Go library for accessing the Aurora DNS API.
- Host: GitHub
- URL: https://github.com/nrdcg/auroradns
- Owner: nrdcg
- License: mpl-2.0
- Created: 2019-02-02T01:50:16.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2024-05-12T01:30:53.000Z (about 1 year ago)
- Last Synced: 2024-06-19T00:29:05.914Z (12 months ago)
- Topics: api-client, auroradns, dns-client, go, golang, pcextreme
- Language: Go
- Homepage: https://godoc.org/github.com/nrdcg/auroradns
- Size: 41 KB
- Stars: 3
- Watchers: 2
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Go library for accessing the Aurora DNS API
[](https://github.com/nrdcg/auroradns/actions)
[](https://pkg.go.dev/github.com/nrdcg/auroradns)
[](https://goreportcard.com/report/github.com/nrdcg/auroradns)An Aurora DNS API client written in Go.
auroradns is a Go client library for accessing the Aurora DNS API.
## Available API methods
Zones:
- create
- delete
- listRecords:
- create
- delete
- list## Example
```go
tr, _ := auroradns.NewTokenTransport("apiKey", "secret")
client, _ := auroradns.NewClient(tr.Client())zones, _, _ := client.GetZones()
fmt.Println(zones)
```## API Documentation
- [API docs](https://libcloud.readthedocs.io/en/latest/dns/drivers/auroradns.html#api-docs)