Skip to content

{view Kind}

Low Risk

Operations on this resource are generally safe.

Returned from list of terraform parameter objects for a given view.

Tools

Tool Description
f5xc-api-marketplace-view-kind-list GET Terraform Parameters for view.

Parameters

Path Parameters

Parameter Description Example
namespace Namespace -
view_kind Kind of View -
view_name Name of view -

Example Usage

Ask Claude to help you work with {view Kind} resources:

List {view Kind}s

"List all {view-kind}s in the 'production' namespace"

CURL Examples

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

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