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

UpdateDnsRecordSetRequest

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

Request to update a record set from a private managed DNS zone in the shared producer host project. The name, type, ttl, and data values of the existing record set must all exactly match an existing record set in the specified zone.

interface UpdateDnsRecordSetRequest {
consumerNetwork?: string;
existingDnsRecordSet?: DnsRecordSet;
newDnsRecordSet?: DnsRecordSet;
zone?: string;
}

§Properties

§
consumerNetwork?: string
[src]

Required. The network that the consumer is using to connect with services. Must be in the form of projects/{project}/global/networks/{network} {project} is the project number, as in '12345' {network} is the network name.

§
existingDnsRecordSet?: DnsRecordSet
[src]

Required. The existing DNS record set to update.

§
newDnsRecordSet?: DnsRecordSet
[src]

Required. The new values that the DNS record set should be updated to hold.

§
zone?: string
[src]

Required. The name of the private DNS zone in the shared producer host project from which the record set will be removed.