NSX-T Data Center REST API

SubClusterInfo (type)

{
  "description": "Sub-Cluster-info contains the sub-cluster type and the discovered node IDs for the hosts that belong to this sub-cluster.",
  "id": "SubClusterInfo",
  "module_id": "SubCluster",
  "properties": {
    "discovered_node_ids": {
      "description": "Discovered node IDs under this sub-cluster. This is an optional field.",
      "items": {
        "type": "string"
      },
      "required": false,
      "title": "Discovered node IDs",
      "type": "array"
    },
    "sub_cluster_type": {
      "description": "The type of this sub-cluster. Currently only MANUAL sub-clusters are supported, where nodes are explicitly assigned. This field is mandatory.",
      "enum": [
        "MANUAL"
      ],
      "required": true,
      "title": "Sub-Cluster-Type",
      "type": "string"
    }
  },
  "title": "Sub-cluster-info",
  "type": "object"
}