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; | |
Undefined = 4; | |
} |