Skip to content

Report Config

Update the configuration by replacing the existing spec with the provided one. For read-then-write operations a resourceVersion mismatch will occur if the object was modified between the read and write.

ToolDescription
f5xc-api-statistics-report-config-createCreate Report Configuration.
f5xc-api-statistics-report-config-getGET Report Configuration.
f5xc-api-statistics-report-config-listList Report Configuration.
f5xc-api-statistics-report-config-updateReplace Report Configuration.
f5xc-api-statistics-report-config-deleteDELETE Report Configuration.
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-

This resource includes mutually exclusive configuration options:

OptionDescriptionRecommended
spec.bot_defense-
spec.waap-
OptionDescriptionRecommended
spec.waap.daily-
spec.waap.monthly-
spec.waap.weekly-
OptionDescriptionRecommended
spec.waap.current_namespace-
spec.waap.namespaces-

Ask Claude to help you work with Report Config resources:

“Create a report-config named ‘example’ in the ‘production’ namespace”

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

“Get details of the report-config named ‘example’ in namespace ‘production‘“

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