tencentcloud-sdk-cdwdoris 3.0.794 → 3.0.796

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/lib/VERSION +1 -1
  3. data/lib/v20211228/models.rb +83 -10
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 7ba7f978c3a327b8eb7e2c2546abfa6c2d8ad048
4
- data.tar.gz: a1e224e69f4daaeb5df229b675471d8d0f0632e3
3
+ metadata.gz: 4b652227f506c8b87882c10b37936d674da365c7
4
+ data.tar.gz: 1b6e980afc77be4bb91b6a864103eaf4564d46af
5
5
  SHA512:
6
- metadata.gz: 65b68e88e29a354cb96ff86bc148f089897744d4bbc71043ad8dd597168a79627a328ef876852cd4cfa490b3f2064c46b6edc172e8832efd2198b0be194c5716
7
- data.tar.gz: ad70971f617e72fbbe417132aa0203eca21596734791cd6724105106e686bf71ebf9bfa9a573cc67cd39c7bc83263c538b03b3fe639ebb72e5fd2de10d9cb461
6
+ metadata.gz: a29122727af224a5a78824b3bfe43f66e6580de2e5ea6a02060ae007a35bd174ddc7cbe846a3629d91ed82f0416df1879e9299d440ed95c93501e101ae539dd5
7
+ data.tar.gz: f7f84d0760ac76dbf5475fdc9e839f7d319179e6fbf405f5881f7d130204aab80b0bd6e1cf9f1a58b6a6a9b7f97babcda696832e6e9585c14da0d3485363534f
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.794
1
+ 3.0.796
@@ -101,8 +101,8 @@ module TencentCloud
101
101
 
102
102
  attr_accessor :FileName, :FileConf, :KeyConf, :OriParam, :NeedRestart, :FilePath, :FileKeyValues, :FileKeyValuesNew
103
103
  extend Gem::Deprecate
104
- deprecate :FileKeyValues, :none, 2024, 3
105
- deprecate :FileKeyValues=, :none, 2024, 3
104
+ deprecate :FileKeyValues, :none, 2024, 4
105
+ deprecate :FileKeyValues=, :none, 2024, 4
106
106
 
107
107
  def initialize(filename=nil, fileconf=nil, keyconf=nil, oriparam=nil, needrestart=nil, filepath=nil, filekeyvalues=nil, filekeyvaluesnew=nil)
108
108
  @FileName = filename
@@ -202,10 +202,14 @@ module TencentCloud
202
202
  # @type HaType: Integer
203
203
  # @param CaseSensitive: 表名大小写是否敏感,0:敏感;1:不敏感,以小写进行比较;2:不敏感,表名改为以小写存储
204
204
  # @type CaseSensitive: Integer
205
+ # @param EnableMultiZones: 是否开启多可用区
206
+ # @type EnableMultiZones: Boolean
207
+ # @param UserMultiZoneInfos: 开启多可用区后,用户的所有可用区和子网信息
208
+ # @type UserMultiZoneInfos: :class:`Tencentcloud::Cdwdoris.v20211228.models.NetworkInfo`
205
209
 
206
- attr_accessor :Zone, :FeSpec, :BeSpec, :HaFlag, :UserVPCId, :UserSubnetId, :ProductVersion, :ChargeProperties, :InstanceName, :DorisUserPwd, :Tags, :HaType, :CaseSensitive
210
+ attr_accessor :Zone, :FeSpec, :BeSpec, :HaFlag, :UserVPCId, :UserSubnetId, :ProductVersion, :ChargeProperties, :InstanceName, :DorisUserPwd, :Tags, :HaType, :CaseSensitive, :EnableMultiZones, :UserMultiZoneInfos
207
211
 
208
- def initialize(zone=nil, fespec=nil, bespec=nil, haflag=nil, uservpcid=nil, usersubnetid=nil, productversion=nil, chargeproperties=nil, instancename=nil, dorisuserpwd=nil, tags=nil, hatype=nil, casesensitive=nil)
212
+ def initialize(zone=nil, fespec=nil, bespec=nil, haflag=nil, uservpcid=nil, usersubnetid=nil, productversion=nil, chargeproperties=nil, instancename=nil, dorisuserpwd=nil, tags=nil, hatype=nil, casesensitive=nil, enablemultizones=nil, usermultizoneinfos=nil)
209
213
  @Zone = zone
210
214
  @FeSpec = fespec
211
215
  @BeSpec = bespec
@@ -219,6 +223,8 @@ module TencentCloud
219
223
  @Tags = tags
220
224
  @HaType = hatype
221
225
  @CaseSensitive = casesensitive
226
+ @EnableMultiZones = enablemultizones
227
+ @UserMultiZoneInfos = usermultizoneinfos
222
228
  end
223
229
 
224
230
  def deserialize(params)
@@ -251,6 +257,11 @@ module TencentCloud
251
257
  end
252
258
  @HaType = params['HaType']
253
259
  @CaseSensitive = params['CaseSensitive']
