lentiq.models.env_var module
# coding: utf-8 ####alex test """ """ import pprint import re # noqa: F401 import six from lentiq.models.env_var_source import EnvVarSource # noqa: F401,E501 class EnvVar(object): """ """ """ 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 = { 'annotations': 'dict(str, str)', 'description': 'str', 'name': 'str', 'value': 'str', 'value_from': 'EnvVarSource' } attribute_map = { 'annotations': 'annotations', 'description': 'description', 'name': 'name', 'value': 'value', 'value_from': 'valueFrom' } discriminator = None def __init__(self, annotations=None, description=None, name=None, value=None, value_from=None): # noqa: E501 """EnvVar - a model defined in Swagger""" # noqa: E501 self._annotations = None self._description = None self._name = None self._value = None self._value_from = None if annotations is not None: self.annotations = annotations if description is not None: self.description = description if name is not None: self.name = name if value is not None: self.value = value if value_from is not None: self.value_from = value_from @property def annotations(self): """Gets the annotations of this EnvVar. # noqa: E501 :return: The annotations of this EnvVar. # noqa: E501 :rtype: dict(str, str) """ return self._annotations @annotations.setter def annotations(self, annotations): """Sets the annotations of this EnvVar. :param annotations: The annotations of this EnvVar. # noqa: E501 :type: dict(str, str) """ self._annotations = annotations @property def description(self): """Gets the description of this EnvVar. # noqa: E501 :return: The description of this EnvVar. # noqa: E501 :rtype: str """ return self._description @description.setter def description(self, description): """Sets the description of this EnvVar. :param description: The description of this EnvVar. # noqa: E501 :type: str """ self._description = description @property def name(self): """Gets the name of this EnvVar. # noqa: E501 :return: The name of this EnvVar. # noqa: E501 :rtype: str """ return self._name @name.setter def name(self, name): """Sets the name of this EnvVar. :param name: The name of this EnvVar. # noqa: E501 :type: str """ self._name = name @property def value(self): """Gets the value of this EnvVar. # noqa: E501 :return: The value of this EnvVar. # noqa: E501 :rtype: str """ return self._value @value.setter def value(self, value): """Sets the value of this EnvVar. :param value: The value of this EnvVar. # noqa: E501 :type: str """ self._value = value @property def value_from(self): """Gets the value_from of this EnvVar. # noqa: E501 :return: The value_from of this EnvVar. # noqa: E501 :rtype: EnvVarSource """ return self._value_from @value_from.setter def value_from(self, value_from): """Sets the value_from of this EnvVar. :param value_from: The value_from of this EnvVar. # noqa: E501 :type: EnvVarSource """ self._value_from = value_from def to_dict(self): """Returns the model properties as a dict""" result = {} for attr, _ in six.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 if issubclass(EnvVar, dict): for key, value in self.items(): result[key] = 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, EnvVar): return False return self.__dict__ == other.__dict__ def __ne__(self, other): """Returns true if both objects are not equal""" return not self == other
Classes
class EnvVar
class EnvVar(object): """ """ """ 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 = { 'annotations': 'dict(str, str)', 'description': 'str', 'name': 'str', 'value': 'str', 'value_from': 'EnvVarSource' } attribute_map = { 'annotations': 'annotations', 'description': 'description', 'name': 'name', 'value': 'value', 'value_from': 'valueFrom' } discriminator = None def __init__(self, annotations=None, description=None, name=None, value=None, value_from=None): # noqa: E501 """EnvVar - a model defined in Swagger""" # noqa: E501 self._annotations = None self._description = None self._name = None self._value = None self._value_from = None if annotations is not None: self.annotations = annotations if description is not None: self.description = description if name is not None: self.name = name if value is not None: self.value = value if value_from is not None: self.value_from = value_from @property def annotations(self): """Gets the annotations of this EnvVar. # noqa: E501 :return: The annotations of this EnvVar. # noqa: E501 :rtype: dict(str, str) """ return self._annotations @annotations.setter def annotations(self, annotations): """Sets the annotations of this EnvVar. :param annotations: The annotations of this EnvVar. # noqa: E501 :type: dict(str, str) """ self._annotations = annotations @property def description(self): """Gets the description of this EnvVar. # noqa: E501 :return: The description of this EnvVar. # noqa: E501 :rtype: str """ return self._description @description.setter def description(self, description): """Sets the description of this EnvVar. :param description: The description of this EnvVar. # noqa: E501 :type: str """ self._description = description @property def name(self): """Gets the name of this EnvVar. # noqa: E501 :return: The name of this EnvVar. # noqa: E501 :rtype: str """ return self._name @name.setter def name(self, name): """Sets the name of this EnvVar. :param name: The name of this EnvVar. # noqa: E501 :type: str """ self._name = name @property def value(self): """Gets the value of this EnvVar. # noqa: E501 :return: The value of this EnvVar. # noqa: E501 :rtype: str """ return self._value @value.setter def value(self, value): """Sets the value of this EnvVar. :param value: The value of this EnvVar. # noqa: E501 :type: str """ self._value = value @property def value_from(self): """Gets the value_from of this EnvVar. # noqa: E501 :return: The value_from of this EnvVar. # noqa: E501 :rtype: EnvVarSource """ return self._value_from @value_from.setter def value_from(self, value_from): """Sets the value_from of this EnvVar. :param value_from: The value_from of this EnvVar. # noqa: E501 :type: EnvVarSource """ self._value_from = value_from def to_dict(self): """Returns the model properties as a dict""" result = {} for attr, _ in six.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 if issubclass(EnvVar, dict): for key, value in self.items(): result[key] = 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, EnvVar): return False return self.__dict__ == other.__dict__ def __ne__(self, other): """Returns true if both objects are not equal""" return not self == other
Ancestors (in MRO)
- EnvVar
- builtins.object
Class variables
var attribute_map
var discriminator
var swagger_types
Static methods
def __init__(
self, annotations=None, description=None, name=None, value=None, value_from=None)
EnvVar - a model defined in Swagger
def __init__(self, annotations=None, description=None, name=None, value=None, value_from=None): # noqa: E501 """EnvVar - a model defined in Swagger""" # noqa: E501 self._annotations = None self._description = None self._name = None self._value = None self._value_from = None if annotations is not None: self.annotations = annotations if description is not None: self.description = description if name is not None: self.name = name if value is not None: self.value = value if value_from is not None: self.value_from = value_from
def to_dict(
self)
Returns the model properties as a dict
def to_dict(self): """Returns the model properties as a dict""" result = {} for attr, _ in six.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 if issubclass(EnvVar, dict): for key, value in self.items(): result[key] = value return result
def to_str(
self)
Returns the string representation of the model
def to_str(self): """Returns the string representation of the model""" return pprint.pformat(self.to_dict())
Instance variables
var annotations
Gets the annotations of this EnvVar. # noqa: E501
:return: The annotations of this EnvVar. # noqa: E501 :rtype: dict(str, str)
var description
Gets the description of this EnvVar. # noqa: E501
:return: The description of this EnvVar. # noqa: E501 :rtype: str
var name
Gets the name of this EnvVar. # noqa: E501
:return: The name of this EnvVar. # noqa: E501 :rtype: str
var value
Gets the value of this EnvVar. # noqa: E501
:return: The value of this EnvVar. # noqa: E501 :rtype: str
var value_from
Gets the value_from of this EnvVar. # noqa: E501
:return: The value_from of this EnvVar. # noqa: E501 :rtype: EnvVarSource