Skip to content

image_pull_policy

the jobq cluster workflow management tool backend

Backend service for the appliedAI infrastructure product

The version of the OpenAPI document: 0.1.0 Generated by OpenAPI Generator (https://openapi-generator.tech)

Do not edit the class manually.

ImagePullPolicy

Bases: str, Enum

ImagePullPolicy

Source code in client/src/openapi_client/models/image_pull_policy.py
class ImagePullPolicy(str, Enum):
    """
    ImagePullPolicy
    """

    """
    allowed enum values
    """
    ALWAYS = "Always"
    NEVER = "Never"
    IFNOTPRESENT = "IfNotPresent"

    @classmethod
    def from_json(cls, json_str: str) -> Self:
        """Create an instance of ImagePullPolicy from a JSON string"""
        return cls(json.loads(json_str))

from_json classmethod

from_json(json_str: str) -> Self

Create an instance of ImagePullPolicy from a JSON string

Source code in client/src/openapi_client/models/image_pull_policy.py
@classmethod
def from_json(cls, json_str: str) -> Self:
    """Create an instance of ImagePullPolicy from a JSON string"""
    return cls(json.loads(json_str))