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.DataccService.Models
Assembly: OCI.DotNetSDK.Datacc.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

In this article
Back to top