tencentcloud-sdk-emr 3.0.404 → 3.0.405
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 +41 -9
- 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: 3217cc6c1475734d7ee6ae3dc9aca21f7ab4029c
|
4
|
+
data.tar.gz: ce93ebb8abce37d52d37833cf7b4fa09698ffa5b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 73b822de70647d7f7b78f1a2dc23fa50d944bacea3e178e67d1fb59b762e99410647d0a13f95bd32326551dc6d2df9fc157a0639d71162a82131439f5e8a9c1c
|
7
|
+
data.tar.gz: f31ccdd50fdff22c4e113dc8435195b275ddcb94af1c6ebcfe92ec73d94613846cd857a75fb2fd0072b4a406858a3d325fdc5a238ebd08c491110269f083ed4b
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.405
|
data/lib/v20190103/models.rb
CHANGED
@@ -568,7 +568,7 @@ module TencentCloud
|
|
568
568
|
# @type VPCSettings: :class:`Tencentcloud::Emr.v20190103.models.VPCSettings`
|
569
569
|
# @param LoginSettings: 实例登录配置。
|
570
570
|
# @type LoginSettings: :class:`Tencentcloud::Emr.v20190103.models.LoginSettings`
|
571
|
-
# @param TagSpecification:
|
571
|
+
# @param TagSpecification: 实例标签,示例:["{\"TagKey\":\"test-tag1\",\"TagValue\":\"001\"}","{\"TagKey\":\"test-tag2\",\"TagValue\":\"002\"}"]。
|
572
572
|
# @type TagSpecification: Array
|
573
573
|
# @param MetaDB: 元数据库配置。
|
574
574
|
# @type MetaDB: :class:`Tencentcloud::Emr.v20190103.models.MetaDbInfo`
|
@@ -980,16 +980,22 @@ module TencentCloud
|
|
980
980
|
# @type HardwareResourceType: String
|
981
981
|
# @param SearchFields: 支持搜索的字段
|
982
982
|
# @type SearchFields: Array
|
983
|
+
# @param OrderField: 无
|
984
|
+
# @type OrderField: String
|
985
|
+
# @param Asc: 无
|
986
|
+
# @type Asc: Integer
|
983
987
|
|
984
|
-
attr_accessor :InstanceId, :NodeFlag, :Offset, :Limit, :HardwareResourceType, :SearchFields
|
988
|
+
attr_accessor :InstanceId, :NodeFlag, :Offset, :Limit, :HardwareResourceType, :SearchFields, :OrderField, :Asc
|
985
989
|
|
986
|
-
def initialize(instanceid=nil, nodeflag=nil, offset=nil, limit=nil, hardwareresourcetype=nil, searchfields=nil)
|
990
|
+
def initialize(instanceid=nil, nodeflag=nil, offset=nil, limit=nil, hardwareresourcetype=nil, searchfields=nil, orderfield=nil, asc=nil)
|
987
991
|
@InstanceId = instanceid
|
988
992
|
@NodeFlag = nodeflag
|
989
993
|
@Offset = offset
|
990
994
|
@Limit = limit
|
991
995
|
@HardwareResourceType = hardwareresourcetype
|
992
996
|
@SearchFields = searchfields
|
997
|
+
@OrderField = orderfield
|
998
|
+
@Asc = asc
|
993
999
|
end
|
994
1000
|
|
995
1001
|
def deserialize(params)
|
@@ -1006,6 +1012,8 @@ module TencentCloud
|
|
1006
1012
|
@SearchFields << searchitem_tmp
|
1007
1013
|
end
|
1008
1014
|
end
|
1015
|
+
@OrderField = params['OrderField']
|
1016
|
+
@Asc = params['Asc']
|
1009
1017
|
end
|
1010
1018
|
end
|
1011
1019
|
|
@@ -2692,19 +2700,24 @@ module TencentCloud
|
|
2692
2700
|
# “JobFlowStepStatusSucceed”,任务步骤执行成功。
|
2693
2701
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
2694
2702
|
# @type JobState: String
|
2703
|
+
# @param ApplicationId: YARN任务ID
|
2704
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
2705
|
+
# @type ApplicationId: String
|
2695
2706
|
|
2696
|
-
attr_accessor :Name, :ActionOnFailure, :JobState
|
2707
|
+
attr_accessor :Name, :ActionOnFailure, :JobState, :ApplicationId
|
2697
2708
|
|
2698
|
-
def initialize(name=nil, actiononfailure=nil, jobstate=nil)
|
2709
|
+
def initialize(name=nil, actiononfailure=nil, jobstate=nil, applicationid=nil)
|
2699
2710
|
@Name = name
|
2700
2711
|
@ActionOnFailure = actiononfailure
|
2701
2712
|
@JobState = jobstate
|
2713
|
+
@ApplicationId = applicationid
|
2702
2714
|
end
|
2703
2715
|
|
2704
2716
|
def deserialize(params)
|
2705
2717
|
@Name = params['Name']
|
2706
2718
|
@ActionOnFailure = params['ActionOnFailure']
|
2707
2719
|
@JobState = params['JobState']
|
2720
|
+
@ApplicationId = params['ApplicationId']
|
2708
2721
|
end
|
2709
2722
|
end
|
2710
2723
|
|
@@ -3172,10 +3185,22 @@ module TencentCloud
|
|
3172
3185
|
# @param Clients: 客户端
|
3173
3186
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
3174
3187
|
# @type Clients: String
|
3188
|
+
# @param CurrentTime: 系统当前时间
|
3189
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
3190
|
+
# @type CurrentTime: String
|
3191
|
+
# @param IsFederation: 是否用于联邦
|
3192
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
3193
|
+
# @type IsFederation: Integer
|
3194
|
+
# @param DeviceName: 设备名称
|
3195
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
3196
|
+
# @type DeviceName: String
|
3197
|
+
# @param ServiceClient: 服务
|
3198
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
3199
|
+
# @type ServiceClient: String
|
3175
3200
|
|
3176
|
-
attr_accessor :AppId, :SerialNo, :OrderNo, :WanIp, :Flag, :Spec, :CpuNum, :MemSize, :MemDesc, :RegionId, :ZoneId, :ApplyTime, :FreeTime, :DiskSize, :NameTag, :Services, :StorageType, :RootSize, :ChargeType, :CdbIp, :CdbPort, :HwDiskSize, :HwDiskSizeDesc, :HwMemSize, :HwMemSizeDesc, :ExpireTime, :EmrResourceId, :IsAutoRenew, :DeviceClass, :Mutable, :MCMultiDisk, :CdbNodeInfo, :Ip, :Destroyable, :Tags, :AutoFlag, :HardwareResourceType, :IsDynamicSpec, :DynamicPodSpec, :SupportModifyPayMode, :RootStorageType, :Zone, :SubnetInfo, :Clients
|
3201
|
+
attr_accessor :AppId, :SerialNo, :OrderNo, :WanIp, :Flag, :Spec, :CpuNum, :MemSize, :MemDesc, :RegionId, :ZoneId, :ApplyTime, :FreeTime, :DiskSize, :NameTag, :Services, :StorageType, :RootSize, :ChargeType, :CdbIp, :CdbPort, :HwDiskSize, :HwDiskSizeDesc, :HwMemSize, :HwMemSizeDesc, :ExpireTime, :EmrResourceId, :IsAutoRenew, :DeviceClass, :Mutable, :MCMultiDisk, :CdbNodeInfo, :Ip, :Destroyable, :Tags, :AutoFlag, :HardwareResourceType, :IsDynamicSpec, :DynamicPodSpec, :SupportModifyPayMode, :RootStorageType, :Zone, :SubnetInfo, :Clients, :CurrentTime, :IsFederation, :DeviceName, :ServiceClient
|
3177
3202
|
|
3178
|
-
def initialize(appid=nil, serialno=nil, orderno=nil, wanip=nil, flag=nil, spec=nil, cpunum=nil, memsize=nil, memdesc=nil, regionid=nil, zoneid=nil, applytime=nil, freetime=nil, disksize=nil, nametag=nil, services=nil, storagetype=nil, rootsize=nil, chargetype=nil, cdbip=nil, cdbport=nil, hwdisksize=nil, hwdisksizedesc=nil, hwmemsize=nil, hwmemsizedesc=nil, expiretime=nil, emrresourceid=nil, isautorenew=nil, deviceclass=nil, mutable=nil, mcmultidisk=nil, cdbnodeinfo=nil, ip=nil, destroyable=nil, tags=nil, autoflag=nil, hardwareresourcetype=nil, isdynamicspec=nil, dynamicpodspec=nil, supportmodifypaymode=nil, rootstoragetype=nil, zone=nil, subnetinfo=nil, clients=nil)
|
3203
|
+
def initialize(appid=nil, serialno=nil, orderno=nil, wanip=nil, flag=nil, spec=nil, cpunum=nil, memsize=nil, memdesc=nil, regionid=nil, zoneid=nil, applytime=nil, freetime=nil, disksize=nil, nametag=nil, services=nil, storagetype=nil, rootsize=nil, chargetype=nil, cdbip=nil, cdbport=nil, hwdisksize=nil, hwdisksizedesc=nil, hwmemsize=nil, hwmemsizedesc=nil, expiretime=nil, emrresourceid=nil, isautorenew=nil, deviceclass=nil, mutable=nil, mcmultidisk=nil, cdbnodeinfo=nil, ip=nil, destroyable=nil, tags=nil, autoflag=nil, hardwareresourcetype=nil, isdynamicspec=nil, dynamicpodspec=nil, supportmodifypaymode=nil, rootstoragetype=nil, zone=nil, subnetinfo=nil, clients=nil, currenttime=nil, isfederation=nil, devicename=nil, serviceclient=nil)
|
3179
3204
|
@AppId = appid
|
3180
3205
|
@SerialNo = serialno
|
3181
3206
|
@OrderNo = orderno
|
@@ -3220,6 +3245,10 @@ module TencentCloud
|
|
3220
3245
|
@Zone = zone
|
3221
3246
|
@SubnetInfo = subnetinfo
|
3222
3247
|
@Clients = clients
|
3248
|
+
@CurrentTime = currenttime
|
3249
|
+
@IsFederation = isfederation
|
3250
|
+
@DeviceName = devicename
|
3251
|
+
@ServiceClient = serviceclient
|
3223
3252
|
end
|
3224
3253
|
|
3225
3254
|
def deserialize(params)
|
@@ -3287,6 +3316,10 @@ module TencentCloud
|
|
3287
3316
|
@SubnetInfo.deserialize(params['SubnetInfo'])
|
3288
3317
|
end
|
3289
3318
|
@Clients = params['Clients']
|
3319
|
+
@CurrentTime = params['CurrentTime']
|
3320
|
+
@IsFederation = params['IsFederation']
|
3321
|
+
@DeviceName = params['DeviceName']
|
3322
|
+
@ServiceClient = params['ServiceClient']
|
3290
3323
|
end
|
3291
3324
|
end
|
3292
3325
|
|
@@ -4380,8 +4413,7 @@ module TencentCloud
|
|
4380
4413
|
# @type ExecutionStep: :class:`Tencentcloud::Emr.v20190103.models.Execution`
|
4381
4414
|
# @param ActionOnFailure: 执行失败策略。
|
4382
4415
|
# 1. TERMINATE_CLUSTER 执行失败时退出并销毁集群。
|
4383
|
-
# 2.
|
4384
|
-
# 3. CONTINUE 执行失败时跳过并执行后续步骤。
|
4416
|
+
# 2. CONTINUE 执行失败时跳过并执行后续步骤。
|
4385
4417
|
# @type ActionOnFailure: String
|
4386
4418
|
# @param User: 指定执行Step时的用户名,非必须,默认为hadoop。
|
4387
4419
|
# @type User: String
|
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.405
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tencent Cloud
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-09-
|
11
|
+
date: 2022-09-06 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|