tencentcloud-sdk-cfg 3.0.671 → 3.0.673
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 +101 -8
- 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: a37a77dff6c020e90659bb33d70205edc9122671
|
4
|
+
data.tar.gz: d5edf9f2b47c42e50878649fad6511a345679b99
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2b5fbb268e673b7fbd0ef2c645e6518c48683c463111e78b4c370f695380191db7d304a1da1da1c335795819af0ed7e177c73f028fda79860d187d91a0bdc20a
|
7
|
+
data.tar.gz: 62515924b78705af8b55d82cd3f6f97e190a5b9cbef26b4ca9c9dc64288938d7a90922635600d3fd337e656e10713a745c7646ff4265d0aa7d075783f65fdaf2
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.673
|
data/lib/v20210820/models.rb
CHANGED
@@ -37,6 +37,33 @@ module TencentCloud
|
|
37
37
|
end
|
38
38
|
end
|
39
39
|
|
40
|
+
# 应用性能观测产品中应用信息
|
41
|
+
class ApmServiceInfo < TencentCloud::Common::AbstractModel
|
42
|
+
# @param InstanceId: 业务ID
|
43
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
44
|
+
# @type InstanceId: String
|
45
|
+
# @param ServiceNameList: 应用名称
|
46
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
47
|
+
# @type ServiceNameList: Array
|
48
|
+
# @param RegionId: 地域ID
|
49
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
50
|
+
# @type RegionId: Integer
|
51
|
+
|
52
|
+
attr_accessor :InstanceId, :ServiceNameList, :RegionId
|
53
|
+
|
54
|
+
def initialize(instanceid=nil, servicenamelist=nil, regionid=nil)
|
55
|
+
@InstanceId = instanceid
|
56
|
+
@ServiceNameList = servicenamelist
|
57
|
+
@RegionId = regionid
|
58
|
+
end
|
59
|
+
|
60
|
+
def deserialize(params)
|
61
|
+
@InstanceId = params['InstanceId']
|
62
|
+
@ServiceNameList = params['ServiceNameList']
|
63
|
+
@RegionId = params['RegionId']
|
64
|
+
end
|
65
|
+
end
|
66
|
+
|
40
67
|
# CreateTaskFromTemplate请求参数结构体
|
41
68
|
class CreateTaskFromTemplateRequest < TencentCloud::Common::AbstractModel
|
42
69
|
# @param TemplateId: 从经验库中查询到的经验模板ID
|
@@ -205,10 +232,16 @@ module TencentCloud
|
|
205
232
|
# @type Tags: Array
|
206
233
|
# @param Filters: 筛选条件
|
207
234
|
# @type Filters: Array
|
235
|
+
# @param TaskId: 演练ID
|
236
|
+
# @type TaskId: Array
|
237
|
+
# @param ApplicationId: 关联应用ID筛选
|
238
|
+
# @type ApplicationId: Array
|
239
|
+
# @param ApplicationName: 关联应用筛选
|
240
|
+
# @type ApplicationName: Array
|
208
241
|
|
209
|
-
attr_accessor :Limit, :Offset, :TaskTitle, :TaskTag, :TaskStatus, :TaskStartTime, :TaskEndTime, :Tags, :Filters
|
242
|
+
attr_accessor :Limit, :Offset, :TaskTitle, :TaskTag, :TaskStatus, :TaskStartTime, :TaskEndTime, :Tags, :Filters, :TaskId, :ApplicationId, :ApplicationName
|
210
243
|
|
211
|
-
def initialize(limit=nil, offset=nil, tasktitle=nil, tasktag=nil, taskstatus=nil, taskstarttime=nil, taskendtime=nil, tags=nil, filters=nil)
|
244
|
+
def initialize(limit=nil, offset=nil, tasktitle=nil, tasktag=nil, taskstatus=nil, taskstarttime=nil, taskendtime=nil, tags=nil, filters=nil, taskid=nil, applicationid=nil, applicationname=nil)
|
212
245
|
@Limit = limit
|
213
246
|
@Offset = offset
|
214
247
|
@TaskTitle = tasktitle
|
@@ -218,6 +251,9 @@ module TencentCloud
|
|
218
251
|
@TaskEndTime = taskendtime
|
219
252
|
@Tags = tags
|
220
253
|
@Filters = filters
|
254
|
+
@TaskId = taskid
|
255
|
+
@ApplicationId = applicationid
|
256
|
+
@ApplicationName = applicationname
|
221
257
|
end
|
222
258
|
|
223
259
|
def deserialize(params)
|
@@ -244,6 +280,9 @@ module TencentCloud
|
|
244
280
|
@Filters << actionfilter_tmp
|
245
281
|
end
|
246
282
|
end
|
283
|
+
@TaskId = params['TaskId']
|
284
|
+
@ApplicationId = params['ApplicationId']
|
285
|
+
@ApplicationName = params['ApplicationName']
|
247
286
|
end
|
248
287
|
end
|
249
288
|
|
@@ -685,10 +724,22 @@ module TencentCloud
|
|
685
724
|
# @param TaskPlanTitle: 关联的演练计划名称
|
686
725
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
687
726
|
# @type TaskPlanTitle: String
|
727
|
+
# @param ApplicationId: 关联的应用ID
|
728
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
729
|
+
# @type ApplicationId: String
|
730
|
+
# @param ApplicationName: 关联的应用名称
|
731
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
732
|
+
# @type ApplicationName: String
|
733
|
+
# @param AlarmPolicy: 关联的告警指标
|
734
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
735
|
+
# @type AlarmPolicy: Array
|
736
|
+
# @param ApmServiceList: 关联的APM服务
|
737
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
738
|
+
# @type ApmServiceList: Array
|
688
739
|
|
689
|
-
attr_accessor :TaskId, :TaskTitle, :TaskDescription, :TaskTag, :TaskStatus, :TaskStatusType, :TaskProtectStrategy, :TaskCreateTime, :TaskUpdateTime, :TaskGroups, :TaskStartTime, :TaskEndTime, :TaskExpect, :TaskSummary, :TaskMode, :TaskPauseDuration, :TaskOwnerUin, :TaskRegionId, :TaskMonitors, :TaskPolicy, :Tags, :TaskPlanId, :TaskPlanTitle
|
740
|
+
attr_accessor :TaskId, :TaskTitle, :TaskDescription, :TaskTag, :TaskStatus, :TaskStatusType, :TaskProtectStrategy, :TaskCreateTime, :TaskUpdateTime, :TaskGroups, :TaskStartTime, :TaskEndTime, :TaskExpect, :TaskSummary, :TaskMode, :TaskPauseDuration, :TaskOwnerUin, :TaskRegionId, :TaskMonitors, :TaskPolicy, :Tags, :TaskPlanId, :TaskPlanTitle, :ApplicationId, :ApplicationName, :AlarmPolicy, :ApmServiceList
|
690
741
|
|
691
|
-
def initialize(taskid=nil, tasktitle=nil, taskdescription=nil, tasktag=nil, taskstatus=nil, taskstatustype=nil, taskprotectstrategy=nil, taskcreatetime=nil, taskupdatetime=nil, taskgroups=nil, taskstarttime=nil, taskendtime=nil, taskexpect=nil, tasksummary=nil, taskmode=nil, taskpauseduration=nil, taskowneruin=nil, taskregionid=nil, taskmonitors=nil, taskpolicy=nil, tags=nil, taskplanid=nil, taskplantitle=nil)
|
742
|
+
def initialize(taskid=nil, tasktitle=nil, taskdescription=nil, tasktag=nil, taskstatus=nil, taskstatustype=nil, taskprotectstrategy=nil, taskcreatetime=nil, taskupdatetime=nil, taskgroups=nil, taskstarttime=nil, taskendtime=nil, taskexpect=nil, tasksummary=nil, taskmode=nil, taskpauseduration=nil, taskowneruin=nil, taskregionid=nil, taskmonitors=nil, taskpolicy=nil, tags=nil, taskplanid=nil, taskplantitle=nil, applicationid=nil, applicationname=nil, alarmpolicy=nil, apmservicelist=nil)
|
692
743
|
@TaskId = taskid
|
693
744
|
@TaskTitle = tasktitle
|
694
745
|
@TaskDescription = taskdescription
|
@@ -712,6 +763,10 @@ module TencentCloud
|
|
712
763
|
@Tags = tags
|
713
764
|
@TaskPlanId = taskplanid
|
714
765
|
@TaskPlanTitle = taskplantitle
|
766
|
+
@ApplicationId = applicationid
|
767
|
+
@ApplicationName = applicationname
|
768
|
+
@AlarmPolicy = alarmpolicy
|
769
|
+
@ApmServiceList = apmservicelist
|
715
770
|
end
|
716
771
|
|
717
772
|
def deserialize(params)
|
@@ -762,6 +817,17 @@ module TencentCloud
|
|
762
817
|
end
|
763
818
|
@TaskPlanId = params['TaskPlanId']
|
764
819
|
@TaskPlanTitle = params['TaskPlanTitle']
|
820
|
+
@ApplicationId = params['ApplicationId']
|
821
|
+
@ApplicationName = params['ApplicationName']
|
822
|
+
@AlarmPolicy = params['AlarmPolicy']
|
823
|
+
unless params['ApmServiceList'].nil?
|
824
|
+
@ApmServiceList = []
|
825
|
+
params['ApmServiceList'].each do |i|
|
826
|
+
apmserviceinfo_tmp = ApmServiceInfo.new
|
827
|
+
apmserviceinfo_tmp.deserialize(i)
|
828
|
+
@ApmServiceList << apmserviceinfo_tmp
|
829
|
+
end
|
830
|
+
end
|
765
831
|
end
|
766
832
|
end
|
767
833
|
|
@@ -1184,10 +1250,16 @@ module TencentCloud
|
|
1184
1250
|
# @param TaskExpect: 演练是否符合预期 1-符合预期 2-不符合预期
|
1185
1251
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
1186
1252
|
# @type TaskExpect: Integer
|
1253
|
+
# @param ApplicationId: 关联应用ID
|
1254
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1255
|
+
# @type ApplicationId: String
|
1256
|
+
# @param ApplicationName: 关联应用名称
|
1257
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1258
|
+
# @type ApplicationName: String
|
1187
1259
|
|
1188
|
-
attr_accessor :TaskId, :TaskTitle, :TaskDescription, :TaskTag, :TaskStatus, :TaskCreateTime, :TaskUpdateTime, :TaskPreCheckStatus, :TaskPreCheckSuccess, :TaskExpect
|
1260
|
+
attr_accessor :TaskId, :TaskTitle, :TaskDescription, :TaskTag, :TaskStatus, :TaskCreateTime, :TaskUpdateTime, :TaskPreCheckStatus, :TaskPreCheckSuccess, :TaskExpect, :ApplicationId, :ApplicationName
|
1189
1261
|
|
1190
|
-
def initialize(taskid=nil, tasktitle=nil, taskdescription=nil, tasktag=nil, taskstatus=nil, taskcreatetime=nil, taskupdatetime=nil, taskprecheckstatus=nil, taskprechecksuccess=nil, taskexpect=nil)
|
1262
|
+
def initialize(taskid=nil, tasktitle=nil, taskdescription=nil, tasktag=nil, taskstatus=nil, taskcreatetime=nil, taskupdatetime=nil, taskprecheckstatus=nil, taskprechecksuccess=nil, taskexpect=nil, applicationid=nil, applicationname=nil)
|
1191
1263
|
@TaskId = taskid
|
1192
1264
|
@TaskTitle = tasktitle
|
1193
1265
|
@TaskDescription = taskdescription
|
@@ -1198,6 +1270,8 @@ module TencentCloud
|
|
1198
1270
|
@TaskPreCheckStatus = taskprecheckstatus
|
1199
1271
|
@TaskPreCheckSuccess = taskprechecksuccess
|
1200
1272
|
@TaskExpect = taskexpect
|
1273
|
+
@ApplicationId = applicationid
|
1274
|
+
@ApplicationName = applicationname
|
1201
1275
|
end
|
1202
1276
|
|
1203
1277
|
def deserialize(params)
|
@@ -1211,6 +1285,8 @@ module TencentCloud
|
|
1211
1285
|
@TaskPreCheckStatus = params['TaskPreCheckStatus']
|
1212
1286
|
@TaskPreCheckSuccess = params['TaskPreCheckSuccess']
|
1213
1287
|
@TaskExpect = params['TaskExpect']
|
1288
|
+
@ApplicationId = params['ApplicationId']
|
1289
|
+
@ApplicationName = params['ApplicationName']
|
1214
1290
|
end
|
1215
1291
|
end
|
1216
1292
|
|
@@ -1333,10 +1409,16 @@ module TencentCloud
|
|
1333
1409
|
# @param TemplateSource: 经验来源 0-自建 1-专家推荐
|
1334
1410
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
1335
1411
|
# @type TemplateSource: Integer
|
1412
|
+
# @param ApmServiceList: apm应用信息
|
1413
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1414
|
+
# @type ApmServiceList: Array
|
1415
|
+
# @param AlarmPolicy: 告警指标
|
1416
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1417
|
+
# @type AlarmPolicy: Array
|
1336
1418
|
|
1337
|
-
attr_accessor :TemplateId, :TemplateTitle, :TemplateDescription, :TemplateTag, :TemplateIsUsed, :TemplateCreateTime, :TemplateUpdateTime, :TemplateMode, :TemplatePauseDuration, :TemplateOwnerUin, :TemplateRegionId, :TemplateGroups, :TemplateMonitors, :TemplatePolicy, :Tags, :TemplateSource
|
1419
|
+
attr_accessor :TemplateId, :TemplateTitle, :TemplateDescription, :TemplateTag, :TemplateIsUsed, :TemplateCreateTime, :TemplateUpdateTime, :TemplateMode, :TemplatePauseDuration, :TemplateOwnerUin, :TemplateRegionId, :TemplateGroups, :TemplateMonitors, :TemplatePolicy, :Tags, :TemplateSource, :ApmServiceList, :AlarmPolicy
|
1338
1420
|
|
1339
|
-
def initialize(templateid=nil, templatetitle=nil, templatedescription=nil, templatetag=nil, templateisused=nil, templatecreatetime=nil, templateupdatetime=nil, templatemode=nil, templatepauseduration=nil, templateowneruin=nil, templateregionid=nil, templategroups=nil, templatemonitors=nil, templatepolicy=nil, tags=nil, templatesource=nil)
|
1421
|
+
def initialize(templateid=nil, templatetitle=nil, templatedescription=nil, templatetag=nil, templateisused=nil, templatecreatetime=nil, templateupdatetime=nil, templatemode=nil, templatepauseduration=nil, templateowneruin=nil, templateregionid=nil, templategroups=nil, templatemonitors=nil, templatepolicy=nil, tags=nil, templatesource=nil, apmservicelist=nil, alarmpolicy=nil)
|
1340
1422
|
@TemplateId = templateid
|
1341
1423
|
@TemplateTitle = templatetitle
|
1342
1424
|
@TemplateDescription = templatedescription
|
@@ -1353,6 +1435,8 @@ module TencentCloud
|
|
1353
1435
|
@TemplatePolicy = templatepolicy
|
1354
1436
|
@Tags = tags
|
1355
1437
|
@TemplateSource = templatesource
|
1438
|
+
@ApmServiceList = apmservicelist
|
1439
|
+
@AlarmPolicy = alarmpolicy
|
1356
1440
|
end
|
1357
1441
|
|
1358
1442
|
def deserialize(params)
|
@@ -1396,6 +1480,15 @@ module TencentCloud
|
|
1396
1480
|
end
|
1397
1481
|
end
|
1398
1482
|
@TemplateSource = params['TemplateSource']
|
1483
|
+
unless params['ApmServiceList'].nil?
|
1484
|
+
@ApmServiceList = []
|
1485
|
+
params['ApmServiceList'].each do |i|
|
1486
|
+
apmserviceinfo_tmp = ApmServiceInfo.new
|
1487
|
+
apmserviceinfo_tmp.deserialize(i)
|
1488
|
+
@ApmServiceList << apmserviceinfo_tmp
|
1489
|
+
end
|
1490
|
+
end
|
1491
|
+
@AlarmPolicy = params['AlarmPolicy']
|
1399
1492
|
end
|
1400
1493
|
end
|
1401
1494
|
|
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.673
|
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-10-
|
11
|
+
date: 2023-10-10 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|