ÿØÿà 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/key_management/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 GeneratedKey(object): """ GeneratedKey model. """ def __init__(self, **kwargs): """ Initializes a new GeneratedKey object with values from keyword arguments. The following keyword arguments are supported (corresponding to the getters/setters of this class): :param ciphertext: The value to assign to the ciphertext property of this GeneratedKey. :type ciphertext: str :param plaintext: The value to assign to the plaintext property of this GeneratedKey. :type plaintext: str :param plaintext_checksum: The value to assign to the plaintext_checksum property of this GeneratedKey. :type plaintext_checksum: str """ self.swagger_types = { 'ciphertext': 'str', 'plaintext': 'str', 'plaintext_checksum': 'str' } self.attribute_map = { 'ciphertext': 'ciphertext', 'plaintext': 'plaintext', 'plaintext_checksum': 'plaintextChecksum' } self._ciphertext = None self._plaintext = None self._plaintext_checksum = None @property def ciphertext(self): """ **[Required]** Gets the ciphertext of this GeneratedKey. The encrypted data encryption key generated from a master encryption key. :return: The ciphertext of this GeneratedKey. :rtype: str """ return self._ciphertext @ciphertext.setter def ciphertext(self, ciphertext): """ Sets the ciphertext of this GeneratedKey. The encrypted data encryption key generated from a master encryption key. :param ciphertext: The ciphertext of this GeneratedKey. :type: str """ self._ciphertext = ciphertext @property def plaintext(self): """ Gets the plaintext of this GeneratedKey. The plaintext data encryption key, a base64-encoded sequence of random bytes, which is included if the `GenerateDataEncryptionKey`__ request includes the `includePlaintextKey` parameter and sets its value to \"true\". __ https://docs.cloud.oracle.com/api/#/en/key/release/GeneratedKey/GenerateDataEncryptionKey :return: The plaintext of this GeneratedKey. :rtype: str """ return self._plaintext @plaintext.setter def plaintext(self, plaintext): """ Sets the plaintext of this GeneratedKey. The plaintext data encryption key, a base64-encoded sequence of random bytes, which is included if the `GenerateDataEncryptionKey`__ request includes the `includePlaintextKey` parameter and sets its value to \"true\". __ https://docs.cloud.oracle.com/api/#/en/key/release/GeneratedKey/GenerateDataEncryptionKey :param plaintext: The plaintext of this GeneratedKey. :type: str """ self._plaintext = plaintext @property def plaintext_checksum(self): """ Gets the plaintext_checksum of this GeneratedKey. The checksum of the plaintext data encryption key, which is included if the `GenerateDataEncryptionKey`__ request includes the `includePlaintextKey` parameter and sets its value to \"true\". __ https://docs.cloud.oracle.com/api/#/en/key/release/GeneratedKey/GenerateDataEncryptionKey :return: The plaintext_checksum of this GeneratedKey. :rtype: str """ return self._plaintext_checksum @plaintext_checksum.setter def plaintext_checksum(self, plaintext_checksum): """ Sets the plaintext_checksum of this GeneratedKey. The checksum of the plaintext data encryption key, which is included if the `GenerateDataEncryptionKey`__ request includes the `includePlaintextKey` parameter and sets its value to \"true\". __ https://docs.cloud.oracle.com/api/#/en/key/release/GeneratedKey/GenerateDataEncryptionKey :param plaintext_checksum: The plaintext_checksum of this GeneratedKey. :type: str """ self._plaintext_checksum = plaintext_checksum 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