@@ -51083,6 +51083,49 @@ components:
5108351083 $ref: '#/components/schemas/ServiceDefinitionData'
5108451084 type: array
5108551085 type: object
51086+ ServiceList:
51087+ properties:
51088+ data:
51089+ $ref: '#/components/schemas/ServiceListData'
51090+ type: object
51091+ ServiceListData:
51092+ properties:
51093+ attributes:
51094+ $ref: '#/components/schemas/ServiceListDataAttributes'
51095+ id:
51096+ type: string
51097+ type:
51098+ $ref: '#/components/schemas/ServiceListDataType'
51099+ required:
51100+ - type
51101+ type: object
51102+ ServiceListDataAttributes:
51103+ properties:
51104+ metadata:
51105+ items:
51106+ $ref: '#/components/schemas/ServiceListDataAttributesMetadataItems'
51107+ type: array
51108+ services:
51109+ items:
51110+ type: string
51111+ type: array
51112+ type: object
51113+ ServiceListDataAttributesMetadataItems:
51114+ properties:
51115+ isTraced:
51116+ type: boolean
51117+ isUsm:
51118+ type: boolean
51119+ type: object
51120+ ServiceListDataType:
51121+ default: services_list
51122+ description: Services list resource type.
51123+ enum:
51124+ - services_list
51125+ example: services_list
51126+ type: string
51127+ x-enum-varnames:
51128+ - SERVICES_LIST
5108651129 ServiceNowBasicAuth:
5108751130 description: The definition of the `ServiceNowBasicAuth` object.
5108851131 properties:
@@ -61276,6 +61319,26 @@ paths:
6127661319 permissions:
6127761320 - apm_retention_filter_write
6127861321 - apm_pipelines_write
61322+ /api/v2/apm/services:
61323+ get:
61324+ operationId: GetServiceList
61325+ responses:
61326+ '200':
61327+ content:
61328+ application/json:
61329+ schema:
61330+ $ref: '#/components/schemas/ServiceList'
61331+ description: OK
61332+ '429':
61333+ $ref: '#/components/responses/TooManyRequestsResponse'
61334+ security:
61335+ - apiKeyAuth: []
61336+ appKeyAuth: []
61337+ - AuthZ:
61338+ - apm_read
61339+ summary: Get service list
61340+ tags:
61341+ - APM
6127961342 /api/v2/app-builder/apps:
6128061343 delete:
6128161344 description: Delete multiple apps in a single request from a list of app IDs.
@@ -69009,6 +69072,9 @@ paths:
6900969072 operator: OR
6901069073 permissions:
6901169074 - incident_read
69075+ x-unstable: '**Note**: This endpoint is in Preview.
69076+
69077+ If you have any feedback, contact [Datadog support](https://docs.datadoghq.com/help/).'
6901269078 post:
6901369079 description: Create an impact for an incident.
6901469080 operationId: CreateIncidentImpact
@@ -69052,6 +69118,9 @@ paths:
6905269118 operator: OR
6905369119 permissions:
6905469120 - incident_write
69121+ x-unstable: '**Note**: This endpoint is in Preview.
69122+
69123+ If you have any feedback, contact [Datadog support](https://docs.datadoghq.com/help/).'
6905569124 /api/v2/incidents/{incident_id}/impacts/{impact_id}:
6905669125 delete:
6905769126 description: Delete an incident impact.
@@ -69082,6 +69151,9 @@ paths:
6908269151 operator: OR
6908369152 permissions:
6908469153 - incident_write
69154+ x-unstable: '**Note**: This endpoint is in Preview.
69155+
69156+ If you have any feedback, contact [Datadog support](https://docs.datadoghq.com/help/).'
6908569157 /api/v2/incidents/{incident_id}/relationships/integrations:
6908669158 get:
6908769159 description: Get all integration metadata for an incident.
@@ -88017,6 +88089,9 @@ servers:
8801788089tags:
8801888090- description: Configure your API endpoints through the Datadog API.
8801988091 name: API Management
88092+ - description: Observe, troubleshoot, and improve cloud-scale applications with all
88093+ telemetry in context
88094+ name: APM
8802088095- description: Manage configuration of [APM retention filters](https://app.datadoghq.com/apm/traces/retention-filters)
8802188096 for your organization. You need an API and application key with Admin rights to
8802288097 interact with this endpoint. See [retention filters](https://docs.datadoghq.com/tracing/trace_pipeline/trace_retention/#retention-filters)
0 commit comments