// Copyright (c) HashiCorp, Inc. // SPDX-License-Identifier: BUSL-1.1 // Code generated by protoc-gen-go-grpc. DO NOT EDIT. // versions: // - protoc-gen-go-grpc v1.5.1 // - protoc v5.29.3 // source: cloudproto1.proto package cloudproto1 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 ( CommandService_Execute_FullMethodName = "/cloudproto1.CommandService/Execute" ) // CommandServiceClient is the client API for CommandService 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. // // PluginService defines the gRPC service to handle available commands and // their execution. type CommandServiceClient interface { // Execute runs a specific command with the provided flags and returns the result. Execute(ctx context.Context, in *CommandRequest, opts ...grpc.CallOption) (grpc.ServerStreamingClient[CommandResponse], error) } type commandServiceClient struct { cc grpc.ClientConnInterface } func NewCommandServiceClient(cc grpc.ClientConnInterface) CommandServiceClient { return &commandServiceClient{cc} } func (c *commandServiceClient) Execute(ctx context.Context, in *CommandRequest, opts ...grpc.CallOption) (grpc.ServerStreamingClient[CommandResponse], error) { cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) stream, err := c.cc.NewStream(ctx, &CommandService_ServiceDesc.Streams[0], CommandService_Execute_FullMethodName, cOpts...) if err != nil { return nil, err } x := &grpc.GenericClientStream[CommandRequest, CommandResponse]{ClientStream: stream} if err := x.ClientStream.SendMsg(in); err != nil { return nil, err } if err := x.ClientStream.CloseSend(); err != nil { return nil, err } 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 CommandService_ExecuteClient = grpc.ServerStreamingClient[CommandResponse] // CommandServiceServer is the server API for CommandService service. // All implementations must embed UnimplementedCommandServiceServer // for forward compatibility. // // PluginService defines the gRPC service to handle available commands and // their execution. type CommandServiceServer interface { // Execute runs a specific command with the provided flags and returns the result. Execute(*CommandRequest, grpc.ServerStreamingServer[CommandResponse]) error mustEmbedUnimplementedCommandServiceServer() } // UnimplementedCommandServiceServer 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 UnimplementedCommandServiceServer struct{} func (UnimplementedCommandServiceServer) Execute(*CommandRequest, grpc.ServerStreamingServer[CommandResponse]) error { return status.Errorf(codes.Unimplemented, "method Execute not implemented") } func (UnimplementedCommandServiceServer) mustEmbedUnimplementedCommandServiceServer() {} func (UnimplementedCommandServiceServer) testEmbeddedByValue() {} // UnsafeCommandServiceServer may be embedded to opt out of forward compatibility for this service. // Use of this interface is not recommended, as added methods to CommandServiceServer will // result in compilation errors. type UnsafeCommandServiceServer interface { mustEmbedUnimplementedCommandServiceServer() } func RegisterCommandServiceServer(s grpc.ServiceRegistrar, srv CommandServiceServer) { // If the following call pancis, it indicates UnimplementedCommandServiceServer 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(&CommandService_ServiceDesc, srv) } func _CommandService_Execute_Handler(srv interface{}, stream grpc.ServerStream) error { m := new(CommandRequest) if err := stream.RecvMsg(m); err != nil { return err } return srv.(CommandServiceServer).Execute(m, &grpc.GenericServerStream[CommandRequest, CommandResponse]{ServerStream: stream}) } // This type alias is provided for backwards compatibility with existing code that references the prior non-generic stream type by name. type CommandService_ExecuteServer = grpc.ServerStreamingServer[CommandResponse] // CommandService_ServiceDesc is the grpc.ServiceDesc for CommandService service. // It's only intended for direct use with grpc.RegisterService, // and not to be introspected or modified (even as a copy) var CommandService_ServiceDesc = grpc.ServiceDesc{ ServiceName: "cloudproto1.CommandService", HandlerType: (*CommandServiceServer)(nil), Methods: []grpc.MethodDesc{}, Streams: []grpc.StreamDesc{ { StreamName: "Execute", Handler: _CommandService_Execute_Handler, ServerStreams: true, }, }, Metadata: "cloudproto1.proto", }