Skip to content

Commit 8853cae

Browse files
api-clients-generation-pipeline[bot]ci.datadog-api-spec
andauthored
Sync OpenAPI specification with backend (#1693)
Co-authored-by: ci.datadog-api-spec <[email protected]>
1 parent 2d4253c commit 8853cae

File tree

5 files changed

+11
-10
lines changed

5 files changed

+11
-10
lines changed

.apigentools-info

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@
44
"spec_versions": {
55
"v1": {
66
"apigentools_version": "1.6.6",
7-
"regenerated": "2023-09-28 19:18:56.822567",
8-
"spec_repo_commit": "4b2bab38"
7+
"regenerated": "2023-09-29 08:08:42.720309",
8+
"spec_repo_commit": "b63ccd75"
99
},
1010
"v2": {
1111
"apigentools_version": "1.6.6",
12-
"regenerated": "2023-09-28 19:18:56.909324",
13-
"spec_repo_commit": "4b2bab38"
12+
"regenerated": "2023-09-29 08:08:42.733950",
13+
"spec_repo_commit": "b63ccd75"
1414
}
1515
}
1616
}

.generator/schemas/v1/openapi.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24501,6 +24501,11 @@ paths:
2450124501
description: Authentication error
2450224502
'429':
2450324503
$ref: '#/components/responses/TooManyRequestsResponse'
24504+
security:
24505+
- apiKeyAuth: []
24506+
appKeyAuth: []
24507+
- AuthZ:
24508+
- create_webhooks
2450424509
summary: Create a webhooks integration
2450524510
tags:
2450624511
- Webhooks Integration

.generator/schemas/v2/openapi.yaml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18005,10 +18005,6 @@ paths:
1800518005
$ref: '#/components/responses/NotFoundResponse'
1800618006
'429':
1800718007
$ref: '#/components/responses/TooManyRequestsResponse'
18008-
security:
18009-
- apiKeyAuth: []
18010-
appKeyAuth: []
18011-
- AuthZ: []
1801218008
summary: Get a given APM retention filter
1801318009
tags:
1801418010
- APM Retention Filters

src/datadog_api_client/v1/api/webhooks_integration_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ def __init__(self, api_client=None):
3333
self._create_webhooks_integration_endpoint = _Endpoint(
3434
settings={
3535
"response_type": (WebhooksIntegration,),
36-
"auth": ["apiKeyAuth", "appKeyAuth"],
36+
"auth": ["apiKeyAuth", "appKeyAuth", "AuthZ"],
3737
"endpoint_path": "/api/v1/integration/webhooks/configuration/webhooks",
3838
"operation_id": "create_webhooks_integration",
3939
"http_method": "POST",

src/datadog_api_client/v2/api/apm_retention_filters_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ def __init__(self, api_client=None):
7070
self._get_apm_retention_filter_endpoint = _Endpoint(
7171
settings={
7272
"response_type": (RetentionFilterResponse,),
73-
"auth": ["apiKeyAuth", "appKeyAuth", "AuthZ"],
73+
"auth": ["apiKeyAuth", "appKeyAuth"],
7474
"endpoint_path": "/api/v2/apm/config/retention-filters/{filter_id}",
7575
"operation_id": "get_apm_retention_filter",
7676
"http_method": "GET",

0 commit comments

Comments
 (0)