- Home
- API MCP Server
- tools
- network
- other
- Bgpstatu
Bgpstatu
Returned from list of BGP status objects for a given view.
| Tool | Description |
|---|---|
f5xc-api-network-bgpstatu-list | GET BGP Status for view. |
Parameters
Section titled “Parameters”Path Parameters
Section titled “Path Parameters”| Parameter | Description | Example |
|---|---|---|
namespace | Namespace | - |
view_name | Name of view | - |
Query Parameters
Section titled “Query Parameters”| Parameter | Description | Example |
|---|---|---|
view_kind | Kind of view of which BGP status objects are requested e.g. Aws_tgw_site. | - |
Example Usage
Section titled “Example Usage”Ask Claude to help you work with Bgpstatu resources:
List Bgpstatus
Section titled “List Bgpstatus”“List all bgpstatus in the ‘production’ namespace”
CURL Examples
Section titled “CURL Examples”# List resourcescurl -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 resourcecurl -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 resourcecurl -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 resourcecurl -X DELETE "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/bgpstatus/<name>" \ -H "Authorization: APIToken ${F5XC_API_TOKEN}"