tencentcloud-sdk-acp 3.0.390 → 3.0.394

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/v20220105/models.rb +20 -11
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 90563ef2fdf3fe40761ccc9066007036a13843f6
4
- data.tar.gz: 75ae5ebe94837a12ca5ab1567ae621be294741cc
3
+ metadata.gz: 2777e4ddec07c5a507aed2ebfc39ba99fd44a463
4
+ data.tar.gz: 519fe2eaf1101cc71d803a1a1d382b33995edc50
5
5
  SHA512:
6
- metadata.gz: 635eb892288a860bada9fc6616b7f31674bb9df2b056a5110014c9b9a1cf90db11ea13d5c34fe68d33d92df72ca6cdb3dcfca2534e33d12f05e4a26a94a4a35e
7
- data.tar.gz: ab72fbd446dc85ea36c9d6cf8cbaa8207a83b75edb39f9d1e9b53340d9916fbbd1e73e265fe8431f70f4aeea5ba1aa52679d0757bcddc7f886cddc40cdf2efc0
6
+ metadata.gz: 486fe0aedce96fae2649ede3e1eef3a65e89d4848e2b83d21ab3853dd3e0a0ec24f2476f30143412a09b71f709b14ebff82e9db8143ecb23991081fe6ae79f26
7
+ data.tar.gz: 0d9765892c8c9148ae8af72ef22678d0a0f5c211ef545ef8d6d3c6d579dd2900bf796e710af5bdbf946eb3c1a6af1648c7433dbffdb741d77da79722f201bfe2
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.390
1
+ 3.0.394
@@ -142,7 +142,7 @@ module TencentCloud
142
142
 
143
143
  # CreateAppScanTaskRepeat请求参数结构体
144
144
  class CreateAppScanTaskRepeatRequest < TencentCloud::Common::AbstractModel
145
- # @param Source: 任务来源, 0:小程序诊断, 1:预留字段(暂未使用), 2:app诊断(android);
145
+ # @param Source: 任务来源, 0:小程序诊断, 1:预留字段(暂未使用), 2:app诊断(android), 3:app漏洞扫描;
146
146
  # @type Source: Integer
147
147
  # @param Platform: 应用平台, 0:android, 1:ios, 2:小程序
148
148
  # @type Platform: Integer
@@ -220,7 +220,7 @@ module TencentCloud
220
220
  class CreateAppScanTaskRequest < TencentCloud::Common::AbstractModel
221
221
  # @param TaskType: 任务类型, 0:基础版, 1:专家版, 2:本地化
222
222
  # @type TaskType: Integer
223
- # @param Source: 任务来源, 0:小程序诊断, 1:预留字段(暂未使用), 2:app诊断(android);
223
+ # @param Source: 任务来源, 0:小程序诊断, 1:预留字段(暂未使用), 2:app诊断(android), 3:app漏洞扫描;
224
224
  # @type Source: Integer
225
225
  # @param Platform: 应用平台, 0:android, 1:ios, 2:小程序
226
226
  # @type Platform: Integer
@@ -323,7 +323,7 @@ module TencentCloud
323
323
 
324
324
  # DescribeFileTicket请求参数结构体
325
325
  class DescribeFileTicketRequest < TencentCloud::Common::AbstractModel
326
- # @param Source: 任务来源, 0:小程序诊断, 1:预留字段(暂未使用), 2:app诊断(android);
326
+ # @param Source: 任务来源, 0:小程序诊断, 1:预留字段(暂未使用), 2:app诊断(android), 3:app漏洞扫描;
327
327
  # @type Source: Integer
328
328
  # @param Platform: 应用平台, 0:android, 1:ios, 2:小程序
329
329
  # @type Platform: Integer
@@ -377,25 +377,29 @@ module TencentCloud
377
377
 
378
378
  # DescribeResourceUsageInfo请求参数结构体
379
379
  class DescribeResourceUsageInfoRequest < TencentCloud::Common::AbstractModel
380
- # @param PriceName: 资源计费项名称(为空时,则根据TaskType和Platform进行查询)
380
+ # @param PriceName: 资源计费项名称(为空时,则根据Source,TaskType和Platform进行查询)
381
381
  # @type PriceName: String
382
382
  # @param TaskType: 任务类型, 0:基础版, 1:专家版
383
383
  # @type TaskType: Integer
384
384
  # @param Platform: 应用平台, 0:android
385
385
  # @type Platform: Integer
386
+ # @param Source: 任务来源, 0:小程序诊断, 1:预留字段(暂未使用), 2:app诊断(android), 3:app漏洞扫描;
387
+ # @type Source: Integer
386
388
 
