Application
Application provides tools for creating, listing, and deleting resources in F5 Distributed Cloud.
| Tool | Description |
|---|---|
f5xc-api-shape-application-create | Update Application. |
f5xc-api-shape-application-list | GetApplications. |
f5xc-api-shape-application-delete | Delete Application. |
Parameters
Section titled “Parameters”Query Parameters
Section titled “Query Parameters”| Parameter | Description | Example |
|---|---|---|
app_id | Target application ID to DELETE. | - |
Example Usage
Section titled “Example Usage”Ask Claude to help you work with Application resources:
Create Application
Section titled “Create Application”“Create a application named ‘example’ in the ‘production’ namespace”
List Applications
Section titled “List Applications”“List all applications in the ‘production’ namespace”
CURL Examples
Section titled “CURL Examples”# List resourcescurl -X GET "https://${TENANT}.console.ves.volterra.io/api/shape/dip/namespaces/system/applications" \ -H "Authorization: APIToken ${F5XC_API_TOKEN}"
# Create resourcecurl -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 resourcecurl -X DELETE "https://${TENANT}.console.ves.volterra.io/api/shape/dip/namespaces/system/application" \ -H "Authorization: APIToken ${F5XC_API_TOKEN}"