tencentcloud-sdk-goosefs 3.0.554 → 3.0.556

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.
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: 28fd6edc45509cf2decf0abe8ae25ddafa68bbe7
4
- data.tar.gz: 3aaef1ae0bd2cd9dde809f2d824e3c0d4a232acd
3
+ metadata.gz: f874c57a7f42e191fa32235b45ddd8cb9635be8f
4
+ data.tar.gz: d7177d4bff4d27cd0eb7082e0d5a3b5d21b5cd9a
5
5
  SHA512:
6
- metadata.gz: 433ca5f567be0accb5a738395c25293b56381c47a8af0071af6c23518412e227ec0063597092e3e1eca44940c77999f8b67acf5104af218c580f95ea841b7dc8
7
- data.tar.gz: a03472cede1d5c0c325717647f072b9fa01801f9b087f67e1b5546f9a43274f079019ad215052dbdaa5547dde12f6bc3ea776ce33a172a9f240c4a90d7f68116
6
+ metadata.gz: 94e11d1ac2a336f07e78e1c76c2374cb8755c00236a493dd1f6e572587a3608f5af34f10dfc331b5b98d8fc9fdd1a9f984f7646ec481ae3734e330c8852b1fed
7
+ data.tar.gz: 2f2fc9099abd67fb725838ea0101224d0ee5a03d69aebfba2a0065de8fc4f7c42257a754d45d75d410ae239a3b6b38b0db8a72ebae6525aa6edf29fb554c5415
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.554
1
+ 3.0.556
@@ -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.554
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-19 00:00:00.000000000 Z
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