Show / Hide Table of Contents

Class PortInformation

Details of a single portInformation item include the PortNumber (an integer used as an identifier) and the PortType (this refers to either an enum value of Management Utility, Client Utility, or null)

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

Properties

PortNumber

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

The port number is a unique identifier which is typically used as the loadbalancer listener.

Remarks

Required

PortType

Declaration
[Required(ErrorMessage = "PortType is required.")]
[JsonProperty(PropertyName = "portType")]
[JsonConverter(typeof(ResponseEnumConverter))]
public PortInformation.PortTypeEnum? PortType { get; set; }
Property Value
Type Description
PortInformation.PortTypeEnum?

Port type associated for the port number. The two port type enums are CLIENTUTILITY and MANAGEMENTUTILITY. The CLIENTUTILITY enum corresponds to a port which is used by the client daemon. The MANAGEMENTUTILITY enum corresponds to a port used by user management utility.

Remarks

Required

In this article
Back to top