tencentcloud-sdk-cvm 3.0.984 → 3.0.985

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/lib/VERSION +1 -1
  3. data/lib/v20170312/models.rb +47 -6
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 3a93a53e5b57eaca062b8d00e229151c4a6cc2fa
4
- data.tar.gz: f17b89065e7e1350a5d0d5fe3c9c2e5b0f49ef0f
3
+ metadata.gz: e43f39db6fac690de1617e9c5d2421aebb81322c
4
+ data.tar.gz: 216a386b9e4b6b89571af74540fb5da4ffb1b533
5
5
  SHA512:
6
- metadata.gz: d2f49df6cf0391e3531feaffc988385000773538ccab2574a60ac9aac7deebff7e555c770c3ca74256e1beae2cd1dd810cb7a8c3ec6807407ddd409cac3391e0
7
- data.tar.gz: b927fa3adaf6d664b1c24042349504ed1e73ce947c8d40d39c8f21a74f530a239f033eea09383051639f2e3a35594a39e50915f6096c48d666c1a1ba12aab9ab
6
+ metadata.gz: 925d951f361813e9c5f180ed020caf05b0c5b4f2624db4fda765c4ef28a3f946e262da371e1891863d32e93f38467080f982678ec3e91d7e480b44dec9dbcef0
7
+ data.tar.gz: 97d6dd4bc64bb935407ab7719f3e647c979e158ebacc524b924a7607958436050896167b204b3eb9da2dc137b78be96057170e3c4728ba7af6e2e741dd1b630f
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.984
1
+ 3.0.985
@@ -868,15 +868,18 @@ module TencentCloud
868
868
  # @type HpcClusterType: String
869
869
  # @param HpcClusterBusinessId: 高性能计算集群对应的业务场景标识,当前只支持CDC。
870
870
  # @type HpcClusterBusinessId: String
871
+ # @param TagSpecification: 标签描述列表。通过指定该参数可以同时绑定标签到相应的HPC高性能集群。
872
+ # @type TagSpecification: Array
871
873
 
872
- attr_accessor :Zone, :Name, :Remark, :HpcClusterType, :HpcClusterBusinessId
874
+ attr_accessor :Zone, :Name, :Remark, :HpcClusterType, :HpcClusterBusinessId, :TagSpecification
873
875
 
874
- def initialize(zone=nil, name=nil, remark=nil, hpcclustertype=nil, hpcclusterbusinessid=nil)
876
+ def initialize(zone=nil, name=nil, remark=nil, hpcclustertype=nil, hpcclusterbusinessid=nil, tagspecification=nil)
875
877
  @Zone = zone
876
878
  @Name = name
877
879
  @Remark = remark
878
880
  @HpcClusterType = hpcclustertype
879
881
  @HpcClusterBusinessId = hpcclusterbusinessid
882
+ @TagSpecification = tagspecification
880
883
  end
881
884
 
882
885
  def deserialize(params)
@@ -885,6 +888,14 @@ module TencentCloud
885
888
  @Remark = params['Remark']
886
889
  @HpcClusterType = params['HpcClusterType']
887
890
  @HpcClusterBusinessId = params['HpcClusterBusinessId']
891
+ unless params['TagSpecification'].nil?
892
+ @TagSpecification = []
893
+ params['TagSpecification'].each do |i|
894
+ tagspecification_tmp = TagSpecification.new
895
+ tagspecification_tmp.deserialize(i)
896
+ @TagSpecification << tagspecification_tmp
897
+ end
898
+ end
888
899
  end
889
900
  end
890
901
 
@@ -2123,10 +2134,14 @@ module TencentCloud
2123
2134
  # @type HpcClusterType: String
2124
2135
  # @param HpcClusterBusinessId: 高性能计算集群对应的业务场景标识,当前只支持CDC。
2125
2136
  # @type HpcClusterBusinessId: String
2137
+ # @param InstanceType: 高性能计算集群实例类型
2138
+ # @type InstanceType: String
2139
+ # @param Filters: <li><strong>tag-key</strong></li> <p style="padding-left: 30px;">按照【<strong>标签键</strong>】进行过滤。</p><p style="padding-left: 30px;">类型:String</p><p style="padding-left: 30px;">必选:否</p> <li><strong>tag-value</strong></li> <p style="padding-left: 30px;">按照【<strong>标签值</strong>】进行过滤。</p><p style="padding-left: 30px;">类型:String</p><p style="padding-left: 30px;">必选:否</p> <li><strong>tag:tag-key</strong></li> <p style="padding-left: 30px;">按照【<strong>标签键值对</strong>】进行过滤。tag-key使用具体的标签键进行替换。</p><p style="padding-left: 30px;">类型:String</p><p style="padding-left: 30px;">必选:否</p> 每次请求的`Filters`的上限为10,`Filter.Values`的上限为5。
2140
+ # @type Filters: Array
2126
2141
 
