Skip to content

Active Service Policie

SetActiveServicePolicies sets the active service policies for the namespace An emtpy list in the request will clear the active service policies for the namespace.

ToolDescription
f5xc-api-tenantandidentity-active-service-policie-createSet Active Service Policies.
f5xc-api-tenantandidentity-active-service-policie-listGET Active Service Policies.
ParameterDescriptionExample
namespaceNamespace-

Ask Claude to help you work with Active Service Policie resources:

“Create a active-service-policie named ‘example’ in the ‘production’ namespace”

“List all active-service-policies in the ‘production’ namespace”

Terminal window
# List resources
curl -X GET "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/active_service_policies" \
-H "Authorization: APIToken ${F5XC_API_TOKEN}" \
-H "Content-Type: application/json"
# Get specific resource
curl -X GET "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/active_service_policies/<name>" \
-H "Authorization: APIToken ${F5XC_API_TOKEN}" \
-H "Content-Type: application/json"
# Create resource
curl -X POST "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/active_service_policies" \
-H "Authorization: APIToken ${F5XC_API_TOKEN}" \
-H "Content-Type: application/json" \
-d @active_service_policie.json
# Delete resource
curl -X DELETE "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/active_service_policies/<name>" \
-H "Authorization: APIToken ${F5XC_API_TOKEN}"