remove_deployment
Delete a specified deployment by its name to manage resources effectively. Returns details of the removed deployment for tracking and verification.
Instructions
Remove an existing deployment.
Args: deployment_name: The name of the deployment to remove.
Returns: A dictionary containing the response message and details of the deleted deployment.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
deployment_name | Yes |
Input Schema (JSON Schema)
{
"properties": {
"deployment_name": {
"title": "Deployment Name",
"type": "string"
}
},
"required": [
"deployment_name"
],
"title": "remove_deploymentArguments",
"type": "object"
}