Skip to content

TLS Report Detail

Returns the HTML encoding of the generated TLS report.

ToolDescription
f5xc-api-observability-tls-report-detail-listGET TLS Report Detail.
ParameterDescriptionExample
namespaceNamespace-
ParameterDescriptionExample
monitor_nameMonitor_name. X-required-

Ask Claude to help you work with TLS Report Detail resources:

“List all tls-report-details in the ‘production’ namespace”

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