- Home
- API MCP Server
- tools
- tenant-and-identity
- other
- Update Allow Advertise On Public
Update Allow Advertise On Public
UpdateAllowAdvertiseOnPublic can update a config to allow advertise on public.
| Tool | Description |
|---|---|
f5xc-api-tenantandidentity-update-allow-advertise-on-public-create | Update allow advertise on public. |
Example Usage
Section titled “Example Usage”Ask Claude to help you work with Update Allow Advertise On Public resources:
Create Update Allow Advertise On Public
Section titled “Create Update Allow Advertise On Public”“Create a update-allow-advertise-on-public 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}/update_allow_advertise_on_publics" \ -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}/update_allow_advertise_on_publics/<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}/update_allow_advertise_on_publics" \ -H "Authorization: APIToken ${F5XC_API_TOKEN}" \ -H "Content-Type: application/json" \ -d @update_allow_advertise_on_public.json
# Delete resourcecurl -X DELETE "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/update_allow_advertise_on_publics/<name>" \ -H "Authorization: APIToken ${F5XC_API_TOKEN}"