mirror of
https://github.com/pomerium/pomerium.git
synced 2025-06-19 19:22:44 +02:00
15 lines
395 B
Protocol Buffer
15 lines
395 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package pomerium.events;
|
|
option go_package = "github.com/pomerium/pomerium/pkg/grpc/events";
|
|
|
|
import "google/protobuf/timestamp.proto";
|
|
|
|
// IDPErrorEvents is a list of IDP error events.
|
|
message IDPErrorEvents { repeated IDPErrorEvent values = 1; }
|
|
|
|
// IDPErrorEvent is an IDP error event.
|
|
message IDPErrorEvent {
|
|
google.protobuf.Timestamp time = 1;
|
|
string message = 2;
|
|
}
|