���� JFIF �� � ( %"1"%)+...383,7(-.-
![]() Server : Apache/2.4.6 (CentOS) OpenSSL/1.0.2k-fips PHP/7.4.20 System : Linux st2.domain.com 3.10.0-1127.10.1.el7.x86_64 #1 SMP Wed Jun 3 14:28:03 UTC 2020 x86_64 User : apache ( 48) PHP Version : 7.4.20 Disable Function : NONE Directory : /proc/self/root/usr/share/mysqlsh/oci_sdk/oci/marketplace/models/ |
# coding: utf-8 # Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved. from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 from oci.decorators import init_model_state_from_kwargs @init_model_state_from_kwargs class Agreement(object): """ The model for an end user license agreement. """ #: A constant which can be used with the author property of a Agreement. #: This constant has a value of "ORACLE" AUTHOR_ORACLE = "ORACLE" #: A constant which can be used with the author property of a Agreement. #: This constant has a value of "PARTNER" AUTHOR_PARTNER = "PARTNER" def __init__(self, **kwargs): """ Initializes a new Agreement object with values from keyword arguments. The following keyword arguments are supported (corresponding to the getters/setters of this class): :param id: The value to assign to the id property of this Agreement. :type id: str :param content_url: The value to assign to the content_url property of this Agreement. :type content_url: str :param signature: The value to assign to the signature property of this Agreement. :type signature: str :param compartment_id: The value to assign to the compartment_id property of this Agreement. :type compartment_id: str :param author: The value to assign to the author property of this Agreement. Allowed values for this property are: "ORACLE", "PARTNER", 'UNKNOWN_ENUM_VALUE'. Any unrecognized values returned by a service will be mapped to 'UNKNOWN_ENUM_VALUE'. :type author: str :param prompt: The value to assign to the prompt property of this Agreement. :type prompt: str """ self.swagger_types = { 'id': 'str', 'content_url': 'str', 'signature': 'str', 'compartment_id': 'str', 'author': 'str', 'prompt': 'str' } self.attribute_map = { 'id': 'id', 'content_url': 'contentUrl', 'signature': 'signature', 'compartment_id': 'compartmentId', 'author': 'author', 'prompt': 'prompt' } self._id = None self._content_url = None self._signature = None self._compartment_id = None self._author = None self._prompt = None @property def id(self): """ **[Required]** Gets the id of this Agreement. The unique identifier for the agreement. :return: The id of this Agreement. :rtype: str """ return self._id @id.setter def id(self, id): """ Sets the id of this Agreement. The unique identifier for the agreement. :param id: The id of this Agreement. :type: str """ self._id = id @property def content_url(self): """ **[Required]** Gets the content_url of this Agreement. The content URL of the agreement. :return: The content_url of this Agreement. :rtype: str """ return self._content_url @content_url.setter def content_url(self, content_url): """ Sets the content_url of this Agreement. The content URL of the agreement. :param content_url: The content_url of this Agreement. :type: str """ self._content_url = content_url @property def signature(self): """ **[Required]** Gets the signature of this Agreement. A time-based signature that can be used to accept an agreement or remove a previously accepted agreement from the list that Marketplace checks before a deployment. :return: The signature of this Agreement. :rtype: str """ return self._signature @signature.setter def signature(self, signature): """ Sets the signature of this Agreement. A time-based signature that can be used to accept an agreement or remove a previously accepted agreement from the list that Marketplace checks before a deployment. :param signature: The signature of this Agreement. :type: str """ self._signature = signature @property def compartment_id(self): """ Gets the compartment_id of this Agreement. The unique identifier for the compartment. :return: The compartment_id of this Agreement. :rtype: str """ return self._compartment_id @compartment_id.setter def compartment_id(self, compartment_id): """ Sets the compartment_id of this Agreement. The unique identifier for the compartment. :param compartment_id: The compartment_id of this Agreement. :type: str """ self._compartment_id = compartment_id @property def author(self): """ Gets the author of this Agreement. Who authored the agreement. Allowed values for this property are: "ORACLE", "PARTNER", 'UNKNOWN_ENUM_VALUE'. Any unrecognized values returned by a service will be mapped to 'UNKNOWN_ENUM_VALUE'. :return: The author of this Agreement. :rtype: str """ return self._author @author.setter def author(self, author): """ Sets the author of this Agreement. Who authored the agreement. :param author: The author of this Agreement. :type: str """ allowed_values = ["ORACLE", "PARTNER"] if not value_allowed_none_or_none_sentinel(author, allowed_values): author = 'UNKNOWN_ENUM_VALUE' self._author = author @property def prompt(self): """ Gets the prompt of this Agreement. Textual prompt to read and accept the agreement. :return: The prompt of this Agreement. :rtype: str """ return self._prompt @prompt.setter def prompt(self, prompt): """ Sets the prompt of this Agreement. Textual prompt to read and accept the agreement. :param prompt: The prompt of this Agreement. :type: str """ self._prompt = prompt def __repr__(self): return formatted_flat_dict(self) def __eq__(self, other): if other is None: return False return self.__dict__ == other.__dict__ def __ne__(self, other): return not self == other