gcp.compute.Interconnect
Explore with Pulumi AI
Represents an Interconnect resource. The Interconnect resource is a dedicated connection between Google’s network and your on-premises network.
To get more information about Interconnect, see:
- API documentation
- How-to Guides
Example Usage
Compute Interconnect Basic
import * as pulumi from "@pulumi/pulumi";
import * as gcp from "@pulumi/gcp";
const project = gcp.organizations.getProject({});
const example_interconnect = new gcp.compute.Interconnect("example-interconnect", {
name: "example-interconnect",
customerName: "example_customer",
interconnectType: "DEDICATED",
linkType: "LINK_TYPE_ETHERNET_10G_LR",
location: project.then(project => `https://www.googleapis.com/compute/v1/projects/${project.name}/global/interconnectLocations/iad-zone1-1`),
requestedLinkCount: 1,
});
import pulumi
import pulumi_gcp as gcp
project = gcp.organizations.get_project()
example_interconnect = gcp.compute.Interconnect("example-interconnect",
name="example-interconnect",
customer_name="example_customer",
interconnect_type="DEDICATED",
link_type="LINK_TYPE_ETHERNET_10G_LR",
location=f"https://www.googleapis.com/compute/v1/projects/{project.name}/global/interconnectLocations/iad-zone1-1",
requested_link_count=1)
package main
import (
"fmt"
"github.com/pulumi/pulumi-gcp/sdk/v8/go/gcp/compute"
"github.com/pulumi/pulumi-gcp/sdk/v8/go/gcp/organizations"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
project, err := organizations.LookupProject(ctx, nil, nil)
if err != nil {
return err
}
_, err = compute.NewInterconnect(ctx, "example-interconnect", &compute.InterconnectArgs{
Name: pulumi.String("example-interconnect"),
CustomerName: pulumi.String("example_customer"),
InterconnectType: pulumi.String("DEDICATED"),
LinkType: pulumi.String("LINK_TYPE_ETHERNET_10G_LR"),
Location: pulumi.Sprintf("https://www.googleapis.com/compute/v1/projects/%v/global/interconnectLocations/iad-zone1-1", project.Name),
RequestedLinkCount: pulumi.Int(1),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Gcp = Pulumi.Gcp;
return await Deployment.RunAsync(() =>
{
var project = Gcp.Organizations.GetProject.Invoke();
var example_interconnect = new Gcp.Compute.Interconnect("example-interconnect", new()
{
Name = "example-interconnect",
CustomerName = "example_customer",
InterconnectType = "DEDICATED",
LinkType = "LINK_TYPE_ETHERNET_10G_LR",
Location = $"https://www.googleapis.com/compute/v1/projects/{project.Apply(getProjectResult => getProjectResult.Name)}/global/interconnectLocations/iad-zone1-1",
RequestedLinkCount = 1,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.gcp.organizations.OrganizationsFunctions;
import com.pulumi.gcp.organizations.inputs.GetProjectArgs;
import com.pulumi.gcp.compute.Interconnect;
import com.pulumi.gcp.compute.InterconnectArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
final var project = OrganizationsFunctions.getProject();
var example_interconnect = new Interconnect("example-interconnect", InterconnectArgs.builder()
.name("example-interconnect")
.customerName("example_customer")
.interconnectType("DEDICATED")
.linkType("LINK_TYPE_ETHERNET_10G_LR")
.location(String.format("https://www.googleapis.com/compute/v1/projects/%s/global/interconnectLocations/iad-zone1-1", project.applyValue(getProjectResult -> getProjectResult.name())))
.requestedLinkCount(1)
.build());
}
}
resources:
example-interconnect:
type: gcp:compute:Interconnect
properties:
name: example-interconnect
customerName: example_customer
interconnectType: DEDICATED
linkType: LINK_TYPE_ETHERNET_10G_LR
location: https://www.googleapis.com/compute/v1/projects/${project.name}/global/interconnectLocations/iad-zone1-1
requestedLinkCount: 1
variables:
project:
fn::invoke:
Function: gcp:organizations:getProject
Arguments: {}
Create Interconnect Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Interconnect(name: string, args: InterconnectArgs, opts?: CustomResourceOptions);
@overload
def Interconnect(resource_name: str,
args: InterconnectArgs,
opts: Optional[ResourceOptions] = None)
@overload
def Interconnect(resource_name: str,
opts: Optional[ResourceOptions] = None,
location: Optional[str] = None,
link_type: Optional[str] = None,
requested_link_count: Optional[int] = None,
interconnect_type: Optional[str] = None,
customer_name: Optional[str] = None,
macsec_enabled: Optional[bool] = None,
labels: Optional[Mapping[str, str]] = None,
macsec: Optional[InterconnectMacsecArgs] = None,
admin_enabled: Optional[bool] = None,
name: Optional[str] = None,
noc_contact_email: Optional[str] = None,
project: Optional[str] = None,
remote_location: Optional[str] = None,
requested_features: Optional[Sequence[str]] = None,
description: Optional[str] = None)
func NewInterconnect(ctx *Context, name string, args InterconnectArgs, opts ...ResourceOption) (*Interconnect, error)
public Interconnect(string name, InterconnectArgs args, CustomResourceOptions? opts = null)
public Interconnect(String name, InterconnectArgs args)
public Interconnect(String name, InterconnectArgs args, CustomResourceOptions options)
type: gcp:compute:Interconnect
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 InterconnectArgs
- 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 InterconnectArgs
- 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 InterconnectArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args InterconnectArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args InterconnectArgs
- 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 interconnectResource = new Gcp.Compute.Interconnect("interconnectResource", new()
{
Location = "string",
LinkType = "string",
RequestedLinkCount = 0,
InterconnectType = "string",
CustomerName = "string",
MacsecEnabled = false,
Labels =
{
{ "string", "string" },
},
Macsec = new Gcp.Compute.Inputs.InterconnectMacsecArgs
{
PreSharedKeys = new[]
{
new Gcp.Compute.Inputs.InterconnectMacsecPreSharedKeyArgs
{
Name = "string",
FailOpen = false,
StartTime = "string",
},
},
},
AdminEnabled = false,
Name = "string",
NocContactEmail = "string",
Project = "string",
RemoteLocation = "string",
RequestedFeatures = new[]
{
"string",
},
Description = "string",
});
example, err := compute.NewInterconnect(ctx, "interconnectResource", &compute.InterconnectArgs{
Location: pulumi.String("string"),
LinkType: pulumi.String("string"),
RequestedLinkCount: pulumi.Int(0),
InterconnectType: pulumi.String("string"),
CustomerName: pulumi.String("string"),
MacsecEnabled: pulumi.Bool(false),
Labels: pulumi.StringMap{
"string": pulumi.String("string"),
},
Macsec: &compute.InterconnectMacsecArgs{
PreSharedKeys: compute.InterconnectMacsecPreSharedKeyArray{
&compute.InterconnectMacsecPreSharedKeyArgs{
Name: pulumi.String("string"),
FailOpen: pulumi.Bool(false),
StartTime: pulumi.String("string"),
},
},
},
AdminEnabled: pulumi.Bool(false),
Name: pulumi.String("string"),
NocContactEmail: pulumi.String("string"),
Project: pulumi.String("string"),
RemoteLocation: pulumi.String("string"),
RequestedFeatures: pulumi.StringArray{
pulumi.String("string"),
},
Description: pulumi.String("string"),
})
var interconnectResource = new Interconnect("interconnectResource", InterconnectArgs.builder()
.location("string")
.linkType("string")
.requestedLinkCount(0)
.interconnectType("string")
.customerName("string")
.macsecEnabled(false)
.labels(Map.of("string", "string"))
.macsec(InterconnectMacsecArgs.builder()
.preSharedKeys(InterconnectMacsecPreSharedKeyArgs.builder()
.name("string")
.failOpen(false)
.startTime("string")
.build())
.build())
.adminEnabled(false)
.name("string")
.nocContactEmail("string")
.project("string")
.remoteLocation("string")
.requestedFeatures("string")
.description("string")
.build());
interconnect_resource = gcp.compute.Interconnect("interconnectResource",
location="string",
link_type="string",
requested_link_count=0,
interconnect_type="string",
customer_name="string",
macsec_enabled=False,
labels={
"string": "string",
},
macsec={
"preSharedKeys": [{
"name": "string",
"failOpen": False,
"startTime": "string",
}],
},
admin_enabled=False,
name="string",
noc_contact_email="string",
project="string",
remote_location="string",
requested_features=["string"],
description="string")
const interconnectResource = new gcp.compute.Interconnect("interconnectResource", {
location: "string",
linkType: "string",
requestedLinkCount: 0,
interconnectType: "string",
customerName: "string",
macsecEnabled: false,
labels: {
string: "string",
},
macsec: {
preSharedKeys: [{
name: "string",
failOpen: false,
startTime: "string",
}],
},
adminEnabled: false,
name: "string",
nocContactEmail: "string",
project: "string",
remoteLocation: "string",
requestedFeatures: ["string"],
description: "string",
});
type: gcp:compute:Interconnect
properties:
adminEnabled: false
customerName: string
description: string
interconnectType: string
labels:
string: string
linkType: string
location: string
macsec:
preSharedKeys:
- failOpen: false
name: string
startTime: string
macsecEnabled: false
name: string
nocContactEmail: string
project: string
remoteLocation: string
requestedFeatures:
- string
requestedLinkCount: 0
Interconnect 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 Interconnect resource accepts the following input properties:
- Customer
Name string - Customer name, to put in the Letter of Authorization as the party authorized to request a
crossconnect.
- Interconnect
Type string - Type of interconnect. Note that a value IT_PRIVATE has been deprecated in favor of DEDICATED.
Can take one of the following values:
- PARTNER: A partner-managed interconnection shared between customers though a partner.
- DEDICATED: A dedicated physical interconnection with the customer.
Possible values are:
DEDICATED
,PARTNER
,IT_PRIVATE
.
- Link
Type string - Type of link requested. Note that this field indicates the speed of each of the links in the
bundle, not the speed of the entire bundle. Can take one of the following values:
- LINK_TYPE_ETHERNET_10G_LR: A 10G Ethernet with LR optics.
- LINK_TYPE_ETHERNET_100G_LR: A 100G Ethernet with LR optics.
Possible values are:
LINK_TYPE_ETHERNET_10G_LR
,LINK_TYPE_ETHERNET_100G_LR
.
- Location string
- URL of the InterconnectLocation object that represents where this connection is to be provisioned.
- Requested
Link intCount - Target number of physical links in the link bundle, as requested by the customer.
- Admin
Enabled bool - Administrative status of the interconnect. When this is set to true, the Interconnect is functional and can carry traffic. When set to false, no packets can be carried over the interconnect and no BGP routes are exchanged over it. By default, the status is set to true.
- Description string
- An optional description of this resource. Provide this property when you create the resource.
- 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.
Note: This field is non-authoritative, and will only manage the labels present in your configuration. Please refer to the field
effective_labels
for all of the labels present on the resource.- Macsec
Interconnect
Macsec - Configuration that enables Media Access Control security (MACsec) on the Cloud Interconnect connection between Google and your on-premises router. Structure is documented below.
- Macsec
Enabled bool - Enable or disable MACsec on this Interconnect connection. MACsec enablement fails if the MACsec object is not specified.
- 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?
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. - Noc
Contact stringEmail - Email address to contact the customer NOC for operations and maintenance notifications regarding this Interconnect. If specified, this will be used for notifications in addition to all other forms described, such as Cloud Monitoring logs alerting and Cloud Notifications. This field is required for users who sign up for Cloud Interconnect using workforce identity federation.
- Project string
- The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
- Remote
Location string - Indicates that this is a Cross-Cloud Interconnect. This field specifies the location outside of Google's network that the interconnect is connected to.
- Requested
Features List<string> - interconnects.list of features requested for this Interconnect connection. Options: IF_MACSEC (
If specified then the connection is created on MACsec capable hardware ports. If not
specified, the default value is false, which allocates non-MACsec capable ports first if
available). Note that MACSEC is still technically allowed for compatibility reasons, but it
does not work with the API, and will be removed in an upcoming major version.
Each value may be one of:
MACSEC
,IF_MACSEC
.
- Customer
Name string - Customer name, to put in the Letter of Authorization as the party authorized to request a
crossconnect.
- Interconnect
Type string - Type of interconnect. Note that a value IT_PRIVATE has been deprecated in favor of DEDICATED.
Can take one of the following values:
- PARTNER: A partner-managed interconnection shared between customers though a partner.
- DEDICATED: A dedicated physical interconnection with the customer.
Possible values are:
DEDICATED
,PARTNER
,IT_PRIVATE
.
- Link
Type string - Type of link requested. Note that this field indicates the speed of each of the links in the
bundle, not the speed of the entire bundle. Can take one of the following values:
- LINK_TYPE_ETHERNET_10G_LR: A 10G Ethernet with LR optics.
- LINK_TYPE_ETHERNET_100G_LR: A 100G Ethernet with LR optics.
Possible values are:
LINK_TYPE_ETHERNET_10G_LR
,LINK_TYPE_ETHERNET_100G_LR
.
- Location string
- URL of the InterconnectLocation object that represents where this connection is to be provisioned.
- Requested
Link intCount - Target number of physical links in the link bundle, as requested by the customer.
- Admin
Enabled bool - Administrative status of the interconnect. When this is set to true, the Interconnect is functional and can carry traffic. When set to false, no packets can be carried over the interconnect and no BGP routes are exchanged over it. By default, the status is set to true.
- Description string
- An optional description of this resource. Provide this property when you create the resource.
- 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.
Note: This field is non-authoritative, and will only manage the labels present in your configuration. Please refer to the field
effective_labels
for all of the labels present on the resource.- Macsec
Interconnect
Macsec Args - Configuration that enables Media Access Control security (MACsec) on the Cloud Interconnect connection between Google and your on-premises router. Structure is documented below.
- Macsec
Enabled bool - Enable or disable MACsec on this Interconnect connection. MACsec enablement fails if the MACsec object is not specified.
- 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?
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. - Noc
Contact stringEmail - Email address to contact the customer NOC for operations and maintenance notifications regarding this Interconnect. If specified, this will be used for notifications in addition to all other forms described, such as Cloud Monitoring logs alerting and Cloud Notifications. This field is required for users who sign up for Cloud Interconnect using workforce identity federation.
- Project string
- The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
- Remote
Location string - Indicates that this is a Cross-Cloud Interconnect. This field specifies the location outside of Google's network that the interconnect is connected to.
- Requested
Features []string - interconnects.list of features requested for this Interconnect connection. Options: IF_MACSEC (
If specified then the connection is created on MACsec capable hardware ports. If not
specified, the default value is false, which allocates non-MACsec capable ports first if
available). Note that MACSEC is still technically allowed for compatibility reasons, but it
does not work with the API, and will be removed in an upcoming major version.
Each value may be one of:
MACSEC
,IF_MACSEC
.
- customer
Name String - Customer name, to put in the Letter of Authorization as the party authorized to request a
crossconnect.
- interconnect
Type String - Type of interconnect. Note that a value IT_PRIVATE has been deprecated in favor of DEDICATED.
Can take one of the following values:
- PARTNER: A partner-managed interconnection shared between customers though a partner.
- DEDICATED: A dedicated physical interconnection with the customer.
Possible values are:
DEDICATED
,PARTNER
,IT_PRIVATE
.
- link
Type String - Type of link requested. Note that this field indicates the speed of each of the links in the
bundle, not the speed of the entire bundle. Can take one of the following values:
- LINK_TYPE_ETHERNET_10G_LR: A 10G Ethernet with LR optics.
- LINK_TYPE_ETHERNET_100G_LR: A 100G Ethernet with LR optics.
Possible values are:
LINK_TYPE_ETHERNET_10G_LR
,LINK_TYPE_ETHERNET_100G_LR
.
- location String
- URL of the InterconnectLocation object that represents where this connection is to be provisioned.
- requested
Link IntegerCount - Target number of physical links in the link bundle, as requested by the customer.
- admin
Enabled Boolean - Administrative status of the interconnect. When this is set to true, the Interconnect is functional and can carry traffic. When set to false, no packets can be carried over the interconnect and no BGP routes are exchanged over it. By default, the status is set to true.
- description String
- An optional description of this resource. Provide this property when you create the resource.
- 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.
Note: This field is non-authoritative, and will only manage the labels present in your configuration. Please refer to the field
effective_labels
for all of the labels present on the resource.- macsec
Interconnect
Macsec - Configuration that enables Media Access Control security (MACsec) on the Cloud Interconnect connection between Google and your on-premises router. Structure is documented below.
- macsec
Enabled Boolean - Enable or disable MACsec on this Interconnect connection. MACsec enablement fails if the MACsec object is not specified.
- 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?
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. - noc
Contact StringEmail - Email address to contact the customer NOC for operations and maintenance notifications regarding this Interconnect. If specified, this will be used for notifications in addition to all other forms described, such as Cloud Monitoring logs alerting and Cloud Notifications. This field is required for users who sign up for Cloud Interconnect using workforce identity federation.
- project String
- The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
- remote
Location String - Indicates that this is a Cross-Cloud Interconnect. This field specifies the location outside of Google's network that the interconnect is connected to.
- requested
Features List<String> - interconnects.list of features requested for this Interconnect connection. Options: IF_MACSEC (
If specified then the connection is created on MACsec capable hardware ports. If not
specified, the default value is false, which allocates non-MACsec capable ports first if
available). Note that MACSEC is still technically allowed for compatibility reasons, but it
does not work with the API, and will be removed in an upcoming major version.
Each value may be one of:
MACSEC
,IF_MACSEC
.
- customer
Name string - Customer name, to put in the Letter of Authorization as the party authorized to request a
crossconnect.
- interconnect
Type string - Type of interconnect. Note that a value IT_PRIVATE has been deprecated in favor of DEDICATED.
Can take one of the following values:
- PARTNER: A partner-managed interconnection shared between customers though a partner.
- DEDICATED: A dedicated physical interconnection with the customer.
Possible values are:
DEDICATED
,PARTNER
,IT_PRIVATE
.
- link
Type string - Type of link requested. Note that this field indicates the speed of each of the links in the
bundle, not the speed of the entire bundle. Can take one of the following values:
- LINK_TYPE_ETHERNET_10G_LR: A 10G Ethernet with LR optics.
- LINK_TYPE_ETHERNET_100G_LR: A 100G Ethernet with LR optics.
Possible values are:
LINK_TYPE_ETHERNET_10G_LR
,LINK_TYPE_ETHERNET_100G_LR
.
- location string
- URL of the InterconnectLocation object that represents where this connection is to be provisioned.
- requested
Link numberCount - Target number of physical links in the link bundle, as requested by the customer.
- admin
Enabled boolean - Administrative status of the interconnect. When this is set to true, the Interconnect is functional and can carry traffic. When set to false, no packets can be carried over the interconnect and no BGP routes are exchanged over it. By default, the status is set to true.
- description string
- An optional description of this resource. Provide this property when you create the resource.
- 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.
Note: This field is non-authoritative, and will only manage the labels present in your configuration. Please refer to the field
effective_labels
for all of the labels present on the resource.- macsec
Interconnect
Macsec - Configuration that enables Media Access Control security (MACsec) on the Cloud Interconnect connection between Google and your on-premises router. Structure is documented below.
- macsec
Enabled boolean - Enable or disable MACsec on this Interconnect connection. MACsec enablement fails if the MACsec object is not specified.
- 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?
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. - noc
Contact stringEmail - Email address to contact the customer NOC for operations and maintenance notifications regarding this Interconnect. If specified, this will be used for notifications in addition to all other forms described, such as Cloud Monitoring logs alerting and Cloud Notifications. This field is required for users who sign up for Cloud Interconnect using workforce identity federation.
- project string
- The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
- remote
Location string - Indicates that this is a Cross-Cloud Interconnect. This field specifies the location outside of Google's network that the interconnect is connected to.
- requested
Features string[] - interconnects.list of features requested for this Interconnect connection. Options: IF_MACSEC (
If specified then the connection is created on MACsec capable hardware ports. If not
specified, the default value is false, which allocates non-MACsec capable ports first if
available). Note that MACSEC is still technically allowed for compatibility reasons, but it
does not work with the API, and will be removed in an upcoming major version.
Each value may be one of:
MACSEC
,IF_MACSEC
.
- customer_
name str - Customer name, to put in the Letter of Authorization as the party authorized to request a
crossconnect.
- interconnect_
type str - Type of interconnect. Note that a value IT_PRIVATE has been deprecated in favor of DEDICATED.
Can take one of the following values:
- PARTNER: A partner-managed interconnection shared between customers though a partner.
- DEDICATED: A dedicated physical interconnection with the customer.
Possible values are:
DEDICATED
,PARTNER
,IT_PRIVATE
.
- link_
type str - Type of link requested. Note that this field indicates the speed of each of the links in the
bundle, not the speed of the entire bundle. Can take one of the following values:
- LINK_TYPE_ETHERNET_10G_LR: A 10G Ethernet with LR optics.
- LINK_TYPE_ETHERNET_100G_LR: A 100G Ethernet with LR optics.
Possible values are:
LINK_TYPE_ETHERNET_10G_LR
,LINK_TYPE_ETHERNET_100G_LR
.
- location str
- URL of the InterconnectLocation object that represents where this connection is to be provisioned.
- requested_
link_ intcount - Target number of physical links in the link bundle, as requested by the customer.
- admin_
enabled bool - Administrative status of the interconnect. When this is set to true, the Interconnect is functional and can carry traffic. When set to false, no packets can be carried over the interconnect and no BGP routes are exchanged over it. By default, the status is set to true.
- description str
- An optional description of this resource. Provide this property when you create the resource.
- 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.
Note: This field is non-authoritative, and will only manage the labels present in your configuration. Please refer to the field
effective_labels
for all of the labels present on the resource.- macsec
Interconnect
Macsec Args - Configuration that enables Media Access Control security (MACsec) on the Cloud Interconnect connection between Google and your on-premises router. Structure is documented below.
- macsec_
enabled bool - Enable or disable MACsec on this Interconnect connection. MACsec enablement fails if the MACsec object is not specified.
- 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?
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. - noc_
contact_ stremail - Email address to contact the customer NOC for operations and maintenance notifications regarding this Interconnect. If specified, this will be used for notifications in addition to all other forms described, such as Cloud Monitoring logs alerting and Cloud Notifications. This field is required for users who sign up for Cloud Interconnect using workforce identity federation.
- project str
- The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
- remote_
location str - Indicates that this is a Cross-Cloud Interconnect. This field specifies the location outside of Google's network that the interconnect is connected to.
- requested_
features Sequence[str] - interconnects.list of features requested for this Interconnect connection. Options: IF_MACSEC (
If specified then the connection is created on MACsec capable hardware ports. If not
specified, the default value is false, which allocates non-MACsec capable ports first if
available). Note that MACSEC is still technically allowed for compatibility reasons, but it
does not work with the API, and will be removed in an upcoming major version.
Each value may be one of:
MACSEC
,IF_MACSEC
.
- customer
Name String - Customer name, to put in the Letter of Authorization as the party authorized to request a
crossconnect.
- interconnect
Type String - Type of interconnect. Note that a value IT_PRIVATE has been deprecated in favor of DEDICATED.
Can take one of the following values:
- PARTNER: A partner-managed interconnection shared between customers though a partner.
- DEDICATED: A dedicated physical interconnection with the customer.
Possible values are:
DEDICATED
,PARTNER
,IT_PRIVATE
.
- link
Type String - Type of link requested. Note that this field indicates the speed of each of the links in the
bundle, not the speed of the entire bundle. Can take one of the following values:
- LINK_TYPE_ETHERNET_10G_LR: A 10G Ethernet with LR optics.
- LINK_TYPE_ETHERNET_100G_LR: A 100G Ethernet with LR optics.
Possible values are:
LINK_TYPE_ETHERNET_10G_LR
,LINK_TYPE_ETHERNET_100G_LR
.
- location String
- URL of the InterconnectLocation object that represents where this connection is to be provisioned.
- requested
Link NumberCount - Target number of physical links in the link bundle, as requested by the customer.
- admin
Enabled Boolean - Administrative status of the interconnect. When this is set to true, the Interconnect is functional and can carry traffic. When set to false, no packets can be carried over the interconnect and no BGP routes are exchanged over it. By default, the status is set to true.
- description String
- An optional description of this resource. Provide this property when you create the resource.
- 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.
Note: This field is non-authoritative, and will only manage the labels present in your configuration. Please refer to the field
effective_labels
for all of the labels present on the resource.- macsec Property Map
- Configuration that enables Media Access Control security (MACsec) on the Cloud Interconnect connection between Google and your on-premises router. Structure is documented below.
- macsec
Enabled Boolean - Enable or disable MACsec on this Interconnect connection. MACsec enablement fails if the MACsec object is not specified.
- 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?
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. - noc
Contact StringEmail - Email address to contact the customer NOC for operations and maintenance notifications regarding this Interconnect. If specified, this will be used for notifications in addition to all other forms described, such as Cloud Monitoring logs alerting and Cloud Notifications. This field is required for users who sign up for Cloud Interconnect using workforce identity federation.
- project String
- The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
- remote
Location String - Indicates that this is a Cross-Cloud Interconnect. This field specifies the location outside of Google's network that the interconnect is connected to.
- requested
Features List<String> - interconnects.list of features requested for this Interconnect connection. Options: IF_MACSEC (
If specified then the connection is created on MACsec capable hardware ports. If not
specified, the default value is false, which allocates non-MACsec capable ports first if
available). Note that MACSEC is still technically allowed for compatibility reasons, but it
does not work with the API, and will be removed in an upcoming major version.
Each value may be one of:
MACSEC
,IF_MACSEC
.
Outputs
All input properties are implicitly available as output properties. Additionally, the Interconnect resource produces the following output properties:
- Available
Features List<string> - interconnects.list of features available for this Interconnect connection. Can take the value: MACSEC. If present then the Interconnect connection is provisioned on MACsec capable hardware ports. If not present then the Interconnect connection is provisioned on non-MACsec capable ports and MACsec isn't supported and enabling MACsec fails).
- Circuit
Infos List<InterconnectCircuit Info> - A list of CircuitInfo objects, that describe the individual circuits in this LAG. Structure is documented below.
- Creation
Timestamp string - Creation timestamp in RFC3339 text format.
- Effective
Labels Dictionary<string, string> - All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
- Expected
Outages List<InterconnectExpected Outage> - A list of outages expected for this Interconnect. Structure is documented below.
- Google
Ip stringAddress - IP address configured on the Google side of the Interconnect link. This can be used only for ping tests.
- Google
Reference stringId - Google reference ID to be used when raising support tickets with Google or otherwise to debug backend connectivity issues.
- Id string
- The provider-assigned unique ID for this managed resource.
- Interconnect
Attachments List<string> - A list of the URLs of all InterconnectAttachments configured to use this Interconnect.
- Label
Fingerprint string - A fingerprint for the labels being applied to this Interconnect, 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.
- Operational
Status string - The current status of this Interconnect's functionality, which can take one of the following:
- OS_ACTIVE: A valid Interconnect, which is turned up and is ready to use. Attachments may be provisioned on this Interconnect.
- OS_UNPROVISIONED: An Interconnect that has not completed turnup. No attachments may be provisioned on this Interconnect.
- OS_UNDER_MAINTENANCE: An Interconnect that is undergoing internal maintenance. No attachments may be provisioned or updated on this Interconnect.
- Peer
Ip stringAddress - IP address configured on the customer side of the Interconnect link. The customer should configure this IP address during turnup when prompted by Google NOC. This can be used only for ping tests.
- Provisioned
Link intCount - Number of links actually provisioned in this interconnect.
- Pulumi
Labels Dictionary<string, string> - The combination of labels configured directly on the resource and default labels configured on the provider.
- Satisfies
Pzs bool - Reserved for future use.
- State string
- (Output)
State of this notification. Note that the versions of this enum prefixed with "NS_" have
been deprecated in favor of the unprefixed values. Can take one of the following values:
- ACTIVE: This outage notification is active. The event could be in the past, present, or future. See startTime and endTime for scheduling.
- CANCELLED: The outage associated with this notification was cancelled before the outage was due to start.
- COMPLETED: The outage associated with this notification is complete.
- Available
Features []string - interconnects.list of features available for this Interconnect connection. Can take the value: MACSEC. If present then the Interconnect connection is provisioned on MACsec capable hardware ports. If not present then the Interconnect connection is provisioned on non-MACsec capable ports and MACsec isn't supported and enabling MACsec fails).
- Circuit
Infos []InterconnectCircuit Info - A list of CircuitInfo objects, that describe the individual circuits in this LAG. Structure is documented below.
- Creation
Timestamp string - Creation timestamp in RFC3339 text format.
- Effective
Labels map[string]string - All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
- Expected
Outages []InterconnectExpected Outage - A list of outages expected for this Interconnect. Structure is documented below.
- Google
Ip stringAddress - IP address configured on the Google side of the Interconnect link. This can be used only for ping tests.
- Google
Reference stringId - Google reference ID to be used when raising support tickets with Google or otherwise to debug backend connectivity issues.
- Id string
- The provider-assigned unique ID for this managed resource.
- Interconnect
Attachments []string - A list of the URLs of all InterconnectAttachments configured to use this Interconnect.
- Label
Fingerprint string - A fingerprint for the labels being applied to this Interconnect, 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.
- Operational
Status string - The current status of this Interconnect's functionality, which can take one of the following:
- OS_ACTIVE: A valid Interconnect, which is turned up and is ready to use. Attachments may be provisioned on this Interconnect.
- OS_UNPROVISIONED: An Interconnect that has not completed turnup. No attachments may be provisioned on this Interconnect.
- OS_UNDER_MAINTENANCE: An Interconnect that is undergoing internal maintenance. No attachments may be provisioned or updated on this Interconnect.
- Peer
Ip stringAddress - IP address configured on the customer side of the Interconnect link. The customer should configure this IP address during turnup when prompted by Google NOC. This can be used only for ping tests.
- Provisioned
Link intCount - Number of links actually provisioned in this interconnect.
- Pulumi
Labels map[string]string - The combination of labels configured directly on the resource and default labels configured on the provider.
- Satisfies
Pzs bool - Reserved for future use.
- State string
- (Output)
State of this notification. Note that the versions of this enum prefixed with "NS_" have
been deprecated in favor of the unprefixed values. Can take one of the following values:
- ACTIVE: This outage notification is active. The event could be in the past, present, or future. See startTime and endTime for scheduling.
- CANCELLED: The outage associated with this notification was cancelled before the outage was due to start.
- COMPLETED: The outage associated with this notification is complete.
- available
Features List<String> - interconnects.list of features available for this Interconnect connection. Can take the value: MACSEC. If present then the Interconnect connection is provisioned on MACsec capable hardware ports. If not present then the Interconnect connection is provisioned on non-MACsec capable ports and MACsec isn't supported and enabling MACsec fails).
- circuit
Infos List<InterconnectCircuit Info> - A list of CircuitInfo objects, that describe the individual circuits in this LAG. Structure is documented below.
- creation
Timestamp String - Creation timestamp in RFC3339 text format.
- effective
Labels Map<String,String> - All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
- expected
Outages List<InterconnectExpected Outage> - A list of outages expected for this Interconnect. Structure is documented below.
- google
Ip StringAddress - IP address configured on the Google side of the Interconnect link. This can be used only for ping tests.
- google
Reference StringId - Google reference ID to be used when raising support tickets with Google or otherwise to debug backend connectivity issues.
- id String
- The provider-assigned unique ID for this managed resource.
- interconnect
Attachments List<String> - A list of the URLs of all InterconnectAttachments configured to use this Interconnect.
- label
Fingerprint String - A fingerprint for the labels being applied to this Interconnect, 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.
- operational
Status String - The current status of this Interconnect's functionality, which can take one of the following:
- OS_ACTIVE: A valid Interconnect, which is turned up and is ready to use. Attachments may be provisioned on this Interconnect.
- OS_UNPROVISIONED: An Interconnect that has not completed turnup. No attachments may be provisioned on this Interconnect.
- OS_UNDER_MAINTENANCE: An Interconnect that is undergoing internal maintenance. No attachments may be provisioned or updated on this Interconnect.
- peer
Ip StringAddress - IP address configured on the customer side of the Interconnect link. The customer should configure this IP address during turnup when prompted by Google NOC. This can be used only for ping tests.
- provisioned
Link IntegerCount - Number of links actually provisioned in this interconnect.
- pulumi
Labels Map<String,String> - The combination of labels configured directly on the resource and default labels configured on the provider.
- satisfies
Pzs Boolean - Reserved for future use.
- state String
- (Output)
State of this notification. Note that the versions of this enum prefixed with "NS_" have
been deprecated in favor of the unprefixed values. Can take one of the following values:
- ACTIVE: This outage notification is active. The event could be in the past, present, or future. See startTime and endTime for scheduling.
- CANCELLED: The outage associated with this notification was cancelled before the outage was due to start.
- COMPLETED: The outage associated with this notification is complete.
- available
Features string[] - interconnects.list of features available for this Interconnect connection. Can take the value: MACSEC. If present then the Interconnect connection is provisioned on MACsec capable hardware ports. If not present then the Interconnect connection is provisioned on non-MACsec capable ports and MACsec isn't supported and enabling MACsec fails).
- circuit
Infos InterconnectCircuit Info[] - A list of CircuitInfo objects, that describe the individual circuits in this LAG. Structure is documented below.
- creation
Timestamp string - Creation timestamp in RFC3339 text format.
- effective
Labels {[key: string]: string} - All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
- expected
Outages InterconnectExpected Outage[] - A list of outages expected for this Interconnect. Structure is documented below.
- google
Ip stringAddress - IP address configured on the Google side of the Interconnect link. This can be used only for ping tests.
- google
Reference stringId - Google reference ID to be used when raising support tickets with Google or otherwise to debug backend connectivity issues.
- id string
- The provider-assigned unique ID for this managed resource.
- interconnect
Attachments string[] - A list of the URLs of all InterconnectAttachments configured to use this Interconnect.
- label
Fingerprint string - A fingerprint for the labels being applied to this Interconnect, 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.
- operational
Status string - The current status of this Interconnect's functionality, which can take one of the following:
- OS_ACTIVE: A valid Interconnect, which is turned up and is ready to use. Attachments may be provisioned on this Interconnect.
- OS_UNPROVISIONED: An Interconnect that has not completed turnup. No attachments may be provisioned on this Interconnect.
- OS_UNDER_MAINTENANCE: An Interconnect that is undergoing internal maintenance. No attachments may be provisioned or updated on this Interconnect.
- peer
Ip stringAddress - IP address configured on the customer side of the Interconnect link. The customer should configure this IP address during turnup when prompted by Google NOC. This can be used only for ping tests.
- provisioned
Link numberCount - Number of links actually provisioned in this interconnect.
- pulumi
Labels {[key: string]: string} - The combination of labels configured directly on the resource and default labels configured on the provider.
- satisfies
Pzs boolean - Reserved for future use.
- state string
- (Output)
State of this notification. Note that the versions of this enum prefixed with "NS_" have
been deprecated in favor of the unprefixed values. Can take one of the following values:
- ACTIVE: This outage notification is active. The event could be in the past, present, or future. See startTime and endTime for scheduling.
- CANCELLED: The outage associated with this notification was cancelled before the outage was due to start.
- COMPLETED: The outage associated with this notification is complete.
- available_
features Sequence[str] - interconnects.list of features available for this Interconnect connection. Can take the value: MACSEC. If present then the Interconnect connection is provisioned on MACsec capable hardware ports. If not present then the Interconnect connection is provisioned on non-MACsec capable ports and MACsec isn't supported and enabling MACsec fails).
- circuit_
infos Sequence[InterconnectCircuit Info] - A list of CircuitInfo objects, that describe the individual circuits in this LAG. Structure is documented below.
- creation_
timestamp str - Creation timestamp in RFC3339 text format.
- effective_
labels Mapping[str, str] - All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
- expected_
outages Sequence[InterconnectExpected Outage] - A list of outages expected for this Interconnect. Structure is documented below.
- google_
ip_ straddress - IP address configured on the Google side of the Interconnect link. This can be used only for ping tests.
- google_
reference_ strid - Google reference ID to be used when raising support tickets with Google or otherwise to debug backend connectivity issues.
- id str
- The provider-assigned unique ID for this managed resource.
- interconnect_
attachments Sequence[str] - A list of the URLs of all InterconnectAttachments configured to use this Interconnect.
- label_
fingerprint str - A fingerprint for the labels being applied to this Interconnect, 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.
- operational_
status str - The current status of this Interconnect's functionality, which can take one of the following:
- OS_ACTIVE: A valid Interconnect, which is turned up and is ready to use. Attachments may be provisioned on this Interconnect.
- OS_UNPROVISIONED: An Interconnect that has not completed turnup. No attachments may be provisioned on this Interconnect.
- OS_UNDER_MAINTENANCE: An Interconnect that is undergoing internal maintenance. No attachments may be provisioned or updated on this Interconnect.
- peer_
ip_ straddress - IP address configured on the customer side of the Interconnect link. The customer should configure this IP address during turnup when prompted by Google NOC. This can be used only for ping tests.
- provisioned_
link_ intcount - Number of links actually provisioned in this interconnect.
- pulumi_
labels Mapping[str, str] - The combination of labels configured directly on the resource and default labels configured on the provider.
- satisfies_
pzs bool - Reserved for future use.
- state str
- (Output)
State of this notification. Note that the versions of this enum prefixed with "NS_" have
been deprecated in favor of the unprefixed values. Can take one of the following values:
- ACTIVE: This outage notification is active. The event could be in the past, present, or future. See startTime and endTime for scheduling.
- CANCELLED: The outage associated with this notification was cancelled before the outage was due to start.
- COMPLETED: The outage associated with this notification is complete.
- available
Features List<String> - interconnects.list of features available for this Interconnect connection. Can take the value: MACSEC. If present then the Interconnect connection is provisioned on MACsec capable hardware ports. If not present then the Interconnect connection is provisioned on non-MACsec capable ports and MACsec isn't supported and enabling MACsec fails).
- circuit
Infos List<Property Map> - A list of CircuitInfo objects, that describe the individual circuits in this LAG. Structure is documented below.
- creation
Timestamp String - Creation timestamp in RFC3339 text format.
- effective
Labels Map<String> - All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
- expected
Outages List<Property Map> - A list of outages expected for this Interconnect. Structure is documented below.
- google
Ip StringAddress - IP address configured on the Google side of the Interconnect link. This can be used only for ping tests.
- google
Reference StringId - Google reference ID to be used when raising support tickets with Google or otherwise to debug backend connectivity issues.
- id String
- The provider-assigned unique ID for this managed resource.
- interconnect
Attachments List<String> - A list of the URLs of all InterconnectAttachments configured to use this Interconnect.
- label
Fingerprint String - A fingerprint for the labels being applied to this Interconnect, 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.
- operational
Status String - The current status of this Interconnect's functionality, which can take one of the following:
- OS_ACTIVE: A valid Interconnect, which is turned up and is ready to use. Attachments may be provisioned on this Interconnect.
- OS_UNPROVISIONED: An Interconnect that has not completed turnup. No attachments may be provisioned on this Interconnect.
- OS_UNDER_MAINTENANCE: An Interconnect that is undergoing internal maintenance. No attachments may be provisioned or updated on this Interconnect.
- peer
Ip StringAddress - IP address configured on the customer side of the Interconnect link. The customer should configure this IP address during turnup when prompted by Google NOC. This can be used only for ping tests.
- provisioned
Link NumberCount - Number of links actually provisioned in this interconnect.
- pulumi
Labels Map<String> - The combination of labels configured directly on the resource and default labels configured on the provider.
- satisfies
Pzs Boolean - Reserved for future use.
- state String
- (Output)
State of this notification. Note that the versions of this enum prefixed with "NS_" have
been deprecated in favor of the unprefixed values. Can take one of the following values:
- ACTIVE: This outage notification is active. The event could be in the past, present, or future. See startTime and endTime for scheduling.
- CANCELLED: The outage associated with this notification was cancelled before the outage was due to start.
- COMPLETED: The outage associated with this notification is complete.
Look up Existing Interconnect Resource
Get an existing Interconnect resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: InterconnectState, opts?: CustomResourceOptions): Interconnect
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
admin_enabled: Optional[bool] = None,
available_features: Optional[Sequence[str]] = None,
circuit_infos: Optional[Sequence[InterconnectCircuitInfoArgs]] = None,
creation_timestamp: Optional[str] = None,
customer_name: Optional[str] = None,
description: Optional[str] = None,
effective_labels: Optional[Mapping[str, str]] = None,
expected_outages: Optional[Sequence[InterconnectExpectedOutageArgs]] = None,
google_ip_address: Optional[str] = None,
google_reference_id: Optional[str] = None,
interconnect_attachments: Optional[Sequence[str]] = None,
interconnect_type: Optional[str] = None,
label_fingerprint: Optional[str] = None,
labels: Optional[Mapping[str, str]] = None,
link_type: Optional[str] = None,
location: Optional[str] = None,
macsec: Optional[InterconnectMacsecArgs] = None,
macsec_enabled: Optional[bool] = None,
name: Optional[str] = None,
noc_contact_email: Optional[str] = None,
operational_status: Optional[str] = None,
peer_ip_address: Optional[str] = None,
project: Optional[str] = None,
provisioned_link_count: Optional[int] = None,
pulumi_labels: Optional[Mapping[str, str]] = None,
remote_location: Optional[str] = None,
requested_features: Optional[Sequence[str]] = None,
requested_link_count: Optional[int] = None,
satisfies_pzs: Optional[bool] = None,
state: Optional[str] = None) -> Interconnect
func GetInterconnect(ctx *Context, name string, id IDInput, state *InterconnectState, opts ...ResourceOption) (*Interconnect, error)
public static Interconnect Get(string name, Input<string> id, InterconnectState? state, CustomResourceOptions? opts = null)
public static Interconnect get(String name, Output<String> id, InterconnectState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Admin
Enabled bool - Administrative status of the interconnect. When this is set to true, the Interconnect is functional and can carry traffic. When set to false, no packets can be carried over the interconnect and no BGP routes are exchanged over it. By default, the status is set to true.
- Available
Features List<string> - interconnects.list of features available for this Interconnect connection. Can take the value: MACSEC. If present then the Interconnect connection is provisioned on MACsec capable hardware ports. If not present then the Interconnect connection is provisioned on non-MACsec capable ports and MACsec isn't supported and enabling MACsec fails).
- Circuit
Infos List<InterconnectCircuit Info> - A list of CircuitInfo objects, that describe the individual circuits in this LAG. Structure is documented below.
- Creation
Timestamp string - Creation timestamp in RFC3339 text format.
- Customer
Name string - Customer name, to put in the Letter of Authorization as the party authorized to request a
crossconnect.
- Description string
- An optional description of this resource. Provide this property when you create the resource.
- Effective
Labels Dictionary<string, string> - All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
- Expected
Outages List<InterconnectExpected Outage> - A list of outages expected for this Interconnect. Structure is documented below.
- Google
Ip stringAddress - IP address configured on the Google side of the Interconnect link. This can be used only for ping tests.
- Google
Reference stringId - Google reference ID to be used when raising support tickets with Google or otherwise to debug backend connectivity issues.
- Interconnect
Attachments List<string> - A list of the URLs of all InterconnectAttachments configured to use this Interconnect.
- Interconnect
Type string - Type of interconnect. Note that a value IT_PRIVATE has been deprecated in favor of DEDICATED.
Can take one of the following values:
- PARTNER: A partner-managed interconnection shared between customers though a partner.
- DEDICATED: A dedicated physical interconnection with the customer.
Possible values are:
DEDICATED
,PARTNER
,IT_PRIVATE
.
- Label
Fingerprint string - A fingerprint for the labels being applied to this Interconnect, 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.
- 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.
Note: This field is non-authoritative, and will only manage the labels present in your configuration. Please refer to the field
effective_labels
for all of the labels present on the resource.- Link
Type string - Type of link requested. Note that this field indicates the speed of each of the links in the
bundle, not the speed of the entire bundle. Can take one of the following values:
- LINK_TYPE_ETHERNET_10G_LR: A 10G Ethernet with LR optics.
- LINK_TYPE_ETHERNET_100G_LR: A 100G Ethernet with LR optics.
Possible values are:
LINK_TYPE_ETHERNET_10G_LR
,LINK_TYPE_ETHERNET_100G_LR
.
- Location string
- URL of the InterconnectLocation object that represents where this connection is to be provisioned.
- Macsec
Interconnect
Macsec - Configuration that enables Media Access Control security (MACsec) on the Cloud Interconnect connection between Google and your on-premises router. Structure is documented below.
- Macsec
Enabled bool - Enable or disable MACsec on this Interconnect connection. MACsec enablement fails if the MACsec object is not specified.
- 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?
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. - Noc
Contact stringEmail - Email address to contact the customer NOC for operations and maintenance notifications regarding this Interconnect. If specified, this will be used for notifications in addition to all other forms described, such as Cloud Monitoring logs alerting and Cloud Notifications. This field is required for users who sign up for Cloud Interconnect using workforce identity federation.
- Operational
Status string - The current status of this Interconnect's functionality, which can take one of the following:
- OS_ACTIVE: A valid Interconnect, which is turned up and is ready to use. Attachments may be provisioned on this Interconnect.
- OS_UNPROVISIONED: An Interconnect that has not completed turnup. No attachments may be provisioned on this Interconnect.
- OS_UNDER_MAINTENANCE: An Interconnect that is undergoing internal maintenance. No attachments may be provisioned or updated on this Interconnect.
- Peer
Ip stringAddress - IP address configured on the customer side of the Interconnect link. The customer should configure this IP address during turnup when prompted by Google NOC. This can be used only for ping tests.
- Project string
- The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
- Provisioned
Link intCount - Number of links actually provisioned in this interconnect.
- Pulumi
Labels Dictionary<string, string> - The combination of labels configured directly on the resource and default labels configured on the provider.
- Remote
Location string - Indicates that this is a Cross-Cloud Interconnect. This field specifies the location outside of Google's network that the interconnect is connected to.
- Requested
Features List<string> - interconnects.list of features requested for this Interconnect connection. Options: IF_MACSEC (
If specified then the connection is created on MACsec capable hardware ports. If not
specified, the default value is false, which allocates non-MACsec capable ports first if
available). Note that MACSEC is still technically allowed for compatibility reasons, but it
does not work with the API, and will be removed in an upcoming major version.
Each value may be one of:
MACSEC
,IF_MACSEC
. - Requested
Link intCount - Target number of physical links in the link bundle, as requested by the customer.
- Satisfies
Pzs bool - Reserved for future use.
- State string
- (Output)
State of this notification. Note that the versions of this enum prefixed with "NS_" have
been deprecated in favor of the unprefixed values. Can take one of the following values:
- ACTIVE: This outage notification is active. The event could be in the past, present, or future. See startTime and endTime for scheduling.
- CANCELLED: The outage associated with this notification was cancelled before the outage was due to start.
- COMPLETED: The outage associated with this notification is complete.
- Admin
Enabled bool - Administrative status of the interconnect. When this is set to true, the Interconnect is functional and can carry traffic. When set to false, no packets can be carried over the interconnect and no BGP routes are exchanged over it. By default, the status is set to true.
- Available
Features []string - interconnects.list of features available for this Interconnect connection. Can take the value: MACSEC. If present then the Interconnect connection is provisioned on MACsec capable hardware ports. If not present then the Interconnect connection is provisioned on non-MACsec capable ports and MACsec isn't supported and enabling MACsec fails).
- Circuit
Infos []InterconnectCircuit Info Args - A list of CircuitInfo objects, that describe the individual circuits in this LAG. Structure is documented below.
- Creation
Timestamp string - Creation timestamp in RFC3339 text format.
- Customer
Name string - Customer name, to put in the Letter of Authorization as the party authorized to request a
crossconnect.
- Description string
- An optional description of this resource. Provide this property when you create the resource.
- Effective
Labels map[string]string - All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
- Expected
Outages []InterconnectExpected Outage Args - A list of outages expected for this Interconnect. Structure is documented below.
- Google
Ip stringAddress - IP address configured on the Google side of the Interconnect link. This can be used only for ping tests.
- Google
Reference stringId - Google reference ID to be used when raising support tickets with Google or otherwise to debug backend connectivity issues.
- Interconnect
Attachments []string - A list of the URLs of all InterconnectAttachments configured to use this Interconnect.
- Interconnect
Type string - Type of interconnect. Note that a value IT_PRIVATE has been deprecated in favor of DEDICATED.
Can take one of the following values:
- PARTNER: A partner-managed interconnection shared between customers though a partner.
- DEDICATED: A dedicated physical interconnection with the customer.
Possible values are:
DEDICATED
,PARTNER
,IT_PRIVATE
.
- Label
Fingerprint string - A fingerprint for the labels being applied to this Interconnect, 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.
- 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.
Note: This field is non-authoritative, and will only manage the labels present in your configuration. Please refer to the field
effective_labels
for all of the labels present on the resource.- Link
Type string - Type of link requested. Note that this field indicates the speed of each of the links in the
bundle, not the speed of the entire bundle. Can take one of the following values:
- LINK_TYPE_ETHERNET_10G_LR: A 10G Ethernet with LR optics.
- LINK_TYPE_ETHERNET_100G_LR: A 100G Ethernet with LR optics.
Possible values are:
LINK_TYPE_ETHERNET_10G_LR
,LINK_TYPE_ETHERNET_100G_LR
.
- Location string
- URL of the InterconnectLocation object that represents where this connection is to be provisioned.
- Macsec
Interconnect
Macsec Args - Configuration that enables Media Access Control security (MACsec) on the Cloud Interconnect connection between Google and your on-premises router. Structure is documented below.
- Macsec
Enabled bool - Enable or disable MACsec on this Interconnect connection. MACsec enablement fails if the MACsec object is not specified.
- 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?
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. - Noc
Contact stringEmail - Email address to contact the customer NOC for operations and maintenance notifications regarding this Interconnect. If specified, this will be used for notifications in addition to all other forms described, such as Cloud Monitoring logs alerting and Cloud Notifications. This field is required for users who sign up for Cloud Interconnect using workforce identity federation.
- Operational
Status string - The current status of this Interconnect's functionality, which can take one of the following:
- OS_ACTIVE: A valid Interconnect, which is turned up and is ready to use. Attachments may be provisioned on this Interconnect.
- OS_UNPROVISIONED: An Interconnect that has not completed turnup. No attachments may be provisioned on this Interconnect.
- OS_UNDER_MAINTENANCE: An Interconnect that is undergoing internal maintenance. No attachments may be provisioned or updated on this Interconnect.
- Peer
Ip stringAddress - IP address configured on the customer side of the Interconnect link. The customer should configure this IP address during turnup when prompted by Google NOC. This can be used only for ping tests.
- Project string
- The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
- Provisioned
Link intCount - Number of links actually provisioned in this interconnect.
- Pulumi
Labels map[string]string - The combination of labels configured directly on the resource and default labels configured on the provider.
- Remote
Location string - Indicates that this is a Cross-Cloud Interconnect. This field specifies the location outside of Google's network that the interconnect is connected to.
- Requested
Features []string - interconnects.list of features requested for this Interconnect connection. Options: IF_MACSEC (
If specified then the connection is created on MACsec capable hardware ports. If not
specified, the default value is false, which allocates non-MACsec capable ports first if
available). Note that MACSEC is still technically allowed for compatibility reasons, but it
does not work with the API, and will be removed in an upcoming major version.
Each value may be one of:
MACSEC
,IF_MACSEC
. - Requested
Link intCount - Target number of physical links in the link bundle, as requested by the customer.
- Satisfies
Pzs bool - Reserved for future use.
- State string
- (Output)
State of this notification. Note that the versions of this enum prefixed with "NS_" have
been deprecated in favor of the unprefixed values. Can take one of the following values:
- ACTIVE: This outage notification is active. The event could be in the past, present, or future. See startTime and endTime for scheduling.
- CANCELLED: The outage associated with this notification was cancelled before the outage was due to start.
- COMPLETED: The outage associated with this notification is complete.
- admin
Enabled Boolean - Administrative status of the interconnect. When this is set to true, the Interconnect is functional and can carry traffic. When set to false, no packets can be carried over the interconnect and no BGP routes are exchanged over it. By default, the status is set to true.
- available
Features List<String> - interconnects.list of features available for this Interconnect connection. Can take the value: MACSEC. If present then the Interconnect connection is provisioned on MACsec capable hardware ports. If not present then the Interconnect connection is provisioned on non-MACsec capable ports and MACsec isn't supported and enabling MACsec fails).
- circuit
Infos List<InterconnectCircuit Info> - A list of CircuitInfo objects, that describe the individual circuits in this LAG. Structure is documented below.
- creation
Timestamp String - Creation timestamp in RFC3339 text format.
- customer
Name String - Customer name, to put in the Letter of Authorization as the party authorized to request a
crossconnect.
- description String
- An optional description of this resource. Provide this property when you create the resource.
- effective
Labels Map<String,String> - All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
- expected
Outages List<InterconnectExpected Outage> - A list of outages expected for this Interconnect. Structure is documented below.
- google
Ip StringAddress - IP address configured on the Google side of the Interconnect link. This can be used only for ping tests.
- google
Reference StringId - Google reference ID to be used when raising support tickets with Google or otherwise to debug backend connectivity issues.
- interconnect
Attachments List<String> - A list of the URLs of all InterconnectAttachments configured to use this Interconnect.
- interconnect
Type String - Type of interconnect. Note that a value IT_PRIVATE has been deprecated in favor of DEDICATED.
Can take one of the following values:
- PARTNER: A partner-managed interconnection shared between customers though a partner.
- DEDICATED: A dedicated physical interconnection with the customer.
Possible values are:
DEDICATED
,PARTNER
,IT_PRIVATE
.
- label
Fingerprint String - A fingerprint for the labels being applied to this Interconnect, 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.
- 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.
Note: This field is non-authoritative, and will only manage the labels present in your configuration. Please refer to the field
effective_labels
for all of the labels present on the resource.- link
Type String - Type of link requested. Note that this field indicates the speed of each of the links in the
bundle, not the speed of the entire bundle. Can take one of the following values:
- LINK_TYPE_ETHERNET_10G_LR: A 10G Ethernet with LR optics.
- LINK_TYPE_ETHERNET_100G_LR: A 100G Ethernet with LR optics.
Possible values are:
LINK_TYPE_ETHERNET_10G_LR
,LINK_TYPE_ETHERNET_100G_LR
.
- location String
- URL of the InterconnectLocation object that represents where this connection is to be provisioned.
- macsec
Interconnect
Macsec - Configuration that enables Media Access Control security (MACsec) on the Cloud Interconnect connection between Google and your on-premises router. Structure is documented below.
- macsec
Enabled Boolean - Enable or disable MACsec on this Interconnect connection. MACsec enablement fails if the MACsec object is not specified.
- 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?
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. - noc
Contact StringEmail - Email address to contact the customer NOC for operations and maintenance notifications regarding this Interconnect. If specified, this will be used for notifications in addition to all other forms described, such as Cloud Monitoring logs alerting and Cloud Notifications. This field is required for users who sign up for Cloud Interconnect using workforce identity federation.
- operational
Status String - The current status of this Interconnect's functionality, which can take one of the following:
- OS_ACTIVE: A valid Interconnect, which is turned up and is ready to use. Attachments may be provisioned on this Interconnect.
- OS_UNPROVISIONED: An Interconnect that has not completed turnup. No attachments may be provisioned on this Interconnect.
- OS_UNDER_MAINTENANCE: An Interconnect that is undergoing internal maintenance. No attachments may be provisioned or updated on this Interconnect.
- peer
Ip StringAddress - IP address configured on the customer side of the Interconnect link. The customer should configure this IP address during turnup when prompted by Google NOC. This can be used only for ping tests.
- project String
- The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
- provisioned
Link IntegerCount - Number of links actually provisioned in this interconnect.
- pulumi
Labels Map<String,String> - The combination of labels configured directly on the resource and default labels configured on the provider.
- remote
Location String - Indicates that this is a Cross-Cloud Interconnect. This field specifies the location outside of Google's network that the interconnect is connected to.
- requested
Features List<String> - interconnects.list of features requested for this Interconnect connection. Options: IF_MACSEC (
If specified then the connection is created on MACsec capable hardware ports. If not
specified, the default value is false, which allocates non-MACsec capable ports first if
available). Note that MACSEC is still technically allowed for compatibility reasons, but it
does not work with the API, and will be removed in an upcoming major version.
Each value may be one of:
MACSEC
,IF_MACSEC
. - requested
Link IntegerCount - Target number of physical links in the link bundle, as requested by the customer.
- satisfies
Pzs Boolean - Reserved for future use.
- state String
- (Output)
State of this notification. Note that the versions of this enum prefixed with "NS_" have
been deprecated in favor of the unprefixed values. Can take one of the following values:
- ACTIVE: This outage notification is active. The event could be in the past, present, or future. See startTime and endTime for scheduling.
- CANCELLED: The outage associated with this notification was cancelled before the outage was due to start.
- COMPLETED: The outage associated with this notification is complete.
- admin
Enabled boolean - Administrative status of the interconnect. When this is set to true, the Interconnect is functional and can carry traffic. When set to false, no packets can be carried over the interconnect and no BGP routes are exchanged over it. By default, the status is set to true.
- available
Features string[] - interconnects.list of features available for this Interconnect connection. Can take the value: MACSEC. If present then the Interconnect connection is provisioned on MACsec capable hardware ports. If not present then the Interconnect connection is provisioned on non-MACsec capable ports and MACsec isn't supported and enabling MACsec fails).
- circuit
Infos InterconnectCircuit Info[] - A list of CircuitInfo objects, that describe the individual circuits in this LAG. Structure is documented below.
- creation
Timestamp string - Creation timestamp in RFC3339 text format.
- customer
Name string - Customer name, to put in the Letter of Authorization as the party authorized to request a
crossconnect.
- description string
- An optional description of this resource. Provide this property when you create the resource.
- effective
Labels {[key: string]: string} - All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
- expected
Outages InterconnectExpected Outage[] - A list of outages expected for this Interconnect. Structure is documented below.
- google
Ip stringAddress - IP address configured on the Google side of the Interconnect link. This can be used only for ping tests.
- google
Reference stringId - Google reference ID to be used when raising support tickets with Google or otherwise to debug backend connectivity issues.
- interconnect
Attachments string[] - A list of the URLs of all InterconnectAttachments configured to use this Interconnect.
- interconnect
Type string - Type of interconnect. Note that a value IT_PRIVATE has been deprecated in favor of DEDICATED.
Can take one of the following values:
- PARTNER: A partner-managed interconnection shared between customers though a partner.
- DEDICATED: A dedicated physical interconnection with the customer.
Possible values are:
DEDICATED
,PARTNER
,IT_PRIVATE
.
- label
Fingerprint string - A fingerprint for the labels being applied to this Interconnect, 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.
- 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.
Note: This field is non-authoritative, and will only manage the labels present in your configuration. Please refer to the field
effective_labels
for all of the labels present on the resource.- link
Type string - Type of link requested. Note that this field indicates the speed of each of the links in the
bundle, not the speed of the entire bundle. Can take one of the following values:
- LINK_TYPE_ETHERNET_10G_LR: A 10G Ethernet with LR optics.
- LINK_TYPE_ETHERNET_100G_LR: A 100G Ethernet with LR optics.
Possible values are:
LINK_TYPE_ETHERNET_10G_LR
,LINK_TYPE_ETHERNET_100G_LR
.
- location string
- URL of the InterconnectLocation object that represents where this connection is to be provisioned.
- macsec
Interconnect
Macsec - Configuration that enables Media Access Control security (MACsec) on the Cloud Interconnect connection between Google and your on-premises router. Structure is documented below.
- macsec
Enabled boolean - Enable or disable MACsec on this Interconnect connection. MACsec enablement fails if the MACsec object is not specified.
- 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?
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. - noc
Contact stringEmail - Email address to contact the customer NOC for operations and maintenance notifications regarding this Interconnect. If specified, this will be used for notifications in addition to all other forms described, such as Cloud Monitoring logs alerting and Cloud Notifications. This field is required for users who sign up for Cloud Interconnect using workforce identity federation.
- operational
Status string - The current status of this Interconnect's functionality, which can take one of the following:
- OS_ACTIVE: A valid Interconnect, which is turned up and is ready to use. Attachments may be provisioned on this Interconnect.
- OS_UNPROVISIONED: An Interconnect that has not completed turnup. No attachments may be provisioned on this Interconnect.
- OS_UNDER_MAINTENANCE: An Interconnect that is undergoing internal maintenance. No attachments may be provisioned or updated on this Interconnect.
- peer
Ip stringAddress - IP address configured on the customer side of the Interconnect link. The customer should configure this IP address during turnup when prompted by Google NOC. This can be used only for ping tests.
- project string
- The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
- provisioned
Link numberCount - Number of links actually provisioned in this interconnect.
- pulumi
Labels {[key: string]: string} - The combination of labels configured directly on the resource and default labels configured on the provider.
- remote
Location string - Indicates that this is a Cross-Cloud Interconnect. This field specifies the location outside of Google's network that the interconnect is connected to.
- requested
Features string[] - interconnects.list of features requested for this Interconnect connection. Options: IF_MACSEC (
If specified then the connection is created on MACsec capable hardware ports. If not
specified, the default value is false, which allocates non-MACsec capable ports first if
available). Note that MACSEC is still technically allowed for compatibility reasons, but it
does not work with the API, and will be removed in an upcoming major version.
Each value may be one of:
MACSEC
,IF_MACSEC
. - requested
Link numberCount - Target number of physical links in the link bundle, as requested by the customer.
- satisfies
Pzs boolean - Reserved for future use.
- state string
- (Output)
State of this notification. Note that the versions of this enum prefixed with "NS_" have
been deprecated in favor of the unprefixed values. Can take one of the following values:
- ACTIVE: This outage notification is active. The event could be in the past, present, or future. See startTime and endTime for scheduling.
- CANCELLED: The outage associated with this notification was cancelled before the outage was due to start.
- COMPLETED: The outage associated with this notification is complete.
- admin_
enabled bool - Administrative status of the interconnect. When this is set to true, the Interconnect is functional and can carry traffic. When set to false, no packets can be carried over the interconnect and no BGP routes are exchanged over it. By default, the status is set to true.
- available_
features Sequence[str] - interconnects.list of features available for this Interconnect connection. Can take the value: MACSEC. If present then the Interconnect connection is provisioned on MACsec capable hardware ports. If not present then the Interconnect connection is provisioned on non-MACsec capable ports and MACsec isn't supported and enabling MACsec fails).
- circuit_
infos Sequence[InterconnectCircuit Info Args] - A list of CircuitInfo objects, that describe the individual circuits in this LAG. Structure is documented below.
- creation_
timestamp str - Creation timestamp in RFC3339 text format.
- customer_
name str - Customer name, to put in the Letter of Authorization as the party authorized to request a
crossconnect.
- description str
- An optional description of this resource. Provide this property when you create the resource.
- effective_
labels Mapping[str, str] - All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
- expected_
outages Sequence[InterconnectExpected Outage Args] - A list of outages expected for this Interconnect. Structure is documented below.
- google_
ip_ straddress - IP address configured on the Google side of the Interconnect link. This can be used only for ping tests.
- google_
reference_ strid - Google reference ID to be used when raising support tickets with Google or otherwise to debug backend connectivity issues.
- interconnect_
attachments Sequence[str] - A list of the URLs of all InterconnectAttachments configured to use this Interconnect.
- interconnect_
type str - Type of interconnect. Note that a value IT_PRIVATE has been deprecated in favor of DEDICATED.
Can take one of the following values:
- PARTNER: A partner-managed interconnection shared between customers though a partner.
- DEDICATED: A dedicated physical interconnection with the customer.
Possible values are:
DEDICATED
,PARTNER
,IT_PRIVATE
.
- label_
fingerprint str - A fingerprint for the labels being applied to this Interconnect, 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.
- 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.
Note: This field is non-authoritative, and will only manage the labels present in your configuration. Please refer to the field
effective_labels
for all of the labels present on the resource.- link_
type str - Type of link requested. Note that this field indicates the speed of each of the links in the
bundle, not the speed of the entire bundle. Can take one of the following values:
- LINK_TYPE_ETHERNET_10G_LR: A 10G Ethernet with LR optics.
- LINK_TYPE_ETHERNET_100G_LR: A 100G Ethernet with LR optics.
Possible values are:
LINK_TYPE_ETHERNET_10G_LR
,LINK_TYPE_ETHERNET_100G_LR
.
- location str
- URL of the InterconnectLocation object that represents where this connection is to be provisioned.
- macsec
Interconnect
Macsec Args - Configuration that enables Media Access Control security (MACsec) on the Cloud Interconnect connection between Google and your on-premises router. Structure is documented below.
- macsec_
enabled bool - Enable or disable MACsec on this Interconnect connection. MACsec enablement fails if the MACsec object is not specified.
- 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?
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. - noc_
contact_ stremail - Email address to contact the customer NOC for operations and maintenance notifications regarding this Interconnect. If specified, this will be used for notifications in addition to all other forms described, such as Cloud Monitoring logs alerting and Cloud Notifications. This field is required for users who sign up for Cloud Interconnect using workforce identity federation.
- operational_
status str - The current status of this Interconnect's functionality, which can take one of the following:
- OS_ACTIVE: A valid Interconnect, which is turned up and is ready to use. Attachments may be provisioned on this Interconnect.
- OS_UNPROVISIONED: An Interconnect that has not completed turnup. No attachments may be provisioned on this Interconnect.
- OS_UNDER_MAINTENANCE: An Interconnect that is undergoing internal maintenance. No attachments may be provisioned or updated on this Interconnect.
- peer_
ip_ straddress - IP address configured on the customer side of the Interconnect link. The customer should configure this IP address during turnup when prompted by Google NOC. This can be used only for ping tests.
- project str
- The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
- provisioned_
link_ intcount - Number of links actually provisioned in this interconnect.
- pulumi_
labels Mapping[str, str] - The combination of labels configured directly on the resource and default labels configured on the provider.
- remote_
location str - Indicates that this is a Cross-Cloud Interconnect. This field specifies the location outside of Google's network that the interconnect is connected to.
- requested_
features Sequence[str] - interconnects.list of features requested for this Interconnect connection. Options: IF_MACSEC (
If specified then the connection is created on MACsec capable hardware ports. If not
specified, the default value is false, which allocates non-MACsec capable ports first if
available). Note that MACSEC is still technically allowed for compatibility reasons, but it
does not work with the API, and will be removed in an upcoming major version.
Each value may be one of:
MACSEC
,IF_MACSEC
. - requested_
link_ intcount - Target number of physical links in the link bundle, as requested by the customer.
- satisfies_
pzs bool - Reserved for future use.
- state str
- (Output)
State of this notification. Note that the versions of this enum prefixed with "NS_" have
been deprecated in favor of the unprefixed values. Can take one of the following values:
- ACTIVE: This outage notification is active. The event could be in the past, present, or future. See startTime and endTime for scheduling.
- CANCELLED: The outage associated with this notification was cancelled before the outage was due to start.
- COMPLETED: The outage associated with this notification is complete.
- admin
Enabled Boolean - Administrative status of the interconnect. When this is set to true, the Interconnect is functional and can carry traffic. When set to false, no packets can be carried over the interconnect and no BGP routes are exchanged over it. By default, the status is set to true.
- available
Features List<String> - interconnects.list of features available for this Interconnect connection. Can take the value: MACSEC. If present then the Interconnect connection is provisioned on MACsec capable hardware ports. If not present then the Interconnect connection is provisioned on non-MACsec capable ports and MACsec isn't supported and enabling MACsec fails).
- circuit
Infos List<Property Map> - A list of CircuitInfo objects, that describe the individual circuits in this LAG. Structure is documented below.
- creation
Timestamp String - Creation timestamp in RFC3339 text format.
- customer
Name String - Customer name, to put in the Letter of Authorization as the party authorized to request a
crossconnect.
- description String
- An optional description of this resource. Provide this property when you create the resource.
- effective
Labels Map<String> - All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
- expected
Outages List<Property Map> - A list of outages expected for this Interconnect. Structure is documented below.
- google
Ip StringAddress - IP address configured on the Google side of the Interconnect link. This can be used only for ping tests.
- google
Reference StringId - Google reference ID to be used when raising support tickets with Google or otherwise to debug backend connectivity issues.
- interconnect
Attachments List<String> - A list of the URLs of all InterconnectAttachments configured to use this Interconnect.
- interconnect
Type String - Type of interconnect. Note that a value IT_PRIVATE has been deprecated in favor of DEDICATED.
Can take one of the following values:
- PARTNER: A partner-managed interconnection shared between customers though a partner.
- DEDICATED: A dedicated physical interconnection with the customer.
Possible values are:
DEDICATED
,PARTNER
,IT_PRIVATE
.
- label
Fingerprint String - A fingerprint for the labels being applied to this Interconnect, 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.
- 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.
Note: This field is non-authoritative, and will only manage the labels present in your configuration. Please refer to the field
effective_labels
for all of the labels present on the resource.- link
Type String - Type of link requested. Note that this field indicates the speed of each of the links in the
bundle, not the speed of the entire bundle. Can take one of the following values:
- LINK_TYPE_ETHERNET_10G_LR: A 10G Ethernet with LR optics.
- LINK_TYPE_ETHERNET_100G_LR: A 100G Ethernet with LR optics.
Possible values are:
LINK_TYPE_ETHERNET_10G_LR
,LINK_TYPE_ETHERNET_100G_LR
.
- location String
- URL of the InterconnectLocation object that represents where this connection is to be provisioned.
- macsec Property Map
- Configuration that enables Media Access Control security (MACsec) on the Cloud Interconnect connection between Google and your on-premises router. Structure is documented below.
- macsec
Enabled Boolean - Enable or disable MACsec on this Interconnect connection. MACsec enablement fails if the MACsec object is not specified.
- 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?
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. - noc
Contact StringEmail - Email address to contact the customer NOC for operations and maintenance notifications regarding this Interconnect. If specified, this will be used for notifications in addition to all other forms described, such as Cloud Monitoring logs alerting and Cloud Notifications. This field is required for users who sign up for Cloud Interconnect using workforce identity federation.
- operational
Status String - The current status of this Interconnect's functionality, which can take one of the following:
- OS_ACTIVE: A valid Interconnect, which is turned up and is ready to use. Attachments may be provisioned on this Interconnect.
- OS_UNPROVISIONED: An Interconnect that has not completed turnup. No attachments may be provisioned on this Interconnect.
- OS_UNDER_MAINTENANCE: An Interconnect that is undergoing internal maintenance. No attachments may be provisioned or updated on this Interconnect.
- peer
Ip StringAddress - IP address configured on the customer side of the Interconnect link. The customer should configure this IP address during turnup when prompted by Google NOC. This can be used only for ping tests.
- project String
- The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
- provisioned
Link NumberCount - Number of links actually provisioned in this interconnect.
- pulumi
Labels Map<String> - The combination of labels configured directly on the resource and default labels configured on the provider.
- remote
Location String - Indicates that this is a Cross-Cloud Interconnect. This field specifies the location outside of Google's network that the interconnect is connected to.
- requested
Features List<String> - interconnects.list of features requested for this Interconnect connection. Options: IF_MACSEC (
If specified then the connection is created on MACsec capable hardware ports. If not
specified, the default value is false, which allocates non-MACsec capable ports first if
available). Note that MACSEC is still technically allowed for compatibility reasons, but it
does not work with the API, and will be removed in an upcoming major version.
Each value may be one of:
MACSEC
,IF_MACSEC
. - requested
Link NumberCount - Target number of physical links in the link bundle, as requested by the customer.
- satisfies
Pzs Boolean - Reserved for future use.
- state String
- (Output)
State of this notification. Note that the versions of this enum prefixed with "NS_" have
been deprecated in favor of the unprefixed values. Can take one of the following values:
- ACTIVE: This outage notification is active. The event could be in the past, present, or future. See startTime and endTime for scheduling.
- CANCELLED: The outage associated with this notification was cancelled before the outage was due to start.
- COMPLETED: The outage associated with this notification is complete.
Supporting Types
InterconnectCircuitInfo, InterconnectCircuitInfoArgs
- Customer
Demarc stringId - (Output) Customer-side demarc ID for this circuit.
- Google
Circuit stringId - (Output) Google-assigned unique ID for this circuit. Assigned at circuit turn-up.
- Google
Demarc stringId - (Output) Google-side demarc ID for this circuit. Assigned at circuit turn-up and provided by Google to the customer in the LOA.
- Customer
Demarc stringId - (Output) Customer-side demarc ID for this circuit.
- Google
Circuit stringId - (Output) Google-assigned unique ID for this circuit. Assigned at circuit turn-up.
- Google
Demarc stringId - (Output) Google-side demarc ID for this circuit. Assigned at circuit turn-up and provided by Google to the customer in the LOA.
- customer
Demarc StringId - (Output) Customer-side demarc ID for this circuit.
- google
Circuit StringId - (Output) Google-assigned unique ID for this circuit. Assigned at circuit turn-up.
- google
Demarc StringId - (Output) Google-side demarc ID for this circuit. Assigned at circuit turn-up and provided by Google to the customer in the LOA.
- customer
Demarc stringId - (Output) Customer-side demarc ID for this circuit.
- google
Circuit stringId - (Output) Google-assigned unique ID for this circuit. Assigned at circuit turn-up.
- google
Demarc stringId - (Output) Google-side demarc ID for this circuit. Assigned at circuit turn-up and provided by Google to the customer in the LOA.
- customer_
demarc_ strid - (Output) Customer-side demarc ID for this circuit.
- google_
circuit_ strid - (Output) Google-assigned unique ID for this circuit. Assigned at circuit turn-up.
- google_
demarc_ strid - (Output) Google-side demarc ID for this circuit. Assigned at circuit turn-up and provided by Google to the customer in the LOA.
- customer
Demarc StringId - (Output) Customer-side demarc ID for this circuit.
- google
Circuit StringId - (Output) Google-assigned unique ID for this circuit. Assigned at circuit turn-up.
- google
Demarc StringId - (Output) Google-side demarc ID for this circuit. Assigned at circuit turn-up and provided by Google to the customer in the LOA.
InterconnectExpectedOutage, InterconnectExpectedOutageArgs
- Affected
Circuits List<string> - (Output) If issueType is IT_PARTIAL_OUTAGE, a list of the Google-side circuit IDs that will be affected.
- Description string
- An optional description of this resource. Provide this property when you create the resource.
- End
Time string - (Output) Scheduled end time for the outage (milliseconds since Unix epoch).
- Issue
Type string - (Output)
Form this outage is expected to take. Note that the versions of this enum prefixed with
"IT_" have been deprecated in favor of the unprefixed values. Can take one of the
following values:
- OUTAGE: The Interconnect may be completely out of service for some or all of the specified window.
- PARTIAL_OUTAGE: Some circuits comprising the Interconnect as a whole should remain up, but with reduced bandwidth.
- 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?
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. - Source string
- (Output)
The party that generated this notification. Note that the value of NSRC_GOOGLE has been
deprecated in favor of GOOGLE. Can take the following value:
- GOOGLE: this notification as generated by Google.
- Start
Time string - (Output) Scheduled start time for the outage (milliseconds since Unix epoch).
- State string
- (Output)
State of this notification. Note that the versions of this enum prefixed with "NS_" have
been deprecated in favor of the unprefixed values. Can take one of the following values:
- ACTIVE: This outage notification is active. The event could be in the past, present, or future. See startTime and endTime for scheduling.
- CANCELLED: The outage associated with this notification was cancelled before the outage was due to start.
- COMPLETED: The outage associated with this notification is complete.
- Affected
Circuits []string - (Output) If issueType is IT_PARTIAL_OUTAGE, a list of the Google-side circuit IDs that will be affected.
- Description string
- An optional description of this resource. Provide this property when you create the resource.
- End
Time string - (Output) Scheduled end time for the outage (milliseconds since Unix epoch).
- Issue
Type string - (Output)
Form this outage is expected to take. Note that the versions of this enum prefixed with
"IT_" have been deprecated in favor of the unprefixed values. Can take one of the
following values:
- OUTAGE: The Interconnect may be completely out of service for some or all of the specified window.
- PARTIAL_OUTAGE: Some circuits comprising the Interconnect as a whole should remain up, but with reduced bandwidth.
- 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?
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. - Source string
- (Output)
The party that generated this notification. Note that the value of NSRC_GOOGLE has been
deprecated in favor of GOOGLE. Can take the following value:
- GOOGLE: this notification as generated by Google.
- Start
Time string - (Output) Scheduled start time for the outage (milliseconds since Unix epoch).
- State string
- (Output)
State of this notification. Note that the versions of this enum prefixed with "NS_" have
been deprecated in favor of the unprefixed values. Can take one of the following values:
- ACTIVE: This outage notification is active. The event could be in the past, present, or future. See startTime and endTime for scheduling.
- CANCELLED: The outage associated with this notification was cancelled before the outage was due to start.
- COMPLETED: The outage associated with this notification is complete.
- affected
Circuits List<String> - (Output) If issueType is IT_PARTIAL_OUTAGE, a list of the Google-side circuit IDs that will be affected.
- description String
- An optional description of this resource. Provide this property when you create the resource.
- end
Time String - (Output) Scheduled end time for the outage (milliseconds since Unix epoch).
- issue
Type String - (Output)
Form this outage is expected to take. Note that the versions of this enum prefixed with
"IT_" have been deprecated in favor of the unprefixed values. Can take one of the
following values:
- OUTAGE: The Interconnect may be completely out of service for some or all of the specified window.
- PARTIAL_OUTAGE: Some circuits comprising the Interconnect as a whole should remain up, but with reduced bandwidth.
- 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?
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. - source String
- (Output)
The party that generated this notification. Note that the value of NSRC_GOOGLE has been
deprecated in favor of GOOGLE. Can take the following value:
- GOOGLE: this notification as generated by Google.
- start
Time String - (Output) Scheduled start time for the outage (milliseconds since Unix epoch).
- state String
- (Output)
State of this notification. Note that the versions of this enum prefixed with "NS_" have
been deprecated in favor of the unprefixed values. Can take one of the following values:
- ACTIVE: This outage notification is active. The event could be in the past, present, or future. See startTime and endTime for scheduling.
- CANCELLED: The outage associated with this notification was cancelled before the outage was due to start.
- COMPLETED: The outage associated with this notification is complete.
- affected
Circuits string[] - (Output) If issueType is IT_PARTIAL_OUTAGE, a list of the Google-side circuit IDs that will be affected.
- description string
- An optional description of this resource. Provide this property when you create the resource.
- end
Time string - (Output) Scheduled end time for the outage (milliseconds since Unix epoch).
- issue
Type string - (Output)
Form this outage is expected to take. Note that the versions of this enum prefixed with
"IT_" have been deprecated in favor of the unprefixed values. Can take one of the
following values:
- OUTAGE: The Interconnect may be completely out of service for some or all of the specified window.
- PARTIAL_OUTAGE: Some circuits comprising the Interconnect as a whole should remain up, but with reduced bandwidth.
- 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?
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. - source string
- (Output)
The party that generated this notification. Note that the value of NSRC_GOOGLE has been
deprecated in favor of GOOGLE. Can take the following value:
- GOOGLE: this notification as generated by Google.
- start
Time string - (Output) Scheduled start time for the outage (milliseconds since Unix epoch).
- state string
- (Output)
State of this notification. Note that the versions of this enum prefixed with "NS_" have
been deprecated in favor of the unprefixed values. Can take one of the following values:
- ACTIVE: This outage notification is active. The event could be in the past, present, or future. See startTime and endTime for scheduling.
- CANCELLED: The outage associated with this notification was cancelled before the outage was due to start.
- COMPLETED: The outage associated with this notification is complete.
- affected_
circuits Sequence[str] - (Output) If issueType is IT_PARTIAL_OUTAGE, a list of the Google-side circuit IDs that will be affected.
- description str
- An optional description of this resource. Provide this property when you create the resource.
- end_
time str - (Output) Scheduled end time for the outage (milliseconds since Unix epoch).
- issue_
type str - (Output)
Form this outage is expected to take. Note that the versions of this enum prefixed with
"IT_" have been deprecated in favor of the unprefixed values. Can take one of the
following values:
- OUTAGE: The Interconnect may be completely out of service for some or all of the specified window.
- PARTIAL_OUTAGE: Some circuits comprising the Interconnect as a whole should remain up, but with reduced bandwidth.
- 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?
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. - source str
- (Output)
The party that generated this notification. Note that the value of NSRC_GOOGLE has been
deprecated in favor of GOOGLE. Can take the following value:
- GOOGLE: this notification as generated by Google.
- start_
time str - (Output) Scheduled start time for the outage (milliseconds since Unix epoch).
- state str
- (Output)
State of this notification. Note that the versions of this enum prefixed with "NS_" have
been deprecated in favor of the unprefixed values. Can take one of the following values:
- ACTIVE: This outage notification is active. The event could be in the past, present, or future. See startTime and endTime for scheduling.
- CANCELLED: The outage associated with this notification was cancelled before the outage was due to start.
- COMPLETED: The outage associated with this notification is complete.
- affected
Circuits List<String> - (Output) If issueType is IT_PARTIAL_OUTAGE, a list of the Google-side circuit IDs that will be affected.
- description String
- An optional description of this resource. Provide this property when you create the resource.
- end
Time String - (Output) Scheduled end time for the outage (milliseconds since Unix epoch).
- issue
Type String - (Output)
Form this outage is expected to take. Note that the versions of this enum prefixed with
"IT_" have been deprecated in favor of the unprefixed values. Can take one of the
following values:
- OUTAGE: The Interconnect may be completely out of service for some or all of the specified window.
- PARTIAL_OUTAGE: Some circuits comprising the Interconnect as a whole should remain up, but with reduced bandwidth.
- 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?
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. - source String
- (Output)
The party that generated this notification. Note that the value of NSRC_GOOGLE has been
deprecated in favor of GOOGLE. Can take the following value:
- GOOGLE: this notification as generated by Google.
- start
Time String - (Output) Scheduled start time for the outage (milliseconds since Unix epoch).
- state String
- (Output)
State of this notification. Note that the versions of this enum prefixed with "NS_" have
been deprecated in favor of the unprefixed values. Can take one of the following values:
- ACTIVE: This outage notification is active. The event could be in the past, present, or future. See startTime and endTime for scheduling.
- CANCELLED: The outage associated with this notification was cancelled before the outage was due to start.
- COMPLETED: The outage associated with this notification is complete.
InterconnectMacsec, InterconnectMacsecArgs
- List<Interconnect
Macsec Pre Shared Key> - A keychain placeholder describing a set of named key objects along with their start times. A MACsec CKN/CAK is generated for each key in the key chain. Google router automatically picks the key with the most recent startTime when establishing or re-establishing a MACsec secure link. Structure is documented below.
- []Interconnect
Macsec Pre Shared Key - A keychain placeholder describing a set of named key objects along with their start times. A MACsec CKN/CAK is generated for each key in the key chain. Google router automatically picks the key with the most recent startTime when establishing or re-establishing a MACsec secure link. Structure is documented below.
- List<Interconnect
Macsec Pre Shared Key> - A keychain placeholder describing a set of named key objects along with their start times. A MACsec CKN/CAK is generated for each key in the key chain. Google router automatically picks the key with the most recent startTime when establishing or re-establishing a MACsec secure link. Structure is documented below.
- Interconnect
Macsec Pre Shared Key[] - A keychain placeholder describing a set of named key objects along with their start times. A MACsec CKN/CAK is generated for each key in the key chain. Google router automatically picks the key with the most recent startTime when establishing or re-establishing a MACsec secure link. Structure is documented below.
- Sequence[Interconnect
Macsec Pre Shared Key] - A keychain placeholder describing a set of named key objects along with their start times. A MACsec CKN/CAK is generated for each key in the key chain. Google router automatically picks the key with the most recent startTime when establishing or re-establishing a MACsec secure link. Structure is documented below.
- List<Property Map>
- A keychain placeholder describing a set of named key objects along with their start times. A MACsec CKN/CAK is generated for each key in the key chain. Google router automatically picks the key with the most recent startTime when establishing or re-establishing a MACsec secure link. Structure is documented below.
InterconnectMacsecPreSharedKey, InterconnectMacsecPreSharedKeyArgs
- Name string
- A name for this pre-shared key. 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?
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. - Fail
Open bool - If set to true, the Interconnect connection is configured with a should-secure MACsec security policy, that allows the Google router to fallback to cleartext traffic if the MKA session cannot be established. By default, the Interconnect connection is configured with a must-secure security policy that drops all traffic if the MKA session cannot be established with your router.
- Start
Time string - A RFC3339 timestamp on or after which the key is valid. startTime can be in the future. If the keychain has a single key, startTime can be omitted. If the keychain has multiple keys, startTime is mandatory for each key. The start times of keys must be in increasing order. The start times of two consecutive keys must be at least 6 hours apart.
- Name string
- A name for this pre-shared key. 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?
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. - Fail
Open bool - If set to true, the Interconnect connection is configured with a should-secure MACsec security policy, that allows the Google router to fallback to cleartext traffic if the MKA session cannot be established. By default, the Interconnect connection is configured with a must-secure security policy that drops all traffic if the MKA session cannot be established with your router.
- Start
Time string - A RFC3339 timestamp on or after which the key is valid. startTime can be in the future. If the keychain has a single key, startTime can be omitted. If the keychain has multiple keys, startTime is mandatory for each key. The start times of keys must be in increasing order. The start times of two consecutive keys must be at least 6 hours apart.
- name String
- A name for this pre-shared key. 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?
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. - fail
Open Boolean - If set to true, the Interconnect connection is configured with a should-secure MACsec security policy, that allows the Google router to fallback to cleartext traffic if the MKA session cannot be established. By default, the Interconnect connection is configured with a must-secure security policy that drops all traffic if the MKA session cannot be established with your router.
- start
Time String - A RFC3339 timestamp on or after which the key is valid. startTime can be in the future. If the keychain has a single key, startTime can be omitted. If the keychain has multiple keys, startTime is mandatory for each key. The start times of keys must be in increasing order. The start times of two consecutive keys must be at least 6 hours apart.
- name string
- A name for this pre-shared key. 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?
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. - fail
Open boolean - If set to true, the Interconnect connection is configured with a should-secure MACsec security policy, that allows the Google router to fallback to cleartext traffic if the MKA session cannot be established. By default, the Interconnect connection is configured with a must-secure security policy that drops all traffic if the MKA session cannot be established with your router.
- start
Time string - A RFC3339 timestamp on or after which the key is valid. startTime can be in the future. If the keychain has a single key, startTime can be omitted. If the keychain has multiple keys, startTime is mandatory for each key. The start times of keys must be in increasing order. The start times of two consecutive keys must be at least 6 hours apart.
- name str
- A name for this pre-shared key. 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?
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. - fail_
open bool - If set to true, the Interconnect connection is configured with a should-secure MACsec security policy, that allows the Google router to fallback to cleartext traffic if the MKA session cannot be established. By default, the Interconnect connection is configured with a must-secure security policy that drops all traffic if the MKA session cannot be established with your router.
- start_
time str - A RFC3339 timestamp on or after which the key is valid. startTime can be in the future. If the keychain has a single key, startTime can be omitted. If the keychain has multiple keys, startTime is mandatory for each key. The start times of keys must be in increasing order. The start times of two consecutive keys must be at least 6 hours apart.
- name String
- A name for this pre-shared key. 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?
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. - fail
Open Boolean - If set to true, the Interconnect connection is configured with a should-secure MACsec security policy, that allows the Google router to fallback to cleartext traffic if the MKA session cannot be established. By default, the Interconnect connection is configured with a must-secure security policy that drops all traffic if the MKA session cannot be established with your router.
- start
Time String - A RFC3339 timestamp on or after which the key is valid. startTime can be in the future. If the keychain has a single key, startTime can be omitted. If the keychain has multiple keys, startTime is mandatory for each key. The start times of keys must be in increasing order. The start times of two consecutive keys must be at least 6 hours apart.
Import
Interconnect can be imported using any of these accepted formats:
projects/{{project}}/global/interconnects/{{name}}
{{project}}/{{name}}
{{name}}
When using the pulumi import
command, Interconnect can be imported using one of the formats above. For example:
$ pulumi import gcp:compute/interconnect:Interconnect default projects/{{project}}/global/interconnects/{{name}}
$ pulumi import gcp:compute/interconnect:Interconnect default {{project}}/{{name}}
$ pulumi import gcp:compute/interconnect:Interconnect default {{name}}
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Google Cloud (GCP) Classic pulumi/pulumi-gcp
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
google-beta
Terraform Provider.