interface DnsRecord {
    name: string;
    priority?: number;
    rawData: string;
    status: Webhosting.v1.DnsRecordStatus;
    ttl: number;
    type: Webhosting.v1.DnsRecordType;
    value: string;
}

Properties

name: string

Record name.

priority?: number

Record priority level.

rawData: string

Record representation as it appears in the zone file or DNS management system.

Record status.

ttl: number

Record time-to-live.

Record type.

value: string

Record value.