ExternalClusterVipConfiguration¶
- 
class oci.database_management.models.ExternalClusterVipConfiguration(**kwargs)¶
- Bases: - object- The details of the Virtual IP (VIP) address for a node in an external cluster. - Methods - __init__(**kwargs)- Initializes a new ExternalClusterVipConfiguration object with values from keyword arguments. - Attributes - address- Gets the address of this ExternalClusterVipConfiguration. - network_number- Gets the network_number of this ExternalClusterVipConfiguration. - node_name- Gets the node_name of this ExternalClusterVipConfiguration. - 
__init__(**kwargs)¶
- Initializes a new ExternalClusterVipConfiguration object with values from keyword arguments. The following keyword arguments are supported (corresponding to the getters/setters of this class): - Parameters: - node_name (str) – The value to assign to the node_name property of this ExternalClusterVipConfiguration.
- address (str) – The value to assign to the address property of this ExternalClusterVipConfiguration.
- network_number (int) – The value to assign to the network_number property of this ExternalClusterVipConfiguration.
 
 - 
address¶
- Gets the address of this ExternalClusterVipConfiguration. The VIP name or IP address. - Returns: - The address of this ExternalClusterVipConfiguration. - Return type: - str 
 - 
network_number¶
- Gets the network_number of this ExternalClusterVipConfiguration. The network number from which VIPs are obtained. - Returns: - The network_number of this ExternalClusterVipConfiguration. - Return type: - int 
 - 
node_name¶
- Gets the node_name of this ExternalClusterVipConfiguration. The name of the node with the VIP. - Returns: - The node_name of this ExternalClusterVipConfiguration. - Return type: - str 
 
-