delete-pod
Remove a specific pod from the RunPod platform by providing its unique ID to free up resources and manage infrastructure.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
podId | Yes | ID of the pod to delete |
Input Schema (JSON Schema)
{
"properties": {
"podId": {
"description": "ID of the pod to delete",
"type": "string"
}
},
"required": [
"podId"
],
"type": "object"
}