tencentcloud-sdk-emr 3.0.605 → 3.0.606

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 0dce06e79429b2d5d9a586fd0c72215e3f43f691
4
- data.tar.gz: d5375d9cb87fd3e2625bf286cbf6f16d9e497e26
3
+ metadata.gz: c8bca12eb7e2b187fa9e079f68401a8eee7668aa
4
+ data.tar.gz: dc6ca0bbb55749353afaa85303f740e3948a6105
5
5
  SHA512:
6
- metadata.gz: f66a97562797fcd5ac21c5ded98318da1cc96e61a564b3520b6d7cff877a07da99803f80db1456683e4a4d7ceca2bba5dd972177b9bdf1d4cc294de2cea61686
7
- data.tar.gz: 8e72cb6a353aa355f767d3088f23cfec04a5bbf53af3299289cd33f053aa30e87bdc86cc81b2974f26d430dfe4008947f4a61c1d6f503986f7b252305f6a6216
6
+ metadata.gz: 8e7edb93e5b34d9dbebbada5d228bf528b831ea946735a92b7b914190287cbf72ed259acb6eaa0f726664cd102bd3e0a54f034d8aa63f29782f486b4b36cc26e
7
+ data.tar.gz: c2601106bb21d7914acbb71a07bb760b6b7fedeb8fe9a59cf773fb943b79be502446f101f6fac8f659de5cc38acefadb66300805de5642a8f5dd2d2d521da9a9
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.605
1
+ 3.0.606
@@ -198,6 +198,54 @@ module TencentCloud
198
198
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
199
199
  end
200
200
 
201
+ # 获取hive查询信息
202
+
203
+ # @param request: Request instance for DescribeHiveQueries.
204
+ # @type request: :class:`Tencentcloud::emr::V20190103::DescribeHiveQueriesRequest`
205
+ # @rtype: :class:`Tencentcloud::emr::V20190103::DescribeHiveQueriesResponse`
206
+ def DescribeHiveQueries(request)
207
+ body = send_request('DescribeHiveQueries', request.serialize)
208
+ response = JSON.parse(body)
209
+ if response['Response'].key?('Error') == false
210
+ model = DescribeHiveQueriesResponse.new
211
+ model.deserialize(response['Response'])
212
+ model
213
+ else
214
+ code = response['Response']['Error']['Code']
215
+ message = response['Response']['Error']['Message']
216
+ reqid = response['Response']['RequestId']
217
+ raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
218
+ end
219
+ rescue TencentCloud::Common::TencentCloudSDKException => e
220
+ raise e
221
+ rescue StandardError => e
222
+ raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
223
+ end
224
+
225
+ # DescribeImpalaQueries
226
+
227
+ # @param request: Request instance for DescribeImpalaQueries.
228
+ # @type request: :class:`Tencentcloud::emr::V20190103::DescribeImpalaQueriesRequest`
229
+ # @rtype: :class:`Tencentcloud::emr::V20190103::DescribeImpalaQueriesResponse`
230
+ def DescribeImpalaQueries(request)
231
+ body = send_request('DescribeImpalaQueries', request.serialize)
232
+ response = JSON.parse(body)
233
+ if response['Response'].key?('Error') == false
234
+ model = DescribeImpalaQueriesResponse.new
235
+ model.deserialize(response['Response'])
236
+ model
237
+ else
238
+ code = response['Response']['Error']['Code']
239
+ message = response['Response']['Error']['Message']
240
+ reqid = response['Response']['RequestId']
241
+ raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
242
+ end
243
+ rescue TencentCloud::Common::TencentCloudSDKException => e
244
+ raise e
245
+ rescue StandardError => e
246
+ raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
247
+ end
248
+
201
249
  # 查询待续费节点信息
202
250
 
203
251
  # @param request: Request instance for DescribeInstanceRenewNodes.
@@ -343,6 +391,30 @@ module TencentCloud
343
391
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
344
392
  end
345
393
 
394
+ # DescribeYarnApplications
395
+
396
+ # @param request: Request instance for DescribeYarnApplications.
397
+ # @type request: :class:`Tencentcloud::emr::V20190103::DescribeYarnApplicationsRequest`
398
+ # @rtype: :class:`Tencentcloud::emr::V20190103::DescribeYarnApplicationsResponse`
399
+ def DescribeYarnApplications(request)
400
+ body = send_request('DescribeYarnApplications', request.serialize)
401
+ response = JSON.parse(body)
402
+ if response['Response'].key?('Error') == false
403
+ model = DescribeYarnApplicationsResponse.new
404
+ model.deserialize(response['Response'])
405
+ model
406
+ else
407
+ code = response['Response']['Error']['Code']
408
+ message = response['Response']['Error']['Message']
409
+ reqid = response['Response']['RequestId']
410
+ raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
411
+ end
412
+ rescue TencentCloud::Common::TencentCloudSDKException => e
413
+ raise e
414
+ rescue StandardError => e
415
+ raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
416
+ end
417
+
346
418
  # 集群续费询价。
347
419
 
348
420
  # @param request: Request instance for InquirePriceRenewEmr.
@@ -1595,6 +1595,132 @@ module TencentCloud
1595
1595
  end
1596
1596
  end
1597
1597
 
