@@ -2248,7 +2248,6 @@ func (a *SyntheticsApi) PatchTest(ctx _context.Context, publicId string, body Sy
22482248type SearchTestsOptionalParameters struct {
22492249 Text * string
22502250 IncludeFullConfig * bool
2251- SearchSuites * bool
22522251 FacetsOnly * bool
22532252 Start * int64
22542253 Count * int64
@@ -2273,12 +2272,6 @@ func (r *SearchTestsOptionalParameters) WithIncludeFullConfig(includeFullConfig
22732272 return r
22742273}
22752274
2276- // WithSearchSuites sets the corresponding parameter name and returns the struct.
2277- func (r * SearchTestsOptionalParameters ) WithSearchSuites (searchSuites bool ) * SearchTestsOptionalParameters {
2278- r .SearchSuites = & searchSuites
2279- return r
2280- }
2281-
22822275// WithFacetsOnly sets the corresponding parameter name and returns the struct.
22832276func (r * SearchTestsOptionalParameters ) WithFacetsOnly (facetsOnly bool ) * SearchTestsOptionalParameters {
22842277 r .FacetsOnly = & facetsOnly
@@ -2304,7 +2297,7 @@ func (r *SearchTestsOptionalParameters) WithSort(sort string) *SearchTestsOption
23042297}
23052298
23062299// SearchTests Search Synthetic tests.
2307- // Search for Synthetic tests and Test Suites .
2300+ // Search for Synthetic tests.
23082301func (a * SyntheticsApi ) SearchTests (ctx _context.Context , o ... SearchTestsOptionalParameters ) (SyntheticsListTestsResponse , * _nethttp.Response , error ) {
23092302 var (
23102303 localVarHTTPMethod = _nethttp .MethodGet
@@ -2336,9 +2329,6 @@ func (a *SyntheticsApi) SearchTests(ctx _context.Context, o ...SearchTestsOption
23362329 if optionalParams .IncludeFullConfig != nil {
23372330 localVarQueryParams .Add ("include_full_config" , datadog .ParameterToString (* optionalParams .IncludeFullConfig , "" ))
23382331 }
2339- if optionalParams .SearchSuites != nil {
2340- localVarQueryParams .Add ("search_suites" , datadog .ParameterToString (* optionalParams .SearchSuites , "" ))
2341- }
23422332 if optionalParams .FacetsOnly != nil {
23432333 localVarQueryParams .Add ("facets_only" , datadog .ParameterToString (* optionalParams .FacetsOnly , "" ))
23442334 }
0 commit comments