Class: TencentCloud::Tke::V20220501::DescribeNodePoolsResponse

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

Overview

DescribeNodePools返回参数结构体

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(nodepools = nil, totalcount = nil, requestid = nil) ⇒ DescribeNodePoolsResponse

Returns a new instance of DescribeNodePoolsResponse.



820
821
822
823
824
# File 'lib/v20220501/models.rb', line 820

def initialize(nodepools=nil, totalcount=nil, requestid=nil)
  @NodePools = nodepools
  @TotalCount = totalcount
  @RequestId = requestid
end

Instance Attribute Details

#NodePoolsObject

注意:此字段可能返回 null,表示取不到有效值。

Parameters:

  • NodePools:

    节点池列表

  • TotalCount:

    资源总数

  • RequestId:

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



818
819
820
# File 'lib/v20220501/models.rb', line 818

def NodePools
  @NodePools
end

#RequestIdObject

注意:此字段可能返回 null,表示取不到有效值。

Parameters:

  • NodePools:

    节点池列表

  • TotalCount:

    资源总数

  • RequestId:

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



818
819
820
# File 'lib/v20220501/models.rb', line 818

def RequestId
  @RequestId
end

#TotalCountObject

注意:此字段可能返回 null,表示取不到有效值。

Parameters:

  • NodePools:

    节点池列表

  • TotalCount:

    资源总数

  • RequestId:

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



818
819
820
# File 'lib/v20220501/models.rb', line 818

def TotalCount
  @TotalCount
end

Instance Method Details

#deserialize(params) ⇒ Object



826
827
828
829
830
831
832
833
834
835
836
837
# File 'lib/v20220501/models.rb', line 826

def deserialize(params)
  unless params['NodePools'].nil?
    @NodePools = []
    params['NodePools'].each do |i|
      nodepool_tmp = NodePool.new
      nodepool_tmp.deserialize(i)
      @NodePools << nodepool_tmp
    end
  end
  @TotalCount = params['TotalCount']
  @RequestId = params['RequestId']
end