Skip to content

Bgpstatu

Returned from list of BGP status objects for a given view.

ToolDescription
f5xc-api-network-bgpstatu-listGET BGP Status for view.
ParameterDescriptionExample
namespaceNamespace-
view_nameName of view-
ParameterDescriptionExample
view_kindKind of view of which BGP status objects are requested e.g. Aws_tgw_site.-

Ask Claude to help you work with Bgpstatu resources:

“List all bgpstatus in the ‘production’ namespace”

Terminal window
# List resources
curl -X GET "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/bgpstatus" \
-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}/bgpstatus/<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}/bgpstatus" \
-H "Authorization: APIToken ${F5XC_API_TOKEN}" \
-H "Content-Type: application/json" \
-d @bgpstatu.json
# Delete resource
curl -X DELETE "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/bgpstatus/<name>" \
-H "Authorization: APIToken ${F5XC_API_TOKEN}"