- Home
- API MCP Server
- tools
- marketplace
- Force Delete
Force Delete
Force DELETE view object. This can result in staled objects in cloud provider.
| Tool | Description |
|---|---|
f5xc-api-marketplace-force-delete-create | Force DELETE view. |
Parameters
Section titled “Parameters”Path Parameters
Section titled “Path Parameters”| Parameter | Description | Example |
|---|---|---|
namespace | Namespace | - |
view_kind | Kind of View | - |
view_name | Name of view | - |
Example Usage
Section titled “Example Usage”Ask Claude to help you work with Force Delete resources:
Create Force Delete
Section titled “Create Force Delete”“Create a force-delete named ‘example’ in the ‘production’ namespace”
CURL Examples
Section titled “CURL Examples”# List resourcescurl -X GET "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/force_deletes" \ -H "Authorization: APIToken ${F5XC_API_TOKEN}" \ -H "Content-Type: application/json"
# Get specific resourcecurl -X GET "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/force_deletes/<name>" \ -H "Authorization: APIToken ${F5XC_API_TOKEN}" \ -H "Content-Type: application/json"
# Create resourcecurl -X POST "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/force_deletes" \ -H "Authorization: APIToken ${F5XC_API_TOKEN}" \ -H "Content-Type: application/json" \ -d @force_delete.json
# Delete resourcecurl -X DELETE "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/force_deletes/<name>" \ -H "Authorization: APIToken ${F5XC_API_TOKEN}"