Class: TencentCloud::Cloudaudit::V20190319::ListKeyAliasByRegionResponse
- Inherits:
-
TencentCloud::Common::AbstractModel
- Object
- TencentCloud::Common::AbstractModel
- TencentCloud::Cloudaudit::V20190319::ListKeyAliasByRegionResponse
- Defined in:
- lib/v20190319/models.rb
Overview
ListKeyAliasByRegion返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(totalcount = nil, keymetadatas = nil, requestid = nil) ⇒ ListKeyAliasByRegionResponse
constructor
A new instance of ListKeyAliasByRegionResponse.
Constructor Details
#initialize(totalcount = nil, keymetadatas = nil, requestid = nil) ⇒ ListKeyAliasByRegionResponse
Returns a new instance of ListKeyAliasByRegionResponse.
935 936 937 938 939 |
# File 'lib/v20190319/models.rb', line 935 def initialize(totalcount=nil, =nil, requestid=nil) @TotalCount = totalcount @KeyMetadatas = @RequestId = requestid end |
Instance Attribute Details
#KeyMetadatas ⇒ Object
933 934 935 |
# File 'lib/v20190319/models.rb', line 933 def KeyMetadatas @KeyMetadatas end |
#RequestId ⇒ Object
933 934 935 |
# File 'lib/v20190319/models.rb', line 933 def RequestId @RequestId end |
#TotalCount ⇒ Object
933 934 935 |
# File 'lib/v20190319/models.rb', line 933 def TotalCount @TotalCount end |
Instance Method Details
#deserialize(params) ⇒ Object
941 942 943 944 945 946 947 948 949 950 951 952 |
# File 'lib/v20190319/models.rb', line 941 def deserialize(params) @TotalCount = params['TotalCount'] unless params['KeyMetadatas'].nil? @KeyMetadatas = [] params['KeyMetadatas'].each do |i| = KeyMetadata.new .deserialize(i) @KeyMetadatas << end end @RequestId = params['RequestId'] end |