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:

Successful response

NameDatatypeDescription
idstring (uint64)[Output Only] The unique identifier for the resource. This identifier is defined by the server.
namestring[Output Only] Name of the resource.
addressstring[Output Only] The postal address of the Point of Presence, each line in the address is separated by a newline character.
attachmentConfigurationConstraintsobject[Output Only] Subset of fields from InterconnectAttachment's |configurationConstraints| field that apply to all attachments for this remote location. (id: InterconnectAttachmentConfigurationConstraints)
citystring[Output Only] Metropolitan area designator that indicates which city an interconnect is located. For example: "Chicago, IL", "Amsterdam, Netherlands".
constraintsobject[Output Only] Constraints on the parameters for creating Cross-Cloud Interconnect and associated InterconnectAttachments. (id: InterconnectRemoteLocationConstraints)
continentstring[Output Only] Continent for this location, which can take one of the following values: - AFRICA - ASIA_PAC - EUROPE - NORTH_AMERICA - SOUTH_AMERICA
creationTimestampstring[Output Only] Creation timestamp in RFC3339 text format.
descriptionstring[Output Only] An optional description of the resource.
facilityProviderstring[Output Only] The name of the provider for this facility (e.g., EQUINIX).
facilityProviderFacilityIdstring[Output Only] A provider-assigned Identifier for this facility (e.g., Ashburn-DC1).
kindstring[Output Only] Type of the resource. Always compute#interconnectRemoteLocation for interconnect remote locations. (default: compute#interconnectRemoteLocation)
lacpstring[Output Only] Link Aggregation Control Protocol (LACP) constraints, which can take one of the following values: LACP_SUPPORTED, LACP_UNSUPPORTED
maxLagSize100Gbpsinteger (int32)[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] 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.
peeringdbFacilityIdstring[Output Only] The peeringdb identifier for this facility (corresponding with a netfac type in peeringdb).
permittedConnectionsarray[Output Only] Permitted connections.
remoteServicestring[Output Only] Indicates the service provider present at the remote location. Example values: "Amazon Web Services", "Microsoft Azure".
selfLinkstring[Output Only] Server-defined URL for the resource.
statusstring[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.

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 a list() request.
listselectprojectfilter, maxResults, orderBy, pageToken, 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 a list() request.

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