Skip to content

Bgpstatu

Low Risk

Operations on this resource are generally safe.

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

Tools

Tool Description
f5xc-api-network-bgpstatu-list GET BGP Status for view.

Parameters

Path Parameters

Parameter Description Example
namespace Namespace -
view_name Name of view -

Query Parameters

Parameter Description Example
view_kind Kind of view of which BGP status objects are requested e.g. Aws_tgw_site. -

Example Usage

Ask Claude to help you work with Bgpstatu resources:

List Bgpstatus

"List all bgpstatus in the 'production' namespace"

CURL Examples

# 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}"