ListNodesResponse

  • The nodes.list method response provides a list of nodes matching the request and a pagination token for retrieving additional results.

  • Each node in the response is represented by a Node object containing detailed information.

  • A nextPageToken is included if more nodes are available, allowing for retrieval of subsequent pages.

Response for nodes.list method.

JSON representation
{
  "nodes": [
    {
      object (Node)
    }
  ],
  "nextPageToken": string
}
Fields
nodes[]

object (Node)

The nodes that match the request.

nextPageToken

string

A pagination token returned from a previous call to nodes.list method that indicates from where listing should continue. If the field is missing or empty, it means there is no more nodes.