tencentcloud-sdk-emr 3.0.939 → 3.0.940
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 +4 -4
- data/lib/VERSION +1 -1
- data/lib/v20190103/models.rb +25 -3
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 14dc1d00a5a7ba26a2bad83cd5ddbd6ff8419bbf
|
4
|
+
data.tar.gz: a1f86a6685edf9d2fac4011b6c3dee998683fd60
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5e5b7f48d3497cf88ddf72d1e2f94c0614d748e273fe5e05848d3ba89270a3ca01caa1d3d12ef1512107dbee68ab44b01bdce80ce99255d1a44d521f58b818d2
|
7
|
+
data.tar.gz: 9cd46dc37ecb63411ab159668489d9584aa0a931726d9bb4697035a497947c4bd57e7af3305f145eb24a7cfe488cbde6a43ba522d4942ad944658c55dccf0c64
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.940
|
data/lib/v20190103/models.rb
CHANGED
@@ -2590,7 +2590,7 @@ module TencentCloud
|
|
2590
2590
|
class DescribeEmrOverviewMetricsRequest < TencentCloud::Common::AbstractModel
|
2591
2591
|
# @param End: 结束时间
|
2592
2592
|
# @type End: Integer
|
2593
|
-
# @param Metric:
|
2593
|
+
# @param Metric: 指标名,NODE.CPU:节点平均CPU利用率和总核数;NODE.CPU.SLHBASE:Serverless实例平均CPU利用率和总核数;HDFS.NN.CAPACITY:存储使用率和总量
|
2594
2594
|
# @type Metric: String
|
2595
2595
|
# @param InstanceId: 集群id
|
2596
2596
|
# @type InstanceId: String
|
@@ -8874,10 +8874,19 @@ module TencentCloud
|
|
8874
8874
|
# @type Spec: String
|
8875
8875
|
# @param StorageType: 磁盘类型
|
8876
8876
|
# @type StorageType: Integer
|
8877
|
+
# @param RootSize: 系统盘大小
|
8878
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
8879
|
+
# @type RootSize: Integer
|
8880
|
+
# @param RootStorageType: 系统盘类型
|
8881
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
8882
|
+
# @type RootStorageType: Integer
|
8883
|
+
# @param MCMultiDisk: 数据盘信息
|
8884
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
8885
|
+
# @type MCMultiDisk: Array
|
8877
8886
|
|
8878
|
-
attr_accessor :EmrResourceId, :Flag, :Ip, :MemDesc, :CpuNum, :DiskSize, :ExpireTime, :Spec, :StorageType
|
8887
|
+
attr_accessor :EmrResourceId, :Flag, :Ip, :MemDesc, :CpuNum, :DiskSize, :ExpireTime, :Spec, :StorageType, :RootSize, :RootStorageType, :MCMultiDisk
|
8879
8888
|
|
8880
|
-
def initialize(emrresourceid=nil, flag=nil, ip=nil, memdesc=nil, cpunum=nil, disksize=nil, expiretime=nil, spec=nil, storagetype=nil)
|
8889
|
+
def initialize(emrresourceid=nil, flag=nil, ip=nil, memdesc=nil, cpunum=nil, disksize=nil, expiretime=nil, spec=nil, storagetype=nil, rootsize=nil, rootstoragetype=nil, mcmultidisk=nil)
|
8881
8890
|
@EmrResourceId = emrresourceid
|
8882
8891
|
@Flag = flag
|
8883
8892
|
@Ip = ip
|
@@ -8887,6 +8896,9 @@ module TencentCloud
|
|
8887
8896
|
@ExpireTime = expiretime
|
8888
8897
|
@Spec = spec
|
8889
8898
|
@StorageType = storagetype
|
8899
|
+
@RootSize = rootsize
|
8900
|
+
@RootStorageType = rootstoragetype
|
8901
|
+
@MCMultiDisk = mcmultidisk
|
8890
8902
|
end
|
8891
8903
|
|
8892
8904
|
def deserialize(params)
|
@@ -8899,6 +8911,16 @@ module TencentCloud
|
|
8899
8911
|
@ExpireTime = params['ExpireTime']
|
8900
8912
|
@Spec = params['Spec']
|
8901
8913
|
@StorageType = params['StorageType']
|
8914
|
+
@RootSize = params['RootSize']
|
8915
|
+
@RootStorageType = params['RootStorageType']
|
8916
|
+
unless params['MCMultiDisk'].nil?
|
8917
|
+
@MCMultiDisk = []
|
8918
|
+
params['MCMultiDisk'].each do |i|
|
8919
|
+
multidiskmc_tmp = MultiDiskMC.new
|
8920
|
+
multidiskmc_tmp.deserialize(i)
|
8921
|
+
@MCMultiDisk << multidiskmc_tmp
|
8922
|
+
end
|
8923
|
+
end
|
8902
8924
|
end
|
8903
8925
|
end
|
8904
8926
|
|
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.
|
4
|
+
version: 3.0.940
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tencent Cloud
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-11-
|
11
|
+
date: 2024-11-12 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|