Skip to content

ResourceType

Getresourcetypesbyid CustomPublicAPI.

ToolDescription
f5xc-api-tenantandidentity-resourcetype-getGET supported resources type.
f5xc-api-tenantandidentity-resourcetype-listGET supported resources type.
ParameterDescriptionExample
idID-
ParameterDescriptionExample
excludedAttributesMembers”]“-

Ask Claude to help you work with ResourceType resources:

“List all ResourceTypes in the ‘production’ namespace”

“Get details of the ResourceType named ‘example’ in namespace ‘production‘“

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