tencentcloud-sdk-mariadb 3.0.901 → 3.0.902
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/VERSION +1 -1
- data/lib/v20170312/models.rb +13 -5
- 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: 707c844f4fc07467365057db757553f2761774fb
|
4
|
+
data.tar.gz: 2f54823e02818b9b146397bd37fdcb583078da9c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1c4cd6c3e3d95a4f843cc043cab86b937d55c3e0b519d235e228cef25fd6f6133c20b8e2fe66a456c168dcac8798e5d3e245cf3a0a69e6c11ac7d9520e886b95
|
7
|
+
data.tar.gz: 5bc1c62ea8bf3554ee5ee117d76e02312b8d5a423a6ab6fbff718a7500f079a1eec737d93adef64e18b0017ea112d56f22b002574220dfc070fb648c8d56ebd2
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.902
|
data/lib/v20170312/models.rb
CHANGED
@@ -363,7 +363,7 @@ module TencentCloud
|
|
363
363
|
# @type Host: String
|
364
364
|
# @param Password: 账号密码,密码需要 8-32 个字符,不能以 '/' 开头,并且必须包含小写字母、大写字母、数字和符号()~!@#$%^&*-+=_|{}[]:<>,.?/。
|
365
365
|
# @type Password: String
|
366
|
-
# @param ReadOnly: 是否创建为只读账号,0
|
366
|
+
# @param ReadOnly: 是否创建为只读账号,0:否; 1:只读账号,该账号的sql请求优先选择备机执行,备机延迟时选择主机执行;2:只读账号,优先选择备机执行,备机延迟时操作报错;3:只读账号,优先选择备机执行,忽略备机延迟只读备机;
|
367
367
|
# @type ReadOnly: Integer
|
368
368
|
# @param Description: 账号备注,可以包含中文、英文字符、常见符号和数字,长度为0~256字符
|
369
369
|
# @type Description: String
|
@@ -373,10 +373,12 @@ module TencentCloud
|
|
373
373
|
# @type SlaveConst: Integer
|
374
374
|
# @param MaxUserConnections: 用户最大连接数限制参数。不传或者传0表示为不限制,对应max_user_connections参数,目前10.1内核版本不支持设置。
|
375
375
|
# @type MaxUserConnections: Integer
|
376
|
+
# @param EncryptedPassword: 使用GetPublicKey返回的RSA2048公钥加密后的密码
|
377
|
+
# @type EncryptedPassword: String
|
376
378
|
|
377
|
-
attr_accessor :InstanceId, :UserName, :Host, :Password, :ReadOnly, :Description, :DelayThresh, :SlaveConst, :MaxUserConnections
|
379
|
+
attr_accessor :InstanceId, :UserName, :Host, :Password, :ReadOnly, :Description, :DelayThresh, :SlaveConst, :MaxUserConnections, :EncryptedPassword
|
378
380
|
|
379
|
-
def initialize(instanceid=nil, username=nil, host=nil, password=nil, readonly=nil, description=nil, delaythresh=nil, slaveconst=nil, maxuserconnections=nil)
|
381
|
+
def initialize(instanceid=nil, username=nil, host=nil, password=nil, readonly=nil, description=nil, delaythresh=nil, slaveconst=nil, maxuserconnections=nil, encryptedpassword=nil)
|
380
382
|
@InstanceId = instanceid
|
381
383
|
@UserName = username
|
382
384
|
@Host = host
|
@@ -386,6 +388,7 @@ module TencentCloud
|
|
386
388
|
@DelayThresh = delaythresh
|
387
389
|
@SlaveConst = slaveconst
|
388
390
|
@MaxUserConnections = maxuserconnections
|
391
|
+
@EncryptedPassword = encryptedpassword
|
389
392
|
end
|
390
393
|
|
391
394
|
def deserialize(params)
|
@@ -398,6 +401,7 @@ module TencentCloud
|
|
398
401
|
@DelayThresh = params['DelayThresh']
|
399
402
|
@SlaveConst = params['SlaveConst']
|
400
403
|
@MaxUserConnections = params['MaxUserConnections']
|
404
|
+
@EncryptedPassword = params['EncryptedPassword']
|
401
405
|
end
|
402
406
|
end
|
403
407
|
|
@@ -5062,14 +5066,17 @@ module TencentCloud
|
|
5062
5066
|
# @type Host: String
|
5063
5067
|
# @param Password: 新密码,由字母、数字或常见符号组成,不能包含分号、单引号和双引号,长度为6~32位。
|
5064
5068
|
# @type Password: String
|
5069
|
+
# @param EncryptedPassword: 使用GetPublicKey返回的RSA2048公钥加密后的密码
|
5070
|
+
# @type EncryptedPassword: String
|
5065
5071
|
|
5066
|
-
attr_accessor :InstanceId, :UserName, :Host, :Password
|
5072
|
+
attr_accessor :InstanceId, :UserName, :Host, :Password, :EncryptedPassword
|
5067
5073
|
|
5068
|
-
def initialize(instanceid=nil, username=nil, host=nil, password=nil)
|
5074
|
+
def initialize(instanceid=nil, username=nil, host=nil, password=nil, encryptedpassword=nil)
|
5069
5075
|
@InstanceId = instanceid
|
5070
5076
|
@UserName = username
|
5071
5077
|
@Host = host
|
5072
5078
|
@Password = password
|
5079
|
+
@EncryptedPassword = encryptedpassword
|
5073
5080
|
end
|
5074
5081
|
|
5075
5082
|
def deserialize(params)
|
@@ -5077,6 +5084,7 @@ module TencentCloud
|
|
5077
5084
|
@UserName = params['UserName']
|
5078
5085
|
@Host = params['Host']
|
5079
5086
|
@Password = params['Password']
|
5087
|
+
@EncryptedPassword = params['EncryptedPassword']
|
5080
5088
|
end
|
5081
5089
|
end
|
5082
5090
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tencentcloud-sdk-mariadb
|
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
|