2127
- attr_accessor :HpcClusterIds, :Name, :Zone, :Offset, :Limit, :HpcClusterType, :HpcClusterBusinessId
2142
+ attr_accessor :HpcClusterIds, :Name, :Zone, :Offset, :Limit, :HpcClusterType, :HpcClusterBusinessId, :InstanceType, :Filters
2128
2143
 
2129
- def initialize(hpcclusterids=nil, name=nil, zone=nil, offset=nil, limit=nil, hpcclustertype=nil, hpcclusterbusinessid=nil)
2144
+ def initialize(hpcclusterids=nil, name=nil, zone=nil, offset=nil, limit=nil, hpcclustertype=nil, hpcclusterbusinessid=nil, instancetype=nil, filters=nil)
2130
2145
  @HpcClusterIds = hpcclusterids
2131
2146
  @Name = name
2132
2147
  @Zone = zone
@@ -2134,6 +2149,8 @@ module TencentCloud
2134
2149
  @Limit = limit
2135
2150
  @HpcClusterType = hpcclustertype
2136
2151
  @HpcClusterBusinessId = hpcclusterbusinessid
2152
+ @InstanceType = instancetype
2153
+ @Filters = filters
2137
2154
  end
2138
2155
 
2139
2156
  def deserialize(params)
@@ -2144,6 +2161,15 @@ module TencentCloud
2144
2161
  @Limit = params['Limit']
2145
2162
  @HpcClusterType = params['HpcClusterType']
2146
2163
  @HpcClusterBusinessId = params['HpcClusterBusinessId']
2164
+ @InstanceType = params['InstanceType']
2165
+ unless params['Filters'].nil?
2166
+ @Filters = []
2167
+ params['Filters'].each do |i|
2168
+ filter_tmp = Filter.new
2169
+ filter_tmp.deserialize(i)
2170
+ @Filters << filter_tmp
2171
+ end
2172
+ end
2147
2173
  end
2148
2174
  end
2149
2175
 
@@ -4012,10 +4038,14 @@ module TencentCloud
4012
4038
  # @param HpcClusterBusinessId: 高性能计算集群对应的业务场景标识,当前只支持CDC。
4013
4039
  # 注意:此字段可能返回 null,表示取不到有效值。
4014
4040
  # @type HpcClusterBusinessId: String
4041
+ # @param HpcClusterNetMode: 高性能计算集群网络模式
4042
+ # @type HpcClusterNetMode: Integer
4043
+ # @param Tags: 高性能计算集群关联的标签列表
4044
+ # @type Tags: Array
4015
4045
 
4016
- attr_accessor :HpcClusterId, :Name, :Remark, :CvmQuotaTotal, :Zone, :CurrentNum, :CreateTime, :InstanceIds, :HpcClusterType, :HpcClusterBusinessId
4046
+ attr_accessor :HpcClusterId, :Name, :Remark, :CvmQuotaTotal, :Zone, :CurrentNum, :CreateTime, :InstanceIds, :HpcClusterType, :HpcClusterBusinessId, :HpcClusterNetMode, :Tags
4017
4047
 
4018
- def initialize(hpcclusterid=nil, name=nil, remark=nil, cvmquotatotal=nil, zone=nil, currentnum=nil, createtime=nil, instanceids=nil, hpcclustertype=nil, hpcclusterbusinessid=nil)
4048
+ def initialize(hpcclusterid=nil, name=nil, remark=nil, cvmquotatotal=nil, zone=nil, currentnum=nil, createtime=nil, instanceids=nil, hpcclustertype=nil, hpcclusterbusinessid=nil, hpcclusternetmode=nil, tags=nil)
4019
4049
  @HpcClusterId = hpcclusterid
4020
4050
  @Name = name
4021
4051
  @Remark = remark
@@ -4026,6 +4056,8 @@ module TencentCloud
4026
4056
  @InstanceIds = instanceids
4027
4057
  @HpcClusterType = hpcclustertype
4028
4058
  @HpcClusterBusinessId = hpcclusterbusinessid
4059
+ @HpcClusterNetMode = hpcclusternetmode
4060
+ @Tags = tags
4029
4061
  end
4030
4062
 
4031
4063
  def deserialize(params)
@@ -4039,6 +4071,15 @@ module TencentCloud
4039
4071
  @InstanceIds = params['InstanceIds']
4040
4072
  @HpcClusterType = params['HpcClusterType']
4041
4073
  @HpcClusterBusinessId = params['HpcClusterBusinessId']
4074
+ @HpcClusterNetMode = params['HpcClusterNetMode']
4075
+ unless params['Tags'].nil?
4076
+ @Tags = []
4077
+ params['Tags'].each do |i|
4078
+ tag_tmp = Tag.new
4079
+ tag_tmp.deserialize(i)
4080
+ @Tags << tag_tmp
4081
+ end
4082
+ end
4042
4083
  end
4043
4084
  end
4044
4085
 
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.984
4
+ version: 3.0.985
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tencent Cloud
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2025-01-16 00:00:00.000000000 Z
11
+ date: 2025-01-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common