Skip to content

Commit b2b021e

Browse files
author
ci.datadog-api-spec
committed
Regenerate client from commit 969f793 of spec repo
1 parent 1a62aca commit b2b021e

File tree

7 files changed

+3
-16
lines changed

7 files changed

+3
-16
lines changed

.generator/schemas/v1/openapi.yaml

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -34008,14 +34008,6 @@ paths:
3400834008
required: false
3400934009
schema:
3401034010
type: boolean
34011-
- description: The offset from which to start returning results.
34012-
in: query
34013-
name: start
34014-
required: false
34015-
schema:
34016-
default: 0
34017-
format: int64
34018-
type: integer
3401934011
- description: The maximum number of results to return.
3402034012
in: query
3402134013
name: count
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2025-07-22T14:56:49.377Z
1+
2025-08-28T16:14:27.195Z

cassettes/features/v1/synthetics/Search-Synthetic-tests-with-boolean-query-parameters.yml

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

examples/v1/synthetics/SearchTests_195957771.rb

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
include_full_config: true,
88
search_suites: true,
99
facets_only: true,
10-
start: 10,
1110
count: 5,
1211
sort: "name,desc",
1312
}

features/scenarios_model_mapping.rb

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -758,7 +758,6 @@
758758
"include_full_config" => "Boolean",
759759
"search_suites" => "Boolean",
760760
"facets_only" => "Boolean",
761-
"start" => "Integer",
762761
"count" => "Integer",
763762
"sort" => "String",
764763
},

features/v1/synthetics.feature

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -810,7 +810,6 @@ Feature: Synthetics
810810
And request contains "include_full_config" parameter with value true
811811
And request contains "search_suites" parameter with value true
812812
And request contains "facets_only" parameter with value true
813-
And request contains "start" parameter with value 10
814813
And request contains "count" parameter with value 5
815814
And request contains "sort" parameter with value "name,desc"
816815
When the request is sent

lib/datadog_api_client/v1/api/synthetics_api.rb

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1792,7 +1792,6 @@ def search_tests(opts = {})
17921792
# @option opts [Boolean] :include_full_config If true, include the full configuration for each test in the response.
17931793
# @option opts [Boolean] :search_suites If true, returns suites instead of tests.
17941794
# @option opts [Boolean] :facets_only If true, return only facets instead of full test details.
1795-
# @option opts [Integer] :start The offset from which to start returning results.
17961795
# @option opts [Integer] :count The maximum number of results to return.
17971796
# @option opts [String] :sort The sort order for the results (e.g., `name,asc` or `name,desc`).
17981797
# @return [Array<(SyntheticsListTestsResponse, Integer, Hash)>] SyntheticsListTestsResponse data, response status code and response headers
@@ -1810,7 +1809,6 @@ def search_tests_with_http_info(opts = {})
18101809
query_params[:'include_full_config'] = opts[:'include_full_config'] if !opts[:'include_full_config'].nil?
18111810
query_params[:'search_suites'] = opts[:'search_suites'] if !opts[:'search_suites'].nil?
18121811
query_params[:'facets_only'] = opts[:'facets_only'] if !opts[:'facets_only'].nil?
1813-
query_params[:'start'] = opts[:'start'] if !opts[:'start'].nil?
18141812
query_params[:'count'] = opts[:'count'] if !opts[:'count'].nil?
18151813
query_params[:'sort'] = opts[:'sort'] if !opts[:'sort'].nil?
18161814

0 commit comments

Comments
 (0)