tencentcloud-sdk-es 3.0.498 → 3.0.499
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/v20180416/models.rb +6 -2
- 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: 4554f424014a8291ae6b3d121b377c08ae51e067
|
|
4
|
+
data.tar.gz: 2ca8b54e0377762ac089e51f481db0754c9c8bb0
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d277fa85cf832b081350bf5b305e82d23af9ce2c9e0e52f40d46811471f27e441c7b431edb3ec38d86d4c4ee93c393a2c474a4feaa5e80131685ea1c37cd16a4
|
|
7
|
+
data.tar.gz: b933056009bfdb17356614778f4d291991e5fa14cdde1b20d4111d55e5d0e505c757846470377f071d062eae8bb3830638044c4262bc5c74d3665f8717f6aba4
|
data/lib/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.0.
|
|
1
|
+
3.0.499
|
data/lib/v20180416/models.rb
CHANGED
|
@@ -304,10 +304,12 @@ module TencentCloud
|
|
|
304
304
|
# @type EnableHybridStorage: Boolean
|
|
305
305
|
# @param DiskEnhance: 是否开启essd 增强型云盘
|
|
306
306
|
# @type DiskEnhance: Integer
|
|
307
|
+
# @param EnableDiagnose: 是否开启智能巡检
|
|
308
|
+
# @type EnableDiagnose: Boolean
|
|
307
309
|
|
|
308
|
-
attr_accessor :Zone, :EsVersion, :VpcId, :SubnetId, :Password, :InstanceName, :NodeNum, :ChargeType, :ChargePeriod, :RenewFlag, :NodeType, :DiskType, :DiskSize, :TimeUnit, :AutoVoucher, :VoucherIds, :EnableDedicatedMaster, :MasterNodeNum, :MasterNodeType, :MasterNodeDiskSize, :ClusterNameInConf, :DeployMode, :MultiZoneInfo, :LicenseType, :NodeInfoList, :TagList, :BasicSecurityType, :SceneType, :WebNodeTypeInfo, :Protocol, :OperationDuration, :EnableHybridStorage, :DiskEnhance
|
|
310
|
+
attr_accessor :Zone, :EsVersion, :VpcId, :SubnetId, :Password, :InstanceName, :NodeNum, :ChargeType, :ChargePeriod, :RenewFlag, :NodeType, :DiskType, :DiskSize, :TimeUnit, :AutoVoucher, :VoucherIds, :EnableDedicatedMaster, :MasterNodeNum, :MasterNodeType, :MasterNodeDiskSize, :ClusterNameInConf, :DeployMode, :MultiZoneInfo, :LicenseType, :NodeInfoList, :TagList, :BasicSecurityType, :SceneType, :WebNodeTypeInfo, :Protocol, :OperationDuration, :EnableHybridStorage, :DiskEnhance, :EnableDiagnose
|
|
309
311
|
|
|
310
|
-
def initialize(zone=nil, esversion=nil, vpcid=nil, subnetid=nil, password=nil, instancename=nil, nodenum=nil, chargetype=nil, chargeperiod=nil, renewflag=nil, nodetype=nil, disktype=nil, disksize=nil, timeunit=nil, autovoucher=nil, voucherids=nil, enablededicatedmaster=nil, masternodenum=nil, masternodetype=nil, masternodedisksize=nil, clusternameinconf=nil, deploymode=nil, multizoneinfo=nil, licensetype=nil, nodeinfolist=nil, taglist=nil, basicsecuritytype=nil, scenetype=nil, webnodetypeinfo=nil, protocol=nil, operationduration=nil, enablehybridstorage=nil, diskenhance=nil)
|
|
312
|
+
def initialize(zone=nil, esversion=nil, vpcid=nil, subnetid=nil, password=nil, instancename=nil, nodenum=nil, chargetype=nil, chargeperiod=nil, renewflag=nil, nodetype=nil, disktype=nil, disksize=nil, timeunit=nil, autovoucher=nil, voucherids=nil, enablededicatedmaster=nil, masternodenum=nil, masternodetype=nil, masternodedisksize=nil, clusternameinconf=nil, deploymode=nil, multizoneinfo=nil, licensetype=nil, nodeinfolist=nil, taglist=nil, basicsecuritytype=nil, scenetype=nil, webnodetypeinfo=nil, protocol=nil, operationduration=nil, enablehybridstorage=nil, diskenhance=nil, enablediagnose=nil)
|
|
311
313
|
@Zone = zone
|
|
312
314
|
@EsVersion = esversion
|
|
313
315
|
@VpcId = vpcid
|
|
@@ -341,6 +343,7 @@ module TencentCloud
|
|
|
341
343
|
@OperationDuration = operationduration
|
|
342
344
|
@EnableHybridStorage = enablehybridstorage
|
|
343
345
|
@DiskEnhance = diskenhance
|
|
346
|
+
@EnableDiagnose = enablediagnose
|
|
344
347
|
end
|
|
345
348
|
|
|
346
349
|
def deserialize(params)
|
|
@@ -404,6 +407,7 @@ module TencentCloud
|
|
|
404
407
|
end
|
|
405
408
|
@EnableHybridStorage = params['EnableHybridStorage']
|
|
406
409
|
@DiskEnhance = params['DiskEnhance']
|
|
410
|
+
@EnableDiagnose = params['EnableDiagnose']
|
|
407
411
|
end
|
|
408
412
|
end
|
|
409
413
|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: tencentcloud-sdk-es
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.0.
|
|
4
|
+
version: 3.0.499
|
|
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-01
|
|
11
|
+
date: 2023-02-01 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: tencentcloud-sdk-common
|