- Home
- API MCP Server
- tools
- cloud-infrastructure
- Discover VPC
Discover VPC
Returns all the vpcs for a specified cloud provider, region and cred. For AWS it returns all the vpcs which are not attached to any transit gateway in that region.
| Tool | Description |
|---|---|
f5xc-api-cloudinfrastructure-discover-vpc-create | Cloud Connect VPC Discovery. |
Example Usage
Section titled “Example Usage”Ask Claude to help you work with Discover VPC resources:
Create Discover VPC
Section titled “Create Discover VPC”“Create a discover-vpc 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}/discover_vpcs" \ -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}/discover_vpcs/<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}/discover_vpcs" \ -H "Authorization: APIToken ${F5XC_API_TOKEN}" \ -H "Content-Type: application/json" \ -d @discover_vpc.json
# Delete resourcecurl -X DELETE "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/discover_vpcs/<name>" \ -H "Authorization: APIToken ${F5XC_API_TOKEN}"