Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .generator/schemas/v1/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20236,7 +20236,7 @@ components:
type: string
billing_plan:
deprecated: true
description: The billing plan (metadata). (Deprecated from May 2026)
description: The billing plan (metadata). (Deprecated from June 2026)
type: string
end_date:
description: Shows the last date of usage.
Expand Down
22 changes: 13 additions & 9 deletions .generator/schemas/v2/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -91067,14 +91067,18 @@ paths:
- logs_read_data
/api/v2/metrics:
get:
description: "Returns all metrics that can be configured in the Metrics Summary
page or with Metrics without Limits\u2122 (matching additional filters if
specified).\nOptionally, paginate by using the `page[cursor]` and/or `page[size]`
query parameters.\nTo fetch the first page, pass in a query parameter with
either a valid `page[size]` or an empty cursor like `page[cursor]=`. To fetch
the next page, pass in the `next_cursor` value from the response as the new
`page[cursor]` value.\nOnce the `meta.pagination.next_cursor` value is null,
all pages have been retrieved."
description: 'Returns all metrics for your organization that match the given
filter parameters.

Optionally, paginate by using the `page[cursor]` and/or `page[size]` query
parameters.

To fetch the first page, pass in a query parameter with either a valid `page[size]`
or an empty cursor like `page[cursor]=`. To fetch the next page, pass in the
`next_cursor` value from the response as the new `page[cursor]` value.

Once the `meta.pagination.next_cursor` value is null, all pages have been
retrieved.'
operationId: ListTagConfigurations
parameters:
- description: Filter custom metrics that have configured tags.
Expand Down Expand Up @@ -91159,7 +91163,7 @@ paths:
- description: 'The number of seconds of look back (from now) to apply to a
filter[tag] or filter[queried] query.

Default value is 3600 (1 hour), maximum value is 2,592,000 (30 days).'
Default value is 3600 (1 hour), maximum value is 5,184,000 (60 days).'
example: 3600
in: query
name: window[seconds]
Expand Down
2 changes: 1 addition & 1 deletion api/datadogV1/model_usage_billable_summary_hour.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ type UsageBillableSummaryHour struct {
AccountName *string `json:"account_name,omitempty"`
// The account public ID.
AccountPublicId *string `json:"account_public_id,omitempty"`
// The billing plan (metadata). (Deprecated from May 2026)
// The billing plan (metadata). (Deprecated from June 2026)
// Deprecated
BillingPlan *string `json:"billing_plan,omitempty"`
// Shows the last date of usage.
Expand Down
2 changes: 1 addition & 1 deletion api/datadogV2/api_metrics.go
Original file line number Diff line number Diff line change
Expand Up @@ -912,7 +912,7 @@ func (r *ListTagConfigurationsOptionalParameters) WithPageCursor(pageCursor stri
}

// ListTagConfigurations Get a list of metrics.
// Returns all metrics that can be configured in the Metrics Summary page or with Metrics without Limits™ (matching additional filters if specified).
// Returns all metrics for your organization that match the given filter parameters.
// Optionally, paginate by using the `page[cursor]` and/or `page[size]` query parameters.
// To fetch the first page, pass in a query parameter with either a valid `page[size]` or an empty cursor like `page[cursor]=`. To fetch the next page, pass in the `next_cursor` value from the response as the new `page[cursor]` value.
// Once the `meta.pagination.next_cursor` value is null, all pages have been retrieved.
Expand Down
Loading