tencentcloud-sdk-cynosdb 3.0.1161 → 3.0.1164
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/v20190107/models.rb +63 -33
- 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: 860dd922f97ef8375ea989705eddd7c5c020d876
|
|
4
|
+
data.tar.gz: 9b8b0b7f219d98c095c9676e02612ef751bfdaa4
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b6e9ca0e249344186d79972179d805f34e749fc9bbd72de2d7c30b3073573f43446ac8cca9ba0d88af3920f55150e155c9c70918dd747f4b1df6554fe9149400
|
|
7
|
+
data.tar.gz: 2b4b84be05abce6827f4a25f775983f7e74585505a5eac6eee397cb58245659924ece9572d7a59816146c406c9563b5c785d6f0ed458bcabca8d5cc2f5fac30a
|
data/lib/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.0.
|
|
1
|
+
3.0.1164
|
data/lib/v20190107/models.rb
CHANGED
|
@@ -35,10 +35,18 @@ module TencentCloud
|
|
|
35
35
|
# @type NoSupportTransparentDataEncryptionReason: String
|
|
36
36
|
# @param IsSupportManualLogic: 是否支持手动发起逻辑备份
|
|
37
37
|
# @type IsSupportManualLogic: String
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
38
|
+
# @param IsSupportGlobalEncryption: 是否支持开启全局加密
|
|
39
|
+
# @type IsSupportGlobalEncryption: String
|
|
40
|
+
# @param NoSupportGlobalEncryptionReason: 不支持全局加密的原因
|
|
41
|
+
# @type NoSupportGlobalEncryptionReason: String
|
|
42
|
+
# @param NoSupportTransparentDataEncryptionReasonCode: 不支持透明加密原因状态码
|
|
43
|
+
# @type NoSupportTransparentDataEncryptionReasonCode: String
|
|
44
|
+
# @param NoSupportGlobalEncryptionReasonCode: 不支持全局加密原因状态码
|
|
45
|
+
# @type NoSupportGlobalEncryptionReasonCode: String
|
|
46
|
+
|
|
47
|
+
attr_accessor :IsSupportSlaveZone, :NonsupportSlaveZoneReason, :IsSupportRo, :NonsupportRoReason, :IsSupportManualSnapshot, :IsSupportTransparentDataEncryption, :NoSupportTransparentDataEncryptionReason, :IsSupportManualLogic, :IsSupportGlobalEncryption, :NoSupportGlobalEncryptionReason, :NoSupportTransparentDataEncryptionReasonCode, :NoSupportGlobalEncryptionReasonCode
|
|
48
|
+
|
|
49
|
+
def initialize(issupportslavezone=nil, nonsupportslavezonereason=nil, issupportro=nil, nonsupportroreason=nil, issupportmanualsnapshot=nil, issupporttransparentdataencryption=nil, nosupporttransparentdataencryptionreason=nil, issupportmanuallogic=nil, issupportglobalencryption=nil, nosupportglobalencryptionreason=nil, nosupporttransparentdataencryptionreasoncode=nil, nosupportglobalencryptionreasoncode=nil)
|
|
42
50
|
@IsSupportSlaveZone = issupportslavezone
|
|
43
51
|
@NonsupportSlaveZoneReason = nonsupportslavezonereason
|
|
44
52
|
@IsSupportRo = issupportro
|
|
@@ -47,6 +55,10 @@ module TencentCloud
|
|
|
47
55
|
@IsSupportTransparentDataEncryption = issupporttransparentdataencryption
|
|
48
56
|
@NoSupportTransparentDataEncryptionReason = nosupporttransparentdataencryptionreason
|
|
49
57
|
@IsSupportManualLogic = issupportmanuallogic
|
|
58
|
+
@IsSupportGlobalEncryption = issupportglobalencryption
|
|
59
|
+
@NoSupportGlobalEncryptionReason = nosupportglobalencryptionreason
|
|
60
|
+
@NoSupportTransparentDataEncryptionReasonCode = nosupporttransparentdataencryptionreasoncode
|
|
61
|
+
@NoSupportGlobalEncryptionReasonCode = nosupportglobalencryptionreasoncode
|
|
50
62
|
end
|
|
51
63
|
|
|
52
64
|
def deserialize(params)
|
|
@@ -58,6 +70,10 @@ module TencentCloud
|
|
|
58
70
|
@IsSupportTransparentDataEncryption = params['IsSupportTransparentDataEncryption']
|
|
59
71
|
@NoSupportTransparentDataEncryptionReason = params['NoSupportTransparentDataEncryptionReason']
|
|
60
72
|
@IsSupportManualLogic = params['IsSupportManualLogic']
|
|
73
|
+
@IsSupportGlobalEncryption = params['IsSupportGlobalEncryption']
|
|
74
|
+
@NoSupportGlobalEncryptionReason = params['NoSupportGlobalEncryptionReason']
|
|
75
|
+
@NoSupportTransparentDataEncryptionReasonCode = params['NoSupportTransparentDataEncryptionReasonCode']
|
|
76
|
+
@NoSupportGlobalEncryptionReasonCode = params['NoSupportGlobalEncryptionReasonCode']
|
|
61
77
|
end
|
|
62
78
|
end
|
|
63
79
|
|
|
@@ -247,8 +263,8 @@ module TencentCloud
|
|
|
247
263
|
|
|
248
264
|
attr_accessor :ClusterId, :Cpu, :Memory, :ReadOnlyCount, :DeviceType, :InstanceGrpId, :VpcId, :SubnetId, :Port, :InstanceName, :AutoVoucher, :DbType, :OrderSource, :DealMode, :ParamTemplateId, :InstanceParams, :SecurityGroupIds, :UpgradeProxy
|
|
249
265
|
extend Gem::Deprecate
|
|
250
|
-
deprecate :InstanceGrpId, :none, 2025,
|
|
251
|
-
deprecate :InstanceGrpId=, :none, 2025,
|
|
266
|
+
deprecate :InstanceGrpId, :none, 2025, 11
|
|
267
|
+
deprecate :InstanceGrpId=, :none, 2025, 11
|
|
252
268
|
|
|
253
269
|
def initialize(clusterid=nil, cpu=nil, memory=nil, readonlycount=nil, devicetype=nil, instancegrpid=nil, vpcid=nil, subnetid=nil, port=nil, instancename=nil, autovoucher=nil, dbtype=nil, ordersource=nil, dealmode=nil, paramtemplateid=nil, instanceparams=nil, securitygroupids=nil, upgradeproxy=nil)
|
|
254
270
|
@ClusterId = clusterid
|
|
@@ -1117,10 +1133,10 @@ module TencentCloud
|
|
|
1117
1133
|
|
|
1118
1134
|
attr_accessor :ID, :AppId, :ClusterId, :Region, :CreateTime, :DelayTime, :ErrMsg, :FlowId, :Input, :InstanceGrpId, :InstanceGroupId, :InstanceId, :ObjectId, :ObjectType, :Operator, :Output, :Status, :TaskType, :TriggerTaskId, :UpdateTime, :StartTime, :EndTime, :ClusterName, :InstanceName, :Process, :ModifyParamsData, :CreateClustersData, :RollbackData, :ModifyInstanceData, :ManualBackupData, :ModifyDbVersionData, :ClusterSlaveData, :SwitchClusterLogBin, :ModifyInstanceParamsData, :TaskMaintainInfo, :InstanceCLSDeliveryInfos, :TaskProgressInfo, :GdnTaskInfo
|
|
1119
1135
|
extend Gem::Deprecate
|
|
1120
|
-
deprecate :InstanceGrpId, :none, 2025,
|
|
1121
|
-
deprecate :InstanceGrpId=, :none, 2025,
|
|
1122
|
-
deprecate :ModifyParamsData, :none, 2025,
|
|
1123
|
-
deprecate :ModifyParamsData=, :none, 2025,
|
|
1136
|
+
deprecate :InstanceGrpId, :none, 2025, 11
|
|
1137
|
+
deprecate :InstanceGrpId=, :none, 2025, 11
|
|
1138
|
+
deprecate :ModifyParamsData, :none, 2025, 11
|
|
1139
|
+
deprecate :ModifyParamsData=, :none, 2025, 11
|
|
1124
1140
|
|
|
1125
1141
|
def initialize(id=nil, appid=nil, clusterid=nil, region=nil, createtime=nil, delaytime=nil, errmsg=nil, flowid=nil, input=nil, instancegrpid=nil, instancegroupid=nil, instanceid=nil, objectid=nil, objecttype=nil, operator=nil, output=nil, status=nil, tasktype=nil, triggertaskid=nil, updatetime=nil, starttime=nil, endtime=nil, clustername=nil, instancename=nil, process=nil, modifyparamsdata=nil, createclustersdata=nil, rollbackdata=nil, modifyinstancedata=nil, manualbackupdata=nil, modifydbversiondata=nil, clusterslavedata=nil, switchclusterlogbin=nil, modifyinstanceparamsdata=nil, taskmaintaininfo=nil, instanceclsdeliveryinfos=nil, taskprogressinfo=nil, gdntaskinfo=nil)
|
|
1126
1142
|
@ID = id
|
|
@@ -1578,8 +1594,8 @@ module TencentCloud
|
|
|
1578
1594
|
|
|
1579
1595
|
attr_accessor :InstanceGrpId, :InstanceGroupId, :InstanceId
|
|
1580
1596
|
extend Gem::Deprecate
|
|
1581
|
-
deprecate :InstanceGrpId, :none, 2025,
|
|
1582
|
-
deprecate :InstanceGrpId=, :none, 2025,
|
|
1597
|
+
deprecate :InstanceGrpId, :none, 2025, 11
|
|
1598
|
+
deprecate :InstanceGrpId=, :none, 2025, 11
|
|
1583
1599
|
|
|
1584
1600
|
def initialize(instancegrpid=nil, instancegroupid=nil, instanceid=nil)
|
|
1585
1601
|
@InstanceGrpId = instancegrpid
|
|
@@ -1948,8 +1964,8 @@ module TencentCloud
|
|
|
1948
1964
|
|
|
1949
1965
|
attr_accessor :InstanceId, :StartTime, :EndTime, :Order, :OrderBy, :Filter, :LogFilter, :ColumnFilter
|
|
1950
1966
|
extend Gem::Deprecate
|
|
1951
|
-
deprecate :Filter, :none, 2025,
|
|
1952
|
-
deprecate :Filter=, :none, 2025,
|
|
1967
|
+
deprecate :Filter, :none, 2025, 11
|
|
1968
|
+
deprecate :Filter=, :none, 2025, 11
|
|
1953
1969
|
|
|
1954
1970
|
def initialize(instanceid=nil, starttime=nil, endtime=nil, order=nil, orderby=nil, filter=nil, logfilter=nil, columnfilter=nil)
|
|
1955
1971
|
@InstanceId = instanceid
|
|
@@ -2293,7 +2309,9 @@ module TencentCloud
|
|
|
2293
2309
|
# @type AdminPassword: String
|
|
2294
2310
|
# @param Port: 端口,默认3306,取值范围[0, 65535)
|
|
2295
2311
|
# @type Port: Integer
|
|
2296
|
-
# @param PayMode:
|
|
2312
|
+
# @param PayMode: 计费模式,支持值为0和1,默认值为0。
|
|
2313
|
+
# 取值为0,表示按量计费。
|
|
2314
|
+
# 取值为1,表示包年包月。
|
|
2297
2315
|
# @type PayMode: Integer
|
|
2298
2316
|
# @param Count: 购买集群数,可选值范围[1,50],默认为1
|
|
2299
2317
|
# @type Count: Integer
|
|
@@ -5111,8 +5129,8 @@ module TencentCloud
|
|
|
5111
5129
|
|
|
5112
5130
|
attr_accessor :InstanceId, :StartTime, :EndTime, :Order, :OrderBy, :Filter, :Limit, :Offset, :LogFilter
|
|
5113
5131
|
extend Gem::Deprecate
|
|
5114
|
-
deprecate :Filter, :none, 2025,
|
|
5115
|
-
deprecate :Filter=, :none, 2025,
|
|
5132
|
+
deprecate :Filter, :none, 2025, 11
|
|
5133
|
+
deprecate :Filter=, :none, 2025, 11
|
|
5116
5134
|
|
|
5117
5135
|
def initialize(instanceid=nil, starttime=nil, endtime=nil, order=nil, orderby=nil, filter=nil, limit=nil, offset=nil, logfilter=nil)
|
|
5118
5136
|
@InstanceId = instanceid
|
|
@@ -6149,8 +6167,8 @@ module TencentCloud
|
|
|
6149
6167
|
|
|
6150
6168
|
attr_accessor :TotalCount, :InstanceGrpInfoList, :InstanceGroupInfoList, :RequestId
|
|
6151
6169
|
extend Gem::Deprecate
|
|
6152
|
-
deprecate :InstanceGrpInfoList, :none, 2025,
|
|
6153
|
-
deprecate :InstanceGrpInfoList=, :none, 2025,
|
|
6170
|
+
deprecate :InstanceGrpInfoList, :none, 2025, 11
|
|
6171
|
+
deprecate :InstanceGrpInfoList=, :none, 2025, 11
|
|
6154
6172
|
|
|
6155
6173
|
def initialize(totalcount=nil, instancegrpinfolist=nil, instancegroupinfolist=nil, requestid=nil)
|
|
6156
6174
|
@TotalCount = totalcount
|
|
@@ -6442,20 +6460,28 @@ module TencentCloud
|
|
|
6442
6460
|
# @type KeyId: String
|
|
6443
6461
|
# @param KeyRegion: 加密秘钥地域
|
|
6444
6462
|
# @type KeyRegion: String
|
|
6463
|
+
# @param KeyType: 秘钥类型
|
|
6464
|
+
# @type KeyType: String
|
|
6465
|
+
# @param IsOpenGlobalEncryption: 是否已经开启全局加密
|
|
6466
|
+
# @type IsOpenGlobalEncryption: Boolean
|
|
6445
6467
|
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
6446
6468
|
# @type RequestId: String
|
|
6447
6469
|
|
|
6448
|
-
attr_accessor :KeyId, :KeyRegion, :RequestId
|
|
6470
|
+
attr_accessor :KeyId, :KeyRegion, :KeyType, :IsOpenGlobalEncryption, :RequestId
|
|
6449
6471
|
|
|
6450
|
-
def initialize(keyid=nil, keyregion=nil, requestid=nil)
|
|
6472
|
+
def initialize(keyid=nil, keyregion=nil, keytype=nil, isopenglobalencryption=nil, requestid=nil)
|
|
6451
6473
|
@KeyId = keyid
|
|
6452
6474
|
@KeyRegion = keyregion
|
|
6475
|
+
@KeyType = keytype
|
|
6476
|
+
@IsOpenGlobalEncryption = isopenglobalencryption
|
|
6453
6477
|
@RequestId = requestid
|
|
6454
6478
|
end
|
|
6455
6479
|
|
|
6456
6480
|
def deserialize(params)
|
|
6457
6481
|
@KeyId = params['KeyId']
|
|
6458
6482
|
@KeyRegion = params['KeyRegion']
|
|
6483
|
+
@KeyType = params['KeyType']
|
|
6484
|
+
@IsOpenGlobalEncryption = params['IsOpenGlobalEncryption']
|
|
6459
6485
|
@RequestId = params['RequestId']
|
|
6460
6486
|
end
|
|
6461
6487
|
end
|
|
@@ -6542,13 +6568,13 @@ module TencentCloud
|
|
|
6542
6568
|
class DescribeDBSecurityGroupsRequest < TencentCloud::Common::AbstractModel
|
|
6543
6569
|
# @param InstanceId: 实例ID(InstanceId与InstanceGroupId必须任选一个传入)
|
|
6544
6570
|
# @type InstanceId: String
|
|
6545
|
-
# @param InstanceGroupId: 实例组ID
|
|
6571
|
+
# @param InstanceGroupId: 实例组 ID,可通过 [DescribeClusterInstanceGroups](https://cloud.tencent.com/document/product/1003/103934) 接口查询。
|
|
6546
6572
|
# @type InstanceGroupId: String
|
|
6547
6573
|
|
|
6548
6574
|
attr_accessor :InstanceId, :InstanceGroupId
|
|
6549
6575
|
extend Gem::Deprecate
|
|
6550
|
-
deprecate :InstanceId, :none, 2025,
|
|
6551
|
-
deprecate :InstanceId=, :none, 2025,
|
|
6576
|
+
deprecate :InstanceId, :none, 2025, 11
|
|
6577
|
+
deprecate :InstanceId=, :none, 2025, 11
|
|
6552
6578
|
|
|
6553
6579
|
def initialize(instanceid=nil, instancegroupid=nil)
|
|
6554
6580
|
@InstanceId = instanceid
|
|
@@ -11760,8 +11786,8 @@ module TencentCloud
|
|
|
11760
11786
|
|
|
11761
11787
|
attr_accessor :ClusterId, :InstanceGrpId, :InstanceGroupId, :Vip, :Vport, :DbType, :OldIpReserveHours
|
|
11762
11788
|
extend Gem::Deprecate
|
|
11763
|
-
deprecate :InstanceGrpId, :none, 2025,
|
|
11764
|
-
deprecate :InstanceGrpId=, :none, 2025,
|
|
11789
|
+
deprecate :InstanceGrpId, :none, 2025, 11
|
|
11790
|
+
deprecate :InstanceGrpId=, :none, 2025, 11
|
|
11765
11791
|
|
|
11766
11792
|
def initialize(clusterid=nil, instancegrpid=nil, instancegroupid=nil, vip=nil, vport=nil, dbtype=nil, oldipreservehours=nil)
|
|
11767
11793
|
@ClusterId = clusterid
|
|
@@ -12061,8 +12087,8 @@ module TencentCloud
|
|
|
12061
12087
|
|
|
12062
12088
|
attr_accessor :InstanceId, :LogExpireDay, :HighLogExpireDay, :AuditRuleFilters, :RuleTemplateIds, :AuditAll
|
|
12063
12089
|
extend Gem::Deprecate
|
|
12064
|
-
deprecate :AuditRuleFilters, :none, 2025,
|
|
12065
|
-
deprecate :AuditRuleFilters=, :none, 2025,
|
|
12090
|
+
deprecate :AuditRuleFilters, :none, 2025, 11
|
|
12091
|
+
deprecate :AuditRuleFilters=, :none, 2025, 11
|
|
12066
12092
|
|
|
12067
12093
|
def initialize(instanceid=nil, logexpireday=nil, highlogexpireday=nil, auditrulefilters=nil, ruletemplateids=nil, auditall=nil)
|
|
12068
12094
|
@InstanceId = instanceid
|
|
@@ -12220,14 +12246,17 @@ module TencentCloud
|
|
|
12220
12246
|
# @type KeyId: String
|
|
12221
12247
|
# @param KeyRegion: 秘钥地域
|
|
12222
12248
|
# @type KeyRegion: String
|
|
12249
|
+
# @param IsOpenGlobalEncryption: 是否开启全局加密
|
|
12250
|
+
# @type IsOpenGlobalEncryption: Boolean
|
|
12223
12251
|
|
|
12224
|
-
attr_accessor :ClusterId, :KeyType, :KeyId, :KeyRegion
|
|
12252
|
+
attr_accessor :ClusterId, :KeyType, :KeyId, :KeyRegion, :IsOpenGlobalEncryption
|
|
12225
12253
|
|
|
12226
|
-
def initialize(clusterid=nil, keytype=nil, keyid=nil, keyregion=nil)
|
|
12254
|
+
def initialize(clusterid=nil, keytype=nil, keyid=nil, keyregion=nil, isopenglobalencryption=nil)
|
|
12227
12255
|
@ClusterId = clusterid
|
|
12228
12256
|
@KeyType = keytype
|
|
12229
12257
|
@KeyId = keyid
|
|
12230
12258
|
@KeyRegion = keyregion
|
|
12259
|
+
@IsOpenGlobalEncryption = isopenglobalencryption
|
|
12231
12260
|
end
|
|
12232
12261
|
|
|
12233
12262
|
def deserialize(params)
|
|
@@ -12235,6 +12264,7 @@ module TencentCloud
|
|
|
12235
12264
|
@KeyType = params['KeyType']
|
|
12236
12265
|
@KeyId = params['KeyId']
|
|
12237
12266
|
@KeyRegion = params['KeyRegion']
|
|
12267
|
+
@IsOpenGlobalEncryption = params['IsOpenGlobalEncryption']
|
|
12238
12268
|
end
|
|
12239
12269
|
end
|
|
12240
12270
|
|
|
@@ -12369,8 +12399,8 @@ module TencentCloud
|
|
|
12369
12399
|
|
|
12370
12400
|
attr_accessor :InstanceGrpId, :InstanceId, :InstanceGroupId
|
|
12371
12401
|
extend Gem::Deprecate
|
|
12372
|
-
deprecate :InstanceGrpId, :none, 2025,
|
|
12373
|
-
deprecate :InstanceGrpId=, :none, 2025,
|
|
12402
|
+
deprecate :InstanceGrpId, :none, 2025, 11
|
|
12403
|
+
deprecate :InstanceGrpId=, :none, 2025, 11
|
|
12374
12404
|
|
|
12375
12405
|
def initialize(instancegrpid=nil, instanceid=nil, instancegroupid=nil)
|
|
12376
12406
|
@InstanceGrpId = instancegrpid
|
|
@@ -13475,7 +13505,7 @@ module TencentCloud
|
|
|
13475
13505
|
|
|
13476
13506
|
# 查询参数过滤器
|
|
13477
13507
|
class QueryParamFilter < TencentCloud::Common::AbstractModel
|
|
13478
|
-
# @param Names: 搜索字段,目前支持:
|
|
13508
|
+
# @param Names: 搜索字段,目前支持:ProxyGroupId
|
|
13479
13509
|
# @type Names: Array
|
|
13480
13510
|
# @param Values: 搜索字符串
|
|
13481
13511
|
# @type Values: Array
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: tencentcloud-sdk-cynosdb
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.0.
|
|
4
|
+
version: 3.0.1164
|
|
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-
|
|
11
|
+
date: 2025-11-09 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: tencentcloud-sdk-common
|