mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
67da8c84b6
Signed-off-by: Andrew Hsu <andrewhsu@docker.com>
19 lines
302 B
Protocol Buffer
19 lines
302 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package moby.buildkit.secrets.v1;
|
|
|
|
option go_package = "secrets";
|
|
|
|
service Secrets{
|
|
rpc GetSecret(GetSecretRequest) returns (GetSecretResponse);
|
|
}
|
|
|
|
|
|
message GetSecretRequest {
|
|
string ID = 1;
|
|
map<string, string> annotations = 2;
|
|
}
|
|
|
|
message GetSecretResponse {
|
|
bytes data = 1;
|
|
}
|