Managed Tenants List¶
Low Risk
Operations on this resource are generally safe.
GET full list of managed tenants access details. This response will contain full list of managed tenant based on the configuration and is not filtered by requesting user's group membership that enable access.
Tools¶
| Tool | Description |
|---|---|
f5xc-api-tenantandidentity-managed-tenants-list-list | GET List of Managed Tenant. |
Parameters¶
Query Parameters¶
| Parameter | Description | Example |
|---|---|---|
page_limit | PageLimit will hold the limit of items required per query. | - |
page_start | PageStart will hold the UUID of the first item in the requested page. | - |
search_keyword | Search Keyword for filtering the Managed Tenant List. | - |
Example Usage¶
Ask Claude to help you work with Managed Tenants List resources:
List Managed Tenants Lists¶
"List all managed-tenants-lists in the 'production' namespace"
CURL Examples¶
# List resources
curl -X GET "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/managed_tenants_lists" \
-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}/managed_tenants_lists/<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}/managed_tenants_lists" \
-H "Authorization: APIToken ${F5XC_API_TOKEN}" \
-H "Content-Type: application/json" \
-d @managed_tenants_list.json
# Delete resource
curl -X DELETE "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/managed_tenants_lists/<name>" \
-H "Authorization: APIToken ${F5XC_API_TOKEN}"