tencentcloud-sdk-postgres 1.0.214 → 1.0.218
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 +19 -9
- 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: 3065a38c5a266c656fc497b469d1d07d00b22e71
|
4
|
+
data.tar.gz: 46a4b72400fe00c6164fd57e8923dd10df0bce7f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4a0ba3d5bf6e763a9fec29fc604dd3849e66b4138fd7d605899509361c2e9359e79a9fb5a20affbe590bdd1f365f7499028cd89ae9f951a07bf99ff37ca8fb17
|
7
|
+
data.tar.gz: 95d0fbd76bc008a133ea90f1f371f9a2d6035a1d2999bad5bfe16d1d2fa5c5ec7c83cfa83829bef34fe55cb771346c5defa641a88a84e29949eaa0633db3e105
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.0.
|
1
|
+
1.0.218
|
data/lib/v20170312/models.rb
CHANGED
@@ -830,7 +830,7 @@ module TencentCloud
|
|
830
830
|
# @type DBInstanceId: String
|
831
831
|
# @param DBInstanceName: 实例名称
|
832
832
|
# @type DBInstanceName: String
|
833
|
-
# @param DBInstanceStatus: 实例状态,分别为:applying(申请中)、init(待初始化)、initing(初始化中)、running(运行中)、limited run(受限运行)、isolated(已隔离)、recycling(回收中)、recycled(已回收)、job running(任务执行中)、offline(下线)、migrating(迁移中)、expanding(扩容中)、waitSwitch(等待切换)、switching(切换中)、readonly(只读)、restarting(重启中)、
|
833
|
+
# @param DBInstanceStatus: 实例状态,分别为:applying(申请中)、init(待初始化)、initing(初始化中)、running(运行中)、limited run(受限运行)、isolated(已隔离)、recycling(回收中)、recycled(已回收)、job running(任务执行中)、offline(下线)、migrating(迁移中)、expanding(扩容中)、waitSwitch(等待切换)、switching(切换中)、readonly(只读)、restarting(重启中)、network changing(网络变更中)
|
834
834
|
# @type DBInstanceStatus: String
|
835
835
|
# @param DBInstanceMemory: 实例分配的内存大小,单位:GB
|
836
836
|
# @type DBInstanceMemory: Integer
|
@@ -888,7 +888,7 @@ module TencentCloud
|
|
888
888
|
# @param DBKernelVersion: 数据库内核版本
|
889
889
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
890
890
|
# @type DBKernelVersion: String
|
891
|
-
# @param NetworkAccessList:
|
891
|
+
# @param NetworkAccessList: 实例网络信息列表(此字段已废弃)
|
892
892
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
893
893
|
# @type NetworkAccessList: Array
|
894
894
|
|
@@ -1000,17 +1000,25 @@ module TencentCloud
|
|
1000
1000
|
# @type Port: Integer
|
1001
1001
|
# @param NetType: 网络类型,1、inner(基础网络内网地址);2、private(私有网络内网地址);3、public(基础网络或私有网络的外网地址);
|
1002
1002
|
# @type NetType: String
|
1003
|
-
# @param Status:
|
1003
|
+
# @param Status: 网络连接状态,1、initing(未开通);2、opened(已开通);3、closed(已关闭);4、opening(开通中);5、closing(关闭中);
|
1004
1004
|
# @type Status: String
|
1005
|
+
# @param VpcId: 私有网络ID
|
1006
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1007
|
+
# @type VpcId: String
|
1008
|
+
# @param SubnetId: 子网ID
|
1009
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1010
|
+
# @type SubnetId: String
|
1005
1011
|
|
1006
|
-
attr_accessor :Address, :Ip, :Port, :NetType, :Status
|
1012
|
+
attr_accessor :Address, :Ip, :Port, :NetType, :Status, :VpcId, :SubnetId
|
1007
1013
|
|
1008
|
-
def initialize(address=nil, ip=nil, port=nil, nettype=nil, status=nil)
|
1014
|
+
def initialize(address=nil, ip=nil, port=nil, nettype=nil, status=nil, vpcid=nil, subnetid=nil)
|
1009
1015
|
@Address = address
|
1010
1016
|
@Ip = ip
|
1011
1017
|
@Port = port
|
1012
1018
|
@NetType = nettype
|
1013
1019
|
@Status = status
|
1020
|
+
@VpcId = vpcid
|
1021
|
+
@SubnetId = subnetid
|
1014
1022
|
end
|
1015
1023
|
|
1016
1024
|
def deserialize(params)
|
@@ -1019,6 +1027,8 @@ module TencentCloud
|
|
1019
1027
|
@Port = params['Port']
|
1020
1028
|
@NetType = params['NetType']
|
1021
1029
|
@Status = params['Status']
|
1030
|
+
@VpcId = params['VpcId']
|
1031
|
+
@SubnetId = params['SubnetId']
|
1022
1032
|
end
|
1023
1033
|
end
|
1024
1034
|
|
@@ -3023,12 +3033,12 @@ module TencentCloud
|
|
3023
3033
|
end
|
3024
3034
|
end
|
3025
3035
|
|
3026
|
-
#
|
3036
|
+
# 网络相关信息。(该数据结构已废弃,网络相关信息使用DBInstanceNetInfo)
|
3027
3037
|
class NetworkAccess < TencentCloud::Common::AbstractModel
|
3028
|
-
# @param ResourceId: 网络资源id,实例id或RO组id
|
3038
|
+
# @param ResourceId: 网络资源id,实例id或RO组id
|
3029
3039
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
3030
3040
|
# @type ResourceId: String
|
3031
|
-
# @param ResourceType: 资源类型,1-实例 2-RO组
|
3041
|
+
# @param ResourceType: 资源类型,1-实例 2-RO组
|
3032
3042
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
3033
3043
|
# @type ResourceType: Integer
|
3034
3044
|
# @param VpcId: 私有网络ID
|
@@ -3457,7 +3467,7 @@ module TencentCloud
|
|
3457
3467
|
# @type Rebalance: Integer
|
3458
3468
|
# @param DBInstanceNetInfo: 网络信息
|
3459
3469
|
# @type DBInstanceNetInfo: Array
|
3460
|
-
# @param NetworkAccessList:
|
3470
|
+
# @param NetworkAccessList: 只读组网络信息列表(此字段已废弃)
|
3461
3471
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
3462
3472
|
# @type NetworkAccessList: Array
|
3463
3473
|
|
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: 1.0.
|
4
|
+
version: 1.0.218
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tencent Cloud
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-12-
|
11
|
+
date: 2021-12-07 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|