tencentcloud-sdk-emr 3.0.669 → 3.0.671
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/VERSION +1 -1
- data/lib/v20190103/models.rb +38 -4
- 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: 6b5ea6da2c1167f48e578cd5a667b8f4c5e7ec19
|
4
|
+
data.tar.gz: e63f2cc5384d67b49d45a1383669ee389a069793
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8af44697601b243719f719ff1b90a292de220e4dab8db3ef01ee145a7d10f706918b32e32228fa0139a9e4e332563c9d54a469968c90229b627f6bed8836cea0
|
7
|
+
data.tar.gz: dc012fdaa483ccd8be15c63b28a34714288e7a4e06c310e6bafd6daa724b2bdc33b2dc8fcaa301fffa860ce90fccc81ec7daa77a07d700e66a3429f897d4ef2b
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.671
|
data/lib/v20190103/models.rb
CHANGED
@@ -348,6 +348,28 @@ module TencentCloud
|
|
348
348
|
end
|
349
349
|
end
|
350
350
|
|
351
|
+
# 集群id与流程id的mapping
|
352
|
+
class ClusterIDToFlowID < TencentCloud::Common::AbstractModel
|
353
|
+
# @param ClusterId: 集群id
|
354
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
355
|
+
# @type ClusterId: String
|
356
|
+
# @param FlowId: 流程id
|
357
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
358
|
+
# @type FlowId: Integer
|
359
|
+
|
360
|
+
attr_accessor :ClusterId, :FlowId
|
361
|
+
|
362
|
+
def initialize(clusterid=nil, flowid=nil)
|
363
|
+
@ClusterId = clusterid
|
364
|
+
@FlowId = flowid
|
365
|
+
end
|
366
|
+
|
367
|
+
def deserialize(params)
|
368
|
+
@ClusterId = params['ClusterId']
|
369
|
+
@FlowId = params['FlowId']
|
370
|
+
end
|
371
|
+
end
|
372
|
+
|
351
373
|
# 集群实例信息
|
352
374
|
class ClusterInstancesInfo < TencentCloud::Common::AbstractModel
|
353
375
|
# @param Id: ID号
|
@@ -1002,8 +1024,8 @@ module TencentCloud
|
|
1002
1024
|
# @param CbsEncrypt: 集群维度CBS加密盘,默认0表示不加密,1表示加密
|
1003
1025
|
# @type CbsEncrypt: Integer
|
1004
1026
|
# @param MetaType: hive共享元数据库类型。取值范围:
|
1005
|
-
# <li>
|
1006
|
-
# <li>
|
1027
|
+
# <li>EMR_DEFAULT_META:表示集群默认创建</li>
|
1028
|
+
# <li>EMR_EXIST_META:表示集群使用指定EMR-MetaDB。</li>
|
1007
1029
|
# <li>USER_CUSTOM_META:表示集群使用自定义MetaDB。</li>
|
1008
1030
|
# @type MetaType: String
|
1009
1031
|
# @param UnifyMetaInstanceId: EMR-MetaDB实例
|
@@ -3891,15 +3913,19 @@ module TencentCloud
|
|
3891
3913
|
# @param PartSuccessList: 部分成功的资源id列表
|
3892
3914
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
3893
3915
|
# @type PartSuccessList: Array
|
3916
|
+
# @param ClusterToFlowIdList: 集群id与流程id的映射列表
|
3917
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
3918
|
+
# @type ClusterToFlowIdList: Array
|
3894
3919
|
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
3895
3920
|
# @type RequestId: String
|
3896
3921
|
|
3897
|
-
attr_accessor :SuccessList, :FailList, :PartSuccessList, :RequestId
|
3922
|
+
attr_accessor :SuccessList, :FailList, :PartSuccessList, :ClusterToFlowIdList, :RequestId
|
3898
3923
|
|
3899
|
-
def initialize(successlist=nil, faillist=nil, partsuccesslist=nil, requestid=nil)
|
3924
|
+
def initialize(successlist=nil, faillist=nil, partsuccesslist=nil, clustertoflowidlist=nil, requestid=nil)
|
3900
3925
|
@SuccessList = successlist
|
3901
3926
|
@FailList = faillist
|
3902
3927
|
@PartSuccessList = partsuccesslist
|
3928
|
+
@ClusterToFlowIdList = clustertoflowidlist
|
3903
3929
|
@RequestId = requestid
|
3904
3930
|
end
|
3905
3931
|
|
@@ -3907,6 +3933,14 @@ module TencentCloud
|
|
3907
3933
|
@SuccessList = params['SuccessList']
|
3908
3934
|
@FailList = params['FailList']
|
3909
3935
|
@PartSuccessList = params['PartSuccessList']
|
3936
|
+
unless params['ClusterToFlowIdList'].nil?
|
3937
|
+
@ClusterToFlowIdList = []
|
3938
|
+
params['ClusterToFlowIdList'].each do |i|
|
3939
|
+
clusteridtoflowid_tmp = ClusterIDToFlowID.new
|
3940
|
+
clusteridtoflowid_tmp.deserialize(i)
|
3941
|
+
@ClusterToFlowIdList << clusteridtoflowid_tmp
|
3942
|
+
end
|
3943
|
+
end
|
3910
3944
|
@RequestId = params['RequestId']
|
3911
3945
|
end
|
3912
3946
|
end
|
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.671
|
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-
|
11
|
+
date: 2023-10-07 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|