tencentcloud-sdk-monitor 1.0.355 → 1.0.358

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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/lib/VERSION +1 -1
  3. data/lib/v20180724/models.rb +28 -16
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 528f2473f47c31bca5c2a6eadca379b96605df4d
4
- data.tar.gz: 1a714772bbe237c2890f5805dd62b1a2098abc27
3
+ metadata.gz: 17fa6348f94ae015a0b102d82a27fc795b759bb3
4
+ data.tar.gz: a6a7ae8d0934d6b9493366775fa626d4e865e17a
5
5
  SHA512:
6
- metadata.gz: 8715b5a215d855b41bac2a0c6f84eead9ab0a509e9bec060f17aa216eee0124a6db82e6503867212d952a631e0968464e43e1fae8b0d4c64ac5d01c00e2e3221
7
- data.tar.gz: bbe1a7aa7c71a564814f5ac001a0f0f72d6b69d95b5dd4dd71cfc4c87c8c5a67d5eaad83a829213d522e10f2d028c56753104cb2d2d5d67a398a471df48d138a
6
+ metadata.gz: 183b86ceacb9e64e46ca10368ffd9c4bd3a1eb0ad6d1c84fe0bf39dbd069fecb676d3fa035a873eabcc4ada538d36a4eb30e9e4065b195c07c2fb9d906a128bc
7
+ data.tar.gz: b4a62c867bf6df92a9fb2e8be06d802be98f68431ca13ad1de50db9f4a8f6510ab2f05e6d9f512fdef5418166ca0de9e77dd9158528ad20525079507b95f1c6c
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 1.0.355
1
+ 1.0.358
@@ -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, :KubeType, :ClusterId, :Kind, :Content
1337
+ attr_accessor :InstanceId, :Kind, :Content, :KubeType, :ClusterId
1338
1338
 
1339
- def initialize(instanceid=nil, kubetype=nil, clusterid=nil, kind=nil, content=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.355
4
+ version: 1.0.358
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-13 00:00:00.000000000 Z
11
+ date: 2022-07-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common