Class: TencentCloud::Thpc::V20230321::DescribeNodesResponse

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

Overview

DescribeNodes返回参数结构体

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(nodeset = nil, totalcount = nil, requestid = nil) ⇒ DescribeNodesResponse

Returns a new instance of DescribeNodesResponse.



1400
1401
1402
1403
1404
# File 'lib/v20230321/models.rb', line 1400

def initialize(nodeset=nil, totalcount=nil, requestid=nil)
  @NodeSet = nodeset
  @TotalCount = totalcount
  @RequestId = requestid
end

Instance Attribute Details

#NodeSetObject

Parameters:

  • NodeSet:

    节点概览信息列表。

  • TotalCount:

    符合条件的节点数量。

  • RequestId:

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



1398
1399
1400
# File 'lib/v20230321/models.rb', line 1398

def NodeSet
  @NodeSet
end

#RequestIdObject

Parameters:

  • NodeSet:

    节点概览信息列表。

  • TotalCount:

    符合条件的节点数量。

  • RequestId:

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



1398
1399
1400
# File 'lib/v20230321/models.rb', line 1398

def RequestId
  @RequestId
end

#TotalCountObject

Parameters:

  • NodeSet:

    节点概览信息列表。

  • TotalCount:

    符合条件的节点数量。

  • RequestId:

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



1398
1399
1400
# File 'lib/v20230321/models.rb', line 1398

def TotalCount
  @TotalCount
end

Instance Method Details

#deserialize(params) ⇒ Object



1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
# File 'lib/v20230321/models.rb', line 1406

def deserialize(params)
  unless params['NodeSet'].nil?
    @NodeSet = []
    params['NodeSet'].each do |i|
      nodeoverview_tmp = NodeOverview.new
      nodeoverview_tmp.deserialize(i)
      @NodeSet << nodeoverview_tmp
    end
  end
  @TotalCount = params['TotalCount']
  @RequestId = params['RequestId']
end