monitoring_dataset_versions
Creates, updates, deletes, gets or lists a monitoring_dataset_versions resource.
Overview
| Name | monitoring_dataset_versions |
| Type | Resource |
| Id | datadog.security.monitoring_dataset_versions |
Fields
The following fields are returned by SELECT queries:
- get_security_monitoring_dataset_by_version
| Name | Datatype | Description |
|---|---|---|
id | string | The UUID of the dataset. (example: 123e4567-e89b-12d3-a456-426614174000) |
attributes | object | The attributes of a Cloud SIEM dataset. |
type | string | The type of resource for a dataset response. (dataset) (example: dataset) |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_security_monitoring_dataset_by_version | select | dataset_id, version | Retrieve a specific historical version of a Cloud SIEM dataset. |
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.
| Name | Datatype | Description |
|---|---|---|
dataset_id | string | The UUID of the dataset. |
site | string | The 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. |
version | integer (int64) | The version number of the dataset to retrieve. |
SELECT examples
- get_security_monitoring_dataset_by_version
Retrieve a specific historical version of a Cloud SIEM dataset.
SELECT
id,
attributes,
type
FROM datadog.security.monitoring_dataset_versions
WHERE dataset_id = '{{ dataset_id }}' -- required
AND version = '{{ version }}' -- required
;