recordsets

package
v0.20220627.1102220 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jun 27, 2022 License: MPL-2.0 Imports: 8 Imported by: 1

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func PossibleValuesForRecordType

func PossibleValuesForRecordType() []string

func ValidateDnsZoneID

func ValidateDnsZoneID(input interface{}, key string) (warnings []string, errors []error)

ValidateDnsZoneID checks that 'input' can be parsed as a Dns Zone ID

func ValidateRecordTypeID

func ValidateRecordTypeID(input interface{}, key string) (warnings []string, errors []error)

ValidateRecordTypeID checks that 'input' can be parsed as a Record Type ID

func ValidateZoneID

func ValidateZoneID(input interface{}, key string) (warnings []string, errors []error)

ValidateZoneID checks that 'input' can be parsed as a Zone ID

Types

type ARecord

type ARecord struct {
	Ipv4Address *string `json:"ipv4Address,omitempty"`
}

type AaaaRecord

type AaaaRecord struct {
	Ipv6Address *string `json:"ipv6Address,omitempty"`
}

type CaaRecord

type CaaRecord struct {
	Flags *int64  `json:"flags,omitempty"`
	Tag   *string `json:"tag,omitempty"`
	Value *string `json:"value,omitempty"`
}

type CnameRecord

type CnameRecord struct {
	Cname *string `json:"cname,omitempty"`
}

type CreateOrUpdateOperationOptions

type CreateOrUpdateOperationOptions struct {
	IfMatch     *string
	IfNoneMatch *string
}

func DefaultCreateOrUpdateOperationOptions

func DefaultCreateOrUpdateOperationOptions() CreateOrUpdateOperationOptions

type CreateOrUpdateOperationResponse

type CreateOrUpdateOperationResponse struct {
	HttpResponse *http.Response
	Model        *RecordSet
}

type DeleteOperationOptions

type DeleteOperationOptions struct {
	IfMatch *string
}

func DefaultDeleteOperationOptions

func DefaultDeleteOperationOptions() DeleteOperationOptions

type DeleteOperationResponse

type DeleteOperationResponse struct {
	HttpResponse *http.Response
}

type DnsZoneId

type DnsZoneId struct {
	SubscriptionId    string
	ResourceGroupName string
	ZoneName          string
}

DnsZoneId is a struct representing the Resource ID for a Dns Zone

func NewDnsZoneID

func NewDnsZoneID(subscriptionId string, resourceGroupName string, zoneName string) DnsZoneId

NewDnsZoneID returns a new DnsZoneId struct

func ParseDnsZoneID

func ParseDnsZoneID(input string) (*DnsZoneId, error)

ParseDnsZoneID parses 'input' into a DnsZoneId

func ParseDnsZoneIDInsensitively

func ParseDnsZoneIDInsensitively(input string) (*DnsZoneId, error)

ParseDnsZoneIDInsensitively parses 'input' case-insensitively into a DnsZoneId note: this method should only be used for API response data and not user input

func (DnsZoneId) ID

func (id DnsZoneId) ID() string

ID returns the formatted Dns Zone ID

func (DnsZoneId) Segments

func (id DnsZoneId) Segments() []resourceids.Segment

Segments returns a slice of Resource ID Segments which comprise this Dns Zone ID

func (DnsZoneId) String

func (id DnsZoneId) String() string

String returns a human-readable description of this Dns Zone ID

type GetOperationResponse

type GetOperationResponse struct {
	HttpResponse *http.Response
	Model        *RecordSet
}

type ListAllByDnsZoneCompleteResult

type ListAllByDnsZoneCompleteResult struct {
	Items []RecordSet
}

type ListAllByDnsZoneOperationOptions

type ListAllByDnsZoneOperationOptions struct {
	Recordsetnamesuffix *string
	Top                 *int64
}

func DefaultListAllByDnsZoneOperationOptions

func DefaultListAllByDnsZoneOperationOptions() ListAllByDnsZoneOperationOptions

type ListAllByDnsZoneOperationResponse

type ListAllByDnsZoneOperationResponse struct {
	HttpResponse *http.Response
	Model        *[]RecordSet
	// contains filtered or unexported fields
}

func (ListAllByDnsZoneOperationResponse) HasMore

func (ListAllByDnsZoneOperationResponse) LoadMore

type ListByDnsZoneCompleteResult

type ListByDnsZoneCompleteResult struct {
	Items []RecordSet
}

type ListByDnsZoneOperationOptions

type ListByDnsZoneOperationOptions struct {
	Recordsetnamesuffix *string
	Top                 *int64
}

func DefaultListByDnsZoneOperationOptions

func DefaultListByDnsZoneOperationOptions() ListByDnsZoneOperationOptions

type ListByDnsZoneOperationResponse

type ListByDnsZoneOperationResponse struct {
	HttpResponse *http.Response
	Model        *[]RecordSet
	// contains filtered or unexported fields
}

