# coding: utf-8 """ Pulp 3 API Fetch, Upload, Organize, and Distribute Software Packages # noqa: E501 The version of the OpenAPI document: v3 Contact: pulp-list@redhat.com Generated by: https://openapi-generator.tech """ import pprint import re # noqa: F401 import six from pulpcore.client.pulp_ansible.configuration import Configuration class CollectionOneShot(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 = { 'file': 'file', 'sha256': 'str', 'expected_namespace': 'str', 'expected_name': 'str', 'expected_version': 'str' } attribute_map = { 'file': 'file', 'sha256': 'sha256', 'expected_namespace': 'expected_namespace', 'expected_name': 'expected_name', 'expected_version': 'expected_version' } def __init__(self, file=None, sha256=None, expected_namespace=None, expected_name=None, expected_version=None, local_vars_configuration=None): # noqa: E501 """CollectionOneShot - 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._file = None self._sha256 = None self._expected_namespace = None self._expected_name = None self._expected_version = None self.discriminator = None self.file = file if sha256 is not None: self.sha256 = sha256 if expected_namespace is not None: self.expected_namespace = expected_namespace if expected_name is not None: self.expected_name = expected_name if expected_version is not None: self.expected_version = expected_version @property def file(self): """Gets the file of this CollectionOneShot. # noqa: E501 The Collection tarball. # noqa: E501 :return: The file of this CollectionOneShot. # noqa: E501 :rtype: file """ return self._file @file.setter def file(self, file): """Sets the file of this CollectionOneShot. The Collection tarball. # noqa: E501 :param file: The file of this CollectionOneShot. # noqa: E501 :type: file """ if self.local_vars_configuration.client_side_validation and file is None: # noqa: E501 raise ValueError("Invalid value for `file`, must not be `None`") # noqa: E501 self._file = file @property def sha256(self): """Gets the sha256 of this CollectionOneShot. # noqa: E501 An optional sha256 checksum of the uploaded file. # noqa: E501 :return: The sha256 of this CollectionOneShot. # noqa: E501 :rtype: str """ return self._sha256 @sha256.setter def sha256(self, sha256): """Sets the sha256 of this CollectionOneShot. An optional sha256 checksum of the uploaded file. # noqa: E501 :param sha256: The sha256 of this CollectionOneShot. # noqa: E501 :type: str """ self._sha256 = sha256 @property def expected_namespace(self): """Gets the expected_namespace of this CollectionOneShot. # noqa: E501 The expected 'namespace' of the Collection to be verified against the metadata during import. # noqa: E501 :return: The expected_namespace of this CollectionOneShot. # noqa: E501 :rtype: str """ return self._expected_namespace @expected_namespace.setter def expected_namespace(self, expected_namespace): """Sets the expected_namespace of this CollectionOneShot. The expected 'namespace' of the Collection to be verified against the metadata during import. # noqa: E501 :param expected_namespace: The expected_namespace of this CollectionOneShot. # noqa: E501 :type: str """ self._expected_namespace = expected_namespace @property def expected_name(self): """Gets the expected_name of this CollectionOneShot. # noqa: E501 The expected 'name' of the Collection to be verified against the metadata during import. # noqa: E501 :return: The expected_name of this CollectionOneShot. # noqa: E501 :rtype: str """ return self._expected_name @expected_name.setter def expected_name(self, expected_name): """Sets the expected_name of this CollectionOneShot. The expected 'name' of the Collection to be verified against the metadata during import. # noqa: E501 :param expected_name: The expected_name of this CollectionOneShot. # noqa: E501 :type: str """ self._expected_name = expected_name @property def expected_version(self): """Gets the expected_version of this CollectionOneShot. # noqa: E501 The expected version of the Collection to be verified against the metadata during import. # noqa: E501 :return: The expected_version of this CollectionOneShot. # noqa: E501 :rtype: str """ return self._expected_version @expected_version.setter def expected_version(self, expected_version): """Sets the expected_version of this CollectionOneShot. The expected version of the Collection to be verified against the metadata during import. # noqa: E501 :param expected_version: The expected_version of this CollectionOneShot. # noqa: E501 :type: str """ self._expected_version = expected_version 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, CollectionOneShot): 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, CollectionOneShot): return True return self.to_dict() != other.to_dict()