tencentcloud-sdk-monitor 1.0.355 → 1.0.356
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/VERSION +1 -1
- data/lib/v20180724/models.rb +28 -16
- 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: 6f9e81dcc69bcb7fc8dab63533324a1b5159fb2f
|
4
|
+
data.tar.gz: d43c3cdc0476cae6336ac9345e2d821196fe1eb2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 04114d3a2622926bf23fa15efe82463eae9923b5d54aedd5bc3afdc1458d09b24ff77ffa603aaace70ddf9cb31142f21e633bf22112a021d212d6408093169dc
|
7
|
+
data.tar.gz: 5199b1963f67ac290b95ad4c10dcfa571a16dbbbccf7f5065b5daee2ea846bf950bc902275b1dfdd72a128e699ba9829e5d525d561139bf7c8162a81f8bbc55e
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.0.
|
1
|
+
1.0.356
|
data/lib/v20180724/models.rb
CHANGED
@@ -1322,6 +1322,10 @@ module TencentCloud
|
|
1322
1322
|
class CreateExporterIntegrationRequest < TencentCloud::Common::AbstractModel
|
1323
1323
|
# @param InstanceId: 实例 ID
|
1324
1324
|
# @type InstanceId: String
|
1325
|
+
# @param Kind: 类型
|
1326
|
+
# @type Kind: String
|
1327
|
+
# @param Content: 集成配置
|
1328
|
+
# @type Content: String
|
1325
1329
|
# @param KubeType: Kubernetes 集群类型,取值如下:
|
1326
1330
|
# <li> 1= 容器集群(TKE) </li>
|
1327
1331
|
# <li> 2=弹性集群<EKS> </li>
|
@@ -1329,42 +1333,42 @@ module TencentCloud
|
|
1329
1333
|
# @type KubeType: Integer
|
1330
1334
|
# @param ClusterId: 集群 ID
|
1331
1335
|
# @type ClusterId: String
|
1332
|
-
# @param Kind: 类型
|
1333
|
-
# @type Kind: String
|
1334
|
-
# @param Content: 集成配置
|
1335
|
-
# @type Content: String
|
1336
1336
|
|
1337
|
-
attr_accessor :InstanceId, :
|
1337
|
+
attr_accessor :InstanceId, :Kind, :Content, :KubeType, :ClusterId
|
1338
1338
|
|
1339
|
-
def initialize(instanceid=nil,
|
1339
|
+
def initialize(instanceid=nil, kind=nil, content=nil, kubetype=nil, clusterid=nil)
|
1340
1340
|
@InstanceId = instanceid
|
1341
|
-
@KubeType = kubetype
|
1342
|
-
@ClusterId = clusterid
|
1343
1341
|
@Kind = kind
|
1344
1342
|
@Content = content
|
1343
|
+
@KubeType = kubetype
|
1344
|
+
@ClusterId = clusterid
|
1345
1345
|
end
|
1346
1346
|
|
1347
1347
|
def deserialize(params)
|
1348
1348
|
@InstanceId = params['InstanceId']
|
1349
|
-
@KubeType = params['KubeType']
|
1350
|
-
@ClusterId = params['ClusterId']
|
1351
1349
|
@Kind = params['Kind']
|
1352
1350
|
@Content = params['Content']
|
1351
|
+
@KubeType = params['KubeType']
|
1352
|
+
@ClusterId = params['ClusterId']
|
1353
1353
|
end
|
1354
1354
|
end
|
1355
1355
|
|
1356
1356
|
# CreateExporterIntegration返回参数结构体
|
1357
1357
|
class CreateExporterIntegrationResponse < TencentCloud::Common::AbstractModel
|
1358
|
+
# @param Names: 返回创建成功的集成名称列表
|
1359
|
+
# @type Names: Array
|
1358
1360
|
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
1359
1361
|
# @type RequestId: String
|
1360
1362
|
|
1361
|
-
attr_accessor :RequestId
|
1363
|
+
attr_accessor :Names, :RequestId
|
1362
1364
|
|
1363
|
-
def initialize(requestid=nil)
|
1365
|
+
def initialize(names=nil, requestid=nil)
|
1366
|
+
@Names = names
|
1364
1367
|
@RequestId = requestid
|
1365
1368
|
end
|
1366
1369
|
|
1367
1370
|
def deserialize(params)
|
1371
|
+
@Names = params['Names']
|
1368
1372
|
@RequestId = params['RequestId']
|
1369
1373
|
end
|
1370
1374
|
end
|
@@ -1557,16 +1561,20 @@ module TencentCloud
|
|
1557
1561
|
|
1558
1562
|
# CreatePrometheusAgent返回参数结构体
|
1559
1563
|
class CreatePrometheusAgentResponse < TencentCloud::Common::AbstractModel
|
1564
|
+
# @param AgentId: 创建成功的 Agent Id
|
1565
|
+
# @type AgentId: String
|
1560
1566
|
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
1561
1567
|
# @type RequestId: String
|
1562
1568
|
|
1563
|
-
attr_accessor :RequestId
|
1569
|
+
attr_accessor :AgentId, :RequestId
|
1564
1570
|
|
1565
|
-
def initialize(requestid=nil)
|
1571
|
+
def initialize(agentid=nil, requestid=nil)
|
1572
|
+
@AgentId = agentid
|
1566
1573
|
@RequestId = requestid
|
1567
1574
|
end
|
1568
1575
|
|
1569
1576
|
def deserialize(params)
|
1577
|
+
@AgentId = params['AgentId']
|
1570
1578
|
@RequestId = params['RequestId']
|
1571
1579
|
end
|
1572
1580
|
end
|
@@ -1664,16 +1672,20 @@ module TencentCloud
|
|
1664
1672
|
|
1665
1673
|
# CreatePrometheusScrapeJob返回参数结构体
|
1666
1674
|
class CreatePrometheusScrapeJobResponse < TencentCloud::Common::AbstractModel
|
1675
|
+
# @param JobId: 成功创建抓取任务 Id
|
1676
|
+
# @type JobId: String
|
1667
1677
|
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
1668
1678
|
# @type RequestId: String
|
1669
1679
|
|
1670
|
-
attr_accessor :RequestId
|
1680
|
+
attr_accessor :JobId, :RequestId
|
1671
1681
|
|
1672
|
-
def initialize(requestid=nil)
|
1682
|
+
def initialize(jobid=nil, requestid=nil)
|
1683
|
+
@JobId = jobid
|
1673
1684
|
@RequestId = requestid
|
1674
1685
|
end
|
1675
1686
|
|
1676
1687
|
def deserialize(params)
|
1688
|
+
@JobId = params['JobId']
|
1677
1689
|
@RequestId = params['RequestId']
|
1678
1690
|
end
|
1679
1691
|
end
|
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: 1.0.
|
4
|
+
version: 1.0.356
|
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-07-
|
11
|
+
date: 2022-07-14 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|