Skip to content

Trusted Ca List

Shape of the Root CA Certificate specification.

ToolDescription
f5xc-api-certificates-trusted-ca-list-createCreate Root CA Certificate.
f5xc-api-certificates-trusted-ca-list-getGET Root CA Certificate.
f5xc-api-certificates-trusted-ca-list-listList Root CA Certificate.
f5xc-api-certificates-trusted-ca-list-updateReplace Root CA Certificate.
f5xc-api-certificates-trusted-ca-list-deleteDELETE Root CA Certificate.
ParameterDescriptionExample
metadata.namespaceNamespace-
nameName-
namespaceNamespace-
metadata.nameName-
ParameterDescriptionExample
response_formatThe format in which the configuration object is to be fetched. This could be for example-
label_filterA LabelSelectorType expression that every item in list response will satisfy.-
report_fieldsThe report_fields parameter-
report_status_fieldsThe report_status_fields parameter-

Ask Claude to help you work with Trusted Ca List resources:

“Create a trusted-ca-list named ‘example’ in the ‘production’ namespace”

“List all trusted-ca-lists in the ‘production’ namespace”

“Get details of the trusted-ca-list named ‘example’ in namespace ‘production‘“

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