Skip to content

Commit b874ce3

Browse files
author
ci.datadog-api-spec
committed
Regenerate client from commit e63790f2 of spec repo
1 parent bd24447 commit b874ce3

File tree

4 files changed

+15
-4
lines changed

4 files changed

+15
-4
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-03 19:47:16.708391",
8-
"spec_repo_commit": "b52549d9"
7+
"regenerated": "2025-02-03 21:41:13.490478",
8+
"spec_repo_commit": "e63790f2"
99
},
1010
"v2": {
1111
"apigentools_version": "1.6.6",
12-
"regenerated": "2025-02-03 19:47:16.725832",
13-
"spec_repo_commit": "b52549d9"
12+
"regenerated": "2025-02-03 21:41:13.505727",
13+
"spec_repo_commit": "e63790f2"
1414
}
1515
}
1616
}

.generator/schemas/v2/openapi.yaml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40224,6 +40224,14 @@ paths:
4022440224
required: false
4022540225
schema:
4022640226
type: string
40227+
- description: Filter metrics that are used in dashboards, monitors, notebooks,
40228+
SLOs.
40229+
example: true
40230+
in: query
40231+
name: filter[related_assets]
40232+
required: false
40233+
schema:
40234+
type: boolean
4022740235
- description: 'The number of seconds of look back (from now) to apply to a
4022840236
filter[tag] or filter[queried] query.
4022940237

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: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -614,6 +614,7 @@ def list_tag_configurations(opts = {})
614614
# @option opts [Boolean] :filter_include_percentiles Filter distributions with additional percentile aggregations enabled or disabled.
615615
# @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.
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 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)