tencentcloud-sdk-cdwdoris 3.0.870 → 3.0.871
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/v20211228/models.rb +31 -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: f0d927ef8a7e6b892d16e4a15b89be60e777424d
|
4
|
+
data.tar.gz: de167ae06c6e595cc0b76b499b1827ae7dbf55d4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 54a001db454326171b9d3f4ea89fb803fa775ebffaf8e8bdd69266b369deab6014c227ddfccf5738ef5682326aba3c4c017a832050bd8ace1fa53af817ac5688
|
7
|
+
data.tar.gz: 3fc6b0d564d7633bec244bff26e806d46693d6a9c2d5764b208e74098fc6a5201bc8a801218cee201fe2ca57275bbdac670eef1d99bf8484c132b4710bfe08ab
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.871
|
data/lib/v20211228/models.rb
CHANGED
@@ -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,
|
105
|
-
deprecate :FileKeyValues=, :none, 2024,
|
104
|
+
deprecate :FileKeyValues, :none, 2024, 7
|
105
|
+
deprecate :FileKeyValues=, :none, 2024, 7
|
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
|
@@ -1177,6 +1177,23 @@ module TencentCloud
|
|
1177
1177
|
end
|
1178
1178
|
end
|
1179
1179
|
|
1180
|
+
# Instance表detail字段
|
1181
|
+
class InstanceDetail < TencentCloud::Common::AbstractModel
|
1182
|
+
# @param EnableAlarmStrategy: 告警策略是否可用
|
1183
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1184
|
+
# @type EnableAlarmStrategy: Boolean
|
1185
|
+
|
1186
|
+
attr_accessor :EnableAlarmStrategy
|
1187
|
+
|
1188
|
+
def initialize(enablealarmstrategy=nil)
|
1189
|
+
@EnableAlarmStrategy = enablealarmstrategy
|
1190
|
+
end
|
1191
|
+
|
1192
|
+
def deserialize(params)
|
1193
|
+
@EnableAlarmStrategy = params['EnableAlarmStrategy']
|
1194
|
+
end
|
1195
|
+
end
|
1196
|
+
|
1180
1197
|
# 实例描述信息
|
1181
1198
|
class InstanceInfo < TencentCloud::Common::AbstractModel
|
1182
1199
|
# @param InstanceId: 集群实例ID, "cdw-xxxx" 字符串类型
|
@@ -1327,13 +1344,16 @@ module TencentCloud
|
|
1327
1344
|
# @param CoolDownBucket: 冷热分层使用COS桶
|
1328
1345
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
1329
1346
|
# @type CoolDownBucket: String
|
1347
|
+
# @param Details: 实例扩展信息
|
1348
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1349
|
+
# @type Details: :class:`Tencentcloud::Cdwdoris.v20211228.models.InstanceDetail`
|
1330
1350
|
|
1331
|
-
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, :EnableCoolDown, :CoolDownBucket
|
1351
|
+
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, :EnableCoolDown, :CoolDownBucket, :Details
|
1332
1352
|
extend Gem::Deprecate
|
1333
|
-
deprecate :IfExistCatalog, :none, 2024,
|
1334
|
-
deprecate :IfExistCatalog=, :none, 2024,
|
1353
|
+
deprecate :IfExistCatalog, :none, 2024, 7
|
1354
|
+
deprecate :IfExistCatalog=, :none, 2024, 7
|
1335
1355
|
|
1336
|
-
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, enablecooldown=nil, cooldownbucket=nil)
|
1356
|
+
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, enablecooldown=nil, cooldownbucket=nil, details=nil)
|
1337
1357
|
@InstanceId = instanceid
|
1338
1358
|
@InstanceName = instancename
|
1339
1359
|
@Status = status
|
@@ -1381,6 +1401,7 @@ module TencentCloud
|
|
1381
1401
|
@UserNetworkInfos = usernetworkinfos
|
1382
1402
|
@EnableCoolDown = enablecooldown
|
1383
1403
|
@CoolDownBucket = cooldownbucket
|
1404
|
+
@Details = details
|
1384
1405
|
end
|
1385
1406
|
|
1386
1407
|
def deserialize(params)
|
@@ -1444,6 +1465,10 @@ module TencentCloud
|
|
1444
1465
|
@UserNetworkInfos = params['UserNetworkInfos']
|
1445
1466
|
@EnableCoolDown = params['EnableCoolDown']
|
1446
1467
|
@CoolDownBucket = params['CoolDownBucket']
|
1468
|
+
unless params['Details'].nil?
|
1469
|
+
@Details = InstanceDetail.new
|
1470
|
+
@Details.deserialize(params['Details'])
|
1471
|
+
end
|
1447
1472
|
end
|
1448
1473
|
end
|
1449
1474
|
|
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.
|
4
|
+
version: 3.0.871
|
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-07-
|
11
|
+
date: 2024-07-23 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|