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
Gets the port of this ScanDetails. scan_listener_port_tcp
Gets the scan_listener_port_tcp of this ScanDetails. scan_listener_port_tcp_ssl
Gets the scan_listener_port_tcp_ssl 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.
- scan_listener_port_tcp (int) – The value to assign to the scan_listener_port_tcp property of this ScanDetails.
- scan_listener_port_tcp_ssl (int) – The value to assign to the scan_listener_port_tcp_ssl 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
¶ Gets the port of this ScanDetails. Deprecated. This field is deprecated. You may use ‘scanListenerPortTcp’ to specify the port. The SCAN TCPIP port. Default is 1521.
Returns: The port of this ScanDetails. Return type: int
-
scan_listener_port_tcp
¶ Gets the scan_listener_port_tcp of this ScanDetails. The SCAN TCPIP port. Default is 1521.
Returns: The scan_listener_port_tcp of this ScanDetails. Return type: int
-
scan_listener_port_tcp_ssl
¶ Gets the scan_listener_port_tcp_ssl of this ScanDetails. The SCAN TCPIP SSL port. Default is 2484.
Returns: The scan_listener_port_tcp_ssl of this ScanDetails. Return type: int
-