Skip to content

Commit

Permalink
Regenerate client from commit 1846c84 of spec repo
Browse files Browse the repository at this point in the history
  • Loading branch information
ci.datadog-api-spec committed Oct 28, 2021
1 parent de2fc57 commit 0122996
Show file tree
Hide file tree
Showing 12 changed files with 554 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .apigentools-info
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@
"spec_versions": {
"v1": {
"apigentools_version": "1.5.1.dev2",
"regenerated": "2021-10-27 12:50:05.174106",
"spec_repo_commit": "0b58986"
"regenerated": "2021-10-28 12:12:35.214049",
"spec_repo_commit": "1846c84"
},
"v2": {
"apigentools_version": "1.5.1.dev2",
"regenerated": "2021-10-27 12:50:05.775511",
"spec_repo_commit": "0b58986"
"regenerated": "2021-10-28 12:12:35.807257",
"spec_repo_commit": "1846c84"
}
}
}
49 changes: 49 additions & 0 deletions .generator/schemas/v1/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11060,6 +11060,25 @@ components:
type: string
type: array
type: object
SyntheticsTriggerPublicIdentifiers:
description: List of identifiers of Synthetics tests to trigger.
properties:
public_ids:
description: An array of IDs of Synthetics tests to trigger.
example: []
items:
description: The ID of a Synthetics test to trigger.
example: abc-def-123
type: string
type: array
type: object
SyntheticsTriggerTestBody:
description: Either an object describing the Synthetics tests to trigger, or
a list of Synthetics test IDs.
oneOf:
- $ref: '#/components/schemas/SyntheticsTriggerPublicIdentifiers'
- $ref: '#/components/schemas/SyntheticsCITestBody'
type: object
SyntheticsUpdateTestPauseStatusPayload:
description: Object to start or pause an existing Synthetic test.
properties:
Expand Down Expand Up @@ -22359,6 +22378,36 @@ paths:
x-menu-order: 14
x-undo:
type: idempotent
/api/v1/synthetics/tests/trigger:
post:
description: Trigger a set of Synthetics tests.
operationId: TriggerTests
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/SyntheticsTriggerTestBody'
description: Identifiers of the tests to trigger.
required: true
responses:
'200':
content:
application/json:
schema:
$ref: '#/components/schemas/SyntheticsTriggerCITestsResponse'
description: OK
'400':
content:
application/json:
schema:
$ref: '#/components/schemas/APIErrorResponse'
description: Bad Request
summary: Trigger some Synthetics tests
tags:
- Synthetics
x-codegen-request-body-name: body
x-undo:
type: safe
/api/v1/synthetics/tests/trigger/ci:
post:
description: Trigger a set of Synthetics tests for continuous integration.
Expand Down
3 changes: 3 additions & 0 deletions docs/v1/README.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

65 changes: 65 additions & 0 deletions docs/v1/SyntheticsApi.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 12 additions & 0 deletions docs/v1/SyntheticsTriggerPublicIdentifiers.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

13 changes: 13 additions & 0 deletions docs/v1/SyntheticsTriggerTestBody.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

80 changes: 80 additions & 0 deletions src/datadog_api_client/v1/api/synthetics_api.py

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 0122996

Please sign in to comment.