- Home
- API MCP Server
- tools
- tenant-and-identity
- other
- Active Network Policie
Active Network Policie
SetActiveNetworkPolicies sets the active network policies for the namespace An emtpy list in the request will clear the active network policies for the namespace.
| Tool | Description |
|---|---|
f5xc-api-tenantandidentity-active-network-policie-create | Set Active Network Policies. |
f5xc-api-tenantandidentity-active-network-policie-list | GET Active Network Policies. |
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 Active Network Policie resources:
Create Active Network Policie
Section titled “Create Active Network Policie”“Create a active-network-policie named ‘example’ in the ‘production’ namespace”
List Active Network Policies
Section titled “List Active Network Policies”“List all active-network-policies in the ‘production’ namespace”
CURL Examples
Section titled “CURL Examples”# List resourcescurl -X GET "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/active_network_policies" \ -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}/active_network_policies/<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}/active_network_policies" \ -H "Authorization: APIToken ${F5XC_API_TOKEN}" \ -H "Content-Type: application/json" \ -d @active_network_policie.json
# Delete resourcecurl -X DELETE "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/active_network_policies/<name>" \ -H "Authorization: APIToken ${F5XC_API_TOKEN}"