Class: TencentCloud::Chdfs::V20201112::CreateMountPointRequest
- Inherits:
-
TencentCloud::Common::AbstractModel
- Object
- TencentCloud::Common::AbstractModel
- TencentCloud::Chdfs::V20201112::CreateMountPointRequest
- Defined in:
- lib/v20201112/models.rb
Overview
CreateMountPoint请求参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(mountpointname = nil, filesystemid = nil, mountpointstatus = nil) ⇒ CreateMountPointRequest
constructor
A new instance of CreateMountPointRequest.
Constructor Details
#initialize(mountpointname = nil, filesystemid = nil, mountpointstatus = nil) ⇒ CreateMountPointRequest
Returns a new instance of CreateMountPointRequest.
365 366 367 368 369 |
# File 'lib/v20201112/models.rb', line 365 def initialize(mountpointname=nil, filesystemid=nil, mountpointstatus=nil) @MountPointName = mountpointname @FileSystemId = filesystemid @MountPointStatus = mountpointstatus end |
Instance Attribute Details
#FileSystemId ⇒ Object
363 364 365 |
# File 'lib/v20201112/models.rb', line 363 def FileSystemId @FileSystemId end |
#MountPointName ⇒ Object
363 364 365 |
# File 'lib/v20201112/models.rb', line 363 def MountPointName @MountPointName end |
#MountPointStatus ⇒ Object
363 364 365 |
# File 'lib/v20201112/models.rb', line 363 def MountPointStatus @MountPointStatus end |
Instance Method Details
#deserialize(params) ⇒ Object
371 372 373 374 375 |
# File 'lib/v20201112/models.rb', line 371 def deserialize(params) @MountPointName = params['MountPointName'] @FileSystemId = params['FileSystemId'] @MountPointStatus = params['MountPointStatus'] end |