huaweicloud-sdk-python-v3/huaweicloud-sdk-kms/huaweicloudsdkkms/v1/model/encrypt_datakey_request_bod...

219 lines
7.4 KiB
Python
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# coding: utf-8
import pprint
import re
import six
class EncryptDatakeyRequestBody:
"""
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.
"""
sensitive_list = []
openapi_types = {
'key_id': 'str',
'encryption_context': 'object',
'plain_text': 'str',
'datakey_plain_length': 'str',
'sequence': 'str'
}
attribute_map = {
'key_id': 'key_id',
'encryption_context': 'encryption_context',
'plain_text': 'plain_text',
'datakey_plain_length': 'datakey_plain_length',
'sequence': 'sequence'
}
def __init__(self, key_id=None, encryption_context=None, plain_text=None, datakey_plain_length=None, sequence=None):
"""EncryptDatakeyRequestBody - a model defined in huaweicloud sdk"""
self._key_id = None
self._encryption_context = None
self._plain_text = None
self._datakey_plain_length = None
self._sequence = None
self.discriminator = None
if key_id is not None:
self.key_id = key_id
if encryption_context is not None:
self.encryption_context = encryption_context
if plain_text is not None:
self.plain_text = plain_text
if datakey_plain_length is not None:
self.datakey_plain_length = datakey_plain_length
if sequence is not None:
self.sequence = sequence
@property
def key_id(self):
"""Gets the key_id of this EncryptDatakeyRequestBody.
密钥ID36字节满足正则匹配“^[0-9a-z]{8}-[0-9a-z]{4}-[0-9a-z]{4}-[0-9a-z]{4}-[0-9a-z]{12}$”。 例如0d0466b0-e727-4d9c-b35d-f84bb474a37f。
:return: The key_id of this EncryptDatakeyRequestBody.
:rtype: str
"""
return self._key_id
@key_id.setter
def key_id(self, key_id):
"""Sets the key_id of this EncryptDatakeyRequestBody.
密钥ID36字节满足正则匹配“^[0-9a-z]{8}-[0-9a-z]{4}-[0-9a-z]{4}-[0-9a-z]{4}-[0-9a-z]{12}$”。 例如0d0466b0-e727-4d9c-b35d-f84bb474a37f。
:param key_id: The key_id of this EncryptDatakeyRequestBody.
:type: str
"""
self._key_id = key_id
@property
def encryption_context(self):
"""Gets the encryption_context of this EncryptDatakeyRequestBody.
一系列key-value键值对用于记录资源上下文信息用于保护数据的完整性不应包含敏感信息最大长度为8192。 当在加密时指定了该参数时,解密密文时,需要传入相同的参数,才能正确的解密。 例如:{\"Key1\":\"Value1\",\"Key2\":\"Value2\"}
:return: The encryption_context of this EncryptDatakeyRequestBody.
:rtype: object
"""
return self._encryption_context
@encryption_context.setter
def encryption_context(self, encryption_context):
"""Sets the encryption_context of this EncryptDatakeyRequestBody.
一系列key-value键值对用于记录资源上下文信息用于保护数据的完整性不应包含敏感信息最大长度为8192。 当在加密时指定了该参数时,解密密文时,需要传入相同的参数,才能正确的解密。 例如:{\"Key1\":\"Value1\",\"Key2\":\"Value2\"}
:param encryption_context: The encryption_context of this EncryptDatakeyRequestBody.
:type: object
"""
self._encryption_context = encryption_context
@property
def plain_text(self):
"""Gets the plain_text of this EncryptDatakeyRequestBody.
DEK明文和DEK明文的SHA25632字节均为16进制字符串表示。 DEK明文64字节和DEK明文的SHA25632字节均为16进制字符串表示
:return: The plain_text of this EncryptDatakeyRequestBody.
:rtype: str
"""
return self._plain_text
@plain_text.setter
def plain_text(self, plain_text):
"""Sets the plain_text of this EncryptDatakeyRequestBody.
DEK明文和DEK明文的SHA25632字节均为16进制字符串表示。 DEK明文64字节和DEK明文的SHA25632字节均为16进制字符串表示
:param plain_text: The plain_text of this EncryptDatakeyRequestBody.
:type: str
"""
self._plain_text = plain_text
@property
def datakey_plain_length(self):
"""Gets the datakey_plain_length of this EncryptDatakeyRequestBody.
DEK明文字节长度取值范围为1~1024。 DEK明文字节长度取值为“64”。
:return: The datakey_plain_length of this EncryptDatakeyRequestBody.
:rtype: str
"""
return self._datakey_plain_length
@datakey_plain_length.setter
def datakey_plain_length(self, datakey_plain_length):
"""Sets the datakey_plain_length of this EncryptDatakeyRequestBody.
DEK明文字节长度取值范围为1~1024。 DEK明文字节长度取值为“64”。
:param datakey_plain_length: The datakey_plain_length of this EncryptDatakeyRequestBody.
:type: str
"""
self._datakey_plain_length = datakey_plain_length
@property
def sequence(self):
"""Gets the sequence of this EncryptDatakeyRequestBody.
请求消息序列号36字节序列号。 例如919c82d4-8046-4722-9094-35c3c6524cff
:return: The sequence of this EncryptDatakeyRequestBody.
:rtype: str
"""
return self._sequence
@sequence.setter
def sequence(self, sequence):
"""Sets the sequence of this EncryptDatakeyRequestBody.
请求消息序列号36字节序列号。 例如919c82d4-8046-4722-9094-35c3c6524cff
:param sequence: The sequence of this EncryptDatakeyRequestBody.
:type: str
"""
self._sequence = sequence
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:
if attr in self.sensitive_list:
result[attr] = "****"
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, EncryptDatakeyRequestBody):
return False
return self.__dict__ == other.__dict__
def __ne__(self, other):
"""Returns true if both objects are not equal"""
return not self == other