Skip to content
Merged
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
14 changes: 14 additions & 0 deletions envoy/config/filter/accesslog/v2/accesslog.proto
Original file line number Diff line number Diff line change
Expand Up @@ -147,6 +147,20 @@ message ResponseFlags {

// Indicates that the request was rate-limited locally.
bool rate_limited = 12;

message Unauthorized {
// Reasons why the request was unauthorized
enum Reason {
REASON_UNSPECIFIED = 0;
// The request was denied by the external authorization service.
EXTERNAL_SERVICE = 1;
}

Reason reason = 1;
}

// Indicates if the request was deemed unauthorized and the reason for it.
Unauthorized unauthorized_details = 13;
}

// [#not-implemented-hide:] Not configuration. TBD how to doc proto APIs.
Expand Down