API Guide

Table Of Contents
HTTP
Code
Description Schema
200
A JSON array of clusters
Headers :
X-Total-Count (integer) : The total number of entities in the result set
after filtering.
< Cluster > array
3.6.2. Return a Cluster matching the provided name
GET /clusters/{cluster_name}
Parameters
Type Name Description Schema
Path
cluster_name
required
The name of the cluster string
Query
fields
optional
Select which fields are included in the response.
'name' is always included. See
FieldSelectionExpression for details.
string
(FieldSelectionExpre
ssion)
Responses
HTTP
Code
Description Schema
200 A single Cluster Cluster
Example HTTP response
Response 200
{
Ê "name" : "cluster-1",
Ê "cluster_id" : 1,
Ê "island_id" : 1,
Ê "allow_auto_join" : true,
Ê "connected" : true,
Ê "top_level_assembly" : "FNM00123456789",
Ê "operational_status" : "ok",
Ê "transition_indications" : [ ],
Ê "transition_progress" : [ ],
Ê "health_state" : "ok",
Ê "health_indications" : [ ],
Ê "system_time" : "Mon Nov 19 22:59:37 UTC 2018",
Ê "ip_address" : "10.6.209.205",
Ê "is_local" : true
}
14