python/kubernetes/client/models/v1_persistent_volume_status.py
2022-02-14 14:12:02 -08:00

185 lines
7.2 KiB
Python

# coding: utf-8
"""
Kubernetes
No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) # noqa: E501
The version of the OpenAPI document: release-1.23
Generated by: https://openapi-generator.tech
"""
import pprint
import re # noqa: F401
import six
from kubernetes.client.configuration import Configuration
class V1PersistentVolumeStatus(object):
"""NOTE: This class is auto generated by OpenAPI Generator.
Ref: https://openapi-generator.tech
Do not edit the class manually.
"""
"""
Attributes:
openapi_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.
"""
openapi_types = {
'message': 'str',
'phase': 'str',
'reason': 'str'
}
attribute_map = {
'message': 'message',
'phase': 'phase',
'reason': 'reason'
}
def __init__(self, message=None, phase=None, reason=None, local_vars_configuration=None): # noqa: E501
"""V1PersistentVolumeStatus - a model defined in OpenAPI""" # noqa: E501
if local_vars_configuration is None:
local_vars_configuration = Configuration()
self.local_vars_configuration = local_vars_configuration
self._message = None
self._phase = None
self._reason = None
self.discriminator = None
if message is not None:
self.message = message
if phase is not None:
self.phase = phase
if reason is not None:
self.reason = reason
@property
def message(self):
"""Gets the message of this V1PersistentVolumeStatus. # noqa: E501
A human-readable message indicating details about why the volume is in this state. # noqa: E501
:return: The message of this V1PersistentVolumeStatus. # noqa: E501
:rtype: str
"""
return self._message
@message.setter
def message(self, message):
"""Sets the message of this V1PersistentVolumeStatus.
A human-readable message indicating details about why the volume is in this state. # noqa: E501
:param message: The message of this V1PersistentVolumeStatus. # noqa: E501
:type: str
"""
self._message = message
@property
def phase(self):
"""Gets the phase of this V1PersistentVolumeStatus. # noqa: E501
Phase indicates if a volume is available, bound to a claim, or released by a claim. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#phase Possible enum values: - `\"Available\"` used for PersistentVolumes that are not yet bound Available volumes are held by the binder and matched to PersistentVolumeClaims - `\"Bound\"` used for PersistentVolumes that are bound - `\"Failed\"` used for PersistentVolumes that failed to be correctly recycled or deleted after being released from a claim - `\"Pending\"` used for PersistentVolumes that are not available - `\"Released\"` used for PersistentVolumes where the bound PersistentVolumeClaim was deleted released volumes must be recycled before becoming available again this phase is used by the persistent volume claim binder to signal to another process to reclaim the resource # noqa: E501
:return: The phase of this V1PersistentVolumeStatus. # noqa: E501
:rtype: str
"""
return self._phase
@phase.setter
def phase(self, phase):
"""Sets the phase of this V1PersistentVolumeStatus.
Phase indicates if a volume is available, bound to a claim, or released by a claim. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#phase Possible enum values: - `\"Available\"` used for PersistentVolumes that are not yet bound Available volumes are held by the binder and matched to PersistentVolumeClaims - `\"Bound\"` used for PersistentVolumes that are bound - `\"Failed\"` used for PersistentVolumes that failed to be correctly recycled or deleted after being released from a claim - `\"Pending\"` used for PersistentVolumes that are not available - `\"Released\"` used for PersistentVolumes where the bound PersistentVolumeClaim was deleted released volumes must be recycled before becoming available again this phase is used by the persistent volume claim binder to signal to another process to reclaim the resource # noqa: E501
:param phase: The phase of this V1PersistentVolumeStatus. # noqa: E501
:type: str
"""
allowed_values = ["Available", "Bound", "Failed", "Pending", "Released"] # noqa: E501
if self.local_vars_configuration.client_side_validation and phase not in allowed_values: # noqa: E501
raise ValueError(
"Invalid value for `phase` ({0}), must be one of {1}" # noqa: E501
.format(phase, allowed_values)
)
self._phase = phase
@property
def reason(self):
"""Gets the reason of this V1PersistentVolumeStatus. # noqa: E501
Reason is a brief CamelCase string that describes any failure and is meant for machine parsing and tidy display in the CLI. # noqa: E501
:return: The reason of this V1PersistentVolumeStatus. # noqa: E501
:rtype: str
"""
return self._reason
@reason.setter
def reason(self, reason):
"""Sets the reason of this V1PersistentVolumeStatus.
Reason is a brief CamelCase string that describes any failure and is meant for machine parsing and tidy display in the CLI. # noqa: E501
:param reason: The reason of this V1PersistentVolumeStatus. # noqa: E501
:type: str
"""
self._reason = reason
def to_dict(self):
"""Returns the model properties as a dict"""
result = {}
for attr, _ in six.iteritems(self.openapi_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 pprint.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, V1PersistentVolumeStatus):
return False
return self.to_dict() == other.to_dict()
def __ne__(self, other):
"""Returns true if both objects are not equal"""
if not isinstance(other, V1PersistentVolumeStatus):
return True
return self.to_dict() != other.to_dict()