Analyze For Deletion¶
Medium Risk
Some operations on this resource may modify or delete data.
AnalyzeForDeletion checks the references of the object to make sure it is deletable.
Tools¶
| Tool | Description |
|---|---|
f5xc-api-tenantandidentity-analyze-for-deletion-create | Analyze For Deletion. |
Side Effects¶
Operations on this resource may have the following effects:
Creates:
- analyze-for-deletion
Example Usage¶
Ask Claude to help you work with Analyze For Deletion resources:
Create Analyze For Deletion¶
"Create a analyze-for-deletion named 'example' in the 'production' namespace"
CURL Examples¶
# List resources
curl -X GET "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/analyze_for_deletions" \
-H "Authorization: APIToken ${F5XC_API_TOKEN}" \
-H "Content-Type: application/json"
# Get specific resource
curl -X GET "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/analyze_for_deletions/<name>" \
-H "Authorization: APIToken ${F5XC_API_TOKEN}" \
-H "Content-Type: application/json"
# Create resource
curl -X POST "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/analyze_for_deletions" \
-H "Authorization: APIToken ${F5XC_API_TOKEN}" \
-H "Content-Type: application/json" \
-d @analyze_for_deletion.json
# Delete resource
curl -X DELETE "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/analyze_for_deletions/<name>" \
-H "Authorization: APIToken ${F5XC_API_TOKEN}"