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.
5114 5115 5116 5117 5118 |
# File 'lib/v20190103/models.rb', line 5114 def initialize(totalcount=nil, confitemkvlist=nil, requestid=nil) @TotalCount = totalcount @ConfItemKVList = confitemkvlist @RequestId = requestid end |
Instance Attribute Details
#ConfItemKVList ⇒ Object
5112 5113 5114 |
# File 'lib/v20190103/models.rb', line 5112 def ConfItemKVList @ConfItemKVList end |
#RequestId ⇒ Object
5112 5113 5114 |
# File 'lib/v20190103/models.rb', line 5112 def RequestId @RequestId end |
#TotalCount ⇒ Object
5112 5113 5114 |
# File 'lib/v20190103/models.rb', line 5112 def TotalCount @TotalCount end |
Instance Method Details
#deserialize(params) ⇒ Object
5120 5121 5122 5123 5124 5125 5126 5127 5128 5129 5130 5131 |
# File 'lib/v20190103/models.rb', line 5120 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 |