Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

ConfigureDnsSettingsRequest

import type { ConfigureDnsSettingsRequest } from "https://googleapis.deno.dev/v1/domains:v1.ts";

Request for the ConfigureDnsSettings method.

interface ConfigureDnsSettingsRequest {
dnsSettings?: DnsSettings;
updateMask?: string;
validateOnly?: boolean;
}

§Properties

§
dnsSettings?: DnsSettings
[src]

Fields of the DnsSettings to update.

§
updateMask?: string
[src]

Required. The field mask describing which fields to update as a comma-separated list. For example, if only the name servers are being updated for an existing Custom DNS configuration, the update_mask is "custom_dns.name_servers". When changing the DNS provider from one type to another, pass the new provider's field name as part of the field mask. For example, when changing from a Google Domains DNS configuration to a Custom DNS configuration, the update_mask is "custom_dns". //

§
validateOnly?: boolean
[src]

Validate the request without actually updating the DNS settings.