Show / Hide Table of Contents

Class CrossConnect

For use with Oracle Cloud Infrastructure FastConnect. A cross-connect represents a physical connection between an existing network and Oracle. Customers who are colocated with Oracle in a FastConnect location create and use cross-connects. For more information, see FastConnect Overview.
Oracle recommends you create each cross-connect in a {@link CrossConnectGroup} so you can use link aggregation with the connection.
Note: If you're a provider who is setting up a physical connection to Oracle so customers can use FastConnect over the connection, be aware that your connection is modeled the same way as a colocated customer's (with CrossConnect and CrossConnectGroup objects, and so on).
To use any of the API operations, you must be authorized in an IAM policy. If you're not authorized, talk to an administrator. If you're an administrator who needs to write policies to give users access, see Getting Started with Policies.

Inheritance
object
CrossConnect
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.CoreService.Models
Assembly: OCI.DotNetSDK.Core.dll
Syntax
public class CrossConnect

Properties

CompartmentId

Declaration
[JsonProperty(PropertyName = "compartmentId")]
public string CompartmentId { get; set; }
Property Value
Type Description
string

The OCID of the compartment containing the cross-connect group.

CrossConnectGroupId

Declaration
[JsonProperty(PropertyName = "crossConnectGroupId")]
public string CrossConnectGroupId { get; set; }
Property Value
Type Description
string

The OCID of the cross-connect group this cross-connect belongs to (if any).

CustomerReferenceName

Declaration
[JsonProperty(PropertyName = "customerReferenceName")]
public string CustomerReferenceName { get; set; }
Property Value
Type Description
string

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

DefinedTags

Declaration
[JsonProperty(PropertyName = "definedTags")]
public Dictionary<string, Dictionary<string, object>> DefinedTags { get; set; }
Property Value
Type Description
Dictionary<string, Dictionary<string, object>>

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

Declaration
[JsonProperty(PropertyName = "displayName")]
public string DisplayName { get; set; }
Property Value
Type Description
string

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

FreeformTags

Declaration
[JsonProperty(PropertyName = "freeformTags")]
public Dictionary<string, string> FreeformTags { get; set; }
Property Value
Type Description
Dictionary<string, string>

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"}

Id

Declaration
[JsonProperty(PropertyName = "id")]
public string Id { get; set; }
Property Value
Type Description
string

The cross-connect's Oracle ID (OCID).

LifecycleState

Declaration
[JsonProperty(PropertyName = "lifecycleState")]
[JsonConverter(typeof(ResponseEnumConverter))]
public CrossConnect.LifecycleStateEnum? LifecycleState { get; set; }
Property Value
Type Description
CrossConnect.LifecycleStateEnum?

The cross-connect's current state.

LocationName

Declaration
[JsonProperty(PropertyName = "locationName")]
public string LocationName { get; set; }
Property Value
Type Description
string

The name of the FastConnect location where this cross-connect is installed.

MacsecProperties

Declaration
[JsonProperty(PropertyName = "macsecProperties")]
public MacsecProperties MacsecProperties { get; set; }
Property Value
Type Description
MacsecProperties

OciLogicalDeviceName

Declaration
[JsonProperty(PropertyName = "ociLogicalDeviceName")]
public string OciLogicalDeviceName { get; set; }
Property Value
Type Description
string

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

OciPhysicalDeviceName

Declaration
[JsonProperty(PropertyName = "ociPhysicalDeviceName")]
public string OciPhysicalDeviceName { get; set; }
Property Value
Type Description
string

The FastConnect device that terminates the physical connection.

PortName

Declaration
[JsonProperty(PropertyName = "portName")]
public string PortName { get; set; }
Property Value
Type Description
string

A string identifying the meet-me room port for this cross-connect.

PortSpeedShapeName

Declaration
[JsonProperty(PropertyName = "portSpeedShapeName")]
public string PortSpeedShapeName { get; set; }
Property Value
Type Description
string

The port speed for this cross-connect.
Example: 10 Gbps

TimeCreated

Declaration
[JsonProperty(PropertyName = "timeCreated")]
public DateTime? TimeCreated { get; set; }
Property Value
Type Description
DateTime?

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

In this article
Back to top