Google Cloud Native is in preview. Google Cloud Classic is fully supported.
google-native.compute/v1.InterconnectAttachment
Explore with Pulumi AI
Google Cloud Native is in preview. Google Cloud Classic is fully supported.
Creates an InterconnectAttachment in the specified project using the data included in the request.
Create InterconnectAttachment Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new InterconnectAttachment(name: string, args: InterconnectAttachmentArgs, opts?: CustomResourceOptions);
@overload
def InterconnectAttachment(resource_name: str,
args: InterconnectAttachmentArgs,
opts: Optional[ResourceOptions] = None)
@overload
def InterconnectAttachment(resource_name: str,
opts: Optional[ResourceOptions] = None,
region: Optional[str] = None,
description: Optional[str] = None,
subnet_length: Optional[int] = None,
candidate_subnets: Optional[Sequence[str]] = None,
cloud_router_ipv6_interface_id: Optional[str] = None,
customer_router_ipv6_interface_id: Optional[str] = None,
admin_enabled: Optional[bool] = None,
edge_availability_domain: Optional[InterconnectAttachmentEdgeAvailabilityDomain] = None,
encryption: Optional[InterconnectAttachmentEncryption] = None,
interconnect: Optional[str] = None,
ipsec_internal_addresses: Optional[Sequence[str]] = None,
vlan_tag8021q: Optional[int] = None,
candidate_ipv6_subnets: Optional[Sequence[str]] = None,
partner_asn: Optional[str] = None,
pairing_key: Optional[str] = None,
name: Optional[str] = None,
partner_metadata: Optional[InterconnectAttachmentPartnerMetadataArgs] = None,
project: Optional[str] = None,
bandwidth: Optional[InterconnectAttachmentBandwidth] = None,
request_id: Optional[str] = None,
router: Optional[str] = None,
stack_type: Optional[InterconnectAttachmentStackType] = None,
mtu: Optional[int] = None,
type: Optional[InterconnectAttachmentType] = None,
labels: Optional[Mapping[str, str]] = None)
func NewInterconnectAttachment(ctx *Context, name string, args InterconnectAttachmentArgs, opts ...ResourceOption) (*InterconnectAttachment, error)
public InterconnectAttachment(string name, InterconnectAttachmentArgs args, CustomResourceOptions? opts = null)
public InterconnectAttachment(String name, InterconnectAttachmentArgs args)
public InterconnectAttachment(String name, InterconnectAttachmentArgs args, CustomResourceOptions options)
type: google-native:compute/v1:InterconnectAttachment
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args InterconnectAttachmentArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args InterconnectAttachmentArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args InterconnectAttachmentArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args InterconnectAttachmentArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args InterconnectAttachmentArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var exampleinterconnectAttachmentResourceResourceFromComputev1 = new GoogleNative.Compute.V1.InterconnectAttachment("exampleinterconnectAttachmentResourceResourceFromComputev1", new()
{
Region = "string",
Description = "string",
SubnetLength = 0,
CandidateSubnets = new[]
{
"string",
},
CloudRouterIpv6InterfaceId = "string",
CustomerRouterIpv6InterfaceId = "string",
AdminEnabled = false,
EdgeAvailabilityDomain = GoogleNative.Compute.V1.InterconnectAttachmentEdgeAvailabilityDomain.AvailabilityDomain1,
Encryption = GoogleNative.Compute.V1.InterconnectAttachmentEncryption.Ipsec,
Interconnect = "string",
IpsecInternalAddresses = new[]
{
"string",
},
VlanTag8021q = 0,
CandidateIpv6Subnets = new[]
{
"string",
},
PartnerAsn = "string",
PairingKey = "string",
Name = "string",
PartnerMetadata = new GoogleNative.Compute.V1.Inputs.InterconnectAttachmentPartnerMetadataArgs
{
InterconnectName = "string",
PartnerName = "string",
PortalUrl = "string",
},
Project = "string",
Bandwidth = GoogleNative.Compute.V1.InterconnectAttachmentBandwidth.Bps100m,
RequestId = "string",
Router = "string",
StackType = GoogleNative.Compute.V1.InterconnectAttachmentStackType.Ipv4Ipv6,
Mtu = 0,
Type = GoogleNative.Compute.V1.InterconnectAttachmentType.Dedicated,
Labels =
{
{ "string", "string" },
},
});
example, err := computev1.NewInterconnectAttachment(ctx, "exampleinterconnectAttachmentResourceResourceFromComputev1", &computev1.InterconnectAttachmentArgs{
Region: pulumi.String("string"),
Description: pulumi.String("string"),
SubnetLength: pulumi.Int(0),
CandidateSubnets: pulumi.StringArray{
pulumi.String("string"),
},
CloudRouterIpv6InterfaceId: pulumi.String("string"),
CustomerRouterIpv6InterfaceId: pulumi.String("string"),
AdminEnabled: pulumi.Bool(false),
EdgeAvailabilityDomain: computev1.InterconnectAttachmentEdgeAvailabilityDomainAvailabilityDomain1,
Encryption: computev1.InterconnectAttachmentEncryptionIpsec,
Interconnect: pulumi.String("string"),
IpsecInternalAddresses: pulumi.StringArray{
pulumi.String("string"),
},
VlanTag8021q: pulumi.Int(0),
CandidateIpv6Subnets: pulumi.StringArray{
pulumi.String("string"),
},
PartnerAsn: pulumi.String("string"),
PairingKey: pulumi.String("string"),
Name: pulumi.String("string"),
PartnerMetadata: &compute.InterconnectAttachmentPartnerMetadataArgs{
InterconnectName: pulumi.String("string"),
PartnerName: pulumi.String("string"),
PortalUrl: pulumi.String("string"),
},
Project: pulumi.String("string"),
Bandwidth: computev1.InterconnectAttachmentBandwidthBps100m,
RequestId: pulumi.String("string"),
Router: pulumi.String("string"),
StackType: computev1.InterconnectAttachmentStackTypeIpv4Ipv6,
Mtu: pulumi.Int(0),
Type: computev1.InterconnectAttachmentTypeDedicated,
Labels: pulumi.StringMap{
"string": pulumi.String("string"),
},
})
var exampleinterconnectAttachmentResourceResourceFromComputev1 = new InterconnectAttachment("exampleinterconnectAttachmentResourceResourceFromComputev1", InterconnectAttachmentArgs.builder()
.region("string")
.description("string")
.subnetLength(0)
.candidateSubnets("string")
.cloudRouterIpv6InterfaceId("string")
.customerRouterIpv6InterfaceId("string")
.adminEnabled(false)
.edgeAvailabilityDomain("AVAILABILITY_DOMAIN_1")
.encryption("IPSEC")
.interconnect("string")
.ipsecInternalAddresses("string")
.vlanTag8021q(0)
.candidateIpv6Subnets("string")
.partnerAsn("string")
.pairingKey("string")
.name("string")
.partnerMetadata(InterconnectAttachmentPartnerMetadataArgs.builder()
.interconnectName("string")
.partnerName("string")
.portalUrl("string")
.build())
.project("string")
.bandwidth("BPS_100M")
.requestId("string")
.router("string")
.stackType("IPV4_IPV6")
.mtu(0)
.type("DEDICATED")
.labels(Map.of("string", "string"))
.build());
exampleinterconnect_attachment_resource_resource_from_computev1 = google_native.compute.v1.InterconnectAttachment("exampleinterconnectAttachmentResourceResourceFromComputev1",
region="string",
description="string",
subnet_length=0,
candidate_subnets=["string"],
cloud_router_ipv6_interface_id="string",
customer_router_ipv6_interface_id="string",
admin_enabled=False,
edge_availability_domain=google_native.compute.v1.InterconnectAttachmentEdgeAvailabilityDomain.AVAILABILITY_DOMAIN1,
encryption=google_native.compute.v1.InterconnectAttachmentEncryption.IPSEC,
interconnect="string",
ipsec_internal_addresses=["string"],
vlan_tag8021q=0,
candidate_ipv6_subnets=["string"],
partner_asn="string",
pairing_key="string",
name="string",
partner_metadata=google_native.compute.v1.InterconnectAttachmentPartnerMetadataArgs(
interconnect_name="string",
partner_name="string",
portal_url="string",
),
project="string",
bandwidth=google_native.compute.v1.InterconnectAttachmentBandwidth.BPS100M,
request_id="string",
router="string",
stack_type=google_native.compute.v1.InterconnectAttachmentStackType.IPV4_IPV6,
mtu=0,
type=google_native.compute.v1.InterconnectAttachmentType.DEDICATED,
labels={
"string": "string",
})
const exampleinterconnectAttachmentResourceResourceFromComputev1 = new google_native.compute.v1.InterconnectAttachment("exampleinterconnectAttachmentResourceResourceFromComputev1", {
region: "string",
description: "string",
subnetLength: 0,
candidateSubnets: ["string"],
cloudRouterIpv6InterfaceId: "string",
customerRouterIpv6InterfaceId: "string",
adminEnabled: false,
edgeAvailabilityDomain: google_native.compute.v1.InterconnectAttachmentEdgeAvailabilityDomain.AvailabilityDomain1,
encryption: google_native.compute.v1.InterconnectAttachmentEncryption.Ipsec,
interconnect: "string",
ipsecInternalAddresses: ["string"],
vlanTag8021q: 0,
candidateIpv6Subnets: ["string"],
partnerAsn: "string",
pairingKey: "string",
name: "string",
partnerMetadata: {
interconnectName: "string",
partnerName: "string",
portalUrl: "string",
},
project: "string",
bandwidth: google_native.compute.v1.InterconnectAttachmentBandwidth.Bps100m,
requestId: "string",
router: "string",
stackType: google_native.compute.v1.InterconnectAttachmentStackType.Ipv4Ipv6,
mtu: 0,
type: google_native.compute.v1.InterconnectAttachmentType.Dedicated,
labels: {
string: "string",
},
});
type: google-native:compute/v1:InterconnectAttachment
properties:
adminEnabled: false
bandwidth: BPS_100M
candidateIpv6Subnets:
- string
candidateSubnets:
- string
cloudRouterIpv6InterfaceId: string
customerRouterIpv6InterfaceId: string
description: string
edgeAvailabilityDomain: AVAILABILITY_DOMAIN_1
encryption: IPSEC
interconnect: string
ipsecInternalAddresses:
- string
labels:
string: string
mtu: 0
name: string
pairingKey: string
partnerAsn: string
partnerMetadata:
interconnectName: string
partnerName: string
portalUrl: string
project: string
region: string
requestId: string
router: string
stackType: IPV4_IPV6
subnetLength: 0
type: DEDICATED
vlanTag8021q: 0
InterconnectAttachment Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The InterconnectAttachment resource accepts the following input properties:
- Region string
- Admin
Enabled bool - Determines whether this Attachment will carry packets. Not present for PARTNER_PROVIDER.
- Bandwidth
Pulumi.
Google Native. Compute. V1. Interconnect Attachment Bandwidth - Provisioned bandwidth capacity for the interconnect attachment. For attachments of type DEDICATED, the user can set the bandwidth. For attachments of type PARTNER, the Google Partner that is operating the interconnect must set the bandwidth. Output only for PARTNER type, mutable for PARTNER_PROVIDER and DEDICATED, and can take one of the following values: - BPS_50M: 50 Mbit/s - BPS_100M: 100 Mbit/s - BPS_200M: 200 Mbit/s - BPS_300M: 300 Mbit/s - BPS_400M: 400 Mbit/s - BPS_500M: 500 Mbit/s - BPS_1G: 1 Gbit/s - BPS_2G: 2 Gbit/s - BPS_5G: 5 Gbit/s - BPS_10G: 10 Gbit/s - BPS_20G: 20 Gbit/s - BPS_50G: 50 Gbit/s
- Candidate
Ipv6Subnets List<string> - This field is not available.
- Candidate
Subnets List<string> - Up to 16 candidate prefixes that can be used to restrict the allocation of cloudRouterIpAddress and customerRouterIpAddress for this attachment. All prefixes must be within link-local address space (169.254.0.0/16) and must be /29 or shorter (/28, /27, etc). Google will attempt to select an unused /29 from the supplied candidate prefix(es). The request will fail if all possible /29s are in use on Google's edge. If not supplied, Google will randomly select an unused /29 from all of link-local space.
- Cloud
Router stringIpv6Interface Id - This field is not available.
- Customer
Router stringIpv6Interface Id - This field is not available.
- Description string
- An optional description of this resource.
- Edge
Availability Pulumi.Domain Google Native. Compute. V1. Interconnect Attachment Edge Availability Domain - Desired availability domain for the attachment. Only available for type PARTNER, at creation time, and can take one of the following values: - AVAILABILITY_DOMAIN_ANY - AVAILABILITY_DOMAIN_1 - AVAILABILITY_DOMAIN_2 For improved reliability, customers should configure a pair of attachments, one per availability domain. The selected availability domain will be provided to the Partner via the pairing key, so that the provisioned circuit will lie in the specified domain. If not specified, the value will default to AVAILABILITY_DOMAIN_ANY.
- Encryption
Pulumi.
Google Native. Compute. V1. Interconnect Attachment Encryption - Indicates the user-supplied encryption option of this VLAN attachment (interconnectAttachment). Can only be specified at attachment creation for PARTNER or DEDICATED attachments. Possible values are: - NONE - This is the default value, which means that the VLAN attachment carries unencrypted traffic. VMs are able to send traffic to, or receive traffic from, such a VLAN attachment. - IPSEC - The VLAN attachment carries only encrypted traffic that is encrypted by an IPsec device, such as an HA VPN gateway or third-party IPsec VPN. VMs cannot directly send traffic to, or receive traffic from, such a VLAN attachment. To use HA VPN over Cloud Interconnect, the VLAN attachment must be created with this option.
- Interconnect string
- URL of the underlying Interconnect object that this attachment's traffic will traverse through.
- Ipsec
Internal List<string>Addresses - A list of URLs of addresses that have been reserved for the VLAN attachment. Used only for the VLAN attachment that has the encryption option as IPSEC. The addresses must be regional internal IP address ranges. When creating an HA VPN gateway over the VLAN attachment, if the attachment is configured to use a regional internal IP address, then the VPN gateway's IP address is allocated from the IP address range specified here. For example, if the HA VPN gateway's interface 0 is paired to this VLAN attachment, then a regional internal IP address for the VPN gateway interface 0 will be allocated from the IP address specified for this VLAN attachment. If this field is not specified when creating the VLAN attachment, then later on when creating an HA VPN gateway on this VLAN attachment, the HA VPN gateway's IP address is allocated from the regional external IP address pool.
- Labels Dictionary<string, string>
- Labels for this resource. These can only be added or modified by the setLabels method. Each label key/value pair must comply with RFC1035. Label values may be empty.
- Mtu int
- Maximum Transmission Unit (MTU), in bytes, of packets passing through this interconnect attachment. Only 1440 and 1500 are allowed. If not specified, the value will default to 1440.
- Name string
- Name of the resource. Provided by the client when the resource is created. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression
[a-z]([-a-z0-9]*[a-z0-9])?
which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash. - Pairing
Key string - [Output only for type PARTNER. Input only for PARTNER_PROVIDER. Not present for DEDICATED]. The opaque identifier of a PARTNER attachment used to initiate provisioning with a selected partner. Of the form "XXXXX/region/domain"
- Partner
Asn string - Optional BGP ASN for the router supplied by a Layer 3 Partner if they configured BGP on behalf of the customer. Output only for PARTNER type, input only for PARTNER_PROVIDER, not available for DEDICATED.
- Partner
Metadata Pulumi.Google Native. Compute. V1. Inputs. Interconnect Attachment Partner Metadata - Informational metadata about Partner attachments from Partners to display to customers. Output only for PARTNER type, mutable for PARTNER_PROVIDER, not available for DEDICATED.
- Project string
- Request
Id string - An optional request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already been completed. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check if original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate commitments. The request ID must be a valid UUID with the exception that zero UUID is not supported ( 00000000-0000-0000-0000-000000000000).
- Router string
- URL of the Cloud Router to be used for dynamic routing. This router must be in the same region as this InterconnectAttachment. The InterconnectAttachment will automatically connect the Interconnect to the network & region within which the Cloud Router is configured.
- Stack
Type Pulumi.Google Native. Compute. V1. Interconnect Attachment Stack Type - The stack type for this interconnect attachment to identify whether the IPv6 feature is enabled or not. If not specified, IPV4_ONLY will be used. This field can be both set at interconnect attachments creation and update interconnect attachment operations.
- Subnet
Length int - Length of the IPv4 subnet mask. Allowed values: - 29 (default) - 30 The default value is 29, except for Cross-Cloud Interconnect connections that use an InterconnectRemoteLocation with a constraints.subnetLengthRange.min equal to 30. For example, connections that use an Azure remote location fall into this category. In these cases, the default value is 30, and requesting 29 returns an error. Where both 29 and 30 are allowed, 29 is preferred, because it gives Google Cloud Support more debugging visibility.
- Type
Pulumi.
Google Native. Compute. V1. Interconnect Attachment Type - The type of interconnect attachment this is, which can take one of the following values: - DEDICATED: an attachment to a Dedicated Interconnect. - PARTNER: an attachment to a Partner Interconnect, created by the customer. - PARTNER_PROVIDER: an attachment to a Partner Interconnect, created by the partner.
- Vlan
Tag8021q int - The IEEE 802.1Q VLAN tag for this attachment, in the range 2-4093. Only specified at creation time.
- Region string
- Admin
Enabled bool - Determines whether this Attachment will carry packets. Not present for PARTNER_PROVIDER.
- Bandwidth
Interconnect
Attachment Bandwidth - Provisioned bandwidth capacity for the interconnect attachment. For attachments of type DEDICATED, the user can set the bandwidth. For attachments of type PARTNER, the Google Partner that is operating the interconnect must set the bandwidth. Output only for PARTNER type, mutable for PARTNER_PROVIDER and DEDICATED, and can take one of the following values: - BPS_50M: 50 Mbit/s - BPS_100M: 100 Mbit/s - BPS_200M: 200 Mbit/s - BPS_300M: 300 Mbit/s - BPS_400M: 400 Mbit/s - BPS_500M: 500 Mbit/s - BPS_1G: 1 Gbit/s - BPS_2G: 2 Gbit/s - BPS_5G: 5 Gbit/s - BPS_10G: 10 Gbit/s - BPS_20G: 20 Gbit/s - BPS_50G: 50 Gbit/s
- Candidate
Ipv6Subnets []string - This field is not available.
- Candidate
Subnets []string - Up to 16 candidate prefixes that can be used to restrict the allocation of cloudRouterIpAddress and customerRouterIpAddress for this attachment. All prefixes must be within link-local address space (169.254.0.0/16) and must be /29 or shorter (/28, /27, etc). Google will attempt to select an unused /29 from the supplied candidate prefix(es). The request will fail if all possible /29s are in use on Google's edge. If not supplied, Google will randomly select an unused /29 from all of link-local space.
- Cloud
Router stringIpv6Interface Id - This field is not available.
- Customer
Router stringIpv6Interface Id - This field is not available.
- Description string
- An optional description of this resource.
- Edge
Availability InterconnectDomain Attachment Edge Availability Domain - Desired availability domain for the attachment. Only available for type PARTNER, at creation time, and can take one of the following values: - AVAILABILITY_DOMAIN_ANY - AVAILABILITY_DOMAIN_1 - AVAILABILITY_DOMAIN_2 For improved reliability, customers should configure a pair of attachments, one per availability domain. The selected availability domain will be provided to the Partner via the pairing key, so that the provisioned circuit will lie in the specified domain. If not specified, the value will default to AVAILABILITY_DOMAIN_ANY.
- Encryption
Interconnect
Attachment Encryption - Indicates the user-supplied encryption option of this VLAN attachment (interconnectAttachment). Can only be specified at attachment creation for PARTNER or DEDICATED attachments. Possible values are: - NONE - This is the default value, which means that the VLAN attachment carries unencrypted traffic. VMs are able to send traffic to, or receive traffic from, such a VLAN attachment. - IPSEC - The VLAN attachment carries only encrypted traffic that is encrypted by an IPsec device, such as an HA VPN gateway or third-party IPsec VPN. VMs cannot directly send traffic to, or receive traffic from, such a VLAN attachment. To use HA VPN over Cloud Interconnect, the VLAN attachment must be created with this option.
- Interconnect string
- URL of the underlying Interconnect object that this attachment's traffic will traverse through.
- Ipsec
Internal []stringAddresses - A list of URLs of addresses that have been reserved for the VLAN attachment. Used only for the VLAN attachment that has the encryption option as IPSEC. The addresses must be regional internal IP address ranges. When creating an HA VPN gateway over the VLAN attachment, if the attachment is configured to use a regional internal IP address, then the VPN gateway's IP address is allocated from the IP address range specified here. For example, if the HA VPN gateway's interface 0 is paired to this VLAN attachment, then a regional internal IP address for the VPN gateway interface 0 will be allocated from the IP address specified for this VLAN attachment. If this field is not specified when creating the VLAN attachment, then later on when creating an HA VPN gateway on this VLAN attachment, the HA VPN gateway's IP address is allocated from the regional external IP address pool.
- Labels map[string]string
- Labels for this resource. These can only be added or modified by the setLabels method. Each label key/value pair must comply with RFC1035. Label values may be empty.
- Mtu int
- Maximum Transmission Unit (MTU), in bytes, of packets passing through this interconnect attachment. Only 1440 and 1500 are allowed. If not specified, the value will default to 1440.
- Name string
- Name of the resource. Provided by the client when the resource is created. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression
[a-z]([-a-z0-9]*[a-z0-9])?
which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash. - Pairing
Key string - [Output only for type PARTNER. Input only for PARTNER_PROVIDER. Not present for DEDICATED]. The opaque identifier of a PARTNER attachment used to initiate provisioning with a selected partner. Of the form "XXXXX/region/domain"
- Partner
Asn string - Optional BGP ASN for the router supplied by a Layer 3 Partner if they configured BGP on behalf of the customer. Output only for PARTNER type, input only for PARTNER_PROVIDER, not available for DEDICATED.
- Partner
Metadata InterconnectAttachment Partner Metadata Args - Informational metadata about Partner attachments from Partners to display to customers. Output only for PARTNER type, mutable for PARTNER_PROVIDER, not available for DEDICATED.
- Project string
- Request
Id string - An optional request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already been completed. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check if original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate commitments. The request ID must be a valid UUID with the exception that zero UUID is not supported ( 00000000-0000-0000-0000-000000000000).
- Router string
- URL of the Cloud Router to be used for dynamic routing. This router must be in the same region as this InterconnectAttachment. The InterconnectAttachment will automatically connect the Interconnect to the network & region within which the Cloud Router is configured.
- Stack
Type InterconnectAttachment Stack Type - The stack type for this interconnect attachment to identify whether the IPv6 feature is enabled or not. If not specified, IPV4_ONLY will be used. This field can be both set at interconnect attachments creation and update interconnect attachment operations.
- Subnet
Length int - Length of the IPv4 subnet mask. Allowed values: - 29 (default) - 30 The default value is 29, except for Cross-Cloud Interconnect connections that use an InterconnectRemoteLocation with a constraints.subnetLengthRange.min equal to 30. For example, connections that use an Azure remote location fall into this category. In these cases, the default value is 30, and requesting 29 returns an error. Where both 29 and 30 are allowed, 29 is preferred, because it gives Google Cloud Support more debugging visibility.
- Type
Interconnect
Attachment Type - The type of interconnect attachment this is, which can take one of the following values: - DEDICATED: an attachment to a Dedicated Interconnect. - PARTNER: an attachment to a Partner Interconnect, created by the customer. - PARTNER_PROVIDER: an attachment to a Partner Interconnect, created by the partner.
- Vlan
Tag8021q int - The IEEE 802.1Q VLAN tag for this attachment, in the range 2-4093. Only specified at creation time.
- region String
- admin
Enabled Boolean - Determines whether this Attachment will carry packets. Not present for PARTNER_PROVIDER.
- bandwidth
Interconnect
Attachment Bandwidth - Provisioned bandwidth capacity for the interconnect attachment. For attachments of type DEDICATED, the user can set the bandwidth. For attachments of type PARTNER, the Google Partner that is operating the interconnect must set the bandwidth. Output only for PARTNER type, mutable for PARTNER_PROVIDER and DEDICATED, and can take one of the following values: - BPS_50M: 50 Mbit/s - BPS_100M: 100 Mbit/s - BPS_200M: 200 Mbit/s - BPS_300M: 300 Mbit/s - BPS_400M: 400 Mbit/s - BPS_500M: 500 Mbit/s - BPS_1G: 1 Gbit/s - BPS_2G: 2 Gbit/s - BPS_5G: 5 Gbit/s - BPS_10G: 10 Gbit/s - BPS_20G: 20 Gbit/s - BPS_50G: 50 Gbit/s
- candidate
Ipv6Subnets List<String> - This field is not available.
- candidate
Subnets List<String> - Up to 16 candidate prefixes that can be used to restrict the allocation of cloudRouterIpAddress and customerRouterIpAddress for this attachment. All prefixes must be within link-local address space (169.254.0.0/16) and must be /29 or shorter (/28, /27, etc). Google will attempt to select an unused /29 from the supplied candidate prefix(es). The request will fail if all possible /29s are in use on Google's edge. If not supplied, Google will randomly select an unused /29 from all of link-local space.
- cloud
Router StringIpv6Interface Id - This field is not available.
- customer
Router StringIpv6Interface Id - This field is not available.
- description String
- An optional description of this resource.
- edge
Availability InterconnectDomain Attachment Edge Availability Domain - Desired availability domain for the attachment. Only available for type PARTNER, at creation time, and can take one of the following values: - AVAILABILITY_DOMAIN_ANY - AVAILABILITY_DOMAIN_1 - AVAILABILITY_DOMAIN_2 For improved reliability, customers should configure a pair of attachments, one per availability domain. The selected availability domain will be provided to the Partner via the pairing key, so that the provisioned circuit will lie in the specified domain. If not specified, the value will default to AVAILABILITY_DOMAIN_ANY.
- encryption
Interconnect
Attachment Encryption - Indicates the user-supplied encryption option of this VLAN attachment (interconnectAttachment). Can only be specified at attachment creation for PARTNER or DEDICATED attachments. Possible values are: - NONE - This is the default value, which means that the VLAN attachment carries unencrypted traffic. VMs are able to send traffic to, or receive traffic from, such a VLAN attachment. - IPSEC - The VLAN attachment carries only encrypted traffic that is encrypted by an IPsec device, such as an HA VPN gateway or third-party IPsec VPN. VMs cannot directly send traffic to, or receive traffic from, such a VLAN attachment. To use HA VPN over Cloud Interconnect, the VLAN attachment must be created with this option.
- interconnect String
- URL of the underlying Interconnect object that this attachment's traffic will traverse through.
- ipsec
Internal List<String>Addresses - A list of URLs of addresses that have been reserved for the VLAN attachment. Used only for the VLAN attachment that has the encryption option as IPSEC. The addresses must be regional internal IP address ranges. When creating an HA VPN gateway over the VLAN attachment, if the attachment is configured to use a regional internal IP address, then the VPN gateway's IP address is allocated from the IP address range specified here. For example, if the HA VPN gateway's interface 0 is paired to this VLAN attachment, then a regional internal IP address for the VPN gateway interface 0 will be allocated from the IP address specified for this VLAN attachment. If this field is not specified when creating the VLAN attachment, then later on when creating an HA VPN gateway on this VLAN attachment, the HA VPN gateway's IP address is allocated from the regional external IP address pool.
- labels Map<String,String>
- Labels for this resource. These can only be added or modified by the setLabels method. Each label key/value pair must comply with RFC1035. Label values may be empty.
- mtu Integer
- Maximum Transmission Unit (MTU), in bytes, of packets passing through this interconnect attachment. Only 1440 and 1500 are allowed. If not specified, the value will default to 1440.
- name String
- Name of the resource. Provided by the client when the resource is created. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression
[a-z]([-a-z0-9]*[a-z0-9])?
which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash. - pairing
Key String - [Output only for type PARTNER. Input only for PARTNER_PROVIDER. Not present for DEDICATED]. The opaque identifier of a PARTNER attachment used to initiate provisioning with a selected partner. Of the form "XXXXX/region/domain"
- partner
Asn String - Optional BGP ASN for the router supplied by a Layer 3 Partner if they configured BGP on behalf of the customer. Output only for PARTNER type, input only for PARTNER_PROVIDER, not available for DEDICATED.
- partner
Metadata InterconnectAttachment Partner Metadata - Informational metadata about Partner attachments from Partners to display to customers. Output only for PARTNER type, mutable for PARTNER_PROVIDER, not available for DEDICATED.
- project String
- request
Id String - An optional request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already been completed. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check if original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate commitments. The request ID must be a valid UUID with the exception that zero UUID is not supported ( 00000000-0000-0000-0000-000000000000).
- router String
- URL of the Cloud Router to be used for dynamic routing. This router must be in the same region as this InterconnectAttachment. The InterconnectAttachment will automatically connect the Interconnect to the network & region within which the Cloud Router is configured.
- stack
Type InterconnectAttachment Stack Type - The stack type for this interconnect attachment to identify whether the IPv6 feature is enabled or not. If not specified, IPV4_ONLY will be used. This field can be both set at interconnect attachments creation and update interconnect attachment operations.
- subnet
Length Integer - Length of the IPv4 subnet mask. Allowed values: - 29 (default) - 30 The default value is 29, except for Cross-Cloud Interconnect connections that use an InterconnectRemoteLocation with a constraints.subnetLengthRange.min equal to 30. For example, connections that use an Azure remote location fall into this category. In these cases, the default value is 30, and requesting 29 returns an error. Where both 29 and 30 are allowed, 29 is preferred, because it gives Google Cloud Support more debugging visibility.
- type
Interconnect
Attachment Type - The type of interconnect attachment this is, which can take one of the following values: - DEDICATED: an attachment to a Dedicated Interconnect. - PARTNER: an attachment to a Partner Interconnect, created by the customer. - PARTNER_PROVIDER: an attachment to a Partner Interconnect, created by the partner.
- vlan
Tag8021q Integer - The IEEE 802.1Q VLAN tag for this attachment, in the range 2-4093. Only specified at creation time.
- region string
- admin
Enabled boolean - Determines whether this Attachment will carry packets. Not present for PARTNER_PROVIDER.
- bandwidth
Interconnect
Attachment Bandwidth - Provisioned bandwidth capacity for the interconnect attachment. For attachments of type DEDICATED, the user can set the bandwidth. For attachments of type PARTNER, the Google Partner that is operating the interconnect must set the bandwidth. Output only for PARTNER type, mutable for PARTNER_PROVIDER and DEDICATED, and can take one of the following values: - BPS_50M: 50 Mbit/s - BPS_100M: 100 Mbit/s - BPS_200M: 200 Mbit/s - BPS_300M: 300 Mbit/s - BPS_400M: 400 Mbit/s - BPS_500M: 500 Mbit/s - BPS_1G: 1 Gbit/s - BPS_2G: 2 Gbit/s - BPS_5G: 5 Gbit/s - BPS_10G: 10 Gbit/s - BPS_20G: 20 Gbit/s - BPS_50G: 50 Gbit/s
- candidate
Ipv6Subnets string[] - This field is not available.
- candidate
Subnets string[] - Up to 16 candidate prefixes that can be used to restrict the allocation of cloudRouterIpAddress and customerRouterIpAddress for this attachment. All prefixes must be within link-local address space (169.254.0.0/16) and must be /29 or shorter (/28, /27, etc). Google will attempt to select an unused /29 from the supplied candidate prefix(es). The request will fail if all possible /29s are in use on Google's edge. If not supplied, Google will randomly select an unused /29 from all of link-local space.
- cloud
Router stringIpv6Interface Id - This field is not available.
- customer
Router stringIpv6Interface Id - This field is not available.
- description string
- An optional description of this resource.
- edge
Availability InterconnectDomain Attachment Edge Availability Domain - Desired availability domain for the attachment. Only available for type PARTNER, at creation time, and can take one of the following values: - AVAILABILITY_DOMAIN_ANY - AVAILABILITY_DOMAIN_1 - AVAILABILITY_DOMAIN_2 For improved reliability, customers should configure a pair of attachments, one per availability domain. The selected availability domain will be provided to the Partner via the pairing key, so that the provisioned circuit will lie in the specified domain. If not specified, the value will default to AVAILABILITY_DOMAIN_ANY.
- encryption
Interconnect
Attachment Encryption - Indicates the user-supplied encryption option of this VLAN attachment (interconnectAttachment). Can only be specified at attachment creation for PARTNER or DEDICATED attachments. Possible values are: - NONE - This is the default value, which means that the VLAN attachment carries unencrypted traffic. VMs are able to send traffic to, or receive traffic from, such a VLAN attachment. - IPSEC - The VLAN attachment carries only encrypted traffic that is encrypted by an IPsec device, such as an HA VPN gateway or third-party IPsec VPN. VMs cannot directly send traffic to, or receive traffic from, such a VLAN attachment. To use HA VPN over Cloud Interconnect, the VLAN attachment must be created with this option.
- interconnect string
- URL of the underlying Interconnect object that this attachment's traffic will traverse through.
- ipsec
Internal string[]Addresses - A list of URLs of addresses that have been reserved for the VLAN attachment. Used only for the VLAN attachment that has the encryption option as IPSEC. The addresses must be regional internal IP address ranges. When creating an HA VPN gateway over the VLAN attachment, if the attachment is configured to use a regional internal IP address, then the VPN gateway's IP address is allocated from the IP address range specified here. For example, if the HA VPN gateway's interface 0 is paired to this VLAN attachment, then a regional internal IP address for the VPN gateway interface 0 will be allocated from the IP address specified for this VLAN attachment. If this field is not specified when creating the VLAN attachment, then later on when creating an HA VPN gateway on this VLAN attachment, the HA VPN gateway's IP address is allocated from the regional external IP address pool.
- labels {[key: string]: string}
- Labels for this resource. These can only be added or modified by the setLabels method. Each label key/value pair must comply with RFC1035. Label values may be empty.
- mtu number
- Maximum Transmission Unit (MTU), in bytes, of packets passing through this interconnect attachment. Only 1440 and 1500 are allowed. If not specified, the value will default to 1440.
- name string
- Name of the resource. Provided by the client when the resource is created. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression
[a-z]([-a-z0-9]*[a-z0-9])?
which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash. - pairing
Key string - [Output only for type PARTNER. Input only for PARTNER_PROVIDER. Not present for DEDICATED]. The opaque identifier of a PARTNER attachment used to initiate provisioning with a selected partner. Of the form "XXXXX/region/domain"
- partner
Asn string - Optional BGP ASN for the router supplied by a Layer 3 Partner if they configured BGP on behalf of the customer. Output only for PARTNER type, input only for PARTNER_PROVIDER, not available for DEDICATED.
- partner
Metadata InterconnectAttachment Partner Metadata - Informational metadata about Partner attachments from Partners to display to customers. Output only for PARTNER type, mutable for PARTNER_PROVIDER, not available for DEDICATED.
- project string
- request
Id string - An optional request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already been completed. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check if original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate commitments. The request ID must be a valid UUID with the exception that zero UUID is not supported ( 00000000-0000-0000-0000-000000000000).
- router string
- URL of the Cloud Router to be used for dynamic routing. This router must be in the same region as this InterconnectAttachment. The InterconnectAttachment will automatically connect the Interconnect to the network & region within which the Cloud Router is configured.
- stack
Type InterconnectAttachment Stack Type - The stack type for this interconnect attachment to identify whether the IPv6 feature is enabled or not. If not specified, IPV4_ONLY will be used. This field can be both set at interconnect attachments creation and update interconnect attachment operations.
- subnet
Length number - Length of the IPv4 subnet mask. Allowed values: - 29 (default) - 30 The default value is 29, except for Cross-Cloud Interconnect connections that use an InterconnectRemoteLocation with a constraints.subnetLengthRange.min equal to 30. For example, connections that use an Azure remote location fall into this category. In these cases, the default value is 30, and requesting 29 returns an error. Where both 29 and 30 are allowed, 29 is preferred, because it gives Google Cloud Support more debugging visibility.
- type
Interconnect
Attachment Type - The type of interconnect attachment this is, which can take one of the following values: - DEDICATED: an attachment to a Dedicated Interconnect. - PARTNER: an attachment to a Partner Interconnect, created by the customer. - PARTNER_PROVIDER: an attachment to a Partner Interconnect, created by the partner.
- vlan
Tag8021q number - The IEEE 802.1Q VLAN tag for this attachment, in the range 2-4093. Only specified at creation time.
- region str
- admin_
enabled bool - Determines whether this Attachment will carry packets. Not present for PARTNER_PROVIDER.
- bandwidth
Interconnect
Attachment Bandwidth - Provisioned bandwidth capacity for the interconnect attachment. For attachments of type DEDICATED, the user can set the bandwidth. For attachments of type PARTNER, the Google Partner that is operating the interconnect must set the bandwidth. Output only for PARTNER type, mutable for PARTNER_PROVIDER and DEDICATED, and can take one of the following values: - BPS_50M: 50 Mbit/s - BPS_100M: 100 Mbit/s - BPS_200M: 200 Mbit/s - BPS_300M: 300 Mbit/s - BPS_400M: 400 Mbit/s - BPS_500M: 500 Mbit/s - BPS_1G: 1 Gbit/s - BPS_2G: 2 Gbit/s - BPS_5G: 5 Gbit/s - BPS_10G: 10 Gbit/s - BPS_20G: 20 Gbit/s - BPS_50G: 50 Gbit/s
- candidate_
ipv6_ Sequence[str]subnets - This field is not available.
- candidate_
subnets Sequence[str] - Up to 16 candidate prefixes that can be used to restrict the allocation of cloudRouterIpAddress and customerRouterIpAddress for this attachment. All prefixes must be within link-local address space (169.254.0.0/16) and must be /29 or shorter (/28, /27, etc). Google will attempt to select an unused /29 from the supplied candidate prefix(es). The request will fail if all possible /29s are in use on Google's edge. If not supplied, Google will randomly select an unused /29 from all of link-local space.
- cloud_
router_ stripv6_ interface_ id - This field is not available.
- customer_
router_ stripv6_ interface_ id - This field is not available.
- description str
- An optional description of this resource.
- edge_
availability_ Interconnectdomain Attachment Edge Availability Domain - Desired availability domain for the attachment. Only available for type PARTNER, at creation time, and can take one of the following values: - AVAILABILITY_DOMAIN_ANY - AVAILABILITY_DOMAIN_1 - AVAILABILITY_DOMAIN_2 For improved reliability, customers should configure a pair of attachments, one per availability domain. The selected availability domain will be provided to the Partner via the pairing key, so that the provisioned circuit will lie in the specified domain. If not specified, the value will default to AVAILABILITY_DOMAIN_ANY.
- encryption
Interconnect
Attachment Encryption - Indicates the user-supplied encryption option of this VLAN attachment (interconnectAttachment). Can only be specified at attachment creation for PARTNER or DEDICATED attachments. Possible values are: - NONE - This is the default value, which means that the VLAN attachment carries unencrypted traffic. VMs are able to send traffic to, or receive traffic from, such a VLAN attachment. - IPSEC - The VLAN attachment carries only encrypted traffic that is encrypted by an IPsec device, such as an HA VPN gateway or third-party IPsec VPN. VMs cannot directly send traffic to, or receive traffic from, such a VLAN attachment. To use HA VPN over Cloud Interconnect, the VLAN attachment must be created with this option.
- interconnect str
- URL of the underlying Interconnect object that this attachment's traffic will traverse through.
- ipsec_
internal_ Sequence[str]addresses - A list of URLs of addresses that have been reserved for the VLAN attachment. Used only for the VLAN attachment that has the encryption option as IPSEC. The addresses must be regional internal IP address ranges. When creating an HA VPN gateway over the VLAN attachment, if the attachment is configured to use a regional internal IP address, then the VPN gateway's IP address is allocated from the IP address range specified here. For example, if the HA VPN gateway's interface 0 is paired to this VLAN attachment, then a regional internal IP address for the VPN gateway interface 0 will be allocated from the IP address specified for this VLAN attachment. If this field is not specified when creating the VLAN attachment, then later on when creating an HA VPN gateway on this VLAN attachment, the HA VPN gateway's IP address is allocated from the regional external IP address pool.
- labels Mapping[str, str]
- Labels for this resource. These can only be added or modified by the setLabels method. Each label key/value pair must comply with RFC1035. Label values may be empty.
- mtu int
- Maximum Transmission Unit (MTU), in bytes, of packets passing through this interconnect attachment. Only 1440 and 1500 are allowed. If not specified, the value will default to 1440.
- name str
- Name of the resource. Provided by the client when the resource is created. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression
[a-z]([-a-z0-9]*[a-z0-9])?
which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash. - pairing_
key str - [Output only for type PARTNER. Input only for PARTNER_PROVIDER. Not present for DEDICATED]. The opaque identifier of a PARTNER attachment used to initiate provisioning with a selected partner. Of the form "XXXXX/region/domain"
- partner_
asn str - Optional BGP ASN for the router supplied by a Layer 3 Partner if they configured BGP on behalf of the customer. Output only for PARTNER type, input only for PARTNER_PROVIDER, not available for DEDICATED.
- partner_
metadata InterconnectAttachment Partner Metadata Args - Informational metadata about Partner attachments from Partners to display to customers. Output only for PARTNER type, mutable for PARTNER_PROVIDER, not available for DEDICATED.
- project str
- request_
id str - An optional request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already been completed. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check if original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate commitments. The request ID must be a valid UUID with the exception that zero UUID is not supported ( 00000000-0000-0000-0000-000000000000).
- router str
- URL of the Cloud Router to be used for dynamic routing. This router must be in the same region as this InterconnectAttachment. The InterconnectAttachment will automatically connect the Interconnect to the network & region within which the Cloud Router is configured.
- stack_
type InterconnectAttachment Stack Type - The stack type for this interconnect attachment to identify whether the IPv6 feature is enabled or not. If not specified, IPV4_ONLY will be used. This field can be both set at interconnect attachments creation and update interconnect attachment operations.
- subnet_
length int - Length of the IPv4 subnet mask. Allowed values: - 29 (default) - 30 The default value is 29, except for Cross-Cloud Interconnect connections that use an InterconnectRemoteLocation with a constraints.subnetLengthRange.min equal to 30. For example, connections that use an Azure remote location fall into this category. In these cases, the default value is 30, and requesting 29 returns an error. Where both 29 and 30 are allowed, 29 is preferred, because it gives Google Cloud Support more debugging visibility.
- type
Interconnect
Attachment Type - The type of interconnect attachment this is, which can take one of the following values: - DEDICATED: an attachment to a Dedicated Interconnect. - PARTNER: an attachment to a Partner Interconnect, created by the customer. - PARTNER_PROVIDER: an attachment to a Partner Interconnect, created by the partner.
- vlan_
tag8021q int - The IEEE 802.1Q VLAN tag for this attachment, in the range 2-4093. Only specified at creation time.
- region String
- admin
Enabled Boolean - Determines whether this Attachment will carry packets. Not present for PARTNER_PROVIDER.
- bandwidth "BPS_100M" | "BPS_10G" | "BPS_1G" | "BPS_200M" | "BPS_20G" | "BPS_2G" | "BPS_300M" | "BPS_400M" | "BPS_500M" | "BPS_50G" | "BPS_50M" | "BPS_5G"
- Provisioned bandwidth capacity for the interconnect attachment. For attachments of type DEDICATED, the user can set the bandwidth. For attachments of type PARTNER, the Google Partner that is operating the interconnect must set the bandwidth. Output only for PARTNER type, mutable for PARTNER_PROVIDER and DEDICATED, and can take one of the following values: - BPS_50M: 50 Mbit/s - BPS_100M: 100 Mbit/s - BPS_200M: 200 Mbit/s - BPS_300M: 300 Mbit/s - BPS_400M: 400 Mbit/s - BPS_500M: 500 Mbit/s - BPS_1G: 1 Gbit/s - BPS_2G: 2 Gbit/s - BPS_5G: 5 Gbit/s - BPS_10G: 10 Gbit/s - BPS_20G: 20 Gbit/s - BPS_50G: 50 Gbit/s
- candidate
Ipv6Subnets List<String> - This field is not available.
- candidate
Subnets List<String> - Up to 16 candidate prefixes that can be used to restrict the allocation of cloudRouterIpAddress and customerRouterIpAddress for this attachment. All prefixes must be within link-local address space (169.254.0.0/16) and must be /29 or shorter (/28, /27, etc). Google will attempt to select an unused /29 from the supplied candidate prefix(es). The request will fail if all possible /29s are in use on Google's edge. If not supplied, Google will randomly select an unused /29 from all of link-local space.
- cloud
Router StringIpv6Interface Id - This field is not available.
- customer
Router StringIpv6Interface Id - This field is not available.
- description String
- An optional description of this resource.
- edge
Availability "AVAILABILITY_DOMAIN_1" | "AVAILABILITY_DOMAIN_2" | "AVAILABILITY_DOMAIN_ANY"Domain - Desired availability domain for the attachment. Only available for type PARTNER, at creation time, and can take one of the following values: - AVAILABILITY_DOMAIN_ANY - AVAILABILITY_DOMAIN_1 - AVAILABILITY_DOMAIN_2 For improved reliability, customers should configure a pair of attachments, one per availability domain. The selected availability domain will be provided to the Partner via the pairing key, so that the provisioned circuit will lie in the specified domain. If not specified, the value will default to AVAILABILITY_DOMAIN_ANY.
- encryption "IPSEC" | "NONE"
- Indicates the user-supplied encryption option of this VLAN attachment (interconnectAttachment). Can only be specified at attachment creation for PARTNER or DEDICATED attachments. Possible values are: - NONE - This is the default value, which means that the VLAN attachment carries unencrypted traffic. VMs are able to send traffic to, or receive traffic from, such a VLAN attachment. - IPSEC - The VLAN attachment carries only encrypted traffic that is encrypted by an IPsec device, such as an HA VPN gateway or third-party IPsec VPN. VMs cannot directly send traffic to, or receive traffic from, such a VLAN attachment. To use HA VPN over Cloud Interconnect, the VLAN attachment must be created with this option.
- interconnect String
- URL of the underlying Interconnect object that this attachment's traffic will traverse through.
- ipsec
Internal List<String>Addresses - A list of URLs of addresses that have been reserved for the VLAN attachment. Used only for the VLAN attachment that has the encryption option as IPSEC. The addresses must be regional internal IP address ranges. When creating an HA VPN gateway over the VLAN attachment, if the attachment is configured to use a regional internal IP address, then the VPN gateway's IP address is allocated from the IP address range specified here. For example, if the HA VPN gateway's interface 0 is paired to this VLAN attachment, then a regional internal IP address for the VPN gateway interface 0 will be allocated from the IP address specified for this VLAN attachment. If this field is not specified when creating the VLAN attachment, then later on when creating an HA VPN gateway on this VLAN attachment, the HA VPN gateway's IP address is allocated from the regional external IP address pool.
- labels Map<String>
- Labels for this resource. These can only be added or modified by the setLabels method. Each label key/value pair must comply with RFC1035. Label values may be empty.
- mtu Number
- Maximum Transmission Unit (MTU), in bytes, of packets passing through this interconnect attachment. Only 1440 and 1500 are allowed. If not specified, the value will default to 1440.
- name String
- Name of the resource. Provided by the client when the resource is created. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression
[a-z]([-a-z0-9]*[a-z0-9])?
which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash. - pairing
Key String - [Output only for type PARTNER. Input only for PARTNER_PROVIDER. Not present for DEDICATED]. The opaque identifier of a PARTNER attachment used to initiate provisioning with a selected partner. Of the form "XXXXX/region/domain"
- partner
Asn String - Optional BGP ASN for the router supplied by a Layer 3 Partner if they configured BGP on behalf of the customer. Output only for PARTNER type, input only for PARTNER_PROVIDER, not available for DEDICATED.
- partner
Metadata Property Map - Informational metadata about Partner attachments from Partners to display to customers. Output only for PARTNER type, mutable for PARTNER_PROVIDER, not available for DEDICATED.
- project String
- request
Id String - An optional request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already been completed. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check if original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate commitments. The request ID must be a valid UUID with the exception that zero UUID is not supported ( 00000000-0000-0000-0000-000000000000).
- router String
- URL of the Cloud Router to be used for dynamic routing. This router must be in the same region as this InterconnectAttachment. The InterconnectAttachment will automatically connect the Interconnect to the network & region within which the Cloud Router is configured.
- stack
Type "IPV4_IPV6" | "IPV4_ONLY" - The stack type for this interconnect attachment to identify whether the IPv6 feature is enabled or not. If not specified, IPV4_ONLY will be used. This field can be both set at interconnect attachments creation and update interconnect attachment operations.
- subnet
Length Number - Length of the IPv4 subnet mask. Allowed values: - 29 (default) - 30 The default value is 29, except for Cross-Cloud Interconnect connections that use an InterconnectRemoteLocation with a constraints.subnetLengthRange.min equal to 30. For example, connections that use an Azure remote location fall into this category. In these cases, the default value is 30, and requesting 29 returns an error. Where both 29 and 30 are allowed, 29 is preferred, because it gives Google Cloud Support more debugging visibility.
- type "DEDICATED" | "PARTNER" | "PARTNER_PROVIDER"
- The type of interconnect attachment this is, which can take one of the following values: - DEDICATED: an attachment to a Dedicated Interconnect. - PARTNER: an attachment to a Partner Interconnect, created by the customer. - PARTNER_PROVIDER: an attachment to a Partner Interconnect, created by the partner.
- vlan
Tag8021q Number - The IEEE 802.1Q VLAN tag for this attachment, in the range 2-4093. Only specified at creation time.
Outputs
All input properties are implicitly available as output properties. Additionally, the InterconnectAttachment resource produces the following output properties:
- Cloud
Router stringIp Address - IPv4 address + prefix length to be configured on Cloud Router Interface for this interconnect attachment.
- Cloud
Router stringIpv6Address - IPv6 address + prefix length to be configured on Cloud Router Interface for this interconnect attachment.
- Configuration
Constraints Pulumi.Google Native. Compute. V1. Outputs. Interconnect Attachment Configuration Constraints Response - Constraints for this attachment, if any. The attachment does not work if these constraints are not met.
- Creation
Timestamp string - Creation timestamp in RFC3339 text format.
- Customer
Router stringIp Address - IPv4 address + prefix length to be configured on the customer router subinterface for this interconnect attachment.
- Customer
Router stringIpv6Address - IPv6 address + prefix length to be configured on the customer router subinterface for this interconnect attachment.
- Dataplane
Version int - Dataplane version for this InterconnectAttachment. This field is only present for Dataplane version 2 and higher. Absence of this field in the API output indicates that the Dataplane is version 1.
- Google
Reference stringId - Google reference ID, to be used when raising support tickets with Google or otherwise to debug backend connectivity issues. [Deprecated] This field is not used.
- Id string
- The provider-assigned unique ID for this managed resource.
- Kind string
- Type of the resource. Always compute#interconnectAttachment for interconnect attachments.
- Label
Fingerprint string - A fingerprint for the labels being applied to this InterconnectAttachment, which is essentially a hash of the labels set used for optimistic locking. The fingerprint is initially generated by Compute Engine and changes after every request to modify or update labels. You must always provide an up-to-date fingerprint hash in order to update or change labels, otherwise the request will fail with error 412 conditionNotMet. To see the latest fingerprint, make a get() request to retrieve an InterconnectAttachment.
- Operational
Status string - The current status of whether or not this interconnect attachment is functional, which can take one of the following values: - OS_ACTIVE: The attachment has been turned up and is ready to use. - OS_UNPROVISIONED: The attachment is not ready to use yet, because turnup is not complete.
- Private
Interconnect Pulumi.Info Google Native. Compute. V1. Outputs. Interconnect Attachment Private Info Response - Information specific to an InterconnectAttachment. This property is populated if the interconnect that this is attached to is of type DEDICATED.
- Remote
Service string - If the attachment is on a Cross-Cloud Interconnect connection, this field contains the interconnect's remote location service provider. Example values: "Amazon Web Services" "Microsoft Azure". The field is set only for attachments on Cross-Cloud Interconnect connections. Its value is copied from the InterconnectRemoteLocation remoteService field.
- Satisfies
Pzs bool - Reserved for future use.
- Self
Link string - Server-defined URL for the resource.
- State string
- The current state of this attachment's functionality. Enum values ACTIVE and UNPROVISIONED are shared by DEDICATED/PRIVATE, PARTNER, and PARTNER_PROVIDER interconnect attachments, while enum values PENDING_PARTNER, PARTNER_REQUEST_RECEIVED, and PENDING_CUSTOMER are used for only PARTNER and PARTNER_PROVIDER interconnect attachments. This state can take one of the following values: - ACTIVE: The attachment has been turned up and is ready to use. - UNPROVISIONED: The attachment is not ready to use yet, because turnup is not complete. - PENDING_PARTNER: A newly-created PARTNER attachment that has not yet been configured on the Partner side. - PARTNER_REQUEST_RECEIVED: A PARTNER attachment is in the process of provisioning after a PARTNER_PROVIDER attachment was created that references it. - PENDING_CUSTOMER: A PARTNER or PARTNER_PROVIDER attachment that is waiting for a customer to activate it. - DEFUNCT: The attachment was deleted externally and is no longer functional. This could be because the associated Interconnect was removed, or because the other side of a Partner attachment was deleted.
- Cloud
Router stringIp Address - IPv4 address + prefix length to be configured on Cloud Router Interface for this interconnect attachment.
- Cloud
Router stringIpv6Address - IPv6 address + prefix length to be configured on Cloud Router Interface for this interconnect attachment.
- Configuration
Constraints InterconnectAttachment Configuration Constraints Response - Constraints for this attachment, if any. The attachment does not work if these constraints are not met.
- Creation
Timestamp string - Creation timestamp in RFC3339 text format.
- Customer
Router stringIp Address - IPv4 address + prefix length to be configured on the customer router subinterface for this interconnect attachment.
- Customer
Router stringIpv6Address - IPv6 address + prefix length to be configured on the customer router subinterface for this interconnect attachment.
- Dataplane
Version int - Dataplane version for this InterconnectAttachment. This field is only present for Dataplane version 2 and higher. Absence of this field in the API output indicates that the Dataplane is version 1.
- Google
Reference stringId - Google reference ID, to be used when raising support tickets with Google or otherwise to debug backend connectivity issues. [Deprecated] This field is not used.
- Id string
- The provider-assigned unique ID for this managed resource.
- Kind string
- Type of the resource. Always compute#interconnectAttachment for interconnect attachments.
- Label
Fingerprint string - A fingerprint for the labels being applied to this InterconnectAttachment, which is essentially a hash of the labels set used for optimistic locking. The fingerprint is initially generated by Compute Engine and changes after every request to modify or update labels. You must always provide an up-to-date fingerprint hash in order to update or change labels, otherwise the request will fail with error 412 conditionNotMet. To see the latest fingerprint, make a get() request to retrieve an InterconnectAttachment.
- Operational
Status string - The current status of whether or not this interconnect attachment is functional, which can take one of the following values: - OS_ACTIVE: The attachment has been turned up and is ready to use. - OS_UNPROVISIONED: The attachment is not ready to use yet, because turnup is not complete.
- Private
Interconnect InterconnectInfo Attachment Private Info Response - Information specific to an InterconnectAttachment. This property is populated if the interconnect that this is attached to is of type DEDICATED.
- Remote
Service string - If the attachment is on a Cross-Cloud Interconnect connection, this field contains the interconnect's remote location service provider. Example values: "Amazon Web Services" "Microsoft Azure". The field is set only for attachments on Cross-Cloud Interconnect connections. Its value is copied from the InterconnectRemoteLocation remoteService field.
- Satisfies
Pzs bool - Reserved for future use.
- Self
Link string - Server-defined URL for the resource.
- State string
- The current state of this attachment's functionality. Enum values ACTIVE and UNPROVISIONED are shared by DEDICATED/PRIVATE, PARTNER, and PARTNER_PROVIDER interconnect attachments, while enum values PENDING_PARTNER, PARTNER_REQUEST_RECEIVED, and PENDING_CUSTOMER are used for only PARTNER and PARTNER_PROVIDER interconnect attachments. This state can take one of the following values: - ACTIVE: The attachment has been turned up and is ready to use. - UNPROVISIONED: The attachment is not ready to use yet, because turnup is not complete. - PENDING_PARTNER: A newly-created PARTNER attachment that has not yet been configured on the Partner side. - PARTNER_REQUEST_RECEIVED: A PARTNER attachment is in the process of provisioning after a PARTNER_PROVIDER attachment was created that references it. - PENDING_CUSTOMER: A PARTNER or PARTNER_PROVIDER attachment that is waiting for a customer to activate it. - DEFUNCT: The attachment was deleted externally and is no longer functional. This could be because the associated Interconnect was removed, or because the other side of a Partner attachment was deleted.
- cloud
Router StringIp Address - IPv4 address + prefix length to be configured on Cloud Router Interface for this interconnect attachment.
- cloud
Router StringIpv6Address - IPv6 address + prefix length to be configured on Cloud Router Interface for this interconnect attachment.
- configuration
Constraints InterconnectAttachment Configuration Constraints Response - Constraints for this attachment, if any. The attachment does not work if these constraints are not met.
- creation
Timestamp String - Creation timestamp in RFC3339 text format.
- customer
Router StringIp Address - IPv4 address + prefix length to be configured on the customer router subinterface for this interconnect attachment.
- customer
Router StringIpv6Address - IPv6 address + prefix length to be configured on the customer router subinterface for this interconnect attachment.
- dataplane
Version Integer - Dataplane version for this InterconnectAttachment. This field is only present for Dataplane version 2 and higher. Absence of this field in the API output indicates that the Dataplane is version 1.
- google
Reference StringId - Google reference ID, to be used when raising support tickets with Google or otherwise to debug backend connectivity issues. [Deprecated] This field is not used.
- id String
- The provider-assigned unique ID for this managed resource.
- kind String
- Type of the resource. Always compute#interconnectAttachment for interconnect attachments.
- label
Fingerprint String - A fingerprint for the labels being applied to this InterconnectAttachment, which is essentially a hash of the labels set used for optimistic locking. The fingerprint is initially generated by Compute Engine and changes after every request to modify or update labels. You must always provide an up-to-date fingerprint hash in order to update or change labels, otherwise the request will fail with error 412 conditionNotMet. To see the latest fingerprint, make a get() request to retrieve an InterconnectAttachment.
- operational
Status String - The current status of whether or not this interconnect attachment is functional, which can take one of the following values: - OS_ACTIVE: The attachment has been turned up and is ready to use. - OS_UNPROVISIONED: The attachment is not ready to use yet, because turnup is not complete.
- private
Interconnect InterconnectInfo Attachment Private Info Response - Information specific to an InterconnectAttachment. This property is populated if the interconnect that this is attached to is of type DEDICATED.
- remote
Service String - If the attachment is on a Cross-Cloud Interconnect connection, this field contains the interconnect's remote location service provider. Example values: "Amazon Web Services" "Microsoft Azure". The field is set only for attachments on Cross-Cloud Interconnect connections. Its value is copied from the InterconnectRemoteLocation remoteService field.
- satisfies
Pzs Boolean - Reserved for future use.
- self
Link String - Server-defined URL for the resource.
- state String
- The current state of this attachment's functionality. Enum values ACTIVE and UNPROVISIONED are shared by DEDICATED/PRIVATE, PARTNER, and PARTNER_PROVIDER interconnect attachments, while enum values PENDING_PARTNER, PARTNER_REQUEST_RECEIVED, and PENDING_CUSTOMER are used for only PARTNER and PARTNER_PROVIDER interconnect attachments. This state can take one of the following values: - ACTIVE: The attachment has been turned up and is ready to use. - UNPROVISIONED: The attachment is not ready to use yet, because turnup is not complete. - PENDING_PARTNER: A newly-created PARTNER attachment that has not yet been configured on the Partner side. - PARTNER_REQUEST_RECEIVED: A PARTNER attachment is in the process of provisioning after a PARTNER_PROVIDER attachment was created that references it. - PENDING_CUSTOMER: A PARTNER or PARTNER_PROVIDER attachment that is waiting for a customer to activate it. - DEFUNCT: The attachment was deleted externally and is no longer functional. This could be because the associated Interconnect was removed, or because the other side of a Partner attachment was deleted.
- cloud
Router stringIp Address - IPv4 address + prefix length to be configured on Cloud Router Interface for this interconnect attachment.
- cloud
Router stringIpv6Address - IPv6 address + prefix length to be configured on Cloud Router Interface for this interconnect attachment.
- configuration
Constraints InterconnectAttachment Configuration Constraints Response - Constraints for this attachment, if any. The attachment does not work if these constraints are not met.
- creation
Timestamp string - Creation timestamp in RFC3339 text format.
- customer
Router stringIp Address - IPv4 address + prefix length to be configured on the customer router subinterface for this interconnect attachment.
- customer
Router stringIpv6Address - IPv6 address + prefix length to be configured on the customer router subinterface for this interconnect attachment.
- dataplane
Version number - Dataplane version for this InterconnectAttachment. This field is only present for Dataplane version 2 and higher. Absence of this field in the API output indicates that the Dataplane is version 1.
- google
Reference stringId - Google reference ID, to be used when raising support tickets with Google or otherwise to debug backend connectivity issues. [Deprecated] This field is not used.
- id string
- The provider-assigned unique ID for this managed resource.
- kind string
- Type of the resource. Always compute#interconnectAttachment for interconnect attachments.
- label
Fingerprint string - A fingerprint for the labels being applied to this InterconnectAttachment, which is essentially a hash of the labels set used for optimistic locking. The fingerprint is initially generated by Compute Engine and changes after every request to modify or update labels. You must always provide an up-to-date fingerprint hash in order to update or change labels, otherwise the request will fail with error 412 conditionNotMet. To see the latest fingerprint, make a get() request to retrieve an InterconnectAttachment.
- operational
Status string - The current status of whether or not this interconnect attachment is functional, which can take one of the following values: - OS_ACTIVE: The attachment has been turned up and is ready to use. - OS_UNPROVISIONED: The attachment is not ready to use yet, because turnup is not complete.
- private
Interconnect InterconnectInfo Attachment Private Info Response - Information specific to an InterconnectAttachment. This property is populated if the interconnect that this is attached to is of type DEDICATED.
- remote
Service string - If the attachment is on a Cross-Cloud Interconnect connection, this field contains the interconnect's remote location service provider. Example values: "Amazon Web Services" "Microsoft Azure". The field is set only for attachments on Cross-Cloud Interconnect connections. Its value is copied from the InterconnectRemoteLocation remoteService field.
- satisfies
Pzs boolean - Reserved for future use.
- self
Link string - Server-defined URL for the resource.
- state string
- The current state of this attachment's functionality. Enum values ACTIVE and UNPROVISIONED are shared by DEDICATED/PRIVATE, PARTNER, and PARTNER_PROVIDER interconnect attachments, while enum values PENDING_PARTNER, PARTNER_REQUEST_RECEIVED, and PENDING_CUSTOMER are used for only PARTNER and PARTNER_PROVIDER interconnect attachments. This state can take one of the following values: - ACTIVE: The attachment has been turned up and is ready to use. - UNPROVISIONED: The attachment is not ready to use yet, because turnup is not complete. - PENDING_PARTNER: A newly-created PARTNER attachment that has not yet been configured on the Partner side. - PARTNER_REQUEST_RECEIVED: A PARTNER attachment is in the process of provisioning after a PARTNER_PROVIDER attachment was created that references it. - PENDING_CUSTOMER: A PARTNER or PARTNER_PROVIDER attachment that is waiting for a customer to activate it. - DEFUNCT: The attachment was deleted externally and is no longer functional. This could be because the associated Interconnect was removed, or because the other side of a Partner attachment was deleted.
- cloud_
router_ strip_ address - IPv4 address + prefix length to be configured on Cloud Router Interface for this interconnect attachment.
- cloud_
router_ stripv6_ address - IPv6 address + prefix length to be configured on Cloud Router Interface for this interconnect attachment.
- configuration_
constraints InterconnectAttachment Configuration Constraints Response - Constraints for this attachment, if any. The attachment does not work if these constraints are not met.
- creation_
timestamp str - Creation timestamp in RFC3339 text format.
- customer_
router_ strip_ address - IPv4 address + prefix length to be configured on the customer router subinterface for this interconnect attachment.
- customer_
router_ stripv6_ address - IPv6 address + prefix length to be configured on the customer router subinterface for this interconnect attachment.
- dataplane_
version int - Dataplane version for this InterconnectAttachment. This field is only present for Dataplane version 2 and higher. Absence of this field in the API output indicates that the Dataplane is version 1.
- google_
reference_ strid - Google reference ID, to be used when raising support tickets with Google or otherwise to debug backend connectivity issues. [Deprecated] This field is not used.
- id str
- The provider-assigned unique ID for this managed resource.
- kind str
- Type of the resource. Always compute#interconnectAttachment for interconnect attachments.
- label_
fingerprint str - A fingerprint for the labels being applied to this InterconnectAttachment, which is essentially a hash of the labels set used for optimistic locking. The fingerprint is initially generated by Compute Engine and changes after every request to modify or update labels. You must always provide an up-to-date fingerprint hash in order to update or change labels, otherwise the request will fail with error 412 conditionNotMet. To see the latest fingerprint, make a get() request to retrieve an InterconnectAttachment.
- operational_
status str - The current status of whether or not this interconnect attachment is functional, which can take one of the following values: - OS_ACTIVE: The attachment has been turned up and is ready to use. - OS_UNPROVISIONED: The attachment is not ready to use yet, because turnup is not complete.
- private_
interconnect_ Interconnectinfo Attachment Private Info Response - Information specific to an InterconnectAttachment. This property is populated if the interconnect that this is attached to is of type DEDICATED.
- remote_
service str - If the attachment is on a Cross-Cloud Interconnect connection, this field contains the interconnect's remote location service provider. Example values: "Amazon Web Services" "Microsoft Azure". The field is set only for attachments on Cross-Cloud Interconnect connections. Its value is copied from the InterconnectRemoteLocation remoteService field.
- satisfies_
pzs bool - Reserved for future use.
- self_
link str - Server-defined URL for the resource.
- state str
- The current state of this attachment's functionality. Enum values ACTIVE and UNPROVISIONED are shared by DEDICATED/PRIVATE, PARTNER, and PARTNER_PROVIDER interconnect attachments, while enum values PENDING_PARTNER, PARTNER_REQUEST_RECEIVED, and PENDING_CUSTOMER are used for only PARTNER and PARTNER_PROVIDER interconnect attachments. This state can take one of the following values: - ACTIVE: The attachment has been turned up and is ready to use. - UNPROVISIONED: The attachment is not ready to use yet, because turnup is not complete. - PENDING_PARTNER: A newly-created PARTNER attachment that has not yet been configured on the Partner side. - PARTNER_REQUEST_RECEIVED: A PARTNER attachment is in the process of provisioning after a PARTNER_PROVIDER attachment was created that references it. - PENDING_CUSTOMER: A PARTNER or PARTNER_PROVIDER attachment that is waiting for a customer to activate it. - DEFUNCT: The attachment was deleted externally and is no longer functional. This could be because the associated Interconnect was removed, or because the other side of a Partner attachment was deleted.
- cloud
Router StringIp Address - IPv4 address + prefix length to be configured on Cloud Router Interface for this interconnect attachment.
- cloud
Router StringIpv6Address - IPv6 address + prefix length to be configured on Cloud Router Interface for this interconnect attachment.
- configuration
Constraints Property Map - Constraints for this attachment, if any. The attachment does not work if these constraints are not met.
- creation
Timestamp String - Creation timestamp in RFC3339 text format.
- customer
Router StringIp Address - IPv4 address + prefix length to be configured on the customer router subinterface for this interconnect attachment.
- customer
Router StringIpv6Address - IPv6 address + prefix length to be configured on the customer router subinterface for this interconnect attachment.
- dataplane
Version Number - Dataplane version for this InterconnectAttachment. This field is only present for Dataplane version 2 and higher. Absence of this field in the API output indicates that the Dataplane is version 1.
- google
Reference StringId - Google reference ID, to be used when raising support tickets with Google or otherwise to debug backend connectivity issues. [Deprecated] This field is not used.
- id String
- The provider-assigned unique ID for this managed resource.
- kind String
- Type of the resource. Always compute#interconnectAttachment for interconnect attachments.
- label
Fingerprint String - A fingerprint for the labels being applied to this InterconnectAttachment, which is essentially a hash of the labels set used for optimistic locking. The fingerprint is initially generated by Compute Engine and changes after every request to modify or update labels. You must always provide an up-to-date fingerprint hash in order to update or change labels, otherwise the request will fail with error 412 conditionNotMet. To see the latest fingerprint, make a get() request to retrieve an InterconnectAttachment.
- operational
Status String - The current status of whether or not this interconnect attachment is functional, which can take one of the following values: - OS_ACTIVE: The attachment has been turned up and is ready to use. - OS_UNPROVISIONED: The attachment is not ready to use yet, because turnup is not complete.
- private
Interconnect Property MapInfo - Information specific to an InterconnectAttachment. This property is populated if the interconnect that this is attached to is of type DEDICATED.
- remote
Service String - If the attachment is on a Cross-Cloud Interconnect connection, this field contains the interconnect's remote location service provider. Example values: "Amazon Web Services" "Microsoft Azure". The field is set only for attachments on Cross-Cloud Interconnect connections. Its value is copied from the InterconnectRemoteLocation remoteService field.
- satisfies
Pzs Boolean - Reserved for future use.
- self
Link String - Server-defined URL for the resource.
- state String
- The current state of this attachment's functionality. Enum values ACTIVE and UNPROVISIONED are shared by DEDICATED/PRIVATE, PARTNER, and PARTNER_PROVIDER interconnect attachments, while enum values PENDING_PARTNER, PARTNER_REQUEST_RECEIVED, and PENDING_CUSTOMER are used for only PARTNER and PARTNER_PROVIDER interconnect attachments. This state can take one of the following values: - ACTIVE: The attachment has been turned up and is ready to use. - UNPROVISIONED: The attachment is not ready to use yet, because turnup is not complete. - PENDING_PARTNER: A newly-created PARTNER attachment that has not yet been configured on the Partner side. - PARTNER_REQUEST_RECEIVED: A PARTNER attachment is in the process of provisioning after a PARTNER_PROVIDER attachment was created that references it. - PENDING_CUSTOMER: A PARTNER or PARTNER_PROVIDER attachment that is waiting for a customer to activate it. - DEFUNCT: The attachment was deleted externally and is no longer functional. This could be because the associated Interconnect was removed, or because the other side of a Partner attachment was deleted.
Supporting Types
InterconnectAttachmentBandwidth, InterconnectAttachmentBandwidthArgs
- Bps100m
- BPS_100M100 Mbit/s
- Bps10g
- BPS_10G10 Gbit/s
- Bps1g
- BPS_1G1 Gbit/s
- Bps200m
- BPS_200M200 Mbit/s
- Bps20g
- BPS_20G20 Gbit/s
- Bps2g
- BPS_2G2 Gbit/s
- Bps300m
- BPS_300M300 Mbit/s
- Bps400m
- BPS_400M400 Mbit/s
- Bps500m
- BPS_500M500 Mbit/s
- Bps50g
- BPS_50G50 Gbit/s
- Bps50m
- BPS_50M50 Mbit/s
- Bps5g
- BPS_5G5 Gbit/s
- Interconnect
Attachment Bandwidth Bps100m - BPS_100M100 Mbit/s
- Interconnect
Attachment Bandwidth Bps10g - BPS_10G10 Gbit/s
- Interconnect
Attachment Bandwidth Bps1g - BPS_1G1 Gbit/s
- Interconnect
Attachment Bandwidth Bps200m - BPS_200M200 Mbit/s
- Interconnect
Attachment Bandwidth Bps20g - BPS_20G20 Gbit/s
- Interconnect
Attachment Bandwidth Bps2g - BPS_2G2 Gbit/s
- Interconnect
Attachment Bandwidth Bps300m - BPS_300M300 Mbit/s
- Interconnect
Attachment Bandwidth Bps400m - BPS_400M400 Mbit/s
- Interconnect
Attachment Bandwidth Bps500m - BPS_500M500 Mbit/s
- Interconnect
Attachment Bandwidth Bps50g - BPS_50G50 Gbit/s
- Interconnect
Attachment Bandwidth Bps50m - BPS_50M50 Mbit/s
- Interconnect
Attachment Bandwidth Bps5g - BPS_5G5 Gbit/s
- Bps100m
- BPS_100M100 Mbit/s
- Bps10g
- BPS_10G10 Gbit/s
- Bps1g
- BPS_1G1 Gbit/s
- Bps200m
- BPS_200M200 Mbit/s
- Bps20g
- BPS_20G20 Gbit/s
- Bps2g
- BPS_2G2 Gbit/s
- Bps300m
- BPS_300M300 Mbit/s
- Bps400m
- BPS_400M400 Mbit/s
- Bps500m
- BPS_500M500 Mbit/s
- Bps50g
- BPS_50G50 Gbit/s
- Bps50m
- BPS_50M50 Mbit/s
- Bps5g
- BPS_5G5 Gbit/s
- Bps100m
- BPS_100M100 Mbit/s
- Bps10g
- BPS_10G10 Gbit/s
- Bps1g
- BPS_1G1 Gbit/s
- Bps200m
- BPS_200M200 Mbit/s
- Bps20g
- BPS_20G20 Gbit/s
- Bps2g
- BPS_2G2 Gbit/s
- Bps300m
- BPS_300M300 Mbit/s
- Bps400m
- BPS_400M400 Mbit/s
- Bps500m
- BPS_500M500 Mbit/s
- Bps50g
- BPS_50G50 Gbit/s
- Bps50m
- BPS_50M50 Mbit/s
- Bps5g
- BPS_5G5 Gbit/s
- BPS100M
- BPS_100M100 Mbit/s
- BPS10G
- BPS_10G10 Gbit/s
- BPS1G
- BPS_1G1 Gbit/s
- BPS200M
- BPS_200M200 Mbit/s
- BPS20G
- BPS_20G20 Gbit/s
- BPS2G
- BPS_2G2 Gbit/s
- BPS300M
- BPS_300M300 Mbit/s
- BPS400M
- BPS_400M400 Mbit/s
- BPS500M
- BPS_500M500 Mbit/s
- BPS50G
- BPS_50G50 Gbit/s
- BPS50M
- BPS_50M50 Mbit/s
- BPS5G
- BPS_5G5 Gbit/s
- "BPS_100M"
- BPS_100M100 Mbit/s
- "BPS_10G"
- BPS_10G10 Gbit/s
- "BPS_1G"
- BPS_1G1 Gbit/s
- "BPS_200M"
- BPS_200M200 Mbit/s
- "BPS_20G"
- BPS_20G20 Gbit/s
- "BPS_2G"
- BPS_2G2 Gbit/s
- "BPS_300M"
- BPS_300M300 Mbit/s
- "BPS_400M"
- BPS_400M400 Mbit/s
- "BPS_500M"
- BPS_500M500 Mbit/s
- "BPS_50G"
- BPS_50G50 Gbit/s
- "BPS_50M"
- BPS_50M50 Mbit/s
- "BPS_5G"
- BPS_5G5 Gbit/s
InterconnectAttachmentConfigurationConstraintsBgpPeerASNRangeResponse, InterconnectAttachmentConfigurationConstraintsBgpPeerASNRangeResponseArgs
InterconnectAttachmentConfigurationConstraintsResponse, InterconnectAttachmentConfigurationConstraintsResponseArgs
- Bgp
Md5 string - Whether the attachment's BGP session requires/allows/disallows BGP MD5 authentication. This can take one of the following values: MD5_OPTIONAL, MD5_REQUIRED, MD5_UNSUPPORTED. For example, a Cross-Cloud Interconnect connection to a remote cloud provider that requires BGP MD5 authentication has the interconnectRemoteLocation attachment_configuration_constraints.bgp_md5 field set to MD5_REQUIRED, and that property is propagated to the attachment. Similarly, if BGP MD5 is MD5_UNSUPPORTED, an error is returned if MD5 is requested.
- Bgp
Peer List<Pulumi.Asn Ranges Google Native. Compute. V1. Inputs. Interconnect Attachment Configuration Constraints Bgp Peer ASNRange Response> - List of ASN ranges that the remote location is known to support. Formatted as an array of inclusive ranges {min: min-value, max: max-value}. For example, [{min: 123, max: 123}, {min: 64512, max: 65534}] allows the peer ASN to be 123 or anything in the range 64512-65534. This field is only advisory. Although the API accepts other ranges, these are the ranges that we recommend.
- Bgp
Md5 string - Whether the attachment's BGP session requires/allows/disallows BGP MD5 authentication. This can take one of the following values: MD5_OPTIONAL, MD5_REQUIRED, MD5_UNSUPPORTED. For example, a Cross-Cloud Interconnect connection to a remote cloud provider that requires BGP MD5 authentication has the interconnectRemoteLocation attachment_configuration_constraints.bgp_md5 field set to MD5_REQUIRED, and that property is propagated to the attachment. Similarly, if BGP MD5 is MD5_UNSUPPORTED, an error is returned if MD5 is requested.
- Bgp
Peer []InterconnectAsn Ranges Attachment Configuration Constraints Bgp Peer ASNRange Response - List of ASN ranges that the remote location is known to support. Formatted as an array of inclusive ranges {min: min-value, max: max-value}. For example, [{min: 123, max: 123}, {min: 64512, max: 65534}] allows the peer ASN to be 123 or anything in the range 64512-65534. This field is only advisory. Although the API accepts other ranges, these are the ranges that we recommend.
- bgp
Md5 String - Whether the attachment's BGP session requires/allows/disallows BGP MD5 authentication. This can take one of the following values: MD5_OPTIONAL, MD5_REQUIRED, MD5_UNSUPPORTED. For example, a Cross-Cloud Interconnect connection to a remote cloud provider that requires BGP MD5 authentication has the interconnectRemoteLocation attachment_configuration_constraints.bgp_md5 field set to MD5_REQUIRED, and that property is propagated to the attachment. Similarly, if BGP MD5 is MD5_UNSUPPORTED, an error is returned if MD5 is requested.
- bgp
Peer List<InterconnectAsn Ranges Attachment Configuration Constraints Bgp Peer ASNRange Response> - List of ASN ranges that the remote location is known to support. Formatted as an array of inclusive ranges {min: min-value, max: max-value}. For example, [{min: 123, max: 123}, {min: 64512, max: 65534}] allows the peer ASN to be 123 or anything in the range 64512-65534. This field is only advisory. Although the API accepts other ranges, these are the ranges that we recommend.
- bgp
Md5 string - Whether the attachment's BGP session requires/allows/disallows BGP MD5 authentication. This can take one of the following values: MD5_OPTIONAL, MD5_REQUIRED, MD5_UNSUPPORTED. For example, a Cross-Cloud Interconnect connection to a remote cloud provider that requires BGP MD5 authentication has the interconnectRemoteLocation attachment_configuration_constraints.bgp_md5 field set to MD5_REQUIRED, and that property is propagated to the attachment. Similarly, if BGP MD5 is MD5_UNSUPPORTED, an error is returned if MD5 is requested.
- bgp
Peer InterconnectAsn Ranges Attachment Configuration Constraints Bgp Peer ASNRange Response[] - List of ASN ranges that the remote location is known to support. Formatted as an array of inclusive ranges {min: min-value, max: max-value}. For example, [{min: 123, max: 123}, {min: 64512, max: 65534}] allows the peer ASN to be 123 or anything in the range 64512-65534. This field is only advisory. Although the API accepts other ranges, these are the ranges that we recommend.
- bgp_
md5 str - Whether the attachment's BGP session requires/allows/disallows BGP MD5 authentication. This can take one of the following values: MD5_OPTIONAL, MD5_REQUIRED, MD5_UNSUPPORTED. For example, a Cross-Cloud Interconnect connection to a remote cloud provider that requires BGP MD5 authentication has the interconnectRemoteLocation attachment_configuration_constraints.bgp_md5 field set to MD5_REQUIRED, and that property is propagated to the attachment. Similarly, if BGP MD5 is MD5_UNSUPPORTED, an error is returned if MD5 is requested.
- bgp_
peer_ Sequence[Interconnectasn_ ranges Attachment Configuration Constraints Bgp Peer ASNRange Response] - List of ASN ranges that the remote location is known to support. Formatted as an array of inclusive ranges {min: min-value, max: max-value}. For example, [{min: 123, max: 123}, {min: 64512, max: 65534}] allows the peer ASN to be 123 or anything in the range 64512-65534. This field is only advisory. Although the API accepts other ranges, these are the ranges that we recommend.
- bgp
Md5 String - Whether the attachment's BGP session requires/allows/disallows BGP MD5 authentication. This can take one of the following values: MD5_OPTIONAL, MD5_REQUIRED, MD5_UNSUPPORTED. For example, a Cross-Cloud Interconnect connection to a remote cloud provider that requires BGP MD5 authentication has the interconnectRemoteLocation attachment_configuration_constraints.bgp_md5 field set to MD5_REQUIRED, and that property is propagated to the attachment. Similarly, if BGP MD5 is MD5_UNSUPPORTED, an error is returned if MD5 is requested.
- bgp
Peer List<Property Map>Asn Ranges - List of ASN ranges that the remote location is known to support. Formatted as an array of inclusive ranges {min: min-value, max: max-value}. For example, [{min: 123, max: 123}, {min: 64512, max: 65534}] allows the peer ASN to be 123 or anything in the range 64512-65534. This field is only advisory. Although the API accepts other ranges, these are the ranges that we recommend.
InterconnectAttachmentEdgeAvailabilityDomain, InterconnectAttachmentEdgeAvailabilityDomainArgs
- Availability
Domain1 - AVAILABILITY_DOMAIN_1
- Availability
Domain2 - AVAILABILITY_DOMAIN_2
- Availability
Domain Any - AVAILABILITY_DOMAIN_ANY
- Interconnect
Attachment Edge Availability Domain Availability Domain1 - AVAILABILITY_DOMAIN_1
- Interconnect
Attachment Edge Availability Domain Availability Domain2 - AVAILABILITY_DOMAIN_2
- Interconnect
Attachment Edge Availability Domain Availability Domain Any - AVAILABILITY_DOMAIN_ANY
- Availability
Domain1 - AVAILABILITY_DOMAIN_1
- Availability
Domain2 - AVAILABILITY_DOMAIN_2
- Availability
Domain Any - AVAILABILITY_DOMAIN_ANY
- Availability
Domain1 - AVAILABILITY_DOMAIN_1
- Availability
Domain2 - AVAILABILITY_DOMAIN_2
- Availability
Domain Any - AVAILABILITY_DOMAIN_ANY
- AVAILABILITY_DOMAIN1
- AVAILABILITY_DOMAIN_1
- AVAILABILITY_DOMAIN2
- AVAILABILITY_DOMAIN_2
- AVAILABILITY_DOMAIN_ANY
- AVAILABILITY_DOMAIN_ANY
- "AVAILABILITY_DOMAIN_1"
- AVAILABILITY_DOMAIN_1
- "AVAILABILITY_DOMAIN_2"
- AVAILABILITY_DOMAIN_2
- "AVAILABILITY_DOMAIN_ANY"
- AVAILABILITY_DOMAIN_ANY
InterconnectAttachmentEncryption, InterconnectAttachmentEncryptionArgs
- Ipsec
- IPSECThe interconnect attachment will carry only encrypted traffic that is encrypted by an IPsec device such as HA VPN gateway; VMs cannot directly send traffic to or receive traffic from such an interconnect attachment. To use HA VPN over Cloud Interconnect, the interconnect attachment must be created with this option.
- None
- NONEThis is the default value, which means the Interconnect Attachment will carry unencrypted traffic. VMs will be able to send traffic to or receive traffic from such interconnect attachment.
- Interconnect
Attachment Encryption Ipsec - IPSECThe interconnect attachment will carry only encrypted traffic that is encrypted by an IPsec device such as HA VPN gateway; VMs cannot directly send traffic to or receive traffic from such an interconnect attachment. To use HA VPN over Cloud Interconnect, the interconnect attachment must be created with this option.
- Interconnect
Attachment Encryption None - NONEThis is the default value, which means the Interconnect Attachment will carry unencrypted traffic. VMs will be able to send traffic to or receive traffic from such interconnect attachment.
- Ipsec
- IPSECThe interconnect attachment will carry only encrypted traffic that is encrypted by an IPsec device such as HA VPN gateway; VMs cannot directly send traffic to or receive traffic from such an interconnect attachment. To use HA VPN over Cloud Interconnect, the interconnect attachment must be created with this option.
- None
- NONEThis is the default value, which means the Interconnect Attachment will carry unencrypted traffic. VMs will be able to send traffic to or receive traffic from such interconnect attachment.
- Ipsec
- IPSECThe interconnect attachment will carry only encrypted traffic that is encrypted by an IPsec device such as HA VPN gateway; VMs cannot directly send traffic to or receive traffic from such an interconnect attachment. To use HA VPN over Cloud Interconnect, the interconnect attachment must be created with this option.
- None
- NONEThis is the default value, which means the Interconnect Attachment will carry unencrypted traffic. VMs will be able to send traffic to or receive traffic from such interconnect attachment.
- IPSEC
- IPSECThe interconnect attachment will carry only encrypted traffic that is encrypted by an IPsec device such as HA VPN gateway; VMs cannot directly send traffic to or receive traffic from such an interconnect attachment. To use HA VPN over Cloud Interconnect, the interconnect attachment must be created with this option.
- NONE
- NONEThis is the default value, which means the Interconnect Attachment will carry unencrypted traffic. VMs will be able to send traffic to or receive traffic from such interconnect attachment.
- "IPSEC"
- IPSECThe interconnect attachment will carry only encrypted traffic that is encrypted by an IPsec device such as HA VPN gateway; VMs cannot directly send traffic to or receive traffic from such an interconnect attachment. To use HA VPN over Cloud Interconnect, the interconnect attachment must be created with this option.
- "NONE"
- NONEThis is the default value, which means the Interconnect Attachment will carry unencrypted traffic. VMs will be able to send traffic to or receive traffic from such interconnect attachment.
InterconnectAttachmentPartnerMetadata, InterconnectAttachmentPartnerMetadataArgs
- Interconnect
Name string - Plain text name of the Interconnect this attachment is connected to, as displayed in the Partner's portal. For instance "Chicago 1". This value may be validated to match approved Partner values.
- Partner
Name string - Plain text name of the Partner providing this attachment. This value may be validated to match approved Partner values.
- Portal
Url string - URL of the Partner's portal for this Attachment. Partners may customise this to be a deep link to the specific resource on the Partner portal. This value may be validated to match approved Partner values.
- Interconnect
Name string - Plain text name of the Interconnect this attachment is connected to, as displayed in the Partner's portal. For instance "Chicago 1". This value may be validated to match approved Partner values.
- Partner
Name string - Plain text name of the Partner providing this attachment. This value may be validated to match approved Partner values.
- Portal
Url string - URL of the Partner's portal for this Attachment. Partners may customise this to be a deep link to the specific resource on the Partner portal. This value may be validated to match approved Partner values.
- interconnect
Name String - Plain text name of the Interconnect this attachment is connected to, as displayed in the Partner's portal. For instance "Chicago 1". This value may be validated to match approved Partner values.
- partner
Name String - Plain text name of the Partner providing this attachment. This value may be validated to match approved Partner values.
- portal
Url String - URL of the Partner's portal for this Attachment. Partners may customise this to be a deep link to the specific resource on the Partner portal. This value may be validated to match approved Partner values.
- interconnect
Name string - Plain text name of the Interconnect this attachment is connected to, as displayed in the Partner's portal. For instance "Chicago 1". This value may be validated to match approved Partner values.
- partner
Name string - Plain text name of the Partner providing this attachment. This value may be validated to match approved Partner values.
- portal
Url string - URL of the Partner's portal for this Attachment. Partners may customise this to be a deep link to the specific resource on the Partner portal. This value may be validated to match approved Partner values.
- interconnect_
name str - Plain text name of the Interconnect this attachment is connected to, as displayed in the Partner's portal. For instance "Chicago 1". This value may be validated to match approved Partner values.
- partner_
name str - Plain text name of the Partner providing this attachment. This value may be validated to match approved Partner values.
- portal_
url str - URL of the Partner's portal for this Attachment. Partners may customise this to be a deep link to the specific resource on the Partner portal. This value may be validated to match approved Partner values.
- interconnect
Name String - Plain text name of the Interconnect this attachment is connected to, as displayed in the Partner's portal. For instance "Chicago 1". This value may be validated to match approved Partner values.
- partner
Name String - Plain text name of the Partner providing this attachment. This value may be validated to match approved Partner values.
- portal
Url String - URL of the Partner's portal for this Attachment. Partners may customise this to be a deep link to the specific resource on the Partner portal. This value may be validated to match approved Partner values.
InterconnectAttachmentPartnerMetadataResponse, InterconnectAttachmentPartnerMetadataResponseArgs
- Interconnect
Name string - Plain text name of the Interconnect this attachment is connected to, as displayed in the Partner's portal. For instance "Chicago 1". This value may be validated to match approved Partner values.
- Partner
Name string - Plain text name of the Partner providing this attachment. This value may be validated to match approved Partner values.
- Portal
Url string - URL of the Partner's portal for this Attachment. Partners may customise this to be a deep link to the specific resource on the Partner portal. This value may be validated to match approved Partner values.
- Interconnect
Name string - Plain text name of the Interconnect this attachment is connected to, as displayed in the Partner's portal. For instance "Chicago 1". This value may be validated to match approved Partner values.
- Partner
Name string - Plain text name of the Partner providing this attachment. This value may be validated to match approved Partner values.
- Portal
Url string - URL of the Partner's portal for this Attachment. Partners may customise this to be a deep link to the specific resource on the Partner portal. This value may be validated to match approved Partner values.
- interconnect
Name String - Plain text name of the Interconnect this attachment is connected to, as displayed in the Partner's portal. For instance "Chicago 1". This value may be validated to match approved Partner values.
- partner
Name String - Plain text name of the Partner providing this attachment. This value may be validated to match approved Partner values.
- portal
Url String - URL of the Partner's portal for this Attachment. Partners may customise this to be a deep link to the specific resource on the Partner portal. This value may be validated to match approved Partner values.
- interconnect
Name string - Plain text name of the Interconnect this attachment is connected to, as displayed in the Partner's portal. For instance "Chicago 1". This value may be validated to match approved Partner values.
- partner
Name string - Plain text name of the Partner providing this attachment. This value may be validated to match approved Partner values.
- portal
Url string - URL of the Partner's portal for this Attachment. Partners may customise this to be a deep link to the specific resource on the Partner portal. This value may be validated to match approved Partner values.
- interconnect_
name str - Plain text name of the Interconnect this attachment is connected to, as displayed in the Partner's portal. For instance "Chicago 1". This value may be validated to match approved Partner values.
- partner_
name str - Plain text name of the Partner providing this attachment. This value may be validated to match approved Partner values.
- portal_
url str - URL of the Partner's portal for this Attachment. Partners may customise this to be a deep link to the specific resource on the Partner portal. This value may be validated to match approved Partner values.
- interconnect
Name String - Plain text name of the Interconnect this attachment is connected to, as displayed in the Partner's portal. For instance "Chicago 1". This value may be validated to match approved Partner values.
- partner
Name String - Plain text name of the Partner providing this attachment. This value may be validated to match approved Partner values.
- portal
Url String - URL of the Partner's portal for this Attachment. Partners may customise this to be a deep link to the specific resource on the Partner portal. This value may be validated to match approved Partner values.
InterconnectAttachmentPrivateInfoResponse, InterconnectAttachmentPrivateInfoResponseArgs
- Tag8021q int
- 802.1q encapsulation tag to be used for traffic between Google and the customer, going to and from this network and region.
- Tag8021q int
- 802.1q encapsulation tag to be used for traffic between Google and the customer, going to and from this network and region.
- tag8021q Integer
- 802.1q encapsulation tag to be used for traffic between Google and the customer, going to and from this network and region.
- tag8021q number
- 802.1q encapsulation tag to be used for traffic between Google and the customer, going to and from this network and region.
- tag8021q int
- 802.1q encapsulation tag to be used for traffic between Google and the customer, going to and from this network and region.
- tag8021q Number
- 802.1q encapsulation tag to be used for traffic between Google and the customer, going to and from this network and region.
InterconnectAttachmentStackType, InterconnectAttachmentStackTypeArgs
- Ipv4Ipv6
- IPV4_IPV6The interconnect attachment can have both IPv4 and IPv6 addresses.
- Ipv4Only
- IPV4_ONLYThe interconnect attachment will only be assigned IPv4 addresses.
- Interconnect
Attachment Stack Type Ipv4Ipv6 - IPV4_IPV6The interconnect attachment can have both IPv4 and IPv6 addresses.
- Interconnect
Attachment Stack Type Ipv4Only - IPV4_ONLYThe interconnect attachment will only be assigned IPv4 addresses.
- Ipv4Ipv6
- IPV4_IPV6The interconnect attachment can have both IPv4 and IPv6 addresses.
- Ipv4Only
- IPV4_ONLYThe interconnect attachment will only be assigned IPv4 addresses.
- Ipv4Ipv6
- IPV4_IPV6The interconnect attachment can have both IPv4 and IPv6 addresses.
- Ipv4Only
- IPV4_ONLYThe interconnect attachment will only be assigned IPv4 addresses.
- IPV4_IPV6
- IPV4_IPV6The interconnect attachment can have both IPv4 and IPv6 addresses.
- IPV4_ONLY
- IPV4_ONLYThe interconnect attachment will only be assigned IPv4 addresses.
- "IPV4_IPV6"
- IPV4_IPV6The interconnect attachment can have both IPv4 and IPv6 addresses.
- "IPV4_ONLY"
- IPV4_ONLYThe interconnect attachment will only be assigned IPv4 addresses.
InterconnectAttachmentType, InterconnectAttachmentTypeArgs
- Dedicated
- DEDICATEDAttachment to a dedicated interconnect.
- Partner
- PARTNERAttachment to a partner interconnect, created by the customer.
- Partner
Provider - PARTNER_PROVIDERAttachment to a partner interconnect, created by the partner.
- Interconnect
Attachment Type Dedicated - DEDICATEDAttachment to a dedicated interconnect.
- Interconnect
Attachment Type Partner - PARTNERAttachment to a partner interconnect, created by the customer.
- Interconnect
Attachment Type Partner Provider - PARTNER_PROVIDERAttachment to a partner interconnect, created by the partner.
- Dedicated
- DEDICATEDAttachment to a dedicated interconnect.
- Partner
- PARTNERAttachment to a partner interconnect, created by the customer.
- Partner
Provider - PARTNER_PROVIDERAttachment to a partner interconnect, created by the partner.
- Dedicated
- DEDICATEDAttachment to a dedicated interconnect.
- Partner
- PARTNERAttachment to a partner interconnect, created by the customer.
- Partner
Provider - PARTNER_PROVIDERAttachment to a partner interconnect, created by the partner.
- DEDICATED
- DEDICATEDAttachment to a dedicated interconnect.
- PARTNER
- PARTNERAttachment to a partner interconnect, created by the customer.
- PARTNER_PROVIDER
- PARTNER_PROVIDERAttachment to a partner interconnect, created by the partner.
- "DEDICATED"
- DEDICATEDAttachment to a dedicated interconnect.
- "PARTNER"
- PARTNERAttachment to a partner interconnect, created by the customer.
- "PARTNER_PROVIDER"
- PARTNER_PROVIDERAttachment to a partner interconnect, created by the partner.
Package Details
- Repository
- Google Cloud Native pulumi/pulumi-google-native
- License
- Apache-2.0
Google Cloud Native is in preview. Google Cloud Classic is fully supported.