Skip to main content

monitoring_dataset_version_histories

Creates, updates, deletes, gets or lists a monitoring_dataset_version_histories resource.

Overview

Namemonitoring_dataset_version_histories
TypeResource
Iddatadog.security.monitoring_dataset_version_histories

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstringThe UUID of the dataset. (example: 123e4567-e89b-12d3-a456-426614174000)
attributesobjectThe attributes of a dataset version history response.
typestringThe type of resource for a dataset version history response. (dataset_version_history) (example: dataset_version_history)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_security_monitoring_dataset_version_historyselectdataset_idpage[size], page[number]Retrieve the version history of a Cloud SIEM dataset, including the changes made at each version.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
dataset_idstringThe UUID of the dataset.
sitestringThe Datadog site (region) for your organization, for example datadoghq.com, us3.datadoghq.com, us5.datadoghq.com, ap1.datadoghq.com, ap2.datadoghq.com, datadoghq.eu, ddog-gov.com. Resolved from the DD_SITE environment variable when set. Optional: defaults to datadoghq.com, or the value of the DD_SITE environment variable when set; a WHERE value overrides both.
page[number]integer (int64)Specific page number to return.
page[size]integer (int64)Size for a given page. The maximum allowed value is 100.

SELECT examples

Retrieve the version history of a Cloud SIEM dataset, including the changes made at each version.

SELECT
id,
attributes,
type
FROM datadog.security.monitoring_dataset_version_histories
WHERE dataset_id = '{{ dataset_id }}' -- required
AND page[size] = '{{ page[size] }}'
AND page[number] = '{{ page[number] }}'
;