refactor: rename to to better reflect meaning

This commit is contained in:
Skipper
2026-04-19 13:35:18 +02:00
parent e4db36f145
commit ec5a8143fb
55 changed files with 387 additions and 387 deletions

View File

@@ -0,0 +1,24 @@
syntax = "proto3";
package arbiter.operator.vault;
import "google/protobuf/empty.proto";
import "shared/vault.proto";
import "operator/vault/bootstrap.proto";
import "operator/vault/unseal.proto";
message Request {
oneof payload {
google.protobuf.Empty query_state = 1;
unseal.Request unseal = 2;
bootstrap.Request bootstrap = 3;
}
}
message Response {
oneof payload {
arbiter.shared.VaultState state = 1;
unseal.Response unseal = 2;
bootstrap.Response bootstrap = 3;
}
}