class TencentCloud::Tke::V20220501::DescribeNodePoolsResponse
DescribeNodePools返回参数结构体
def deserialize(params)
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
def initialize(nodepools=nil, totalcount=nil, requestid=nil)
def initialize(nodepools=nil, totalcount=nil, requestid=nil) @NodePools = nodepools @TotalCount = totalcount @RequestId = requestid end