tencentcloud-sdk-cbs 1.0.227 → 1.0.231

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/v20170312/models.rb +10 -2
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: d78d71999864fe66748967e15cc2c6c20f96c8c4
4
- data.tar.gz: b83a2b24a02af563187e2eef4abc9bce8fe7813f
3
+ metadata.gz: 96aed7f656939998a300927f9ed321df9b973700
4
+ data.tar.gz: 54f113aac34f72d94b5b081b75a9ce8586372af1
5
5
  SHA512:
6
- metadata.gz: ab65caed17d0a0352b8673bdb77804378fcf11fb09203c454916dc8405e24753b3621a7a72412f18279a18fe58ae28035d8e4e284ddb9911ea7aabe237427be1
7
- data.tar.gz: edcde50de76f4b90580a15dcc422daf1f69d8722594ade80b0a84606004d8e921e62ea196e2d9c83cac9f993138285dad6e4e2649a71607db86e5fdedac96578
6
+ metadata.gz: fa731a541322b93d44805c0dfa3c23d01dc38ebaa0c2a4a009a2be56cc5fc1d5711a6de74e69af309e84fab19fe900581bc1698d1f088326a429ea0802c0150a
7
+ data.tar.gz: d7c4595cea5dd06e5c87e6fb29dbebf61ffa53fee138e16f295ec9469433e94ba78dbc86a0581c616dd09701f8ec4c219a2d0aed77bbe11a6f63fee0817c928b
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 1.0.227
1
+ 1.0.231
@@ -23,17 +23,25 @@ module TencentCloud
23
23
  # @type SnapshotId: String
24
24
  # @param DiskId: 快照原云硬盘ID,可通过[DescribeDisks](/document/product/362/16315)接口查询。
25
25
  # @type DiskId: String
26
+ # @param AutoStopInstance: 回滚前是否执行自动关机
27
+ # @type AutoStopInstance: Boolean
28
+ # @param AutoStartInstance: 回滚完成后是否自动开机
29
+ # @type AutoStartInstance: Boolean
26
30
 
27
- attr_accessor :SnapshotId, :DiskId
31
+ attr_accessor :SnapshotId, :DiskId, :AutoStopInstance, :AutoStartInstance
28
32
 
29
- def initialize(snapshotid=nil, diskid=nil)
33
+ def initialize(snapshotid=nil, diskid=nil, autostopinstance=nil, autostartinstance=nil)
30
34
  @SnapshotId = snapshotid
31
35
  @DiskId = diskid
36
+ @AutoStopInstance = autostopinstance
37
+ @AutoStartInstance = autostartinstance
32
38
  end
33
39
 
34
40
  def deserialize(params)
35
41
  @SnapshotId = params['SnapshotId']
36
42
  @DiskId = params['DiskId']
43
+ @AutoStopInstance = params['AutoStopInstance']
44
+ @AutoStartInstance = params['AutoStartInstance']
37
45
  end
38
46
  end
39
47
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-cbs
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.227
4
+ version: 1.0.231
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tencent Cloud
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-12-20 00:00:00.000000000 Z
11
+ date: 2021-12-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common