1598
+ # DescribeHiveQueries请求参数结构体
1599
+ class DescribeHiveQueriesRequest < TencentCloud::Common::AbstractModel
1600
+ # @param InstanceId: 集群ID
1601
+ # @type InstanceId: String
1602
+ # @param StartTime: 起始时间秒
1603
+ # @type StartTime: Integer
1604
+ # @param EndTime: 结束时间秒,EndTime-StartTime不得超过31天秒数31*24*3600
1605
+ # @type EndTime: Integer
1606
+ # @param Offset: 分页起始偏移,从0开始
1607
+ # @type Offset: Integer
1608
+ # @param Limit: 分页大小,合法范围[1,100]
1609
+ # @type Limit: Integer
1610
+
1611
+ attr_accessor :InstanceId, :StartTime, :EndTime, :Offset, :Limit
1612
+
1613
+ def initialize(instanceid=nil, starttime=nil, endtime=nil, offset=nil, limit=nil)
1614
+ @InstanceId = instanceid
1615
+ @StartTime = starttime
1616
+ @EndTime = endtime
1617
+ @Offset = offset
1618
+ @Limit = limit
1619
+ end
1620
+
1621
+ def deserialize(params)
1622
+ @InstanceId = params['InstanceId']
1623
+ @StartTime = params['StartTime']
1624
+ @EndTime = params['EndTime']
1625
+ @Offset = params['Offset']
1626
+ @Limit = params['Limit']
1627
+ end
1628
+ end
1629
+
1630
+ # DescribeHiveQueries返回参数结构体
1631
+ class DescribeHiveQueriesResponse < TencentCloud::Common::AbstractModel
1632
+ # @param Total: 总条数
1633
+ # @type Total: Integer
1634
+ # @param Results: 结果列表
1635
+ # @type Results: Array
1636
+ # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
1637
+ # @type RequestId: String
1638
+
1639
+ attr_accessor :Total, :Results, :RequestId
1640
+
1641
+ def initialize(total=nil, results=nil, requestid=nil)
1642
+ @Total = total
1643
+ @Results = results
1644
+ @RequestId = requestid
1645
+ end
1646
+
1647
+ def deserialize(params)
1648
+ @Total = params['Total']
1649
+ unless params['Results'].nil?
1650
+ @Results = []
1651
+ params['Results'].each do |i|
1652
+ hivequery_tmp = HiveQuery.new
1653
+ hivequery_tmp.deserialize(i)
1654
+ @Results << hivequery_tmp
1655
+ end
1656
+ end
1657
+ @RequestId = params['RequestId']
1658
+ end
1659
+ end
1660
+
1661
+ # DescribeImpalaQueries请求参数结构体
1662
+ class DescribeImpalaQueriesRequest < TencentCloud::Common::AbstractModel
1663
+ # @param InstanceId: 集群ID
1664
+ # @type InstanceId: String
1665
+ # @param StartTime: 起始时间秒
1666
+ # @type StartTime: Integer
1667
+ # @param EndTime: 结束时间秒,EndTime-StartTime不得超过31天秒数31243600
1668
+ # @type EndTime: Integer
1669
+ # @param Offset: 分页起始偏移,从0开始
1670
+ # @type Offset: Integer
1671
+ # @param Limit: 分页大小,合法范围[1,100]
1672
+ # @type Limit: Integer
1673
+
1674
+ attr_accessor :InstanceId, :StartTime, :EndTime, :Offset, :Limit
1675
+
1676
+ def initialize(instanceid=nil, starttime=nil, endtime=nil, offset=nil, limit=nil)
1677
+ @InstanceId = instanceid
1678
+ @StartTime = starttime
1679
+ @EndTime = endtime
1680
+ @Offset = offset
1681
+ @Limit = limit
1682
+ end
1683
+
1684
+ def deserialize(params)
1685
+ @InstanceId = params['InstanceId']
1686
+ @StartTime = params['StartTime']
1687
+ @EndTime = params['EndTime']
1688
+ @Offset = params['Offset']
1689
+ @Limit = params['Limit']
1690
+ end
1691
+ end
1692
+
1693
+ # DescribeImpalaQueries返回参数结构体
1694
+ class DescribeImpalaQueriesResponse < TencentCloud::Common::AbstractModel
1695
+ # @param Total: 总数
1696
+ # @type Total: Integer
1697
+ # @param Results: 结果列表
1698
+ # @type Results: Array
1699
+ # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
1700
+ # @type RequestId: String
1701
+
1702
+ attr_accessor :Total, :Results, :RequestId
1703
+
1704
+ def initialize(total=nil, results=nil, requestid=nil)
1705
+ @Total = total
1706
+ @Results = results
1707
+ @RequestId = requestid
1708
+ end
1709
+
1710
+ def deserialize(params)
1711
+ @Total = params['Total']
1712
+ unless params['Results'].nil?
1713
+ @Results = []
1714
+ params['Results'].each do |i|
1715
+ impalaquery_tmp = ImpalaQuery.new
1716
+ impalaquery_tmp.deserialize(i)
1717
+ @Results << impalaquery_tmp
1718
+ end
1719
+ end
1720
+ @RequestId = params['RequestId']
1721
+ end
1722
+ end
1723
+
1598
1724
  # DescribeInstanceRenewNodes请求参数结构体
1599
1725
  class DescribeInstanceRenewNodesRequest < TencentCloud::Common::AbstractModel
1600
1726
  # @param InstanceId: 集群实例ID,实例ID形如: emr-xxxxxxxx
@@ -1978,6 +2104,69 @@ module TencentCloud
1978
2104
  end
1979
2105
  end
1980
2106
 
