monitoring_security_filter_versions
Creates, updates, deletes, gets or lists a monitoring_security_filter_versions resource.
Overview
| Name | monitoring_security_filter_versions |
| Type | Resource |
| Id | datadog.security.monitoring_security_filter_versions |
Fields
The following fields are returned by SELECT queries:
- list_security_filter_versions
| Name | Datatype | Description |
|---|---|---|
id | string | The identifier of the configuration version. (example: 1) |
attributes | object | The attributes describing a single security filter configuration version. |
type | string | The type of the resource. The value should always be security_filters_configuration. (security_filters_configuration) (default: security_filters_configuration, example: security_filters_configuration) |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_security_filter_versions | select | Get the configured security filters at each historical version of the configuration.<br />Each entry in the response represents the set of all security filters at a given version,<br />ordered from the most recent version to the oldest. |
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 |
|---|---|---|
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. |
SELECT examples
- list_security_filter_versions
Get the configured security filters at each historical version of the configuration.<br />Each entry in the response represents the set of all security filters at a given version,<br />ordered from the most recent version to the oldest.
SELECT
id,
attributes,
type
FROM datadog.security.monitoring_security_filter_versions
;