@@ -51360,6 +51360,49 @@ components:
5136051360 $ref: '#/components/schemas/ServiceDefinitionData'
5136151361 type: array
5136251362 type: object
51363+ ServiceList:
51364+ properties:
51365+ data:
51366+ $ref: '#/components/schemas/ServiceListData'
51367+ type: object
51368+ ServiceListData:
51369+ properties:
51370+ attributes:
51371+ $ref: '#/components/schemas/ServiceListDataAttributes'
51372+ id:
51373+ type: string
51374+ type:
51375+ $ref: '#/components/schemas/ServiceListDataType'
51376+ required:
51377+ - type
51378+ type: object
51379+ ServiceListDataAttributes:
51380+ properties:
51381+ metadata:
51382+ items:
51383+ $ref: '#/components/schemas/ServiceListDataAttributesMetadataItems'
51384+ type: array
51385+ services:
51386+ items:
51387+ type: string
51388+ type: array
51389+ type: object
51390+ ServiceListDataAttributesMetadataItems:
51391+ properties:
51392+ isTraced:
51393+ type: boolean
51394+ isUsm:
51395+ type: boolean
51396+ type: object
51397+ ServiceListDataType:
51398+ default: services_list
51399+ description: Services list resource type.
51400+ enum:
51401+ - services_list
51402+ example: services_list
51403+ type: string
51404+ x-enum-varnames:
51405+ - SERVICES_LIST
5136351406 ServiceNowBasicAuth:
5136451407 description: The definition of the `ServiceNowBasicAuth` object.
5136551408 properties:
@@ -61622,6 +61665,26 @@ paths:
6162261665 permissions:
6162361666 - apm_retention_filter_write
6162461667 - apm_pipelines_write
61668+ /api/v2/apm/services:
61669+ get:
61670+ operationId: GetServiceList
61671+ responses:
61672+ '200':
61673+ content:
61674+ application/json:
61675+ schema:
61676+ $ref: '#/components/schemas/ServiceList'
61677+ description: OK
61678+ '429':
61679+ $ref: '#/components/responses/TooManyRequestsResponse'
61680+ security:
61681+ - apiKeyAuth: []
61682+ appKeyAuth: []
61683+ - AuthZ:
61684+ - apm_read
61685+ summary: Get service list
61686+ tags:
61687+ - APM
6162561688 /api/v2/app-builder/apps:
6162661689 delete:
6162761690 description: Delete multiple apps in a single request from a list of app IDs.
@@ -69355,9 +69418,6 @@ paths:
6935569418 operator: OR
6935669419 permissions:
6935769420 - incident_read
69358- x-unstable: '**Note**: This endpoint is in Preview.
69359-
69360- If you have any feedback, contact [Datadog support](https://docs.datadoghq.com/help/).'
6936169421 post:
6936269422 description: Create an impact for an incident.
6936369423 operationId: CreateIncidentImpact
@@ -69401,9 +69461,6 @@ paths:
6940169461 operator: OR
6940269462 permissions:
6940369463 - incident_write
69404- x-unstable: '**Note**: This endpoint is in Preview.
69405-
69406- If you have any feedback, contact [Datadog support](https://docs.datadoghq.com/help/).'
6940769464 /api/v2/incidents/{incident_id}/impacts/{impact_id}:
6940869465 delete:
6940969466 description: Delete an incident impact.
@@ -69434,9 +69491,6 @@ paths:
6943469491 operator: OR
6943569492 permissions:
6943669493 - incident_write
69437- x-unstable: '**Note**: This endpoint is in Preview.
69438-
69439- If you have any feedback, contact [Datadog support](https://docs.datadoghq.com/help/).'
6944069494 /api/v2/incidents/{incident_id}/relationships/integrations:
6944169495 get:
6944269496 description: Get all integration metadata for an incident.
@@ -88607,6 +88661,9 @@ servers:
8860788661tags:
8860888662- description: Configure your API endpoints through the Datadog API.
8860988663 name: API Management
88664+ - description: Observe, troubleshoot, and improve cloud-scale applications with all
88665+ telemetry in context
88666+ name: APM
8861088667- description: Manage configuration of [APM retention filters](https://app.datadoghq.com/apm/traces/retention-filters)
8861188668 for your organization. You need an API and application key with Admin rights to
8861288669 interact with this endpoint. See [retention filters](https://docs.datadoghq.com/tracing/trace_pipeline/trace_retention/#retention-filters)
0 commit comments