Class: TencentCloud::Emr::V20190103::DescribeServiceConfGroupInfosResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Emr::V20190103::DescribeServiceConfGroupInfosResponse
- Defined in:
- lib/v20190103/models.rb
Overview
DescribeServiceConfGroupInfos返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(totalcount = nil, confitemkvlist = nil, requestid = nil) ⇒ DescribeServiceConfGroupInfosResponse
constructor
A new instance of DescribeServiceConfGroupInfosResponse.
Constructor Details
#initialize(totalcount = nil, confitemkvlist = nil, requestid = nil) ⇒ DescribeServiceConfGroupInfosResponse
Returns a new instance of DescribeServiceConfGroupInfosResponse.
5379 5380 5381 5382 5383 |
# File 'lib/v20190103/models.rb', line 5379 def initialize(totalcount=nil, confitemkvlist=nil, requestid=nil) @TotalCount = totalcount @ConfItemKVList = confitemkvlist @RequestId = requestid end |
Instance Attribute Details
#ConfItemKVList ⇒ Object
5377 5378 5379 |
# File 'lib/v20190103/models.rb', line 5377 def ConfItemKVList @ConfItemKVList end |
#RequestId ⇒ Object
5377 5378 5379 |
# File 'lib/v20190103/models.rb', line 5377 def RequestId @RequestId end |
#TotalCount ⇒ Object
5377 5378 5379 |
# File 'lib/v20190103/models.rb', line 5377 def TotalCount @TotalCount end |
Instance Method Details
#deserialize(params) ⇒ Object
5385 5386 5387 5388 5389 5390 5391 5392 5393 5394 5395 5396 |
# File 'lib/v20190103/models.rb', line 5385 def deserialize(params) @TotalCount = params['TotalCount'] unless params['ConfItemKVList'].nil? @ConfItemKVList = [] params['ConfItemKVList'].each do |i| configurationitem_tmp = ConfigurationItem.new configurationitem_tmp.deserialize(i) @ConfItemKVList << configurationitem_tmp end end @RequestId = params['RequestId'] end |