Skip to content

Commit d18397b

Browse files
api-clients-generation-pipeline[bot]ci.datadog-api-spec
andauthored
Regenerate client from commit b001e122 of spec repo (#1691)
Co-authored-by: ci.datadog-api-spec <[email protected]>
1 parent 9b9ea4b commit d18397b

File tree

3 files changed

+9
-29
lines changed

3 files changed

+9
-29
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-26 14:16:56.606228",
8-
"spec_repo_commit": "0270a00c"
7+
"regenerated": "2023-09-27 19:58:16.875808",
8+
"spec_repo_commit": "b001e122"
99
},
1010
"v2": {
1111
"apigentools_version": "1.6.6",
12-
"regenerated": "2023-09-26 14:16:56.667024",
13-
"spec_repo_commit": "0270a00c"
12+
"regenerated": "2023-09-27 19:58:16.910041",
13+
"spec_repo_commit": "b001e122"
1414
}
1515
}
1616
}

.generator/schemas/v2/openapi.yaml

Lines changed: 0 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -17915,10 +17915,6 @@ paths:
1791517915
$ref: '#/components/responses/NotAuthorizedResponse'
1791617916
'429':
1791717917
$ref: '#/components/responses/TooManyRequestsResponse'
17918-
security:
17919-
- apiKeyAuth: []
17920-
appKeyAuth: []
17921-
- AuthZ: []
1792217918
summary: List all APM retention filters
1792317919
tags:
1792417920
- APM Retention Filters
@@ -17949,10 +17945,6 @@ paths:
1794917945
$ref: '#/components/responses/ConflictResponse'
1795017946
'429':
1795117947
$ref: '#/components/responses/TooManyRequestsResponse'
17952-
security:
17953-
- apiKeyAuth: []
17954-
appKeyAuth: []
17955-
- AuthZ: []
1795617948
summary: Create a retention filter
1795717949
tags:
1795817950
- APM Retention Filters
@@ -17977,10 +17969,6 @@ paths:
1797717969
$ref: '#/components/responses/NotAuthorizedResponse'
1797817970
'429':
1797917971
$ref: '#/components/responses/TooManyRequestsResponse'
17980-
security:
17981-
- apiKeyAuth: []
17982-
appKeyAuth: []
17983-
- AuthZ: []
1798417972
summary: Re-order retention filters
1798517973
tags:
1798617974
- APM Retention Filters
@@ -18000,10 +17988,6 @@ paths:
1800017988
$ref: '#/components/responses/NotFoundResponse'
1800117989
'429':
1800217990
$ref: '#/components/responses/TooManyRequestsResponse'
18003-
security:
18004-
- apiKeyAuth: []
18005-
appKeyAuth: []
18006-
- AuthZ: []
1800717991
summary: Delete a retention filter
1800817992
tags:
1800917993
- APM Retention Filters
@@ -18034,10 +18018,6 @@ paths:
1803418018
$ref: '#/components/responses/NotFoundResponse'
1803518019
'429':
1803618020
$ref: '#/components/responses/TooManyRequestsResponse'
18037-
security:
18038-
- apiKeyAuth: []
18039-
appKeyAuth: []
18040-
- AuthZ: []
1804118021
summary: Update a retention filter
1804218022
tags:
1804318023
- APM Retention Filters

src/datadog_api_client/v2/api/apm_retention_filters_api.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ def __init__(self, api_client=None):
2727
self._create_apm_retention_filter_endpoint = _Endpoint(
2828
settings={
2929
"response_type": (RetentionFilterResponse,),
30-
"auth": ["apiKeyAuth", "appKeyAuth", "AuthZ"],
30+
"auth": ["apiKeyAuth", "appKeyAuth"],
3131
"endpoint_path": "/api/v2/apm/config/retention-filters",
3232
"operation_id": "create_apm_retention_filter",
3333
"http_method": "POST",
@@ -47,7 +47,7 @@ def __init__(self, api_client=None):
4747
self._delete_apm_retention_filter_endpoint = _Endpoint(
4848
settings={
4949
"response_type": None,
50-
"auth": ["apiKeyAuth", "appKeyAuth", "AuthZ"],
50+
"auth": ["apiKeyAuth", "appKeyAuth"],
5151
"endpoint_path": "/api/v2/apm/config/retention-filters/{filter_id}",
5252
"operation_id": "delete_apm_retention_filter",
5353
"http_method": "DELETE",
@@ -70,7 +70,7 @@ def __init__(self, api_client=None):
7070
self._list_apm_retention_filters_endpoint = _Endpoint(
7171
settings={
7272
"response_type": (RetentionFiltersResponse,),
73-
"auth": ["apiKeyAuth", "appKeyAuth", "AuthZ"],
73+
"auth": ["apiKeyAuth", "appKeyAuth"],
7474
"endpoint_path": "/api/v2/apm/config/retention-filters",
7575
"operation_id": "list_apm_retention_filters",
7676
"http_method": "GET",
@@ -86,7 +86,7 @@ def __init__(self, api_client=None):
8686
self._reorder_apm_retention_filters_endpoint = _Endpoint(
8787
settings={
8888
"response_type": None,
89-
"auth": ["apiKeyAuth", "appKeyAuth", "AuthZ"],
89+
"auth": ["apiKeyAuth", "appKeyAuth"],
9090
"endpoint_path": "/api/v2/apm/config/retention-filters-execution-order",
9191
"operation_id": "reorder_apm_retention_filters",
9292
"http_method": "PUT",
@@ -106,7 +106,7 @@ def __init__(self, api_client=None):
106106
self._update_apm_retention_filter_endpoint = _Endpoint(
107107
settings={
108108
"response_type": (RetentionFilterResponse,),
109-
"auth": ["apiKeyAuth", "appKeyAuth", "AuthZ"],
109+
"auth": ["apiKeyAuth", "appKeyAuth"],
110110
"endpoint_path": "/api/v2/apm/config/retention-filters/{filter_id}",
111111
"operation_id": "update_apm_retention_filter",
112112
"http_method": "PUT",

0 commit comments

Comments
 (0)