Class: TencentCloud::Dlc::V20210125::CreateCHDFSBindingProductResponse

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

Overview

CreateCHDFSBindingProduct返回参数结构体

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(mountpointassociates = nil, requestid = nil) ⇒ CreateCHDFSBindingProductResponse

Returns a new instance of CreateCHDFSBindingProductResponse.



1637
1638
1639
1640
# File 'lib/v20210125/models.rb', line 1637

def initialize(mountpointassociates=nil, requestid=nil)
  @MountPointAssociates = mountpointassociates
  @RequestId = requestid
end

Instance Attribute Details

#MountPointAssociatesObject

Parameters:

  • MountPointAssociates:

    绑定信息

  • RequestId:

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



1635
1636
1637
# File 'lib/v20210125/models.rb', line 1635

def MountPointAssociates
  @MountPointAssociates
end

#RequestIdObject

Parameters:

  • MountPointAssociates:

    绑定信息

  • RequestId:

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



1635
1636
1637
# File 'lib/v20210125/models.rb', line 1635

def RequestId
  @RequestId
end

Instance Method Details

#deserialize(params) ⇒ Object



1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
# File 'lib/v20210125/models.rb', line 1642

def deserialize(params)
  unless params['MountPointAssociates'].nil?
    @MountPointAssociates = []
    params['MountPointAssociates'].each do |i|
      mountpointassociates_tmp = MountPointAssociates.new
      mountpointassociates_tmp.deserialize(i)
      @MountPointAssociates << mountpointassociates_tmp
    end
  end
  @RequestId = params['RequestId']
end