Class: TencentCloud::Kms::V20190118::DescribeWhiteBoxKeyDetailsResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Kms::V20190118::DescribeWhiteBoxKeyDetailsResponse
- Defined in:
- lib/v20190118/models.rb
Overview
DescribeWhiteBoxKeyDetails返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(keyinfos = nil, totalcount = nil, requestid = nil) ⇒ DescribeWhiteBoxKeyDetailsResponse
constructor
A new instance of DescribeWhiteBoxKeyDetailsResponse.
Constructor Details
#initialize(keyinfos = nil, totalcount = nil, requestid = nil) ⇒ DescribeWhiteBoxKeyDetailsResponse
Returns a new instance of DescribeWhiteBoxKeyDetailsResponse.
992 993 994 995 996 |
# File 'lib/v20190118/models.rb', line 992 def initialize(=nil, totalcount=nil, requestid=nil) @KeyInfos = @TotalCount = totalcount @RequestId = requestid end |
Instance Attribute Details
#KeyInfos ⇒ Object
990 991 992 |
# File 'lib/v20190118/models.rb', line 990 def KeyInfos @KeyInfos end |
#RequestId ⇒ Object
990 991 992 |
# File 'lib/v20190118/models.rb', line 990 def RequestId @RequestId end |
#TotalCount ⇒ Object
990 991 992 |
# File 'lib/v20190118/models.rb', line 990 def TotalCount @TotalCount end |
Instance Method Details
#deserialize(params) ⇒ Object
998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 |
# File 'lib/v20190118/models.rb', line 998 def deserialize(params) unless params['KeyInfos'].nil? @KeyInfos = [] params['KeyInfos'].each do |i| = WhiteboxKeyInfo.new .deserialize(i) @KeyInfos << end end @TotalCount = params['TotalCount'] @RequestId = params['RequestId'] end |