Show / Hide Table of Contents

Class CreateCrossConnectDetails

Inheritance
object
CreateCrossConnectDetails
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 CreateCrossConnectDetails

Properties

CompartmentId

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

The OCID of the compartment to contain the cross-connect.

Remarks

Required

CrossConnectGroupId

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

The OCID of the cross-connect group to put this cross-connect in.

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.

FarCrossConnectOrCrossConnectGroupId

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

If you already have an existing cross-connect or cross-connect group at this FastConnect location, and you want this new cross-connect to be on a different router (for the purposes of redundancy), provide the OCID of that existing cross-connect or cross-connect group.

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

LocationName

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

The name of the FastConnect location where this cross-connect will be installed. To get a list of the available locations, see {@link #listCrossConnectLocations(ListCrossConnectLocationsRequest) listCrossConnectLocations}.
Example: CyrusOne, Chandler, AZ

Remarks

Required

MacsecProperties

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

NearCrossConnectOrCrossConnectGroupId

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

If you already have an existing cross-connect or cross-connect group at this FastConnect location, and you want this new cross-connect to be on the same router, provide the OCID of that existing cross-connect or cross-connect group.

PortSpeedShapeName

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

The port speed for this cross-connect. To get a list of the available port speeds, see {@link #listCrossconnectPortSpeedShapes(ListCrossconnectPortSpeedShapesRequest) listCrossconnectPortSpeedShapes}.
Example: 10 Gbps

Remarks

Required

In this article
Back to top