File: //proc/self/root/lib/mysqlsh/lib/python3.8/site-packages/oci/key_management/models/generated_key.py
# coding: utf-8
# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved.
# This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
# NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: release
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):
"""
The reponse to the regeuest to generate the key to encrypt or decrypt the data.
"""
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/latest/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/latest/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/latest/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/latest/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