List Kx Cluster Nodes
| finspace_list_kx_cluster_nodes | R Documentation | 
Lists all the nodes in a kdb cluster¶
Description¶
Lists all the nodes in a kdb cluster.
Usage¶
finspace_list_kx_cluster_nodes(environmentId, clusterName, nextToken,
  maxResults)
Arguments¶
| environmentId | [required] A unique identifier for the kdb environment. | 
| clusterName | [required] A unique name for the cluster. | 
| nextToken | A token that indicates where a results page should begin. | 
| maxResults | The maximum number of results to return in this request. | 
Value¶
A list with the following syntax:
list(
  nodes = list(
    list(
      nodeId = "string",
      availabilityZoneId = "string",
      launchTime = as.POSIXct(
        "2015-01-01"
      ),
      status = "RUNNING"|"PROVISIONING"
    )
  ),
  nextToken = "string"
)
Request syntax¶
svc$list_kx_cluster_nodes(
  environmentId = "string",
  clusterName = "string",
  nextToken = "string",
  maxResults = 123
)