Skip to main content

interconnect_remote_locations

Creates, updates, deletes, gets or lists an interconnect_remote_locations resource.

Overview

Nameinterconnect_remote_locations
TypeResource
Idgoogle.compute.interconnect_remote_locations

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstring (uint64)Output only. [Output Only] The unique identifier for the resource. This identifier is defined by the server.
namestringOutput only. [Output Only] Name of the resource.
addressstringOutput only. [Output Only] The postal address of the Point of Presence, each line in the address is separated by a newline character.
attachmentConfigurationConstraintsobjectOutput only. [Output Only] Subset of fields from InterconnectAttachment's |configurationConstraints| field that apply to all attachments for this remote location. (id: InterconnectAttachmentConfigurationConstraints)
citystringOutput only. [Output Only] Metropolitan area designator that indicates which city an interconnect is located. For example: "Chicago, IL", "Amsterdam, Netherlands".
constraintsobjectOutput only. [Output Only] Constraints on the parameters for creating Cross-Cloud Interconnect and associated InterconnectAttachments. (id: InterconnectRemoteLocationConstraints)
continentstringOutput only. [Output Only] Continent for this location, which can take one of the following values: - AFRICA - ASIA_PAC - EUROPE - NORTH_AMERICA - SOUTH_AMERICA (AFRICA, ASIA_PAC, EUROPE, NORTH_AMERICA, SOUTH_AMERICA)
creationTimestampstringOutput only. [Output Only] Creation timestamp inRFC3339 text format.
descriptionstringOutput only. [Output Only] An optional description of the resource.
facilityProviderstringOutput only. [Output Only] The name of the provider for this facility (e.g., EQUINIX).
facilityProviderFacilityIdstringOutput only. [Output Only] A provider-assigned Identifier for this facility (e.g., Ashburn-DC1).
kindstringOutput only. [Output Only] Type of the resource. Alwayscompute#interconnectRemoteLocation for interconnect remote locations. (default: compute#interconnectRemoteLocation)
lacpstringOutput only. [Output Only] Link Aggregation Control Protocol (LACP) constraints, which can take one of the following values: LACP_SUPPORTED, LACP_UNSUPPORTED (LACP_SUPPORTED, LACP_UNSUPPORTED)
maxLagSize100Gbpsinteger (int32)Output only. [Output Only] The maximum number of 100 Gbps ports supported in a link aggregation group (LAG). When linkType is 100 Gbps, requestedLinkCount cannot exceed max_lag_size_100_gbps.
maxLagSize10Gbpsinteger (int32)Output only. [Output Only] The maximum number of 10 Gbps ports supported in a link aggregation group (LAG). When linkType is 10 Gbps, requestedLinkCount cannot exceed max_lag_size_10_gbps.
maxLagSize400Gbpsinteger (int32)Output only. [Output Only] The maximum number of 400 Gbps ports supported in a link aggregation group (LAG). When linkType is 400 Gbps, requestedLinkCount cannot exceed max_lag_size_400_gbps.
peeringdbFacilityIdstringOutput only. [Output Only] The peeringdb identifier for this facility (corresponding with a netfac type in peeringdb).
permittedConnectionsarrayOutput only. [Output Only] Permitted connections.
remoteServicestringOutput only. [Output Only] Indicates the service provider present at the remote location. Example values: "Amazon Web Services", "Microsoft Azure".
selfLinkstringOutput only. [Output Only] Server-defined URL for the resource.
statusstringOutput only. [Output Only] The status of this InterconnectRemoteLocation, which can take one of the following values: - CLOSED: The InterconnectRemoteLocation is closed and is unavailable for provisioning new Cross-Cloud Interconnects. - AVAILABLE: The InterconnectRemoteLocation is available for provisioning new Cross-Cloud Interconnects. (AVAILABLE, CLOSED)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectproject, interconnectRemoteLocationReturns the details for the specified interconnect remote location. Gets a
list of available interconnect remote locations by making alist() request.
listselectprojectorderBy, maxResults, pageToken, filter, returnPartialSuccessRetrieves the list of interconnect remote locations available to the
specified project.

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
interconnectRemoteLocationstring
projectstring
filterstring
maxResultsinteger (uint32)
orderBystring
pageTokenstring
returnPartialSuccessboolean

SELECT examples

Returns the details for the specified interconnect remote location. Gets a
list of available interconnect remote locations by making alist() request.

SELECT
id,
name,
address,
attachmentConfigurationConstraints,
city,
constraints,
continent,
creationTimestamp,
description,
facilityProvider,
facilityProviderFacilityId,
kind,
lacp,
maxLagSize100Gbps,
maxLagSize10Gbps,
maxLagSize400Gbps,
peeringdbFacilityId,
permittedConnections,
remoteService,
selfLink,
status
FROM google.compute.interconnect_remote_locations
WHERE project = '{{ project }}' -- required
AND interconnectRemoteLocation = '{{ interconnectRemoteLocation }}' -- required
;