tag_pipeline_ruleset_statuses
Creates, updates, deletes, gets or lists a tag_pipeline_ruleset_statuses resource.
Overview
| Name | tag_pipeline_ruleset_statuses |
| Type | Resource |
| Id | datadog.cloud_costs.tag_pipeline_ruleset_statuses |
Fields
The following fields are returned by SELECT queries:
- list_tag_pipelines_rulesets_status
| Name | Datatype | Description |
|---|---|---|
id | string | The unique identifier of the ruleset. (example: 55ef2385-9ae1-4410-90c4-5ac1b60fec10) |
attributes | object | Processing status for a tag pipeline ruleset. |
type | string | Ruleset status resource type. (ruleset_status) (default: ruleset_status, example: ruleset_status) |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_tag_pipelines_rulesets_status | select | List the processing status of all tag pipeline rulesets. Returns only the ID and processing status for each ruleset. |
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_tag_pipelines_rulesets_status
List the processing status of all tag pipeline rulesets. Returns only the ID and processing status for each ruleset.
SELECT
id,
attributes,
type
FROM datadog.cloud_costs.tag_pipeline_ruleset_statuses
;