Class: TencentCloud::Goosefs::V20220519::BuildClientNodeMountCommandResponse

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(command = nil, requestid = nil) ⇒ BuildClientNodeMountCommandResponse

Returns a new instance of BuildClientNodeMountCommandResponse.



221
222
223
224
# File 'lib/v20220519/models.rb', line 221

def initialize(command=nil, requestid=nil)
  @Command = command
  @RequestId = requestid
end

Instance Attribute Details

#CommandObject

Parameters:

  • Command:

    挂载命令

  • RequestId:

    唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。



219
220
221
# File 'lib/v20220519/models.rb', line 219

def Command
  @Command
end

#RequestIdObject

Parameters:

  • Command:

    挂载命令

  • RequestId:

    唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。



219
220
221
# File 'lib/v20220519/models.rb', line 219

def RequestId
  @RequestId
end

Instance Method Details

#deserialize(params) ⇒ Object



226
227
228
229
# File 'lib/v20220519/models.rb', line 226

def deserialize(params)
  @Command = params['Command']
  @RequestId = params['RequestId']
end