ClusterInfo Data Type

Response containing clustering information

Properties
name data type constraints description
feature boolean required boolean True if the clustering feature is activated, false if not
master boolean required boolean True if this is the master node (or clustering is disabled)
started boolean required boolean True if the cluster (hazelcast) is started, false if not
members array of string   UUIDs of the cluster members
localMember MemberInfo   Info about the local cluster member
Properties inherited from GenericResponse
messages array of Message   Messages contained in the response (which should be shown to the user)
responseInfo ResponseInfo  

Example

{
  "feature" : true,
  "master" : true,
  "started" : true,
  "members" : [ "...", "..." ],
  "localMember" : {
    "uuid" : "...",
    "name" : "..."
  },
  "messages" : [ { }, { } ],
  "responseInfo" : {
    "responseCode" : "OK",
    "responseMessage" : "...",
    "property" : "..."
  }
}