Class: TencentCloud::Kms::V20190118::DescribeWhiteBoxDecryptKeyResponse

Inherits:
Common::AbstractModel
  • Object
show all
Defined in:
lib/v20190118/models.rb

Overview

DescribeWhiteBoxDecryptKey返回参数结构体

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(decryptkey = nil, requestid = nil) ⇒ DescribeWhiteBoxDecryptKeyResponse

Returns a new instance of DescribeWhiteBoxDecryptKeyResponse.



670
671
672
673
# File 'lib/v20190118/models.rb', line 670

def initialize(decryptkey=nil, requestid=nil)
  @DecryptKey = decryptkey
  @RequestId = requestid
end

Instance Attribute Details

#DecryptKeyObject

Parameters:

  • DecryptKey:

    白盒解密密钥,base64编码

  • RequestId:

    唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。



668
669
670
# File 'lib/v20190118/models.rb', line 668

def DecryptKey
  @DecryptKey
end

#RequestIdObject

Parameters:

  • DecryptKey:

    白盒解密密钥,base64编码

  • RequestId:

    唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。



668
669
670
# File 'lib/v20190118/models.rb', line 668

def RequestId
  @RequestId
end

Instance Method Details

#deserialize(params) ⇒ Object



675
676
677
678
# File 'lib/v20190118/models.rb', line 675

def deserialize(params)
  @DecryptKey = params['DecryptKey']
  @RequestId = params['RequestId']
end