Returns the specified cluster's manifest
GEThttps://api.spectrocloud.com/v1/spectroclusters/:uid/pack/manifests/:manifestUid
Authorization: ApiKey
name: ApiKeytype: apiKeydescription: API key authorization where API key can be generated from Palette console under Profile > My API Keysin: header
Returns the specified cluster's manifest
Request
Path Parameters
uid stringrequired
cluster uid
manifestUid stringrequired
manifest uid which is part of the pack ref
Query Parameters
resolveManifestValues boolean
resolve pack manifest values if set to true
Header Parameters
ProjectUid string
Scope the request to the specified project uid
Responses
- 200
Pack manifest content
- application/json
- Schema
- Example (from schema)
Schema
metadata object
spec
{
"metadata": {
"annotations": {},
"creationTimestamp": "2023-12-01T21:31:48.950Z",
"deletionTimestamp": "2023-12-01T21:31:48.950Z",
"labels": {},
"lastModifiedTimestamp": "2023-12-01T21:31:48.950Z",
"name": "string",
"uid": "string"
},
"spec": {
"published": {
"content": "string",
"digest": "string"
}
}
}
- curl
- python
- go
- nodejs
- java
- CURL
curl -L -X GET 'https://api.spectrocloud.com/v1/spectroclusters/:uid/pack/manifests/:manifestUid' \
-H 'Accept: application/json' \
-H 'ApiKey: <API_KEY_VALUE>'