tencentcloud-sdk-cfg 3.0.601 → 3.0.603

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/lib/VERSION +1 -1
  3. data/lib/v20210820/models.rb +31 -8
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 1eceb5904ad12c1c9c8a4fcd7b93269747282850
4
- data.tar.gz: 7bbbbf7cb338392b283e51b7a9d1e29ce1609332
3
+ metadata.gz: 6de3a7be0ed48992109fe0ec1a1d8d1465ecc995
4
+ data.tar.gz: 7e1aa8919578ebc9d6db974385ff8d4e61efa5d2
5
5
  SHA512:
6
- metadata.gz: d3cb67dd6a842984fb232c532378ada4bc7b6ff79b3d156b05273a643ffe405e18adad58639bed3d5c1b85239964280a382c0b425742cfb6411d75544468ddcc
7
- data.tar.gz: 26141f47e3b5f2aef4af4372b541c4f343e9075141e342bf2f92450781a2ed3e703dfc7d50d519590d2b8ae605137310e19195ff640ab5515b5fc186d2c83c7b
6
+ metadata.gz: f7f64b37596c383fe4db108a2d33917ff57aa896db2a386e7ffc490526e08b834dcde4d2d2e4c968fe674124ebd6e65049cefe944247fc51a4a5ad81b5d914ff
7
+ data.tar.gz: 4b475adc252be06ab8f91e75721834b505a51f28b25681a0ed45834833316293098f18bccc378d1cb339dcf9a3b9e7ea7be1d35644dc2c8751afdeb8a1343d09
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.601
1
+ 3.0.603
@@ -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.601
4
+ version: 3.0.603
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-28 00:00:00.000000000 Z
11
+ date: 2023-06-30 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common