Show / Hide Table of Contents

Class LetterOfAuthority

The Letter of Authority for the cross-connect. You must submit this letter when requesting cabling for the cross-connect at the FastConnect location.

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

Properties

AuthorizedEntityName

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

The name of the entity authorized by this Letter of Authority.

CircuitType

Declaration
[JsonProperty(PropertyName = "circuitType")]
[JsonConverter(typeof(ResponseEnumConverter))]
public LetterOfAuthority.CircuitTypeEnum? CircuitType { get; set; }
Property Value
Type Description
LetterOfAuthority.CircuitTypeEnum?

The type of cross-connect fiber, termination, and optical specification.

CrossConnectId

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

The OCID of the cross-connect.

FacilityLocation

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

The address of the FastConnect location.

PortName

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

The meet-me room port for this cross-connect.

TimeExpires

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

The date and time when the Letter of Authority expires, in the format defined by RFC3339.

TimeIssued

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

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

In this article
Back to top