tencentcloud-sdk-emr 3.0.669 → 3.0.670

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/lib/VERSION +1 -1
  3. data/lib/v20190103/models.rb +38 -4
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 4e9bc43ae91c8f98bda9ef94297c2d427ed59f23
4
- data.tar.gz: 792d7fbeb480c0e246face123b6ada9bd264e735
3
+ metadata.gz: c1d0a4f52bd549f732878206a34ad279412fbf89
4
+ data.tar.gz: c0e360b2a6b05e3ccfa528144650eae92e26acc3
5
5
  SHA512:
6
- metadata.gz: 913ee1efc71117d3836555a4bbf2503c63469aad09e268d947cc0089fb0833667435477e15977f5b2976f4ee17ffacff0c43240e2522e4e5f9fb971bfbcdab37
7
- data.tar.gz: 6b00ca41dd6953862f8821701aba39c5e1e8e313f00ed8a1cef422a6ffa925b7dd9557e22c2d980f555386db72d0ecce8eb4e9aebd4829a79678dc6f3e8180d9
6
+ metadata.gz: d699c897044b4f8cfbd9e59d31179d912217e9b7715279829d859c077b01b764e1abf5a6d6ccc8bb311c0042d36bb4d90d850b200dea09dcf61b2b9b076e4e4d
7
+ data.tar.gz: a965b842cd5d223c88cc49bfad8417430759967911ead1b4a918122c435720c79fb4778be242c59e3d3e1d932ae10f30b1264b1fa1c296415ac4869a3705477a
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.669
1
+ 3.0.670
@@ -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>EMR_NEW_META:表示集群默认创建</li>
1006
- # <li>EMR_EXIT_META:表示集群使用指定EMR-MetaDB。</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.669
4
+ version: 3.0.670
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-09-27 00:00:00.000000000 Z
11
+ date: 2023-09-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common