tencentcloud-sdk-acp 3.0.391 → 3.0.393

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/v20220105/models.rb +20 -11
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 23415a4c38763d08c3204813c2b7890e3a1ec61d
4
- data.tar.gz: 57cc96c0fa373670d31194922643fcc1c740c514
3
+ metadata.gz: 15bdea0706369e5c8ba8ec6cbcaf5d30e16c4a3f
4
+ data.tar.gz: 1db36c29ce26bef326263a8df4620dc4ae3fa1ab
5
5
  SHA512:
6
- metadata.gz: 4a0db4f618688698e5cc7d4f3ea581dd4718f975236e1fe1d656637114877258f5666e39f6d31469129693f9bdc0f743cd8914c699932bfb508e9f231ed988ad
7
- data.tar.gz: 89633f3d28f6bced80859d65e7dc6a568203914cad37051396c8b647046fdd68dc14dd5fd09bedc8d8614c13c7150414fe023e3d2e755c36144f1c8835cf36c3
6
+ metadata.gz: 32907d298acd4c0bd1c51ab266810c56486769d70da9ce37f4431f0b51e68b274f9e0df2110cdd8ecf7582a51fd1a71248b4de280209937ae489c46512aed417
7
+ data.tar.gz: e9819edc1df68e9ccd0feba3ae3f47ad5c7dfce816816dd766e772ad66d60d35017992c0be281442bba1ac271f2f6870fd3a612544e8a94f3ca2b67eb215f09f
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.391
1
+ 3.0.393
@@ -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.391
4
+ version: 3.0.393
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-23 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