mirror of
				https://github.com/siderolabs/talos.git
				synced 2025-10-31 08:21:25 +01:00 
			
		
		
		
	Update tools/pkgs to the latest version, brings in all updates. Signed-off-by: Andrey Smirnov <andrey.smirnov@siderolabs.com>
		
			
				
	
	
		
			112 lines
		
	
	
		
			3.8 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			112 lines
		
	
	
		
			3.8 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
| // Code generated by protoc-gen-go-grpc. DO NOT EDIT.
 | |
| // versions:
 | |
| // - protoc-gen-go-grpc v1.3.0
 | |
| // - protoc             v5.26.1
 | |
| // source: storage/storage.proto
 | |
| 
 | |
| package storage
 | |
| 
 | |
| import (
 | |
| 	context "context"
 | |
| 
 | |
| 	grpc "google.golang.org/grpc"
 | |
| 	codes "google.golang.org/grpc/codes"
 | |
| 	status "google.golang.org/grpc/status"
 | |
| 	emptypb "google.golang.org/protobuf/types/known/emptypb"
 | |
| )
 | |
| 
 | |
| // 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
 | |
| 
 | |
| const (
 | |
| 	StorageService_Disks_FullMethodName = "/storage.StorageService/Disks"
 | |
| )
 | |
| 
 | |
| // StorageServiceClient is the client API for StorageService 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 StorageServiceClient interface {
 | |
| 	Disks(ctx context.Context, in *emptypb.Empty, opts ...grpc.CallOption) (*DisksResponse, error)
 | |
| }
 | |
| 
 | |
| type storageServiceClient struct {
 | |
| 	cc grpc.ClientConnInterface
 | |
| }
 | |
| 
 | |
| func NewStorageServiceClient(cc grpc.ClientConnInterface) StorageServiceClient {
 | |
| 	return &storageServiceClient{cc}
 | |
| }
 | |
| 
 | |
| func (c *storageServiceClient) Disks(ctx context.Context, in *emptypb.Empty, opts ...grpc.CallOption) (*DisksResponse, error) {
 | |
| 	out := new(DisksResponse)
 | |
| 	err := c.cc.Invoke(ctx, StorageService_Disks_FullMethodName, in, out, opts...)
 | |
| 	if err != nil {
 | |
| 		return nil, err
 | |
| 	}
 | |
| 	return out, nil
 | |
| }
 | |
| 
 | |
| // StorageServiceServer is the server API for StorageService service.
 | |
| // All implementations must embed UnimplementedStorageServiceServer
 | |
| // for forward compatibility
 | |
| type StorageServiceServer interface {
 | |
| 	Disks(context.Context, *emptypb.Empty) (*DisksResponse, error)
 | |
| 	mustEmbedUnimplementedStorageServiceServer()
 | |
| }
 | |
| 
 | |
| // UnimplementedStorageServiceServer must be embedded to have forward compatible implementations.
 | |
| type UnimplementedStorageServiceServer struct {
 | |
| }
 | |
| 
 | |
| func (UnimplementedStorageServiceServer) Disks(context.Context, *emptypb.Empty) (*DisksResponse, error) {
 | |
| 	return nil, status.Errorf(codes.Unimplemented, "method Disks not implemented")
 | |
| }
 | |
| func (UnimplementedStorageServiceServer) mustEmbedUnimplementedStorageServiceServer() {}
 | |
| 
 | |
| // UnsafeStorageServiceServer may be embedded to opt out of forward compatibility for this service.
 | |
| // Use of this interface is not recommended, as added methods to StorageServiceServer will
 | |
| // result in compilation errors.
 | |
| type UnsafeStorageServiceServer interface {
 | |
| 	mustEmbedUnimplementedStorageServiceServer()
 | |
| }
 | |
| 
 | |
| func RegisterStorageServiceServer(s grpc.ServiceRegistrar, srv StorageServiceServer) {
 | |
| 	s.RegisterService(&StorageService_ServiceDesc, srv)
 | |
| }
 | |
| 
 | |
| func _StorageService_Disks_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
 | |
| 	in := new(emptypb.Empty)
 | |
| 	if err := dec(in); err != nil {
 | |
| 		return nil, err
 | |
| 	}
 | |
| 	if interceptor == nil {
 | |
| 		return srv.(StorageServiceServer).Disks(ctx, in)
 | |
| 	}
 | |
| 	info := &grpc.UnaryServerInfo{
 | |
| 		Server:     srv,
 | |
| 		FullMethod: StorageService_Disks_FullMethodName,
 | |
| 	}
 | |
| 	handler := func(ctx context.Context, req interface{}) (interface{}, error) {
 | |
| 		return srv.(StorageServiceServer).Disks(ctx, req.(*emptypb.Empty))
 | |
| 	}
 | |
| 	return interceptor(ctx, in, info, handler)
 | |
| }
 | |
| 
 | |
| // StorageService_ServiceDesc is the grpc.ServiceDesc for StorageService service.
 | |
| // It's only intended for direct use with grpc.RegisterService,
 | |
| // and not to be introspected or modified (even as a copy)
 | |
| var StorageService_ServiceDesc = grpc.ServiceDesc{
 | |
| 	ServiceName: "storage.StorageService",
 | |
| 	HandlerType: (*StorageServiceServer)(nil),
 | |
| 	Methods: []grpc.MethodDesc{
 | |
| 		{
 | |
| 			MethodName: "Disks",
 | |
| 			Handler:    _StorageService_Disks_Handler,
 | |
| 		},
 | |
| 	},
 | |
| 	Streams:  []grpc.StreamDesc{},
 | |
| 	Metadata: "storage/storage.proto",
 | |
| }
 |