talos/api/security/security.proto
Andrew Rynhard ad863a7f92 refactor: rename protobuf services, RPCs, and messages
This PR brings our protobuf files into conformance with the protobuf
style guide, and community conventions. It is purely renames, along with
generated docs.

Signed-off-by: Andrew Rynhard <andrew@andrewrynhard.com>
2019-12-11 11:41:40 -08:00

47 lines
1.1 KiB
Protocol Buffer

syntax = "proto3";
package securityapi;
option go_package = "github.com/talos-systems/talos/api/security";
option java_multiple_files = true;
option java_outer_classname = "SecurityApi";
option java_package = "com.security.api";
// The security service definition.
service SecurityService {
rpc Certificate(CertificateRequest) returns (CertificateResponse);
rpc ReadFile(ReadFileRequest) returns (ReadFileResponse);
rpc WriteFile(WriteFileRequest) returns (WriteFileResponse);
}
// The request message containing the process name.
message CertificateRequest {
bytes csr = 1;
}
// The response message containing the requested logs.
message CertificateResponse {
bytes ca = 1;
bytes crt = 2;
}
// The request message for reading a file on disk.
message ReadFileRequest {
string path = 1;
}
// The response message for reading a file on disk.
message ReadFileResponse {
bytes data = 1;
}
// The request message containing the process name.
message WriteFileRequest {
string path = 1;
bytes data = 2;
int32 perm = 3;
}
// The response message containing the requested logs.
message WriteFileResponse {}