mirror of
https://github.com/siderolabs/talos.git
synced 2025-10-09 14:41:31 +02:00
This seems to be unused completely, and they look scary enough at the same time. For better readability and to avoid any pitfalls, better to remove them. Signed-off-by: Andrey Smirnov <smirnov.andrey@gmail.com>
25 lines
601 B
Protocol Buffer
25 lines
601 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package securityapi;
|
|
|
|
option go_package = "github.com/talos-systems/talos/pkg/machinery/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);
|
|
}
|
|
|
|
// 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;
|
|
}
|