tencentcloud-sdk-emr 3.0.507 → 3.0.508

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 640ac356ff0c013d6e31ac33e118ec4897326f29
4
- data.tar.gz: ddecd4abd951736a80d0deb78a8750c521679c0b
3
+ metadata.gz: c9fd18b1fe37f86bd0b048a22ddd8d947fd9fc5a
4
+ data.tar.gz: ab8faf9948fb07093b8bae2d5c659c9622faaa18
5
5
  SHA512:
6
- metadata.gz: dad43fd0c454a941dd470e85bbe8a82ba244d1727af7cced0985f0992f7928499be4e2a3b93c6d349a4b61fb22f23c9ab5c8115f4a529660dd3648544187ad11
7
- data.tar.gz: a283463e025df28ca2c4404761739ece9a997f78a5be6c61fc5926482b42e5bc61ed551072da722fd242c2831d772a7e8b777d87e406c0e8f08bae1f37f21413
6
+ metadata.gz: 25e517b5a86bfafe5fc03e7fe6cf5618f94eda460bd415aafac50263faee6dc837a05ba48faf95b28b9b84037f7ddc863b8ee57245bf9a8cdd8b9270f6724ab1
7
+ data.tar.gz: baed90d2d26c80c0c7406f9a50e6152f4ba37a5a103e559a916b56a63f94a73bde6cecdd569ded444c097d563934d1ea1e432b2674b06c22cd4645e1746ecce6
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.507
1
+ 3.0.508
@@ -500,10 +500,13 @@ module TencentCloud
500
500
  # @param IsMultiZoneCluster: 是否是跨AZ集群
501
501
  # 注意:此字段可能返回 null,表示取不到有效值。
502
502
  # @type IsMultiZoneCluster: Boolean
503
+ # @param IsCvmReplace: 是否开通异常节点自动补偿
504
+ # 注意:此字段可能返回 null,表示取不到有效值。
505
+ # @type IsCvmReplace: Boolean
503
506
 
504
- 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
507
+ 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
505
508
 
506
- 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)
509
+ 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)
507
510
  @Id = id
508
511
  @ClusterId = clusterid
509
512
  @Ftitle = ftitle
@@ -545,6 +548,7 @@ module TencentCloud
545
548
  @UniqSubnetId = uniqsubnetid
546
549
  @TopologyInfoList = topologyinfolist
547
550
  @IsMultiZoneCluster = ismultizonecluster
551
+ @IsCvmReplace = iscvmreplace
548
552
  end
549
553
 
550
554
  def deserialize(params)
@@ -613,6 +617,7 @@ module TencentCloud
613
617
  end
614
618
  end
615
619
  @IsMultiZoneCluster = params['IsMultiZoneCluster']
620
+ @IsCvmReplace = params['IsCvmReplace']
616
621
  end
617
622
  end
618
623
 
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.507
4
+ version: 3.0.508
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-02-13 00:00:00.000000000 Z
11
+ date: 2023-02-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common