Skip to content

Acces

This RPC can be used to manage user access for all flavors of support tenants currently supported by the platform. Use read-only, read-write with specific namespaces or admin can specify custom groups to control access by the support tenant user. Name is well-known identifier for a specific support related tenant.

ToolDescription
f5xc-api-tenantandidentity-acces-createUpdate Support Tenant Access.
f5xc-api-tenantandidentity-acces-listGET Support Tenant Access.

This resource includes mutually exclusive configuration options:

OptionDescriptionRecommended
access_config.read_only-
access_config.read_write_all-
access_config.read_write_ns-

Ask Claude to help you work with Acces resources:

“Create a acces named ‘example’ in the ‘production’ namespace”

“List all access in the ‘production’ namespace”

Terminal window
# List resources
curl -X GET "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/access" \
-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}/access/<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}/access" \
-H "Authorization: APIToken ${F5XC_API_TOKEN}" \
-H "Content-Type: application/json" \
-d @acces.json
# Delete resource
curl -X DELETE "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/access/<name>" \
-H "Authorization: APIToken ${F5XC_API_TOKEN}"