260
+ @EnableMultiZones = params['EnableMultiZones']
261
+ unless params['UserMultiZoneInfos'].nil?
262
+ @UserMultiZoneInfos = NetworkInfo.new
263
+ @UserMultiZoneInfos.deserialize(params['UserMultiZoneInfos'])
264
+ end
254
265
  end
255
266
  end
256
267
 
@@ -1260,13 +1271,19 @@ module TencentCloud
1260
1271
  # @param BindSGs: 已绑定的安全组信息
1261
1272
  # 注意:此字段可能返回 null,表示取不到有效值。
1262
1273
  # @type BindSGs: Array
1274
+ # @param EnableMultiZones: 是否为多可用区
1275
+ # 注意:此字段可能返回 null,表示取不到有效值。
1276
+ # @type EnableMultiZones: Boolean
1277
+ # @param UserNetworkInfos: 用户可用区和子网信息
1278
+ # 注意:此字段可能返回 null,表示取不到有效值。
1279
+ # @type UserNetworkInfos: String
1263
1280
 
1264
- attr_accessor :InstanceId, :InstanceName, :Status, :Version, :Region, :Zone, :VpcId, :SubnetId, :PayMode, :CreateTime, :ExpireTime, :MasterSummary, :CoreSummary, :HA, :HaType, :AccessInfo, :Id, :RegionId, :ZoneDesc, :FlowMsg, :StatusDesc, :RenewFlag, :Tags, :Monitor, :HasClsTopic, :ClsTopicId, :ClsLogSetId, :EnableXMLConfig, :RegionDesc, :Eip, :CosMoveFactor, :Kind, :CosBucketName, :CanAttachCbs, :BuildVersion, :Components, :IfExistCatalog, :Characteristic, :RestartTimeout, :GraceShutdownWaitSeconds, :CaseSensitive, :IsWhiteSGs, :BindSGs
1281
+ attr_accessor :InstanceId, :InstanceName, :Status, :Version, :Region, :Zone, :VpcId, :SubnetId, :PayMode, :CreateTime, :ExpireTime, :MasterSummary, :CoreSummary, :HA, :HaType, :AccessInfo, :Id, :RegionId, :ZoneDesc, :FlowMsg, :StatusDesc, :RenewFlag, :Tags, :Monitor, :HasClsTopic, :ClsTopicId, :ClsLogSetId, :EnableXMLConfig, :RegionDesc, :Eip, :CosMoveFactor, :Kind, :CosBucketName, :CanAttachCbs, :BuildVersion, :Components, :IfExistCatalog, :Characteristic, :RestartTimeout, :GraceShutdownWaitSeconds, :CaseSensitive, :IsWhiteSGs, :BindSGs, :EnableMultiZones, :UserNetworkInfos
1265
1282
  extend Gem::Deprecate
1266
- deprecate :IfExistCatalog, :none, 2024, 3
1267
- deprecate :IfExistCatalog=, :none, 2024, 3
1283
+ deprecate :IfExistCatalog, :none, 2024, 4
1284
+ deprecate :IfExistCatalog=, :none, 2024, 4
1268
1285
 
1269
- def initialize(instanceid=nil, instancename=nil, status=nil, version=nil, region=nil, zone=nil, vpcid=nil, subnetid=nil, paymode=nil, createtime=nil, expiretime=nil, mastersummary=nil, coresummary=nil, ha=nil, hatype=nil, accessinfo=nil, id=nil, regionid=nil, zonedesc=nil, flowmsg=nil, statusdesc=nil, renewflag=nil, tags=nil, monitor=nil, hasclstopic=nil, clstopicid=nil, clslogsetid=nil, enablexmlconfig=nil, regiondesc=nil, eip=nil, cosmovefactor=nil, kind=nil, cosbucketname=nil, canattachcbs=nil, buildversion=nil, components=nil, ifexistcatalog=nil, characteristic=nil, restarttimeout=nil, graceshutdownwaitseconds=nil, casesensitive=nil, iswhitesgs=nil, bindsgs=nil)
1286
+ def initialize(instanceid=nil, instancename=nil, status=nil, version=nil, region=nil, zone=nil, vpcid=nil, subnetid=nil, paymode=nil, createtime=nil, expiretime=nil, mastersummary=nil, coresummary=nil, ha=nil, hatype=nil, accessinfo=nil, id=nil, regionid=nil, zonedesc=nil, flowmsg=nil, statusdesc=nil, renewflag=nil, tags=nil, monitor=nil, hasclstopic=nil, clstopicid=nil, clslogsetid=nil, enablexmlconfig=nil, regiondesc=nil, eip=nil, cosmovefactor=nil, kind=nil, cosbucketname=nil, canattachcbs=nil, buildversion=nil, components=nil, ifexistcatalog=nil, characteristic=nil, restarttimeout=nil, graceshutdownwaitseconds=nil, casesensitive=nil, iswhitesgs=nil, bindsgs=nil, enablemultizones=nil, usernetworkinfos=nil)
1270
1287
  @InstanceId = instanceid
