Skip to content

Known Label Key

Low Risk

Operations on this resource are generally safe.

GET is generic label key query. Two types of queries are supported Return label with exact matching entry label key. Return list of labels that have prefix of label key . Returns list of label keys. Query will look into current tenants shared namespace and VES-I/O shared.

Tools

Tool Description
f5xc-api-users-known-label-key-list GET

Parameters

Path Parameters

Parameter Description Example
namespace Namespace -

Query Parameters

Parameter Description Example
key Key to retrieve. -
query Query Type -

Example Usage

Ask Claude to help you work with Known Label Key resources:

List Known Label Keys

"List all known-label-keys in the 'production' namespace"

CURL Examples

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

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