Show / Hide Table of Contents

Class OdaPrivateEndpointScanProxy

Details pertaining to a scan proxy instance created for a scan listener FQDN/IPs

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

Properties

Id

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

The OCID of the ODA Private Endpoint Scan Proxy.

Remarks

Required

LifecycleState

Declaration
[JsonProperty(PropertyName = "lifecycleState")]
[JsonConverter(typeof(ResponseEnumConverter))]
public OdaPrivateEndpointScanProxy.LifecycleStateEnum? LifecycleState { get; set; }
Property Value
Type Description
OdaPrivateEndpointScanProxy.LifecycleStateEnum?

The current state of the ODA Private Endpoint Scan Proxy.

Protocol

Declaration
[Required(ErrorMessage = "Protocol is required.")]
[JsonProperty(PropertyName = "protocol")]
[JsonConverter(typeof(ResponseEnumConverter))]
public OdaPrivateEndpointScanProxy.ProtocolEnum? Protocol { get; set; }
Property Value
Type Description
OdaPrivateEndpointScanProxy.ProtocolEnum?

The protocol used for communication between client, scanProxy and RAC's scan listeners

Remarks

Required

ScanListenerInfos

Declaration
[Required(ErrorMessage = "ScanListenerInfos is required.")]
[JsonProperty(PropertyName = "scanListenerInfos")]
public List<ScanListenerInfo> ScanListenerInfos { get; set; }
Property Value
Type Description
List<ScanListenerInfo>

The FQDN/IPs and port information of customer's Real Application Cluster (RAC)'s SCAN listeners.

Remarks

Required

ScanListenerType

Declaration
[Required(ErrorMessage = "ScanListenerType is required.")]
[JsonProperty(PropertyName = "scanListenerType")]
[JsonConverter(typeof(ResponseEnumConverter))]
public OdaPrivateEndpointScanProxy.ScanListenerTypeEnum? ScanListenerType { get; set; }
Property Value
Type Description
OdaPrivateEndpointScanProxy.ScanListenerTypeEnum?

Type indicating whether Scan listener is specified by its FQDN or list of IPs

Remarks

Required

TimeCreated

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

When the resource was created. A date-time string as described in RFC 3339, section 14.29.

In this article
Back to top