- Home
- API MCP Server
- tools
- shape
- shape-security
- Atb
Atb
Enable/disable ATB.
| Tool | Description |
|---|---|
f5xc-api-shape-atb-create | ATB |
f5xc-api-shape-atb-list | ATB Status. |
Parameters
Section titled “Parameters”Path Parameters
Section titled “Path Parameters”| Parameter | Description | Example |
|---|---|---|
namespace | Namespace | - |
Query Parameters
Section titled “Query Parameters”| Parameter | Description | Example |
|---|---|---|
virtual_host | Name of Virtual Host to scope traffic overview query. | - |
Configuration Choices
Section titled “Configuration Choices”This resource includes mutually exclusive configuration options:
frequency
Section titled “frequency”| Option | Description | Recommended |
|---|---|---|
daily | - | |
monthly | - | |
weekly | - |
Example Usage
Section titled “Example Usage”Ask Claude to help you work with Atb resources:
Create Atb
Section titled “Create Atb”“Create a atb named ‘example’ in the ‘production’ namespace”
List Atbs
Section titled “List Atbs”“List all atbs in the ‘production’ namespace”
CURL Examples
Section titled “CURL Examples”# List resourcescurl -X GET "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/atbs" \ -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}/atbs/<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}/atbs" \ -H "Authorization: APIToken ${F5XC_API_TOKEN}" \ -H "Content-Type: application/json" \ -d @atb.json
# Delete resourcecurl -X DELETE "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/atbs/<name>" \ -H "Authorization: APIToken ${F5XC_API_TOKEN}"