NetApp · Schema
Cluster
ONTAP cluster configuration and status
CloudData ManagementHybrid CloudInfrastructureStorageFortune 500
Properties
| Name | Type | Description |
|---|---|---|
| uuid | string | Cluster UUID |
| name | string | Cluster name |
| contact | string | Contact information for the cluster administrator |
| location | string | Physical location of the cluster |
| version | object | ONTAP software version |
| dns_domains | array | DNS domain names for the cluster |
| ntp_servers | array | NTP server addresses |
| timezone | object | Cluster timezone setting |
| management_interfaces | array | Cluster management network interfaces |
| nodes | array | Nodes in the cluster |
| _links | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/Cluster",
"title": "Cluster",
"type": "object",
"description": "ONTAP cluster configuration and status",
"properties": {
"uuid": {
"type": "string",
"format": "uuid",
"description": "Cluster UUID",
"readOnly": true,
"example": "500123"
},
"name": {
"type": "string",
"description": "Cluster name",
"examples": [
"cluster1"
]
},
"contact": {
"type": "string",
"description": "Contact information for the cluster administrator",
"example": "example_value"
},
"location": {
"type": "string",
"description": "Physical location of the cluster",
"example": "example_value"
},
"version": {
"type": "object",
"description": "ONTAP software version",
"readOnly": true,
"properties": {
"full": {
"type": "string",
"description": "Full version string",
"examples": [
"NetApp Release 9.15.1"
]
},
"generation": {
"type": "integer",
"description": "Major version generation"
},
"major": {
"type": "integer",
"description": "Major version number"
},
"minor": {
"type": "integer",
"description": "Minor version number"
}
},
"example": "example_value"
},
"dns_domains": {
"type": "array",
"description": "DNS domain names for the cluster",
"items": {
"type": "string"
},
"example": []
},
"ntp_servers": {
"type": "array",
"description": "NTP server addresses",
"items": {
"type": "string"
},
"example": []
},
"timezone": {
"type": "object",
"description": "Cluster timezone setting",
"properties": {
"name": {
"type": "string",
"description": "Timezone name (Olson format)",
"examples": [
"America/New_York"
]
}
},
"example": "example_value"
},
"management_interfaces": {
"type": "array",
"description": "Cluster management network interfaces",
"readOnly": true,
"items": {
"type": "object",
"properties": {
"ip": {
"type": "object",
"properties": {
"address": {
"type": "string",
"format": "ipv4",
"description": "IPv4 address"
}
}
}
}
},
"example": []
},
"nodes": {
"type": "array",
"description": "Nodes in the cluster",
"readOnly": true,
"items": {
"$ref": "#/components/schemas/ClusterNodeReference"
},
"example": []
},
"_links": {
"$ref": "#/components/schemas/SelfLink"
}
}
}