Move request.http_request to ac.request in envoy.api.v2.auth package. (#349)

Signed-off-by: Mandar U Jog <mjog@google.com>
pull/357/head
mandarjog 7 years ago committed by htuch
parent ad63d8c9d1
commit b4a648f0b1
  1. 10
      api/auth/external_auth.proto

@ -66,11 +66,13 @@ message AttributeContext {
// Represents a network request, such as an HTTP request.
message Request {
oneof request {
HTTPRequest http_request = 1;
}
// The timestamp when the proxy receives the first byte of the request.
google.protobuf.Timestamp time = 2;
google.protobuf.Timestamp time = 1;
// HTTP and related requests.
HTTPRequest http = 2;
// More request types are added here as necessary.
}
// This message defines attributes for an HTTP request.

Loading…
Cancel
Save