HEX
Server: Apache/2.4.65 (Ubuntu)
System: Linux ielts-store-v2 6.8.0-1036-gcp #38~22.04.1-Ubuntu SMP Thu Aug 14 01:19:18 UTC 2025 x86_64
User: root (0)
PHP: 7.2.34-54+ubuntu20.04.1+deb.sury.org+1
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,
Upload Files
File: //snap/google-cloud-cli/current/lib/third_party/kubernetes/client/models/v1_lifecycle.py
# coding: utf-8
"""
    Kubernetes

    No description provided (generated by Swagger Codegen
    https://github.com/swagger-api/swagger-codegen)

    OpenAPI spec version: v1.14.4

    Generated by: https://github.com/swagger-api/swagger-codegen.git
"""

from pprint import pformat
from six import iteritems
import re


class V1Lifecycle(object):
  """
    NOTE: This class is auto generated by the swagger code generator program.
    Do not edit the class manually.
    """
  """
    Attributes:
      swagger_types (dict): The key is attribute name and the value is attribute
        type.
      attribute_map (dict): The key is attribute name and the value is json key
        in definition.
  """
  swagger_types = {'post_start': 'V1Handler', 'pre_stop': 'V1Handler'}

  attribute_map = {'post_start': 'postStart', 'pre_stop': 'preStop'}

  def __init__(self, post_start=None, pre_stop=None):
    """
        V1Lifecycle - a model defined in Swagger
        """

    self._post_start = None
    self._pre_stop = None
    self.discriminator = None

    if post_start is not None:
      self.post_start = post_start
    if pre_stop is not None:
      self.pre_stop = pre_stop

  @property
  def post_start(self):
    """
        Gets the post_start of this V1Lifecycle.
        PostStart is called immediately after a container is created. If the
        handler fails, the container is terminated and restarted according to
        its restart policy. Other management of the container blocks until the
        hook completes. More info:
        https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks

        :return: The post_start of this V1Lifecycle.
        :rtype: V1Handler
        """
    return self._post_start

  @post_start.setter
  def post_start(self, post_start):
    """
        Sets the post_start of this V1Lifecycle.
        PostStart is called immediately after a container is created. If the
        handler fails, the container is terminated and restarted according to
        its restart policy. Other management of the container blocks until the
        hook completes. More info:
        https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks

        :param post_start: The post_start of this V1Lifecycle.
        :type: V1Handler
        """

    self._post_start = post_start

  @property
  def pre_stop(self):
    """
        Gets the pre_stop of this V1Lifecycle.
        PreStop is called immediately before a container is terminated due to an
        API request or management event such as liveness probe failure,
        preemption, resource contention, etc. The handler is not called if the
        container crashes or exits. The reason for termination is passed to the
        handler. The Pod's termination grace period countdown begins before the
        PreStop hooked is executed. Regardless of the outcome of the handler,
        the container will eventually terminate within the Pod's termination
        grace period. Other management of the container blocks until the hook
        completes or until the termination grace period is reached. More info:
        https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks

        :return: The pre_stop of this V1Lifecycle.
        :rtype: V1Handler
        """
    return self._pre_stop

  @pre_stop.setter
  def pre_stop(self, pre_stop):
    """
        Sets the pre_stop of this V1Lifecycle.
        PreStop is called immediately before a container is terminated due to an
        API request or management event such as liveness probe failure,
        preemption, resource contention, etc. The handler is not called if the
        container crashes or exits. The reason for termination is passed to the
        handler. The Pod's termination grace period countdown begins before the
        PreStop hooked is executed. Regardless of the outcome of the handler,
        the container will eventually terminate within the Pod's termination
        grace period. Other management of the container blocks until the hook
        completes or until the termination grace period is reached. More info:
        https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks

        :param pre_stop: The pre_stop of this V1Lifecycle.
        :type: V1Handler
        """

    self._pre_stop = pre_stop

  def to_dict(self):
    """
        Returns the model properties as a dict
        """
    result = {}

    for attr, _ in iteritems(self.swagger_types):
      value = getattr(self, attr)
      if isinstance(value, list):
        result[attr] = list(
            map(lambda x: x.to_dict() if hasattr(x, 'to_dict') else x, value))
      elif hasattr(value, 'to_dict'):
        result[attr] = value.to_dict()
      elif isinstance(value, dict):
        result[attr] = dict(
            map(
                lambda item: (item[0], item[1].to_dict())
                if hasattr(item[1], 'to_dict') else item, value.items()))
      else:
        result[attr] = value

    return result

  def to_str(self):
    """
        Returns the string representation of the model
        """
    return pformat(self.to_dict())

  def __repr__(self):
    """
        For `print` and `pprint`
        """
    return self.to_str()

  def __eq__(self, other):
    """
        Returns true if both objects are equal
        """
    if not isinstance(other, V1Lifecycle):
      return False

    return self.__dict__ == other.__dict__

  def __ne__(self, other):
    """
        Returns true if both objects are not equal
        """
    return not self == other