tencentcloud-sdk-thpc 3.0.592 → 3.0.593

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/v20230321/models.rb +16 -4
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: daab4390d7e6cdf3bc19cb648241bb0e60053d58
4
- data.tar.gz: 7fd606d25dd1ac6640d0055ba1ab19c0d27aa393
3
+ metadata.gz: 54392caec678d1a013e48eec2df1895d3809c6d0
4
+ data.tar.gz: f6b82ae615b84e598dbb8a0e78a673b4448a5452
5
5
  SHA512:
6
- metadata.gz: dda0a8d45c2d5b844ae8083c5e13c4fa617f8e565c996c2e3cb651ceb211cb016ee8f5a69b65c2bdfbffc329a5fcc6f63a3e5e30220914c184d3fb215c547ca4
7
- data.tar.gz: f7a1b12be4d594d0b9ad459545a06de08c5b36d6f585942b8818c90c843af23fc25631826168db878359f72fb387e4ea51866320dd09ef66c8613de1603c2a3d
6
+ metadata.gz: 10515f96d7826140b1c05a48748793021443fac2c7fa3667b1f1e703c1401c9883c58f0cd38d45aebede4d77d3edf2fcb055ec52b8ddcc47995577d2d2da6dda
7
+ data.tar.gz: 329f9d802a151396abbcfc9c7a16a27ecf336b2cfddb1427bb5ee4db371e1bce012f0784af3c159a462e4a3a712c6f679eb27ceba306247d462370c0c96c0c3f
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.592
1
+ 3.0.593
@@ -244,14 +244,21 @@ module TencentCloud
244
244
  # @type Protocol: String
245
245
  # @param StorageType: 文件系统存储类型,默认值SD;其中 SD 为通用标准型标准型存储, HP为通用性能型存储, TB为turbo标准型, TP 为turbo性能型。
246
246
  # @type StorageType: String
247
+ # @param MountOption: 文件系统挂载挂载命令参数选项。
247
248
 
248
- attr_accessor :LocalPath, :RemotePath, :Protocol, :StorageType
249
+ # - NFS 3.0默认值:vers=3,nolock,proto=tcp,noresvport
250
+ # - NFS 4.0默认值:vers=4.0,noresvport
251
+ # - TURBO默认值:user_xattr
252
+ # @type MountOption: String
249
253
 
250
- def initialize(localpath=nil, remotepath=nil, protocol=nil, storagetype=nil)
254
+ attr_accessor :LocalPath, :RemotePath, :Protocol, :StorageType, :MountOption
255
+
256
+ def initialize(localpath=nil, remotepath=nil, protocol=nil, storagetype=nil, mountoption=nil)
251
257
  @LocalPath = localpath
252
258
  @RemotePath = remotepath
253
259
  @Protocol = protocol
254
260
  @StorageType = storagetype
261
+ @MountOption = mountoption
255
262
  end
256
263
 
257
264
  def deserialize(params)
@@ -259,6 +266,7 @@ module TencentCloud
259
266
  @RemotePath = params['RemotePath']
260
267
  @Protocol = params['Protocol']
261
268
  @StorageType = params['StorageType']
269
+ @MountOption = params['MountOption']
262
270
  end
263
271
  end
264
272
 
@@ -275,14 +283,17 @@ module TencentCloud
275
283
  # @type Protocol: String
276
284
  # @param StorageType: 文件系统存储类型,默认值SD;其中 SD 为通用标准型标准型存储, HP为通用性能型存储, TB为turbo标准型, TP 为turbo性能型。
277
285
  # @type StorageType: String
286
+ # @param MountOption: 文件系统挂载命令参数选项。
287
+ # @type MountOption: String
278
288
 
279
- attr_accessor :LocalPath, :RemotePath, :Protocol, :StorageType
289
+ attr_accessor :LocalPath, :RemotePath, :Protocol, :StorageType, :MountOption
280
290
 
281
- def initialize(localpath=nil, remotepath=nil, protocol=nil, storagetype=nil)
291
+ def initialize(localpath=nil, remotepath=nil, protocol=nil, storagetype=nil, mountoption=nil)
282
292
  @LocalPath = localpath
283
293
  @RemotePath = remotepath
284
294
  @Protocol = protocol
285
295
  @StorageType = storagetype
296
+ @MountOption = mountoption
286
297
  end
287
298
 
288
299
  def deserialize(params)
@@ -290,6 +301,7 @@ module TencentCloud
290
301
  @RemotePath = params['RemotePath']
291
302
  @Protocol = params['Protocol']
292
303
  @StorageType = params['StorageType']
304
+ @MountOption = params['MountOption']
293
305
  end
294
306
  end
295
307
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-thpc
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.592
4
+ version: 3.0.593
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-06-14 00:00:00.000000000 Z
11
+ date: 2023-06-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common