Skip to content

Resync Crl

Resync CRL by downloading from the server again.

ToolDescription
f5xc-api-support-resync-crl-createResync CRL.
ParameterDescriptionExample
namespaceNamespace-
siteSite Name-

This resource includes mutually exclusive configuration options:

OptionDescriptionRecommended
name-
uid-

Ask Claude to help you work with Resync Crl resources:

“Create a resync-crl named ‘example’ in the ‘production’ namespace”

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