mirror of
https://github.com/siderolabs/talos.git
synced 2026-04-14 02:01:06 +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>
123 lines
5.1 KiB
Go
123 lines
5.1 KiB
Go
// Code generated by protoc-gen-go-grpc. DO NOT EDIT.
|
|
// versions:
|
|
// - protoc-gen-go-grpc v1.6.1
|
|
// - protoc (unknown)
|
|
// source: machine/debug.proto
|
|
|
|
package machine
|
|
|
|
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 (
|
|
DebugService_ContainerRun_FullMethodName = "/machine.DebugService/ContainerRun"
|
|
)
|
|
|
|
// DebugServiceClient is the client API for DebugService 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.
|
|
//
|
|
// DebugService provides debugging and inspection capabilities for a Talos node.
|
|
type DebugServiceClient interface {
|
|
// ContainerRun runs a debug container, attaches to it, and streams I/O.
|
|
ContainerRun(ctx context.Context, opts ...grpc.CallOption) (grpc.BidiStreamingClient[DebugContainerRunRequest, DebugContainerRunResponse], error)
|
|
}
|
|
|
|
type debugServiceClient struct {
|
|
cc grpc.ClientConnInterface
|
|
}
|
|
|
|
func NewDebugServiceClient(cc grpc.ClientConnInterface) DebugServiceClient {
|
|
return &debugServiceClient{cc}
|
|
}
|
|
|
|
func (c *debugServiceClient) ContainerRun(ctx context.Context, opts ...grpc.CallOption) (grpc.BidiStreamingClient[DebugContainerRunRequest, DebugContainerRunResponse], error) {
|
|
cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
|
|
stream, err := c.cc.NewStream(ctx, &DebugService_ServiceDesc.Streams[0], DebugService_ContainerRun_FullMethodName, cOpts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
x := &grpc.GenericClientStream[DebugContainerRunRequest, DebugContainerRunResponse]{ClientStream: stream}
|
|
return x, nil
|
|
}
|
|
|
|
// This type alias is provided for backwards compatibility with existing code that references the prior non-generic stream type by name.
|
|
type DebugService_ContainerRunClient = grpc.BidiStreamingClient[DebugContainerRunRequest, DebugContainerRunResponse]
|
|
|
|
// DebugServiceServer is the server API for DebugService service.
|
|
// All implementations must embed UnimplementedDebugServiceServer
|
|
// for forward compatibility.
|
|
//
|
|
// DebugService provides debugging and inspection capabilities for a Talos node.
|
|
type DebugServiceServer interface {
|
|
// ContainerRun runs a debug container, attaches to it, and streams I/O.
|
|
ContainerRun(grpc.BidiStreamingServer[DebugContainerRunRequest, DebugContainerRunResponse]) error
|
|
mustEmbedUnimplementedDebugServiceServer()
|
|
}
|
|
|
|
// UnimplementedDebugServiceServer 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 UnimplementedDebugServiceServer struct{}
|
|
|
|
func (UnimplementedDebugServiceServer) ContainerRun(grpc.BidiStreamingServer[DebugContainerRunRequest, DebugContainerRunResponse]) error {
|
|
return status.Error(codes.Unimplemented, "method ContainerRun not implemented")
|
|
}
|
|
func (UnimplementedDebugServiceServer) mustEmbedUnimplementedDebugServiceServer() {}
|
|
func (UnimplementedDebugServiceServer) testEmbeddedByValue() {}
|
|
|
|
// UnsafeDebugServiceServer may be embedded to opt out of forward compatibility for this service.
|
|
// Use of this interface is not recommended, as added methods to DebugServiceServer will
|
|
// result in compilation errors.
|
|
type UnsafeDebugServiceServer interface {
|
|
mustEmbedUnimplementedDebugServiceServer()
|
|
}
|
|
|
|
func RegisterDebugServiceServer(s grpc.ServiceRegistrar, srv DebugServiceServer) {
|
|
// If the following call panics, it indicates UnimplementedDebugServiceServer 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(&DebugService_ServiceDesc, srv)
|
|
}
|
|
|
|
func _DebugService_ContainerRun_Handler(srv interface{}, stream grpc.ServerStream) error {
|
|
return srv.(DebugServiceServer).ContainerRun(&grpc.GenericServerStream[DebugContainerRunRequest, DebugContainerRunResponse]{ServerStream: stream})
|
|
}
|
|
|
|
// This type alias is provided for backwards compatibility with existing code that references the prior non-generic stream type by name.
|
|
type DebugService_ContainerRunServer = grpc.BidiStreamingServer[DebugContainerRunRequest, DebugContainerRunResponse]
|
|
|
|
// DebugService_ServiceDesc is the grpc.ServiceDesc for DebugService service.
|
|
// It's only intended for direct use with grpc.RegisterService,
|
|
// and not to be introspected or modified (even as a copy)
|
|
var DebugService_ServiceDesc = grpc.ServiceDesc{
|
|
ServiceName: "machine.DebugService",
|
|
HandlerType: (*DebugServiceServer)(nil),
|
|
Methods: []grpc.MethodDesc{},
|
|
Streams: []grpc.StreamDesc{
|
|
{
|
|
StreamName: "ContainerRun",
|
|
Handler: _DebugService_ContainerRun_Handler,
|
|
ServerStreams: true,
|
|
ClientStreams: true,
|
|
},
|
|
},
|
|
Metadata: "machine/debug.proto",
|
|
}
|