Skip to content

Commit 79f1031

Browse files
author
ci.datadog-api-spec
committed
Regenerate client from commit cb847cd2 of spec repo
1 parent 2c9b212 commit 79f1031

File tree

4 files changed

+17
-6
lines changed

4 files changed

+17
-6
lines changed

.apigentools-info

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@
44
"spec_versions": {
55
"v1": {
66
"apigentools_version": "1.6.6",
7-
"regenerated": "2025-02-06 14:57:02.955326",
8-
"spec_repo_commit": "3c39fb0c"
7+
"regenerated": "2025-02-06 17:26:30.820855",
8+
"spec_repo_commit": "cb847cd2"
99
},
1010
"v2": {
1111
"apigentools_version": "1.6.6",
12-
"regenerated": "2025-02-06 14:57:02.970438",
13-
"spec_repo_commit": "3c39fb0c"
12+
"regenerated": "2025-02-06 17:26:30.836240",
13+
"spec_repo_commit": "cb847cd2"
1414
}
1515
}
1616
}

.generator/schemas/v2/openapi.yaml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40196,7 +40196,7 @@ paths:
4019640196
required: false
4019740197
schema:
4019840198
type: boolean
40199-
- description: '(Beta) Filter custom metrics that have or have not been queried
40199+
- description: '(Preview) Filter custom metrics that have or have not been queried
4020040200
in the specified window[seconds].
4020140201

4020240202
If no window is provided or the window is less than 2 hours, a default of
@@ -40217,6 +40217,14 @@ paths:
4021740217
required: false
4021840218
schema:
4021940219
type: string
40220+
- description: (Preview) Filter metrics that are used in dashboards, monitors,
40221+
notebooks, SLOs.
40222+
example: true
40223+
in: query
40224+
name: filter[related_assets]
40225+
required: false
40226+
schema:
40227+
type: boolean
4022040228
- description: 'The number of seconds of look back (from now) to apply to a
4022140229
filter[tag] or filter[queried] query.
4022240230

features/scenarios_model_mapping.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1658,6 +1658,7 @@
16581658
"filter_include_percentiles" => "Boolean",
16591659
"filter_queried" => "Boolean",
16601660
"filter_tags" => "String",
1661+
"filter_related_assets" => "Boolean",
16611662
"window_seconds" => "Integer",
16621663
"page_size" => "Integer",
16631664
"page_cursor" => "String",

lib/datadog_api_client/v2/api/metrics_api.rb

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -612,8 +612,9 @@ def list_tag_configurations(opts = {})
612612
# @option opts [String] :filter_tags_configured Filter tag configurations by configured tags.
613613
# @option opts [MetricTagConfigurationMetricTypeCategory] :filter_metric_type Filter metrics by metric type.
614614
# @option opts [Boolean] :filter_include_percentiles Filter distributions with additional percentile aggregations enabled or disabled.
615-
# @option opts [Boolean] :filter_queried (Beta) Filter custom metrics that have or have not been queried in the specified window[seconds]. If no window is provided or the window is less than 2 hours, a default of 2 hours will be applied.
615+
# @option opts [Boolean] :filter_queried (Preview) Filter custom metrics that have or have not been queried in the specified window[seconds]. If no window is provided or the window is less than 2 hours, a default of 2 hours will be applied.
616616
# @option opts [String] :filter_tags Filter metrics that have been submitted with the given tags. Supports boolean and wildcard expressions. Can only be combined with the filter[queried] filter.
617+
# @option opts [Boolean] :filter_related_assets (Preview) Filter metrics that are used in dashboards, monitors, notebooks, SLOs.
617618
# @option opts [Integer] :window_seconds 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).
618619
# @option opts [Integer] :page_size Maximum number of results returned.
619620
# @option opts [String] :page_cursor String to query the next page of results. This key is provided with each valid response from the API in `meta.pagination.next_cursor`. Once the `meta.pagination.next_cursor` key is null, all pages have been retrieved.
@@ -644,6 +645,7 @@ def list_tag_configurations_with_http_info(opts = {})
644645
query_params[:'filter[include_percentiles]'] = opts[:'filter_include_percentiles'] if !opts[:'filter_include_percentiles'].nil?
645646
query_params[:'filter[queried]'] = opts[:'filter_queried'] if !opts[:'filter_queried'].nil?
646647
query_params[:'filter[tags]'] = opts[:'filter_tags'] if !opts[:'filter_tags'].nil?
648+
query_params[:'filter[related_assets]'] = opts[:'filter_related_assets'] if !opts[:'filter_related_assets'].nil?
647649
query_params[:'window[seconds]'] = opts[:'window_seconds'] if !opts[:'window_seconds'].nil?
648650
query_params[:'page[size]'] = opts[:'page_size'] if !opts[:'page_size'].nil?
649651
query_params[:'page[cursor]'] = opts[:'page_cursor'] if !opts[:'page_cursor'].nil?

0 commit comments

Comments
 (0)