@@ -7542,6 +7542,26 @@ components:
7542
7542
- id
7543
7543
- type
7544
7544
type: object
7545
+ OnDemandConcurrencyCap:
7546
+ description: On-demand concurrency cap.
7547
+ properties:
7548
+ attributes:
7549
+ $ref: '#/components/schemas/OnDemandConcurrencyCapAttributes'
7550
+ type: object
7551
+ OnDemandConcurrencyCapAttributes:
7552
+ description: On-demand concurrency cap attributes.
7553
+ properties:
7554
+ on_demand_concurrency_cap:
7555
+ description: Value of the on-demand concurrency cap.
7556
+ format: double
7557
+ type: number
7558
+ type: object
7559
+ OnDemandConcurrencyCapResponse:
7560
+ description: On-demand concurrency cap response.
7561
+ properties:
7562
+ data:
7563
+ $ref: '#/components/schemas/OnDemandConcurrencyCap'
7564
+ type: object
7545
7565
OpsgenieServiceCreateAttributes:
7546
7566
description: The Opsgenie service attributes for a create request.
7547
7567
properties:
@@ -19685,6 +19705,45 @@ paths:
19685
19705
x-unstable: '**Note**: This endpoint is in public beta.
19686
19706
19687
19707
If you have any feedback, contact [Datadog support](https://docs.datadoghq.com/help/).'
19708
+ /api/v2/synthetics/settings/on_demand_concurrency_cap:
19709
+ get:
19710
+ description: Get the on-demand concurrency cap.
19711
+ operationId: GetOnDemandConcurrencyCap
19712
+ responses:
19713
+ '200':
19714
+ content:
19715
+ application/json:
19716
+ schema:
19717
+ $ref: '#/components/schemas/OnDemandConcurrencyCapResponse'
19718
+ description: OK
19719
+ '429':
19720
+ $ref: '#/components/responses/TooManyRequestsResponse'
19721
+ summary: Get the on-demand concurrency cap
19722
+ tags:
19723
+ - Synthetics
19724
+ post:
19725
+ description: Save new value for on-demand concurrency cap.
19726
+ operationId: SetOnDemandConcurrencyCap
19727
+ requestBody:
19728
+ content:
19729
+ application/json:
19730
+ schema:
19731
+ $ref: '#/components/schemas/OnDemandConcurrencyCapAttributes'
19732
+ description: .
19733
+ required: true
19734
+ responses:
19735
+ '200':
19736
+ content:
19737
+ application/json:
19738
+ schema:
19739
+ $ref: '#/components/schemas/OnDemandConcurrencyCapResponse'
19740
+ description: OK
19741
+ '429':
19742
+ $ref: '#/components/responses/TooManyRequestsResponse'
19743
+ summary: Save new value for on-demand concurrency cap
19744
+ tags:
19745
+ - Synthetics
19746
+ x-codegen-request-body-name: body
19688
19747
/api/v2/teams:
19689
19748
get:
19690
19749
description: Get all incident teams for the requesting user's organization.
@@ -20963,6 +21022,13 @@ tags:
20963
21022
externalDocs:
20964
21023
url: https://docs.datadoghq.com/tracing/service_catalog/
20965
21024
name: Service Definition
21025
+ - description: "Datadog Synthetics uses simulated user requests and browser rendering
21026
+ to help you ensure uptime,\nidentify regional issues, and track your application
21027
+ performance. Datadog Synthetics tests come in\ntwo different flavors, [API tests](https://docs.datadoghq.com/synthetics/api_tests/)\nand
21028
+ [browser tests](https://docs.datadoghq.com/synthetics/browser_tests). You can
21029
+ use Datadog\u2019s API to\nmanage both test types programmatically.\n\nFor more
21030
+ information about Synthetics, see the [Synthetics overview](https://docs.datadoghq.com/synthetics/)."
21031
+ name: Synthetics
20966
21032
- description: 'The usage metering API allows you to get hourly, daily, and
20967
21033
20968
21034
monthly usage across multiple facets of Datadog.
0 commit comments