Skip to main content

network_peerings

Creates, updates, deletes, gets or lists a network_peerings resource.

Overview

Namenetwork_peerings
TypeResource
Idgoogle.vmwareengine.network_peerings

Fields

The following fields are returned by SELECT queries:

Successful response

NameDatatypeDescription
namestringOutput only. Identifier. 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
createTimestring (google-datetime)Output only. Creation time of this resource.
descriptionstringOptional. User-provided description for this network peering.
exchangeSubnetRoutesbooleanOptional. 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'.
exportCustomRoutesbooleanOptional. True if custom routes are exported to the peered network; false otherwise. The default value is true.
exportCustomRoutesWithPublicIpbooleanOptional. 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.
importCustomRoutesbooleanOptional. True if custom routes are imported from the peered network; false otherwise. The default value is true.
importCustomRoutesWithPublicIpbooleanOptional. 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.
peerMtuinteger (int32)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.
peerNetworkstringRequired. 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.
peerNetworkTypestringRequired. The type of the network to peer with the VMware Engine network.
statestringOutput 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.
stateDetailsstringOutput only. Output Only. Details about the current state of the network peering.
uidstringOutput only. System-generated unique identifier for the resource.
updateTimestring (google-datetime)Output only. Last update time of this resource.
vmwareEngineNetworkstringRequired. 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.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectprojectsId, locationsId, networkPeeringsIdRetrieves a NetworkPeering resource by its resource name. The resource contains details of the network peering, such as peered networks, import and export custom route configurations, and peering state. NetworkPeering is a global resource and location can only be global.
listselectprojectsId, locationsIdpageSize, pageToken, filter, orderByLists NetworkPeering resources in a given project. NetworkPeering is a global resource and location can only be global.
createinsertprojectsId, locationsIdnetworkPeeringId, requestIdCreates a new network peering between the peer network and VMware Engine network provided in a NetworkPeering resource. NetworkPeering is a global resource and location can only be global.
patchupdateprojectsId, locationsId, networkPeeringsIdupdateMask, requestIdModifies a NetworkPeering resource. Only the description field can be updated. Only fields specified in updateMask are applied. NetworkPeering is a global resource and location can only be global.
deletedeleteprojectsId, locationsId, networkPeeringsIdrequestIdDeletes a NetworkPeering resource. When a network peering is deleted for a VMware Engine network, the peer network becomes inaccessible to that VMware Engine network. NetworkPeering is a global resource and location can only be global.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
locationsIdstring
networkPeeringsIdstring
projectsIdstring
filterstring
networkPeeringIdstring
orderBystring
pageSizeinteger (int32)
pageTokenstring
requestIdstring
updateMaskstring (google-fieldmask)

SELECT examples

Retrieves a NetworkPeering resource by its resource name. The resource contains details of the network peering, such as peered networks, import and export custom route configurations, and peering state. NetworkPeering is a global resource and location can only be global.

SELECT
name,
createTime,
description,
exchangeSubnetRoutes,
exportCustomRoutes,
exportCustomRoutesWithPublicIp,
importCustomRoutes,
importCustomRoutesWithPublicIp,
peerMtu,
peerNetwork,
peerNetworkType,
state,
stateDetails,
uid,
updateTime,
vmwareEngineNetwork
FROM google.vmwareengine.network_peerings
WHERE projectsId = '{{ projectsId }}' -- required
AND locationsId = '{{ locationsId }}' -- required
AND networkPeeringsId = '{{ networkPeeringsId }}' -- required;

INSERT examples

Creates a new network peering between the peer network and VMware Engine network provided in a NetworkPeering resource. NetworkPeering is a global resource and location can only be global.

INSERT INTO google.vmwareengine.network_peerings (
data__peerNetwork,
data__exportCustomRoutes,
data__importCustomRoutes,
data__exchangeSubnetRoutes,
data__exportCustomRoutesWithPublicIp,
data__importCustomRoutesWithPublicIp,
data__peerMtu,
data__peerNetworkType,
data__vmwareEngineNetwork,
data__description,
projectsId,
locationsId,
networkPeeringId,
requestId
)
SELECT
'{{ peerNetwork }}',
{{ exportCustomRoutes }},
{{ importCustomRoutes }},
{{ exchangeSubnetRoutes }},
{{ exportCustomRoutesWithPublicIp }},
{{ importCustomRoutesWithPublicIp }},
{{ peerMtu }},
'{{ peerNetworkType }}',
'{{ vmwareEngineNetwork }}',
'{{ description }}',
'{{ projectsId }}',
'{{ locationsId }}',
'{{ networkPeeringId }}',
'{{ requestId }}'
RETURNING
name,
done,
error,
metadata,
response
;

UPDATE examples

Modifies a NetworkPeering resource. Only the description field can be updated. Only fields specified in updateMask are applied. NetworkPeering is a global resource and location can only be global.

UPDATE google.vmwareengine.network_peerings
SET
data__peerNetwork = '{{ peerNetwork }}',
data__exportCustomRoutes = {{ exportCustomRoutes }},
data__importCustomRoutes = {{ importCustomRoutes }},
data__exchangeSubnetRoutes = {{ exchangeSubnetRoutes }},
data__exportCustomRoutesWithPublicIp = {{ exportCustomRoutesWithPublicIp }},
data__importCustomRoutesWithPublicIp = {{ importCustomRoutesWithPublicIp }},
data__peerMtu = {{ peerMtu }},
data__peerNetworkType = '{{ peerNetworkType }}',
data__vmwareEngineNetwork = '{{ vmwareEngineNetwork }}',
data__description = '{{ description }}'
WHERE
projectsId = '{{ projectsId }}' --required
AND locationsId = '{{ locationsId }}' --required
AND networkPeeringsId = '{{ networkPeeringsId }}' --required
AND updateMask = '{{ updateMask}}'
AND requestId = '{{ requestId}}'
RETURNING
name,
done,
error,
metadata,
response;

DELETE examples

Deletes a NetworkPeering resource. When a network peering is deleted for a VMware Engine network, the peer network becomes inaccessible to that VMware Engine network. NetworkPeering is a global resource and location can only be global.

DELETE FROM google.vmwareengine.network_peerings
WHERE projectsId = '{{ projectsId }}' --required
AND locationsId = '{{ locationsId }}' --required
AND networkPeeringsId = '{{ networkPeeringsId }}' --required
AND requestId = '{{ requestId }}';