Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .generator/schemas/v2/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9066,6 +9066,7 @@ components:
enum:
- server.db.statement
- server.io.fs.file
- server.io.fs.file_write
- server.io.net.url
- server.sys.shell.cmd
- server.request.method
Expand All @@ -9079,6 +9080,7 @@ components:
- server.request.trailers
- server.request.body
- server.request.body.filenames
- server.request.body.files_content
- server.response.status
- server.response.headers.no_cookies
- server.response.trailers
Expand All @@ -9100,6 +9102,7 @@ components:
x-enum-varnames:
- SERVER_DB_STATEMENT
- SERVER_IO_FS_FILE
- SERVER_IO_FS_FILE_WRITE
- SERVER_IO_NET_URL
- SERVER_SYS_SHELL_CMD
- SERVER_REQUEST_METHOD
Expand All @@ -9113,6 +9116,7 @@ components:
- SERVER_REQUEST_TRAILERS
- SERVER_REQUEST_BODY
- SERVER_REQUEST_BODY_FILENAMES
- SERVER_REQUEST_BODY_FILES_CONTENT
- SERVER_RESPONSE_STATUS
- SERVER_RESPONSE_HEADERS_NO_COOKIES
- SERVER_RESPONSE_TRAILERS
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ import { UnparsedObject } from "../../datadog-api-client-common/util";
export type ApplicationSecurityWafCustomRuleConditionInputAddress =
| typeof SERVER_DB_STATEMENT
| typeof SERVER_IO_FS_FILE
| typeof SERVER_IO_FS_FILE_WRITE
| typeof SERVER_IO_NET_URL
| typeof SERVER_SYS_SHELL_CMD
| typeof SERVER_REQUEST_METHOD
Expand All @@ -26,6 +27,7 @@ export type ApplicationSecurityWafCustomRuleConditionInputAddress =
| typeof SERVER_REQUEST_TRAILERS
| typeof SERVER_REQUEST_BODY
| typeof SERVER_REQUEST_BODY_FILENAMES
| typeof SERVER_REQUEST_BODY_FILES_CONTENT
| typeof SERVER_RESPONSE_STATUS
| typeof SERVER_RESPONSE_HEADERS_NO_COOKIES
| typeof SERVER_RESPONSE_TRAILERS
Expand All @@ -45,6 +47,7 @@ export type ApplicationSecurityWafCustomRuleConditionInputAddress =
| UnparsedObject;
export const SERVER_DB_STATEMENT = "server.db.statement";
export const SERVER_IO_FS_FILE = "server.io.fs.file";
export const SERVER_IO_FS_FILE_WRITE = "server.io.fs.file_write";
export const SERVER_IO_NET_URL = "server.io.net.url";
export const SERVER_SYS_SHELL_CMD = "server.sys.shell.cmd";
export const SERVER_REQUEST_METHOD = "server.request.method";
Expand All @@ -59,6 +62,8 @@ export const SERVER_REQUEST_COOKIES = "server.request.cookies";
export const SERVER_REQUEST_TRAILERS = "server.request.trailers";
export const SERVER_REQUEST_BODY = "server.request.body";
export const SERVER_REQUEST_BODY_FILENAMES = "server.request.body.filenames";
export const SERVER_REQUEST_BODY_FILES_CONTENT =
"server.request.body.files_content";
export const SERVER_RESPONSE_STATUS = "server.response.status";
export const SERVER_RESPONSE_HEADERS_NO_COOKIES =
"server.response.headers.no_cookies";
Expand Down
2 changes: 2 additions & 0 deletions packages/datadog-api-client-v2/models/ObjectSerializer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5533,6 +5533,7 @@ const enumsMap: { [key: string]: any[] } = {
ApplicationSecurityWafCustomRuleConditionInputAddress: [
"server.db.statement",
"server.io.fs.file",
"server.io.fs.file_write",
"server.io.net.url",
"server.sys.shell.cmd",
"server.request.method",
Expand All @@ -5546,6 +5547,7 @@ const enumsMap: { [key: string]: any[] } = {
"server.request.trailers",
"server.request.body",
"server.request.body.filenames",
"server.request.body.files_content",
"server.response.status",
"server.response.headers.no_cookies",
"server.response.trailers",
Expand Down
Loading