tencentcloud-sdk-cfg 3.0.601 → 3.0.602
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 +31 -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: 479063b5cb341a6140a4a367a5c992d76b92beae
|
4
|
+
data.tar.gz: ec4e4035f09cf578363fca71d6517c778549cd02
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e23345241fc323bd28de38c33586610edaa1bdf633211cb9649316502639b7d0bc72fd2e64e263f14c0e8722957aa7a4c7697e06ee5b2a80198ac61395047e7e
|
7
|
+
data.tar.gz: 0267f2021dba0715f10458e7bd0afc99c93de04b2cd1654814e4eb41774e83d9c020fc6a56b22c50de7aa6b1556063103dbbe1dfc7ffb21c8776dc7bce60c7e8
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.602
|
data/lib/v20210820/models.rb
CHANGED
@@ -308,16 +308,22 @@ module TencentCloud
|
|
308
308
|
# @type IsUsed: Integer
|
309
309
|
# @param Tags: 标签对
|
310
310
|
# @type Tags: Array
|
311
|
+
# @param TemplateSource: 经验来源 0-自建 1-专家推荐
|
312
|
+
# @type TemplateSource: Integer
|
313
|
+
# @param TemplateIdList: 经验ID
|
314
|
+
# @type TemplateIdList: Array
|
311
315
|
|
312
|
-
attr_accessor :Limit, :Offset, :Title, :Tag, :IsUsed, :Tags
|
316
|
+
attr_accessor :Limit, :Offset, :Title, :Tag, :IsUsed, :Tags, :TemplateSource, :TemplateIdList
|
313
317
|
|
314
|
-
def initialize(limit=nil, offset=nil, title=nil, tag=nil, isused=nil, tags=nil)
|
318
|
+
def initialize(limit=nil, offset=nil, title=nil, tag=nil, isused=nil, tags=nil, templatesource=nil, templateidlist=nil)
|
315
319
|
@Limit = limit
|
316
320
|
@Offset = offset
|
317
321
|
@Title = title
|
318
322
|
@Tag = tag
|
319
323
|
@IsUsed = isused
|
320
324
|
@Tags = tags
|
325
|
+
@TemplateSource = templatesource
|
326
|
+
@TemplateIdList = templateidlist
|
321
327
|
end
|
322
328
|
|
323
329
|
def deserialize(params)
|
@@ -334,6 +340,8 @@ module TencentCloud
|
|
334
340
|
@Tags << tagwithdescribe_tmp
|
335
341
|
end
|
336
342
|
end
|
343
|
+
@TemplateSource = params['TemplateSource']
|
344
|
+
@TemplateIdList = params['TemplateIdList']
|
337
345
|
end
|
338
346
|
end
|
339
347
|
|
@@ -1131,10 +1139,13 @@ module TencentCloud
|
|
1131
1139
|
# @param TaskPreCheckSuccess: 环境检查是否通过
|
1132
1140
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
1133
1141
|
# @type TaskPreCheckSuccess: Boolean
|
1142
|
+
# @param TaskExpect: 演练是否符合预期 1-符合预期 2-不符合预期
|
1143
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1144
|
+
# @type TaskExpect: Integer
|
1134
1145
|
|
1135
|
-
attr_accessor :TaskId, :TaskTitle, :TaskDescription, :TaskTag, :TaskStatus, :TaskCreateTime, :TaskUpdateTime, :TaskPreCheckStatus, :TaskPreCheckSuccess
|
1146
|
+
attr_accessor :TaskId, :TaskTitle, :TaskDescription, :TaskTag, :TaskStatus, :TaskCreateTime, :TaskUpdateTime, :TaskPreCheckStatus, :TaskPreCheckSuccess, :TaskExpect
|
1136
1147
|
|
1137
|
-
def initialize(taskid=nil, tasktitle=nil, taskdescription=nil, tasktag=nil, taskstatus=nil, taskcreatetime=nil, taskupdatetime=nil, taskprecheckstatus=nil, taskprechecksuccess=nil)
|
1148
|
+
def initialize(taskid=nil, tasktitle=nil, taskdescription=nil, tasktag=nil, taskstatus=nil, taskcreatetime=nil, taskupdatetime=nil, taskprecheckstatus=nil, taskprechecksuccess=nil, taskexpect=nil)
|
1138
1149
|
@TaskId = taskid
|
1139
1150
|
@TaskTitle = tasktitle
|
1140
1151
|
@TaskDescription = taskdescription
|
@@ -1144,6 +1155,7 @@ module TencentCloud
|
|
1144
1155
|
@TaskUpdateTime = taskupdatetime
|
1145
1156
|
@TaskPreCheckStatus = taskprecheckstatus
|
1146
1157
|
@TaskPreCheckSuccess = taskprechecksuccess
|
1158
|
+
@TaskExpect = taskexpect
|
1147
1159
|
end
|
1148
1160
|
|
1149
1161
|
def deserialize(params)
|
@@ -1156,6 +1168,7 @@ module TencentCloud
|
|
1156
1168
|
@TaskUpdateTime = params['TaskUpdateTime']
|
1157
1169
|
@TaskPreCheckStatus = params['TaskPreCheckStatus']
|
1158
1170
|
@TaskPreCheckSuccess = params['TaskPreCheckSuccess']
|
1171
|
+
@TaskExpect = params['TaskExpect']
|
1159
1172
|
end
|
1160
1173
|
end
|
1161
1174
|
|
@@ -1270,10 +1283,13 @@ module TencentCloud
|
|
1270
1283
|
# @param Tags: 标签列表
|
1271
1284
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
1272
1285
|
# @type Tags: Array
|
1286
|
+
# @param TemplateSource: 经验来源 0-自建 1-专家推荐
|
1287
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1288
|
+
# @type TemplateSource: Integer
|
1273
1289
|
|
1274
|
-
attr_accessor :TemplateId, :TemplateTitle, :TemplateDescription, :TemplateTag, :TemplateIsUsed, :TemplateCreateTime, :TemplateUpdateTime, :TemplateMode, :TemplatePauseDuration, :TemplateOwnerUin, :TemplateRegionId, :TemplateGroups, :TemplateMonitors, :TemplatePolicy, :Tags
|
1290
|
+
attr_accessor :TemplateId, :TemplateTitle, :TemplateDescription, :TemplateTag, :TemplateIsUsed, :TemplateCreateTime, :TemplateUpdateTime, :TemplateMode, :TemplatePauseDuration, :TemplateOwnerUin, :TemplateRegionId, :TemplateGroups, :TemplateMonitors, :TemplatePolicy, :Tags, :TemplateSource
|
1275
1291
|
|
1276
|
-
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)
|
1292
|
+
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)
|
1277
1293
|
@TemplateId = templateid
|
1278
1294
|
@TemplateTitle = templatetitle
|
1279
1295
|
@TemplateDescription = templatedescription
|
@@ -1289,6 +1305,7 @@ module TencentCloud
|
|
1289
1305
|
@TemplateMonitors = templatemonitors
|
1290
1306
|
@TemplatePolicy = templatepolicy
|
1291
1307
|
@Tags = tags
|
1308
|
+
@TemplateSource = templatesource
|
1292
1309
|
end
|
1293
1310
|
|
1294
1311
|
def deserialize(params)
|
@@ -1331,6 +1348,7 @@ module TencentCloud
|
|
1331
1348
|
@Tags << tagwithdescribe_tmp
|
1332
1349
|
end
|
1333
1350
|
end
|
1351
|
+
@TemplateSource = params['TemplateSource']
|
1334
1352
|
end
|
1335
1353
|
end
|
1336
1354
|
|
@@ -1485,10 +1503,13 @@ module TencentCloud
|
|
1485
1503
|
# @type TemplateUpdateTime: String
|
1486
1504
|
# @param TemplateUsedNum: 经验库关联的任务数量
|
1487
1505
|
# @type TemplateUsedNum: Integer
|
1506
|
+
# @param TemplateSource: 经验库来源 0-自建经验 1-专家推荐
|
1507
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1508
|
+
# @type TemplateSource: Integer
|
1488
1509
|
|
1489
|
-
attr_accessor :TemplateId, :TemplateTitle, :TemplateDescription, :TemplateTag, :TemplateIsUsed, :TemplateCreateTime, :TemplateUpdateTime, :TemplateUsedNum
|
1510
|
+
attr_accessor :TemplateId, :TemplateTitle, :TemplateDescription, :TemplateTag, :TemplateIsUsed, :TemplateCreateTime, :TemplateUpdateTime, :TemplateUsedNum, :TemplateSource
|
1490
1511
|
|
1491
|
-
def initialize(templateid=nil, templatetitle=nil, templatedescription=nil, templatetag=nil, templateisused=nil, templatecreatetime=nil, templateupdatetime=nil, templateusednum=nil)
|
1512
|
+
def initialize(templateid=nil, templatetitle=nil, templatedescription=nil, templatetag=nil, templateisused=nil, templatecreatetime=nil, templateupdatetime=nil, templateusednum=nil, templatesource=nil)
|
1492
1513
|
@TemplateId = templateid
|
1493
1514
|
@TemplateTitle = templatetitle
|
1494
1515
|
@TemplateDescription = templatedescription
|
@@ -1497,6 +1518,7 @@ module TencentCloud
|
|
1497
1518
|
@TemplateCreateTime = templatecreatetime
|
1498
1519
|
@TemplateUpdateTime = templateupdatetime
|
1499
1520
|
@TemplateUsedNum = templateusednum
|
1521
|
+
@TemplateSource = templatesource
|
1500
1522
|
end
|
1501
1523
|
|
1502
1524
|
def deserialize(params)
|
@@ -1508,6 +1530,7 @@ module TencentCloud
|
|
1508
1530
|
@TemplateCreateTime = params['TemplateCreateTime']
|
1509
1531
|
@TemplateUpdateTime = params['TemplateUpdateTime']
|
1510
1532
|
@TemplateUsedNum = params['TemplateUsedNum']
|
1533
|
+
@TemplateSource = params['TemplateSource']
|
1511
1534
|
end
|
1512
1535
|
end
|
1513
1536
|
|
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.602
|
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-06-
|
11
|
+
date: 2023-06-29 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|