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

ManagementDnsZoneBinding

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

Represents a binding between a network and the management DNS zone. A management DNS zone is the Cloud DNS cross-project binding zone that VMware Engine creates for each private cloud. It contains FQDNs and corresponding IP addresses for the private cloud's ESXi hosts and management VM appliances like vCenter and NSX Manager.

interface ManagementDnsZoneBinding {
readonly createTime?: Date;
description?: string;
readonly name?: string;
readonly state?:
| "STATE_UNSPECIFIED"
| "ACTIVE"
| "CREATING"
| "UPDATING"
| "DELETING"
| "FAILED";
readonly uid?: string;
readonly updateTime?: Date;
vmwareEngineNetwork?: string;
vpcNetwork?: string;
}

§Properties

§
readonly createTime?: Date
[src]

Output only. Creation time of this resource.

§
description?: string
[src]

User-provided description for this resource.

§
readonly name?: string
[src]

Output only. The resource name of this binding. Resource names are schemeless URIs that follow the conventions in https://cloud.google.com/apis/design/resource_names. For example: projects/my-project/locations/us-central1-a/privateClouds/my-cloud/managementDnsZoneBindings/my-management-dns-zone-binding

§
readonly state?: "STATE_UNSPECIFIED" | "ACTIVE" | "CREATING" | "UPDATING" | "DELETING" | "FAILED"
[src]

Output only. The state of the resource.

§
readonly uid?: string
[src]

Output only. System-generated unique identifier for the resource.

§
readonly updateTime?: Date
[src]

Output only. Last update time of this resource.

§
vmwareEngineNetwork?: string
[src]

Network to bind is a VMware Engine network. Specify the name in the following form for VMware engine network: projects/{project}/locations/global/vmwareEngineNetworks/{vmware_engine_network_id}. {project} can either be a project number or a project ID.

§
vpcNetwork?: string
[src]

Network to bind is a standard consumer VPC. Specify the name in the following form for consumer VPC network: projects/{project}/global/networks/{network_id}. {project} can either be a project number or a project ID.