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

NetworkPeering

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

Details of a network peering.

interface NetworkPeering {
readonly createTime?: Date;
description?: string;
exchangeSubnetRoutes?: boolean;
exportCustomRoutes?: boolean;
exportCustomRoutesWithPublicIp?: boolean;
importCustomRoutes?: boolean;
importCustomRoutesWithPublicIp?: boolean;
readonly name?: string;
peerMtu?: number;
peerNetwork?: string;
peerNetworkType?:
| "PEER_NETWORK_TYPE_UNSPECIFIED"
| "STANDARD"
| "VMWARE_ENGINE_NETWORK"
| "PRIVATE_SERVICES_ACCESS"
| "NETAPP_CLOUD_VOLUMES"
| "THIRD_PARTY_SERVICE"
| "DELL_POWERSCALE";
readonly state?:
| "STATE_UNSPECIFIED"
| "INACTIVE"
| "ACTIVE"
| "CREATING"
| "DELETING";
readonly stateDetails?: string;
readonly uid?: string;
readonly updateTime?: Date;
vmwareEngineNetwork?: string;
}

§Properties

§
readonly createTime?: Date
[src]

Output only. Creation time of this resource.

§
description?: string
[src]

Optional. User-provided description for this network peering.

§
exchangeSubnetRoutes?: boolean
[src]

Optional. True if full mesh connectivity is created and managed automatically between peered networks; false otherwise. Currently this field is always true because Google Compute Engine automatically creates and manages subnetwork routes between two VPC networks when peering state is 'ACTIVE'.

§
exportCustomRoutes?: boolean
[src]

Optional. True if custom routes are exported to the peered network; false otherwise. The default value is true.

§
exportCustomRoutesWithPublicIp?: boolean
[src]

Optional. True if all subnet routes with a public IP address range are exported; false otherwise. The default value is true. IPv4 special-use ranges (https://en.wikipedia.org/wiki/IPv4#Special_addresses) are always exported to peers and are not controlled by this field.

§
importCustomRoutes?: boolean
[src]

Optional. True if custom routes are imported from the peered network; false otherwise. The default value is true.

§
importCustomRoutesWithPublicIp?: boolean
[src]

Optional. True if all subnet routes with public IP address range are imported; false otherwise. The default value is true. IPv4 special-use ranges (https://en.wikipedia.org/wiki/IPv4#Special_addresses) are always imported to peers and are not controlled by this field.

§
readonly name?: string
[src]

Output only. The resource name of the network peering. NetworkPeering is a global resource and location can only be global. Resource names are scheme-less URIs that follow the conventions in https://cloud.google.com/apis/design/resource_names. For example: projects/my-project/locations/global/networkPeerings/my-peering

§
peerMtu?: number
[src]

Optional. Maximum transmission unit (MTU) in bytes. The default value is 1500. If a value of 0 is provided for this field, VMware Engine uses the default value instead.

§
peerNetwork?: string
[src]

Required. The relative resource name of the network to peer with a standard VMware Engine network. The provided network can be a consumer VPC network or another standard VMware Engine network. If the peer_network_type is VMWARE_ENGINE_NETWORK, specify the name in the form: projects/{project}/locations/global/vmwareEngineNetworks/{vmware_engine_network_id}. Otherwise specify the name in the form: projects/{project}/global/networks/{network_id}, where {project} can either be a project number or a project ID.

§
peerNetworkType?: "PEER_NETWORK_TYPE_UNSPECIFIED" | "STANDARD" | "VMWARE_ENGINE_NETWORK" | "PRIVATE_SERVICES_ACCESS" | "NETAPP_CLOUD_VOLUMES" | "THIRD_PARTY_SERVICE" | "DELL_POWERSCALE"
[src]

Required. The type of the network to peer with the VMware Engine network.

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

Output only. State of the network peering. This field has a value of 'ACTIVE' when there's a matching configuration in the peer network. New values may be added to this enum when appropriate.

§
readonly stateDetails?: string
[src]

Output only. Output Only. Details about the current state of the network peering.

§
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]

Required. The relative resource name of the VMware Engine network. Specify the name in the following form: projects/{project}/locations/{location}/vmwareEngineNetworks/{vmware_engine_network_id} where {project} can either be a project number or a project ID.