tencentcloud-sdk-monitor 3.0.567 → 3.0.568
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/v20180724/client.rb +24 -0
- data/lib/v20180724/models.rb +27 -0
- 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: 8ae9baa39df1a9e01bdc4690e790a5f4b9a0a823
|
4
|
+
data.tar.gz: 858a94d9733f757402d535bab7f0d64a5ca66629
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 205cf5692fb76e5fbab5f7a3b9c70fe8230274946e8c1524948e53627d1fd091fba1a7e6e92fd6f873515787d4f37928cdf9e42d60ccc804beb19afe751ebe11
|
7
|
+
data.tar.gz: 0170278831c54cc89fb516357d0e6403aa84378847688362c11f53857e79d81c18b68688d4762795e6349f3186a2cec65707daca0cf7e0a98ce65a1715f51a6a
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.568
|
data/lib/v20180724/client.rb
CHANGED
@@ -1405,6 +1405,30 @@ module TencentCloud
|
|
1405
1405
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
1406
1406
|
end
|
1407
1407
|
|
1408
|
+
# 获取prom实例中集群详细的关联状态
|
1409
|
+
|
1410
|
+
# @param request: Request instance for DescribeClusterAgentCreatingProgress.
|
1411
|
+
# @type request: :class:`Tencentcloud::monitor::V20180724::DescribeClusterAgentCreatingProgressRequest`
|
1412
|
+
# @rtype: :class:`Tencentcloud::monitor::V20180724::DescribeClusterAgentCreatingProgressResponse`
|
1413
|
+
def DescribeClusterAgentCreatingProgress(request)
|
1414
|
+
body = send_request('DescribeClusterAgentCreatingProgress', request.serialize)
|
1415
|
+
response = JSON.parse(body)
|
1416
|
+
if response['Response'].key?('Error') == false
|
1417
|
+
model = DescribeClusterAgentCreatingProgressResponse.new
|
1418
|
+
model.deserialize(response['Response'])
|
1419
|
+
model
|
1420
|
+
else
|
1421
|
+
code = response['Response']['Error']['Code']
|
1422
|
+
message = response['Response']['Error']['Message']
|
1423
|
+
reqid = response['Response']['RequestId']
|
1424
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
1425
|
+
end
|
1426
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
1427
|
+
raise e
|
1428
|
+
rescue StandardError => e
|
1429
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
1430
|
+
end
|
1431
|
+
|
1408
1432
|
# 获取条件模板列表
|
1409
1433
|
|
1410
1434
|
# @param request: Request instance for DescribeConditionsTemplateList.
|
data/lib/v20180724/models.rb
CHANGED
@@ -4712,6 +4712,33 @@ module TencentCloud
|
|
4712
4712
|
end
|
4713
4713
|
end
|
4714
4714
|
|
4715
|
+
# DescribeClusterAgentCreatingProgress请求参数结构体
|
4716
|
+
class DescribeClusterAgentCreatingProgressRequest < TencentCloud::Common::AbstractModel
|
4717
|
+
|
4718
|
+
|
4719
|
+
def initialize()
|
4720
|
+
end
|
4721
|
+
|
4722
|
+
def deserialize(params)
|
4723
|
+
end
|
4724
|
+
end
|
4725
|
+
|
4726
|
+
# DescribeClusterAgentCreatingProgress返回参数结构体
|
4727
|
+
class DescribeClusterAgentCreatingProgressResponse < TencentCloud::Common::AbstractModel
|
4728
|
+
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
4729
|
+
# @type RequestId: String
|
4730
|
+
|
4731
|
+
attr_accessor :RequestId
|
4732
|
+
|
4733
|
+
def initialize(requestid=nil)
|
4734
|
+
@RequestId = requestid
|
4735
|
+
end
|
4736
|
+
|
4737
|
+
def deserialize(params)
|
4738
|
+
@RequestId = params['RequestId']
|
4739
|
+
end
|
4740
|
+
end
|
4741
|
+
|
4715
4742
|
# DescribeConditionsTemplateList请求参数结构体
|
4716
4743
|
class DescribeConditionsTemplateListRequest < TencentCloud::Common::AbstractModel
|
4717
4744
|
# @param Module: 固定值,为"monitor"
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tencentcloud-sdk-monitor
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.0.
|
4
|
+
version: 3.0.568
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tencent Cloud
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-05-
|
11
|
+
date: 2023-05-12 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|