tencentcloud-sdk-cii 1.0.254 → 1.0.258

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: cf7a5c23efc852e023e2a2a81d8ace912dcb7046
4
- data.tar.gz: 5485aa23092457955712fd11e7c68246c951c457
3
+ metadata.gz: e81245c8dbfb6b13930204420ae047634069cf26
4
+ data.tar.gz: 03f47a3f23b8e1181a12780b2b19c4dc7fd25a28
5
5
  SHA512:
6
- metadata.gz: 5cb2cd992d7cfb5c038aa94db9f78efb461d51ede30728f06b54afa5b897ad905d31d83cf9aa4cb6277791f4fabcb795e6447d68c06f99d78bf6167303a4612b
7
- data.tar.gz: 161971d709f78f7874acb49868d0b311dbc822b68a16af3ba55938e4ef6ac70e9a9c7351c13728db1c5215b7ff0c4e6ec1b4c4b31fbceea9d8dd0953df4046bc
6
+ metadata.gz: 6a0df6a318e4770c9a8260432c6b7f1d3a1e824da0f4446669f42e9bdf419a8de86e39bd06812ebb0cc2606511b670c9b6e1af0af7fc24ed8ad48f23a93d342f
7
+ data.tar.gz: 97faeea3821b583ab70c122699379ff66b10d590f730d04bff7a82ec4c950b05014a9d935c0dc7b4cf68eb38a3d0f5afc5e244ef9d28fe7ee4d98741338b9939
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 1.0.254
1
+ 1.0.258
@@ -29,7 +29,7 @@ module TencentCloud
29
29
  end
30
30
 
31
31
 
32
- # 中银三星需求,基于主任务批量添加结构化子任务
32
+ # 如果主任务下的报告不满足需求,可以基于主任务批量添加子任务
33
33
 
34
34
  # @param request: Request instance for AddSubStructureTasks.
35
35
  # @type request: :class:`Tencentcloud::cii::V20210408::AddSubStructureTasksRequest`
@@ -149,7 +149,7 @@ module TencentCloud
149
149
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
150
150
  end
151
151
 
152
- # saas页面集成了自动分类功能,该接口提供自动分类结果
152
+ # 辅助用户对批量报告自动分类
153
153
 
154
154
  # @param request: Request instance for DescribeReportClassify.
155
155
  # @type request: :class:`Tencentcloud::cii::V20210408::DescribeReportClassifyRequest`
@@ -434,7 +434,10 @@ module TencentCloud
434
434
  # @type MainTaskId: String
435
435
  # @param UnderwriteTaskId: 核保任务ID
436
436
  # @type UnderwriteTaskId: String
437
- # @param Status: 状态码
437
+ # @param Status: 结果状态:
438
+ # 0:返回成功
439
+ # 1:结果未生成
440
+ # 2:结果生成失败
438
441
  # @type Status: Integer
439
442
  # @param UnderwriteResults: 机器核保结果
440
443
  # @type UnderwriteResults: Array
@@ -475,7 +478,9 @@ module TencentCloud
475
478
 
476
479
  # DescribeReportClassify请求参数结构体
477
480
  class DescribeReportClassifyRequest < TencentCloud::Common::AbstractModel
478
- # @param ServiceType: 服务类型(Structured/Underwrite)
481
+ # @param ServiceType: 服务类型
482
+ # Structured 仅结构化
483
+ # Underwrite 结构化+核保
479
484
  # @type ServiceType: String
480
485
  # @param FileList: 文件地址数组
481
486
  # @type FileList: Array
@@ -812,7 +817,10 @@ module TencentCloud
812
817
  # @type MainTaskId: String
813
818
  # @param UnderwriteTaskId: 核保任务ID
814
819
  # @type UnderwriteTaskId: String
815
- # @param Status: 状态码
820
+ # @param Status: 结果状态:
821
+ # 0:返回成功
822
+ # 1:结果未生成
823
+ # 2:结果生成失败
816
824
  # @type Status: Integer
817
825
  # @param UnderwriteResults: 核保结果
818
826
  # @type UnderwriteResults: Array
@@ -1134,14 +1142,17 @@ module TencentCloud
1134
1142
  # @type StructureResult: String
1135
1143
  # @param SubTaskId: 子任务ID
1136
1144
  # @type SubTaskId: String
1145
+ # @param TaskFiles: 任务文件列表
1146
+ # @type TaskFiles: Array
1137
1147
 
1138
- attr_accessor :Code, :TaskType, :StructureResult, :SubTaskId
1148
+ attr_accessor :Code, :TaskType, :StructureResult, :SubTaskId, :TaskFiles
1139
1149
 
1140
- def initialize(code=nil, tasktype=nil, structureresult=nil, subtaskid=nil)
1150
+ def initialize(code=nil, tasktype=nil, structureresult=nil, subtaskid=nil, taskfiles=nil)
1141
1151
  @Code = code
1142
1152
  @TaskType = tasktype
1143
1153
  @StructureResult = structureresult
1144
1154
  @SubTaskId = subtaskid
1155
+ @TaskFiles = taskfiles
1145
1156
  end
1146
1157
 
1147
1158
  def deserialize(params)
@@ -1149,6 +1160,7 @@ module TencentCloud
1149
1160
  @TaskType = params['TaskType']
1150
1161
  @StructureResult = params['StructureResult']
1151
1162
  @SubTaskId = params['SubTaskId']
1163
+ @TaskFiles = params['TaskFiles']
1152
1164
  end
1153
1165
  end
1154
1166
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-cii
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.254
4
+ version: 1.0.258
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-02-11 00:00:00.000000000 Z
11
+ date: 2022-02-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common