2107
+ # DescribeYarnApplications请求参数结构体
2108
+ class DescribeYarnApplicationsRequest < TencentCloud::Common::AbstractModel
2109
+ # @param InstanceId: 集群ID
2110
+ # @type InstanceId: String
2111
+ # @param StartTime: 起始时间秒
2112
+ # @type StartTime: Integer
2113
+ # @param EndTime: 结束时间秒,EndTime-StartTime不得超过31天秒数31243600
2114
+ # @type EndTime: Integer
2115
+ # @param Offset: 分页起始偏移,从0开始
2116
+ # @type Offset: Integer
2117
+ # @param Limit: 分页大小,合法范围[1,100]
2118
+ # @type Limit: Integer
2119
+
2120
+ attr_accessor :InstanceId, :StartTime, :EndTime, :Offset, :Limit
2121
+
2122
+ def initialize(instanceid=nil, starttime=nil, endtime=nil, offset=nil, limit=nil)
2123
+ @InstanceId = instanceid
2124
+ @StartTime = starttime
2125
+ @EndTime = endtime
2126
+ @Offset = offset
2127
+ @Limit = limit
2128
+ end
2129
+
2130
+ def deserialize(params)
2131
+ @InstanceId = params['InstanceId']
2132
+ @StartTime = params['StartTime']
2133
+ @EndTime = params['EndTime']
2134
+ @Offset = params['Offset']
2135
+ @Limit = params['Limit']
2136
+ end
2137
+ end
2138
+
2139
+ # DescribeYarnApplications返回参数结构体
2140
+ class DescribeYarnApplicationsResponse < TencentCloud::Common::AbstractModel
2141
+ # @param Total: 总数
2142
+ # @type Total: Integer
2143
+ # @param Results: 结果列表
2144
+ # @type Results: Array
2145
+ # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
2146
+ # @type RequestId: String
2147
+
2148
+ attr_accessor :Total, :Results, :RequestId
2149
+
2150
+ def initialize(total=nil, results=nil, requestid=nil)
2151
+ @Total = total
2152
+ @Results = results
2153
+ @RequestId = requestid
2154
+ end
2155
+
2156
+ def deserialize(params)
2157
+ @Total = params['Total']
2158
+ unless params['Results'].nil?
2159
+ @Results = []
2160
+ params['Results'].each do |i|
2161
+ yarnapplication_tmp = YarnApplication.new
2162
+ yarnapplication_tmp.deserialize(i)
2163
+ @Results << yarnapplication_tmp
2164
+ end
2165
+ end
2166
+ @RequestId = params['RequestId']
2167
+ end
2168
+ end
2169
+
1981
2170
  # 磁盘组。
1982
2171
  class DiskGroup < TencentCloud::Common::AbstractModel
1983
2172
  # @param Spec: 磁盘规格。
@@ -2500,6 +2689,63 @@ module TencentCloud
2500
2689
  end
2501
2690
  end
2502
2691
 
2692
+ # Hive查询详情
2693
+ class HiveQuery < TencentCloud::Common::AbstractModel
2694
+ # @param Statement: 查询语句
2695
+ # 注意:此字段可能返回 null,表示取不到有效值。
2696
+ # @type Statement: String
2697
+ # @param Duration: 执行时长
2698
+ # 注意:此字段可能返回 null,表示取不到有效值。
2699
+ # @type Duration: String
2700
+ # @param StartTime: 开始时间毫秒
2701
+ # 注意:此字段可能返回 null,表示取不到有效值。
2702
+ # @type StartTime: Integer
2703
+ # @param EndTime: 结束时间毫秒
2704
+ # 注意:此字段可能返回 null,表示取不到有效值。
2705
+ # @type EndTime: Integer
2706
+ # @param State: 状态
2707
+ # 注意:此字段可能返回 null,表示取不到有效值。
2708
+ # @type State: String
2709
+ # @param User: 用户
2710
+ # 注意:此字段可能返回 null,表示取不到有效值。
2711
+ # @type User: String
2712
+ # @param JobIds: appId列表
2713
+ # 注意:此字段可能返回 null,表示取不到有效值。
2714
+ # @type JobIds: Array
2715
+ # @param ExecutionEngine: 执行引擎
2716
+ # 注意:此字段可能返回 null,表示取不到有效值。
2717
+ # @type ExecutionEngine: String
2718
+ # @param Id: 查询ID
2719
+ # 注意:此字段可能返回 null,表示取不到有效值。
2720
+ # @type Id: String
2721
+
2722
+ attr_accessor :Statement, :Duration, :StartTime, :EndTime, :State, :User, :JobIds, :ExecutionEngine, :Id
2723
+
2724
+ def initialize(statement=nil, duration=nil, starttime=nil, endtime=nil, state=nil, user=nil, jobids=nil, executionengine=nil, id=nil)
2725
+ @Statement = statement
2726
+ @Duration = duration
2727
+ @StartTime = starttime
2728
+ @EndTime = endtime
2729
+ @State = state
2730
+ @User = user
2731
+ @JobIds = jobids
2732
+ @ExecutionEngine = executionengine
2733
+ @Id = id
2734
+ end
2735
+
2736
+ def deserialize(params)
2737
+ @Statement = params['Statement']
2738
+ @Duration = params['Duration']
2739
+ @StartTime = params['StartTime']
2740
+ @EndTime = params['EndTime']
2741
+ @State = params['State']
2742
+ @User = params['User']
2743
+ @JobIds = params['JobIds']
2744
+ @ExecutionEngine = params['ExecutionEngine']
2745
+ @Id = params['Id']
2746
+ end
2747
+ end
2748
+
2503
2749
  # Pod HostPath挂载方式描述
