Skip to content

Available

Low Risk

Operations on this resource are generally safe.

List API definitions suitable for API Inventory management API Definitions which are associated at most with one app type. DEPRECATED: instead use ListAvailableAPIDefinitions in VES.I/o.schema.views.api_definition.publicconfigcustomapi.

Tools

Tool Description
f5xc-api-virtual-available-get List Available API Definitions.

Parameters

Path Parameters

Parameter Description Example
name Name -
namespace Namespace -

Example Usage

Ask Claude to help you work with Available resources:

Get Available Details

"Get details of the available named 'example' in namespace 'production'"

CURL Examples

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

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