NodePoolNodeConfigDetails¶
-
class
oci.container_engine.models.
NodePoolNodeConfigDetails
(**kwargs)¶ Bases:
object
The size and placement configuration of nodes in the node pool.
Methods
__init__
(**kwargs)Initializes a new NodePoolNodeConfigDetails object with values from keyword arguments. Attributes
placement_configs
Gets the placement_configs of this NodePoolNodeConfigDetails. size
Gets the size of this NodePoolNodeConfigDetails. -
__init__
(**kwargs)¶ Initializes a new NodePoolNodeConfigDetails object with values from keyword arguments. The following keyword arguments are supported (corresponding to the getters/setters of this class):
Parameters: - size (int) – The value to assign to the size property of this NodePoolNodeConfigDetails.
- placement_configs (list[oci.container_engine.models.NodePoolPlacementConfigDetails]) – The value to assign to the placement_configs property of this NodePoolNodeConfigDetails.
-
placement_configs
¶ Gets the placement_configs of this NodePoolNodeConfigDetails. The placement configurations for the node pool. Provide one placement configuration for each availability domain in which you intend to launch a node.
To use the node pool with a regional subnet, provide a placement configuration for each availability domain, and include the regional subnet in each placement configuration.
Returns: The placement_configs of this NodePoolNodeConfigDetails. Return type: list[oci.container_engine.models.NodePoolPlacementConfigDetails]
-
size
¶ Gets the size of this NodePoolNodeConfigDetails. The number of nodes in the node pool.
Returns: The size of this NodePoolNodeConfigDetails. Return type: int
-