2504
2750
  class HostVolumeContext < TencentCloud::Common::AbstractModel
2505
2751
  # @param VolumePath: Pod挂载宿主机的目录。资源对宿主机的挂载点,指定的挂载点对应了宿主机的路径,该挂载点在Pod中作为数据存储目录使用
@@ -2517,6 +2763,128 @@ module TencentCloud
2517
2763
  end
2518
2764
  end
2519
2765
 
2766
+ # Impala查询详情
2767
+ class ImpalaQuery < TencentCloud::Common::AbstractModel
2768
+ # @param Statement: 执行语句
2769
+ # 注意:此字段可能返回 null,表示取不到有效值。
2770
+ # @type Statement: String
2771
+ # @param Id: 查询ID
2772
+ # 注意:此字段可能返回 null,表示取不到有效值。
2773
+ # @type Id: String
2774
+ # @param StartTime: 开始时间
2775
+ # 注意:此字段可能返回 null,表示取不到有效值。
2776
+ # @type StartTime: Integer
2777
+ # @param Duration: 运行时间
2778
+ # 注意:此字段可能返回 null,表示取不到有效值。
2779
+ # @type Duration: String
2780
+ # @param EndTime: 结束时间
2781
+ # 注意:此字段可能返回 null,表示取不到有效值。
2782
+ # @type EndTime: Integer
2783
+ # @param State: 执行状态
2784
+ # 注意:此字段可能返回 null,表示取不到有效值。
2785
+ # @type State: String
2786
+ # @param RowsFetched: 获取行数
2787
+ # 注意:此字段可能返回 null,表示取不到有效值。
2788
+ # @type RowsFetched: Integer
2789
+ # @param User: 用户
2790
+ # 注意:此字段可能返回 null,表示取不到有效值。
2791
+ # @type User: String
2792
+ # @param DefaultDB: 默认DB
2793
+ # 注意:此字段可能返回 null,表示取不到有效值。
2794
+ # @type DefaultDB: String
2795
+ # @param Coordinator: 执行的Coordinator节点
2796
+ # 注意:此字段可能返回 null,表示取不到有效值。
2797
+ # @type Coordinator: String
2798
+ # @param MaxNodePeakMemoryUsage: 单节点内存峰值
2799
+ # 注意:此字段可能返回 null,表示取不到有效值。
2800
+ # @type MaxNodePeakMemoryUsage: String
2801
+ # @param QueryType: 查询类型
2802
+ # 注意:此字段可能返回 null,表示取不到有效值。
2803
+ # @type QueryType: String
2804
+ # @param ScanHDFSRows: 扫描的HDFS行数
2805
+ # 注意:此字段可能返回 null,表示取不到有效值。
2806
+ # @type ScanHDFSRows: Integer
2807
+ # @param ScanKUDURows: 扫描的Kudu行数
2808
+ # 注意:此字段可能返回 null,表示取不到有效值。
2809
+ # @type ScanKUDURows: Integer
2810
+ # @param ScanRowsTotal: 扫描的总行数
2811
+ # 注意:此字段可能返回 null,表示取不到有效值。
2812
+ # @type ScanRowsTotal: Integer
2813
+ # @param TotalBytesRead: 读取的总字节数
2814
+ # 注意:此字段可能返回 null,表示取不到有效值。
2815
+ # @type TotalBytesRead: Integer
2816
+ # @param TotalBytesSent: 发送的总字节数
2817
+ # 注意:此字段可能返回 null,表示取不到有效值。
2818
+ # @type TotalBytesSent: Integer
2819
+ # @param TotalCpuTime: CPU总时间
2820
+ # 注意:此字段可能返回 null,表示取不到有效值。
2821
+ # @type TotalCpuTime: Integer
2822
+ # @param TotalInnerBytesSent: 内部数据发送总量(Bytes)
2823
+ # 注意:此字段可能返回 null,表示取不到有效值。
2824
+ # @type TotalInnerBytesSent: Integer
2825
+ # @param TotalScanBytesSent: 内部扫描数据发送总量(Bytes)
2826
+ # 注意:此字段可能返回 null,表示取不到有效值。
2827
+ # @type TotalScanBytesSent: Integer
2828
+ # @param EstimatedPerHostMemBytes: 预估单节点内存
2829
+ # 注意:此字段可能返回 null,表示取不到有效值。
2830
+ # @type EstimatedPerHostMemBytes: Integer
2831
+ # @param NumRowsFetchedFromCache: 从缓存中获取的数据行数
2832
+ # 注意:此字段可能返回 null,表示取不到有效值。
2833
+ # @type NumRowsFetchedFromCache: Integer
2834
+
2835
+ attr_accessor :Statement, :Id, :StartTime, :Duration, :EndTime, :State, :RowsFetched, :User, :DefaultDB, :Coordinator, :MaxNodePeakMemoryUsage, :QueryType, :ScanHDFSRows, :ScanKUDURows, :ScanRowsTotal, :TotalBytesRead, :TotalBytesSent, :TotalCpuTime, :TotalInnerBytesSent, :TotalScanBytesSent, :EstimatedPerHostMemBytes, :NumRowsFetchedFromCache
2836
+
2837
+ def initialize(statement=nil, id=nil, starttime=nil, duration=nil, endtime=nil, state=nil, rowsfetched=nil, user=nil, defaultdb=nil, coordinator=nil, maxnodepeakmemoryusage=nil, querytype=nil, scanhdfsrows=nil, scankudurows=nil, scanrowstotal=nil, totalbytesread=nil, totalbytessent=nil, totalcputime=nil, totalinnerbytessent=nil, totalscanbytessent=nil, estimatedperhostmembytes=nil, numrowsfetchedfromcache=nil)
2838
+ @Statement = statement
2839
+ @Id = id
2840
+ @StartTime = starttime
2841
+ @Duration = duration
2842
+ @EndTime = endtime
2843
+ @State = state
2844
+ @RowsFetched = rowsfetched
2845
+ @User = user
2846
+ @DefaultDB = defaultdb
2847
+ @Coordinator = coordinator
2848
+ @MaxNodePeakMemoryUsage = maxnodepeakmemoryusage
2849
+ @QueryType = querytype
2850
+ @ScanHDFSRows = scanhdfsrows
2851
+ @ScanKUDURows = scankudurows
2852
+ @ScanRowsTotal = scanrowstotal
2853
+ @TotalBytesRead = totalbytesread
2854
+ @TotalBytesSent = totalbytessent
2855
+ @TotalCpuTime = totalcputime
2856
+ @TotalInnerBytesSent = totalinnerbytessent
2857
+ @TotalScanBytesSent = totalscanbytessent
2858
+ @EstimatedPerHostMemBytes = estimatedperhostmembytes
2859
+ @NumRowsFetchedFromCache = numrowsfetchedfromcache
2860
+ end
2861
+
2862
+ def deserialize(params)
2863
+ @Statement = params['Statement']
2864
+ @Id = params['Id']
2865
+ @StartTime = params['StartTime']
2866
+ @Duration = params['Duration']
2867
+ @EndTime = params['EndTime']
2868
+ @State = params['State']
2869
+ @RowsFetched = params['RowsFetched']
2870
+ @User = params['User']
2871
+ @DefaultDB = params['DefaultDB']
2872
+ @Coordinator = params['Coordinator']
2873
+ @MaxNodePeakMemoryUsage = params['MaxNodePeakMemoryUsage']
2874
+ @QueryType = params['QueryType']
2875
+ @ScanHDFSRows = params['ScanHDFSRows']
2876
+ @ScanKUDURows = params['ScanKUDURows']
2877
+ @ScanRowsTotal = params['ScanRowsTotal']
2878
+ @TotalBytesRead = params['TotalBytesRead']
2879
+ @TotalBytesSent = params['TotalBytesSent']
2880
+ @TotalCpuTime = params['TotalCpuTime']
2881
+ @TotalInnerBytesSent = params['TotalInnerBytesSent']
2882
+ @TotalScanBytesSent = params['TotalScanBytesSent']
2883
+ @EstimatedPerHostMemBytes = params['EstimatedPerHostMemBytes']
2884
+ @NumRowsFetchedFromCache = params['NumRowsFetchedFromCache']
2885
+ end
2886
+ end
2887
+
2520
2888
  # InquirePriceRenewEmr请求参数结构体
