Skip to content

Application

Application provides tools for creating, listing, and deleting resources in F5 Distributed Cloud.

ToolDescription
f5xc-api-shape-application-createUpdate Application.
f5xc-api-shape-application-listGetApplications.
f5xc-api-shape-application-deleteDelete Application.
ParameterDescriptionExample
app_idTarget application ID to DELETE.-

Ask Claude to help you work with Application resources:

“Create a application named ‘example’ in the ‘production’ namespace”

“List all applications in the ‘production’ namespace”

Terminal window
# List resources
curl -X GET "https://${TENANT}.console.ves.volterra.io/api/shape/dip/namespaces/system/applications" \
-H "Authorization: APIToken ${F5XC_API_TOKEN}"
# Create resource
curl -X POST "https://${TENANT}.console.ves.volterra.io/api/shape/dip/namespaces/system/application" \
-H "Authorization: APIToken ${F5XC_API_TOKEN}" \
-H "Content-Type: application/json" \
-d @application.json
# Delete resource
curl -X DELETE "https://${TENANT}.console.ves.volterra.io/api/shape/dip/namespaces/system/application" \
-H "Authorization: APIToken ${F5XC_API_TOKEN}"