Class CreateOdaPrivateEndpointScanProxyDetails
Properties that are required to create an ODA Private Endpoint Scan Proxy.
Inherited Members
Namespace: Oci.OdaService.Models
Assembly: OCI.DotNetSDK.Oda.dll
Syntax
public class CreateOdaPrivateEndpointScanProxyDetails
Properties
Protocol
Declaration
[Required(ErrorMessage = "Protocol is required.")]
[JsonProperty(PropertyName = "protocol")]
[JsonConverter(typeof(StringEnumConverter))]
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(StringEnumConverter))]
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