- Home
- API MCP Server
- tools
- tenant-and-identity
- other
- Fast Acls For Internet Vip
Fast Acls For Internet Vip
SetFastACLsForInternetVIPs activates the passed list of FastACLs for Internet VIPs. An emtpy list in the request will clear FastACLs for Internet VIPs.
| Tool | Description |
|---|---|
f5xc-api-tenantandidentity-fast-acls-for-internet-vip-create | Set FastACLs For Internet VIPs. |
f5xc-api-tenantandidentity-fast-acls-for-internet-vip-list | GET FastACLs For Internet VIPs. |
Parameters
Section titled “Parameters”Path Parameters
Section titled “Path Parameters”| Parameter | Description | Example |
|---|---|---|
namespace | Namespace | - |
Example Usage
Section titled “Example Usage”Ask Claude to help you work with Fast Acls For Internet Vip resources:
Create Fast Acls For Internet Vip
Section titled “Create Fast Acls For Internet Vip”“Create a fast-acls-for-internet-vip named ‘example’ in the ‘production’ namespace”
List Fast Acls For Internet Vips
Section titled “List Fast Acls For Internet Vips”“List all fast-acls-for-internet-vips in the ‘production’ namespace”
CURL Examples
Section titled “CURL Examples”# List resourcescurl -X GET "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/fast_acls_for_internet_vips" \ -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}/fast_acls_for_internet_vips/<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}/fast_acls_for_internet_vips" \ -H "Authorization: APIToken ${F5XC_API_TOKEN}" \ -H "Content-Type: application/json" \ -d @fast_acls_for_internet_vip.json
# Delete resourcecurl -X DELETE "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/fast_acls_for_internet_vips/<name>" \ -H "Authorization: APIToken ${F5XC_API_TOKEN}"