tencentcloud-sdk-cvm 3.0.465 → 3.0.467
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/client.rb +1 -1
- data/lib/v20170312/models.rb +11 -3
- 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: cc241c9fc25cca525ec0153a952a8761ccd59c11
|
4
|
+
data.tar.gz: 44dc953846c85b15217289e782acfce55b915783
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7a87d2526166c11092913831374d537e817432f36267190cc04c978e63abd8dfbe0082f04976d059e8428295b5cbc41d1115cbe2ec9b98d41968d0d04fbb16fc
|
7
|
+
data.tar.gz: 098035bb4df4b692e5604eff5427321e05f149c3a6900864a1986c03fed2d9c0e2b6fab3b87334dbf4deb1b91425cf5211fc80f66176cae503601c3232bc666f
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.467
|
data/lib/v20170312/client.rb
CHANGED
@@ -1540,7 +1540,7 @@ module TencentCloud
|
|
1540
1540
|
# 本接口 (InquiryPriceTerminateInstances) 用于退还实例询价。
|
1541
1541
|
|
1542
1542
|
# * 查询退还实例可以返还的费用。
|
1543
|
-
# * 支持批量操作,每次请求批量实例的上限为100
|
1543
|
+
# * 支持批量操作,每次请求批量实例的上限为100。如果批量实例存在不允许操作的实例,操作会以特定错误码返回。
|
1544
1544
|
|
1545
1545
|
# @param request: Request instance for InquiryPriceTerminateInstances.
|
1546
1546
|
# @type request: :class:`Tencentcloud::cvm::V20170312::InquiryPriceTerminateInstancesRequest`
|
data/lib/v20170312/models.rb
CHANGED
@@ -189,7 +189,7 @@ module TencentCloud
|
|
189
189
|
|
190
190
|
# AllocateHosts返回参数结构体
|
191
191
|
class AllocateHostsResponse < TencentCloud::Common::AbstractModel
|
192
|
-
# @param HostIdSet: 新创建云子机的实例
|
192
|
+
# @param HostIdSet: 新创建云子机的实例ID列表。
|
193
193
|
# @type HostIdSet: Array
|
194
194
|
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
195
195
|
# @type RequestId: String
|
@@ -4941,10 +4941,14 @@ module TencentCloud
|
|
4941
4941
|
# @type Fpga: Integer
|
4942
4942
|
# @param Remark: 实例备注信息。
|
4943
4943
|
# @type Remark: String
|
4944
|
+
# @param GpuCount: 实例机型映射的物理GPU卡数,单位:卡。vGPU卡型小于1,直通卡型大于等于1。vGPU是通过分片虚拟化技术,将物理GPU卡重新划分,同一块GPU卡经虚拟化分割后可分配至不同的实例使用。直通卡型会将GPU设备直接挂载给实例使用。
|
4945
|
+
# @type GpuCount: Float
|
4946
|
+
# @param Frequency: 实例的CPU主频信息
|
4947
|
+
# @type Frequency: String
|
4944
4948
|
|
4945
|
-
attr_accessor :Zone, :InstanceType, :InstanceChargeType, :NetworkCard, :Externals, :Cpu, :Memory, :InstanceFamily, :TypeName, :LocalDiskTypeList, :Status, :Price, :SoldOutReason, :InstanceBandwidth, :InstancePps, :StorageBlockAmount, :CpuType, :Gpu, :Fpga, :Remark
|
4949
|
+
attr_accessor :Zone, :InstanceType, :InstanceChargeType, :NetworkCard, :Externals, :Cpu, :Memory, :InstanceFamily, :TypeName, :LocalDiskTypeList, :Status, :Price, :SoldOutReason, :InstanceBandwidth, :InstancePps, :StorageBlockAmount, :CpuType, :Gpu, :Fpga, :Remark, :GpuCount, :Frequency
|
4946
4950
|
|
4947
|
-
def initialize(zone=nil, instancetype=nil, instancechargetype=nil, networkcard=nil, externals=nil, cpu=nil, memory=nil, instancefamily=nil, typename=nil, localdisktypelist=nil, status=nil, price=nil, soldoutreason=nil, instancebandwidth=nil, instancepps=nil, storageblockamount=nil, cputype=nil, gpu=nil, fpga=nil, remark=nil)
|
4951
|
+
def initialize(zone=nil, instancetype=nil, instancechargetype=nil, networkcard=nil, externals=nil, cpu=nil, memory=nil, instancefamily=nil, typename=nil, localdisktypelist=nil, status=nil, price=nil, soldoutreason=nil, instancebandwidth=nil, instancepps=nil, storageblockamount=nil, cputype=nil, gpu=nil, fpga=nil, remark=nil, gpucount=nil, frequency=nil)
|
4948
4952
|
@Zone = zone
|
4949
4953
|
@InstanceType = instancetype
|
4950
4954
|
@InstanceChargeType = instancechargetype
|
@@ -4965,6 +4969,8 @@ module TencentCloud
|
|
4965
4969
|
@Gpu = gpu
|
4966
4970
|
@Fpga = fpga
|
4967
4971
|
@Remark = remark
|
4972
|
+
@GpuCount = gpucount
|
4973
|
+
@Frequency = frequency
|
4968
4974
|
end
|
4969
4975
|
|
4970
4976
|
def deserialize(params)
|
@@ -5001,6 +5007,8 @@ module TencentCloud
|
|
5001
5007
|
@Gpu = params['Gpu']
|
5002
5008
|
@Fpga = params['Fpga']
|
5003
5009
|
@Remark = params['Remark']
|
5010
|
+
@GpuCount = params['GpuCount']
|
5011
|
+
@Frequency = params['Frequency']
|
5004
5012
|
end
|
5005
5013
|
end
|
5006
5014
|
|
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: 3.0.
|
4
|
+
version: 3.0.467
|
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-12-
|
11
|
+
date: 2022-12-07 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|