tencentcloud-sdk-ccc 3.0.799 → 3.0.800
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.
- checksums.yaml +4 -4
- data/lib/VERSION +1 -1
- data/lib/v20200210/models.rb +14 -2
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d657a422b1b054e714342acde89312850c0cabd8
|
4
|
+
data.tar.gz: 50266e03b7b092959edd6f09dfee672c0491db35
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5c86c6b5f41add64add68628853ca5fce7301a9a4433c94163317efdf4e67764c8dcf0baa2e011d02ead99da29504989c31060c2bd2ad6befeaaaff5e1806f4b
|
7
|
+
data.tar.gz: 1df46c1ee0a18ccbe6e6c88ab72576b19ac331ff430f021a4beaa7089463bd6e0cbc59c85eb27bed0467d744de2d8b9bed5c5f35f3b4f89c607def5daad83bed
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.800
|
data/lib/v20200210/models.rb
CHANGED
@@ -5015,13 +5015,17 @@ module TencentCloud
|
|
5015
5015
|
# @param FailedFileList: 上传失败的文件列表
|
5016
5016
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
5017
5017
|
# @type FailedFileList: Array
|
5018
|
+
# @param SuccessFileList: 上传成功文件列表
|
5019
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
5020
|
+
# @type SuccessFileList: Array
|
5018
5021
|
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
5019
5022
|
# @type RequestId: String
|
5020
5023
|
|
5021
|
-
attr_accessor :FailedFileList, :RequestId
|
5024
|
+
attr_accessor :FailedFileList, :SuccessFileList, :RequestId
|
5022
5025
|
|
5023
|
-
def initialize(failedfilelist=nil, requestid=nil)
|
5026
|
+
def initialize(failedfilelist=nil, successfilelist=nil, requestid=nil)
|
5024
5027
|
@FailedFileList = failedfilelist
|
5028
|
+
@SuccessFileList = successfilelist
|
5025
5029
|
@RequestId = requestid
|
5026
5030
|
end
|
5027
5031
|
|
@@ -5034,6 +5038,14 @@ module TencentCloud
|
|
5034
5038
|
@FailedFileList << uploadivraudiofailedinfo_tmp
|
5035
5039
|
end
|
5036
5040
|
end
|
5041
|
+
unless params['SuccessFileList'].nil?
|
5042
|
+
@SuccessFileList = []
|
5043
|
+
params['SuccessFileList'].each do |i|
|
5044
|
+
audiofileinfo_tmp = AudioFileInfo.new
|
5045
|
+
audiofileinfo_tmp.deserialize(i)
|
5046
|
+
@SuccessFileList << audiofileinfo_tmp
|
5047
|
+
end
|
5048
|
+
end
|
5037
5049
|
@RequestId = params['RequestId']
|
5038
5050
|
end
|
5039
5051
|
end
|