tencentcloud-sdk-cbs 3.0.997 → 3.0.998
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/v20170312/models.rb +10 -2
- 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: 4f2e76144c18da96e4e7b4645781bbad2e2a89df
|
|
4
|
+
data.tar.gz: 2fade622f2e2a593996c5c79fc4cebcbd3b76e3e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 4f8b606fa6555797332da5c85cde409f962bee33dd42aeb85890b2d1766baaebfca20a86360a0661018e94d4f0b2977e9466b41f5363ce9ae0a87ce04c5923a5
|
|
7
|
+
data.tar.gz: aac501fff6739044b18442835393b27449212fb77955fe1c595919a39671ffb684b63b78a53681daf5bd8e54b06729139b4d933820d98914e0f6c0336b74a2b8
|
data/lib/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.0.
|
|
1
|
+
3.0.998
|
data/lib/v20170312/models.rb
CHANGED
|
@@ -55,17 +55,25 @@ module TencentCloud
|
|
|
55
55
|
# @type DiskBackupId: String
|
|
56
56
|
# @param DiskId: 云硬盘备份点原云硬盘ID,可通过DescribeDisks接口查询。
|
|
57
57
|
# @type DiskId: String
|
|
58
|
+
# @param AutoStopInstance: 回滚云硬盘备份点前是否自动关机,默认为FALSE,表示不自动关机
|
|
59
|
+
# @type AutoStopInstance: Boolean
|
|
60
|
+
# @param AutoStartInstance: 回滚云硬盘备份点完成后是否自动开机,默认为FALSE,表示不自动开机
|
|
61
|
+
# @type AutoStartInstance: Boolean
|
|
58
62
|
|
|
59
|
-
attr_accessor :DiskBackupId, :DiskId
|
|
63
|
+
attr_accessor :DiskBackupId, :DiskId, :AutoStopInstance, :AutoStartInstance
|
|
60
64
|
|
|
61
|
-
def initialize(diskbackupid=nil, diskid=nil)
|
|
65
|
+
def initialize(diskbackupid=nil, diskid=nil, autostopinstance=nil, autostartinstance=nil)
|
|
62
66
|
@DiskBackupId = diskbackupid
|
|
63
67
|
@DiskId = diskid
|
|
68
|
+
@AutoStopInstance = autostopinstance
|
|
69
|
+
@AutoStartInstance = autostartinstance
|
|
64
70
|
end
|
|
65
71
|
|
|
66
72
|
def deserialize(params)
|
|
67
73
|
@DiskBackupId = params['DiskBackupId']
|
|
68
74
|
@DiskId = params['DiskId']
|
|
75
|
+
@AutoStopInstance = params['AutoStopInstance']
|
|
76
|
+
@AutoStartInstance = params['AutoStartInstance']
|
|
69
77
|
end
|
|
70
78
|
end
|
|
71
79
|
|
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: 3.0.
|
|
4
|
+
version: 3.0.998
|
|
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-02-
|
|
11
|
+
date: 2025-02-13 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: tencentcloud-sdk-common
|