mirror of
https://github.com/siderolabs/talos.git
synced 2026-05-04 20:06:18 +02:00
Re-generate, fix new linting issues. Update containerd library to the latest 2.2.1 to address the new cgroups package import (via tools update). Signed-off-by: Andrey Smirnov <andrey.smirnov@siderolabs.com>
127 lines
4.7 KiB
Go
127 lines
4.7 KiB
Go
// Code generated by protoc-gen-go-grpc. DO NOT EDIT.
|
|
// versions:
|
|
// - protoc-gen-go-grpc v1.6.1
|
|
// - protoc (unknown)
|
|
// source: security/security.proto
|
|
|
|
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.64.0 or later.
|
|
const _ = grpc.SupportPackageIsVersion9
|
|
|
|
const (
|
|
SecurityService_Certificate_FullMethodName = "/securityapi.SecurityService/Certificate"
|
|
)
|
|
|
|
// 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.
|
|
//
|
|
// The security service definition.
|
|
type SecurityServiceClient interface {
|
|
Certificate(ctx context.Context, in *CertificateRequest, opts ...grpc.CallOption) (*CertificateResponse, 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) {
|
|
cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
|
|
out := new(CertificateResponse)
|
|
err := c.cc.Invoke(ctx, SecurityService_Certificate_FullMethodName, in, out, cOpts...)
|
|
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.
|
|
//
|
|
// The security service definition.
|
|
type SecurityServiceServer interface {
|
|
Certificate(context.Context, *CertificateRequest) (*CertificateResponse, error)
|
|
mustEmbedUnimplementedSecurityServiceServer()
|
|
}
|
|
|
|
// UnimplementedSecurityServiceServer must be embedded to have
|
|
// forward compatible implementations.
|
|
//
|
|
// NOTE: this should be embedded by value instead of pointer to avoid a nil
|
|
// pointer dereference when methods are called.
|
|
type UnimplementedSecurityServiceServer struct{}
|
|
|
|
func (UnimplementedSecurityServiceServer) Certificate(context.Context, *CertificateRequest) (*CertificateResponse, error) {
|
|
return nil, status.Error(codes.Unimplemented, "method Certificate not implemented")
|
|
}
|
|
func (UnimplementedSecurityServiceServer) mustEmbedUnimplementedSecurityServiceServer() {}
|
|
func (UnimplementedSecurityServiceServer) testEmbeddedByValue() {}
|
|
|
|
// 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) {
|
|
// If the following call panics, it indicates UnimplementedSecurityServiceServer was
|
|
// embedded by pointer and is nil. This will cause panics if an
|
|
// unimplemented method is ever invoked, so we test this at initialization
|
|
// time to prevent it from happening at runtime later due to I/O.
|
|
if t, ok := srv.(interface{ testEmbeddedByValue() }); ok {
|
|
t.testEmbeddedByValue()
|
|
}
|
|
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: SecurityService_Certificate_FullMethodName,
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(SecurityServiceServer).Certificate(ctx, req.(*CertificateRequest))
|
|
}
|
|
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,
|
|
},
|
|
},
|
|
Streams: []grpc.StreamDesc{},
|
|
Metadata: "security/security.proto",
|
|
}
|