Show / Hide Table of Contents

Class CrossConnectPortSpeedShape

An individual port speed level for cross-connects.

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

Properties

Name

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

The name of the port speed shape.
Example: 10 Gbps

Remarks

Required

PortSpeedInGbps

Declaration
[Required(ErrorMessage = "PortSpeedInGbps is required.")]
[JsonProperty(PropertyName = "portSpeedInGbps")]
public int? PortSpeedInGbps { get; set; }
Property Value
Type Description
int?

The port speed in Gbps.
Example: 10

Remarks

Required

In this article
Back to top