CreatePoolDetails

class oci.data_flow.models.CreatePoolDetails(**kwargs)

Bases: object

The details required to create a pool.

Methods

__init__(**kwargs) Initializes a new CreatePoolDetails object with values from keyword arguments.

Attributes

compartment_id [Required] Gets the compartment_id of this CreatePoolDetails.
configurations [Required] Gets the configurations of this CreatePoolDetails.
defined_tags Gets the defined_tags of this CreatePoolDetails.
description Gets the description of this CreatePoolDetails.
display_name [Required] Gets the display_name of this CreatePoolDetails.
freeform_tags Gets the freeform_tags of this CreatePoolDetails.
idle_timeout_in_minutes Gets the idle_timeout_in_minutes of this CreatePoolDetails.
schedules Gets the schedules of this CreatePoolDetails.
__init__(**kwargs)

Initializes a new CreatePoolDetails object with values from keyword arguments. The following keyword arguments are supported (corresponding to the getters/setters of this class):

Parameters:
  • compartment_id (str) – The value to assign to the compartment_id property of this CreatePoolDetails.
  • display_name (str) – The value to assign to the display_name property of this CreatePoolDetails.
  • description (str) – The value to assign to the description property of this CreatePoolDetails.
  • configurations (list[oci.data_flow.models.PoolConfig]) – The value to assign to the configurations property of this CreatePoolDetails.
  • schedules (list[oci.data_flow.models.PoolSchedule]) – The value to assign to the schedules property of this CreatePoolDetails.
  • idle_timeout_in_minutes (int) – The value to assign to the idle_timeout_in_minutes property of this CreatePoolDetails.
  • freeform_tags (dict(str, str)) – The value to assign to the freeform_tags property of this CreatePoolDetails.
  • defined_tags (dict(str, dict(str, object))) – The value to assign to the defined_tags property of this CreatePoolDetails.
compartment_id

[Required] Gets the compartment_id of this CreatePoolDetails. The OCID of a compartment.

Returns:The compartment_id of this CreatePoolDetails.
Return type:str
configurations

[Required] Gets the configurations of this CreatePoolDetails. List of PoolConfig items.

Returns:The configurations of this CreatePoolDetails.
Return type:list[oci.data_flow.models.PoolConfig]
defined_tags

Gets the defined_tags of this CreatePoolDetails. Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {“Operations”: {“CostCenter”: “42”}}

Returns:The defined_tags of this CreatePoolDetails.
Return type:dict(str, dict(str, object))
description

Gets the description of this CreatePoolDetails. A user-friendly description. Avoid entering confidential information.

Returns:The description of this CreatePoolDetails.
Return type:str
display_name

[Required] Gets the display_name of this CreatePoolDetails. A user-friendly name. It does not have to be unique. Avoid entering confidential information.

Returns:The display_name of this CreatePoolDetails.
Return type:str
freeform_tags

Gets the freeform_tags of this CreatePoolDetails. Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {“Department”: “Finance”}

Returns:The freeform_tags of this CreatePoolDetails.
Return type:dict(str, str)
idle_timeout_in_minutes

Gets the idle_timeout_in_minutes of this CreatePoolDetails. Optional timeout value in minutes used to auto stop Pools. A Pool will be auto stopped after inactivity for this amount of time period. If value not set, pool will not be auto stopped auto.

Returns:The idle_timeout_in_minutes of this CreatePoolDetails.
Return type:int
schedules

Gets the schedules of this CreatePoolDetails. A list of schedules for pool to auto start and stop.

Returns:The schedules of this CreatePoolDetails.
Return type:list[oci.data_flow.models.PoolSchedule]