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
2 changes: 2 additions & 0 deletions .generator/schemas/v2/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9240,6 +9240,7 @@ components:
- server.response.headers.no_cookies
- server.response.trailers
- server.response.body
- server.response.body.raw
- grpc.server.request.metadata
- grpc.server.request.message
- grpc.server.method
Expand Down Expand Up @@ -9276,6 +9277,7 @@ components:
- SERVER_RESPONSE_HEADERS_NO_COOKIES
- SERVER_RESPONSE_TRAILERS
- SERVER_RESPONSE_BODY
- SERVER_RESPONSE_BODY_RAW
- GRPC_SERVER_REQUEST_METADATA
- GRPC_SERVER_REQUEST_MESSAGE
- GRPC_SERVER_METHOD
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ public class ApplicationSecurityWafCustomRuleConditionInputAddress extends Model
"server.response.headers.no_cookies",
"server.response.trailers",
"server.response.body",
"server.response.body.raw",
"grpc.server.request.metadata",
"grpc.server.request.message",
"grpc.server.method",
Expand Down Expand Up @@ -117,6 +118,9 @@ public class ApplicationSecurityWafCustomRuleConditionInputAddress extends Model
new ApplicationSecurityWafCustomRuleConditionInputAddress("server.response.trailers");
public static final ApplicationSecurityWafCustomRuleConditionInputAddress SERVER_RESPONSE_BODY =
new ApplicationSecurityWafCustomRuleConditionInputAddress("server.response.body");
public static final ApplicationSecurityWafCustomRuleConditionInputAddress
SERVER_RESPONSE_BODY_RAW =
new ApplicationSecurityWafCustomRuleConditionInputAddress("server.response.body.raw");
public static final ApplicationSecurityWafCustomRuleConditionInputAddress
GRPC_SERVER_REQUEST_METADATA =
new ApplicationSecurityWafCustomRuleConditionInputAddress("grpc.server.request.metadata");
Expand Down
Loading