tencentcloud-sdk-tke 3.0.974 → 3.0.975

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 +19 -4
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: b978c2ab60b77cce767f9a6524113099a621defd
4
- data.tar.gz: 756fda6ba3dc5e90dd1762cf6976a334e4b4e40b
3
+ metadata.gz: a48b73d46e7a3559e22287c5fea000a770e0fcc2
4
+ data.tar.gz: 0bbc066ec9e67c940c14096ea5e674cc96eb23aa
5
5
  SHA512:
6
- metadata.gz: bfb7ba078cb772f91c09e7a2a3687b4ad46f4cc70b8c5af14464b3d750d02c9d8113741e49b7c3d60e2db762d25ba3c6df8a59df0b18720256665d741cc14f45
7
- data.tar.gz: 0c43c9707885f5966c9563525f7736edef17be729ea16fc3767b5d6814aacd19c6bcae370254af7173d64c7f791a85dc42e7b1b37305c8120265d9a7cfbc6c72
6
+ metadata.gz: a136fa5661495f31e938793d33b4ae0361b65d2bf0f7a7cf222f2660c5d174a3eb7a10da684aebd2d955e36d3997a6d881084c83866a54f093e8aa8c68a88f59
7
+ data.tar.gz: c2df588736bd90caf30953612826ee49123c5e47592da7ea5a816dd7ca213004bd418406687c73cf0d5f2dadf0a09110a95b4f540489fe497c3c505ec03e4af4
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.974
1
+ 3.0.975
@@ -11414,7 +11414,7 @@ module TencentCloud
11414
11414
  # @type SubnetIds: Array
11415
11415
  # @param K8SVersion: k8s 版本号
11416
11416
  # @type K8SVersion: String
11417
- # @param Status: 集群状态(running运行中,initializing 初始化中,failed异常)
11417
+ # @param Status: 集群状态(running 运行中,initializing 初始化中,Failed 异常,Idling 空闲中,Activating 激活中,Terminating 删除中)
11418
11418
  # @type Status: String
11419
11419
  # @param ClusterDesc: 集群描述信息
11420
11420
  # @type ClusterDesc: String
@@ -15981,7 +15981,7 @@ module TencentCloud
15981
15981
 
15982
15982
  # 与云监控融合托管prometheus实例,关联集群基础信息
15983
15983
  class PrometheusClusterAgentBasic < TencentCloud::Common::AbstractModel
15984
- # @param Region: 集群ID
15984
+ # @param Region: 地域
15985
15985
  # @type Region: String
15986
15986
  # @param ClusterType: 集群类型
15987
15987
  # @type ClusterType: String
@@ -17219,10 +17219,19 @@ module TencentCloud
17219
17219
  # @param ComputedValues: 应用参数
17220
17220
  # 注意:此字段可能返回 null,表示取不到有效值。
17221
17221
  # @type ComputedValues: String
17222
+ # @param ChartFrom: chart 的来源, tke-market, others
17223
+ # 注意:此字段可能返回 null,表示取不到有效值。
17224
+ # @type ChartFrom: String
17225
+ # @param ChartURL: 第三方chart 的安装地址
17226
+ # 注意:此字段可能返回 null,表示取不到有效值。
17227
+ # @type ChartURL: String
17228
+ # @param Resources: 通过chart 创建的资源
17229
+ # 注意:此字段可能返回 null,表示取不到有效值。
17230
+ # @type Resources: String
17222
17231
 
17223
- attr_accessor :Name, :Namespace, :Version, :Status, :Description, :Notes, :Config, :Manifest, :ChartVersion, :ChartName, :ChartDescription, :AppVersion, :FirstDeployedTime, :LastDeployedTime, :ComputedValues
17232
+ attr_accessor :Name, :Namespace, :Version, :Status, :Description, :Notes, :Config, :Manifest, :ChartVersion, :ChartName, :ChartDescription, :AppVersion, :FirstDeployedTime, :LastDeployedTime, :ComputedValues, :ChartFrom, :ChartURL, :Resources
17224
17233
 
17225
- def initialize(name=nil, namespace=nil, version=nil, status=nil, description=nil, notes=nil, config=nil, manifest=nil, chartversion=nil, chartname=nil, chartdescription=nil, appversion=nil, firstdeployedtime=nil, lastdeployedtime=nil, computedvalues=nil)
17234
+ def initialize(name=nil, namespace=nil, version=nil, status=nil, description=nil, notes=nil, config=nil, manifest=nil, chartversion=nil, chartname=nil, chartdescription=nil, appversion=nil, firstdeployedtime=nil, lastdeployedtime=nil, computedvalues=nil, chartfrom=nil, charturl=nil, resources=nil)
17226
17235
  @Name = name
17227
17236
  @Namespace = namespace
17228
17237
  @Version = version
@@ -17238,6 +17247,9 @@ module TencentCloud
17238
17247
  @FirstDeployedTime = firstdeployedtime
17239
17248
  @LastDeployedTime = lastdeployedtime
17240
17249
  @ComputedValues = computedvalues
17250
+ @ChartFrom = chartfrom
17251
+ @ChartURL = charturl
17252
+ @Resources = resources
17241
17253
  end
17242
17254
 
17243
17255
  def deserialize(params)
@@ -17256,6 +17268,9 @@ module TencentCloud
17256
17268
  @FirstDeployedTime = params['FirstDeployedTime']
17257
17269
  @LastDeployedTime = params['LastDeployedTime']
17258
17270
  @ComputedValues = params['ComputedValues']
17271
+ @ChartFrom = params['ChartFrom']
17272
+ @ChartURL = params['ChartURL']
17273
+ @Resources = params['Resources']
17259
17274
  end
17260
17275
  end
17261
17276
 
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: 3.0.974
4
+ version: 3.0.975
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-02 00:00:00.000000000 Z
11
+ date: 2025-01-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common