Skip to content

Validate Config

Medium Risk

Some operations on this resource may modify or delete data.

Validate AWS TGW Config.

Tools

Tool Description
f5xc-api-sites-validate-config-create Validate AWS TGW Config.

Parameters

Path Parameters

Parameter Description Example
name Name -
namespace Namespace -

Side Effects

Operations on this resource may have the following effects:

Creates:

  • validate-config

Example Usage

Ask Claude to help you work with Validate Config resources:

Create Validate Config

"Create a validate-config named 'example' in the 'production' namespace"

CURL Examples

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

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