1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. Core
  5. CrossConnectGroup
Oracle Cloud Infrastructure v0.20.1 published on Tuesday, Jun 6, 2023 by Pulumi

oci.Core.CrossConnectGroup

Explore with Pulumi AI

oci logo
Oracle Cloud Infrastructure v0.20.1 published on Tuesday, Jun 6, 2023 by Pulumi

    This resource provides the Cross Connect Group resource in Oracle Cloud Infrastructure Core service.

    Creates a new cross-connect group to use with Oracle Cloud Infrastructure FastConnect. For more information, see FastConnect Overview.

    For the purposes of access control, you must provide the OCID of the compartment where you want the cross-connect group to reside. If you’re not sure which compartment to use, put the cross-connect group in the same compartment with your VCN. For more information about compartments and access control, see Overview of the IAM Service. For information about OCIDs, see Resource Identifiers.

    You may optionally specify a display name for the cross-connect group. It does not have to be unique, and you can change it. Avoid entering confidential information.

    Example Usage

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Oci = Pulumi.Oci;
    
    return await Deployment.RunAsync(() => 
    {
        var testCrossConnectGroup = new Oci.Core.CrossConnectGroup("testCrossConnectGroup", new()
        {
            CompartmentId = @var.Compartment_id,
            CustomerReferenceName = @var.Cross_connect_group_customer_reference_name,
            DefinedTags = 
            {
                { "Operations.CostCenter", "42" },
            },
            DisplayName = @var.Cross_connect_group_display_name,
            FreeformTags = 
            {
                { "Department", "Finance" },
            },
        });
    
    });
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-oci/sdk/go/oci/Core"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := Core.NewCrossConnectGroup(ctx, "testCrossConnectGroup", &Core.CrossConnectGroupArgs{
    			CompartmentId:         pulumi.Any(_var.Compartment_id),
    			CustomerReferenceName: pulumi.Any(_var.Cross_connect_group_customer_reference_name),
    			DefinedTags: pulumi.AnyMap{
    				"Operations.CostCenter": pulumi.Any("42"),
    			},
    			DisplayName: pulumi.Any(_var.Cross_connect_group_display_name),
    			FreeformTags: pulumi.AnyMap{
    				"Department": pulumi.Any("Finance"),
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.oci.Core.CrossConnectGroup;
    import com.pulumi.oci.Core.CrossConnectGroupArgs;
    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) {
            var testCrossConnectGroup = new CrossConnectGroup("testCrossConnectGroup", CrossConnectGroupArgs.builder()        
                .compartmentId(var_.compartment_id())
                .customerReferenceName(var_.cross_connect_group_customer_reference_name())
                .definedTags(Map.of("Operations.CostCenter", "42"))
                .displayName(var_.cross_connect_group_display_name())
                .freeformTags(Map.of("Department", "Finance"))
                .build());
    
        }
    }
    
    import pulumi
    import pulumi_oci as oci
    
    test_cross_connect_group = oci.core.CrossConnectGroup("testCrossConnectGroup",
        compartment_id=var["compartment_id"],
        customer_reference_name=var["cross_connect_group_customer_reference_name"],
        defined_tags={
            "Operations.CostCenter": "42",
        },
        display_name=var["cross_connect_group_display_name"],
        freeform_tags={
            "Department": "Finance",
        })
    
    import * as pulumi from "@pulumi/pulumi";
    import * as oci from "@pulumi/oci";
    
    const testCrossConnectGroup = new oci.core.CrossConnectGroup("testCrossConnectGroup", {
        compartmentId: _var.compartment_id,
        customerReferenceName: _var.cross_connect_group_customer_reference_name,
        definedTags: {
            "Operations.CostCenter": "42",
        },
        displayName: _var.cross_connect_group_display_name,
        freeformTags: {
            Department: "Finance",
        },
    });
    
    resources:
      testCrossConnectGroup:
        type: oci:Core:CrossConnectGroup
        properties:
          #Required
          compartmentId: ${var.compartment_id}
          #Optional
          customerReferenceName: ${var.cross_connect_group_customer_reference_name}
          definedTags:
            Operations.CostCenter: '42'
          displayName: ${var.cross_connect_group_display_name}
          freeformTags:
            Department: Finance
    

    Create CrossConnectGroup Resource

    new CrossConnectGroup(name: string, args: CrossConnectGroupArgs, opts?: CustomResourceOptions);
    @overload
    def CrossConnectGroup(resource_name: str,
                          opts: Optional[ResourceOptions] = None,
                          compartment_id: Optional[str] = None,
                          customer_reference_name: Optional[str] = None,
                          defined_tags: Optional[Mapping[str, Any]] = None,
                          display_name: Optional[str] = None,
                          freeform_tags: Optional[Mapping[str, Any]] = None,
                          macsec_properties: Optional[_core.CrossConnectGroupMacsecPropertiesArgs] = None)
    @overload
    def CrossConnectGroup(resource_name: str,
                          args: CrossConnectGroupArgs,
                          opts: Optional[ResourceOptions] = None)
    func NewCrossConnectGroup(ctx *Context, name string, args CrossConnectGroupArgs, opts ...ResourceOption) (*CrossConnectGroup, error)
    public CrossConnectGroup(string name, CrossConnectGroupArgs args, CustomResourceOptions? opts = null)
    public CrossConnectGroup(String name, CrossConnectGroupArgs args)
    public CrossConnectGroup(String name, CrossConnectGroupArgs args, CustomResourceOptions options)
    
    type: oci:Core:CrossConnectGroup
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    name string
    The unique name of the resource.
    args CrossConnectGroupArgs
    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 CrossConnectGroupArgs
    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 CrossConnectGroupArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args CrossConnectGroupArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args CrossConnectGroupArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    CrossConnectGroup 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 CrossConnectGroup resource accepts the following input properties:

    CompartmentId string

    (Updatable) The OCID of the compartment to contain the cross-connect group.

    CustomerReferenceName string

    (Updatable) A reference name or identifier for the physical fiber connection that this cross-connect group uses.

    DefinedTags Dictionary<string, object>

    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}

    DisplayName string

    (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.

    FreeformTags Dictionary<string, object>

    (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    MacsecProperties CrossConnectGroupMacsecPropertiesArgs

    Properties used for MACsec (if capable).

    CompartmentId string

    (Updatable) The OCID of the compartment to contain the cross-connect group.

    CustomerReferenceName string

    (Updatable) A reference name or identifier for the physical fiber connection that this cross-connect group uses.

    DefinedTags map[string]interface{}

    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}

    DisplayName string

    (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.

    FreeformTags map[string]interface{}

    (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    MacsecProperties CrossConnectGroupMacsecPropertiesArgs

    Properties used for MACsec (if capable).

    compartmentId String

    (Updatable) The OCID of the compartment to contain the cross-connect group.

    customerReferenceName String

    (Updatable) A reference name or identifier for the physical fiber connection that this cross-connect group uses.

    definedTags Map<String,Object>

    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}

    displayName String

    (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.

    freeformTags Map<String,Object>

    (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    macsecProperties CrossConnectGroupMacsecPropertiesArgs

    Properties used for MACsec (if capable).

    compartmentId string

    (Updatable) The OCID of the compartment to contain the cross-connect group.

    customerReferenceName string

    (Updatable) A reference name or identifier for the physical fiber connection that this cross-connect group uses.

    definedTags {[key: string]: any}

    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}

    displayName string

    (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.

    freeformTags {[key: string]: any}

    (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    macsecProperties CrossConnectGroupMacsecPropertiesArgs

    Properties used for MACsec (if capable).

    compartment_id str

    (Updatable) The OCID of the compartment to contain the cross-connect group.

    customer_reference_name str

    (Updatable) A reference name or identifier for the physical fiber connection that this cross-connect group uses.

    defined_tags Mapping[str, Any]

    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}

    display_name str

    (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.

    freeform_tags Mapping[str, Any]

    (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    macsec_properties CrossConnectGroupMacsecPropertiesArgs

    Properties used for MACsec (if capable).

    compartmentId String

    (Updatable) The OCID of the compartment to contain the cross-connect group.

    customerReferenceName String

    (Updatable) A reference name or identifier for the physical fiber connection that this cross-connect group uses.

    definedTags Map<Any>

    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}

    displayName String

    (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.

    freeformTags Map<Any>

    (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    macsecProperties Property Map

    Properties used for MACsec (if capable).

    Outputs

    All input properties are implicitly available as output properties. Additionally, the CrossConnectGroup resource produces the following output properties:

    Id string

    The provider-assigned unique ID for this managed resource.

    OciLogicalDeviceName string

    The FastConnect device that terminates the logical connection. This device might be different than the device that terminates the physical connection.

    OciPhysicalDeviceName string

    The FastConnect device that terminates the physical connection.

    State string

    The cross-connect group's current state.

    TimeCreated string

    The date and time the cross-connect group was created, in the format defined by RFC3339. Example: 2016-08-25T21:10:29.600Z

    Id string

    The provider-assigned unique ID for this managed resource.

    OciLogicalDeviceName string

    The FastConnect device that terminates the logical connection. This device might be different than the device that terminates the physical connection.

    OciPhysicalDeviceName string

    The FastConnect device that terminates the physical connection.

    State string

    The cross-connect group's current state.

    TimeCreated string

    The date and time the cross-connect group was created, in the format defined by RFC3339. Example: 2016-08-25T21:10:29.600Z

    id String

    The provider-assigned unique ID for this managed resource.

    ociLogicalDeviceName String

    The FastConnect device that terminates the logical connection. This device might be different than the device that terminates the physical connection.

    ociPhysicalDeviceName String

    The FastConnect device that terminates the physical connection.

    state String

    The cross-connect group's current state.

    timeCreated String

    The date and time the cross-connect group was created, in the format defined by RFC3339. Example: 2016-08-25T21:10:29.600Z

    id string

    The provider-assigned unique ID for this managed resource.

    ociLogicalDeviceName string

    The FastConnect device that terminates the logical connection. This device might be different than the device that terminates the physical connection.

    ociPhysicalDeviceName string

    The FastConnect device that terminates the physical connection.

    state string

    The cross-connect group's current state.

    timeCreated string

    The date and time the cross-connect group was created, in the format defined by RFC3339. Example: 2016-08-25T21:10:29.600Z

    id str

    The provider-assigned unique ID for this managed resource.

    oci_logical_device_name str

    The FastConnect device that terminates the logical connection. This device might be different than the device that terminates the physical connection.

    oci_physical_device_name str

    The FastConnect device that terminates the physical connection.

    state str

    The cross-connect group's current state.

    time_created str

    The date and time the cross-connect group was created, in the format defined by RFC3339. Example: 2016-08-25T21:10:29.600Z

    id String

    The provider-assigned unique ID for this managed resource.

    ociLogicalDeviceName String

    The FastConnect device that terminates the logical connection. This device might be different than the device that terminates the physical connection.

    ociPhysicalDeviceName String

    The FastConnect device that terminates the physical connection.

    state String

    The cross-connect group's current state.

    timeCreated String

    The date and time the cross-connect group was created, in the format defined by RFC3339. Example: 2016-08-25T21:10:29.600Z

    Look up Existing CrossConnectGroup Resource

    Get an existing CrossConnectGroup 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?: CrossConnectGroupState, opts?: CustomResourceOptions): CrossConnectGroup
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            compartment_id: Optional[str] = None,
            customer_reference_name: Optional[str] = None,
            defined_tags: Optional[Mapping[str, Any]] = None,
            display_name: Optional[str] = None,
            freeform_tags: Optional[Mapping[str, Any]] = None,
            macsec_properties: Optional[_core.CrossConnectGroupMacsecPropertiesArgs] = None,
            oci_logical_device_name: Optional[str] = None,
            oci_physical_device_name: Optional[str] = None,
            state: Optional[str] = None,
            time_created: Optional[str] = None) -> CrossConnectGroup
    func GetCrossConnectGroup(ctx *Context, name string, id IDInput, state *CrossConnectGroupState, opts ...ResourceOption) (*CrossConnectGroup, error)
    public static CrossConnectGroup Get(string name, Input<string> id, CrossConnectGroupState? state, CustomResourceOptions? opts = null)
    public static CrossConnectGroup get(String name, Output<String> id, CrossConnectGroupState 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.
    The following state arguments are supported:
    CompartmentId string

    (Updatable) The OCID of the compartment to contain the cross-connect group.

    CustomerReferenceName string

    (Updatable) A reference name or identifier for the physical fiber connection that this cross-connect group uses.

    DefinedTags Dictionary<string, object>

    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}

    DisplayName string

    (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.

    FreeformTags Dictionary<string, object>

    (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    MacsecProperties CrossConnectGroupMacsecPropertiesArgs

    Properties used for MACsec (if capable).

    OciLogicalDeviceName string

    The FastConnect device that terminates the logical connection. This device might be different than the device that terminates the physical connection.

    OciPhysicalDeviceName string

    The FastConnect device that terminates the physical connection.

    State string

    The cross-connect group's current state.

    TimeCreated string

    The date and time the cross-connect group was created, in the format defined by RFC3339. Example: 2016-08-25T21:10:29.600Z

    CompartmentId string

    (Updatable) The OCID of the compartment to contain the cross-connect group.

    CustomerReferenceName string

    (Updatable) A reference name or identifier for the physical fiber connection that this cross-connect group uses.

    DefinedTags map[string]interface{}

    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}

    DisplayName string

    (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.

    FreeformTags map[string]interface{}

    (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    MacsecProperties CrossConnectGroupMacsecPropertiesArgs

    Properties used for MACsec (if capable).

    OciLogicalDeviceName string

    The FastConnect device that terminates the logical connection. This device might be different than the device that terminates the physical connection.

    OciPhysicalDeviceName string

    The FastConnect device that terminates the physical connection.

    State string

    The cross-connect group's current state.

    TimeCreated string

    The date and time the cross-connect group was created, in the format defined by RFC3339. Example: 2016-08-25T21:10:29.600Z

    compartmentId String

    (Updatable) The OCID of the compartment to contain the cross-connect group.

    customerReferenceName String

    (Updatable) A reference name or identifier for the physical fiber connection that this cross-connect group uses.

    definedTags Map<String,Object>

    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}

    displayName String

    (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.

    freeformTags Map<String,Object>

    (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    macsecProperties CrossConnectGroupMacsecPropertiesArgs

    Properties used for MACsec (if capable).

    ociLogicalDeviceName String

    The FastConnect device that terminates the logical connection. This device might be different than the device that terminates the physical connection.

    ociPhysicalDeviceName String

    The FastConnect device that terminates the physical connection.

    state String

    The cross-connect group's current state.

    timeCreated String

    The date and time the cross-connect group was created, in the format defined by RFC3339. Example: 2016-08-25T21:10:29.600Z

    compartmentId string

    (Updatable) The OCID of the compartment to contain the cross-connect group.

    customerReferenceName string

    (Updatable) A reference name or identifier for the physical fiber connection that this cross-connect group uses.

    definedTags {[key: string]: any}

    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}

    displayName string

    (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.

    freeformTags {[key: string]: any}

    (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    macsecProperties CrossConnectGroupMacsecPropertiesArgs

    Properties used for MACsec (if capable).

    ociLogicalDeviceName string

    The FastConnect device that terminates the logical connection. This device might be different than the device that terminates the physical connection.

    ociPhysicalDeviceName string

    The FastConnect device that terminates the physical connection.

    state string

    The cross-connect group's current state.

    timeCreated string

    The date and time the cross-connect group was created, in the format defined by RFC3339. Example: 2016-08-25T21:10:29.600Z

    compartment_id str

    (Updatable) The OCID of the compartment to contain the cross-connect group.

    customer_reference_name str

    (Updatable) A reference name or identifier for the physical fiber connection that this cross-connect group uses.

    defined_tags Mapping[str, Any]

    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}

    display_name str

    (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.

    freeform_tags Mapping[str, Any]

    (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    macsec_properties CrossConnectGroupMacsecPropertiesArgs

    Properties used for MACsec (if capable).

    oci_logical_device_name str

    The FastConnect device that terminates the logical connection. This device might be different than the device that terminates the physical connection.

    oci_physical_device_name str

    The FastConnect device that terminates the physical connection.

    state str

    The cross-connect group's current state.

    time_created str

    The date and time the cross-connect group was created, in the format defined by RFC3339. Example: 2016-08-25T21:10:29.600Z

    compartmentId String

    (Updatable) The OCID of the compartment to contain the cross-connect group.

    customerReferenceName String

    (Updatable) A reference name or identifier for the physical fiber connection that this cross-connect group uses.

    definedTags Map<Any>

    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}

    displayName String

    (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.

    freeformTags Map<Any>

    (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    macsecProperties Property Map

    Properties used for MACsec (if capable).

    ociLogicalDeviceName String

    The FastConnect device that terminates the logical connection. This device might be different than the device that terminates the physical connection.

    ociPhysicalDeviceName String

    The FastConnect device that terminates the physical connection.

    state String

    The cross-connect group's current state.

    timeCreated String

    The date and time the cross-connect group was created, in the format defined by RFC3339. Example: 2016-08-25T21:10:29.600Z

    Supporting Types

    CrossConnectGroupMacsecProperties

    State string

    The cross-connect group's current state.

    EncryptionCipher string

    Type of encryption cipher suite to use for the MACsec connection.

    PrimaryKey CrossConnectGroupMacsecPropertiesPrimaryKey

    An object defining the Secrets-in-Vault OCIDs representing the MACsec key.

    State string

    The cross-connect group's current state.

    EncryptionCipher string

    Type of encryption cipher suite to use for the MACsec connection.

    PrimaryKey CrossConnectGroupMacsecPropertiesPrimaryKey

    An object defining the Secrets-in-Vault OCIDs representing the MACsec key.

    state String

    The cross-connect group's current state.

    encryptionCipher String

    Type of encryption cipher suite to use for the MACsec connection.

    primaryKey CrossConnectGroupMacsecPropertiesPrimaryKey

    An object defining the Secrets-in-Vault OCIDs representing the MACsec key.

    state string

    The cross-connect group's current state.

    encryptionCipher string

    Type of encryption cipher suite to use for the MACsec connection.

    primaryKey CrossConnectGroupMacsecPropertiesPrimaryKey

    An object defining the Secrets-in-Vault OCIDs representing the MACsec key.

    state str

    The cross-connect group's current state.

    encryption_cipher str

    Type of encryption cipher suite to use for the MACsec connection.

    primary_key CrossConnectGroupMacsecPropertiesPrimaryKey

    An object defining the Secrets-in-Vault OCIDs representing the MACsec key.

    state String

    The cross-connect group's current state.

    encryptionCipher String

    Type of encryption cipher suite to use for the MACsec connection.

    primaryKey Property Map

    An object defining the Secrets-in-Vault OCIDs representing the MACsec key.

    CrossConnectGroupMacsecPropertiesPrimaryKey

    ConnectivityAssociationKeySecretId string

    Secret OCID containing the Connectivity Association Key (CAK) of this MACsec key.

    ConnectivityAssociationNameSecretId string

    Secret OCID containing the Connectivity association Key Name (CKN) of this MACsec key.

    ConnectivityAssociationKeySecretVersion string

    The secret version of the connectivityAssociationKey secret in Vault.

    ConnectivityAssociationNameSecretVersion string

    The secret version of the connectivity association name secret in Vault.

    ConnectivityAssociationKeySecretId string

    Secret OCID containing the Connectivity Association Key (CAK) of this MACsec key.

    ConnectivityAssociationNameSecretId string

    Secret OCID containing the Connectivity association Key Name (CKN) of this MACsec key.

    ConnectivityAssociationKeySecretVersion string

    The secret version of the connectivityAssociationKey secret in Vault.

    ConnectivityAssociationNameSecretVersion string

    The secret version of the connectivity association name secret in Vault.

    connectivityAssociationKeySecretId String

    Secret OCID containing the Connectivity Association Key (CAK) of this MACsec key.

    connectivityAssociationNameSecretId String

    Secret OCID containing the Connectivity association Key Name (CKN) of this MACsec key.

    connectivityAssociationKeySecretVersion String

    The secret version of the connectivityAssociationKey secret in Vault.

    connectivityAssociationNameSecretVersion String

    The secret version of the connectivity association name secret in Vault.

    connectivityAssociationKeySecretId string

    Secret OCID containing the Connectivity Association Key (CAK) of this MACsec key.

    connectivityAssociationNameSecretId string

    Secret OCID containing the Connectivity association Key Name (CKN) of this MACsec key.

    connectivityAssociationKeySecretVersion string

    The secret version of the connectivityAssociationKey secret in Vault.

    connectivityAssociationNameSecretVersion string

    The secret version of the connectivity association name secret in Vault.

    connectivity_association_key_secret_id str

    Secret OCID containing the Connectivity Association Key (CAK) of this MACsec key.

    connectivity_association_name_secret_id str

    Secret OCID containing the Connectivity association Key Name (CKN) of this MACsec key.

    connectivity_association_key_secret_version str

    The secret version of the connectivityAssociationKey secret in Vault.

    connectivity_association_name_secret_version str

    The secret version of the connectivity association name secret in Vault.

    connectivityAssociationKeySecretId String

    Secret OCID containing the Connectivity Association Key (CAK) of this MACsec key.

    connectivityAssociationNameSecretId String

    Secret OCID containing the Connectivity association Key Name (CKN) of this MACsec key.

    connectivityAssociationKeySecretVersion String

    The secret version of the connectivityAssociationKey secret in Vault.

    connectivityAssociationNameSecretVersion String

    The secret version of the connectivity association name secret in Vault.

    Import

    CrossConnectGroups can be imported using the id, e.g.

     $ pulumi import oci:Core/crossConnectGroup:CrossConnectGroup test_cross_connect_group "id"
    

    Package Details

    Repository
    oci pulumi/pulumi-oci
    License
    Apache-2.0
    Notes

    This Pulumi package is based on the oci Terraform Provider.

    oci logo
    Oracle Cloud Infrastructure v0.20.1 published on Tuesday, Jun 6, 2023 by Pulumi