1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- syntax = "proto3";
- package envoy.service.auth.v2;
- import "envoy/api/v2/core/base.proto";
- import "envoy/service/auth/v2/attribute_context.proto";
- import "envoy/type/http_status.proto";
- import "google/rpc/status.proto";
- import "udpa/annotations/status.proto";
- import "validate/validate.proto";
- option java_package = "io.envoyproxy.envoy.service.auth.v2";
- option java_outer_classname = "ExternalAuthProto";
- option java_multiple_files = true;
- option go_package = "github.com/envoyproxy/go-control-plane/envoy/service/auth/v2;authv2";
- option java_generic_services = true;
- option (udpa.annotations.file_status).package_version_status = FROZEN;
- // [#protodoc-title: Authorization Service ]
- // The authorization service request messages used by external authorization :ref:`network filter
- // <config_network_filters_ext_authz>` and :ref:`HTTP filter <config_http_filters_ext_authz>`.
- // A generic interface for performing authorization check on incoming
- // requests to a networked service.
- service Authorization {
- // Performs authorization check based on the attributes associated with the
- // incoming request, and returns status `OK` or not `OK`.
- rpc Check(CheckRequest) returns (CheckResponse) {
- }
- }
- message CheckRequest {
- // The request attributes.
- AttributeContext attributes = 1;
- }
- // HTTP attributes for a denied response.
- message DeniedHttpResponse {
- // This field allows the authorization service to send a HTTP response status
- // code to the downstream client other than 403 (Forbidden).
- type.HttpStatus status = 1 [(validate.rules).message = {required: true}];
- // This field allows the authorization service to send HTTP response headers
- // to the downstream client. Note that the `append` field in `HeaderValueOption` defaults to
- // false when used in this message.
- repeated api.v2.core.HeaderValueOption headers = 2;
- // This field allows the authorization service to send a response body data
- // to the downstream client.
- string body = 3;
- }
- // HTTP attributes for an ok response.
- message OkHttpResponse {
- // HTTP entity headers in addition to the original request headers. This allows the authorization
- // service to append, to add or to override headers from the original request before
- // dispatching it to the upstream. Note that the `append` field in `HeaderValueOption` defaults to
- // false when used in this message. By setting the `append` field to `true`,
- // the filter will append the correspondent header value to the matched request header.
- // By leaving `append` as false, the filter will either add a new header, or override an existing
- // one if there is a match.
- repeated api.v2.core.HeaderValueOption headers = 2;
- }
- // Intended for gRPC and Network Authorization servers `only`.
- message CheckResponse {
- // Status `OK` allows the request. Any other status indicates the request should be denied.
- google.rpc.Status status = 1;
- // An message that contains HTTP response attributes. This message is
- // used when the authorization service needs to send custom responses to the
- // downstream client or, to modify/add request headers being dispatched to the upstream.
- oneof http_response {
- // Supplies http attributes for a denied response.
- DeniedHttpResponse denied_response = 2;
- // Supplies http attributes for an ok response.
- OkHttpResponse ok_response = 3;
- }
- }
|