ClusterModel

A compute resource provisioning cluster.

Properties

NameDescription Additional information
Href

See Hypermedia.

Type: String

RelatedActions

See Hypermedia.

Type: Array of RelationModel

Name

The name of the cluster.

Type: String

FullPath

The full path to the cluster.

Type: String

CanBeProvisioningTarget

If true, the cluster can be a provisioning target, and can be selected as the provisioning root for the compute resource. If false, the cluster represents an informational part of the tree of clusters provided by the compute resources, and cannot be selected as the provisioning root for the compute resource.

Type: Boolean

Children

The children of the cluster.

Type: Array of ClusterModel

Errors

If set, returns any errors encountered when enumerating the cluster.

Type: Array of ValidationErrorModel

Sample

application/json

Sample:
{
  "Href": "[api:ComputeResources(ab32f043-4682-4953-8dea-a0489b839f80)/ClusterTree",
  "Name": "ClusterRoot",
  "FullPath": "/ClusterRoot",
  "CanBeProvisioningTarget": true,
  "Children": [
    {
      "Name": "Cluster1",
      "FullPath": "/ClusterRoot/Cluster1",
      "CanBeProvisioningTarget": true
    },
    {
      "Name": "Cluster2",
      "FullPath": "/ClusterRoot/Cluster2",
      "CanBeProvisioningTarget": true
    }
  ]
}