@@ -33427,6 +33427,86 @@ paths:
3342733427 operator: OR
3342833428 permissions:
3342933429 - synthetics_write
33430+ /api/v1/synthetics/tests/search:
33431+ get:
33432+ description: Search for Synthetic tests and Test Suites.
33433+ operationId: SearchTests
33434+ parameters:
33435+ - description: If true, include the full configuration for each test in the
33436+ response.
33437+ in: query
33438+ name: include_full_config
33439+ required: false
33440+ schema:
33441+ type: boolean
33442+ - description: If true, returns suites instead of tests.
33443+ in: query
33444+ name: search_suites
33445+ required: false
33446+ schema:
33447+ type: boolean
33448+ - description: If true, return only facets instead of full test details.
33449+ in: query
33450+ name: facets_only
33451+ required: false
33452+ schema:
33453+ type: boolean
33454+ - description: The offset from which to start returning results.
33455+ in: query
33456+ name: start
33457+ required: false
33458+ schema:
33459+ default: 0
33460+ format: int64
33461+ type: integer
33462+ - description: The maximum number of results to return.
33463+ in: query
33464+ name: count
33465+ required: false
33466+ schema:
33467+ default: 50
33468+ format: int64
33469+ type: integer
33470+ - description: The sort order for the results (e.g., 'name,asc' or 'name,desc').
33471+ in: query
33472+ name: sort
33473+ required: false
33474+ schema:
33475+ default: name,asc
33476+ type: string
33477+ responses:
33478+ '200':
33479+ content:
33480+ application/json:
33481+ schema:
33482+ $ref: '#/components/schemas/SyntheticsListTestsResponse'
33483+ description: OK - Returns the list of Synthetic tests matching the search.
33484+ '403':
33485+ content:
33486+ application/json:
33487+ schema:
33488+ $ref: '#/components/schemas/APIErrorResponse'
33489+ description: Forbidden
33490+ '404':
33491+ content:
33492+ application/json:
33493+ schema:
33494+ $ref: '#/components/schemas/APIErrorResponse'
33495+ description: Not found
33496+ '429':
33497+ $ref: '#/components/responses/TooManyRequestsResponse'
33498+ security:
33499+ - apiKeyAuth: []
33500+ appKeyAuth: []
33501+ - AuthZ:
33502+ - synthetics_read
33503+ summary: Search Synthetic tests
33504+ tags:
33505+ - Synthetics
33506+ x-permission:
33507+ operator: OR
33508+ permissions:
33509+ - synthetics_read
3343033510 /api/v1/synthetics/tests/trigger:
3343133511 post:
3343233512 description: Trigger a set of Synthetic tests.
@@ -33867,13 +33947,16 @@ paths:
3386733947 appKeyAuth: []
3386833948 - AuthZ:
3386933949 - synthetics_global_variable_read
33950+ - AuthZ:
33951+ - apm_api_catalog_read
3387033952 summary: Get all global variables
3387133953 tags:
3387233954 - Synthetics
3387333955 x-permission:
3387433956 operator: OR
3387533957 permissions:
3387633958 - synthetics_global_variable_read
33959+ - apm_api_catalog_read
3387733960 post:
3387833961 description: Create a Synthetic global variable.
3387933962 operationId: CreateGlobalVariable
@@ -37222,13 +37305,21 @@ tags:
3722237305 name: Slack Integration
3722337306- description: Take graph snapshots using the API.
3722437307 name: Snapshots
37225- - description: "Datadog Synthetic Monitoring uses simulated user requests and browser
37226- rendering to help you ensure uptime,\nidentify regional issues, and track your
37227- application performance. Synthetic tests come in\ntwo different flavors, [API
37228- tests](https://docs.datadoghq.com/synthetics/api_tests/?tab=httptest)\nand [browser
37229- tests](https://docs.datadoghq.com/synthetics/browser_tests). You can use Datadog\u2019s
37230- API to\nmanage both test types programmatically.\n\nFor more information, see
37231- the [Synthetic Monitoring documentation](https://docs.datadoghq.com/synthetics/)."
37308+ - description: 'Datadog Synthetic Monitoring uses simulated user requests and browser
37309+ rendering to help you ensure uptime,
37310+
37311+ identify regional issues, and track your application performance. Synthetic tests
37312+ come in
37313+
37314+ two different flavors, [API tests](https://docs.datadoghq.com/synthetics/api_tests/?tab=httptest)
37315+
37316+ and [browser tests](https://docs.datadoghq.com/synthetics/browser_tests). You
37317+ can use Datadog''s API to
37318+
37319+ manage both test types programmatically.
37320+
37321+
37322+ For more information, see the [Synthetic Monitoring documentation](https://docs.datadoghq.com/synthetics/).'
3723237323 name: Synthetics
3723337324- description: 'The tag endpoint allows you to assign tags to hosts,
3723437325
0 commit comments