mirror of
https://github.com/siderolabs/talos.git
synced 2025-09-12 17:31:13 +02:00
To use Go 1.17.3. Closes #4493. Closes #4496. Signed-off-by: Alexey Palazhchenko <alexey.palazhchenko@talos-systems.com>
107 lines
3.7 KiB
Go
107 lines
3.7 KiB
Go
// Code generated by protoc-gen-go-grpc. DO NOT EDIT.
|
|
// versions:
|
|
// - protoc-gen-go-grpc v1.1.0
|
|
// - protoc v3.19.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
|
|
|
|
// 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, "/storage.StorageService/Disks", 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: "/storage.StorageService/Disks",
|
|
}
|
|
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",
|
|
}
|