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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/lib/VERSION +1 -1
  3. data/lib/v20170312/models.rb +19 -9
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: c13f521c93b8f0f8e568ac5ede43cde7800dd30e
4
- data.tar.gz: 9105b2a080ee0fd8990c15c8efe1d22112fff4d2
3
+ metadata.gz: 3065a38c5a266c656fc497b469d1d07d00b22e71
4
+ data.tar.gz: 46a4b72400fe00c6164fd57e8923dd10df0bce7f
5
5
  SHA512:
6
- metadata.gz: 92c09ad80c41ed08ae4897fb39994d04064a8a8c08e7119949ab6cb0e66d343355426f50357b8583c68c7953fee10da0730fd8ea4b18dec1a8df9b2f11942dee
7
- data.tar.gz: a8a4b345353c769ace319d0fa120d9d1e5fcfce0d5784c140e5e5d2ae4d58d6599afe87474c12085093e83a29bfebfebc9154e98f45638538ee7d1e24bf687ae
6
+ metadata.gz: 4a0ba3d5bf6e763a9fec29fc604dd3849e66b4138fd7d605899509361c2e9359e79a9fb5a20affbe590bdd1f365f7499028cd89ae9f951a07bf99ff37ca8fb17
7
+ data.tar.gz: 95d0fbd76bc008a133ea90f1f371f9a2d6035a1d2999bad5bfe16d1d2fa5c5ec7c83cfa83829bef34fe55cb771346c5defa641a88a84e29949eaa0633db3e105
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 1.0.214
1
+ 1.0.218
@@ -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.214
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-01 00:00:00.000000000 Z
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