Class: TencentCloud::Batch::V20170312::MountDataDisk

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

Overview

数据盘挂载选项

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(localpath = nil, filesystemtype = nil) ⇒ MountDataDisk

Returns a new instance of MountDataDisk.



3125
3126
3127
3128
# File 'lib/v20170312/models.rb', line 3125

def initialize(localpath=nil, filesystemtype=nil)
  @LocalPath = localpath
  @FileSystemType = filesystemtype
end

Instance Attribute Details

#FileSystemTypeObject

Parameters:

  • LocalPath:

    挂载点,Linux系统合法路径,或Windows系统盘符,比如“H:\”

  • FileSystemType:

    文件系统类型,Linux系统下支持“EXT3”和“EXT4”两种,默认“EXT3”;Windows系统下仅支持“NTFS”



3123
3124
3125
# File 'lib/v20170312/models.rb', line 3123

def FileSystemType
  @FileSystemType
end

#LocalPathObject

Parameters:

  • LocalPath:

    挂载点,Linux系统合法路径,或Windows系统盘符,比如“H:\”

  • FileSystemType:

    文件系统类型,Linux系统下支持“EXT3”和“EXT4”两种,默认“EXT3”;Windows系统下仅支持“NTFS”



3123
3124
3125
# File 'lib/v20170312/models.rb', line 3123

def LocalPath
  @LocalPath
end

Instance Method Details

#deserialize(params) ⇒ Object



3130
3131
3132
3133
# File 'lib/v20170312/models.rb', line 3130

def deserialize(params)
  @LocalPath = params['LocalPath']
  @FileSystemType = params['FileSystemType']
end