Class: TencentCloud::Dlc::V20210125::DescribeOtherCHDFSBindingListResponse

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

Overview

DescribeOtherCHDFSBindingList返回参数结构体

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(otherchdfsbindinglist = nil, total = nil, requestid = nil) ⇒ DescribeOtherCHDFSBindingListResponse

Returns a new instance of DescribeOtherCHDFSBindingListResponse.



8034
8035
8036
8037
8038
# File 'lib/v20210125/models.rb', line 8034

def initialize(otherchdfsbindinglist=nil, total=nil, requestid=nil)
  @OtherCHDFSBindingList = otherchdfsbindinglist
  @Total = total
  @RequestId = requestid
end

Instance Attribute Details

#OtherCHDFSBindingListObject

Parameters:

  • OtherCHDFSBindingList:

    非DLC 产品绑定列表

  • Total:

    总记录数

  • RequestId:

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



8032
8033
8034
# File 'lib/v20210125/models.rb', line 8032

def OtherCHDFSBindingList
  @OtherCHDFSBindingList
end

#RequestIdObject

Parameters:

  • OtherCHDFSBindingList:

    非DLC 产品绑定列表

  • Total:

    总记录数

  • RequestId:

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



8032
8033
8034
# File 'lib/v20210125/models.rb', line 8032

def RequestId
  @RequestId
end

#TotalObject

Parameters:

  • OtherCHDFSBindingList:

    非DLC 产品绑定列表

  • Total:

    总记录数

  • RequestId:

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



8032
8033
8034
# File 'lib/v20210125/models.rb', line 8032

def Total
  @Total
end

Instance Method Details

#deserialize(params) ⇒ Object



8040
8041
8042
8043
8044
8045
8046
8047
8048
8049
8050
8051
# File 'lib/v20210125/models.rb', line 8040

def deserialize(params)
  unless params['OtherCHDFSBindingList'].nil?
    @OtherCHDFSBindingList = []
    params['OtherCHDFSBindingList'].each do |i|
      otherchdfsbinding_tmp = OtherCHDFSBinding.new
      otherchdfsbinding_tmp.deserialize(i)
      @OtherCHDFSBindingList << otherchdfsbinding_tmp
    end
  end
  @Total = params['Total']
  @RequestId = params['RequestId']
end