@@ -51339,6 +51339,49 @@ components:
5133951339 $ref: '#/components/schemas/ServiceDefinitionData'
5134051340 type: array
5134151341 type: object
51342+ ServiceList:
51343+ properties:
51344+ data:
51345+ $ref: '#/components/schemas/ServiceListData'
51346+ type: object
51347+ ServiceListData:
51348+ properties:
51349+ attributes:
51350+ $ref: '#/components/schemas/ServiceListDataAttributes'
51351+ id:
51352+ type: string
51353+ type:
51354+ $ref: '#/components/schemas/ServiceListDataType'
51355+ required:
51356+ - type
51357+ type: object
51358+ ServiceListDataAttributes:
51359+ properties:
51360+ metadata:
51361+ items:
51362+ $ref: '#/components/schemas/ServiceListDataAttributesMetadataItems'
51363+ type: array
51364+ services:
51365+ items:
51366+ type: string
51367+ type: array
51368+ type: object
51369+ ServiceListDataAttributesMetadataItems:
51370+ properties:
51371+ isTraced:
51372+ type: boolean
51373+ isUsm:
51374+ type: boolean
51375+ type: object
51376+ ServiceListDataType:
51377+ default: services_list
51378+ description: Services list resource type.
51379+ enum:
51380+ - services_list
51381+ example: services_list
51382+ type: string
51383+ x-enum-varnames:
51384+ - SERVICES_LIST
5134251385 ServiceNowBasicAuth:
5134351386 description: The definition of the `ServiceNowBasicAuth` object.
5134451387 properties:
@@ -61601,6 +61644,26 @@ paths:
6160161644 permissions:
6160261645 - apm_retention_filter_write
6160361646 - apm_pipelines_write
61647+ /api/v2/apm/services:
61648+ get:
61649+ operationId: GetServiceList
61650+ responses:
61651+ '200':
61652+ content:
61653+ application/json:
61654+ schema:
61655+ $ref: '#/components/schemas/ServiceList'
61656+ description: OK
61657+ '429':
61658+ $ref: '#/components/responses/TooManyRequestsResponse'
61659+ security:
61660+ - apiKeyAuth: []
61661+ appKeyAuth: []
61662+ - AuthZ:
61663+ - apm_read
61664+ summary: Get service list
61665+ tags:
61666+ - APM
6160461667 /api/v2/app-builder/apps:
6160561668 delete:
6160661669 description: Delete multiple apps in a single request from a list of app IDs.
@@ -69334,9 +69397,6 @@ paths:
6933469397 operator: OR
6933569398 permissions:
6933669399 - incident_read
69337- x-unstable: '**Note**: This endpoint is in Preview.
69338-
69339- If you have any feedback, contact [Datadog support](https://docs.datadoghq.com/help/).'
6934069400 post:
6934169401 description: Create an impact for an incident.
6934269402 operationId: CreateIncidentImpact
@@ -69380,9 +69440,6 @@ paths:
6938069440 operator: OR
6938169441 permissions:
6938269442 - incident_write
69383- x-unstable: '**Note**: This endpoint is in Preview.
69384-
69385- If you have any feedback, contact [Datadog support](https://docs.datadoghq.com/help/).'
6938669443 /api/v2/incidents/{incident_id}/impacts/{impact_id}:
6938769444 delete:
6938869445 description: Delete an incident impact.
@@ -69413,9 +69470,6 @@ paths:
6941369470 operator: OR
6941469471 permissions:
6941569472 - incident_write
69416- x-unstable: '**Note**: This endpoint is in Preview.
69417-
69418- If you have any feedback, contact [Datadog support](https://docs.datadoghq.com/help/).'
6941969473 /api/v2/incidents/{incident_id}/relationships/integrations:
6942069474 get:
6942169475 description: Get all integration metadata for an incident.
@@ -88586,6 +88640,9 @@ servers:
8858688640tags:
8858788641- description: Configure your API endpoints through the Datadog API.
8858888642 name: API Management
88643+ - description: Observe, troubleshoot, and improve cloud-scale applications with all
88644+ telemetry in context
88645+ name: APM
8858988646- description: Manage configuration of [APM retention filters](https://app.datadoghq.com/apm/traces/retention-filters)
8859088647 for your organization. You need an API and application key with Admin rights to
8859188648 interact with this endpoint. See [retention filters](https://docs.datadoghq.com/tracing/trace_pipeline/trace_retention/#retention-filters)
0 commit comments