Show / Hide Table of Contents

Class ScanDetails

The Single Client Access Name (SCAN) details.

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

Properties

Hostname

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

The SCAN hostname.

Remarks

Required

Ips

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

The list of SCAN IP addresses. Three addresses should be provided.

Remarks

Required

Port

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

Deprecated. This field is deprecated. You may use 'scanListenerPortTcp' to specify the port. The SCAN TCPIP port. Default is 1521.

ScanListenerPortTcp

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

The SCAN TCPIP port. Default is 1521.

ScanListenerPortTcpSsl

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

The SCAN TCPIP SSL port. Default is 2484.

In this article
Back to top