tencentcloud-sdk-tiw 3.0.688 → 3.0.689

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: 3c5906f61d6eaf602873d9b388667165eab9fb65
4
- data.tar.gz: 546074eecbe47da523423d6a0f5b41f62f6e1372
3
+ metadata.gz: 15e05e9c563d76c80072a0562f5324e6a6a0e33f
4
+ data.tar.gz: 1b12e436b68acc1f3c00bb07f5b1c39772b73213
5
5
  SHA512:
6
- metadata.gz: e56a06831f03562c2db2a9fa7c99983896a7ebce66f1906338ff7555a244db0e2ffba8b6ee877c14f305c76976f70ad23a9d7b5b666b33b8bbe9497247e1431d
7
- data.tar.gz: e1750fbcbc5f2205595a5f4b1a0251392a2c9759de06e7a2c0284845ab0cffb80a95aac52db2d2ed5e11fc98f4cd26daa27c6a67aaef7581bcf1ab9f06f52deb
6
+ metadata.gz: 94a64cc4ee399a6aec232981e322bc6c8ff280aa047db7d1a54b81054591a6ee2217cf2522312ceeae7e12918ddffe0ab667e8bff5b734c29f40b97a4a040b93
7
+ data.tar.gz: e9f925d27ba7b8ed0d1dc389113d3d85abe5d05019116ef704735c17592dd3e9bde77a70b424988f6f011a3c611033385e2d7323acd4ba876d4046a35e324d36
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.688
1
+ 3.0.689
@@ -419,7 +419,7 @@ module TencentCloud
419
419
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
420
420
  end
421
421
 
422
- # 查询PPT检测任务的执行进度或结果
422
+ # 查询PPT检测任务的执行进度或结果,支持查询最近半年内的任务结果
423
423
 
424
424
  # @param request: Request instance for DescribePPTCheck.
425
425
  # @type request: :class:`Tencentcloud::tiw::V20190919::DescribePPTCheckRequest`
@@ -1183,18 +1183,22 @@ module TencentCloud
1183
1183
  # @type Status: String
1184
1184
  # @param Progress: 当前进度,取值范围为0~100
1185
1185
  # @type Progress: Integer
1186
+ # @param Errs: 错误列表
1187
+ # 注意:此字段可能返回 null,表示取不到有效值。
1188
+ # @type Errs: Array
1186
1189
  # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
1187
1190
  # @type RequestId: String
1188
1191
 
1189
- attr_accessor :TaskId, :IsOK, :ResultUrl, :Slides, :Status, :Progress, :RequestId
1192
+ attr_accessor :TaskId, :IsOK, :ResultUrl, :Slides, :Status, :Progress, :Errs, :RequestId
1190
1193
 
1191
- def initialize(taskid=nil, isok=nil, resulturl=nil, slides=nil, status=nil, progress=nil, requestid=nil)
1194
+ def initialize(taskid=nil, isok=nil, resulturl=nil, slides=nil, status=nil, progress=nil, errs=nil, requestid=nil)
1192
1195
  @TaskId = taskid
1193
1196
  @IsOK = isok
1194
1197
  @ResultUrl = resulturl
1195
1198
  @Slides = slides
1196
1199
  @Status = status
1197
1200
  @Progress = progress
1201
+ @Errs = errs
1198
1202
  @RequestId = requestid
1199
1203
  end
1200
1204
 
@@ -1212,6 +1216,14 @@ module TencentCloud
1212
1216
  end
1213
1217
  @Status = params['Status']
1214
1218
  @Progress = params['Progress']
1219
+ unless params['Errs'].nil?
1220
+ @Errs = []
1221
+ params['Errs'].each do |i|
1222
+ ppterr_tmp = PPTErr.new
1223
+ ppterr_tmp.deserialize(i)
1224
+ @Errs << ppterr_tmp
1225
+ end
1226
+ end
1215
1227
  @RequestId = params['RequestId']
1216
1228
  end
1217
1229
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-tiw
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.688
4
+ version: 3.0.689
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-10-30 00:00:00.000000000 Z
11
+ date: 2023-10-31 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common