Class: TencentCloud::Chdfs::V20190718::CreateMountPointResponse

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

Overview

CreateMountPoint返回参数结构体

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(mountpoint = nil, requestid = nil) ⇒ CreateMountPointResponse

Returns a new instance of CreateMountPointResponse.



301
302
303
304
# File 'lib/v20190718/models.rb', line 301

def initialize(mountpoint=nil, requestid=nil)
  @MountPoint = mountpoint
  @RequestId = requestid
end

Instance Attribute Details

#MountPointObject

Parameters:

  • MountPoint:

    挂载点

  • RequestId:

    唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。



299
300
301
# File 'lib/v20190718/models.rb', line 299

def MountPoint
  @MountPoint
end

#RequestIdObject

Parameters:

  • MountPoint:

    挂载点

  • RequestId:

    唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。



299
300
301
# File 'lib/v20190718/models.rb', line 299

def RequestId
  @RequestId
end

Instance Method Details

#deserialize(params) ⇒ Object



306
307
308
309
310
311
312
# File 'lib/v20190718/models.rb', line 306

def deserialize(params)
  unless params['MountPoint'].nil?
    @MountPoint = MountPoint.new
    @MountPoint.deserialize(params['MountPoint'])
  end
  @RequestId = params['RequestId']
end