Skip to main content

tag_pipeline_ruleset_statuses

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

Overview

Nametag_pipeline_ruleset_statuses
TypeResource
Iddatadog.cloud_costs.tag_pipeline_ruleset_statuses

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstringThe unique identifier of the ruleset. (example: 55ef2385-9ae1-4410-90c4-5ac1b60fec10)
attributesobjectProcessing status for a tag pipeline ruleset.
typestringRuleset status resource type. (ruleset_status) (default: ruleset_status, example: ruleset_status)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_tag_pipelines_rulesets_statusselectList 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.

NameDatatypeDescription
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.

SELECT examples

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
;