Class: TencentCloud::Goosefs::V20220519::BuildClientNodeMountCommandRequest

Inherits:
Common::AbstractModel
  • Object
show all
Defined in:
lib/v20220519/models.rb

Overview

BuildClientNodeMountCommand请求参数结构体

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(filesystemid = nil, custommountdir = nil) ⇒ BuildClientNodeMountCommandRequest

Returns a new instance of BuildClientNodeMountCommandRequest.



201
202
203
204
# File 'lib/v20220519/models.rb', line 201

def initialize(filesystemid=nil, custommountdir=nil)
  @FileSystemId = filesystemid
  @CustomMountDir = custommountdir
end

Instance Attribute Details

#CustomMountDirObject

Parameters:

  • FileSystemId:

    文件系统ID

  • CustomMountDir:

    自定义挂载目录的绝对路径, 如果未指定, 则会使用默认值, 格式/goosefsx/$fs_id-proxy. 比如/goosefsx/x-c60-a2b3d4-proxy



199
200
201
# File 'lib/v20220519/models.rb', line 199

def CustomMountDir
  @CustomMountDir
end

#FileSystemIdObject

Parameters:

  • FileSystemId:

    文件系统ID

  • CustomMountDir:

    自定义挂载目录的绝对路径, 如果未指定, 则会使用默认值, 格式/goosefsx/$fs_id-proxy. 比如/goosefsx/x-c60-a2b3d4-proxy



199
200
201
# File 'lib/v20220519/models.rb', line 199

def FileSystemId
  @FileSystemId
end

Instance Method Details

#deserialize(params) ⇒ Object



206
207
208
209
# File 'lib/v20220519/models.rb', line 206

def deserialize(params)
  @FileSystemId = params['FileSystemId']
  @CustomMountDir = params['CustomMountDir']
end