Properties expected if the entry originated from cloudflare

interface ICloudFlareEntry {
    id: string;
    name: string;
    type: DNSTypes;
    zoneId: string;
    get Key(): string;
    hasSameValue(otherEntry: DnsbaseEntry): boolean;
}

Hierarchy (View Summary)

Implemented by

Properties

Accessors

Methods

Properties

id: string

CloudFlare ID for this record

name: string

Name of this record. Must be a fully qualified domain name

type: DNSTypes
zoneId: string

ID of the Zone this record belongs to in CloudFlare

Accessors

  • get Key(): string
  • Unique identifier for this record. Combination of zone id and name.

    Returns string

Methods

  • Determines if this entry shares identical values with another entry. Does NOT check if identities match.

    Parameters

    Returns boolean

    true if identical values else false