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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/lib/VERSION +1 -1
  3. data/lib/v20170312/models.rb +13 -5
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: ff27801da046932898d99f5127a4864d370c90f5
4
- data.tar.gz: 06f409854651ba32aa7b37c7152a73946e5529dd
3
+ metadata.gz: 707c844f4fc07467365057db757553f2761774fb
4
+ data.tar.gz: 2f54823e02818b9b146397bd37fdcb583078da9c
5
5
  SHA512:
6
- metadata.gz: 6d4e0ae5086022837db05b26a88625d8a2f415bfdeb3550325ddb1e8fbbf3296dab14dfa79d83268813b280b0e11a25f1be83d5f6ae8103dc4f18c1a9d7cf206
7
- data.tar.gz: 22a8a50044c9ce8da05a8bd934847efc79fbdf07e1ddaa7ce1dae68a48a4914af5bf350621ab73dd75ab510c621dd0df6da765334c39e7f001d10e16fbecf699
6
+ metadata.gz: 1c4cd6c3e3d95a4f843cc043cab86b937d55c3e0b519d235e228cef25fd6f6133c20b8e2fe66a456c168dcac8798e5d3e245cf3a0a69e6c11ac7d9520e886b95
7
+ data.tar.gz: 5bc1c62ea8bf3554ee5ee117d76e02312b8d5a423a6ab6fbff718a7500f079a1eec737d93adef64e18b0017ea112d56f22b002574220dfc070fb648c8d56ebd2
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.901
1
+ 3.0.902
@@ -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:否:; 1:只读账号,该账号的sql请求优先选择备机执行,备机延迟时选择主机执行;2:只读账号,优先选择备机执行,备机延迟时操作报错;3:只读账号,优先选择备机执行,忽略备机延迟只读备机;
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.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