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)
Inherited Members
Namespace: Oci.KeymanagementService.Models
Assembly: OCI.DotNetSDK.Keymanagement.dll
Syntax
public class PortInformationProperties
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  | 
Remarks
Required