Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Config ¶
type Config struct { Endpoint *url.URL Token string TTL int PropagationTimeout time.Duration PollingInterval time.Duration HTTPClient *http.Client }
Config is used to configure the creation of the DNSProvider
func NewDefaultConfig ¶
func NewDefaultConfig() *Config
NewDefaultConfig returns a default configuration for the DNSProvider
type DNSProvider ¶
type DNSProvider struct {
// contains filtered or unexported fields
}
DNSProvider implements challenge.Provider for the checkdomain API specified at https://developer.checkdomain.de/reference/.
func NewDNSProvider ¶
func NewDNSProvider() (*DNSProvider, error)
func NewDNSProviderConfig ¶
func NewDNSProviderConfig(config *Config) (*DNSProvider, error)
func (*DNSProvider) CleanUp ¶
func (p *DNSProvider) CleanUp(domain, token, keyAuth string) error
CleanUp removes the TXT record previously created
func (*DNSProvider) Present ¶
func (p *DNSProvider) Present(domain, token, keyAuth string) error
Present creates a TXT record to fulfill the dns-01 challenge
func (*DNSProvider) Timeout ¶
func (p *DNSProvider) Timeout() (timeout, interval time.Duration)
type DomainListingResponse ¶
type DomainListingResponse struct { Page int `json:"page"` Limit int `json:"limit"` Pages int `json:"pages"` Total int `json:"total"` Embedded EmbeddedDomainList `json:"_embedded"` }
type DomainResponse ¶
type EmbeddedDomainList ¶
type EmbeddedDomainList struct {
Domains []*Domain `json:"domains"`
}
type EmbeddedRecordList ¶
type EmbeddedRecordList struct {
Records []*Record `json:"records"`
}
type Nameserver ¶
type Nameserver struct {
Name string `json:"name"`
}
type NameserverGeneral ¶
type NameserverResponse ¶
type NameserverResponse struct { General NameserverGeneral `json:"general"` Nameservers []*Nameserver `json:"nameservers"` SOA NameserverSOA `json:"soa"` }
type NameserverSOA ¶
type RecordListingResponse ¶
type RecordListingResponse struct { Page int `json:"page"` Limit int `json:"limit"` Pages int `json:"pages"` Total int `json:"total"` Embedded EmbeddedRecordList `json:"_embedded"` }
Click to show internal directories.
Click to hide internal directories.