tencentcloud-sdk-tke 1.0.328 → 1.0.331

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/v20180525/models.rb +33 -2
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: d4dadb7b256a01156fd5153f03ca9fdfdd7a662e
4
- data.tar.gz: d33df1c0b0f1fa322c7a43491286e3f3b6940982
3
+ metadata.gz: 1d0a872832810b4e39b241f8c2851453163c901d
4
+ data.tar.gz: 127e3acf9774892403cbcfc5a815ab6a87d4d25f
5
5
  SHA512:
6
- metadata.gz: f63a13c4bacd28ca8a4a486bdc68593b601be15a5d4f049656a9540a07c676616ea4795fdef3fc189d1d248388b93537b58b83ec50744a7ba34774ddb8a9fa12
7
- data.tar.gz: bab20214c4b80ae43a420d381919e074bebd807973e1acc024865a8e0a27b4cd6460d8b8857d3bb70b989d0c16003b1a761ed792d148516042cf865a25a27c9c
6
+ metadata.gz: e9c464aa2c9a047ca9b7a7148bf78bd81cc23b1bc9081817bcafec06969e138650d450248308f107c27c0469be47b1eef6ef6b714854077c0dca6ba4802288c3
7
+ data.tar.gz: 2ae922cf2a18c5fbb28ca430df01072e7706add7f667179b7a7ad3f045bb35e7fb6b5939fd4742808631e8388428e99002e327a2a8160cbf31c14144c1544f76
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 1.0.328
1
+ 1.0.331
@@ -2178,10 +2178,12 @@ module TencentCloud
2178
2178
  # @type EnableVpcCoreDNS: Boolean
2179
2179
  # @param TagSpecification: 标签描述列表。通过指定该参数可以同时绑定标签到相应的资源实例,当前仅支持绑定标签到集群实例。
2180
2180
  # @type TagSpecification: Array
2181
+ # @param SubnetInfos: 子网信息列表
2182
+ # @type SubnetInfos: Array
2181
2183
 
2182
- attr_accessor :K8SVersion, :VpcId, :ClusterName, :SubnetIds, :ClusterDesc, :ServiceSubnetId, :DnsServers, :ExtraParam, :EnableVpcCoreDNS, :TagSpecification
2184
+ attr_accessor :K8SVersion, :VpcId, :ClusterName, :SubnetIds, :ClusterDesc, :ServiceSubnetId, :DnsServers, :ExtraParam, :EnableVpcCoreDNS, :TagSpecification, :SubnetInfos
2183
2185
 
2184
- def initialize(k8sversion=nil, vpcid=nil, clustername=nil, subnetids=nil, clusterdesc=nil, servicesubnetid=nil, dnsservers=nil, extraparam=nil, enablevpccoredns=nil, tagspecification=nil)
2186
+ def initialize(k8sversion=nil, vpcid=nil, clustername=nil, subnetids=nil, clusterdesc=nil, servicesubnetid=nil, dnsservers=nil, extraparam=nil, enablevpccoredns=nil, tagspecification=nil, subnetinfos=nil)
2185
2187
  @K8SVersion = k8sversion
2186
2188
  @VpcId = vpcid
2187
2189
  @ClusterName = clustername
@@ -2192,6 +2194,7 @@ module TencentCloud
2192
2194
  @ExtraParam = extraparam
2193
2195
  @EnableVpcCoreDNS = enablevpccoredns
2194
2196
  @TagSpecification = tagspecification
2197
+ @SubnetInfos = subnetinfos
2195
2198
  end
2196
2199
 
2197
2200
  def deserialize(params)
@@ -2219,6 +2222,14 @@ module TencentCloud
2219
2222
  @TagSpecification << tagspecification_tmp
2220
2223
  end
2221
2224
  end
2225
+ unless params['SubnetInfos'].nil?
2226
+ @SubnetInfos = []
2227
+ params['SubnetInfos'].each do |i|
2228
+ subnetinfos_tmp = SubnetInfos.new
2229
+ subnetinfos_tmp.deserialize(i)
2230
+ @SubnetInfos << subnetinfos_tmp
2231
+ end
2232
+ end
2222
2233
  end
2223
2234
  end
2224
2235
 
@@ -12132,6 +12143,26 @@ module TencentCloud
12132
12143
  end
12133
12144
  end
12134
12145
 
12146
+ # 子网信息
12147
+ class SubnetInfos < TencentCloud::Common::AbstractModel
12148
+ # @param SubnetId: 子网id
12149
+ # @type SubnetId: String
12150
+ # @param Name: 子网节点名称
12151
+ # @type Name: String
12152
+
12153
+ attr_accessor :SubnetId, :Name
12154
+
12155
+ def initialize(subnetid=nil, name=nil)
12156
+ @SubnetId = subnetid
12157
+ @Name = name
12158
+ end
12159
+
12160
+ def deserialize(params)
12161
+ @SubnetId = params['SubnetId']
12162
+ @Name = params['Name']
12163
+ end
12164
+ end
12165
+
12135
12166
  # SyncPrometheusTemp请求参数结构体
12136
12167
  class SyncPrometheusTempRequest < TencentCloud::Common::AbstractModel
12137
12168
  # @param TemplateId: 实例id
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-tke
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.328
4
+ version: 1.0.331
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-06-07 00:00:00.000000000 Z
11
+ date: 2022-06-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common