Show / Hide Table of Contents

Class PrivateSourceScanHost

Private source Scan Hostname model.

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

Properties

Description

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

Description of private source scan host zone.

ScanHostname

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

Private Source Scan hostname. Ex: db01-scan.corp.example.com, prd-db01-scan.mycompany.com.

Remarks

Required

ScanPort

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

Private Source Scan host port. This is the source port where SCAN protocol will get connected (e.g. 1521).

Remarks

Required

In this article
Back to top