tencentcloud-sdk-cdb 3.0.1127 → 3.0.1140
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/v20170320/models.rb +50 -34
- 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: d0504ecd06d57abc13ce0d71d14f8539ad55d1c8
|
4
|
+
data.tar.gz: 5ad8955301946bab7312b520544af0d3d0a380b3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b52aba38794eda8535b7723461adf9eec3433b72505a86bb6425684489c3a364e443b8c1c5237caadd8e4ebc45f8ecdb3979016eb0554a20e7a96da4ffcccd4a
|
7
|
+
data.tar.gz: 0ee8888636ffccfeaaf278b1333a20706da3caa26106a30e1de09f14bdd2a8e9e585166933f691143d1f4d4fde9ef3c2c8d3a7c783f4a1a80dea85a6e9b4fc64
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.1140
|
data/lib/v20170320/models.rb
CHANGED
@@ -61,8 +61,8 @@ module TencentCloud
|
|
61
61
|
|
62
62
|
attr_accessor :Notes, :Host, :User, :ModifyTime, :ModifyPasswordTime, :CreateTime, :MaxUserConnections, :OpenCam
|
63
63
|
extend Gem::Deprecate
|
64
|
-
deprecate :CreateTime, :none, 2025,
|
65
|
-
deprecate :CreateTime=, :none, 2025,
|
64
|
+
deprecate :CreateTime, :none, 2025, 9
|
65
|
+
deprecate :CreateTime=, :none, 2025, 9
|
66
66
|
|
67
67
|
def initialize(notes=nil, host=nil, user=nil, modifytime=nil, modifypasswordtime=nil, createtime=nil, maxuserconnections=nil, opencam=nil)
|
68
68
|
@Notes = notes
|
@@ -224,10 +224,14 @@ module TencentCloud
|
|
224
224
|
# @type AutoLoadBalance: Boolean
|
225
225
|
# @param AccessMode: 访问模式:nearby - 就近访问,balance - 均衡分配,默认就近访问。
|
226
226
|
# @type AccessMode: String
|
227
|
+
# @param ApNodeAsRoNode: 是否将libra节点当作普通RO节点
|
228
|
+
# @type ApNodeAsRoNode: String
|
229
|
+
# @param ApQueryToOtherNode: libra节点故障,是否转发给其他节点
|
230
|
+
# @type ApQueryToOtherNode: String
|
227
231
|
|
228
|
-
attr_accessor :ProxyGroupId, :WeightMode, :IsKickOut, :MinCount, :MaxDelay, :FailOver, :AutoAddRo, :ReadOnly, :ProxyAddressId, :TransSplit, :ConnectionPool, :ProxyAllocation, :AutoLoadBalance, :AccessMode
|
232
|
+
attr_accessor :ProxyGroupId, :WeightMode, :IsKickOut, :MinCount, :MaxDelay, :FailOver, :AutoAddRo, :ReadOnly, :ProxyAddressId, :TransSplit, :ConnectionPool, :ProxyAllocation, :AutoLoadBalance, :AccessMode, :ApNodeAsRoNode, :ApQueryToOtherNode
|
229
233
|
|
230
|
-
def initialize(proxygroupid=nil, weightmode=nil, iskickout=nil, mincount=nil, maxdelay=nil, failover=nil, autoaddro=nil, readonly=nil, proxyaddressid=nil, transsplit=nil, connectionpool=nil, proxyallocation=nil, autoloadbalance=nil, accessmode=nil)
|
234
|
+
def initialize(proxygroupid=nil, weightmode=nil, iskickout=nil, mincount=nil, maxdelay=nil, failover=nil, autoaddro=nil, readonly=nil, proxyaddressid=nil, transsplit=nil, connectionpool=nil, proxyallocation=nil, autoloadbalance=nil, accessmode=nil, apnodeasronode=nil, apquerytoothernode=nil)
|
231
235
|
@ProxyGroupId = proxygroupid
|
232
236
|
@WeightMode = weightmode
|
233
237
|
@IsKickOut = iskickout
|
@@ -242,6 +246,8 @@ module TencentCloud
|
|
242
246
|
@ProxyAllocation = proxyallocation
|
243
247
|
@AutoLoadBalance = autoloadbalance
|
244
248
|
@AccessMode = accessmode
|
249
|
+
@ApNodeAsRoNode = apnodeasronode
|
250
|
+
@ApQueryToOtherNode = apquerytoothernode
|
245
251
|
end
|
246
252
|
|
247
253
|
def deserialize(params)
|
@@ -266,6 +272,8 @@ module TencentCloud
|
|
266
272
|
end
|
267
273
|
@AutoLoadBalance = params['AutoLoadBalance']
|
268
274
|
@AccessMode = params['AccessMode']
|
275
|
+
@ApNodeAsRoNode = params['ApNodeAsRoNode']
|
276
|
+
@ApQueryToOtherNode = params['ApQueryToOtherNode']
|
269
277
|
end
|
270
278
|
end
|
271
279
|
|
@@ -440,8 +448,8 @@ module TencentCloud
|
|
440
448
|
|
441
449
|
attr_accessor :InstanceId, :StartTime, :EndTime, :AggregationConditions, :AuditLogFilter, :LogFilter
|
442
450
|
extend Gem::Deprecate
|
443
|
-
deprecate :AuditLogFilter, :none, 2025,
|
444
|
-
deprecate :AuditLogFilter=, :none, 2025,
|
451
|
+
deprecate :AuditLogFilter, :none, 2025, 9
|
452
|
+
deprecate :AuditLogFilter=, :none, 2025, 9
|
445
453
|
|
446
454
|
def initialize(instanceid=nil, starttime=nil, endtime=nil, aggregationconditions=nil, auditlogfilter=nil, logfilter=nil)
|
447
455
|
@InstanceId = instanceid
|
@@ -1100,10 +1108,10 @@ module TencentCloud
|
|
1100
1108
|
|
1101
1109
|
attr_accessor :ExpandThreshold, :ShrinkThreshold, :ExpandPeriod, :ShrinkPeriod, :ExpandSecondPeriod, :ShrinkSecondPeriod
|
1102
1110
|
extend Gem::Deprecate
|
1103
|
-
deprecate :ExpandPeriod, :none, 2025,
|
1104
|
-
deprecate :ExpandPeriod=, :none, 2025,
|
1105
|
-
deprecate :ShrinkPeriod, :none, 2025,
|
1106
|
-
deprecate :ShrinkPeriod=, :none, 2025,
|
1111
|
+
deprecate :ExpandPeriod, :none, 2025, 9
|
1112
|
+
deprecate :ExpandPeriod=, :none, 2025, 9
|
1113
|
+
deprecate :ShrinkPeriod, :none, 2025, 9
|
1114
|
+
deprecate :ShrinkPeriod=, :none, 2025, 9
|
1107
1115
|
|
1108
1116
|
def initialize(expandthreshold=nil, shrinkthreshold=nil, expandperiod=nil, shrinkperiod=nil, expandsecondperiod=nil, shrinksecondperiod=nil)
|
1109
1117
|
@ExpandThreshold = expandthreshold
|
@@ -1416,8 +1424,8 @@ module TencentCloud
|
|
1416
1424
|
|
1417
1425
|
attr_accessor :Name, :Size, :Date, :IntranetUrl, :InternetUrl, :Type, :BinlogStartTime, :BinlogFinishTime, :Region, :Status, :RemoteInfo, :CosStorageType, :InstanceId
|
1418
1426
|
extend Gem::Deprecate
|
1419
|
-
deprecate :InstanceId, :none, 2025,
|
1420
|
-
deprecate :InstanceId=, :none, 2025,
|
1427
|
+
deprecate :InstanceId, :none, 2025, 9
|
1428
|
+
deprecate :InstanceId=, :none, 2025, 9
|
1421
1429
|
|
1422
1430
|
def initialize(name=nil, size=nil, date=nil, intraneturl=nil, interneturl=nil, type=nil, binlogstarttime=nil, binlogfinishtime=nil, region=nil, status=nil, remoteinfo=nil, cosstoragetype=nil, instanceid=nil)
|
1423
1431
|
@Name = name
|
@@ -2361,8 +2369,8 @@ module TencentCloud
|
|
2361
2369
|
|
2362
2370
|
attr_accessor :InstanceId, :StartTime, :EndTime, :Order, :OrderBy, :Filter, :LogFilter, :ColumnFilter
|
2363
2371
|
extend Gem::Deprecate
|
2364
|
-
deprecate :Filter, :none, 2025,
|
2365
|
-
deprecate :Filter=, :none, 2025,
|
2372
|
+
deprecate :Filter, :none, 2025, 9
|
2373
|
+
deprecate :Filter=, :none, 2025, 9
|
2366
2374
|
|
2367
2375
|
def initialize(instanceid=nil, starttime=nil, endtime=nil, order=nil, orderby=nil, filter=nil, logfilter=nil, columnfilter=nil)
|
2368
2376
|
@InstanceId = instanceid
|
@@ -5084,10 +5092,10 @@ module TencentCloud
|
|
5084
5092
|
|
5085
5093
|
attr_accessor :StartTimeMin, :StartTimeMax, :BackupExpireDays, :BackupMethod, :BinlogExpireDays, :BackupTimeWindow, :EnableBackupPeriodSave, :BackupPeriodSaveDays, :BackupPeriodSaveInterval, :BackupPeriodSaveCount, :StartBackupPeriodSaveDate, :EnableBackupArchive, :BackupArchiveDays, :EnableBinlogArchive, :BinlogArchiveDays, :EnableBackupStandby, :BackupStandbyDays, :EnableBinlogStandby, :BinlogStandbyDays, :RequestId
|
5086
5094
|
extend Gem::Deprecate
|
5087
|
-
deprecate :StartTimeMin, :none, 2025,
|
5088
|
-
deprecate :StartTimeMin=, :none, 2025,
|
5089
|
-
deprecate :StartTimeMax, :none, 2025,
|
5090
|
-
deprecate :StartTimeMax=, :none, 2025,
|
5095
|
+
deprecate :StartTimeMin, :none, 2025, 9
|
5096
|
+
deprecate :StartTimeMin=, :none, 2025, 9
|
5097
|
+
deprecate :StartTimeMax, :none, 2025, 9
|
5098
|
+
deprecate :StartTimeMax=, :none, 2025, 9
|
5091
5099
|
|
5092
5100
|
def initialize(starttimemin=nil, starttimemax=nil, backupexpiredays=nil, backupmethod=nil, binlogexpiredays=nil, backuptimewindow=nil, enablebackupperiodsave=nil, backupperiodsavedays=nil, backupperiodsaveinterval=nil, backupperiodsavecount=nil, startbackupperiodsavedate=nil, enablebackuparchive=nil, backuparchivedays=nil, enablebinlogarchive=nil, binlogarchivedays=nil, enablebackupstandby=nil, backupstandbydays=nil, enablebinlogstandby=nil, binlogstandbydays=nil, requestid=nil)
|
5093
5101
|
@StartTimeMin = starttimemin
|
@@ -7732,8 +7740,8 @@ module TencentCloud
|
|
7732
7740
|
|
7733
7741
|
attr_accessor :Count, :CustomConf, :WeightRule, :CustomConfInfo, :RequestId
|
7734
7742
|
extend Gem::Deprecate
|
7735
|
-
deprecate :CustomConf, :none, 2025,
|
7736
|
-
deprecate :CustomConf=, :none, 2025,
|
7743
|
+
deprecate :CustomConf, :none, 2025, 9
|
7744
|
+
deprecate :CustomConf=, :none, 2025, 9
|
7737
7745
|
|
7738
7746
|
def initialize(count=nil, customconf=nil, weightrule=nil, customconfinfo=nil, requestid=nil)
|
7739
7747
|
@Count = count
|
@@ -9700,8 +9708,8 @@ module TencentCloud
|
|
9700
9708
|
|
9701
9709
|
attr_accessor :AsyncRequestId, :RequestId
|
9702
9710
|
extend Gem::Deprecate
|
9703
|
-
deprecate :AsyncRequestId, :none, 2025,
|
9704
|
-
deprecate :AsyncRequestId=, :none, 2025,
|
9711
|
+
deprecate :AsyncRequestId, :none, 2025, 9
|
9712
|
+
deprecate :AsyncRequestId=, :none, 2025, 9
|
9705
9713
|
|
9706
9714
|
def initialize(asyncrequestid=nil, requestid=nil)
|
9707
9715
|
@AsyncRequestId = asyncrequestid
|
@@ -10441,8 +10449,8 @@ module TencentCloud
|
|
10441
10449
|
|
10442
10450
|
attr_accessor :InstanceId, :LogExpireDay, :HighLogExpireDay, :AuditAll, :AuditRuleFilters, :RuleTemplateIds
|
10443
10451
|
extend Gem::Deprecate
|
10444
|
-
deprecate :AuditRuleFilters, :none, 2025,
|
10445
|
-
deprecate :AuditRuleFilters=, :none, 2025,
|
10452
|
+
deprecate :AuditRuleFilters, :none, 2025, 9
|
10453
|
+
deprecate :AuditRuleFilters=, :none, 2025, 9
|
10446
10454
|
|
10447
10455
|
def initialize(instanceid=nil, logexpireday=nil, highlogexpireday=nil, auditall=nil, auditrulefilters=nil, ruletemplateids=nil)
|
10448
10456
|
@InstanceId = instanceid
|
@@ -11148,8 +11156,8 @@ module TencentCloud
|
|
11148
11156
|
|
11149
11157
|
attr_accessor :AsyncRequestId, :RequestId
|
11150
11158
|
extend Gem::Deprecate
|
11151
|
-
deprecate :AsyncRequestId, :none, 2025,
|
11152
|
-
deprecate :AsyncRequestId=, :none, 2025,
|
11159
|
+
deprecate :AsyncRequestId, :none, 2025, 9
|
11160
|
+
deprecate :AsyncRequestId=, :none, 2025, 9
|
11153
11161
|
|
11154
11162
|
def initialize(asyncrequestid=nil, requestid=nil)
|
11155
11163
|
@AsyncRequestId = asyncrequestid
|
@@ -11574,8 +11582,8 @@ module TencentCloud
|
|
11574
11582
|
|
11575
11583
|
attr_accessor :RoGroupId, :RoGroupInfo, :RoWeightValues, :IsBalanceRoLoad, :ReplicationDelayTime
|
11576
11584
|
extend Gem::Deprecate
|
11577
|
-
deprecate :ReplicationDelayTime, :none, 2025,
|
11578
|
-
deprecate :ReplicationDelayTime=, :none, 2025,
|
11585
|
+
deprecate :ReplicationDelayTime, :none, 2025, 9
|
11586
|
+
deprecate :ReplicationDelayTime=, :none, 2025, 9
|
11579
11587
|
|
11580
11588
|
def initialize(rogroupid=nil, rogroupinfo=nil, roweightvalues=nil, isbalanceroload=nil, replicationdelaytime=nil)
|
11581
11589
|
@RoGroupId = rogroupid
|
@@ -11806,8 +11814,8 @@ module TencentCloud
|
|
11806
11814
|
|
11807
11815
|
attr_accessor :InstanceId, :LogExpireDay, :HighLogExpireDay, :AuditRuleFilters, :RuleTemplateIds, :AuditAll
|
11808
11816
|
extend Gem::Deprecate
|
11809
|
-
deprecate :AuditRuleFilters, :none, 2025,
|
11810
|
-
deprecate :AuditRuleFilters=, :none, 2025,
|
11817
|
+
deprecate :AuditRuleFilters, :none, 2025, 9
|
11818
|
+
deprecate :AuditRuleFilters=, :none, 2025, 9
|
11811
11819
|
|
11812
11820
|
def initialize(instanceid=nil, logexpireday=nil, highlogexpireday=nil, auditrulefilters=nil, ruletemplateids=nil, auditall=nil)
|
11813
11821
|
@InstanceId = instanceid
|
@@ -12086,8 +12094,8 @@ module TencentCloud
|
|
12086
12094
|
|
12087
12095
|
attr_accessor :InstanceId, :ParamName, :OldValue, :NewValue, :IsSucess, :ModifyTime, :IsSuccess
|
12088
12096
|
extend Gem::Deprecate
|
12089
|
-
deprecate :IsSucess, :none, 2025,
|
12090
|
-
deprecate :IsSucess=, :none, 2025,
|
12097
|
+
deprecate :IsSucess, :none, 2025, 9
|
12098
|
+
deprecate :IsSucess=, :none, 2025, 9
|
12091
12099
|
|
12092
12100
|
def initialize(instanceid=nil, paramname=nil, oldvalue=nil, newvalue=nil, issucess=nil, modifytime=nil, issuccess=nil)
|
12093
12101
|
@InstanceId = instanceid
|
@@ -12291,10 +12299,14 @@ module TencentCloud
|
|
12291
12299
|
# @type AccessMode: String
|
12292
12300
|
# @param AutoLoadBalance: 是否开启自动负载均衡
|
12293
12301
|
# @type AutoLoadBalance: Boolean
|
12302
|
+
# @param ApNodeAsRoNode: 是否把libra当作ro节点
|
12303
|
+
# @type ApNodeAsRoNode: Boolean
|
12304
|
+
# @param ApQueryToOtherNode: libra节点故障,是否转发给其他节点
|
12305
|
+
# @type ApQueryToOtherNode: Boolean
|
12294
12306
|
|
12295
|
-
attr_accessor :ProxyAddressId, :UniqVpcId, :UniqSubnetId, :Vip, :VPort, :WeightMode, :IsKickOut, :MinCount, :MaxDelay, :AutoAddRo, :ReadOnly, :TransSplit, :FailOver, :ConnectionPool, :Desc, :ProxyAllocation, :AccessMode, :AutoLoadBalance
|
12307
|
+
attr_accessor :ProxyAddressId, :UniqVpcId, :UniqSubnetId, :Vip, :VPort, :WeightMode, :IsKickOut, :MinCount, :MaxDelay, :AutoAddRo, :ReadOnly, :TransSplit, :FailOver, :ConnectionPool, :Desc, :ProxyAllocation, :AccessMode, :AutoLoadBalance, :ApNodeAsRoNode, :ApQueryToOtherNode
|
12296
12308
|
|
12297
|
-
def initialize(proxyaddressid=nil, uniqvpcid=nil, uniqsubnetid=nil, vip=nil, vport=nil, weightmode=nil, iskickout=nil, mincount=nil, maxdelay=nil, autoaddro=nil, readonly=nil, transsplit=nil, failover=nil, connectionpool=nil, desc=nil, proxyallocation=nil, accessmode=nil, autoloadbalance=nil)
|
12309
|
+
def initialize(proxyaddressid=nil, uniqvpcid=nil, uniqsubnetid=nil, vip=nil, vport=nil, weightmode=nil, iskickout=nil, mincount=nil, maxdelay=nil, autoaddro=nil, readonly=nil, transsplit=nil, failover=nil, connectionpool=nil, desc=nil, proxyallocation=nil, accessmode=nil, autoloadbalance=nil, apnodeasronode=nil, apquerytoothernode=nil)
|
12298
12310
|
@ProxyAddressId = proxyaddressid
|
12299
12311
|
@UniqVpcId = uniqvpcid
|
12300
12312
|
@UniqSubnetId = uniqsubnetid
|
@@ -12313,6 +12325,8 @@ module TencentCloud
|
|
12313
12325
|
@ProxyAllocation = proxyallocation
|
12314
12326
|
@AccessMode = accessmode
|
12315
12327
|
@AutoLoadBalance = autoloadbalance
|
12328
|
+
@ApNodeAsRoNode = apnodeasronode
|
12329
|
+
@ApQueryToOtherNode = apquerytoothernode
|
12316
12330
|
end
|
12317
12331
|
|
12318
12332
|
def deserialize(params)
|
@@ -12341,6 +12355,8 @@ module TencentCloud
|
|
12341
12355
|
end
|
12342
12356
|
@AccessMode = params['AccessMode']
|
12343
12357
|
@AutoLoadBalance = params['AutoLoadBalance']
|
12358
|
+
@ApNodeAsRoNode = params['ApNodeAsRoNode']
|
12359
|
+
@ApQueryToOtherNode = params['ApQueryToOtherNode']
|
12344
12360
|
end
|
12345
12361
|
end
|
12346
12362
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tencentcloud-sdk-cdb
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.0.
|
4
|
+
version: 3.0.1140
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tencent Cloud
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-
|
11
|
+
date: 2025-09-15 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|