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.



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

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”



3119
3120
3121
# File 'lib/v20170312/models.rb', line 3119

def FileSystemType
  @FileSystemType
end

#LocalPathObject

Parameters:

  • LocalPath:

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

  • FileSystemType:

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



3119
3120
3121
# File 'lib/v20170312/models.rb', line 3119

def LocalPath
  @LocalPath
end

Instance Method Details

#deserialize(params) ⇒ Object



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

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