tencentcloud-sdk-emr 3.0.853 → 3.0.854
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 +10 -6
- 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: 2d13f7cfabeaac06383a1a37f1cb2527383cf2de
|
4
|
+
data.tar.gz: 6ab86f0be1f0b026513470db3d20052643aa9025
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f21c46fd0bc5f84739bdc7ad650c4361bb59b592b39c076dce42cd9b0144a46276e21e27e4f4b3abdb8d373c6f7860015fd006412802f7f171c8f5b7ab1ac128
|
7
|
+
data.tar.gz: f7a5d97154c7c577f9cd7066d6c942ae49ec118f184ee113aab3fbe5a110bea4dd561415ef14e714c08d75d448363556c45331d9455a06a2115dcfcd13ac848c
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.854
|
data/lib/v20190103/models.rb
CHANGED
@@ -772,10 +772,10 @@ module TencentCloud
|
|
772
772
|
|
773
773
|
attr_accessor :Id, :ClusterId, :Ftitle, :ClusterName, :RegionId, :ZoneId, :AppId, :Uin, :ProjectId, :VpcId, :SubnetId, :Status, :AddTime, :RunTime, :Config, :MasterIp, :EmrVersion, :ChargeType, :TradeVersion, :ResourceOrderId, :IsTradeCluster, :AlarmInfo, :IsWoodpeckerCluster, :MetaDb, :Tags, :HiveMetaDb, :ServiceClass, :AliasInfo, :ProductId, :Zone, :SceneName, :SceneServiceClass, :SceneEmrVersion, :DisplayName, :VpcName, :SubnetName, :ClusterExternalServiceInfo, :UniqVpcId, :UniqSubnetId, :TopologyInfoList, :IsMultiZoneCluster, :IsCvmReplace, :ClusterTitle, :ConfigDetail
|
774
774
|
extend Gem::Deprecate
|
775
|
-
deprecate :Ftitle, :none, 2024,
|
776
|
-
deprecate :Ftitle=, :none, 2024,
|
777
|
-
deprecate :Config, :none, 2024,
|
778
|
-
deprecate :Config=, :none, 2024,
|
775
|
+
deprecate :Ftitle, :none, 2024, 7
|
776
|
+
deprecate :Ftitle=, :none, 2024, 7
|
777
|
+
deprecate :Config, :none, 2024, 7
|
778
|
+
deprecate :Config=, :none, 2024, 7
|
779
779
|
|
780
780
|
def initialize(id=nil, clusterid=nil, ftitle=nil, clustername=nil, regionid=nil, zoneid=nil, appid=nil, uin=nil, projectid=nil, vpcid=nil, subnetid=nil, status=nil, addtime=nil, runtime=nil, config=nil, masterip=nil, emrversion=nil, chargetype=nil, tradeversion=nil, resourceorderid=nil, istradecluster=nil, alarminfo=nil, iswoodpeckercluster=nil, metadb=nil, tags=nil, hivemetadb=nil, serviceclass=nil, aliasinfo=nil, productid=nil, zone=nil, scenename=nil, sceneserviceclass=nil, sceneemrversion=nil, displayname=nil, vpcname=nil, subnetname=nil, clusterexternalserviceinfo=nil, uniqvpcid=nil, uniqsubnetid=nil, topologyinfolist=nil, ismultizonecluster=nil, iscvmreplace=nil, clustertitle=nil, configdetail=nil)
|
781
781
|
@Id = id
|
@@ -8118,15 +8118,18 @@ module TencentCloud
|
|
8118
8118
|
# @type StrategyConfig: :class:`Tencentcloud::Emr.v20190103.models.StrategyConfig`
|
8119
8119
|
# @param StopParams: 暂停服务时用的参数
|
8120
8120
|
# @type StopParams: :class:`Tencentcloud::Emr.v20190103.models.StopParams`
|
8121
|
+
# @param KeepMonitorButNotRecoverProcess: 当OpType为<li>StopMonitor</li>才有用,true表示进入维护模式但是仍然监控进程但是不拉起进程
|
8122
|
+
# @type KeepMonitorButNotRecoverProcess: Boolean
|
8121
8123
|
|
8122
|
-
attr_accessor :InstanceId, :OpType, :OpScope, :StrategyConfig, :StopParams
|
8124
|
+
attr_accessor :InstanceId, :OpType, :OpScope, :StrategyConfig, :StopParams, :KeepMonitorButNotRecoverProcess
|
8123
8125
|
|
8124
|
-
def initialize(instanceid=nil, optype=nil, opscope=nil, strategyconfig=nil, stopparams=nil)
|
8126
|
+
def initialize(instanceid=nil, optype=nil, opscope=nil, strategyconfig=nil, stopparams=nil, keepmonitorbutnotrecoverprocess=nil)
|
8125
8127
|
@InstanceId = instanceid
|
8126
8128
|
@OpType = optype
|
8127
8129
|
@OpScope = opscope
|
8128
8130
|
@StrategyConfig = strategyconfig
|
8129
8131
|
@StopParams = stopparams
|
8132
|
+
@KeepMonitorButNotRecoverProcess = keepmonitorbutnotrecoverprocess
|
8130
8133
|
end
|
8131
8134
|
|
8132
8135
|
def deserialize(params)
|
@@ -8144,6 +8147,7 @@ module TencentCloud
|
|
8144
8147
|
@StopParams = StopParams.new
|
8145
8148
|
@StopParams.deserialize(params['StopParams'])
|
8146
8149
|
end
|
8150
|
+
@KeepMonitorButNotRecoverProcess = params['KeepMonitorButNotRecoverProcess']
|
8147
8151
|
end
|
8148
8152
|
end
|
8149
8153
|
|
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.854
|
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-06-
|
11
|
+
date: 2024-06-30 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|