ScanDetails¶
-
class
oci.database.models.
ScanDetails
(**kwargs)¶ Bases:
object
The Single Client Access Name (SCAN) details.
Methods
__init__
(**kwargs)Initializes a new ScanDetails object with values from keyword arguments. Attributes
hostname
[Required] Gets the hostname of this ScanDetails. ips
[Required] Gets the ips of this ScanDetails. port
[Required] Gets the port of this ScanDetails. -
__init__
(**kwargs)¶ Initializes a new ScanDetails object with values from keyword arguments. The following keyword arguments are supported (corresponding to the getters/setters of this class):
Parameters: - hostname (str) – The value to assign to the hostname property of this ScanDetails.
- port (int) – The value to assign to the port property of this ScanDetails.
- ips (list[str]) – The value to assign to the ips property of this ScanDetails.
-
hostname
¶ [Required] Gets the hostname of this ScanDetails. The SCAN hostname.
Returns: The hostname of this ScanDetails. Return type: str
-
ips
¶ [Required] Gets the ips of this ScanDetails. The list of SCAN IP addresses. Three addresses should be provided.
Returns: The ips of this ScanDetails. Return type: list[str]
-
port
¶ [Required] Gets the port of this ScanDetails. The SCAN port. Default is 1521.
Returns: The port of this ScanDetails. Return type: int
-