import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; /** * 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](https://cloud.google.com/compute/docs/reference/rest/v1/interconnects) * * How-to Guides * * [Create a Dedicated Interconnect](https://cloud.google.com/network-connectivity/docs/interconnect/concepts/dedicated-overview) * * ## Example Usage * * ### Compute Interconnect Basic * * ```typescript * 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/${project.id}/global/interconnectLocations/iad-zone1-1`), * requestedLinkCount: 1, * }); * ``` * * ## 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: * * ```sh * $ 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}} * ``` */ export declare class Interconnect extends pulumi.CustomResource { /** * Get an existing Interconnect resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param state Any extra arguments used during the lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, state?: InterconnectState, opts?: pulumi.CustomResourceOptions): Interconnect; /** * Returns true if the given object is an instance of Interconnect. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is Interconnect; /** * (Optional, Beta) * Enable or disable the Application Aware Interconnect(AAI) feature on this interconnect. */ readonly aaiEnabled: pulumi.Output; /** * 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. */ readonly adminEnabled: pulumi.Output; /** * (Optional, Beta) * Configuration that enables Media Access Control security (MACsec) on the Cloud * Interconnect connection between Google and your on-premises router. * Structure is documented below. */ readonly applicationAwareInterconnect: pulumi.Output; /** * [Output Only] List of features that are available on this Interconnect connection based on the provisioned hardware and configuration. * Possible values include: * - 'IF_MACSEC': Indicates the Interconnect connection is provisioned on MACsec capable hardware ports. If this feature is not present, the connection does not support MACsec, and any attempt to enable it will fail. * - 'IF_L2_FORWARDING': Indicates the Interconnect connection can be used for Layer 2 (L2) traffic forwarding. If not present, the connection cannot be used with L2 forwarding attachments. * - 'IF_CROSS_SITE_NETWORK': Indicates the Interconnect connection is provisioned for Cross-Site Networking. * Note: 'MACSEC' is a legacy value and has the same meaning as 'IF_MACSEC'. */ readonly availableFeatures: pulumi.Output; /** * A list of CircuitInfo objects, that describe the individual circuits in this LAG. * Structure is documented below. */ readonly circuitInfos: pulumi.Output; /** * Creation timestamp in RFC3339 text format. */ readonly creationTimestamp: pulumi.Output; /** * Customer name, to put in the Letter of Authorization as the party authorized to request a * crossconnect. This field is required for Dedicated and Partner Interconnect, should not be specified * for cross-cloud interconnect. */ readonly customerName: pulumi.Output; /** * An optional description of this resource. Provide this property when you create the resource. */ readonly description: pulumi.Output; /** * All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services. */ readonly effectiveLabels: pulumi.Output<{ [key: string]: string; }>; /** * A list of outages expected for this Interconnect. * Structure is documented below. */ readonly expectedOutages: pulumi.Output; /** * IP address configured on the Google side of the Interconnect link. * This can be used only for ping tests. */ readonly googleIpAddress: pulumi.Output; /** * Google reference ID to be used when raising support tickets with Google or otherwise to debug * backend connectivity issues. */ readonly googleReferenceId: pulumi.Output; /** * A list of the URLs of all InterconnectAttachments configured to use this Interconnect. */ readonly interconnectAttachments: pulumi.Output; /** * URLs of InterconnectGroups that include this Interconnect. * Order is arbitrary and items are unique. */ readonly interconnectGroups: pulumi.Output; /** * 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`. */ readonly interconnectType: pulumi.Output; /** * 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. */ readonly labelFingerprint: pulumi.Output; /** * 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 `effectiveLabels` for all of the labels present on the resource. */ readonly labels: pulumi.Output<{ [key: string]: string; } | undefined>; /** * 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. * - LINK_TYPE_ETHERNET_400G_LR4: A 400G Ethernet with LR4 optics * Possible values are: `LINK_TYPE_ETHERNET_10G_LR`, `LINK_TYPE_ETHERNET_100G_LR`, `LINK_TYPE_ETHERNET_400G_LR4`. */ readonly linkType: pulumi.Output; /** * URL of the InterconnectLocation object that represents where this connection is to be provisioned. * Specifies the location inside Google's Networks. */ readonly location: pulumi.Output; /** * Configuration that enables Media Access Control security (MACsec) on the Cloud * Interconnect connection between Google and your on-premises router. * Structure is documented below. */ readonly macsec: pulumi.Output; /** * Enable or disable MACsec on this Interconnect connection. * MACsec enablement fails if the MACsec object is not specified. */ readonly macsecEnabled: pulumi.Output; /** * 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. */ readonly name: pulumi.Output; /** * 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. */ readonly nocContactEmail: pulumi.Output; /** * 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. */ readonly operationalStatus: pulumi.Output; /** * Additional params passed with the request, but not persisted as part of resource payload * Structure is documented below. */ readonly params: pulumi.Output; /** * 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. */ readonly peerIpAddress: pulumi.Output; /** * The ID of the project in which the resource belongs. * If it is not provided, the provider project is used. */ readonly project: pulumi.Output; /** * Number of links actually provisioned in this interconnect. */ readonly provisionedLinkCount: pulumi.Output; /** * The combination of labels configured directly on the resource * and default labels configured on the provider. */ readonly pulumiLabels: pulumi.Output<{ [key: string]: 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. */ readonly remoteLocation: pulumi.Output; /** * List of features to request for this Interconnect connection. This field is only applicable during Interconnect creation and cannot be modified later. * Possible values include: * - 'IF_MACSEC': Provisions the connection on hardware ports that support MACsec (Media Access Control Security). If not specified, the system may allocate non-MACsec capable ports if available. * - 'IF_L2_FORWARDING': Provisions the connection for Layer 2 (L2) traffic forwarding. If not specified, the connection defaults to Layer 3 (L3) traffic forwarding. * - 'IF_CROSS_SITE_NETWORK': Provisions the connection exclusively for Cross-Site Networking. * Note: 'MACSEC' is a legacy value for compatibility reasons and has the same effect as 'IF_MACSEC'. 'IF_MACSEC' is preferred. * Each value may be one of: `MACSEC`, `CROSS_SITE_NETWORK`, `IF_MACSEC`, `IF_L2_FORWARDING`. */ readonly requestedFeatures: pulumi.Output; /** * Target number of physical links in the link bundle, as requested by the customer. */ readonly requestedLinkCount: pulumi.Output; /** * Reserved for future use. */ readonly satisfiesPzs: pulumi.Output; /** * (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. */ readonly state: pulumi.Output; /** * A list of the URLs of all CrossSiteNetwork WireGroups configured to use this Interconnect. The Interconnect cannot be deleted if this list is non-empty. */ readonly wireGroups: pulumi.Output; /** * Create a Interconnect resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args: InterconnectArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering Interconnect resources. */ export interface InterconnectState { /** * (Optional, Beta) * Enable or disable the Application Aware Interconnect(AAI) feature on this interconnect. */ aaiEnabled?: pulumi.Input; /** * 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. */ adminEnabled?: pulumi.Input; /** * (Optional, Beta) * Configuration that enables Media Access Control security (MACsec) on the Cloud * Interconnect connection between Google and your on-premises router. * Structure is documented below. */ applicationAwareInterconnect?: pulumi.Input; /** * [Output Only] List of features that are available on this Interconnect connection based on the provisioned hardware and configuration. * Possible values include: * - 'IF_MACSEC': Indicates the Interconnect connection is provisioned on MACsec capable hardware ports. If this feature is not present, the connection does not support MACsec, and any attempt to enable it will fail. * - 'IF_L2_FORWARDING': Indicates the Interconnect connection can be used for Layer 2 (L2) traffic forwarding. If not present, the connection cannot be used with L2 forwarding attachments. * - 'IF_CROSS_SITE_NETWORK': Indicates the Interconnect connection is provisioned for Cross-Site Networking. * Note: 'MACSEC' is a legacy value and has the same meaning as 'IF_MACSEC'. */ availableFeatures?: pulumi.Input[]>; /** * A list of CircuitInfo objects, that describe the individual circuits in this LAG. * Structure is documented below. */ circuitInfos?: pulumi.Input[]>; /** * Creation timestamp in RFC3339 text format. */ creationTimestamp?: pulumi.Input; /** * Customer name, to put in the Letter of Authorization as the party authorized to request a * crossconnect. This field is required for Dedicated and Partner Interconnect, should not be specified * for cross-cloud interconnect. */ customerName?: pulumi.Input; /** * An optional description of this resource. Provide this property when you create the resource. */ description?: pulumi.Input; /** * All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services. */ effectiveLabels?: pulumi.Input<{ [key: string]: pulumi.Input; }>; /** * A list of outages expected for this Interconnect. * Structure is documented below. */ expectedOutages?: pulumi.Input[]>; /** * IP address configured on the Google side of the Interconnect link. * This can be used only for ping tests. */ googleIpAddress?: pulumi.Input; /** * Google reference ID to be used when raising support tickets with Google or otherwise to debug * backend connectivity issues. */ googleReferenceId?: pulumi.Input; /** * A list of the URLs of all InterconnectAttachments configured to use this Interconnect. */ interconnectAttachments?: pulumi.Input[]>; /** * URLs of InterconnectGroups that include this Interconnect. * Order is arbitrary and items are unique. */ interconnectGroups?: pulumi.Input[]>; /** * 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`. */ interconnectType?: pulumi.Input; /** * 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. */ labelFingerprint?: pulumi.Input; /** * 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 `effectiveLabels` for all of the labels present on the resource. */ labels?: pulumi.Input<{ [key: string]: pulumi.Input; }>; /** * 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. * - LINK_TYPE_ETHERNET_400G_LR4: A 400G Ethernet with LR4 optics * Possible values are: `LINK_TYPE_ETHERNET_10G_LR`, `LINK_TYPE_ETHERNET_100G_LR`, `LINK_TYPE_ETHERNET_400G_LR4`. */ linkType?: pulumi.Input; /** * URL of the InterconnectLocation object that represents where this connection is to be provisioned. * Specifies the location inside Google's Networks. */ location?: pulumi.Input; /** * 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?: pulumi.Input; /** * Enable or disable MACsec on this Interconnect connection. * MACsec enablement fails if the MACsec object is not specified. */ macsecEnabled?: pulumi.Input; /** * 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. */ name?: pulumi.Input; /** * 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. */ nocContactEmail?: pulumi.Input; /** * 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. */ operationalStatus?: pulumi.Input; /** * Additional params passed with the request, but not persisted as part of resource payload * Structure is documented below. */ params?: pulumi.Input; /** * 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. */ peerIpAddress?: pulumi.Input; /** * The ID of the project in which the resource belongs. * If it is not provided, the provider project is used. */ project?: pulumi.Input; /** * Number of links actually provisioned in this interconnect. */ provisionedLinkCount?: pulumi.Input; /** * The combination of labels configured directly on the resource * and default labels configured on the provider. */ pulumiLabels?: pulumi.Input<{ [key: string]: pulumi.Input; }>; /** * Indicates that this is a Cross-Cloud Interconnect. This field specifies the location outside * of Google's network that the interconnect is connected to. */ remoteLocation?: pulumi.Input; /** * List of features to request for this Interconnect connection. This field is only applicable during Interconnect creation and cannot be modified later. * Possible values include: * - 'IF_MACSEC': Provisions the connection on hardware ports that support MACsec (Media Access Control Security). If not specified, the system may allocate non-MACsec capable ports if available. * - 'IF_L2_FORWARDING': Provisions the connection for Layer 2 (L2) traffic forwarding. If not specified, the connection defaults to Layer 3 (L3) traffic forwarding. * - 'IF_CROSS_SITE_NETWORK': Provisions the connection exclusively for Cross-Site Networking. * Note: 'MACSEC' is a legacy value for compatibility reasons and has the same effect as 'IF_MACSEC'. 'IF_MACSEC' is preferred. * Each value may be one of: `MACSEC`, `CROSS_SITE_NETWORK`, `IF_MACSEC`, `IF_L2_FORWARDING`. */ requestedFeatures?: pulumi.Input[]>; /** * Target number of physical links in the link bundle, as requested by the customer. */ requestedLinkCount?: pulumi.Input; /** * Reserved for future use. */ satisfiesPzs?: pulumi.Input; /** * (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. */ state?: pulumi.Input; /** * A list of the URLs of all CrossSiteNetwork WireGroups configured to use this Interconnect. The Interconnect cannot be deleted if this list is non-empty. */ wireGroups?: pulumi.Input[]>; } /** * The set of arguments for constructing a Interconnect resource. */ export interface InterconnectArgs { /** * (Optional, Beta) * Enable or disable the Application Aware Interconnect(AAI) feature on this interconnect. */ aaiEnabled?: pulumi.Input; /** * 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. */ adminEnabled?: pulumi.Input; /** * (Optional, Beta) * Configuration that enables Media Access Control security (MACsec) on the Cloud * Interconnect connection between Google and your on-premises router. * Structure is documented below. */ applicationAwareInterconnect?: pulumi.Input; /** * Customer name, to put in the Letter of Authorization as the party authorized to request a * crossconnect. This field is required for Dedicated and Partner Interconnect, should not be specified * for cross-cloud interconnect. */ customerName?: pulumi.Input; /** * An optional description of this resource. Provide this property when you create the resource. */ description?: pulumi.Input; /** * 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`. */ interconnectType: pulumi.Input; /** * 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 `effectiveLabels` for all of the labels present on the resource. */ labels?: pulumi.Input<{ [key: string]: pulumi.Input; }>; /** * 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. * - LINK_TYPE_ETHERNET_400G_LR4: A 400G Ethernet with LR4 optics * Possible values are: `LINK_TYPE_ETHERNET_10G_LR`, `LINK_TYPE_ETHERNET_100G_LR`, `LINK_TYPE_ETHERNET_400G_LR4`. */ linkType: pulumi.Input; /** * URL of the InterconnectLocation object that represents where this connection is to be provisioned. * Specifies the location inside Google's Networks. */ location: pulumi.Input; /** * 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?: pulumi.Input; /** * Enable or disable MACsec on this Interconnect connection. * MACsec enablement fails if the MACsec object is not specified. */ macsecEnabled?: pulumi.Input; /** * 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. */ name?: pulumi.Input; /** * 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. */ nocContactEmail?: pulumi.Input; /** * Additional params passed with the request, but not persisted as part of resource payload * Structure is documented below. */ params?: pulumi.Input; /** * The ID of the project in which the resource belongs. * If it is not provided, the provider project is used. */ project?: pulumi.Input; /** * Indicates that this is a Cross-Cloud Interconnect. This field specifies the location outside * of Google's network that the interconnect is connected to. */ remoteLocation?: pulumi.Input; /** * List of features to request for this Interconnect connection. This field is only applicable during Interconnect creation and cannot be modified later. * Possible values include: * - 'IF_MACSEC': Provisions the connection on hardware ports that support MACsec (Media Access Control Security). If not specified, the system may allocate non-MACsec capable ports if available. * - 'IF_L2_FORWARDING': Provisions the connection for Layer 2 (L2) traffic forwarding. If not specified, the connection defaults to Layer 3 (L3) traffic forwarding. * - 'IF_CROSS_SITE_NETWORK': Provisions the connection exclusively for Cross-Site Networking. * Note: 'MACSEC' is a legacy value for compatibility reasons and has the same effect as 'IF_MACSEC'. 'IF_MACSEC' is preferred. * Each value may be one of: `MACSEC`, `CROSS_SITE_NETWORK`, `IF_MACSEC`, `IF_L2_FORWARDING`. */ requestedFeatures?: pulumi.Input[]>; /** * Target number of physical links in the link bundle, as requested by the customer. */ requestedLinkCount: pulumi.Input; }