kubernetes_asyncio.client.models.v1_pod_failure_policy_on_exit_codes_requirement module

Kubernetes

No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) # noqa: E501

The version of the OpenAPI document: v1.34.3 Generated by: https://openapi-generator.tech

class kubernetes_asyncio.client.models.v1_pod_failure_policy_on_exit_codes_requirement.V1PodFailurePolicyOnExitCodesRequirement(container_name=None, operator=None, values=None, local_vars_configuration=None)

Bases: object

NOTE: This class is auto generated by OpenAPI Generator. Ref: https://openapi-generator.tech

Do not edit the class manually.

attribute_map = {'container_name': 'containerName', 'operator': 'operator', 'values': 'values'}
property container_name

Gets the container_name of this V1PodFailurePolicyOnExitCodesRequirement. # noqa: E501

Restricts the check for exit codes to the container with the specified name. When null, the rule applies to all containers. When specified, it should match one the container or initContainer names in the pod template. # noqa: E501

Returns:

The container_name of this V1PodFailurePolicyOnExitCodesRequirement. # noqa: E501

Return type:

str

openapi_types = {'container_name': 'str', 'operator': 'str', 'values': 'list[int]'}
property operator

Gets the operator of this V1PodFailurePolicyOnExitCodesRequirement. # noqa: E501

Represents the relationship between the container exit code(s) and the specified values. Containers completed with success (exit code 0) are excluded from the requirement check. Possible values are: - In: the requirement is satisfied if at least one container exit code (might be multiple if there are multiple containers not restricted by the ‘containerName’ field) is in the set of specified values. - NotIn: the requirement is satisfied if at least one container exit code (might be multiple if there are multiple containers not restricted by the ‘containerName’ field) is not in the set of specified values. Additional values are considered to be added in the future. Clients should react to an unknown operator by assuming the requirement is not satisfied. # noqa: E501

Returns:

The operator of this V1PodFailurePolicyOnExitCodesRequirement. # noqa: E501

Return type:

str

to_dict(serialize=False)

Returns the model properties as a dict

to_str()

Returns the string representation of the model

property values

Gets the values of this V1PodFailurePolicyOnExitCodesRequirement. # noqa: E501

Specifies the set of values. Each returned container exit code (might be multiple in case of multiple containers) is checked against this set of values with respect to the operator. The list of values must be ordered and must not contain duplicates. Value ‘0’ cannot be used for the In operator. At least one element is required. At most 255 elements are allowed. # noqa: E501

Returns:

The values of this V1PodFailurePolicyOnExitCodesRequirement. # noqa: E501

Return type:

list[int]