- Home
- API MCP Server
- tools
- tenant-and-identity
- other
- Acces
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.
| Tool | Description |
|---|---|
f5xc-api-tenantandidentity-acces-create | Update Support Tenant Access. |
f5xc-api-tenantandidentity-acces-list | GET Support Tenant Access. |
Configuration Choices
Section titled “Configuration Choices”This resource includes mutually exclusive configuration options:
access_type_choice
Section titled “access_type_choice”| Option | Description | Recommended |
|---|---|---|
access_config.read_only | - | |
access_config.read_write_all | - | |
access_config.read_write_ns | - |
Example Usage
Section titled “Example Usage”Ask Claude to help you work with Acces resources:
Create Acces
Section titled “Create Acces”“Create a acces named ‘example’ in the ‘production’ namespace”
List Access
Section titled “List Access”“List all access in the ‘production’ namespace”
CURL Examples
Section titled “CURL Examples”# List resourcescurl -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 resourcecurl -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 resourcecurl -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 resourcecurl -X DELETE "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/access/<name>" \ -H "Authorization: APIToken ${F5XC_API_TOKEN}"