tencentcloud-sdk-postgres 3.0.588 → 3.0.589
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/v20170312/models.rb +11 -4
- 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: 445efd268cdc7a413721e8c58d395a2ac4aaa130
|
4
|
+
data.tar.gz: f7dedb410c633e42d5c41ce40891380f3d21ec8b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 46cade7cb44a8b8afa20987003455437eac76daca16bbdc423388605b366b01d6f48e6d76bae9c22f260d351a0ce989b1d99b29a0a8be3000fb8983e7c1a3826
|
7
|
+
data.tar.gz: 47058d3e95e73f0c792192301d5acc93553f7fe7811ac8a31146245ec2c2b47864b275a9b432ab663611b2889bb81dbf142025e73db6beb75ad1bd4e0bae4c60
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.589
|
data/lib/v20170312/models.rb
CHANGED
@@ -576,16 +576,20 @@ module TencentCloud
|
|
576
576
|
|
577
577
|
# CreateBaseBackup返回参数结构体
|
578
578
|
class CreateBaseBackupResponse < TencentCloud::Common::AbstractModel
|
579
|
+
# @param BaseBackupId: 基础备份集ID
|
580
|
+
# @type BaseBackupId: String
|
579
581
|
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
580
582
|
# @type RequestId: String
|
581
583
|
|
582
|
-
attr_accessor :RequestId
|
584
|
+
attr_accessor :BaseBackupId, :RequestId
|
583
585
|
|
584
|
-
def initialize(requestid=nil)
|
586
|
+
def initialize(basebackupid=nil, requestid=nil)
|
587
|
+
@BaseBackupId = basebackupid
|
585
588
|
@RequestId = requestid
|
586
589
|
end
|
587
590
|
|
588
591
|
def deserialize(params)
|
592
|
+
@BaseBackupId = params['BaseBackupId']
|
589
593
|
@RequestId = params['RequestId']
|
590
594
|
end
|
591
595
|
end
|
@@ -1405,7 +1409,7 @@ module TencentCloud
|
|
1405
1409
|
# @type DBInstanceId: String
|
1406
1410
|
# @param DBInstanceName: 实例名称
|
1407
1411
|
# @type DBInstanceName: String
|
1408
|
-
# @param DBInstanceStatus: 实例状态,分别为:applying(申请中)、init(待初始化)、initing(初始化中)、running(运行中)、limited run(受限运行)、isolated(已隔离)、recycling(回收中)、recycled(已回收)、job running(任务执行中)、offline(下线)、migrating(迁移中)、expanding(扩容中)、waitSwitch(等待切换)、switching(切换中)、readonly(只读)、restarting(重启中)、network changing(网络变更中)、upgrading(内核版本升级中)
|
1412
|
+
# @param DBInstanceStatus: 实例状态,分别为:applying(申请中)、init(待初始化)、initing(初始化中)、running(运行中)、limited run(受限运行)、isolating(隔离中)、isolated(已隔离)、recycling(回收中)、recycled(已回收)、job running(任务执行中)、offline(下线)、migrating(迁移中)、expanding(扩容中)、waitSwitch(等待切换)、switching(切换中)、readonly(只读)、restarting(重启中)、network changing(网络变更中)、upgrading(内核版本升级中)
|
1409
1413
|
# @type DBInstanceStatus: String
|
1410
1414
|
# @param DBInstanceMemory: 实例分配的内存大小,单位:GB
|
1411
1415
|
# @type DBInstanceMemory: Integer
|
@@ -2341,6 +2345,7 @@ module TencentCloud
|
|
2341
2345
|
# db-instance-id:按照实例ID过滤,类型为string。
|
2342
2346
|
# db-instance-name:按照实例名过滤,类型为string。
|
2343
2347
|
# db-instance-ip:按照实例私有网络IP地址过滤,类型为string。
|
2348
|
+
# base-backup-id:按照备份集ID过滤,类型为string。
|
2344
2349
|
# @type Filters: Array
|
2345
2350
|
# @param Limit: 每页显示数量,取值范围为1-100,默认为返回10条。
|
2346
2351
|
# @type Limit: Integer
|
@@ -3538,7 +3543,9 @@ module TencentCloud
|
|
3538
3543
|
|
3539
3544
|
# DescribeReadOnlyGroups请求参数结构体
|
3540
3545
|
class DescribeReadOnlyGroupsRequest < TencentCloud::Common::AbstractModel
|
3541
|
-
# @param Filters:
|
3546
|
+
# @param Filters: 按照一个或者多个过滤条件进行查询,目前支持的过滤条件有:
|
3547
|
+
# db-master-instance-id:按照主实例过滤,类型为string。
|
3548
|
+
# read-only-group-id:按照只读组ID过滤,类型为string。
|
3542
3549
|
# @type Filters: Array
|
3543
3550
|
# @param PageSize: 查询每一页的条数,默认为10
|
3544
3551
|
# @type PageSize: Integer
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tencentcloud-sdk-postgres
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.0.
|
4
|
+
version: 3.0.589
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tencent Cloud
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-06-
|
11
|
+
date: 2023-06-09 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|