blob: 8b5da605089699f3e4c16fd7c9ca2aa559025fe0 [file]
syntax = "proto3";
package milotic.authz;
// LINT: LEGACY_NAMES
// Need this lint because we are migrating from C++ enum to proto enum but we
// already had these enum string names used in production so we will have to
// keep TitleCase.
enum AuthorizedEntity {
ComputeNode = 0;
ComputeNode1 = 1;
ComputeNode2 = 2;
EcclesiaMachineManagerEntity = 3;
OffloadNodes = 5;
Undefined = 4;
}