tencentcloud-sdk-cynosdb 3.0.473 → 3.0.474
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 +58 -13
- 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: aceb1c437766588b16a7dac852a430ebd18ca139
|
4
|
+
data.tar.gz: 5516b6627286f7a34d2f39aea3996739d0506a29
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 57f80fc255999c3831691556cea03ad7ab18f3df04f38ed8312849f12f00dbcb0bbe19ff334b23624cd13686451b45f57388811e7f8fc62d926b7ec17051b624
|
7
|
+
data.tar.gz: 05bc41abbb310b58569d83571f15aa68281c6d4d277bb0d7378bde6c4c89bdc701948f84e0d63bea3c0f5014e97f07a4c41e21f6b3c844947f6470958e6ae46f
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.474
|
data/lib/v20190107/models.rb
CHANGED
@@ -954,7 +954,7 @@ module TencentCloud
|
|
954
954
|
# @type SecurityGroupIds: Array
|
955
955
|
# @param AlarmPolicyIds: 告警策略Id数组
|
956
956
|
# @type AlarmPolicyIds: Array
|
957
|
-
# @param ClusterParams:
|
957
|
+
# @param ClusterParams: 参数数组,暂时支持character_set_server (utf8|latin1|gbk|utf8mb4) ,lower_case_table_names,1-大小写不敏感,0-大小写敏感
|
958
958
|
# @type ClusterParams: Array
|
959
959
|
# @param DealMode: 交易模式,0-下单且支付,1-下单
|
960
960
|
# @type DealMode: Integer
|
@@ -2085,34 +2085,51 @@ module TencentCloud
|
|
2085
2085
|
# @type AccountNames: Array
|
2086
2086
|
# @param DbType: 数据库类型,取值范围:
|
2087
2087
|
# <li> MYSQL </li>
|
2088
|
+
# 该参数已废用
|
2088
2089
|
# @type DbType: String
|
2090
|
+
# @param Hosts: 需要过滤的账户列表
|
2091
|
+
# @type Hosts: Array
|
2092
|
+
# @param Limit: 限制量
|
2093
|
+
# @type Limit: Integer
|
2094
|
+
# @param Offset: 偏移量
|
2095
|
+
# @type Offset: Integer
|
2089
2096
|
|
2090
|
-
attr_accessor :ClusterId, :AccountNames, :DbType
|
2097
|
+
attr_accessor :ClusterId, :AccountNames, :DbType, :Hosts, :Limit, :Offset
|
2091
2098
|
|
2092
|
-
def initialize(clusterid=nil, accountnames=nil, dbtype=nil)
|
2099
|
+
def initialize(clusterid=nil, accountnames=nil, dbtype=nil, hosts=nil, limit=nil, offset=nil)
|
2093
2100
|
@ClusterId = clusterid
|
2094
2101
|
@AccountNames = accountnames
|
2095
2102
|
@DbType = dbtype
|
2103
|
+
@Hosts = hosts
|
2104
|
+
@Limit = limit
|
2105
|
+
@Offset = offset
|
2096
2106
|
end
|
2097
2107
|
|
2098
2108
|
def deserialize(params)
|
2099
2109
|
@ClusterId = params['ClusterId']
|
2100
2110
|
@AccountNames = params['AccountNames']
|
2101
2111
|
@DbType = params['DbType']
|
2112
|
+
@Hosts = params['Hosts']
|
2113
|
+
@Limit = params['Limit']
|
2114
|
+
@Offset = params['Offset']
|
2102
2115
|
end
|
2103
2116
|
end
|
2104
2117
|
|
2105
2118
|
# DescribeAccounts返回参数结构体
|
2106
2119
|
class DescribeAccountsResponse < TencentCloud::Common::AbstractModel
|
2107
2120
|
# @param AccountSet: 数据库账号列表
|
2121
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
2108
2122
|
# @type AccountSet: Array
|
2123
|
+
# @param TotalCount: 账号总数量
|
2124
|
+
# @type TotalCount: Integer
|
2109
2125
|
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
2110
2126
|
# @type RequestId: String
|
2111
2127
|
|
2112
|
-
attr_accessor :AccountSet, :RequestId
|
2128
|
+
attr_accessor :AccountSet, :TotalCount, :RequestId
|
2113
2129
|
|
2114
|
-
def initialize(accountset=nil, requestid=nil)
|
2130
|
+
def initialize(accountset=nil, totalcount=nil, requestid=nil)
|
2115
2131
|
@AccountSet = accountset
|
2132
|
+
@TotalCount = totalcount
|
2116
2133
|
@RequestId = requestid
|
2117
2134
|
end
|
2118
2135
|
|
@@ -2125,6 +2142,7 @@ module TencentCloud
|
|
2125
2142
|
@AccountSet << account_tmp
|
2126
2143
|
end
|
2127
2144
|
end
|
2145
|
+
@TotalCount = params['TotalCount']
|
2128
2146
|
@RequestId = params['RequestId']
|
2129
2147
|
end
|
2130
2148
|
end
|
@@ -2391,10 +2409,12 @@ module TencentCloud
|
|
2391
2409
|
# @type FileNames: Array
|
2392
2410
|
# @param BackupNames: 备份备注名,模糊查询
|
2393
2411
|
# @type BackupNames: Array
|
2412
|
+
# @param SnapshotIdList: 快照备份Id列表
|
2413
|
+
# @type SnapshotIdList: Array
|
2394
2414
|
|
2395
|
-
attr_accessor :ClusterId, :Limit, :Offset, :DbType, :BackupIds, :BackupType, :BackupMethod, :SnapShotType, :StartTime, :EndTime, :FileNames, :BackupNames
|
2415
|
+
attr_accessor :ClusterId, :Limit, :Offset, :DbType, :BackupIds, :BackupType, :BackupMethod, :SnapShotType, :StartTime, :EndTime, :FileNames, :BackupNames, :SnapshotIdList
|
2396
2416
|
|
2397
|
-
def initialize(clusterid=nil, limit=nil, offset=nil, dbtype=nil, backupids=nil, backuptype=nil, backupmethod=nil, snapshottype=nil, starttime=nil, endtime=nil, filenames=nil, backupnames=nil)
|
2417
|
+
def initialize(clusterid=nil, limit=nil, offset=nil, dbtype=nil, backupids=nil, backuptype=nil, backupmethod=nil, snapshottype=nil, starttime=nil, endtime=nil, filenames=nil, backupnames=nil, snapshotidlist=nil)
|
2398
2418
|
@ClusterId = clusterid
|
2399
2419
|
@Limit = limit
|
2400
2420
|
@Offset = offset
|
@@ -2407,6 +2427,7 @@ module TencentCloud
|
|
2407
2427
|
@EndTime = endtime
|
2408
2428
|
@FileNames = filenames
|
2409
2429
|
@BackupNames = backupnames
|
2430
|
+
@SnapshotIdList = snapshotidlist
|
2410
2431
|
end
|
2411
2432
|
|
2412
2433
|
def deserialize(params)
|
@@ -2422,6 +2443,7 @@ module TencentCloud
|
|
2422
2443
|
@EndTime = params['EndTime']
|
2423
2444
|
@FileNames = params['FileNames']
|
2424
2445
|
@BackupNames = params['BackupNames']
|
2446
|
+
@SnapshotIdList = params['SnapshotIdList']
|
2425
2447
|
end
|
2426
2448
|
end
|
2427
2449
|
|
@@ -2754,15 +2776,19 @@ module TencentCloud
|
|
2754
2776
|
class DescribeClusterParamsRequest < TencentCloud::Common::AbstractModel
|
2755
2777
|
# @param ClusterId: 集群ID
|
2756
2778
|
# @type ClusterId: String
|
2779
|
+
# @param ParamName: 参数名字
|
2780
|
+
# @type ParamName: String
|
2757
2781
|
|
2758
|
-
attr_accessor :ClusterId
|
2782
|
+
attr_accessor :ClusterId, :ParamName
|
2759
2783
|
|
2760
|
-
def initialize(clusterid=nil)
|
2784
|
+
def initialize(clusterid=nil, paramname=nil)
|
2761
2785
|
@ClusterId = clusterid
|
2786
|
+
@ParamName = paramname
|
2762
2787
|
end
|
2763
2788
|
|
2764
2789
|
def deserialize(params)
|
2765
2790
|
@ClusterId = params['ClusterId']
|
2791
|
+
@ParamName = params['ParamName']
|
2766
2792
|
end
|
2767
2793
|
end
|
2768
2794
|
|
@@ -2771,6 +2797,7 @@ module TencentCloud
|
|
2771
2797
|
# @param TotalCount: 参数个数
|
2772
2798
|
# @type TotalCount: Integer
|
2773
2799
|
# @param Items: 实例参数列表
|
2800
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
2774
2801
|
# @type Items: Array
|
2775
2802
|
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
2776
2803
|
# @type RequestId: String
|
@@ -3316,15 +3343,27 @@ module TencentCloud
|
|
3316
3343
|
class DescribeProjectSecurityGroupsRequest < TencentCloud::Common::AbstractModel
|
3317
3344
|
# @param ProjectId: 项目ID
|
3318
3345
|
# @type ProjectId: Integer
|
3346
|
+
# @param Limit: 限制量
|
3347
|
+
# @type Limit: Integer
|
3348
|
+
# @param Offset: 偏移量
|
3349
|
+
# @type Offset: Integer
|
3350
|
+
# @param SearchKey: 搜索关键字
|
3351
|
+
# @type SearchKey: String
|
3319
3352
|
|
3320
|
-
attr_accessor :ProjectId
|
3353
|
+
attr_accessor :ProjectId, :Limit, :Offset, :SearchKey
|
3321
3354
|
|
3322
|
-
def initialize(projectid=nil)
|
3355
|
+
def initialize(projectid=nil, limit=nil, offset=nil, searchkey=nil)
|
3323
3356
|
@ProjectId = projectid
|
3357
|
+
@Limit = limit
|
3358
|
+
@Offset = offset
|
3359
|
+
@SearchKey = searchkey
|
3324
3360
|
end
|
3325
3361
|
|
3326
3362
|
def deserialize(params)
|
3327
3363
|
@ProjectId = params['ProjectId']
|
3364
|
+
@Limit = params['Limit']
|
3365
|
+
@Offset = params['Offset']
|
3366
|
+
@SearchKey = params['SearchKey']
|
3328
3367
|
end
|
3329
3368
|
end
|
3330
3369
|
|
@@ -3332,13 +3371,16 @@ module TencentCloud
|
|
3332
3371
|
class DescribeProjectSecurityGroupsResponse < TencentCloud::Common::AbstractModel
|
3333
3372
|
# @param Groups: 安全组详情
|
3334
3373
|
# @type Groups: Array
|
3374
|
+
# @param Total: 总数量
|
3375
|
+
# @type Total: Integer
|
3335
3376
|
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
3336
3377
|
# @type RequestId: String
|
3337
3378
|
|
3338
|
-
attr_accessor :Groups, :RequestId
|
3379
|
+
attr_accessor :Groups, :Total, :RequestId
|
3339
3380
|
|
3340
|
-
def initialize(groups=nil, requestid=nil)
|
3381
|
+
def initialize(groups=nil, total=nil, requestid=nil)
|
3341
3382
|
@Groups = groups
|
3383
|
+
@Total = total
|
3342
3384
|
@RequestId = requestid
|
3343
3385
|
end
|
3344
3386
|
|
@@ -3351,6 +3393,7 @@ module TencentCloud
|
|
3351
3393
|
@Groups << securitygroup_tmp
|
3352
3394
|
end
|
3353
3395
|
end
|
3396
|
+
@Total = params['Total']
|
3354
3397
|
@RequestId = params['RequestId']
|
3355
3398
|
end
|
3356
3399
|
end
|
@@ -3421,8 +3464,10 @@ module TencentCloud
|
|
3421
3464
|
# DescribeRollbackTimeRange返回参数结构体
|
3422
3465
|
class DescribeRollbackTimeRangeResponse < TencentCloud::Common::AbstractModel
|
3423
3466
|
# @param TimeRangeStart: 有效回归时间范围开始时间点(已废弃)
|
3467
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
3424
3468
|
# @type TimeRangeStart: String
|
3425
3469
|
# @param TimeRangeEnd: 有效回归时间范围结束时间点(已废弃)
|
3470
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
3426
3471
|
# @type TimeRangeEnd: String
|
3427
3472
|
# @param RollbackTimeRanges: 可回档时间范围
|
3428
3473
|
# @type RollbackTimeRanges: 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.474
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tencent Cloud
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-12-
|
11
|
+
date: 2022-12-15 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|