Skip to content

Receiver

Replaces the content of an Data Delivery object.

ToolDescription
f5xc-api-dataintelligence-receiver-createCreate Data Delivery.
f5xc-api-dataintelligence-receiver-getGET Data Delivery.
f5xc-api-dataintelligence-receiver-listList Data Delivery.
f5xc-api-dataintelligence-receiver-updateReplace Data Delivery.
f5xc-api-dataintelligence-receiver-deleteDELETE Data Delivery.
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.azure_receiver-
spec.datadog_receiver-
spec.gcp_bucket_receiver-
spec.http_receiver-
spec.s3_receiver-
spec.splunk_receiver-
OptionDescriptionRecommended
spec.azure_receiver.batch.max_bytes-
spec.azure_receiver.batch.max_bytes_disabled-
OptionDescriptionRecommended
spec.azure_receiver.batch.max_events-
spec.azure_receiver.batch.max_events_disabled-
OptionDescriptionRecommended
spec.azure_receiver.batch.default_timeout_seconds-
spec.azure_receiver.batch.timeout_seconds-
OptionDescriptionRecommended
spec.azure_receiver.compression.gzip_compression-
spec.azure_receiver.compression.no_compression-
OptionDescriptionRecommended
spec.azure_receiver.connection_string.blindfold_secret_info-
spec.azure_receiver.connection_string.clear_secret_info-
OptionDescriptionRecommended
spec.datadog_receiver.endpoint-
spec.datadog_receiver.site-
OptionDescriptionRecommended
spec.datadog_receiver.no_tls-
spec.datadog_receiver.use_tls-
OptionDescriptionRecommended
spec.datadog_receiver.use_tls.no_ca-
spec.datadog_receiver.use_tls.trusted_ca_url-
OptionDescriptionRecommended
spec.datadog_receiver.use_tls.mtls_disabled-
spec.datadog_receiver.use_tls.mtls_enable-
OptionDescriptionRecommended
spec.datadog_receiver.use_tls.disable_verify_certificate-
spec.datadog_receiver.use_tls.enable_verify_certificate-
OptionDescriptionRecommended
spec.datadog_receiver.use_tls.disable_verify_hostname-
spec.datadog_receiver.use_tls.enable_verify_hostname-
OptionDescriptionRecommended
spec.http_receiver.auth_basic-
spec.http_receiver.auth_none-
spec.http_receiver.auth_token-

Ask Claude to help you work with Receiver resources:

“Create a receiver named ‘example’ in the ‘production’ namespace”

“List all receivers in the ‘production’ namespace”

“Get details of the receiver named ‘example’ in namespace ‘production‘“

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