tencentcloud-sdk-cvm 1.0.276 → 1.0.277
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 +12 -4
- 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: 97854a8528cecae70eca64f04e4adc6d6ee80bbb
|
4
|
+
data.tar.gz: cd94bf25512daf4b2b6cbd0c49695e107890fe09
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7d00aac1de6b41d50cb80cadf4c605bfa1548a492fa82fa33566f45dec2805711b65a7b47f882ca86de18f6e094c3d7bd8fbe589ff01949933cb1d7ce1796de5
|
7
|
+
data.tar.gz: ec50717d46155ea5d90069264b0385383600ef1e0e383cb03fe8be798f536856f0a09c9dbfdb80984fd3d2506294c6c1f19329dc79f17ec50d5c2339e35f1c2d
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.0.
|
1
|
+
1.0.277
|
data/lib/v20170312/models.rb
CHANGED
@@ -3277,13 +3277,16 @@ module TencentCloud
|
|
3277
3277
|
# @type InstanceChargeType: String
|
3278
3278
|
# @param InstanceChargePrepaid: 预付费模式,即包年包月相关参数设置。通过该参数可以指定包年包月实例的购买时长、是否设置自动续费等属性。<dx-alert infotype="explain" title="">若指定实例的付费模式为预付费则该参数必传。</dx-alert>
|
3279
3279
|
# @type InstanceChargePrepaid: :class:`Tencentcloud::Cvm.v20170312.models.InstanceChargePrepaid`
|
3280
|
+
# @param ModifyPortableDataDisk: 是否同时切换弹性数据云盘计费模式。取值范围:<br><li>TRUE:表示切换弹性数据云盘计费模式<br><li>FALSE:表示不切换弹性数据云盘计费模式<br><br>默认取值:FALSE。
|
3281
|
+
# @type ModifyPortableDataDisk: Boolean
|
3280
3282
|
|
3281
|
-
attr_accessor :InstanceIds, :InstanceChargeType, :InstanceChargePrepaid
|
3283
|
+
attr_accessor :InstanceIds, :InstanceChargeType, :InstanceChargePrepaid, :ModifyPortableDataDisk
|
3282
3284
|
|
3283
|
-
def initialize(instanceids=nil, instancechargetype=nil, instancechargeprepaid=nil)
|
3285
|
+
def initialize(instanceids=nil, instancechargetype=nil, instancechargeprepaid=nil, modifyportabledatadisk=nil)
|
3284
3286
|
@InstanceIds = instanceids
|
3285
3287
|
@InstanceChargeType = instancechargetype
|
3286
3288
|
@InstanceChargePrepaid = instancechargeprepaid
|
3289
|
+
@ModifyPortableDataDisk = modifyportabledatadisk
|
3287
3290
|
end
|
3288
3291
|
|
3289
3292
|
def deserialize(params)
|
@@ -3293,6 +3296,7 @@ module TencentCloud
|
|
3293
3296
|
@InstanceChargePrepaid = InstanceChargePrepaid.new
|
3294
3297
|
@InstanceChargePrepaid.deserialize(params['InstanceChargePrepaid'])
|
3295
3298
|
end
|
3299
|
+
@ModifyPortableDataDisk = params['ModifyPortableDataDisk']
|
3296
3300
|
end
|
3297
3301
|
end
|
3298
3302
|
|
@@ -5102,13 +5106,16 @@ module TencentCloud
|
|
5102
5106
|
# @type InstanceChargeType: String
|
5103
5107
|
# @param InstanceChargePrepaid: 预付费模式,即包年包月相关参数设置。通过该参数可以指定包年包月实例的购买时长、是否设置自动续费等属性。<dx-alert infotype="explain" title="">若指定实例的付费模式为预付费则该参数必传。</dx-alert>
|
5104
5108
|
# @type InstanceChargePrepaid: :class:`Tencentcloud::Cvm.v20170312.models.InstanceChargePrepaid`
|
5109
|
+
# @param ModifyPortableDataDisk: 是否同时切换弹性数据云盘计费模式。取值范围:<br><li>TRUE:表示切换弹性数据云盘计费模式<br><li>FALSE:表示不切换弹性数据云盘计费模式<br><br>默认取值:FALSE。
|
5110
|
+
# @type ModifyPortableDataDisk: Boolean
|
5105
5111
|
|
5106
|
-
attr_accessor :InstanceIds, :InstanceChargeType, :InstanceChargePrepaid
|
5112
|
+
attr_accessor :InstanceIds, :InstanceChargeType, :InstanceChargePrepaid, :ModifyPortableDataDisk
|
5107
5113
|
|
5108
|
-
def initialize(instanceids=nil, instancechargetype=nil, instancechargeprepaid=nil)
|
5114
|
+
def initialize(instanceids=nil, instancechargetype=nil, instancechargeprepaid=nil, modifyportabledatadisk=nil)
|
5109
5115
|
@InstanceIds = instanceids
|
5110
5116
|
@InstanceChargeType = instancechargetype
|
5111
5117
|
@InstanceChargePrepaid = instancechargeprepaid
|
5118
|
+
@ModifyPortableDataDisk = modifyportabledatadisk
|
5112
5119
|
end
|
5113
5120
|
|
5114
5121
|
def deserialize(params)
|
@@ -5118,6 +5125,7 @@ module TencentCloud
|
|
5118
5125
|
@InstanceChargePrepaid = InstanceChargePrepaid.new
|
5119
5126
|
@InstanceChargePrepaid.deserialize(params['InstanceChargePrepaid'])
|
5120
5127
|
end
|
5128
|
+
@ModifyPortableDataDisk = params['ModifyPortableDataDisk']
|
5121
5129
|
end
|
5122
5130
|
end
|
5123
5131
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tencentcloud-sdk-cvm
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.277
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tencent Cloud
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-03-
|
11
|
+
date: 2022-03-16 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|