tencentcloud-sdk-cdwch 3.0.1177 → 3.0.1184

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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/lib/VERSION +1 -1
  3. data/lib/v20200915/models.rb +16 -4
  4. metadata +3 -3
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 1be81549d5dd80b6867b7aea9ea0245b0ef18800
4
- data.tar.gz: 5fdf99704481ab7a35fea6c9ac77b9fcfcd31ffd
3
+ metadata.gz: 5912fc7a73719a36caf653724eedd05b39d7b7f7
4
+ data.tar.gz: 54004bdfaf7cf85b3a056d1d9b109a70889999a9
5
5
  SHA512:
6
- metadata.gz: 71fa3a8948d51a432087b6ee7d5705b4d16d0f75c17f2ce7c8a7593d8322baf009017adb1bf5874fb120edcee084af75e24ae6cf564f34deb27e7a568f3084bc
7
- data.tar.gz: cd6ce39c7bc1d3296f4ae826454e53f732395f5bbfc7a5ea2a8d29c1c3daf0f2de0a6180c14ac6035355ad664427a79dc9af14f31df95264392237bc4e3b283b
6
+ metadata.gz: 5ccfef7934bb5dd9482e063518ec8fd09614bbec314a93de08334bc80956fe5d07e9449ea84d713b14a4e3aedbba0d916d745c9928114347831c837c9e0f0016
7
+ data.tar.gz: b2f907f629ac333906532ac5fe5fac45f2735540c2f6dd9a90a5b37f67a3f8ed9d16b74a9a8aee6a4f852d53b3299c05cc998307f0db5474183fdaf004b828f6
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.1177
1
+ 3.0.1184
@@ -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
 
@@ -403,10 +407,14 @@ module TencentCloud
403
407
  # @type InstanceID: String
404
408
  # @param Resources: 无
405
409
  # @type Resources: Array
410
+ # @param IsSecondaryZone: desc
411
+ # @type IsSecondaryZone: String
412
+ # @param SecondaryZoneInfo: desc
413
+ # @type SecondaryZoneInfo: String
406
414
 
407
- attr_accessor :ID, :InstanceType, :InstanceName, :Status, :StatusDesc, :InstanceStateInfo, :InstanceID, :Resources
415
+ attr_accessor :ID, :InstanceType, :InstanceName, :Status, :StatusDesc, :InstanceStateInfo, :InstanceID, :Resources, :IsSecondaryZone, :SecondaryZoneInfo
408
416
 
409
- def initialize(id=nil, instancetype=nil, instancename=nil, status=nil, statusdesc=nil, instancestateinfo=nil, instanceid=nil, resources=nil)
417
+ def initialize(id=nil, instancetype=nil, instancename=nil, status=nil, statusdesc=nil, instancestateinfo=nil, instanceid=nil, resources=nil, issecondaryzone=nil, secondaryzoneinfo=nil)
410
418
  @ID = id
411
419
  @InstanceType = instancetype
412
420
  @InstanceName = instancename
@@ -415,6 +423,8 @@ module TencentCloud
415
423
  @InstanceStateInfo = instancestateinfo
416
424
  @InstanceID = instanceid
417
425
  @Resources = resources
426
+ @IsSecondaryZone = issecondaryzone
427
+ @SecondaryZoneInfo = secondaryzoneinfo
418
428
  end
419
429
 
420
430
  def deserialize(params)
@@ -436,6 +446,8 @@ module TencentCloud
436
446
  @Resources << cnresource_tmp
437
447
  end
438
448
  end
449
+ @IsSecondaryZone = params['IsSecondaryZone']
450
+ @SecondaryZoneInfo = params['SecondaryZoneInfo']
439
451
  end
440
452
  end
441
453
 
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.1177
4
+ version: 3.0.1184
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-04 00:00:00.000000000 Z
11
+ date: 2025-12-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common
@@ -33,8 +33,8 @@ executables: []
33
33
  extensions: []
34
34
  extra_rdoc_files: []
35
35
  files:
36
- - lib/v20200915/client.rb
37
36
  - lib/v20200915/models.rb
37
+ - lib/v20200915/client.rb
38
38
  - lib/tencentcloud-sdk-cdwch.rb
39
39
  - lib/VERSION
40
40
  homepage: https://github.com/TencentCloud/tencentcloud-sdk-ruby