CreateContainerCommandHealthCheckDetails

class oci.container_instances.models.CreateContainerCommandHealthCheckDetails(**kwargs)

Bases: oci.container_instances.models.create_container_health_check_details.CreateContainerHealthCheckDetails

Container Health Check Command type.

Attributes

FAILURE_ACTION_KILL str(object=’’) -> str
FAILURE_ACTION_NONE str(object=’’) -> str
HEALTH_CHECK_TYPE_COMMAND str(object=’’) -> str
HEALTH_CHECK_TYPE_HTTP str(object=’’) -> str
HEALTH_CHECK_TYPE_TCP str(object=’’) -> str
command [Required] Gets the command of this CreateContainerCommandHealthCheckDetails.
failure_action Gets the failure_action of this CreateContainerHealthCheckDetails.
failure_threshold Gets the failure_threshold of this CreateContainerHealthCheckDetails.
health_check_type [Required] Gets the health_check_type of this CreateContainerHealthCheckDetails.
initial_delay_in_seconds Gets the initial_delay_in_seconds of this CreateContainerHealthCheckDetails.
interval_in_seconds Gets the interval_in_seconds of this CreateContainerHealthCheckDetails.
name Gets the name of this CreateContainerHealthCheckDetails.
success_threshold Gets the success_threshold of this CreateContainerHealthCheckDetails.
timeout_in_seconds Gets the timeout_in_seconds of this CreateContainerHealthCheckDetails.

Methods

__init__(**kwargs) Initializes a new CreateContainerCommandHealthCheckDetails object with values from keyword arguments.
get_subtype(object_dictionary) Given the hash representation of a subtype of this class, use the info in the hash to return the class of the subtype.
FAILURE_ACTION_KILL = 'KILL'
FAILURE_ACTION_NONE = 'NONE'
HEALTH_CHECK_TYPE_COMMAND = 'COMMAND'
HEALTH_CHECK_TYPE_HTTP = 'HTTP'
HEALTH_CHECK_TYPE_TCP = 'TCP'
__init__(**kwargs)

Initializes a new CreateContainerCommandHealthCheckDetails object with values from keyword arguments. The default value of the health_check_type attribute of this class is COMMAND and it should not be changed. The following keyword arguments are supported (corresponding to the getters/setters of this class):

Parameters:
  • name (str) – The value to assign to the name property of this CreateContainerCommandHealthCheckDetails.
  • health_check_type (str) – The value to assign to the health_check_type property of this CreateContainerCommandHealthCheckDetails. Allowed values for this property are: “HTTP”, “TCP”, “COMMAND”
  • initial_delay_in_seconds (int) – The value to assign to the initial_delay_in_seconds property of this CreateContainerCommandHealthCheckDetails.
  • interval_in_seconds (int) – The value to assign to the interval_in_seconds property of this CreateContainerCommandHealthCheckDetails.
  • failure_threshold (int) – The value to assign to the failure_threshold property of this CreateContainerCommandHealthCheckDetails.
  • success_threshold (int) – The value to assign to the success_threshold property of this CreateContainerCommandHealthCheckDetails.
  • timeout_in_seconds (int) – The value to assign to the timeout_in_seconds property of this CreateContainerCommandHealthCheckDetails.
  • failure_action (str) – The value to assign to the failure_action property of this CreateContainerCommandHealthCheckDetails. Allowed values for this property are: “KILL”, “NONE”
  • command (list[str]) – The value to assign to the command property of this CreateContainerCommandHealthCheckDetails.
command

[Required] Gets the command of this CreateContainerCommandHealthCheckDetails. The list of strings that will be simplified to a single command for checking the status of the container.

Returns:The command of this CreateContainerCommandHealthCheckDetails.
Return type:list[str]
failure_action

Gets the failure_action of this CreateContainerHealthCheckDetails. The action will be triggered when the container health check fails. There are two types of action: KILL or NONE. The default action is KILL. If failure action is KILL, the container will be subject to the container restart policy.

Allowed values for this property are: “KILL”, “NONE”

Returns:The failure_action of this CreateContainerHealthCheckDetails.
Return type:str
failure_threshold

Gets the failure_threshold of this CreateContainerHealthCheckDetails. Number of consecutive failures at which we consider the check failed.

Returns:The failure_threshold of this CreateContainerHealthCheckDetails.
Return type:int
static get_subtype(object_dictionary)

Given the hash representation of a subtype of this class, use the info in the hash to return the class of the subtype.

health_check_type

[Required] Gets the health_check_type of this CreateContainerHealthCheckDetails. Container health check type.

Allowed values for this property are: “HTTP”, “TCP”, “COMMAND”

Returns:The health_check_type of this CreateContainerHealthCheckDetails.
Return type:str
initial_delay_in_seconds

Gets the initial_delay_in_seconds of this CreateContainerHealthCheckDetails. The initial delay in seconds before start checking container health status.

Returns:The initial_delay_in_seconds of this CreateContainerHealthCheckDetails.
Return type:int
interval_in_seconds

Gets the interval_in_seconds of this CreateContainerHealthCheckDetails. Number of seconds between two consecutive runs for checking container health.

Returns:The interval_in_seconds of this CreateContainerHealthCheckDetails.
Return type:int
name

Gets the name of this CreateContainerHealthCheckDetails. Health check name.

Returns:The name of this CreateContainerHealthCheckDetails.
Return type:str
success_threshold

Gets the success_threshold of this CreateContainerHealthCheckDetails. Number of consecutive successes at which we consider the check succeeded again after it was in failure state.

Returns:The success_threshold of this CreateContainerHealthCheckDetails.
Return type:int
timeout_in_seconds

Gets the timeout_in_seconds of this CreateContainerHealthCheckDetails. Length of waiting time in seconds before marking health check failed.

Returns:The timeout_in_seconds of this CreateContainerHealthCheckDetails.
Return type:int