tencentcloud-sdk-cfg 3.0.640 → 3.0.642
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/v20210820/models.rb +16 -6
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 57da3bd70ebb7007e62d17a603ddd8e226b002ff
|
4
|
+
data.tar.gz: 692ff742e03b45ddc58de4b95063e661ee70720e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6154e2056a8bef849eee1bc7de8f1830b3a5b8fce8e60147f4049234a7aa344376ebc91350cd9d321c7fde2c5546f0dcbeb9b45df2bca0813f91a346ca23c896
|
7
|
+
data.tar.gz: bb212946b7ddb11d1e64d15bca6439bce2694006d093898fa8728acb5d5fc7afaa0f7f221fe565960858b9ccda9f2115776ebe9308d907ba461cdaed6aa6ed0a
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.642
|
data/lib/v20210820/models.rb
CHANGED
@@ -1216,8 +1216,11 @@ module TencentCloud
|
|
1216
1216
|
|
1217
1217
|
# 监控指标
|
1218
1218
|
class TaskMonitor < TencentCloud::Common::AbstractModel
|
1219
|
-
# @param TaskMonitorId:
|
1219
|
+
# @param TaskMonitorId: 演练监控指标ID
|
1220
1220
|
# @type TaskMonitorId: Integer
|
1221
|
+
# @param MetricId: 监控指标ID
|
1222
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1223
|
+
# @type MetricId: Integer
|
1221
1224
|
# @param TaskMonitorObjectTypeId: 监控指标对象类型ID
|
1222
1225
|
# @type TaskMonitorObjectTypeId: Integer
|
1223
1226
|
# @param MetricName: 指标名称
|
@@ -1231,10 +1234,11 @@ module TencentCloud
|
|
1231
1234
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
1232
1235
|
# @type Unit: String
|
1233
1236
|
|
1234
|
-
attr_accessor :TaskMonitorId, :TaskMonitorObjectTypeId, :MetricName, :InstancesIds, :MetricChineseName, :Unit
|
1237
|
+
attr_accessor :TaskMonitorId, :MetricId, :TaskMonitorObjectTypeId, :MetricName, :InstancesIds, :MetricChineseName, :Unit
|
1235
1238
|
|
1236
|
-
def initialize(taskmonitorid=nil, taskmonitorobjecttypeid=nil, metricname=nil, instancesids=nil, metricchinesename=nil, unit=nil)
|
1239
|
+
def initialize(taskmonitorid=nil, metricid=nil, taskmonitorobjecttypeid=nil, metricname=nil, instancesids=nil, metricchinesename=nil, unit=nil)
|
1237
1240
|
@TaskMonitorId = taskmonitorid
|
1241
|
+
@MetricId = metricid
|
1238
1242
|
@TaskMonitorObjectTypeId = taskmonitorobjecttypeid
|
1239
1243
|
@MetricName = metricname
|
1240
1244
|
@InstancesIds = instancesids
|
@@ -1244,6 +1248,7 @@ module TencentCloud
|
|
1244
1248
|
|
1245
1249
|
def deserialize(params)
|
1246
1250
|
@TaskMonitorId = params['TaskMonitorId']
|
1251
|
+
@MetricId = params['MetricId']
|
1247
1252
|
@TaskMonitorObjectTypeId = params['TaskMonitorObjectTypeId']
|
1248
1253
|
@MetricName = params['MetricName']
|
1249
1254
|
@InstancesIds = params['InstancesIds']
|
@@ -1578,8 +1583,11 @@ module TencentCloud
|
|
1578
1583
|
|
1579
1584
|
# 监控指标
|
1580
1585
|
class TemplateMonitor < TencentCloud::Common::AbstractModel
|
1581
|
-
# @param MonitorId:
|
1586
|
+
# @param MonitorId: pk
|
1582
1587
|
# @type MonitorId: Integer
|
1588
|
+
# @param MetricId: 监控指标ID
|
1589
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1590
|
+
# @type MetricId: Integer
|
1583
1591
|
# @param ObjectTypeId: 监控指标对象类型ID
|
1584
1592
|
# @type ObjectTypeId: Integer
|
1585
1593
|
# @param MetricName: 指标名称
|
@@ -1588,10 +1596,11 @@ module TencentCloud
|
|
1588
1596
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
1589
1597
|
# @type MetricChineseName: String
|
1590
1598
|
|
1591
|
-
attr_accessor :MonitorId, :ObjectTypeId, :MetricName, :MetricChineseName
|
1599
|
+
attr_accessor :MonitorId, :MetricId, :ObjectTypeId, :MetricName, :MetricChineseName
|
1592
1600
|
|
1593
|
-
def initialize(monitorid=nil, objecttypeid=nil, metricname=nil, metricchinesename=nil)
|
1601
|
+
def initialize(monitorid=nil, metricid=nil, objecttypeid=nil, metricname=nil, metricchinesename=nil)
|
1594
1602
|
@MonitorId = monitorid
|
1603
|
+
@MetricId = metricid
|
1595
1604
|
@ObjectTypeId = objecttypeid
|
1596
1605
|
@MetricName = metricname
|
1597
1606
|
@MetricChineseName = metricchinesename
|
@@ -1599,6 +1608,7 @@ module TencentCloud
|
|
1599
1608
|
|
1600
1609
|
def deserialize(params)
|
1601
1610
|
@MonitorId = params['MonitorId']
|
1611
|
+
@MetricId = params['MetricId']
|
1602
1612
|
@ObjectTypeId = params['ObjectTypeId']
|
1603
1613
|
@MetricName = params['MetricName']
|
1604
1614
|
@MetricChineseName = params['MetricChineseName']
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tencentcloud-sdk-cfg
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.0.
|
4
|
+
version: 3.0.642
|
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-08-
|
11
|
+
date: 2023-08-23 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|
@@ -33,8 +33,8 @@ executables: []
|
|
33
33
|
extensions: []
|
34
34
|
extra_rdoc_files: []
|
35
35
|
files:
|
36
|
-
- lib/v20210820/models.rb
|
37
36
|
- lib/v20210820/client.rb
|
37
|
+
- lib/v20210820/models.rb
|
38
38
|
- lib/tencentcloud-sdk-cfg.rb
|
39
39
|
- lib/VERSION
|
40
40
|
homepage: https://github.com/TencentCloud/tencentcloud-sdk-ruby
|