Updates the specified application deployment tier manifest information
PUThttps://api.spectrocloud.com/v1/appDeployments/:uid/profile/tiers/:tierUid/manifests/:manifestUid
Updates the specified application deployment tier manifest information
Request
Path Parameters
uid stringrequired
Application deployment uid
tierUid stringrequired
Application deployment tier uid
manifestUid stringrequired
Application deployment tier manifest uid
- application/json
Body
contentstring
Manifest content in yaml
namestringrequired
Manifest name
uidstring
Manifest uid
Responses
- 204
The resource was updated successfully
- curl
- python
- go
- nodejs
- java
- CURL
curl -L -X PUT 'https://api.spectrocloud.com/v1/appDeployments/:uid/profile/tiers/:tierUid/manifests/:manifestUid' \
-H 'Content-Type: application/json' \
--data-raw '{
"content": "string",
"name": "string",
"uid": "string"
}'