mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
29 lines
777 B
Protocol Buffer
29 lines
777 B
Protocol Buffer
syntax = "proto2";
|
|
|
|
package docker.protobuf.plugin;
|
|
|
|
import "google/protobuf/descriptor.proto";
|
|
|
|
message StoreObject {
|
|
}
|
|
|
|
extend google.protobuf.MessageOptions {
|
|
optional bool deepcopy = 70000 [default=true];
|
|
optional StoreObject store_object = 70001;
|
|
}
|
|
|
|
message TLSAuthorization {
|
|
// Roles contains the acceptable TLS OU roles for the handler.
|
|
repeated string roles = 1;
|
|
|
|
// Insecure is set to true if this method does not require
|
|
// authorization. NOTE: Specifying both "insecure" and a nonempty
|
|
// list of roles is invalid. This would fail at codegen time.
|
|
optional bool insecure = 2;
|
|
}
|
|
|
|
extend google.protobuf.MethodOptions {
|
|
// TLSAuthorization contains the authorization parameters for this
|
|
// method.
|
|
optional TLSAuthorization tls_authorization = 73626345;
|
|
}
|