1271
1288
  @InstanceName = instancename
1272
1289
  @Status = status
@@ -1310,6 +1327,8 @@ module TencentCloud
1310
1327
  @CaseSensitive = casesensitive
1311
1328
  @IsWhiteSGs = iswhitesgs
1312
1329
  @BindSGs = bindsgs
1330
+ @EnableMultiZones = enablemultizones
1331
+ @UserNetworkInfos = usernetworkinfos
1313
1332
  end
1314
1333
 
1315
1334
  def deserialize(params)
@@ -1369,6 +1388,8 @@ module TencentCloud
1369
1388
  @CaseSensitive = params['CaseSensitive']
1370
1389
  @IsWhiteSGs = params['IsWhiteSGs']
1371
1390
  @BindSGs = params['BindSGs']
1391
+ @EnableMultiZones = params['EnableMultiZones']
1392
+ @UserNetworkInfos = params['UserNetworkInfos']
1372
1393
  end
1373
1394
  end
1374
1395
 
@@ -1468,6 +1489,33 @@ module TencentCloud
1468
1489
  end
1469
1490
  end
1470
1491
 
1492
+ # 网络信息
1493
+ class NetworkInfo < TencentCloud::Common::AbstractModel
1494
+ # @param Zone: 可用区
1495
+ # 注意:此字段可能返回 null,表示取不到有效值。
1496
+ # @type Zone: String
1497
+ # @param SubnetId: 子网id
1498
+ # 注意:此字段可能返回 null,表示取不到有效值。
1499
+ # @type SubnetId: String
1500
+ # @param SubnetIpNum: 当前子网可用ip数
1501
+ # 注意:此字段可能返回 null,表示取不到有效值。
1502
+ # @type SubnetIpNum: Integer
1503
+
1504
+ attr_accessor :Zone, :SubnetId, :SubnetIpNum
1505
+
1506
+ def initialize(zone=nil, subnetid=nil, subnetipnum=nil)
1507
+ @Zone = zone
1508
+ @SubnetId = subnetid
1509
+ @SubnetIpNum = subnetipnum
1510
+ end
1511
+
1512
+ def deserialize(params)
1513
+ @Zone = params['Zone']
1514
+ @SubnetId = params['SubnetId']
1515
+ @SubnetIpNum = params['SubnetIpNum']
1516
+ end
1517
+ end
1518
+
1471
1519
  # NodeInfo
1472
1520
  class NodeInfo < TencentCloud::Common::AbstractModel
1473
1521
  # @param Ip: 用户IP
@@ -1476,17 +1524,42 @@ module TencentCloud
1476
1524
  # @param Status: 节点状态
1477
1525
  # 注意:此字段可能返回 null,表示取不到有效值。
1478
1526
  # @type Status: Integer
1527
+ # @param NodeName: 节点角色名
1528
+ # 注意:此字段可能返回 null,表示取不到有效值。
1529
+ # @type NodeName: String
1530
+ # @param ComponentName: 组件名
1531
+ # 注意:此字段可能返回 null,表示取不到有效值。
1532
+ # @type ComponentName: String
1533
+ # @param NodeRole: 节点角色
1534
+ # 注意:此字段可能返回 null,表示取不到有效值。
1535
+ # @type NodeRole: String
1536
+ # @param LastRestartTime: 节点上次重启的时间
1537
+ # 注意:此字段可能返回 null,表示取不到有效值。
1538
+ # @type LastRestartTime: String
1539
+ # @param Zone: 节点所在可用区
1540
+ # 注意:此字段可能返回 null,表示取不到有效值。
1541
+ # @type Zone: String
1479
1542
 
1480
- attr_accessor :Ip, :Status
1543
+ attr_accessor :Ip, :Status, :NodeName, :ComponentName, :NodeRole, :LastRestartTime, :Zone
1481
1544
 
1482
- def initialize(ip=nil, status=nil)
1545
+ def initialize(ip=nil, status=nil, nodename=nil, componentname=nil, noderole=nil, lastrestarttime=nil, zone=nil)
1483
1546
  @Ip = ip
1484
1547
  @Status = status
1548
+ @NodeName = nodename
1549
+ @ComponentName = componentname
1550
+ @NodeRole = noderole
1551
+ @LastRestartTime = lastrestarttime
1552
+ @Zone = zone
1485
1553
  end
1486
1554
 
1487
1555
  def deserialize(params)
1488
1556
  @Ip = params['Ip']
1489
1557
  @Status = params['Status']
1558
+ @NodeName = params['NodeName']
1559
+ @ComponentName = params['ComponentName']
1560
+ @NodeRole = params['NodeRole']
1561
+ @LastRestartTime = params['LastRestartTime']
1562
+ @Zone = params['Zone']
1490
1563
  end
1491
1564
  end
1492
1565
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-cdwdoris
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.794
4
+ version: 3.0.796
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-03-31 00:00:00.000000000 Z
11
+ date: 2024-04-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common