Retrieves a specified cluster profile summary
GEThttps://api.spectrocloud.com/v1/dashboard/clusterprofiles/:uid
Authorization: ApiKey
name: ApiKeytype: apiKeydescription: API key authorization where API key can be generated from Palette console under Profile > My API Keysin: header
Retrieves a specified cluster profile summary
Request
Path Parameters
uid stringrequired
Header Parameters
ProjectUid string
Scope the request to the specified project uid
Responses
- 200
Cluster profile summary response
- application/json
- Schema
- Example (from schema)
Schema
metadata object
specSummary object
status object
{
"metadata": {
"annotations": {},
"creationTimestamp": "2023-12-01T21:31:48.506Z",
"deletionTimestamp": "2023-12-01T21:31:48.506Z",
"labels": {},
"lastModifiedTimestamp": "2023-12-01T21:31:48.506Z",
"name": "string",
"uid": "string"
},
"specSummary": {
"draft": {
"cloudType": "string",
"packs": [
{
"addonType": "string",
"annotations": {},
"displayName": "string",
"layer": "kernel",
"logoUrl": "string",
"name": "string",
"packUid": "string",
"tag": "string",
"type": "string",
"version": "string"
}
],
"type": "string"
},
"published": {
"cloudType": "string",
"packs": [
{
"addonType": "string",
"annotations": {},
"displayName": "string",
"layer": "kernel",
"logoUrl": "string",
"name": "string",
"packUid": "string",
"tag": "string",
"type": "string",
"version": "string"
}
],
"type": "string"
},
"version": "string",
"versions": [
{
"uid": "string",
"version": "string"
}
]
},
"status": {
"fips": {
"mode": "none"
},
"inUseClusterUids": [
"string"
],
"inUseClusters": [
{
"name": "string",
"uid": "string"
}
],
"isPublished": true,
"pack": {
"deleted": 0,
"deprecated": 0,
"disabled": 0
}
}
}
- curl
- python
- go
- nodejs
- java
- CURL
curl -L -X GET 'https://api.spectrocloud.com/v1/dashboard/clusterprofiles/:uid' \
-H 'Accept: application/json' \
-H 'ApiKey: <API_KEY_VALUE>'