Skip to content

Commit 362d233

Browse files
author
ci.datadog-api-spec
committed
Regenerate client from commit 493d41b of spec repo
1 parent 3f98bf3 commit 362d233

File tree

3 files changed

+50
-0
lines changed

3 files changed

+50
-0
lines changed

.generator/schemas/v2/openapi.yaml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4004,19 +4004,29 @@ components:
40044004
- server.request.uri.raw
40054005
- server.request.path_params
40064006
- server.request.query
4007+
- server.request.headers
40074008
- server.request.headers.no_cookies
4009+
- server.request.custom-auth
40084010
- server.request.cookies
40094011
- server.request.trailers
40104012
- server.request.body
4013+
- server.request.body.filenames
40114014
- server.response.status
40124015
- server.response.headers.no_cookies
40134016
- server.response.trailers
4017+
- server.response.body
40144018
- grpc.server.request.metadata
40154019
- grpc.server.request.message
40164020
- grpc.server.method
40174021
- graphql.server.all_resolvers
40184022
- usr.id
40194023
- http.client_ip
4024+
- server.llm.event
4025+
- server.llm.guard.verdict
4026+
- _dd.appsec.fp.http.header
4027+
- _dd.appsec.fp.http.network
4028+
- _dd.appsec.fp.session
4029+
- _dd.appsec.fp.http.endpoint
40204030
example: server.db.statement
40214031
type: string
40224032
x-enum-varnames:
@@ -4028,19 +4038,29 @@ components:
40284038
- SERVER_REQUEST_URI_RAW
40294039
- SERVER_REQUEST_PATH_PARAMS
40304040
- SERVER_REQUEST_QUERY
4041+
- SERVER_REQUEST_HEADERS
40314042
- SERVER_REQUEST_HEADERS_NO_COOKIES
4043+
- SERVER_REQUEST_CUSTOM_AUTH
40324044
- SERVER_REQUEST_COOKIES
40334045
- SERVER_REQUEST_TRAILERS
40344046
- SERVER_REQUEST_BODY
4047+
- SERVER_REQUEST_BODY_FILENAMES
40354048
- SERVER_RESPONSE_STATUS
40364049
- SERVER_RESPONSE_HEADERS_NO_COOKIES
40374050
- SERVER_RESPONSE_TRAILERS
4051+
- SERVER_RESPONSE_BODY
40384052
- GRPC_SERVER_REQUEST_METADATA
40394053
- GRPC_SERVER_REQUEST_MESSAGE
40404054
- GRPC_SERVER_METHOD
40414055
- GRAPHQL_SERVER_ALL_RESOLVERS
40424056
- USR_ID
40434057
- HTTP_CLIENT_IP
4058+
- SERVER_LLM_EVENT
4059+
- SERVER_LLM_GUARD_VERDICT
4060+
- DD_APPSEC_FP_HTTP_HEADER
4061+
- DD_APPSEC_FP_HTTP_NETWORK
4062+
- DD_APPSEC_FP_SESSION
4063+
- DD_APPSEC_FP_HTTP_ENDPOINT
40444064
ApplicationSecurityWafCustomRuleConditionOperator:
40454065
description: Operator to use for the WAF Condition.
40464066
enum:

