tencentcloud-sdk-cfg 3.0.619 → 3.0.620

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/v20210820/models.rb +46 -4
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: ad7ad3d504b3ad0572f1e63b6d3c85acbcda39fe
4
- data.tar.gz: bbbb2177c2a91d67b1567bbec165fa65ce69443a
3
+ metadata.gz: b2fdeb71f1700483a506333ebccdcd35a1292255
4
+ data.tar.gz: 020e13d330ed82847ab0e73c4795c36b2885f35b
5
5
  SHA512:
6
- metadata.gz: 66106c9ff8013aa156445c2cd5da8c1b91d10b1037d7edce6e8bc34bbb64751333a858bdad03a5ddeb1be039962ec3d6f2edea05b42e46166f9f82dc4dc25195
7
- data.tar.gz: ad06ae6c5c122cd106b36a3c08d919783aaa59494877996cb6a600ecf88e8ee09c2c2a27cfc6a173234a58b452fe5f3324c2801151bb0129d08a84965f9a1a38
6
+ metadata.gz: 4bf4229de28bc7ad0f95b91aaff0ced5d18a5a5a0080d01ff1b25be614d2c762296218d81bf0ce50ebf58b37d2861ef8afcb950b72740b1383d3fecf9497e5d9
7
+ data.tar.gz: f272ebcaa67a4925e8074b0fc8e141f826af1da7e542f7c115dd6728f6461b05c2fccbcd29412237ab0f4e120599e6b5f81070df0bef155d5dce5981867930fc
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.619
1
+ 3.0.620
@@ -17,6 +17,26 @@
17
17
  module TencentCloud
18
18
  module Cfg
19
19
  module V20210820
20
+ # 动作库筛选栏位
21
+ class ActionFilter < TencentCloud::Common::AbstractModel
22
+ # @param Keyword: 关键字
23
+ # @type Keyword: String
24
+ # @param Values: 搜索内容值
25
+ # @type Values: Array
26
+
27
+ attr_accessor :Keyword, :Values
28
+
29
+ def initialize(keyword=nil, values=nil)
30
+ @Keyword = keyword
31
+ @Values = values
32
+ end
33
+
34
+ def deserialize(params)
35
+ @Keyword = params['Keyword']
36
+ @Values = params['Values']
37
+ end
38
+ end
39
+
20
40
  # CreateTaskFromTemplate请求参数结构体
21
41
  class CreateTaskFromTemplateRequest < TencentCloud::Common::AbstractModel
22
42
  # @param TemplateId: 从经验库中查询到的经验模板ID
@@ -183,10 +203,12 @@ module TencentCloud
183
203
  # @type TaskEndTime: String
184
204
  # @param Tags: 标签对
185
205
  # @type Tags: Array
206
+ # @param Filters: 筛选条件
207
+ # @type Filters: Array
186
208
 
187
- attr_accessor :Limit, :Offset, :TaskTitle, :TaskTag, :TaskStatus, :TaskStartTime, :TaskEndTime, :Tags
209
+ attr_accessor :Limit, :Offset, :TaskTitle, :TaskTag, :TaskStatus, :TaskStartTime, :TaskEndTime, :Tags, :Filters
188
210
 
189
- def initialize(limit=nil, offset=nil, tasktitle=nil, tasktag=nil, taskstatus=nil, taskstarttime=nil, taskendtime=nil, tags=nil)
211
+ def initialize(limit=nil, offset=nil, tasktitle=nil, tasktag=nil, taskstatus=nil, taskstarttime=nil, taskendtime=nil, tags=nil, filters=nil)
190
212
  @Limit = limit
191
213
  @Offset = offset
192
214
  @TaskTitle = tasktitle
@@ -195,6 +217,7 @@ module TencentCloud
195
217
  @TaskStartTime = taskstarttime
196
218
  @TaskEndTime = taskendtime
197
219
  @Tags = tags
220
+ @Filters = filters
198
221
  end
199
222
 
200
223
  def deserialize(params)
@@ -213,6 +236,14 @@ module TencentCloud
213
236
  @Tags << tagwithdescribe_tmp
214
237
  end
215
238
  end
239
+ unless params['Filters'].nil?
240
+ @Filters = []
241
+ params['Filters'].each do |i|
242
+ actionfilter_tmp = ActionFilter.new
243
+ actionfilter_tmp.deserialize(i)
244
+ @Filters << actionfilter_tmp
245
+ end
246
+ end
216
247
  end
217
248
  end
218
249
 
@@ -312,10 +343,12 @@ module TencentCloud
312
343
  # @type TemplateSource: Integer
313
344
  # @param TemplateIdList: 经验ID
314
345
  # @type TemplateIdList: Array
346
+ # @param Filters: 过滤参数
347
+ # @type Filters: Array
315
348
 
316
- attr_accessor :Limit, :Offset, :Title, :Tag, :IsUsed, :Tags, :TemplateSource, :TemplateIdList
349
+ attr_accessor :Limit, :Offset, :Title, :Tag, :IsUsed, :Tags, :TemplateSource, :TemplateIdList, :Filters
317
350
 
318
- def initialize(limit=nil, offset=nil, title=nil, tag=nil, isused=nil, tags=nil, templatesource=nil, templateidlist=nil)
351
+ def initialize(limit=nil, offset=nil, title=nil, tag=nil, isused=nil, tags=nil, templatesource=nil, templateidlist=nil, filters=nil)
319
352
  @Limit = limit
320
353
  @Offset = offset
321
354
  @Title = title
@@ -324,6 +357,7 @@ module TencentCloud
324
357
  @Tags = tags
325
358
  @TemplateSource = templatesource
326
359
  @TemplateIdList = templateidlist
360
+ @Filters = filters
327
361
  end
328
362
 
329
363
  def deserialize(params)
@@ -342,6 +376,14 @@ module TencentCloud
342
376
  end
343
377
  @TemplateSource = params['TemplateSource']
344
378
  @TemplateIdList = params['TemplateIdList']
379
+ unless params['Filters'].nil?
380
+ @Filters = []
381
+ params['Filters'].each do |i|
382
+ actionfilter_tmp = ActionFilter.new
383
+ actionfilter_tmp.deserialize(i)
384
+ @Filters << actionfilter_tmp
385
+ end
386
+ end
345
387
  end
346
388
  end
347
389
 
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.619
4
+ version: 3.0.620
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-07-24 00:00:00.000000000 Z
11
+ date: 2023-07-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common