func (ListByDnsZoneOperationResponse) HasMore

func (ListByDnsZoneOperationResponse) LoadMore

type ListByTypeCompleteResult

type ListByTypeCompleteResult struct {
	Items []RecordSet
}

type ListByTypeOperationOptions

type ListByTypeOperationOptions struct {
	Recordsetnamesuffix *string
	Top                 *int64
}

func DefaultListByTypeOperationOptions

func DefaultListByTypeOperationOptions() ListByTypeOperationOptions

type ListByTypeOperationResponse

type ListByTypeOperationResponse struct {
	HttpResponse *http.Response
	Model        *[]RecordSet
	// contains filtered or unexported fields
}

func (ListByTypeOperationResponse) HasMore

func (r ListByTypeOperationResponse) HasMore() bool

func (ListByTypeOperationResponse) LoadMore

type MxRecord

type MxRecord struct {
	Exchange   *string `json:"exchange,omitempty"`
	Preference *int64  `json:"preference,omitempty"`
}

type NsRecord

type NsRecord struct {
	Nsdname *string `json:"nsdname,omitempty"`
}

type PtrRecord

type PtrRecord struct {
	Ptrdname *string `json:"ptrdname,omitempty"`
}

type RecordSet

type RecordSet struct {
	Etag       *string              `json:"etag,omitempty"`
	Id         *string              `json:"id,omitempty"`
	Name       *string              `json:"name,omitempty"`
	Properties *RecordSetProperties `json:"properties,omitempty"`
	Type       *string              `json:"type,omitempty"`
}

type RecordSetOperationPredicate

type RecordSetOperationPredicate struct {
	Etag *string
	Id   *string
	Name *string
	Type *string
}

func (RecordSetOperationPredicate) Matches

func (p RecordSetOperationPredicate) Matches(input RecordSet) bool

type RecordSetProperties

type RecordSetProperties struct {
	AAAARecords       *[]AaaaRecord      `json:"AAAARecords,omitempty"`
	ARecords          *[]ARecord         `json:"ARecords,omitempty"`
	CNAMERecord       *CnameRecord       `json:"CNAMERecord,omitempty"`
	CaaRecords        *[]CaaRecord       `json:"caaRecords,omitempty"`
	Fqdn              *string            `json:"fqdn,omitempty"`
	MXRecords         *[]MxRecord        `json:"MXRecords,omitempty"`
	Metadata          *map[string]string `json:"metadata,omitempty"`
	NSRecords         *[]NsRecord        `json:"NSRecords,omitempty"`
	PTRRecords        *[]PtrRecord       `json:"PTRRecords,omitempty"`
	ProvisioningState *string            `json:"provisioningState,omitempty"`
	SOARecord         *SoaRecord         `json:"SOARecord,omitempty"`
	SRVRecords        *[]SrvRecord       `json:"SRVRecords,omitempty"`
	TTL               *int64             `json:"TTL,omitempty"`
	TXTRecords        *[]TxtRecord       `json:"TXTRecords,omitempty"`
	TargetResource    *SubResource       `json:"targetResource,omitempty"`
}

type RecordSetsClient

type RecordSetsClient struct {
	Client autorest.Client
	// contains filtered or unexported fields
}

func NewRecordSetsClientWithBaseURI

func NewRecordSetsClientWithBaseURI(endpoint string) RecordSetsClient

func (RecordSetsClient) CreateOrUpdate

CreateOrUpdate ...

func (RecordSetsClient) Delete

Delete ...

func (RecordSetsClient) Get

Get ...

func (RecordSetsClient) ListAllByDnsZone

ListAllByDnsZone ...

func (RecordSetsClient) ListAllByDnsZoneComplete

ListAllByDnsZoneComplete retrieves all of the results into a single object

func (RecordSetsClient) ListAllByDnsZoneCompleteMatchingPredicate

func (c RecordSetsClient) ListAllByDnsZoneCompleteMatchingPredicate(ctx context.Context, id DnsZoneId, options ListAllByDnsZoneOperationOptions, predicate RecordSetOperationPredicate) (resp ListAllByDnsZoneCompleteResult, err error)

ListAllByDnsZoneCompleteMatchingPredicate retrieves all of the results and then applied the predicate

func (RecordSetsClient) ListByDnsZone

ListByDnsZone ...

func (RecordSetsClient) ListByDnsZoneComplete

ListByDnsZoneComplete retrieves all of the results into a single object

func (RecordSetsClient) ListByDnsZoneCompleteMatchingPredicate

func (c RecordSetsClient) ListByDnsZoneCompleteMatchingPredicate(ctx context.Context, id DnsZoneId, options ListByDnsZoneOperationOptions, predicate RecordSetOperationPredicate) (resp ListByDnsZoneCompleteResult, err error)

ListByDnsZoneCompleteMatchingPredicate retrieves all of the results and then applied the predicate

func (RecordSetsClient) ListByType

