tencentcloud-sdk-cdb 3.0.930 → 3.0.932

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 57dfe09f484a5b7410dcd2cba580d1b76b9cd50e
4
- data.tar.gz: a00a7ec7fe5ad2a90ee4787a6ee8489cc333f5d3
3
+ metadata.gz: eaa6d66a6a8c5373b0d839465e6007a9b63ceafe
4
+ data.tar.gz: f7b355244fb981210adf392b615a20f6e3bb0aed
5
5
  SHA512:
6
- metadata.gz: ed4a089a473d0875b4737db62abf6df74f6dd5fa390732b71410df41ea26d5d3716c5340fb653db7b9a9d53c36e9a7d192a05cc97f4bd653b47a55f731485216
7
- data.tar.gz: c69d13070578387ecca33ed49565d6a5f1a17095d8e90f3c72e4c61bdea93e3813f2e0e0faf3f63f010ab1a7f21206f3e7e3cc114d230e09cc2227fb0879f1a8
6
+ metadata.gz: f1fa70e8843dd086f227e87a5b7b38897fec28d826fbe39f8e4247070dcf52ede644e86b313824c6241dee568581cd06b36ec314d22c70e4f411d54aa7dbcb06
7
+ data.tar.gz: 0202654977a58ce78461cedc1973c8545939fd336fd8863db3057e4b2ac01b0893fc6b8d592e673c0de8fa355823ce4993e7c43068c0605a1ea1a49417c2490c
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.930
1
+ 3.0.932
@@ -77,7 +77,7 @@ module TencentCloud
77
77
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
78
78
  end
79
79
 
80
- # 调整数据库代理地址配置
80
+ # 本接口(AdjustCdbProxyAddress)用于调整数据库代理地址配置。
81
81
 
82
82
  # @param request: Request instance for AdjustCdbProxyAddress.
83
83
  # @type request: :class:`Tencentcloud::cdb::V20170320::AdjustCdbProxyAddressRequest`
@@ -3878,7 +3878,7 @@ module TencentCloud
3878
3878
  class DeleteBackupRequest < TencentCloud::Common::AbstractModel
3879
3879
  # @param InstanceId: 实例 ID,格式如:cdb-c1nl9rpv。与云数据库控制台页面中显示的实例 ID 相同。
3880
3880
  # @type InstanceId: String
3881
- # @param BackupId: 备份任务 ID。该任务 ID 为 [创建云数据库备份](https://cloud.tencent.com/document/api/236/15844) 接口返回的任务 ID。
3881
+ # @param BackupId: 备份任务 ID。您可通过 [查询数据备份文件列表](https://cloud.tencent.com/document/api/236/15842) 来获取目标备份任务 ID。
3882
3882
  # @type BackupId: Integer
3883
3883
 
3884
3884
  attr_accessor :InstanceId, :BackupId
@@ -4020,14 +4020,17 @@ module TencentCloud
4020
4020
  # @type Host: String
4021
4021
  # @param Password: 关闭密码轮转后实例账户的最新密码
4022
4022
  # @type Password: String
4023
+ # @param EncryptMethod: 传入不为空则对密码进行了加密处理
4024
+ # @type EncryptMethod: String
4023
4025
 
4024
- attr_accessor :InstanceId, :User, :Host, :Password
4026
+ attr_accessor :InstanceId, :User, :Host, :Password, :EncryptMethod
4025
4027
 
4026
- def initialize(instanceid=nil, user=nil, host=nil, password=nil)
4028
+ def initialize(instanceid=nil, user=nil, host=nil, password=nil, encryptmethod=nil)
4027
4029
  @InstanceId = instanceid
4028
4030
  @User = user
4029
4031
  @Host = host
4030
4032
  @Password = password
4033
+ @EncryptMethod = encryptmethod
4031
4034
  end
4032
4035
 
4033
4036
  def deserialize(params)
@@ -4035,6 +4038,7 @@ module TencentCloud
4035
4038
  @User = params['User']
4036
4039
  @Host = params['Host']
4037
4040
  @Password = params['Password']
4041
+ @EncryptMethod = params['EncryptMethod']
4038
4042
  end
4039
4043
  end
4040
4044
 
@@ -11945,17 +11949,21 @@ module TencentCloud
11945
11949
  # @type IsRandomZone: String
11946
11950
  # @param Zone: 指定该节点分布在哪个可用区。
11947
11951
  # @type Zone: String
11952
+ # @param NodeId: 升级集群版实例时,如果要调整只读节点可用区,需要指定节点id。
11953
+ # @type NodeId: String
11948
11954
 
11949
- attr_accessor :IsRandomZone, :Zone
11955
+ attr_accessor :IsRandomZone, :Zone, :NodeId
11950
11956
 
11951
- def initialize(israndomzone=nil, zone=nil)
11957
+ def initialize(israndomzone=nil, zone=nil, nodeid=nil)
11952
11958
  @IsRandomZone = israndomzone
11953
11959
  @Zone = zone
11960
+ @NodeId = nodeid
11954
11961
  end
11955
11962
 
11956
11963
  def deserialize(params)
11957
11964
  @IsRandomZone = params['IsRandomZone']
11958
11965
  @Zone = params['Zone']
11966
+ @NodeId = params['NodeId']
11959
11967
  end
11960
11968
  end
11961
11969
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-cdb
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.930
4
+ version: 3.0.932
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tencent Cloud
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-10-22 00:00:00.000000000 Z
11
+ date: 2024-10-29 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common