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
927 928 929 930 931 |
# File 'lib/v20190319/models.rb', line 927 def initialize(totalcount=nil, =nil, requestid=nil) @TotalCount = totalcount @KeyMetadatas = @RequestId = requestid end |
Instance Attribute Details
#KeyMetadatas ⇒ Object
925 926 927 |
# File 'lib/v20190319/models.rb', line 925 def KeyMetadatas @KeyMetadatas end |
#RequestId ⇒ Object
925 926 927 |
# File 'lib/v20190319/models.rb', line 925 def RequestId @RequestId end |
#TotalCount ⇒ Object
925 926 927 |
# File 'lib/v20190319/models.rb', line 925 def TotalCount @TotalCount end |
Instance Method Details
#deserialize(params) ⇒ Object
933 934 935 936 937 938 939 940 941 942 943 944 |
# File 'lib/v20190319/models.rb', line 933 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 |