delete_pod
Remove a pod from a Cisco API Gateway collection by specifying the collection name and pod number to manage your pod inventory and resources.
Instructions
Delete a pod from a collection by its number.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
collection | Yes | Collection name | |
number | Yes | Pod number to delete |
Input Schema (JSON Schema)
{
"properties": {
"collection": {
"description": "Collection name",
"type": "string"
},
"number": {
"description": "Pod number to delete",
"type": "number"
}
},
"required": [
"collection",
"number"
],
"type": "object"
}