2521
2889
  class InquirePriceRenewEmrRequest < TencentCloud::Common::AbstractModel
2522
2890
  # @param TimeSpan: 实例续费的时长。需要结合TimeUnit一起使用。1表示续费1一个月
@@ -6183,6 +6551,263 @@ module TencentCloud
6183
6551
  end
6184
6552
  end
6185
6553
 
6554
+ # Yarn 运行的Application信息
6555
+ class YarnApplication < TencentCloud::Common::AbstractModel
6556
+ # @param Id: 应用ID
6557
+ # 注意:此字段可能返回 null,表示取不到有效值。
6558
+ # @type Id: String
6559
+ # @param User: 用户
6560
+ # 注意:此字段可能返回 null,表示取不到有效值。
6561
+ # @type User: String
6562
+ # @param Name: 应用名
6563
+ # 注意:此字段可能返回 null,表示取不到有效值。
6564
+ # @type Name: String
6565
+ # @param Queue: 队列
6566
+ # 注意:此字段可能返回 null,表示取不到有效值。
6567
+ # @type Queue: String
6568
+ # @param ApplicationType: 应用类型
6569
+ # 注意:此字段可能返回 null,表示取不到有效值。
6570
+ # @type ApplicationType: String
6571
+ # @param ElapsedTime: 运行时间
6572
+ # 注意:此字段可能返回 null,表示取不到有效值。
6573
+ # @type ElapsedTime: String
6574
+ # @param State: 状态
6575
+ # 注意:此字段可能返回 null,表示取不到有效值。
6576
+ # @type State: String
6577
+ # @param FinalStatus: 最终状态
6578
+ # 注意:此字段可能返回 null,表示取不到有效值。
6579
+ # @type FinalStatus: String
6580
+ # @param Progress: 进度
6581
+ # 注意:此字段可能返回 null,表示取不到有效值。
6582
+ # @type Progress: Integer
6583
+ # @param StartedTime: 开始时间毫秒
6584
+ # 注意:此字段可能返回 null,表示取不到有效值。
6585
+ # @type StartedTime: Integer
6586
+ # @param FinishedTime: 结束时间毫秒
6587
+ # 注意:此字段可能返回 null,表示取不到有效值。
6588
+ # @type FinishedTime: Integer
6589
+ # @param AllocatedMB: 申请内存MB
6590
+ # 注意:此字段可能返回 null,表示取不到有效值。
6591
+ # @type AllocatedMB: Integer
6592
+ # @param AllocatedVCores: 申请VCores
6593
+ # 注意:此字段可能返回 null,表示取不到有效值。
6594
+ # @type AllocatedVCores: Integer
6595
+ # @param RunningContainers: 运行的Containers数
6596
+ # 注意:此字段可能返回 null,表示取不到有效值。
6597
+ # @type RunningContainers: Integer
6598
+ # @param MemorySeconds: 内存MB*时间秒
6599
+ # 注意:此字段可能返回 null,表示取不到有效值。
6600
+ # @type MemorySeconds: Integer
6601
+ # @param VCoreSeconds: VCores*时间秒
6602
+ # 注意:此字段可能返回 null,表示取不到有效值。
6603
+ # @type VCoreSeconds: Integer
6604
+ # @param QueueUsagePercentage: 队列资源占比
6605
+ # 注意:此字段可能返回 null,表示取不到有效值。
6606
+ # @type QueueUsagePercentage: Float
6607
+ # @param ClusterUsagePercentage: 集群资源占比
6608
+ # 注意:此字段可能返回 null,表示取不到有效值。
6609
+ # @type ClusterUsagePercentage: Float
6610
+ # @param PreemptedResourceMB: 预占用的内存
6611
+ # 注意:此字段可能返回 null,表示取不到有效值。
6612
+ # @type PreemptedResourceMB: Integer
6613
+ # @param PreemptedResourceVCores: 预占用的VCore
6614
+ # 注意:此字段可能返回 null,表示取不到有效值。
6615
+ # @type PreemptedResourceVCores: Integer
6616
+ # @param NumNonAMContainerPreempted: 预占的非应用程序主节点容器数量
6617
+ # 注意:此字段可能返回 null,表示取不到有效值。
6618
+ # @type NumNonAMContainerPreempted: Integer
6619
+ # @param NumAMContainerPreempted: AM预占用的容器数量
6620
+ # 注意:此字段可能返回 null,表示取不到有效值。
6621
+ # @type NumAMContainerPreempted: Integer
6622
+ # @param MapsTotal: Map总数
6623
+ # 注意:此字段可能返回 null,表示取不到有效值。
6624
+ # @type MapsTotal: Integer
6625
+ # @param MapsCompleted: 完成的Map数
6626
+ # 注意:此字段可能返回 null,表示取不到有效值。
6627
+ # @type MapsCompleted: Integer
6628
+ # @param ReducesTotal: Reduce总数
6629
+ # 注意:此字段可能返回 null,表示取不到有效值。
6630
+ # @type ReducesTotal: Integer
6631
+ # @param ReducesCompleted: 完成的Reduce数
6632
+ # 注意:此字段可能返回 null,表示取不到有效值。
6633
+ # @type ReducesCompleted: Integer
6634
+ # @param AvgMapTime: 平均Map时间
6635
+ # 注意:此字段可能返回 null,表示取不到有效值。
6636
+ # @type AvgMapTime: Integer
6637
+ # @param AvgReduceTime: 平均Reduce时间
6638
+ # 注意:此字段可能返回 null,表示取不到有效值。
6639
+ # @type AvgReduceTime: Integer
6640
+ # @param AvgShuffleTime: 平均Shuffle时间毫秒
6641
+ # 注意:此字段可能返回 null,表示取不到有效值。
6642
+ # @type AvgShuffleTime: Integer
6643
+ # @param AvgMergeTime: 平均Merge时间毫秒
6644
+ # 注意:此字段可能返回 null,表示取不到有效值。
6645
+ # @type AvgMergeTime: Integer
6646
+ # @param FailedReduceAttempts: 失败的Reduce执行次数
6647
+ # 注意:此字段可能返回 null,表示取不到有效值。
6648
+ # @type FailedReduceAttempts: Integer
6649
+ # @param KilledReduceAttempts: Kill的Reduce执行次数
6650
+ # 注意:此字段可能返回 null,表示取不到有效值。
6651
+ # @type KilledReduceAttempts: Integer
6652
+ # @param SuccessfulReduceAttempts: 成功的Reduce执行次数
6653
+ # 注意:此字段可能返回 null,表示取不到有效值。
6654
+ # @type SuccessfulReduceAttempts: Integer
6655
+ # @param FailedMapAttempts: 失败的Map执行次数
6656
+ # 注意:此字段可能返回 null,表示取不到有效值。
6657
+ # @type FailedMapAttempts: Integer
6658
+ # @param KilledMapAttempts: Kill的Map执行次数
6659
+ # 注意:此字段可能返回 null,表示取不到有效值。
6660
+ # @type KilledMapAttempts: Integer
6661
+ # @param SuccessfulMapAttempts: 成功的Map执行次数
6662
+ # 注意:此字段可能返回 null,表示取不到有效值。
6663
+ # @type SuccessfulMapAttempts: Integer
6664
+ # @param GcTimeMillis: GC毫秒
6665
+ # 注意:此字段可能返回 null,表示取不到有效值。
6666
+ # @type GcTimeMillis: Integer
6667
+ # @param VCoreMillisMaps: Map使用的VCore毫秒
6668
+ # 注意:此字段可能返回 null,表示取不到有效值。
6669
+ # @type VCoreMillisMaps: Integer
6670
+ # @param MbMillisMaps: Map使用的内存毫秒
6671
+ # 注意:此字段可能返回 null,表示取不到有效值。
6672
+ # @type MbMillisMaps: Integer
6673
+ # @param VCoreMillisReduces: Reduce使用的VCore毫秒
6674
+ # 注意:此字段可能返回 null,表示取不到有效值。
6675
+ # @type VCoreMillisReduces: Integer
6676
+ # @param MbMillisReduces: Reduce使用的内存毫秒
6677
+ # 注意:此字段可能返回 null,表示取不到有效值。
6678
+ # @type MbMillisReduces: Integer
6679
+ # @param TotalLaunchedMaps: 启动Map的总数
6680
+ # 注意:此字段可能返回 null,表示取不到有效值。
6681
+ # @type TotalLaunchedMaps: Integer
6682
+ # @param TotalLaunchedReduces: 启动Reduce的总数
6683
+ # 注意:此字段可能返回 null,表示取不到有效值。
6684
+ # @type TotalLaunchedReduces: Integer
6685
+ # @param MapInputRecords: Map输入记录数
6686
+ # 注意:此字段可能返回 null,表示取不到有效值。
6687
+ # @type MapInputRecords: Integer
6688
+ # @param MapOutputRecords: Map输出记录数
6689
+ # 注意:此字段可能返回 null,表示取不到有效值。
6690
+ # @type MapOutputRecords: Integer
6691
+ # @param ReduceInputRecords: Reduce输入记录数
6692
+ # 注意:此字段可能返回 null,表示取不到有效值。
6693
+ # @type ReduceInputRecords: Integer
6694
+ # @param ReduceOutputRecords: Reduce输出记录数
6695
+ # 注意:此字段可能返回 null,表示取不到有效值。
6696
+ # @type ReduceOutputRecords: Integer
6697
+ # @param HDFSBytesWritten: HDFS写入字节数
6698
+ # 注意:此字段可能返回 null,表示取不到有效值。
6699
+ # @type HDFSBytesWritten: Integer
6700
+ # @param HDFSBytesRead: HDFS读取字节数
6701
+ # 注意:此字段可能返回 null,表示取不到有效值。
6702
+ # @type HDFSBytesRead: Integer
6703
+
6704
+ attr_accessor :Id, :User, :Name, :Queue, :ApplicationType, :ElapsedTime, :State, :FinalStatus, :Progress, :StartedTime, :FinishedTime, :AllocatedMB, :AllocatedVCores, :RunningContainers, :MemorySeconds, :VCoreSeconds, :QueueUsagePercentage, :ClusterUsagePercentage, :PreemptedResourceMB, :PreemptedResourceVCores, :NumNonAMContainerPreempted, :NumAMContainerPreempted, :MapsTotal, :MapsCompleted, :ReducesTotal, :ReducesCompleted, :AvgMapTime, :AvgReduceTime, :AvgShuffleTime, :AvgMergeTime, :FailedReduceAttempts, :KilledReduceAttempts, :SuccessfulReduceAttempts, :FailedMapAttempts, :KilledMapAttempts, :SuccessfulMapAttempts, :GcTimeMillis, :VCoreMillisMaps, :MbMillisMaps, :VCoreMillisReduces, :MbMillisReduces, :TotalLaunchedMaps, :TotalLaunchedReduces, :MapInputRecords, :MapOutputRecords, :ReduceInputRecords, :ReduceOutputRecords, :HDFSBytesWritten, :HDFSBytesRead
6705
+
6706
+ def initialize(id=nil, user=nil, name=nil, queue=nil, applicationtype=nil, elapsedtime=nil, state=nil, finalstatus=nil, progress=nil, startedtime=nil, finishedtime=nil, allocatedmb=nil, allocatedvcores=nil, runningcontainers=nil, memoryseconds=nil, vcoreseconds=nil, queueusagepercentage=nil, clusterusagepercentage=nil, preemptedresourcemb=nil, preemptedresourcevcores=nil, numnonamcontainerpreempted=nil, numamcontainerpreempted=nil, mapstotal=nil, mapscompleted=nil, reducestotal=nil, reducescompleted=nil, avgmaptime=nil, avgreducetime=nil, avgshuffletime=nil, avgmergetime=nil, failedreduceattempts=nil, killedreduceattempts=nil, successfulreduceattempts=nil, failedmapattempts=nil, killedmapattempts=nil, successfulmapattempts=nil, gctimemillis=nil, vcoremillismaps=nil, mbmillismaps=nil, vcoremillisreduces=nil, mbmillisreduces=nil, totallaunchedmaps=nil, totallaunchedreduces=nil, mapinputrecords=nil, mapoutputrecords=nil, reduceinputrecords=nil, reduceoutputrecords=nil, hdfsbyteswritten=nil, hdfsbytesread=nil)
6707
+ @Id = id
6708
+ @User = user
6709
+ @Name = name
6710
+ @Queue = queue
6711
+ @ApplicationType = applicationtype
6712
+ @ElapsedTime = elapsedtime
6713
+ @State = state
6714
+ @FinalStatus = finalstatus
6715
+ @Progress = progress
6716
+ @StartedTime = startedtime
6717
+ @FinishedTime = finishedtime
6718
+ @AllocatedMB = allocatedmb
6719
+ @AllocatedVCores = allocatedvcores
6720
+ @RunningContainers = runningcontainers
6721
+ @MemorySeconds = memoryseconds
6722
+ @VCoreSeconds = vcoreseconds
6723
+ @QueueUsagePercentage = queueusagepercentage
6724
+ @ClusterUsagePercentage = clusterusagepercentage
6725
+ @PreemptedResourceMB = preemptedresourcemb
6726
+ @PreemptedResourceVCores = preemptedresourcevcores
6727
+ @NumNonAMContainerPreempted = numnonamcontainerpreempted
6728
+ @NumAMContainerPreempted = numamcontainerpreempted
6729
+ @MapsTotal = mapstotal
6730
+ @MapsCompleted = mapscompleted
6731
+ @ReducesTotal = reducestotal
6732
+ @ReducesCompleted = reducescompleted
6733
+ @AvgMapTime = avgmaptime
6734
+ @AvgReduceTime = avgreducetime
6735
+ @AvgShuffleTime = avgshuffletime
6736
+ @AvgMergeTime = avgmergetime
6737
+ @FailedReduceAttempts = failedreduceattempts
6738
+ @KilledReduceAttempts = killedreduceattempts
6739
+ @SuccessfulReduceAttempts = successfulreduceattempts
6740
+ @FailedMapAttempts = failedmapattempts
6741
+ @KilledMapAttempts = killedmapattempts
6742
+ @SuccessfulMapAttempts = successfulmapattempts
6743
+ @GcTimeMillis = gctimemillis
6744
+ @VCoreMillisMaps = vcoremillismaps
6745
+ @MbMillisMaps = mbmillismaps
6746
+ @VCoreMillisReduces = vcoremillisreduces
6747
+ @MbMillisReduces = mbmillisreduces
6748
+ @TotalLaunchedMaps = totallaunchedmaps
6749
+ @TotalLaunchedReduces = totallaunchedreduces
6750
+ @MapInputRecords = mapinputrecords
6751
+ @MapOutputRecords = mapoutputrecords
6752
+ @ReduceInputRecords = reduceinputrecords
6753
+ @ReduceOutputRecords = reduceoutputrecords
6754
+ @HDFSBytesWritten = hdfsbyteswritten
6755
+ @HDFSBytesRead = hdfsbytesread
6756
+ end
6757
+
6758
+ def deserialize(params)
6759
+ @Id = params['Id']
6760
+ @User = params['User']
6761
+ @Name = params['Name']
6762
+ @Queue = params['Queue']
6763
+ @ApplicationType = params['ApplicationType']
6764
+ @ElapsedTime = params['ElapsedTime']
6765
+ @State = params['State']
6766
+ @FinalStatus = params['FinalStatus']
6767
+ @Progress = params['Progress']
6768
+ @StartedTime = params['StartedTime']
6769
+ @FinishedTime = params['FinishedTime']
6770
+ @AllocatedMB = params['AllocatedMB']
6771
+ @AllocatedVCores = params['AllocatedVCores']
6772
+ @RunningContainers = params['RunningContainers']
6773
+ @MemorySeconds = params['MemorySeconds']
6774
+ @VCoreSeconds = params['VCoreSeconds']
6775
+ @QueueUsagePercentage = params['QueueUsagePercentage']
6776
+ @ClusterUsagePercentage = params['ClusterUsagePercentage']
6777
+ @PreemptedResourceMB = params['PreemptedResourceMB']
6778
+ @PreemptedResourceVCores = params['PreemptedResourceVCores']
6779
+ @NumNonAMContainerPreempted = params['NumNonAMContainerPreempted']
6780
+ @NumAMContainerPreempted = params['NumAMContainerPreempted']
6781
+ @MapsTotal = params['MapsTotal']
6782
+ @MapsCompleted = params['MapsCompleted']
6783
+ @ReducesTotal = params['ReducesTotal']
6784
+ @ReducesCompleted = params['ReducesCompleted']
6785
+ @AvgMapTime = params['AvgMapTime']
6786
+ @AvgReduceTime = params['AvgReduceTime']
6787
+ @AvgShuffleTime = params['AvgShuffleTime']
6788
+ @AvgMergeTime = params['AvgMergeTime']
6789
+ @FailedReduceAttempts = params['FailedReduceAttempts']
6790
+ @KilledReduceAttempts = params['KilledReduceAttempts']
6791
+ @SuccessfulReduceAttempts = params['SuccessfulReduceAttempts']
6792
+ @FailedMapAttempts = params['FailedMapAttempts']
6793
+ @KilledMapAttempts = params['KilledMapAttempts']
6794
+ @SuccessfulMapAttempts = params['SuccessfulMapAttempts']
6795
+ @GcTimeMillis = params['GcTimeMillis']
6796
+ @VCoreMillisMaps = params['VCoreMillisMaps']
6797
+ @MbMillisMaps = params['MbMillisMaps']
6798
+ @VCoreMillisReduces = params['VCoreMillisReduces']
6799
+ @MbMillisReduces = params['MbMillisReduces']
6800
+ @TotalLaunchedMaps = params['TotalLaunchedMaps']
6801
+ @TotalLaunchedReduces = params['TotalLaunchedReduces']
6802
+ @MapInputRecords = params['MapInputRecords']
6803
+ @MapOutputRecords = params['MapOutputRecords']
6804
+ @ReduceInputRecords = params['ReduceInputRecords']
6805
+ @ReduceOutputRecords = params['ReduceOutputRecords']
6806
+ @HDFSBytesWritten = params['HDFSBytesWritten']
6807
+ @HDFSBytesRead = params['HDFSBytesRead']
6808
+ end
6809
+ end
6810
+
6186
6811
  # 用于创建集群价格清单 不同可用区下价格详情
6187
6812
  class ZoneDetailPriceResult < TencentCloud::Common::AbstractModel
6188
6813
  # @param ZoneId: 可用区Id
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-emr
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.605
4
+ version: 3.0.606
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tencent Cloud
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-07-04 00:00:00.000000000 Z
11
+ date: 2023-07-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common