tencentcloud-sdk-goosefs 3.0.555 → 3.0.557

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/v20220519/models.rb +10 -2
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 93a32658891776a3ed43f488fc88a3af8cba15a6
4
- data.tar.gz: 4b297b2e9acebde25ce2703be497726a3485c3f4
3
+ metadata.gz: 5174074d5d5b706c9ecc43ae3cd6e44cc1a1748f
4
+ data.tar.gz: 3efd889bf37e86a403d7c7d3b8cbf22cc6dc4b7f
5
5
  SHA512:
6
- metadata.gz: ca88c61d5235212d536fe7c4fa7b30b20d3c9a8fbe3e25144b455025f5ad6407c419bd52be4a15037e78b6f5d782aeb96a3e57587fde55d32278da9cc058ee5f
7
- data.tar.gz: d2451a4c6e378ab6821c377ac3d8a1804fd62fe89b8df673519d2f95085a2ac1a04be408bc5f14e3d3a7b3609d0b2d60864cb1e7a69d1508ca30f75729c61497
6
+ metadata.gz: dfd6f40ef089a0ee1499630fcb19ca2d28e86d2b39bdcee66d3526996d7da65498f8845d109a59e3e89180f712311f3f8ac6e65daf9515867216da6f6ce05aff
7
+ data.tar.gz: e2580bdf7d3b25a1bbd99671ff5794c4d41672753b3afde88d03b56cb90d7c28e88f10645c780feb21c74f3c5c2d3976ad69aec2ae94c2fcfaf58afbc18624c1
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.555
1
+ 3.0.557
@@ -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.555
4
+ version: 3.0.557
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-19 00:00:00.000000000 Z
11
+ date: 2023-04-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common