Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions api/proto/teleport/legacy/types/events/events.proto
Original file line number Diff line number Diff line change
Expand Up @@ -6824,6 +6824,13 @@ message OktaUserSync {
int32 num_users_total = 8 [(gogoproto.jsontag) = "num_users_total"];
}

// LabelSelector is a label selector that can be specified by the client to
// filter the resources that are returned by the server.
message LabelSelector {
string Key = 1 [(gogoproto.jsontag) = "key"];
repeated string Values = 2 [(gogoproto.jsontag) = "values"];
}

// SPIFFESVIDIssued is an event recorded when a SPIFFE SVID is issued.
message SPIFFESVIDIssued {
// Metadata is a common event metadata
Expand Down Expand Up @@ -6877,6 +6884,10 @@ message SPIFFESVIDIssued {
(gogoproto.jsontag) = "attributes,omitempty",
(gogoproto.casttype) = "Struct"
];
// The name selector specified by the client when requesting the SVID.
string NameSelector = 15 [(gogoproto.jsontag) = "name_selector,omitempty"];
// The label selectors specified by the client when requesting the SVID.
repeated LabelSelector LabelSelectors = 16 [(gogoproto.jsontag) = "label_selectors,omitempty"];
}

// AuthPreferenceUpdate is emitted when the auth preference is updated.
Expand Down
Loading
Loading