ResourceRecordSet
import type { ResourceRecordSet } from "https://googleapis.deno.dev/v1/domains:v1.ts";
A unit of data that is returned by the DNS servers.
interface ResourceRecordSet {
name?: string;
routingPolicy?: RRSetRoutingPolicy;
rrdata?: string[];
signatureRrdata?: string[];
ttl?: number;
type?: string;
}§Properties
§
name?: string
[src]For example, www.example.com.
§
routingPolicy?: RRSetRoutingPolicy
[src]Configures dynamic query responses based on either the geo location of the
querying user or a weighted round robin based routing policy. A valid
ResourceRecordSet
contains only rrdata
(for static resolution) or a
routing_policy
(for dynamic resolution).