Class: TencentCloud::Kms::V20190118::DescribeWhiteBoxKeyResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Kms::V20190118::DescribeWhiteBoxKeyResponse
- Defined in:
- lib/v20190118/models.rb
Overview
DescribeWhiteBoxKey返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(keyinfo = nil, requestid = nil) ⇒ DescribeWhiteBoxKeyResponse
constructor
A new instance of DescribeWhiteBoxKeyResponse.
Constructor Details
#initialize(keyinfo = nil, requestid = nil) ⇒ DescribeWhiteBoxKeyResponse
Returns a new instance of DescribeWhiteBoxKeyResponse.
1037 1038 1039 1040 |
# File 'lib/v20190118/models.rb', line 1037 def initialize(=nil, requestid=nil) @KeyInfo = @RequestId = requestid end |
Instance Attribute Details
#KeyInfo ⇒ Object
1035 1036 1037 |
# File 'lib/v20190118/models.rb', line 1035 def KeyInfo @KeyInfo end |
#RequestId ⇒ Object
1035 1036 1037 |
# File 'lib/v20190118/models.rb', line 1035 def RequestId @RequestId end |
Instance Method Details
#deserialize(params) ⇒ Object
1042 1043 1044 1045 1046 1047 1048 |
# File 'lib/v20190118/models.rb', line 1042 def deserialize(params) unless params['KeyInfo'].nil? @KeyInfo = WhiteboxKeyInfo.new @KeyInfo.deserialize(params['KeyInfo']) end @RequestId = params['RequestId'] end |