- Home
- API MCP Server
- tools
- statistics
- service-mesh
- Enable Visibility
Enable Visibility
Enable Visibility of the service in all workspaces. This action will make the discovered service visible within WAAP, App Connect where the user can perform the workspace specific actions.
| Tool | Description |
|---|---|
f5xc-api-statistics-enable-visibility-create | Enable visibility in all workspaces. |
Parameters
Section titled “Parameters”Path Parameters
Section titled “Path Parameters”| Parameter | Description | Example |
|---|---|---|
name | Service Name | - |
namespace | Namespace | - |
Example Usage
Section titled “Example Usage”Ask Claude to help you work with Enable Visibility resources:
Create Enable Visibility
Section titled “Create Enable Visibility”“Create a enable-visibility named ‘example’ in the ‘production’ namespace”
CURL Examples
Section titled “CURL Examples”# List resourcescurl -X GET "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/enable_visibilitys" \ -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}/enable_visibilitys/<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}/enable_visibilitys" \ -H "Authorization: APIToken ${F5XC_API_TOKEN}" \ -H "Content-Type: application/json" \ -d @enable_visibility.json
# Delete resourcecurl -X DELETE "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/enable_visibilitys/<name>" \ -H "Authorization: APIToken ${F5XC_API_TOKEN}"