tencentcloud-sdk-acp 1.0.363 → 3.0.379

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 +14 -6
  4. metadata +9 -9
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: c888e8392781e1e92111dae94e61de7d1f9b774a
4
- data.tar.gz: 4aa95b7fdb4ca90cee6323d34e6e5799b60389d7
3
+ metadata.gz: e6f92fb9d2223c18c9449dd8e7203c3fc2f677f5
4
+ data.tar.gz: 0291c68912c7d9bd1b3a75ff4a7d46d0ff06fb0c
5
5
  SHA512:
6
- metadata.gz: 538ea91739dfa0f065aa1c628cb16fcd7009153f7505216e78cc191668e3fab53ac5bb0f80efe4d1396402ecd426e2b08914d4aa50410b23bc02749edaa39e67
7
- data.tar.gz: 3a4ffed61354bb788db1e12a9f0f462838c5b771aa83886dffabb93e04430d8a6bf498b8560ddb206f12b400d539f3e907b6a224b070f4f7f44e37b33ca46619
6
+ metadata.gz: 195241f47c8da1e188e432fe4a3990cadedc3b743abbce8752e675bdc464ee0d699f3f826bff1e4bbe1259b54675f5282189ab5b07c73df55b27df5737e84e7c
7
+ data.tar.gz: 85aadce3a0db2e7a7d3c41c58174af80211282fdac8dde9b76960c2522b71c20fdb72a7b3da768fbfabb57206695d3703586b9c9e1038bdf8e6aa171a3181011
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 1.0.363
1
+ 3.0.379
@@ -377,17 +377,25 @@ module TencentCloud
377
377
 
378
378
  # DescribeResourceUsageInfo请求参数结构体
379
379
  class DescribeResourceUsageInfoRequest < TencentCloud::Common::AbstractModel
380
- # @param PriceName: 资源计费项名称
380
+ # @param PriceName: 资源计费项名称(为空时,则根据TaskType和Platform进行查询)
381
381
  # @type PriceName: String
382
+ # @param TaskType: 任务类型, 0:基础版, 1:专家版
383
+ # @type TaskType: Integer
384
+ # @param Platform: 应用平台, 0:android
385
+ # @type Platform: Integer
382
386
 
383
- attr_accessor :PriceName
387
+ attr_accessor :PriceName, :TaskType, :Platform
384
388
 
385
- def initialize(pricename=nil)
389
+ def initialize(pricename=nil, tasktype=nil, platform=nil)
386
390
  @PriceName = pricename
391
+ @TaskType = tasktype
392
+ @Platform = platform
387
393
  end
388
394
 
389
395
  def deserialize(params)
390
396
  @PriceName = params['PriceName']
397
+ @TaskType = params['TaskType']
398
+ @Platform = params['Platform']
391
399
  end
392
400
  end
393
401
 
@@ -512,7 +520,7 @@ module TencentCloud
512
520
  # @type TaskID: String
513
521
  # @param TaskType: 任务类型, 0:基础版, 1:专家版, 2:本地化
514
522
  # @type TaskType: Integer
515
- # @param ReportType: 报告类型, 0:诊断报告, 1:堆栈报告
523
+ # @param ReportType: 报告类型, 0:诊断报告, 1:堆栈报告, 2:视频证据(预留), 3:报告json结果
516
524
  # @type ReportType: Integer
517
525
 
518
526
  attr_accessor :Source, :Platform, :TaskID, :TaskType, :ReportType
@@ -538,10 +546,10 @@ module TencentCloud
538
546
  class DescribeScanTaskReportUrlResponse < TencentCloud::Common::AbstractModel
539
547
  # @param Result: 返回值, 0:成功, 其他值请查看“返回值”定义
540
548
  # @type Result: Integer
541
- # @param ReportUrl: 诊断报告/堆栈信息下载链接
549
+ # @param ReportUrl: 诊断报告/堆栈信息/报告json结果下载链接
542
550
  # 注意:此字段可能返回 null,表示取不到有效值。
543
551
  # @type ReportUrl: String
544
- # @param ReportTitle: 诊断报告/堆栈名称
552
+ # @param ReportTitle: 诊断报告/堆栈/报告json结果的名称
545
553
  # 注意:此字段可能返回 null,表示取不到有效值。
546
554
  # @type ReportTitle: String
547
555
  # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
metadata CHANGED
@@ -1,27 +1,27 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-acp
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.363
4
+ version: 3.0.379
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-07-25 00:00:00.000000000 Z
11
+ date: 2022-08-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - "~>"
17
+ - - ~>
18
18
  - !ruby/object:Gem::Version
19
19
  version: '1.0'
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
- - - "~>"
24
+ - - ~>
25
25
  - !ruby/object:Gem::Version
26
26
  version: '1.0'
27
27
  description: Tencent Cloud Ruby SDK is the official software development kit, which
@@ -33,10 +33,10 @@ executables: []
33
33
  extensions: []
34
34
  extra_rdoc_files: []
35
35
  files:
36
- - lib/VERSION
37
36
  - lib/tencentcloud-sdk-acp.rb
38
- - lib/v20220105/client.rb
39
37
  - lib/v20220105/models.rb
38
+ - lib/v20220105/client.rb
39
+ - lib/VERSION
40
40
  homepage: https://github.com/TencentCloud/tencentcloud-sdk-ruby
41
41
  licenses:
42
42
  - Apache-2.0
@@ -49,17 +49,17 @@ require_paths:
49
49
  - lib
50
50
  required_ruby_version: !ruby/object:Gem::Requirement
51
51
  requirements:
52
- - - ">="
52
+ - - '>='
53
53
  - !ruby/object:Gem::Version
54
54
  version: '0'
55
55
  required_rubygems_version: !ruby/object:Gem::Requirement
56
56
  requirements:
57
- - - ">="
57
+ - - '>='
58
58
  - !ruby/object:Gem::Version
59
59
  version: '0'
60
60
  requirements: []
61
61
  rubyforge_project:
62
- rubygems_version: 2.6.14
62
+ rubygems_version: 2.0.14
63
63
  signing_key:
64
64
  specification_version: 4
65
65
  summary: Tencent Cloud SDK for Ruby - ACP