tencentcloud-sdk-goosefs 3.0.555 → 3.0.556
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/VERSION +1 -1
- data/lib/v20220519/models.rb +10 -2
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f874c57a7f42e191fa32235b45ddd8cb9635be8f
|
4
|
+
data.tar.gz: d7177d4bff4d27cd0eb7082e0d5a3b5d21b5cd9a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 94e11d1ac2a336f07e78e1c76c2374cb8755c00236a493dd1f6e572587a3608f5af34f10dfc331b5b98d8fc9fdd1a9f984f7646ec481ae3734e330c8852b1fed
|
7
|
+
data.tar.gz: 2f2fc9099abd67fb725838ea0101224d0ee5a03d69aebfba2a0065de8fc4f7c42257a754d45d75d410ae239a3b6b38b0db8a72ebae6525aa6edf29fb554c5415
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.556
|
data/lib/v20220519/models.rb
CHANGED
@@ -103,20 +103,28 @@ module TencentCloud
|
|
103
103
|
# @type TaskId: String
|
104
104
|
# @param Status: 任务状态 0(初始化中), 1(运行中), 2(已完成), 3(任务失败)
|
105
105
|
# @type Status: Integer
|
106
|
+
# @param FinishedFileNumber: 已完成的文件数量
|
107
|
+
# @type FinishedFileNumber: Integer
|
108
|
+
# @param FinishedCapacity: 已完成的数据量
|
109
|
+
# @type FinishedCapacity: Integer
|
106
110
|
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
107
111
|
# @type RequestId: String
|
108
112
|
|
109
|
-
attr_accessor :TaskId, :Status, :RequestId
|
113
|
+
attr_accessor :TaskId, :Status, :FinishedFileNumber, :FinishedCapacity, :RequestId
|
110
114
|
|
111
|
-
def initialize(taskid=nil, status=nil, requestid=nil)
|
115
|
+
def initialize(taskid=nil, status=nil, finishedfilenumber=nil, finishedcapacity=nil, requestid=nil)
|
112
116
|
@TaskId = taskid
|
113
117
|
@Status = status
|
118
|
+
@FinishedFileNumber = finishedfilenumber
|
119
|
+
@FinishedCapacity = finishedcapacity
|
114
120
|
@RequestId = requestid
|
115
121
|
end
|
116
122
|
|
117
123
|
def deserialize(params)
|
118
124
|
@TaskId = params['TaskId']
|
119
125
|
@Status = params['Status']
|
126
|
+
@FinishedFileNumber = params['FinishedFileNumber']
|
127
|
+
@FinishedCapacity = params['FinishedCapacity']
|
120
128
|
@RequestId = params['RequestId']
|
121
129
|
end
|
122
130
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tencentcloud-sdk-goosefs
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.0.
|
4
|
+
version: 3.0.556
|
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-04-
|
11
|
+
date: 2023-04-20 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|