Skip to content

Infraprotect Tunnel

List the set of infraprotect_tunnel in a namespace.

ToolDescription
f5xc-api-ddos-infraprotect-tunnel-createCreate DDoS Transit Tunnel.
f5xc-api-ddos-infraprotect-tunnel-getGET Tunnel.
f5xc-api-ddos-infraprotect-tunnel-listList Tunnel.
f5xc-api-ddos-infraprotect-tunnel-updateReplace DDoS Transit Tunnel.
f5xc-api-ddos-infraprotect-tunnel-deleteDELETE Tunnel.
ParameterDescriptionExample
metadata.namespaceNamespace-
nameName-
namespaceNamespace-
metadata.nameName-
ParameterDescriptionExample
response_formatThe format in which the configuration object is to be fetched. This could be for example-
label_filterA LabelSelectorType expression that every item in list response will satisfy.-
report_fieldsThe report_fields parameter-
report_status_fieldsThe report_status_fields parameter-

This resource includes mutually exclusive configuration options:

OptionDescriptionRecommended
spec.gre_ipv4-
spec.gre_ipv6-
spec.ip_in_ip-
spec.ipv6_to_ipv6-
OptionDescriptionRecommended
spec.bgp_information.no_secret-
spec.bgp_information.peer_secret_override-
spec.bgp_information.use_default_secret-
OptionDescriptionRecommended
spec.bgp_information.peer_secret_override.blindfold_secret_info-
spec.bgp_information.peer_secret_override.clear_secret_info-
OptionDescriptionRecommended
spec.gre_ipv4.fragmentation_disabled-
spec.gre_ipv4.fragmentation_enabled-
OptionDescriptionRecommended
spec.gre_ipv4.ipv6_interconnect_disabled-
spec.gre_ipv4.ipv6_interconnect_enabled-
OptionDescriptionRecommended
spec.gre_ipv4.keepalive_disabled-
spec.gre_ipv4.keepalive_enabled-
OptionDescriptionRecommended
spec.gre_ipv6.ipv4_interconnect_disabled-
spec.gre_ipv6.ipv4_interconnect_enabled-
OptionDescriptionRecommended
spec.tunnel_location.zone1-
spec.tunnel_location.zone2-

Ask Claude to help you work with Infraprotect Tunnel resources:

“Create a infraprotect-tunnel named ‘example’ in the ‘production’ namespace”

“List all infraprotect-tunnels in the ‘production’ namespace”

“Get details of the infraprotect-tunnel named ‘example’ in namespace ‘production‘“

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