tencentcloud-sdk-goosefs 3.0.1080 → 3.0.1082
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/v20220519/client.rb +24 -0
- data/lib/v20220519/models.rb +40 -0
- 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: 60b3f56d365adb06347cd36a640889ac6bccdf03
|
4
|
+
data.tar.gz: 459ed6543f0e5a2fbcbdbd1e969a0031f0ca78ee
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9945a20046faaac62d20cac94e5feafa8efdb9e19a5b6ba049b96c51d113d1e2e108650a6f0b3297d41fa3bf9d83bda8649c46a3bdbb1d028d627f4fccfbc895
|
7
|
+
data.tar.gz: 83f2012cec24e038f85777792e464c5be8401fe9edb12d12a69c2daa1b05b26702d0a155a8b8eaada84f6ffdf33e786326a9c1a8fcf1d5070b278f6896781d40
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.1082
|
data/lib/v20220519/client.rb
CHANGED
@@ -125,6 +125,30 @@ module TencentCloud
|
|
125
125
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
126
126
|
end
|
127
127
|
|
128
|
+
# 生成客户端的挂载命令
|
129
|
+
|
130
|
+
# @param request: Request instance for BuildClientNodeMountCommand.
|
131
|
+
# @type request: :class:`Tencentcloud::goosefs::V20220519::BuildClientNodeMountCommandRequest`
|
132
|
+
# @rtype: :class:`Tencentcloud::goosefs::V20220519::BuildClientNodeMountCommandResponse`
|
133
|
+
def BuildClientNodeMountCommand(request)
|
134
|
+
body = send_request('BuildClientNodeMountCommand', request.serialize)
|
135
|
+
response = JSON.parse(body)
|
136
|
+
if response['Response'].key?('Error') == false
|
137
|
+
model = BuildClientNodeMountCommandResponse.new
|
138
|
+
model.deserialize(response['Response'])
|
139
|
+
model
|
140
|
+
else
|
141
|
+
code = response['Response']['Error']['Code']
|
142
|
+
message = response['Response']['Error']['Message']
|
143
|
+
reqid = response['Response']['RequestId']
|
144
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
145
|
+
end
|
146
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
147
|
+
raise e
|
148
|
+
rescue StandardError => e
|
149
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
150
|
+
end
|
151
|
+
|
128
152
|
# 创建数据流通任务,包括从将文件系统的数据上传到存储桶下, 以及从存储桶下载到文件系统里。
|
129
153
|
|
130
154
|
# @param request: Request instance for CreateDataRepositoryTask.
|
data/lib/v20220519/models.rb
CHANGED
@@ -189,6 +189,46 @@ module TencentCloud
|
|
189
189
|
end
|
190
190
|
end
|
191
191
|
|
192
|
+
# BuildClientNodeMountCommand请求参数结构体
|
193
|
+
class BuildClientNodeMountCommandRequest < TencentCloud::Common::AbstractModel
|
194
|
+
# @param FileSystemId: 文件系统ID
|
195
|
+
# @type FileSystemId: String
|
196
|
+
# @param CustomMountDir: 自定义挂载目录的绝对路径, 如果未指定, 则会使用默认值, 格式/goosefsx/${fs_id}-proxy. 比如/goosefsx/x-c60-a2b3d4-proxy
|
197
|
+
# @type CustomMountDir: String
|
198
|
+
|
199
|
+
attr_accessor :FileSystemId, :CustomMountDir
|
200
|
+
|
201
|
+
def initialize(filesystemid=nil, custommountdir=nil)
|
202
|
+
@FileSystemId = filesystemid
|
203
|
+
@CustomMountDir = custommountdir
|
204
|
+
end
|
205
|
+
|
206
|
+
def deserialize(params)
|
207
|
+
@FileSystemId = params['FileSystemId']
|
208
|
+
@CustomMountDir = params['CustomMountDir']
|
209
|
+
end
|
210
|
+
end
|
211
|
+
|
212
|
+
# BuildClientNodeMountCommand返回参数结构体
|
213
|
+
class BuildClientNodeMountCommandResponse < TencentCloud::Common::AbstractModel
|
214
|
+
# @param Command: 挂载命令
|
215
|
+
# @type Command: String
|
216
|
+
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
217
|
+
# @type RequestId: String
|
218
|
+
|
219
|
+
attr_accessor :Command, :RequestId
|
220
|
+
|
221
|
+
def initialize(command=nil, requestid=nil)
|
222
|
+
@Command = command
|
223
|
+
@RequestId = requestid
|
224
|
+
end
|
225
|
+
|
226
|
+
def deserialize(params)
|
227
|
+
@Command = params['Command']
|
228
|
+
@RequestId = params['RequestId']
|
229
|
+
end
|
230
|
+
end
|
231
|
+
|
192
232
|
# 付费信息详情
|
193
233
|
class ChargeAttribute < TencentCloud::Common::AbstractModel
|
194
234
|
# @param CurDeadline: 到期时间
|
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.1082
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tencent Cloud
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-06-
|
11
|
+
date: 2025-06-16 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|