tencentcloud-sdk-tke 1.0.328 → 1.0.329
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/v20180525/models.rb +33 -2
- 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: 96bc0fa654e3542db3ac314b3b643fe28353a531
|
4
|
+
data.tar.gz: 25420bcebb0f27729e3206c385d2903245a6b6e4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 61cd0daa6848e2a6d0712444d54d39cf22895dbf4c1e80943f21ad44c002153fd8b745b9679c6a65cc74bd22e2de12413fb85d51bfe33a2d6ce8bf9f14289792
|
7
|
+
data.tar.gz: a38ce30fa2d170a1afeeb229d885ee34d96629c33f21d74b80c76c8771df63002f3d06ac77d142a760e3efd44073582c56f7fa339845169728a0c3b1876a2a57
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.0.
|
1
|
+
1.0.329
|
data/lib/v20180525/models.rb
CHANGED
@@ -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.
|
4
|
+
version: 1.0.329
|
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-
|
11
|
+
date: 2022-06-09 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|