mirror of
https://github.com/siderolabs/talos.git
synced 2025-09-11 17:01:20 +02:00
To use Go 1.17.3. Closes #4493. Closes #4496. Signed-off-by: Alexey Palazhchenko <alexey.palazhchenko@talos-systems.com>
107 lines
4.1 KiB
Go
107 lines
4.1 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: inspect/inspect.proto
|
|
|
|
package inspect
|
|
|
|
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
|
|
|
|
// InspectServiceClient is the client API for InspectService 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 InspectServiceClient interface {
|
|
ControllerRuntimeDependencies(ctx context.Context, in *emptypb.Empty, opts ...grpc.CallOption) (*ControllerRuntimeDependenciesResponse, error)
|
|
}
|
|
|
|
type inspectServiceClient struct {
|
|
cc grpc.ClientConnInterface
|
|
}
|
|
|
|
func NewInspectServiceClient(cc grpc.ClientConnInterface) InspectServiceClient {
|
|
return &inspectServiceClient{cc}
|
|
}
|
|
|
|
func (c *inspectServiceClient) ControllerRuntimeDependencies(ctx context.Context, in *emptypb.Empty, opts ...grpc.CallOption) (*ControllerRuntimeDependenciesResponse, error) {
|
|
out := new(ControllerRuntimeDependenciesResponse)
|
|
err := c.cc.Invoke(ctx, "/inspect.InspectService/ControllerRuntimeDependencies", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
// InspectServiceServer is the server API for InspectService service.
|
|
// All implementations must embed UnimplementedInspectServiceServer
|
|
// for forward compatibility
|
|
type InspectServiceServer interface {
|
|
ControllerRuntimeDependencies(context.Context, *emptypb.Empty) (*ControllerRuntimeDependenciesResponse, error)
|
|
mustEmbedUnimplementedInspectServiceServer()
|
|
}
|
|
|
|
// UnimplementedInspectServiceServer must be embedded to have forward compatible implementations.
|
|
type UnimplementedInspectServiceServer struct{}
|
|
|
|
func (UnimplementedInspectServiceServer) ControllerRuntimeDependencies(context.Context, *emptypb.Empty) (*ControllerRuntimeDependenciesResponse, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method ControllerRuntimeDependencies not implemented")
|
|
}
|
|
func (UnimplementedInspectServiceServer) mustEmbedUnimplementedInspectServiceServer() {}
|
|
|
|
// UnsafeInspectServiceServer may be embedded to opt out of forward compatibility for this service.
|
|
// Use of this interface is not recommended, as added methods to InspectServiceServer will
|
|
// result in compilation errors.
|
|
type UnsafeInspectServiceServer interface {
|
|
mustEmbedUnimplementedInspectServiceServer()
|
|
}
|
|
|
|
func RegisterInspectServiceServer(s grpc.ServiceRegistrar, srv InspectServiceServer) {
|
|
s.RegisterService(&InspectService_ServiceDesc, srv)
|
|
}
|
|
|
|
func _InspectService_ControllerRuntimeDependencies_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.(InspectServiceServer).ControllerRuntimeDependencies(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/inspect.InspectService/ControllerRuntimeDependencies",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(InspectServiceServer).ControllerRuntimeDependencies(ctx, req.(*emptypb.Empty))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
// InspectService_ServiceDesc is the grpc.ServiceDesc for InspectService service.
|
|
// It's only intended for direct use with grpc.RegisterService,
|
|
// and not to be introspected or modified (even as a copy)
|
|
var InspectService_ServiceDesc = grpc.ServiceDesc{
|
|
ServiceName: "inspect.InspectService",
|
|
HandlerType: (*InspectServiceServer)(nil),
|
|
Methods: []grpc.MethodDesc{
|
|
{
|
|
MethodName: "ControllerRuntimeDependencies",
|
|
Handler: _InspectService_ControllerRuntimeDependencies_Handler,
|
|
},
|
|
},
|
|
Streams: []grpc.StreamDesc{},
|
|
Metadata: "inspect/inspect.proto",
|
|
}
|