tencentcloud-sdk-cbs 3.0.574 → 3.0.576
Sign up to get free protection for your applications and to get access to all the features.
- 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: c4351b5149decde907053ae15de5966138e22449
|
4
|
+
data.tar.gz: dfac037316ddf5b998b5ddc16a3c1d1d7a8f3be4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2f6cf9851ca9babce99633baa783467448f031ea55784be83935e3329aeaa77e2675e392522911968849b7b24f98bb5d24a4e4e2c65a6774a414de1e6d5efe29
|
7
|
+
data.tar.gz: ac07d94114c9d7d47797728ecb8655d3cafdcfb37e8ddae942f8199b0945bf473f974b893cda9ac3cae1ade2f2d9d90df23f5dbc3b1cbcfb748011a53eee062f
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.576
|
data/lib/v20170312/models.rb
CHANGED
@@ -636,10 +636,12 @@ module TencentCloud
|
|
636
636
|
# @type AutoMountConfiguration: :class:`Tencentcloud::Cbs.v20170312.models.AutoMountConfiguration`
|
637
637
|
# @param DiskBackupQuota: 指定云硬盘备份点配额。
|
638
638
|
# @type DiskBackupQuota: Integer
|
639
|
+
# @param BurstPerformance: 创建云盘时是否开启性能突发
|
640
|
+
# @type BurstPerformance: Boolean
|
639
641
|
|
640
|
-
attr_accessor :Placement, :DiskChargeType, :DiskType, :DiskName, :Tags, :SnapshotId, :DiskCount, :ThroughputPerformance, :DiskSize, :Shareable, :ClientToken, :Encrypt, :DiskChargePrepaid, :DeleteSnapshot, :AutoMountConfiguration, :DiskBackupQuota
|
642
|
+
attr_accessor :Placement, :DiskChargeType, :DiskType, :DiskName, :Tags, :SnapshotId, :DiskCount, :ThroughputPerformance, :DiskSize, :Shareable, :ClientToken, :Encrypt, :DiskChargePrepaid, :DeleteSnapshot, :AutoMountConfiguration, :DiskBackupQuota, :BurstPerformance
|
641
643
|
|
642
|
-
def initialize(placement=nil, diskchargetype=nil, disktype=nil, diskname=nil, tags=nil, snapshotid=nil, diskcount=nil, throughputperformance=nil, disksize=nil, shareable=nil, clienttoken=nil, encrypt=nil, diskchargeprepaid=nil, deletesnapshot=nil, automountconfiguration=nil, diskbackupquota=nil)
|
644
|
+
def initialize(placement=nil, diskchargetype=nil, disktype=nil, diskname=nil, tags=nil, snapshotid=nil, diskcount=nil, throughputperformance=nil, disksize=nil, shareable=nil, clienttoken=nil, encrypt=nil, diskchargeprepaid=nil, deletesnapshot=nil, automountconfiguration=nil, diskbackupquota=nil, burstperformance=nil)
|
643
645
|
@Placement = placement
|
644
646
|
@DiskChargeType = diskchargetype
|
645
647
|
@DiskType = disktype
|
@@ -656,6 +658,7 @@ module TencentCloud
|
|
656
658
|
@DeleteSnapshot = deletesnapshot
|
657
659
|
@AutoMountConfiguration = automountconfiguration
|
658
660
|
@DiskBackupQuota = diskbackupquota
|
661
|
+
@BurstPerformance = burstperformance
|
659
662
|
end
|
660
663
|
|
661
664
|
def deserialize(params)
|
@@ -691,6 +694,7 @@ module TencentCloud
|
|
691
694
|
@AutoMountConfiguration.deserialize(params['AutoMountConfiguration'])
|
692
695
|
end
|
693
696
|
@DiskBackupQuota = params['DiskBackupQuota']
|
697
|
+
@BurstPerformance = params['BurstPerformance']
|
694
698
|
end
|
695
699
|
end
|
696
700
|
|
@@ -2523,16 +2527,19 @@ module TencentCloud
|
|
2523
2527
|
# @type DeleteWithInstance: Boolean
|
2524
2528
|
# @param DiskType: 变更云盘类型时,可传入该参数,表示变更的目标类型,取值范围:<br><li>CLOUD_PREMIUM:表示高性能云硬盘<br><li>CLOUD_SSD:表示SSD云硬盘。<br>当前不支持批量变更类型,即传入DiskType时,DiskIds仅支持传入一块云盘;<br>变更云盘类型时不支持同时变更其他属性。
|
2525
2529
|
# @type DiskType: String
|
2530
|
+
# @param BurstPerformanceOperation: 开启/关闭云盘性能突发功能
|
2531
|
+
# @type BurstPerformanceOperation: String
|
2526
2532
|
|
2527
|
-
attr_accessor :DiskIds, :DiskName, :Portable, :ProjectId, :DeleteWithInstance, :DiskType
|
2533
|
+
attr_accessor :DiskIds, :DiskName, :Portable, :ProjectId, :DeleteWithInstance, :DiskType, :BurstPerformanceOperation
|
2528
2534
|
|
2529
|
-
def initialize(diskids=nil, diskname=nil, portable=nil, projectid=nil, deletewithinstance=nil, disktype=nil)
|
2535
|
+
def initialize(diskids=nil, diskname=nil, portable=nil, projectid=nil, deletewithinstance=nil, disktype=nil, burstperformanceoperation=nil)
|
2530
2536
|
@DiskIds = diskids
|
2531
2537
|
@DiskName = diskname
|
2532
2538
|
@Portable = portable
|
2533
2539
|
@ProjectId = projectid
|
2534
2540
|
@DeleteWithInstance = deletewithinstance
|
2535
2541
|
@DiskType = disktype
|
2542
|
+
@BurstPerformanceOperation = burstperformanceoperation
|
2536
2543
|
end
|
2537
2544
|
|
2538
2545
|
def deserialize(params)
|
@@ -2542,6 +2549,7 @@ module TencentCloud
|
|
2542
2549
|
@ProjectId = params['ProjectId']
|
2543
2550
|
@DeleteWithInstance = params['DeleteWithInstance']
|
2544
2551
|
@DiskType = params['DiskType']
|
2552
|
+
@BurstPerformanceOperation = params['BurstPerformanceOperation']
|
2545
2553
|
end
|
2546
2554
|
end
|
2547
2555
|
|
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.576
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tencent Cloud
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-05-
|
11
|
+
date: 2023-05-24 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|