Skip to content

Commit 88d1d83

Browse files
author
ci.datadog-api-spec
committed
Regenerate client from commit 346c912 of spec repo
1 parent 9da9d6a commit 88d1d83

3 files changed

Lines changed: 11 additions & 0 deletions

File tree

.generator/schemas/v2/openapi.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9066,6 +9066,7 @@ components:
90669066
enum:
90679067
- server.db.statement
90689068
- server.io.fs.file
9069+
- server.io.fs.file_write
90699070
- server.io.net.url
90709071
- server.sys.shell.cmd
90719072
- server.request.method
@@ -9079,6 +9080,7 @@ components:
90799080
- server.request.trailers
90809081
- server.request.body
90819082
- server.request.body.filenames
9083+
- server.request.body.files_content
90829084
- server.response.status
90839085
- server.response.headers.no_cookies
90849086
- server.response.trailers
@@ -9100,6 +9102,7 @@ components:
91009102
x-enum-varnames:
91019103
- SERVER_DB_STATEMENT
91029104
- SERVER_IO_FS_FILE
9105+
- SERVER_IO_FS_FILE_WRITE
91039106
- SERVER_IO_NET_URL
91049107
- SERVER_SYS_SHELL_CMD
91059108
- SERVER_REQUEST_METHOD
@@ -9113,6 +9116,7 @@ components:
91139116
- SERVER_REQUEST_TRAILERS
91149117
- SERVER_REQUEST_BODY
91159118
- SERVER_REQUEST_BODY_FILENAMES
9119+
- SERVER_REQUEST_BODY_FILES_CONTENT
91169120
- SERVER_RESPONSE_STATUS
91179121
- SERVER_RESPONSE_HEADERS_NO_COOKIES
91189122
- SERVER_RESPONSE_TRAILERS

services/application_security/src/v2/models/ApplicationSecurityWafCustomRuleConditionInputAddress.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ import { UnparsedObject } from "@datadog/datadog-api-client";
66
export type ApplicationSecurityWafCustomRuleConditionInputAddress =
77
| typeof SERVER_DB_STATEMENT
88
| typeof SERVER_IO_FS_FILE
9+
| typeof SERVER_IO_FS_FILE_WRITE
910
| typeof SERVER_IO_NET_URL
1011
| typeof SERVER_SYS_SHELL_CMD
1112
| typeof SERVER_REQUEST_METHOD
@@ -19,6 +20,7 @@ export type ApplicationSecurityWafCustomRuleConditionInputAddress =
1920
| typeof SERVER_REQUEST_TRAILERS
2021
| typeof SERVER_REQUEST_BODY
2122
| typeof SERVER_REQUEST_BODY_FILENAMES
23+
| typeof SERVER_REQUEST_BODY_FILES_CONTENT
2224
| typeof SERVER_RESPONSE_STATUS
2325
| typeof SERVER_RESPONSE_HEADERS_NO_COOKIES
2426
| typeof SERVER_RESPONSE_TRAILERS
@@ -38,6 +40,7 @@ export type ApplicationSecurityWafCustomRuleConditionInputAddress =
3840
| UnparsedObject;
3941
export const SERVER_DB_STATEMENT = "server.db.statement";
4042
export const SERVER_IO_FS_FILE = "server.io.fs.file";
43+
export const SERVER_IO_FS_FILE_WRITE = "server.io.fs.file_write";
4144
export const SERVER_IO_NET_URL = "server.io.net.url";
4245
export const SERVER_SYS_SHELL_CMD = "server.sys.shell.cmd";
4346
export const SERVER_REQUEST_METHOD = "server.request.method";
@@ -52,6 +55,8 @@ export const SERVER_REQUEST_COOKIES = "server.request.cookies";
5255
export const SERVER_REQUEST_TRAILERS = "server.request.trailers";
5356
export const SERVER_REQUEST_BODY = "server.request.body";
5457
export const SERVER_REQUEST_BODY_FILENAMES = "server.request.body.filenames";
58+
export const SERVER_REQUEST_BODY_FILES_CONTENT =
59+
"server.request.body.files_content";
5560
export const SERVER_RESPONSE_STATUS = "server.response.status";
5661
export const SERVER_RESPONSE_HEADERS_NO_COOKIES =
5762
"server.response.headers.no_cookies";

services/application_security/src/v2/models/TypingInfo.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,7 @@ export const TypingInfo: ModelTypingInfo = {
6464
ApplicationSecurityWafCustomRuleConditionInputAddress: [
6565
"server.db.statement",
6666
"server.io.fs.file",
67+
"server.io.fs.file_write",
6768
"server.io.net.url",
6869
"server.sys.shell.cmd",
6970
"server.request.method",
@@ -77,6 +78,7 @@ export const TypingInfo: ModelTypingInfo = {
7778
"server.request.trailers",
7879
"server.request.body",
7980
"server.request.body.filenames",
81+
"server.request.body.files_content",
8082
"server.response.status",
8183
"server.response.headers.no_cookies",
8284
"server.response.trailers",

0 commit comments

Comments
 (0)