You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
description: Stable identifier of the tag description. Equals the tag key when the description is the cross-cloud default; encodes both the cloud and the tag key when the description is cloud-specific.
description: The tag key this description applies to.
15638
+
example: account_id
15639
+
type: string
15640
+
updated_at:
15641
+
description: Timestamp when the description was last updated, in RFC 3339 format.
15642
+
example: "2026-01-01T12:00:00Z"
15643
+
type: string
15644
+
required:
15645
+
- cloud
15646
+
- created_at
15647
+
- description
15648
+
- source
15649
+
- tag_key
15650
+
- updated_at
15651
+
type: object
15652
+
CostTagDescriptionSource:
15653
+
description: Origin of the description. `human` indicates the description was written by a user, `ai_generated` was produced by AI, and `datadog` is a default supplied by Datadog.
15654
+
enum:
15655
+
- human
15656
+
- ai_generated
15657
+
- datadog
15658
+
example: human
15659
+
type: string
15660
+
x-enum-varnames:
15661
+
- HUMAN
15662
+
- AI_GENERATED
15663
+
- DATADOG
15664
+
CostTagDescriptionType:
15665
+
default: cost_tag_description
15666
+
description: Type of the Cloud Cost Management tag description resource.
15667
+
enum:
15668
+
- cost_tag_description
15669
+
example: cost_tag_description
15670
+
type: string
15671
+
x-enum-varnames:
15672
+
- COST_TAG_DESCRIPTION
15673
+
CostTagDescriptionsResponse:
15674
+
description: List of Cloud Cost Management tag key descriptions for the organization, optionally filtered to a single cloud provider.
15675
+
example:
15676
+
data:
15677
+
- attributes:
15678
+
cloud: aws
15679
+
created_at: "2026-01-01T12:00:00Z"
15680
+
description: AWS account that owns this cost.
15681
+
source: human
15682
+
tag_key: account_id
15683
+
updated_at: "2026-01-01T12:00:00Z"
15684
+
id: account_id
15685
+
type: cost_tag_description
15686
+
properties:
15687
+
data:
15688
+
description: List of tag key descriptions.
15689
+
items:
15690
+
$ref: "#/components/schemas/CostTagDescription"
15691
+
type: array
15692
+
required:
15693
+
- data
15694
+
type: object
15603
15695
CoverageSummaryAttributes:
15604
15696
description: Attributes object for code coverage summary response.
15605
15697
properties:
@@ -96749,6 +96841,57 @@ paths:
96749
96841
operator: OR
96750
96842
permissions:
96751
96843
- cloud_cost_management_read
96844
+
/api/v2/cost/tag_descriptions:
96845
+
get:
96846
+
description: List Cloud Cost Management tag key descriptions for the organization. Use `filter[cloud]` to scope the result to a single cloud provider; when omitted, both cross-cloud defaults and cloud-specific descriptions are returned.
96847
+
operationId: ListCostTagDescriptions
96848
+
parameters:
96849
+
- description: Filter descriptions to a specific cloud provider (for example, `aws`). Omit to return descriptions across all clouds.
List Cloud Cost Management tag key descriptions for the organization. Use ``filter[cloud]`` to scope the result to a single cloud provider; when omitted, both cross-cloud defaults and cloud-specific descriptions are returned.
1367
+
1368
+
:param filter_cloud: Filter descriptions to a specific cloud provider (for example, ``aws`` ). Omit to return descriptions across all clouds.
A Cloud Cost Management tag key description, either cross-cloud or scoped to a single cloud provider.
40
+
41
+
:param attributes: Human-readable description and metadata attached to a Cloud Cost Management tag key, optionally scoped to a single cloud provider.
42
+
:type attributes: CostTagDescriptionAttributes
43
+
44
+
:param id: Stable identifier of the tag description. Equals the tag key when the description is the cross-cloud default; encodes both the cloud and the tag key when the description is cloud-specific.
45
+
:type id: str
46
+
47
+
:param type: Type of the Cloud Cost Management tag description resource.
0 commit comments