tencentcloud-sdk-cbs 3.0.381 → 3.0.382
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 +14 -14
- 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: d904f4bfb8edc88ab21d77c1bee2f92199150cac
|
4
|
+
data.tar.gz: e7d4c8edf557078853486bad720cf811ebd38d29
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e7dd4395eac8a6b557809a429f15dbd0a975c4d72cb258d5db228a06d78042b941efa048d405d88a605060d0192ee84ee95c8454131717d23c23378f351df0f5
|
7
|
+
data.tar.gz: 536db8faa7687292774cdcdaa457d36ca01619beefeb9b5c2c5c2ce4fde0e59deae4fd76addceca8ad58b68ca76c98ac8f9b5868cf9a33e878ffb8fa827a7ad2
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.382
|
data/lib/v20170312/models.rb
CHANGED
@@ -815,43 +815,43 @@ module TencentCloud
|
|
815
815
|
class DescribeDiskConfigQuotaRequest < TencentCloud::Common::AbstractModel
|
816
816
|
# @param InquiryType: 查询类别,取值范围。<br><li>INQUIRY_CBS_CONFIG:查询云盘配置列表<br><li>INQUIRY_CVM_CONFIG:查询云盘与实例搭配的配置列表。
|
817
817
|
# @type InquiryType: String
|
818
|
-
# @param Zones: 查询一个或多个[可用区](/document/product/213/15753#ZoneInfo)下的配置。
|
819
|
-
# @type Zones: Array
|
820
818
|
# @param DiskChargeType: 付费模式。取值范围:<br><li>PREPAID:预付费<br><li>POSTPAID_BY_HOUR:后付费。
|
821
819
|
# @type DiskChargeType: String
|
820
|
+
# @param InstanceFamilies: 按照实例机型系列过滤。实例机型系列形如:S1、I1、M1等。详见[实例类型](https://cloud.tencent.com/document/product/213/11518)
|
821
|
+
# @type InstanceFamilies: Array
|
822
822
|
# @param DiskTypes: 硬盘介质类型。取值范围:<br><li>CLOUD_BASIC:表示普通云硬盘<br><li>CLOUD_PREMIUM:表示高性能云硬盘<br><li>CLOUD_SSD:表示SSD云硬盘<br><li>CLOUD_HSSD:表示增强型SSD云硬盘。
|
823
823
|
# @type DiskTypes: Array
|
824
|
+
# @param Zones: 查询一个或多个[可用区](/document/product/213/15753#ZoneInfo)下的配置。
|
825
|
+
# @type Zones: Array
|
826
|
+
# @param Memory: 实例内存大小。
|
827
|
+
# @type Memory: Integer
|
824
828
|
# @param DiskUsage: 系统盘或数据盘。取值范围:<br><li>SYSTEM_DISK:表示系统盘<br><li>DATA_DISK:表示数据盘。
|
825
829
|
# @type DiskUsage: String
|
826
|
-
# @param InstanceFamilies: 按照实例机型系列过滤。实例机型系列形如:S1、I1、M1等。详见[实例类型](https://cloud.tencent.com/document/product/213/11518)
|
827
|
-
# @type InstanceFamilies: Array
|
828
830
|
# @param CPU: 实例CPU核数。
|
829
831
|
# @type CPU: Integer
|
830
|
-
# @param Memory: 实例内存大小。
|
831
|
-
# @type Memory: Integer
|
832
832
|
|
833
|
-
attr_accessor :InquiryType, :
|
833
|
+
attr_accessor :InquiryType, :DiskChargeType, :InstanceFamilies, :DiskTypes, :Zones, :Memory, :DiskUsage, :CPU
|
834
834
|
|
835
|
-
def initialize(inquirytype=nil,
|
835
|
+
def initialize(inquirytype=nil, diskchargetype=nil, instancefamilies=nil, disktypes=nil, zones=nil, memory=nil, diskusage=nil, cpu=nil)
|
836
836
|
@InquiryType = inquirytype
|
837
|
-
@Zones = zones
|
838
837
|
@DiskChargeType = diskchargetype
|
838
|
+
@InstanceFamilies = instancefamilies
|
839
839
|
@DiskTypes = disktypes
|
840
|
+
@Zones = zones
|
841
|
+
@Memory = memory
|
840
842
|
@DiskUsage = diskusage
|
841
|
-
@InstanceFamilies = instancefamilies
|
842
843
|
@CPU = cpu
|
843
|
-
@Memory = memory
|
844
844
|
end
|
845
845
|
|
846
846
|
def deserialize(params)
|
847
847
|
@InquiryType = params['InquiryType']
|
848
|
-
@Zones = params['Zones']
|
849
848
|
@DiskChargeType = params['DiskChargeType']
|
849
|
+
@InstanceFamilies = params['InstanceFamilies']
|
850
850
|
@DiskTypes = params['DiskTypes']
|
851
|
+
@Zones = params['Zones']
|
852
|
+
@Memory = params['Memory']
|
851
853
|
@DiskUsage = params['DiskUsage']
|
852
|
-
@InstanceFamilies = params['InstanceFamilies']
|
853
854
|
@CPU = params['CPU']
|
854
|
-
@Memory = params['Memory']
|
855
855
|
end
|
856
856
|
end
|
857
857
|
|
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.382
|
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-08-
|
11
|
+
date: 2022-08-08 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|