Show / Hide Table of Contents

Class ExternalClusterScanListenerConfiguration

The details of a SCAN listener in an external cluster.

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

Properties

NetworkNumber

Declaration
[JsonProperty(PropertyName = "networkNumber")]
public int? NetworkNumber { get; set; }
Property Value
Type Description
int?

The network number from which SCAN VIPs are obtained.

ScanName

Declaration
[JsonProperty(PropertyName = "scanName")]
public string ScanName { get; set; }
Property Value
Type Description
string

The name of the SCAN listener.

ScanPort

Declaration
[JsonProperty(PropertyName = "scanPort")]
public int? ScanPort { get; set; }
Property Value
Type Description
int?

The port number of the SCAN listener.

ScanProtocol

Declaration
[JsonProperty(PropertyName = "scanProtocol")]
[JsonConverter(typeof(ResponseEnumConverter))]
public ExternalClusterScanListenerConfiguration.ScanProtocolEnum? ScanProtocol { get; set; }
Property Value
Type Description
ExternalClusterScanListenerConfiguration.ScanProtocolEnum?

The protocol of the SCAN listener.

In this article
Back to top