13 lines
241 B
Protocol Buffer
13 lines
241 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package arbiter.shared;
|
|
|
|
enum VaultState {
|
|
VAULT_STATE_UNSPECIFIED = 0;
|
|
VAULT_STATE_UNBOOTSTRAPPED = 1;
|
|
VAULT_STATE_BOOSTRAPPING = 2;
|
|
VAULT_STATE_SEALED = 3;
|
|
VAULT_STATE_UNSEALED = 4;
|
|
VAULT_STATE_ERROR = 5;
|
|
}
|