packages/datadog-api-client-v2/models/ApplicationSecurityWafCustomRuleConditionInputAddress.ts

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,19 +19,29 @@ export type ApplicationSecurityWafCustomRuleConditionInputAddress =
1919
| typeof SERVER_REQUEST_URI_RAW
2020
| typeof SERVER_REQUEST_PATH_PARAMS
2121
| typeof SERVER_REQUEST_QUERY
22+
| typeof SERVER_REQUEST_HEADERS
2223
| typeof SERVER_REQUEST_HEADERS_NO_COOKIES
24+
| typeof SERVER_REQUEST_CUSTOM_AUTH
2325
| typeof SERVER_REQUEST_COOKIES
2426
| typeof SERVER_REQUEST_TRAILERS
2527
| typeof SERVER_REQUEST_BODY
28+
| typeof SERVER_REQUEST_BODY_FILENAMES
2629
| typeof SERVER_RESPONSE_STATUS
2730
| typeof SERVER_RESPONSE_HEADERS_NO_COOKIES
2831
| typeof SERVER_RESPONSE_TRAILERS
32+
| typeof SERVER_RESPONSE_BODY
2933
| typeof GRPC_SERVER_REQUEST_METADATA
3034
| typeof GRPC_SERVER_REQUEST_MESSAGE
3135
| typeof GRPC_SERVER_METHOD
3236
| typeof GRAPHQL_SERVER_ALL_RESOLVERS
3337
| typeof USR_ID
3438
| typeof HTTP_CLIENT_IP
39+
| typeof SERVER_LLM_EVENT
40+
| typeof SERVER_LLM_GUARD_VERDICT
41+
| typeof DD_APPSEC_FP_HTTP_HEADER
42+
| typeof DD_APPSEC_FP_HTTP_NETWORK
43+
| typeof DD_APPSEC_FP_SESSION
44+
| typeof DD_APPSEC_FP_HTTP_ENDPOINT
3545
| UnparsedObject;
3646
export const SERVER_DB_STATEMENT = "server.db.statement";
3747
export const SERVER_IO_FS_FILE = "server.io.fs.file";
@@ -41,18 +51,28 @@ export const SERVER_REQUEST_METHOD = "server.request.method";
4151
export const SERVER_REQUEST_URI_RAW = "server.request.uri.raw";
4252
export const SERVER_REQUEST_PATH_PARAMS = "server.request.path_params";
4353
export const SERVER_REQUEST_QUERY = "server.request.query";
54+
export const SERVER_REQUEST_HEADERS = "server.request.headers";
4455
export const SERVER_REQUEST_HEADERS_NO_COOKIES =
4556
"server.request.headers.no_cookies";
57+
export const SERVER_REQUEST_CUSTOM_AUTH = "server.request.custom-auth";
4658
export const SERVER_REQUEST_COOKIES = "server.request.cookies";
4759
export const SERVER_REQUEST_TRAILERS = "server.request.trailers";
4860
export const SERVER_REQUEST_BODY = "server.request.body";
61+
export const SERVER_REQUEST_BODY_FILENAMES = "server.request.body.filenames";
4962
export const SERVER_RESPONSE_STATUS = "server.response.status";
5063
export const SERVER_RESPONSE_HEADERS_NO_COOKIES =
5164
"server.response.headers.no_cookies";
5265
export const SERVER_RESPONSE_TRAILERS = "server.response.trailers";
66+
export const SERVER_RESPONSE_BODY = "server.response.body";
5367
export const GRPC_SERVER_REQUEST_METADATA = "grpc.server.request.metadata";
5468
export const GRPC_SERVER_REQUEST_MESSAGE = "grpc.server.request.message";
5569
export const GRPC_SERVER_METHOD = "grpc.server.method";
5670
export const GRAPHQL_SERVER_ALL_RESOLVERS = "graphql.server.all_resolvers";
5771
export const USR_ID = "usr.id";
5872
export const HTTP_CLIENT_IP = "http.client_ip";
73+
export const SERVER_LLM_EVENT = "server.llm.event";
74+
export const SERVER_LLM_GUARD_VERDICT = "server.llm.guard.verdict";
75+
export const DD_APPSEC_FP_HTTP_HEADER = "_dd.appsec.fp.http.header";
76+
export const DD_APPSEC_FP_HTTP_NETWORK = "_dd.appsec.fp.http.network";
77+
export const DD_APPSEC_FP_SESSION = "_dd.appsec.fp.session";
78+
export const DD_APPSEC_FP_HTTP_ENDPOINT = "_dd.appsec.fp.http.endpoint";

packages/datadog-api-client-v2/models/ObjectSerializer.ts

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3589,19 +3589,29 @@ const enumsMap: { [key: string]: any[] } = {
35893589
"server.request.uri.raw",
35903590
"server.request.path_params",
35913591
"server.request.query",
3592+
"server.request.headers",
35923593
"server.request.headers.no_cookies",
3594+
"server.request.custom-auth",
35933595
"server.request.cookies",
35943596
"server.request.trailers",
35953597
"server.request.body",
3598+
"server.request.body.filenames",
35963599
"server.response.status",
35973600
"server.response.headers.no_cookies",
35983601
"server.response.trailers",
3602+
"server.response.body",
35993603
"grpc.server.request.metadata",
36003604
"grpc.server.request.message",
36013605
"grpc.server.method",
36023606
"graphql.server.all_resolvers",
36033607
"usr.id",
36043608
"http.client_ip",
3609+
"server.llm.event",
3610+
"server.llm.guard.verdict",
3611+
"_dd.appsec.fp.http.header",
3612+
"_dd.appsec.fp.http.network",
3613+
"_dd.appsec.fp.session",
3614+
"_dd.appsec.fp.http.endpoint",
36053615
],
36063616
ApplicationSecurityWafCustomRuleConditionOperator: [
36073617
"match_regex",

0 commit comments

Comments
 (0)