Documentation ¶
Overview ¶
libdns client for IONOS DNS API
libdns implementation for IONOS DNS API. IONOS API documentaion: https://developer.hosting.ionos.de/docs/dns libdns: https://github.com/libdns/libdns
Index ¶
- Constants
- type Provider
- func (p *Provider) AppendRecords(ctx context.Context, zone string, records []libdns.Record) ([]libdns.Record, error)
- func (p *Provider) DeleteRecords(ctx context.Context, zone string, records []libdns.Record) ([]libdns.Record, error)
- func (p *Provider) GetRecords(ctx context.Context, zoneName string) ([]libdns.Record, error)
- func (p *Provider) SetRecords(ctx context.Context, zone string, records []libdns.Record) ([]libdns.Record, error)
Constants ¶
View Source
const (
APIEndpoint = "https://api.hosting.ionos.com/dns/v1"
)
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Provider ¶
type Provider struct { // AuthAPIToken is the IONOS Auth API token - // see https://dns.ionos.com/api-docs#section/Authentication/Auth-API-Token AuthAPIToken string `json:"auth_api_token"` }
Provider implements the libdns interfaces for IONOS
func (*Provider) AppendRecords ¶
func (p *Provider) AppendRecords( ctx context.Context, zone string, records []libdns.Record) ([]libdns.Record, error)
AppendRecords adds records to the zone. It returns the records that were added.
func (*Provider) DeleteRecords ¶
func (p *Provider) DeleteRecords( ctx context.Context, zone string, records []libdns.Record) ([]libdns.Record, error)
DeleteRecords deletes the records from the zone. Returns the list of records acutally deleted. Fails fast on first error, but in this case
func (*Provider) GetRecords ¶
GetRecords lists all the records in the zone.
Click to show internal directories.
Click to hide internal directories.