tencentcloud-sdk-cvm 3.0.575 → 3.0.577

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 828e5cf65f406bc98cd29990dee0560b343ff171
4
- data.tar.gz: b88fcfc0efed1d51fdd452bae1d118dd46cb7dc2
3
+ metadata.gz: d297b60661ca816591c973bba91dd119da6daaac
4
+ data.tar.gz: c46e5ca418ef93beee48cf62d9b8da51c5b5ce63
5
5
  SHA512:
6
- metadata.gz: 060617748eba0bbc65833086388991d605b49d0737b121ddd7bcf8d76bdebf9320b4c2c586274895771e71856fcbff1f3d71763c249f5daeff271a60cf80eb93
7
- data.tar.gz: d37cfead0a525eada4515ffb95c2d3a434a61595d1265aabe7a539542bcf90da986310e4e2bc6f9b025fd8bea549da9ccc7f86779ae2c09fa47e17aee255ab4a
6
+ metadata.gz: ca5ef46a641bf99598a9010064a19af764d2f4571a666e486286794411d52d407e114bfc90f59128e2cb6958ee6e70b338babd3b271cb4d7cef3196529fed306
7
+ data.tar.gz: 3a3def574b2c144ee2a5b0c397fa0a1e1f8c63ce65c9d94573c7b388926c0bed0685360785a025253bd2a768f99d18cf8018a9de97db93c0d064737e83d399ad
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.575
1
+ 3.0.577
@@ -5035,10 +5035,12 @@ module TencentCloud
5035
5035
  # @type Memory: Integer
5036
5036
  # @param FPGA: FPGA核数,单位:核。
5037
5037
  # @type FPGA: Integer
5038
+ # @param GpuCount: 实例机型映射的物理GPU卡数,单位:卡。vGPU卡型小于1,直通卡型大于等于1。vGPU是通过分片虚拟化技术,将物理GPU卡重新划分,同一块GPU卡经虚拟化分割后可分配至不同的实例使用。直通卡型会将GPU设备直接挂载给实例使用。
5039
+ # @type GpuCount: Float
5038
5040
 
5039
- attr_accessor :Zone, :InstanceType, :InstanceFamily, :GPU, :CPU, :Memory, :FPGA
5041
+ attr_accessor :Zone, :InstanceType, :InstanceFamily, :GPU, :CPU, :Memory, :FPGA, :GpuCount
5040
5042
 
5041
- def initialize(zone=nil, instancetype=nil, instancefamily=nil, gpu=nil, cpu=nil, memory=nil, fpga=nil)
5043
+ def initialize(zone=nil, instancetype=nil, instancefamily=nil, gpu=nil, cpu=nil, memory=nil, fpga=nil, gpucount=nil)
5042
5044
  @Zone = zone
5043
5045
  @InstanceType = instancetype
5044
5046
  @InstanceFamily = instancefamily
@@ -5046,6 +5048,7 @@ module TencentCloud
5046
5048
  @CPU = cpu
5047
5049
  @Memory = memory
5048
5050
  @FPGA = fpga
5051
+ @GpuCount = gpucount
5049
5052
  end
5050
5053
 
5051
5054
  def deserialize(params)
@@ -5056,6 +5059,7 @@ module TencentCloud
5056
5059
  @CPU = params['CPU']
5057
5060
  @Memory = params['Memory']
5058
5061
  @FPGA = params['FPGA']
5062
+ @GpuCount = params['GpuCount']
5059
5063
  end
5060
5064
  end
5061
5065
 
@@ -5974,7 +5978,7 @@ module TencentCloud
5974
5978
  class ModifyImageAttributeRequest < TencentCloud::Common::AbstractModel
5975
5979
  # @param ImageId: 镜像ID,形如`img-gvbnzy6f`。镜像ID可以通过如下方式获取:<br><li>通过[DescribeImages](https://cloud.tencent.com/document/api/213/15715)接口返回的`ImageId`获取。<br><li>通过[镜像控制台](https://console.cloud.tencent.com/cvm/image)获取。
5976
5980
  # @type ImageId: String
5977
- # @param ImageName: 设置新的镜像名称;必须满足下列限制:<br> <li> 不得超过20个字符。<br> <li> 镜像名称不能与已有镜像重复。
5981
+ # @param ImageName: 设置新的镜像名称;必须满足下列限制:<br> <li> 不得超过60个字符。<br> <li> 镜像名称不能与已有镜像重复。
5978
5982
  # @type ImageName: String
5979
5983
  # @param ImageDescription: 设置新的镜像描述;必须满足下列限制:<br> <li> 不得超过60个字符。
5980
5984
  # @type ImageDescription: String
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.575
4
+ version: 3.0.577
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-23 00:00:00.000000000 Z
11
+ date: 2023-05-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common