tencentcloud-sdk-dcdb 3.0.901 → 3.0.902
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/v20180411/models.rb +12 -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: 5fb9c4774a49ad9a6dd6e78eba061a7aaa1c4661
|
|
4
|
+
data.tar.gz: 1a6fe693fd50bbd37cef8059b5fa980b4330fdbd
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 523026c0a45fb9c834773be78f5195c49e2b67b21d3803703e375e692b4afd66a1d712347a0a16bd00cc0918437e6bb061fe220428b2d37386140c07d683a79a
|
|
7
|
+
data.tar.gz: 1dcefed0af9a4404441786558c4dd51d5014935b47fcdb58e6007d1d22d82e42a8f58682db31635b54d2fdbaa72068a65d3de30647ae2682f9a1db1562b678ef
|
data/lib/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.0.
|
|
1
|
+
3.0.902
|
data/lib/v20180411/models.rb
CHANGED
|
@@ -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.
|
|
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-
|
|
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
|