tencentcloud-sdk-emr 3.0.853 → 3.0.854

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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/lib/VERSION +1 -1
  3. data/lib/v20190103/models.rb +10 -6
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 733a8c2b11fb9aa5360ad3281e4d138e6bbdfd8a
4
- data.tar.gz: 693fa1aeb5f0e9d33e4a3906859a3fd5f475f294
3
+ metadata.gz: 2d13f7cfabeaac06383a1a37f1cb2527383cf2de
4
+ data.tar.gz: 6ab86f0be1f0b026513470db3d20052643aa9025
5
5
  SHA512:
6
- metadata.gz: 036b923a91cf2153b83accf9e02ea71965e62ebef5004c3a03f7c8232a19ec053aba5a288c10a19fb0cfe3211389f05a1aa5ac5bc80bcbe82f7caeab64be3006
7
- data.tar.gz: 1e751d2e28183121f59a4acab059fda68aa1257c0dd5dcf09fe524458cdfa0e760b3a0c5f432ba58a696f3c04baec912b71158fdc11040aadaef10c8d9b8f25d
6
+ metadata.gz: f21c46fd0bc5f84739bdc7ad650c4361bb59b592b39c076dce42cd9b0144a46276e21e27e4f4b3abdb8d373c6f7860015fd006412802f7f171c8f5b7ab1ac128
7
+ data.tar.gz: f7a5d97154c7c577f9cd7066d6c942ae49ec118f184ee113aab3fbe5a110bea4dd561415ef14e714c08d75d448363556c45331d9455a06a2115dcfcd13ac848c
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.853
1
+ 3.0.854
@@ -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, 6
776
- deprecate :Ftitle=, :none, 2024, 6
777
- deprecate :Config, :none, 2024, 6
778
- deprecate :Config=, :none, 2024, 6
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.853
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-27 00:00:00.000000000 Z
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