Skip to content

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.

ToolDescription
f5xc-api-cloudinfrastructure-discover-vpc-createCloud Connect VPC Discovery.

Ask Claude to help you work with Discover VPC resources:

“Create a discover-vpc named ‘example’ in the ‘production’ namespace”

Terminal window
# List resources
curl -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 resource
curl -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 resource
curl -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 resource
curl -X DELETE "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/discover_vpcs/<name>" \
-H "Authorization: APIToken ${F5XC_API_TOKEN}"