Skip to content

Commit eda2645

Browse files
author
ci.datadog-api-spec
committed
Regenerate client from commit 9c05766 of spec repo
1 parent 9b5975a commit eda2645

2 files changed

Lines changed: 13 additions & 0 deletions

File tree

.generator/schemas/v2/openapi.yaml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -119663,6 +119663,7 @@ components:
119663119663
incident_write: Create, view, and manage incidents in Datadog.
119664119664
integrations_read: View configured integrations and their settings.
119665119665
logs_modify_indexes: Modify log indexes, filters, exclusion filters, and configurations.
119666+
logs_read_data: Read log data.
119666119667
logs_read_index_data: Read indexed log data.
119667119668
manage_integrations: Install, uninstall, and configure integrations.
119668119669
metrics_read: View custom metrics.
@@ -164295,6 +164296,11 @@ paths:
164295164296
$ref: "#/components/responses/NotAuthorizedResponse"
164296164297
"429":
164297164298
$ref: "#/components/responses/TooManyRequestsResponse"
164299+
security:
164300+
- apiKeyAuth: []
164301+
appKeyAuth: []
164302+
- AuthZ:
164303+
- logs_read_data
164298164304
summary: Aggregate events
164299164305
tags: ["Logs"]
164300164306
x-codegen-request-body-name: body
@@ -166177,6 +166183,11 @@ paths:
166177166183
$ref: "#/components/responses/NotAuthorizedResponse"
166178166184
"429":
166179166185
$ref: "#/components/responses/TooManyRequestsResponse"
166186+
security:
166187+
- apiKeyAuth: []
166188+
appKeyAuth: []
166189+
- AuthZ:
166190+
- logs_read_data
166180166191
summary: Search logs (POST)
166181166192
tags: ["Logs"]
166182166193
x-codegen-request-body-name: body

services/logs/src/v2/LogsApi.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,7 @@ export class LogsApiRequestFactory extends BaseAPIRequestFactory {
9090
applySecurityAuthentication(_config, requestContext, [
9191
"apiKeyAuth",
9292
"appKeyAuth",
93+
"AuthZ",
9394
]);
9495

9596
return requestContext;
@@ -135,6 +136,7 @@ export class LogsApiRequestFactory extends BaseAPIRequestFactory {
135136
applySecurityAuthentication(_config, requestContext, [
136137
"apiKeyAuth",
137138
"appKeyAuth",
139+
"AuthZ",
138140
]);
139141

140142
return requestContext;

0 commit comments

Comments
 (0)