deployment_delete
Remove a specific code version linked to an Edge Routine on the ESA MCP Server. Input the deployment name and code version to initiate the deletion process.
Instructions
Delete a specified code version associated with an Edge Routine (ER).
Input Schema
Name | Required | Description | Default |
---|---|---|---|
codeVersion | Yes | The version of the code to delete | |
name | Yes | The name of the deployment to delete |
Input Schema (JSON Schema)
{
"properties": {
"codeVersion": {
"description": "The version of the code to delete",
"type": "string"
},
"name": {
"description": "The name of the deployment to delete",
"type": "string"
}
},
"required": [
"name",
"codeVersion"
],
"type": "object"
}