Class: TencentCloud::Emr::V20190103::DescribeStarRocksQueryInfoResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Emr::V20190103::DescribeStarRocksQueryInfoResponse
- Defined in:
- lib/v20190103/models.rb
Overview
DescribeStarRocksQueryInfo返回参数结构体
Instance Attribute Summary collapse
-
#RequestId ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
-
#StarRocksQueryInfoList ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
-
#TotalCount ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(totalcount = nil, starrocksqueryinfolist = nil, requestid = nil) ⇒ DescribeStarRocksQueryInfoResponse
constructor
A new instance of DescribeStarRocksQueryInfoResponse.
Constructor Details
#initialize(totalcount = nil, starrocksqueryinfolist = nil, requestid = nil) ⇒ DescribeStarRocksQueryInfoResponse
Returns a new instance of DescribeStarRocksQueryInfoResponse.
5696 5697 5698 5699 5700 |
# File 'lib/v20190103/models.rb', line 5696 def initialize(totalcount=nil, =nil, requestid=nil) @TotalCount = totalcount @StarRocksQueryInfoList = @RequestId = requestid end |
Instance Attribute Details
#RequestId ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
5694 5695 5696 |
# File 'lib/v20190103/models.rb', line 5694 def RequestId @RequestId end |
#StarRocksQueryInfoList ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
5694 5695 5696 |
# File 'lib/v20190103/models.rb', line 5694 def StarRocksQueryInfoList @StarRocksQueryInfoList end |
#TotalCount ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
5694 5695 5696 |
# File 'lib/v20190103/models.rb', line 5694 def TotalCount @TotalCount end |
Instance Method Details
#deserialize(params) ⇒ Object
5702 5703 5704 5705 5706 5707 5708 5709 5710 5711 5712 5713 |
# File 'lib/v20190103/models.rb', line 5702 def deserialize(params) @TotalCount = params['TotalCount'] unless params['StarRocksQueryInfoList'].nil? @StarRocksQueryInfoList = [] params['StarRocksQueryInfoList'].each do |i| = StarRocksQueryInfo.new .deserialize(i) @StarRocksQueryInfoList << end end @RequestId = params['RequestId'] end |