Show / Hide Table of Contents

Class UpdateCrossConnectDetails

Update a CrossConnect

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

Properties

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

IsActive

Declaration
[JsonProperty(PropertyName = "isActive")]
public bool? IsActive { get; set; }
Property Value
Type Description
bool?

Set to true to activate the cross-connect. You activate it after the physical cabling is complete, and you've confirmed the cross-connect's light levels are good and your side of the interface is up. Activation indicates to Oracle that the physical connection is ready.
Example: true

MacsecProperties

Declaration
[JsonProperty(PropertyName = "macsecProperties")]
public UpdateMacsecProperties MacsecProperties { get; set; }
Property Value
Type Description
UpdateMacsecProperties
In this article
Back to top