mirror of
https://github.com/siderolabs/talos.git
synced 2025-09-18 12:21:11 +02:00
Plus add stringer tool. Signed-off-by: Alexey Palazhchenko <alexey.palazhchenko@gmail.com>
176 lines
6.5 KiB
Go
176 lines
6.5 KiB
Go
// Code generated by protoc-gen-go-grpc. DO NOT EDIT.
|
|
|
|
package security
|
|
|
|
import (
|
|
context "context"
|
|
|
|
grpc "google.golang.org/grpc"
|
|
codes "google.golang.org/grpc/codes"
|
|
status "google.golang.org/grpc/status"
|
|
)
|
|
|
|
// This is a compile-time assertion to ensure that this generated file
|
|
// is compatible with the grpc package it is being compiled against.
|
|
// Requires gRPC-Go v1.32.0 or later.
|
|
const _ = grpc.SupportPackageIsVersion7
|
|
|
|
// SecurityServiceClient is the client API for SecurityService service.
|
|
//
|
|
// For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream.
|
|
type SecurityServiceClient interface {
|
|
Certificate(ctx context.Context, in *CertificateRequest, opts ...grpc.CallOption) (*CertificateResponse, error)
|
|
ReadFile(ctx context.Context, in *ReadFileRequest, opts ...grpc.CallOption) (*ReadFileResponse, error)
|
|
WriteFile(ctx context.Context, in *WriteFileRequest, opts ...grpc.CallOption) (*WriteFileResponse, error)
|
|
}
|
|
|
|
type securityServiceClient struct {
|
|
cc grpc.ClientConnInterface
|
|
}
|
|
|
|
func NewSecurityServiceClient(cc grpc.ClientConnInterface) SecurityServiceClient {
|
|
return &securityServiceClient{cc}
|
|
}
|
|
|
|
func (c *securityServiceClient) Certificate(ctx context.Context, in *CertificateRequest, opts ...grpc.CallOption) (*CertificateResponse, error) {
|
|
out := new(CertificateResponse)
|
|
err := c.cc.Invoke(ctx, "/securityapi.SecurityService/Certificate", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *securityServiceClient) ReadFile(ctx context.Context, in *ReadFileRequest, opts ...grpc.CallOption) (*ReadFileResponse, error) {
|
|
out := new(ReadFileResponse)
|
|
err := c.cc.Invoke(ctx, "/securityapi.SecurityService/ReadFile", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *securityServiceClient) WriteFile(ctx context.Context, in *WriteFileRequest, opts ...grpc.CallOption) (*WriteFileResponse, error) {
|
|
out := new(WriteFileResponse)
|
|
err := c.cc.Invoke(ctx, "/securityapi.SecurityService/WriteFile", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
// SecurityServiceServer is the server API for SecurityService service.
|
|
// All implementations must embed UnimplementedSecurityServiceServer
|
|
// for forward compatibility
|
|
type SecurityServiceServer interface {
|
|
Certificate(context.Context, *CertificateRequest) (*CertificateResponse, error)
|
|
ReadFile(context.Context, *ReadFileRequest) (*ReadFileResponse, error)
|
|
WriteFile(context.Context, *WriteFileRequest) (*WriteFileResponse, error)
|
|
mustEmbedUnimplementedSecurityServiceServer()
|
|
}
|
|
|
|
// UnimplementedSecurityServiceServer must be embedded to have forward compatible implementations.
|
|
type UnimplementedSecurityServiceServer struct{}
|
|
|
|
func (UnimplementedSecurityServiceServer) Certificate(context.Context, *CertificateRequest) (*CertificateResponse, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method Certificate not implemented")
|
|
}
|
|
|
|
func (UnimplementedSecurityServiceServer) ReadFile(context.Context, *ReadFileRequest) (*ReadFileResponse, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method ReadFile not implemented")
|
|
}
|
|
|
|
func (UnimplementedSecurityServiceServer) WriteFile(context.Context, *WriteFileRequest) (*WriteFileResponse, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method WriteFile not implemented")
|
|
}
|
|
func (UnimplementedSecurityServiceServer) mustEmbedUnimplementedSecurityServiceServer() {}
|
|
|
|
// UnsafeSecurityServiceServer may be embedded to opt out of forward compatibility for this service.
|
|
// Use of this interface is not recommended, as added methods to SecurityServiceServer will
|
|
// result in compilation errors.
|
|
type UnsafeSecurityServiceServer interface {
|
|
mustEmbedUnimplementedSecurityServiceServer()
|
|
}
|
|
|
|
func RegisterSecurityServiceServer(s grpc.ServiceRegistrar, srv SecurityServiceServer) {
|
|
s.RegisterService(&SecurityService_ServiceDesc, srv)
|
|
}
|
|
|
|
func _SecurityService_Certificate_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(CertificateRequest)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(SecurityServiceServer).Certificate(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/securityapi.SecurityService/Certificate",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(SecurityServiceServer).Certificate(ctx, req.(*CertificateRequest))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _SecurityService_ReadFile_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(ReadFileRequest)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(SecurityServiceServer).ReadFile(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/securityapi.SecurityService/ReadFile",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(SecurityServiceServer).ReadFile(ctx, req.(*ReadFileRequest))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _SecurityService_WriteFile_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(WriteFileRequest)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(SecurityServiceServer).WriteFile(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/securityapi.SecurityService/WriteFile",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(SecurityServiceServer).WriteFile(ctx, req.(*WriteFileRequest))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
// SecurityService_ServiceDesc is the grpc.ServiceDesc for SecurityService service.
|
|
// It's only intended for direct use with grpc.RegisterService,
|
|
// and not to be introspected or modified (even as a copy)
|
|
var SecurityService_ServiceDesc = grpc.ServiceDesc{
|
|
ServiceName: "securityapi.SecurityService",
|
|
HandlerType: (*SecurityServiceServer)(nil),
|
|
Methods: []grpc.MethodDesc{
|
|
{
|
|
MethodName: "Certificate",
|
|
Handler: _SecurityService_Certificate_Handler,
|
|
},
|
|
{
|
|
MethodName: "ReadFile",
|
|
Handler: _SecurityService_ReadFile_Handler,
|
|
},
|
|
{
|
|
MethodName: "WriteFile",
|
|
Handler: _SecurityService_WriteFile_Handler,
|
|
},
|
|
},
|
|
Streams: []grpc.StreamDesc{},
|
|
Metadata: "security/security.proto",
|
|
}
|