Class: TencentCloud::Kms::V20190118::ReEncryptResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Kms::V20190118::ReEncryptResponse
- Defined in:
- lib/v20190118/models.rb
Overview
ReEncrypt返回参数结构体
Instance Attribute Summary collapse
- #CiphertextBlob ⇒ Object
- #KeyId ⇒ Object
- #ReEncrypted ⇒ Object
- #RequestId ⇒ Object
- #SourceKeyId ⇒ Object
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(ciphertextblob = nil, keyid = nil, sourcekeyid = nil, reencrypted = nil, requestid = nil) ⇒ ReEncryptResponse
constructor
A new instance of ReEncryptResponse.
Constructor Details
#initialize(ciphertextblob = nil, keyid = nil, sourcekeyid = nil, reencrypted = nil, requestid = nil) ⇒ ReEncryptResponse
Returns a new instance of ReEncryptResponse.
3067 3068 3069 3070 3071 3072 3073 |
# File 'lib/v20190118/models.rb', line 3067 def initialize(ciphertextblob=nil, keyid=nil, sourcekeyid=nil, reencrypted=nil, requestid=nil) @CiphertextBlob = ciphertextblob @KeyId = keyid @SourceKeyId = sourcekeyid @ReEncrypted = reencrypted @RequestId = requestid end |
Instance Attribute Details
#CiphertextBlob ⇒ Object
3065 3066 3067 |
# File 'lib/v20190118/models.rb', line 3065 def CiphertextBlob @CiphertextBlob end |
#KeyId ⇒ Object
3065 3066 3067 |
# File 'lib/v20190118/models.rb', line 3065 def KeyId @KeyId end |
#ReEncrypted ⇒ Object
3065 3066 3067 |
# File 'lib/v20190118/models.rb', line 3065 def ReEncrypted @ReEncrypted end |
#RequestId ⇒ Object
3065 3066 3067 |
# File 'lib/v20190118/models.rb', line 3065 def RequestId @RequestId end |
#SourceKeyId ⇒ Object
3065 3066 3067 |
# File 'lib/v20190118/models.rb', line 3065 def SourceKeyId @SourceKeyId end |
Instance Method Details
#deserialize(params) ⇒ Object
3075 3076 3077 3078 3079 3080 3081 |
# File 'lib/v20190118/models.rb', line 3075 def deserialize(params) @CiphertextBlob = params['CiphertextBlob'] @KeyId = params['KeyId'] @SourceKeyId = params['SourceKeyId'] @ReEncrypted = params['ReEncrypted'] @RequestId = params['RequestId'] end |