tencentcloud-sdk-tke 3.0.390 → 3.0.396

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: 8c51593a4c5fc2e300b31dc38eb24f83cb9cf960
4
- data.tar.gz: 45978834457ef5cab448b024815f753b8903d6ef
3
+ metadata.gz: 1fef6cbc00e2433815135fcbd895fdc64c0e7935
4
+ data.tar.gz: 2318d85b1dd1a900ab1e0901ed9e97c7d92374e2
5
5
  SHA512:
6
- metadata.gz: 6f5a87e94ced8925c22dccfc9f1c2ea5a826bcea8634791098a25ddf21cf241fbde8cfc1c50bc51c7f5c2b4d93fbf3a2c689151e9856a4a46a4a45d75393ca3b
7
- data.tar.gz: 163c77c1675aa800587e7af71d4680d32dcd524b8cdecec43b579987cf5b5263eaba9d04085eee481d56378d88335bfd66023a2ac8805fbd49773972c5742dcd
6
+ metadata.gz: 764f637160f1adea6e8ed37bd09cf46b0ac201542ccc3b872a94bb924a9bbde6bc65532a6fdaeb207216d394c2d67a0aa8a4f0593aa6aec20c4d4b00aaf6a343
7
+ data.tar.gz: c535a4654ee63f0d625e3652feae880ef2897c2d93a6a6d8e0dbbbe6bfa003a3012d892f6d1fe4753a50c696533b33c0ba2412b15a4f65646309916dd1c635fb
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.390
1
+ 3.0.396
@@ -1157,7 +1157,7 @@ module TencentCloud
1157
1157
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
1158
1158
  end
1159
1159
 
1160
- # 解除2.0实例的集群关联
1160
+ # 解除TMP实例的集群关联
1161
1161
 
1162
1162
  # @param request: Request instance for DeletePrometheusClusterAgent.
1163
1163
  # @type request: :class:`Tencentcloud::tke::V20180525::DeletePrometheusClusterAgentRequest`
@@ -3817,12 +3817,28 @@ module TencentCloud
3817
3817
 
3818
3818
  # DeletePrometheusClusterAgent请求参数结构体
3819
3819
  class DeletePrometheusClusterAgentRequest < TencentCloud::Common::AbstractModel
3820
+ # @param Agents: agent列表
3821
+ # @type Agents: Array
3822
+ # @param InstanceId: 实例id
3823
+ # @type InstanceId: String
3820
3824
 
3825
+ attr_accessor :Agents, :InstanceId
3821
3826
 
3822
- def initialize()
3827
+ def initialize(agents=nil, instanceid=nil)
3828
+ @Agents = agents
3829
+ @InstanceId = instanceid
3823
3830
  end
3824
3831
 
3825
3832
  def deserialize(params)
3833
+ unless params['Agents'].nil?
3834
+ @Agents = []
3835
+ params['Agents'].each do |i|
3836
+ prometheusagentinfo_tmp = PrometheusAgentInfo.new
3837
+ prometheusagentinfo_tmp.deserialize(i)
3838
+ @Agents << prometheusagentinfo_tmp
3839
+ end
3840
+ end
3841
+ @InstanceId = params['InstanceId']
3826
3842
  end
3827
3843
  end
3828
3844
 
@@ -11325,6 +11341,30 @@ module TencentCloud
11325
11341
  end
11326
11342
  end
11327
11343
 
11344
+ # 托管Prometheus agent信息
11345
+ class PrometheusAgentInfo < TencentCloud::Common::AbstractModel
11346
+ # @param ClusterType: 集群类型
11347
+ # @type ClusterType: String
11348
+ # @param ClusterId: 集群id
11349
+ # @type ClusterId: String
11350
+ # @param Describe: 备注
11351
+ # @type Describe: String
11352
+
11353
+ attr_accessor :ClusterType, :ClusterId, :Describe
11354
+
11355
+ def initialize(clustertype=nil, clusterid=nil, describe=nil)
11356
+ @ClusterType = clustertype
11357
+ @ClusterId = clusterid
11358
+ @Describe = describe
11359
+ end
11360
+
11361
+ def deserialize(params)
11362
+ @ClusterType = params['ClusterType']
11363
+ @ClusterId = params['ClusterId']
11364
+ @Describe = params['Describe']
11365
+ end
11366
+ end
11367
+
11328
11368
  # 托管prometheus agent概览
11329
11369
  class PrometheusAgentOverview < TencentCloud::Common::AbstractModel
11330
11370
  # @param ClusterType: 集群类型
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.390
4
+ version: 3.0.396
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-08-18 00:00:00.000000000 Z
11
+ date: 2022-08-29 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common