- Home
- API MCP Server
- tools
- observability
- observability
- TLS Report Summary
TLS Report Summary
Returns the TLS report summary including grade, score, and protocol names.
| Tool | Description |
|---|---|
f5xc-api-observability-tls-report-summary-list | GET TLS Report Summary. |
Parameters
Section titled “Parameters”Path Parameters
Section titled “Path Parameters”| Parameter | Description | Example |
|---|---|---|
namespace | Namespace | - |
Query Parameters
Section titled “Query Parameters”| Parameter | Description | Example |
|---|---|---|
monitor_name | Monitor_name. X-required | - |
Example Usage
Section titled “Example Usage”Ask Claude to help you work with TLS Report Summary resources:
List TLS Report Summarys
Section titled “List TLS Report Summarys”“List all tls-report-summarys in the ‘production’ namespace”
CURL Examples
Section titled “CURL Examples”# List resourcescurl -X GET "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/tls_report_summarys" \ -H "Authorization: APIToken ${F5XC_API_TOKEN}" \ -H "Content-Type: application/json"
# Get specific resourcecurl -X GET "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/tls_report_summarys/<name>" \ -H "Authorization: APIToken ${F5XC_API_TOKEN}" \ -H "Content-Type: application/json"
# Create resourcecurl -X POST "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/tls_report_summarys" \ -H "Authorization: APIToken ${F5XC_API_TOKEN}" \ -H "Content-Type: application/json" \ -d @tls_report_summary.json
# Delete resourcecurl -X DELETE "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/tls_report_summarys/<name>" \ -H "Authorization: APIToken ${F5XC_API_TOKEN}"