You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
860 B
24 lines
860 B
6 years ago
|
syntax = "proto3";
|
||
|
|
||
|
package envoy.service.auth.v2alpha;
|
||
|
|
||
|
option java_multiple_files = true;
|
||
|
option java_generic_services = true;
|
||
|
option java_outer_classname = "CertsProto";
|
||
|
option java_package = "io.envoyproxy.envoy.service.auth.v2alpha";
|
||
|
|
||
|
import "envoy/service/auth/v2/external_auth.proto";
|
||
|
|
||
|
// [#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(v2.CheckRequest) returns (v2.CheckResponse);
|
||
|
}
|