tencentcloud-sdk-cdwch 3.0.1176 → 3.0.1181
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/v20200915/models.rb +16 -4
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 2f526d78a4876de0b5dc0b90a6881c6f680bbc17
|
|
4
|
+
data.tar.gz: 7a2db33da708dd2d815e9dfa9076d4bd32108766
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 7813765dffdf33646ad47dcef3c12050f2f575ac914661d843199289acd37955b80eae12aa33074011adb6bcc46722647108f558b578eca1f2f0d7442bdca4c2
|
|
7
|
+
data.tar.gz: 81891aa4717c14a37d2c4b588b50280da98cb480c8df2f61c638835f979388c3019b6a17f21e0aa93f7ab0be2d125d615d9bd58eedcca29a22dac5a44f7f2aa7
|
data/lib/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.0.
|
|
1
|
+
3.0.1181
|
data/lib/v20200915/models.rb
CHANGED
|
@@ -303,14 +303,17 @@ module TencentCloud
|
|
|
303
303
|
# @type PassWord: String
|
|
304
304
|
# @param Describe: 描述
|
|
305
305
|
# @type Describe: String
|
|
306
|
+
# @param OriginalPassword: 账户的当前密码
|
|
307
|
+
# @type OriginalPassword: String
|
|
306
308
|
|
|
307
|
-
attr_accessor :InstanceId, :UserName, :PassWord, :Describe
|
|
309
|
+
attr_accessor :InstanceId, :UserName, :PassWord, :Describe, :OriginalPassword
|
|
308
310
|
|
|
309
|
-
def initialize(instanceid=nil, username=nil, password=nil, describe=nil)
|
|
311
|
+
def initialize(instanceid=nil, username=nil, password=nil, describe=nil, originalpassword=nil)
|
|
310
312
|
@InstanceId = instanceid
|
|
311
313
|
@UserName = username
|
|
312
314
|
@PassWord = password
|
|
313
315
|
@Describe = describe
|
|
316
|
+
@OriginalPassword = originalpassword
|
|
314
317
|
end
|
|
315
318
|
|
|
316
319
|
def deserialize(params)
|
|
@@ -318,6 +321,7 @@ module TencentCloud
|
|
|
318
321
|
@UserName = params['UserName']
|
|
319
322
|
@PassWord = params['PassWord']
|
|
320
323
|
@Describe = params['Describe']
|
|
324
|
+
@OriginalPassword = params['OriginalPassword']
|
|
321
325
|
end
|
|
322
326
|
end
|
|
323
327
|
|
|
@@ -335,16 +339,22 @@ module TencentCloud
|
|
|
335
339
|
# @type NeedRestart: Integer
|
|
336
340
|
# @param FilePath: 保存配置文件的路径
|
|
337
341
|
# @type FilePath: String
|
|
342
|
+
# @param Ip: 节点级配置的ip,当ConfigLevel取值为node时,此参数必选;
|
|
343
|
+
# @type Ip: String
|
|
344
|
+
# @param ConfigLevel: 可选参数,参数取值:node,cluster; node: 节点级参数配置,cluster: 实例级参数配置;
|
|
345
|
+
# @type ConfigLevel: String
|
|
338
346
|
|
|
339
|
-
attr_accessor :FileName, :FileConf, :KeyConf, :OriParam, :NeedRestart, :FilePath
|
|
347
|
+
attr_accessor :FileName, :FileConf, :KeyConf, :OriParam, :NeedRestart, :FilePath, :Ip, :ConfigLevel
|
|
340
348
|
|
|
341
|
-
def initialize(filename=nil, fileconf=nil, keyconf=nil, oriparam=nil, needrestart=nil, filepath=nil)
|
|
349
|
+
def initialize(filename=nil, fileconf=nil, keyconf=nil, oriparam=nil, needrestart=nil, filepath=nil, ip=nil, configlevel=nil)
|
|
342
350
|
@FileName = filename
|
|
343
351
|
@FileConf = fileconf
|
|
344
352
|
@KeyConf = keyconf
|
|
345
353
|
@OriParam = oriparam
|
|
346
354
|
@NeedRestart = needrestart
|
|
347
355
|
@FilePath = filepath
|
|
356
|
+
@Ip = ip
|
|
357
|
+
@ConfigLevel = configlevel
|
|
348
358
|
end
|
|
349
359
|
|
|
350
360
|
def deserialize(params)
|
|
@@ -354,6 +364,8 @@ module TencentCloud
|
|
|
354
364
|
@OriParam = params['OriParam']
|
|
355
365
|
@NeedRestart = params['NeedRestart']
|
|
356
366
|
@FilePath = params['FilePath']
|
|
367
|
+
@Ip = params['Ip']
|
|
368
|
+
@ConfigLevel = params['ConfigLevel']
|
|
357
369
|
end
|
|
358
370
|
end
|
|
359
371
|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: tencentcloud-sdk-cdwch
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.0.
|
|
4
|
+
version: 3.0.1181
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Tencent Cloud
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2025-12-
|
|
11
|
+
date: 2025-12-10 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: tencentcloud-sdk-common
|
|
@@ -33,9 +33,9 @@ executables: []
|
|
|
33
33
|
extensions: []
|
|
34
34
|
extra_rdoc_files: []
|
|
35
35
|
files:
|
|
36
|
-
- lib/tencentcloud-sdk-cdwch.rb
|
|
37
36
|
- lib/v20200915/models.rb
|
|
38
37
|
- lib/v20200915/client.rb
|
|
38
|
+
- lib/tencentcloud-sdk-cdwch.rb
|
|
39
39
|
- lib/VERSION
|
|
40
40
|
homepage: https://github.com/TencentCloud/tencentcloud-sdk-ruby
|
|
41
41
|
licenses:
|