Show / Hide Table of Contents

Class DrScanDetails

The Single Client Access Name (SCAN) details for Disaster recovery network.

Inheritance
object
DrScanDetails
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 DrScanDetails

Properties

Hostname

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

The Disaster recovery 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 Disaster recovery SCAN IP addresses. Three addresses should be provided.

Remarks

Required

ScanListenerPortTcp

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

The Disaster recovery SCAN TCPIP port. Default is 1521.

Remarks

Required

In this article
Back to top