standard_patterns
Creates, updates, deletes, gets or lists a standard_patterns
resource.
Overview
Name | standard_patterns |
Type | Resource |
Id | datadog.security.standard_patterns |
Fields
The following fields are returned by SELECT
queries:
- list_standard_patterns
Name | Datatype | Description |
---|---|---|
id | string | ID of the standard pattern. |
attributes | object | Attributes of the Sensitive Data Scanner standard pattern. |
type | string | Sensitive Data Scanner standard pattern type. (default: sensitive_data_scanner_standard_pattern, example: sensitive_data_scanner_standard_pattern) |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
list_standard_patterns | select | region | Returns all standard patterns. |
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 |
---|---|---|
region | string | (default: datadoghq.com) |
SELECT
examples
- list_standard_patterns
Returns all standard patterns.
SELECT
id,
attributes,
type
FROM datadog.security.standard_patterns
WHERE region = '{{ region }}' -- required
;