tencentcloud-sdk-cynosdb 3.0.1179 → 3.0.1181
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 +25 -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: 6315f7f1fd9cc238fdf4cb3ab546ee2f4e41afb0
|
|
4
|
+
data.tar.gz: dcf4f4d6364dbdfaeb1b436711c7f783406fb02d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9828584dd611f3196e8568103451121d6fb8e9a140cd1c7c43e6f0e3330d7a22b0489212bae5a7f7eeea483363305d7e7fad10dd602924ced67d9f634c7aff00
|
|
7
|
+
data.tar.gz: 62a3df1eb450c178787926e8881cb0e5f85a131c2e81839cd339d536d52ecf22eafda6dd56f7d7baaf16ac9626089ebe770cee75b0009d8b48fe2d460e65f7c2
|
data/lib/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.0.
|
|
1
|
+
3.0.1181
|
data/lib/v20190107/models.rb
CHANGED
|
@@ -231,7 +231,9 @@ module TencentCloud
|
|
|
231
231
|
# @type Memory: Integer
|
|
232
232
|
# @param ReadOnlyCount: 新增只读实例数,取值范围为(0,15]
|
|
233
233
|
# @type ReadOnlyCount: Integer
|
|
234
|
-
# @param DeviceType:
|
|
234
|
+
# @param DeviceType: 实例机器类型,支持值如下:
|
|
235
|
+
# - common:表示通用型
|
|
236
|
+
# - exclusive:表示独享型
|
|
235
237
|
# @type DeviceType: String
|
|
236
238
|
# @param InstanceGrpId: 实例组ID,在已有RO组中新增实例时使用,不传则新增RO组。当前版本不建议传输该值。
|
|
237
239
|
# @type InstanceGrpId: String
|
|
@@ -1028,15 +1030,18 @@ module TencentCloud
|
|
|
1028
1030
|
# @type FinishTime: String
|
|
1029
1031
|
# @param BinlogId: Binlog文件ID
|
|
1030
1032
|
# @type BinlogId: Integer
|
|
1033
|
+
# @param CrossRegions: binlog所跨地域
|
|
1034
|
+
# @type CrossRegions: Array
|
|
1031
1035
|
|
|
1032
|
-
attr_accessor :FileName, :FileSize, :StartTime, :FinishTime, :BinlogId
|
|
1036
|
+
attr_accessor :FileName, :FileSize, :StartTime, :FinishTime, :BinlogId, :CrossRegions
|
|
1033
1037
|
|
|
1034
|
-
def initialize(filename=nil, filesize=nil, starttime=nil, finishtime=nil, binlogid=nil)
|
|
1038
|
+
def initialize(filename=nil, filesize=nil, starttime=nil, finishtime=nil, binlogid=nil, crossregions=nil)
|
|
1035
1039
|
@FileName = filename
|
|
1036
1040
|
@FileSize = filesize
|
|
1037
1041
|
@StartTime = starttime
|
|
1038
1042
|
@FinishTime = finishtime
|
|
1039
1043
|
@BinlogId = binlogid
|
|
1044
|
+
@CrossRegions = crossregions
|
|
1040
1045
|
end
|
|
1041
1046
|
|
|
1042
1047
|
def deserialize(params)
|
|
@@ -1045,6 +1050,7 @@ module TencentCloud
|
|
|
1045
1050
|
@StartTime = params['StartTime']
|
|
1046
1051
|
@FinishTime = params['FinishTime']
|
|
1047
1052
|
@BinlogId = params['BinlogId']
|
|
1053
|
+
@CrossRegions = params['CrossRegions']
|
|
1048
1054
|
end
|
|
1049
1055
|
end
|
|
1050
1056
|
|
|
@@ -1663,10 +1669,12 @@ module TencentCloud
|
|
|
1663
1669
|
# @param InstanceDeviceType: 实例机器类型
|
|
1664
1670
|
# @type InstanceDeviceType: String
|
|
1665
1671
|
# @param InstanceStorageType: 实例存储类型
|
|
1672
|
+
# 说明:仅当要查询的资源为 LibraDB 时,此参数才会返回值。
|
|
1666
1673
|
# @type InstanceStorageType: String
|
|
1667
1674
|
# @param DbMode: 数据库类型
|
|
1668
1675
|
# @type DbMode: String
|
|
1669
1676
|
# @param NodeList: 节点列表
|
|
1677
|
+
# 说明:仅当要查询的资源为 LibraDB 时,此参数才会返回值。
|
|
1670
1678
|
# @type NodeList: Array
|
|
1671
1679
|
|
|
1672
1680
|
attr_accessor :InstanceId, :InstanceName, :InstanceType, :InstanceStatus, :InstanceStatusDesc, :InstanceCpu, :InstanceMemory, :InstanceStorage, :InstanceRole, :MaintainStartTime, :MaintainDuration, :MaintainWeekDays, :ServerlessStatus, :InstanceTasks, :InstanceDeviceType, :InstanceStorageType, :DbMode, :NodeList
|
|
@@ -3385,7 +3393,16 @@ module TencentCloud
|
|
|
3385
3393
|
# @type Zone: String
|
|
3386
3394
|
# @param PhysicalZone: 物理可用区
|
|
3387
3395
|
# @type PhysicalZone: String
|
|
3388
|
-
# @param Status:
|
|
3396
|
+
# @param Status: 状态,支持的值如下:
|
|
3397
|
+
# - creating:创建中
|
|
3398
|
+
# - running:运行中
|
|
3399
|
+
# - isolating:隔离中
|
|
3400
|
+
# - isolated:已隔离
|
|
3401
|
+
# - activating:从回收站重新恢复
|
|
3402
|
+
# - offlining:下线中
|
|
3403
|
+
# - offlined:已下线
|
|
3404
|
+
# - deleting:删除中
|
|
3405
|
+
# - deleted:已删除
|
|
3389
3406
|
# @type Status: String
|
|
3390
3407
|
# @param StatusDesc: 状态描述
|
|
3391
3408
|
# @type StatusDesc: String
|
|
@@ -5771,7 +5788,7 @@ module TencentCloud
|
|
|
5771
5788
|
# @type EndTime: String
|
|
5772
5789
|
# @param Offset: 偏移量
|
|
5773
5790
|
# @type Offset: Integer
|
|
5774
|
-
# @param Limit:
|
|
5791
|
+
# @param Limit: 限制条数,默认值为20
|
|
5775
5792
|
# @type Limit: Integer
|
|
5776
5793
|
|
|
5777
5794
|
attr_accessor :ClusterId, :StartTime, :EndTime, :Offset, :Limit
|
|
@@ -8994,7 +9011,9 @@ module TencentCloud
|
|
|
8994
9011
|
# @type InstancePayMode: String
|
|
8995
9012
|
# @param StoragePayMode: 存储购买类型,可选值为:PREPAID, POSTPAID
|
|
8996
9013
|
# @type StoragePayMode: String
|
|
8997
|
-
# @param DeviceType:
|
|
9014
|
+
# @param DeviceType: 实例设备类型,支持值如下:
|
|
9015
|
+
# - common:表示通用型
|
|
9016
|
+
# - exclusive:表示独享型
|
|
8998
9017
|
# @type DeviceType: String
|
|
8999
9018
|
# @param Cpu: CPU核数,PREPAID与POSTPAID实例类型必传
|
|
9000
9019
|
# @type Cpu: Integer
|
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.1181
|
|
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-12-
|
|
11
|
+
date: 2025-12-10 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: tencentcloud-sdk-common
|