387
- attr_accessor :PriceName, :TaskType, :Platform
389
+ attr_accessor :PriceName, :TaskType, :Platform, :Source
388
390
 
389
- def initialize(pricename=nil, tasktype=nil, platform=nil)
391
+ def initialize(pricename=nil, tasktype=nil, platform=nil, source=nil)
390
392
  @PriceName = pricename
391
393
  @TaskType = tasktype
392
394
  @Platform = platform
395
+ @Source = source
393
396
  end
394
397
 
395
398
  def deserialize(params)
396
399
  @PriceName = params['PriceName']
397
400
  @TaskType = params['TaskType']
398
401
  @Platform = params['Platform']
402
+ @Source = params['Source']
399
403
  end
400
404
  end
401
405
 
@@ -428,7 +432,7 @@ module TencentCloud
428
432
 
429
433
  # DescribeScanTaskList请求参数结构体
430
434
  class DescribeScanTaskListRequest < TencentCloud::Common::AbstractModel
431
- # @param Source: 任务来源, -1:所有, 0:小程序诊断, 1:预留字段(暂未使用), 2:app诊断(android);
435
+ # @param Source: 任务来源, -1:所有, 0:小程序诊断, 1:预留字段(暂未使用), 2:app诊断(android), 3:app漏洞扫描;
432
436
  # @type Source: Integer
433
437
  # @param Platform: 应用平台, 0:android, 1:ios, 2:小程序
434
438
  # @type Platform: Integer
@@ -512,7 +516,7 @@ module TencentCloud
512
516
 
513
517
  # DescribeScanTaskReportUrl请求参数结构体
514
518
  class DescribeScanTaskReportUrlRequest < TencentCloud::Common::AbstractModel
515
- # @param Source: 任务来源, 0:小程序诊断, 1:预留字段(暂未使用), 2:app诊断(android);
519
+ # @param Source: 任务来源, 0:小程序诊断, 1:预留字段(暂未使用), 2:app诊断(android), 3:app漏洞扫描;
516
520
  # @type Source: Integer
517
521
  # @param Platform: 应用平台, 0:android, 1:ios, 2:小程序
518
522
  # @type Platform: Integer
@@ -552,15 +556,19 @@ module TencentCloud
552
556
  # @param ReportTitle: 诊断报告/堆栈/报告json结果的名称
553
557
  # 注意:此字段可能返回 null,表示取不到有效值。
554
558
  # @type ReportTitle: String
559
+ # @param ReportResult: 诊断json结果内容
560
+ # 注意:此字段可能返回 null,表示取不到有效值。
561
+ # @type ReportResult: String
555
562
  # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
556
563
  # @type RequestId: String
557
564
 
558
- attr_accessor :Result, :ReportUrl, :ReportTitle, :RequestId
565
+ attr_accessor :Result, :ReportUrl, :ReportTitle, :ReportResult, :RequestId
559
566
 
560
- def initialize(result=nil, reporturl=nil, reporttitle=nil, requestid=nil)
567
+ def initialize(result=nil, reporturl=nil, reporttitle=nil, reportresult=nil, requestid=nil)
561
568
  @Result = result
562
569
  @ReportUrl = reporturl
563
570
  @ReportTitle = reporttitle
571
+ @ReportResult = reportresult
564
572
  @RequestId = requestid
565
573
  end
566
574
 
@@ -568,13 +576,14 @@ module TencentCloud
568
576
  @Result = params['Result']
569
577
  @ReportUrl = params['ReportUrl']
570
578
  @ReportTitle = params['ReportTitle']
579
+ @ReportResult = params['ReportResult']
571
580
  @RequestId = params['RequestId']
572
581
  end
573
582
  end
574
583
 
575
584
  # DescribeScanTaskStatus请求参数结构体
576
585
  class DescribeScanTaskStatusRequest < TencentCloud::Common::AbstractModel
577
- # @param Source: 任务来源, 0:小程序诊断, 1:预留字段(暂未使用), 2:app诊断(android);
586
+ # @param Source: 任务来源, 0:小程序诊断, 1:预留字段(暂未使用), 2:app诊断(android), 3:app漏洞扫描;
578
587
  # @type Source: Integer
579
588
  # @param Platform: 应用平台, 0:android, 1:ios, 2:小程序
580
589
  # @type Platform: Integer
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-acp
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.390
4
+ version: 3.0.394
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tencent Cloud
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-08-18 00:00:00.000000000 Z
11
+ date: 2022-08-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common