tencentcloud-sdk-dcdb 3.0.901 → 3.0.902

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/lib/VERSION +1 -1
  3. data/lib/v20180411/models.rb +12 -4
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 9b7fa1fb024f569fd9147fd13a9827166f2e119f
4
- data.tar.gz: bf5caa530a4f69bf129087b3d40a44eaeed5b478
3
+ metadata.gz: 5fb9c4774a49ad9a6dd6e78eba061a7aaa1c4661
4
+ data.tar.gz: 1a6fe693fd50bbd37cef8059b5fa980b4330fdbd
5
5
  SHA512:
6
- metadata.gz: dfc704cc25906eedadb2a33438faf28e8107065a98d313f733b3827450a5285b43ee584d01658216bf4d298830ad6a3feb585bb96eeab511e4057546dd127b72
7
- data.tar.gz: 7f6166467e1ad4661a4a194a51d3ec52e5dc48b9790221f9cf6b8a142466dea50a3f25318ff54e40ad0cdff4721cb92518dc2ebbad02d49860fa19c01a7dab78
6
+ metadata.gz: 523026c0a45fb9c834773be78f5195c49e2b67b21d3803703e375e692b4afd66a1d712347a0a16bd00cc0918437e6bb061fe220428b2d37386140c07d683a79a
7
+ data.tar.gz: 1dcefed0af9a4404441786558c4dd51d5014935b47fcdb58e6007d1d22d82e42a8f58682db31635b54d2fdbaa72068a65d3de30647ae2682f9a1db1562b678ef
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.901
1
+ 3.0.902
@@ -442,10 +442,12 @@ module TencentCloud
442
442
  # @type SlaveConst: Integer
443
443
  # @param MaxUserConnections: 用户最大连接数限制参数。不传或者传0表示为不限制,对应max_user_connections参数,目前10.1内核版本不支持设置。
444
444
  # @type MaxUserConnections: Integer
445
+ # @param EncryptedPassword: 使用GetPublicKey返回的RSA2048公钥加密后的密码
446
+ # @type EncryptedPassword: String
445
447
 
446
- attr_accessor :InstanceId, :UserName, :Host, :Password, :ReadOnly, :Description, :DelayThresh, :SlaveConst, :MaxUserConnections
448
+ attr_accessor :InstanceId, :UserName, :Host, :Password, :ReadOnly, :Description, :DelayThresh, :SlaveConst, :MaxUserConnections, :EncryptedPassword
447
449
 
448
- def initialize(instanceid=nil, username=nil, host=nil, password=nil, readonly=nil, description=nil, delaythresh=nil, slaveconst=nil, maxuserconnections=nil)
450
+ def initialize(instanceid=nil, username=nil, host=nil, password=nil, readonly=nil, description=nil, delaythresh=nil, slaveconst=nil, maxuserconnections=nil, encryptedpassword=nil)
449
451
  @InstanceId = instanceid
450
452
  @UserName = username
451
453
  @Host = host
@@ -455,6 +457,7 @@ module TencentCloud
455
457
  @DelayThresh = delaythresh
456
458
  @SlaveConst = slaveconst
457
459
  @MaxUserConnections = maxuserconnections
460
+ @EncryptedPassword = encryptedpassword
458
461
  end
459
462
 
460
463
  def deserialize(params)
@@ -467,6 +470,7 @@ module TencentCloud
467
470
  @DelayThresh = params['DelayThresh']
468
471
  @SlaveConst = params['SlaveConst']
469
472
  @MaxUserConnections = params['MaxUserConnections']
473
+ @EncryptedPassword = params['EncryptedPassword']
470
474
  end
471
475
  end
472
476
 
@@ -5291,14 +5295,17 @@ module TencentCloud
5291
5295
  # @type Host: String
5292
5296
  # @param Password: 新密码,由字母、数字或常见符号组成,不能包含分号、单引号和双引号,长度为6~32位。
5293
5297
  # @type Password: String
5298
+ # @param EncryptedPassword: 使用GetPublicKey返回的RSA2048公钥加密后的密码,加密算法是PKCS1v15
5299
+ # @type EncryptedPassword: String
5294
5300
 
5295
- attr_accessor :InstanceId, :UserName, :Host, :Password
5301
+ attr_accessor :InstanceId, :UserName, :Host, :Password, :EncryptedPassword
5296
5302
 
5297
- def initialize(instanceid=nil, username=nil, host=nil, password=nil)
5303
+ def initialize(instanceid=nil, username=nil, host=nil, password=nil, encryptedpassword=nil)
5298
5304
  @InstanceId = instanceid
5299
5305
  @UserName = username
5300
5306
  @Host = host
5301
5307
  @Password = password
5308
+ @EncryptedPassword = encryptedpassword
5302
5309
  end
5303
5310
 
5304
5311
  def deserialize(params)
@@ -5306,6 +5313,7 @@ module TencentCloud
5306
5313
  @UserName = params['UserName']
5307
5314
  @Host = params['Host']
5308
5315
  @Password = params['Password']
5316
+ @EncryptedPassword = params['EncryptedPassword']
5309
5317
  end
5310
5318
  end
5311
5319
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-dcdb
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.901
4
+ version: 3.0.902
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-09-08 00:00:00.000000000 Z
11
+ date: 2024-09-09 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common