Skip to content

By Network

Medium Risk

Some operations on this resource may modify or delete data.

Request to GET l3l4 Network Traffic data.

Tools

Tool Description
f5xc-api-statistics-by-network-create L3l4 Network Traffic Query.

Parameters

Path Parameters

Parameter Description Example
namespace Namespace -
network_id NetworkId -

Side Effects

Operations on this resource may have the following effects:

Creates:

  • by-network

Example Usage

Ask Claude to help you work with By Network resources:

Create By Network

"Create a by-network named 'example' in the 'production' namespace"

CURL Examples

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

# Delete resource
curl -X DELETE "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/by_networks/<name>" \
  -H "Authorization: APIToken ${F5XC_API_TOKEN}"