mirror of
https://github.com/pomerium/pomerium.git
synced 2025-05-06 05:46:05 +02:00
* authorize: add databroker server and record version to result, force sync via polling * authorize: audit logging
13 lines
366 B
Protocol Buffer
13 lines
366 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package pomerium.audit;
|
|
option go_package = "github.com/pomerium/pomerium/pkg/grpc/audit";
|
|
|
|
import "envoy/service/auth/v3/external_auth.proto";
|
|
|
|
message Record {
|
|
envoy.service.auth.v3.CheckRequest request = 1;
|
|
envoy.service.auth.v3.CheckResponse response = 2;
|
|
uint64 databroker_server_version = 3;
|
|
uint64 databroker_record_version = 4;
|
|
}
|