Skip to content
Closed
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
8 changes: 0 additions & 8 deletions .generator/schemas/v1/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34008,14 +34008,6 @@ paths:
required: false
schema:
type: boolean
- description: The offset from which to start returning results.
in: query
name: start
required: false
schema:
default: 0
format: int64
type: integer
- description: The maximum number of results to return.
in: query
name: count
Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2025-07-22T14:56:49.377Z
2025-08-28T16:14:27.195Z

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion examples/v1/synthetics/SearchTests_195957771.rb
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
include_full_config: true,
search_suites: true,
facets_only: true,
start: 10,
count: 5,
sort: "name,desc",
}
Expand Down
1 change: 0 additions & 1 deletion features/scenarios_model_mapping.rb
Original file line number Diff line number Diff line change
Expand Up @@ -758,7 +758,6 @@
"include_full_config" => "Boolean",
"search_suites" => "Boolean",
"facets_only" => "Boolean",
"start" => "Integer",
"count" => "Integer",
"sort" => "String",
},
Expand Down
1 change: 0 additions & 1 deletion features/v1/synthetics.feature
Original file line number Diff line number Diff line change
Expand Up @@ -810,7 +810,6 @@ Feature: Synthetics
And request contains "include_full_config" parameter with value true
And request contains "search_suites" parameter with value true
And request contains "facets_only" parameter with value true
And request contains "start" parameter with value 10
And request contains "count" parameter with value 5
And request contains "sort" parameter with value "name,desc"
When the request is sent
Expand Down
2 changes: 0 additions & 2 deletions lib/datadog_api_client/v1/api/synthetics_api.rb
Original file line number Diff line number Diff line change
Expand Up @@ -1792,7 +1792,6 @@ def search_tests(opts = {})
# @option opts [Boolean] :include_full_config If true, include the full configuration for each test in the response.
# @option opts [Boolean] :search_suites If true, returns suites instead of tests.
# @option opts [Boolean] :facets_only If true, return only facets instead of full test details.
# @option opts [Integer] :start The offset from which to start returning results.
# @option opts [Integer] :count The maximum number of results to return.
# @option opts [String] :sort The sort order for the results (e.g., `name,asc` or `name,desc`).
# @return [Array<(SyntheticsListTestsResponse, Integer, Hash)>] SyntheticsListTestsResponse data, response status code and response headers
Expand All @@ -1810,7 +1809,6 @@ def search_tests_with_http_info(opts = {})
query_params[:'include_full_config'] = opts[:'include_full_config'] if !opts[:'include_full_config'].nil?
query_params[:'search_suites'] = opts[:'search_suites'] if !opts[:'search_suites'].nil?
query_params[:'facets_only'] = opts[:'facets_only'] if !opts[:'facets_only'].nil?
query_params[:'start'] = opts[:'start'] if !opts[:'start'].nil?
query_params[:'count'] = opts[:'count'] if !opts[:'count'].nil?
query_params[:'sort'] = opts[:'sort'] if !opts[:'sort'].nil?

Expand Down
Loading