CloudClusterNetworkConfiguration¶
- 
class oci.database_management.models.CloudClusterNetworkConfiguration(**kwargs)¶
- Bases: - object- The details of a network address configuration in a cloud cluster. - Attributes - NETWORK_TYPE_AUTOCONFIG- A constant which can be used with the network_type property of a CloudClusterNetworkConfiguration. - NETWORK_TYPE_DHCP- A constant which can be used with the network_type property of a CloudClusterNetworkConfiguration. - NETWORK_TYPE_MIXED- A constant which can be used with the network_type property of a CloudClusterNetworkConfiguration. - NETWORK_TYPE_STATIC- A constant which can be used with the network_type property of a CloudClusterNetworkConfiguration. - network_number- Gets the network_number of this CloudClusterNetworkConfiguration. - network_type- Gets the network_type of this CloudClusterNetworkConfiguration. - subnet- Gets the subnet of this CloudClusterNetworkConfiguration. - Methods - __init__(**kwargs)- Initializes a new CloudClusterNetworkConfiguration object with values from keyword arguments. - 
NETWORK_TYPE_AUTOCONFIG= 'AUTOCONFIG'¶
- A constant which can be used with the network_type property of a CloudClusterNetworkConfiguration. This constant has a value of “AUTOCONFIG” 
 - 
NETWORK_TYPE_DHCP= 'DHCP'¶
- A constant which can be used with the network_type property of a CloudClusterNetworkConfiguration. This constant has a value of “DHCP” 
 - 
NETWORK_TYPE_MIXED= 'MIXED'¶
- A constant which can be used with the network_type property of a CloudClusterNetworkConfiguration. This constant has a value of “MIXED” 
 - 
NETWORK_TYPE_STATIC= 'STATIC'¶
- A constant which can be used with the network_type property of a CloudClusterNetworkConfiguration. This constant has a value of “STATIC” 
 - 
__init__(**kwargs)¶
- Initializes a new CloudClusterNetworkConfiguration object with values from keyword arguments. The following keyword arguments are supported (corresponding to the getters/setters of this class): - Parameters: - network_number (int) – The value to assign to the network_number property of this CloudClusterNetworkConfiguration.
- network_type (str) – The value to assign to the network_type property of this CloudClusterNetworkConfiguration. Allowed values for this property are: “AUTOCONFIG”, “DHCP”, “STATIC”, “MIXED”, ‘UNKNOWN_ENUM_VALUE’. Any unrecognized values returned by a service will be mapped to ‘UNKNOWN_ENUM_VALUE’.
- subnet (str) – The value to assign to the subnet property of this CloudClusterNetworkConfiguration.
 
 - 
network_number¶
- Gets the network_number of this CloudClusterNetworkConfiguration. The network number. - Returns: - The network_number of this CloudClusterNetworkConfiguration. - Return type: - int 
 - 
network_type¶
- Gets the network_type of this CloudClusterNetworkConfiguration. The network type. - Allowed values for this property are: “AUTOCONFIG”, “DHCP”, “STATIC”, “MIXED”, ‘UNKNOWN_ENUM_VALUE’. Any unrecognized values returned by a service will be mapped to ‘UNKNOWN_ENUM_VALUE’. - Returns: - The network_type of this CloudClusterNetworkConfiguration. - Return type: - str 
 - 
subnet¶
- Gets the subnet of this CloudClusterNetworkConfiguration. The subnet for the network. - Returns: - The subnet of this CloudClusterNetworkConfiguration. - Return type: - str 
 
-