ListByType ...

func (RecordSetsClient) ListByTypeComplete

ListByTypeComplete retrieves all of the results into a single object

func (RecordSetsClient) ListByTypeCompleteMatchingPredicate

func (c RecordSetsClient) ListByTypeCompleteMatchingPredicate(ctx context.Context, id ZoneId, options ListByTypeOperationOptions, predicate RecordSetOperationPredicate) (resp ListByTypeCompleteResult, err error)

ListByTypeCompleteMatchingPredicate retrieves all of the results and then applied the predicate

func (RecordSetsClient) Update

Update ...

type RecordType

type RecordType string
const (
	RecordTypeA     RecordType = "A"
	RecordTypeAAAA  RecordType = "AAAA"
	RecordTypeCAA   RecordType = "CAA"
	RecordTypeCNAME RecordType = "CNAME"
	RecordTypeMX    RecordType = "MX"
	RecordTypeNS    RecordType = "NS"
	RecordTypePTR   RecordType = "PTR"
	RecordTypeSOA   RecordType = "SOA"
	RecordTypeSRV   RecordType = "SRV"
	RecordTypeTXT   RecordType = "TXT"
)

type RecordTypeId

type RecordTypeId struct {
	SubscriptionId        string
	ResourceGroupName     string
	ZoneName              string
	RecordType            RecordType
	RelativeRecordSetName string
}

RecordTypeId is a struct representing the Resource ID for a Record Type

func NewRecordTypeID

func NewRecordTypeID(subscriptionId string, resourceGroupName string, zoneName string, recordType RecordType, relativeRecordSetName string) RecordTypeId

NewRecordTypeID returns a new RecordTypeId struct

func ParseRecordTypeID

func ParseRecordTypeID(input string) (*RecordTypeId, error)

ParseRecordTypeID parses 'input' into a RecordTypeId

func ParseRecordTypeIDInsensitively

func ParseRecordTypeIDInsensitively(input string) (*RecordTypeId, error)

ParseRecordTypeIDInsensitively parses 'input' case-insensitively into a RecordTypeId note: this method should only be used for API response data and not user input

func (RecordTypeId) ID

func (id RecordTypeId) ID() string

ID returns the formatted Record Type ID

func (RecordTypeId) Segments

func (id RecordTypeId) Segments() []resourceids.Segment

Segments returns a slice of Resource ID Segments which comprise this Record Type ID

func (RecordTypeId) String

func (id RecordTypeId) String() string

String returns a human-readable description of this Record Type ID

type SoaRecord

type SoaRecord struct {
	Email        *string `json:"email,omitempty"`
	ExpireTime   *int64  `json:"expireTime,omitempty"`
	Host         *string `json:"host,omitempty"`
	MinimumTTL   *int64  `json:"minimumTTL,omitempty"`
	RefreshTime  *int64  `json:"refreshTime,omitempty"`
	RetryTime    *int64  `json:"retryTime,omitempty"`
	SerialNumber *int64  `json:"serialNumber,omitempty"`
}

type SrvRecord

type SrvRecord struct {
	Port     *int64  `json:"port,omitempty"`
	Priority *int64  `json:"priority,omitempty"`
	Target   *string `json:"target,omitempty"`
	Weight   *int64  `json:"weight,omitempty"`
}

type SubResource

type SubResource struct {
	Id *string `json:"id,omitempty"`
}

type TxtRecord

type TxtRecord struct {
	Value *[]string `json:"value,omitempty"`
}

type UpdateOperationOptions

type UpdateOperationOptions struct {
	IfMatch *string
}

func DefaultUpdateOperationOptions

func DefaultUpdateOperationOptions() UpdateOperationOptions

type UpdateOperationResponse

type UpdateOperationResponse struct {
	HttpResponse *http.Response
	Model        *RecordSet
}

type ZoneId

type ZoneId struct {
	SubscriptionId    string
	ResourceGroupName string
	ZoneName          string
	RecordType        RecordType
}

ZoneId is a struct representing the Resource ID for a Zone

func NewZoneID

func NewZoneID(subscriptionId string, resourceGroupName string, zoneName string, recordType RecordType) ZoneId

NewZoneID returns a new ZoneId struct

func ParseZoneID

func ParseZoneID(input string) (*ZoneId, error)

ParseZoneID parses 'input' into a ZoneId

func ParseZoneIDInsensitively

func ParseZoneIDInsensitively(input string) (*ZoneId, error)

ParseZoneIDInsensitively parses 'input' case-insensitively into a ZoneId note: this method should only be used for API response data and not user input

func (ZoneId) ID

func (id ZoneId) ID() string

ID returns the formatted Zone ID

func (ZoneId) Segments

func (id ZoneId) Segments() []resourceids.Segment

Segments returns a slice of Resource ID Segments which comprise this Zone ID

func (ZoneId) String

func (id ZoneId) String() string

String returns a human-readable description of this Zone ID

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL