// Copyright (c) 2022 Gitpod GmbH. All rights reserved. // Licensed under the GNU Affero General Public License (AGPL). // See License-AGPL.txt in the project root for license information. // Code generated by protoc-gen-go-grpc. DO NOT EDIT. package api 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.32.0 or later. const _ = grpc.SupportPackageIsVersion7 // WorkspaceServiceClient is the client API for WorkspaceService 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 WorkspaceServiceClient interface { // WorkspaceDownloadURL provides a URL from where the content of a workspace can be downloaded from WorkspaceDownloadURL(ctx context.Context, in *WorkspaceDownloadURLRequest, opts ...grpc.CallOption) (*WorkspaceDownloadURLResponse, error) // DeleteWorkspace deletes the content of a single workspace DeleteWorkspace(ctx context.Context, in *DeleteWorkspaceRequest, opts ...grpc.CallOption) (*DeleteWorkspaceResponse, error) // WorkspaceSnapshotExists checks whether the snapshot exists or not WorkspaceSnapshotExists(ctx context.Context, in *WorkspaceSnapshotExistsRequest, opts ...grpc.CallOption) (*WorkspaceSnapshotExistsResponse, error) } type workspaceServiceClient struct { cc grpc.ClientConnInterface } func NewWorkspaceServiceClient(cc grpc.ClientConnInterface) WorkspaceServiceClient { return &workspaceServiceClient{cc} } func (c *workspaceServiceClient) WorkspaceDownloadURL(ctx context.Context, in *WorkspaceDownloadURLRequest, opts ...grpc.CallOption) (*WorkspaceDownloadURLResponse, error) { out := new(WorkspaceDownloadURLResponse) err := c.cc.Invoke(ctx, "/contentservice.WorkspaceService/WorkspaceDownloadURL", in, out, opts...) if err != nil { return nil, err } return out, nil } func (c *workspaceServiceClient) DeleteWorkspace(ctx context.Context, in *DeleteWorkspaceRequest, opts ...grpc.CallOption) (*DeleteWorkspaceResponse, error) { out := new(DeleteWorkspaceResponse) err := c.cc.Invoke(ctx, "/contentservice.WorkspaceService/DeleteWorkspace", in, out, opts...) if err != nil { return nil, err } return out, nil } func (c *workspaceServiceClient) WorkspaceSnapshotExists(ctx context.Context, in *WorkspaceSnapshotExistsRequest, opts ...grpc.CallOption) (*WorkspaceSnapshotExistsResponse, error) { out := new(WorkspaceSnapshotExistsResponse) err := c.cc.Invoke(ctx, "/contentservice.WorkspaceService/WorkspaceSnapshotExists", in, out, opts...) if err != nil { return nil, err } return out, nil } // WorkspaceServiceServer is the server API for WorkspaceService service. // All implementations must embed UnimplementedWorkspaceServiceServer // for forward compatibility type WorkspaceServiceServer interface { // WorkspaceDownloadURL provides a URL from where the content of a workspace can be downloaded from WorkspaceDownloadURL(context.Context, *WorkspaceDownloadURLRequest) (*WorkspaceDownloadURLResponse, error) // DeleteWorkspace deletes the content of a single workspace DeleteWorkspace(context.Context, *DeleteWorkspaceRequest) (*DeleteWorkspaceResponse, error) // WorkspaceSnapshotExists checks whether the snapshot exists or not WorkspaceSnapshotExists(context.Context, *WorkspaceSnapshotExistsRequest) (*WorkspaceSnapshotExistsResponse, error) mustEmbedUnimplementedWorkspaceServiceServer() } // UnimplementedWorkspaceServiceServer must be embedded to have forward compatible implementations. type UnimplementedWorkspaceServiceServer struct { } func (UnimplementedWorkspaceServiceServer) WorkspaceDownloadURL(context.Context, *WorkspaceDownloadURLRequest) (*WorkspaceDownloadURLResponse, error) { return nil, status.Errorf(codes.Unimplemented, "method WorkspaceDownloadURL not implemented") } func (UnimplementedWorkspaceServiceServer) DeleteWorkspace(context.Context, *DeleteWorkspaceRequest) (*DeleteWorkspaceResponse, error) { return nil, status.Errorf(codes.Unimplemented, "method DeleteWorkspace not implemented") } func (UnimplementedWorkspaceServiceServer) WorkspaceSnapshotExists(context.Context, *WorkspaceSnapshotExistsRequest) (*WorkspaceSnapshotExistsResponse, error) { return nil, status.Errorf(codes.Unimplemented, "method WorkspaceSnapshotExists not implemented") } func (UnimplementedWorkspaceServiceServer) mustEmbedUnimplementedWorkspaceServiceServer() {} // UnsafeWorkspaceServiceServer may be embedded to opt out of forward compatibility for this service. // Use of this interface is not recommended, as added methods to WorkspaceServiceServer will // result in compilation errors. type UnsafeWorkspaceServiceServer interface { mustEmbedUnimplementedWorkspaceServiceServer() } func RegisterWorkspaceServiceServer(s grpc.ServiceRegistrar, srv WorkspaceServiceServer) { s.RegisterService(&WorkspaceService_ServiceDesc, srv) } func _WorkspaceService_WorkspaceDownloadURL_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { in := new(WorkspaceDownloadURLRequest) if err := dec(in); err != nil { return nil, err } if interceptor == nil { return srv.(WorkspaceServiceServer).WorkspaceDownloadURL(ctx, in) } info := &grpc.UnaryServerInfo{ Server: srv, FullMethod: "/contentservice.WorkspaceService/WorkspaceDownloadURL", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(WorkspaceServiceServer).WorkspaceDownloadURL(ctx, req.(*WorkspaceDownloadURLRequest)) } return interceptor(ctx, in, info, handler) } func _WorkspaceService_DeleteWorkspace_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { in := new(DeleteWorkspaceRequest) if err := dec(in); err != nil { return nil, err } if interceptor == nil { return srv.(WorkspaceServiceServer).DeleteWorkspace(ctx, in) } info := &grpc.UnaryServerInfo{ Server: srv, FullMethod: "/contentservice.WorkspaceService/DeleteWorkspace", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(WorkspaceServiceServer).DeleteWorkspace(ctx, req.(*DeleteWorkspaceRequest)) } return interceptor(ctx, in, info, handler) } func _WorkspaceService_WorkspaceSnapshotExists_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { in := new(WorkspaceSnapshotExistsRequest) if err := dec(in); err != nil { return nil, err } if interceptor == nil { return srv.(WorkspaceServiceServer).WorkspaceSnapshotExists(ctx, in) } info := &grpc.UnaryServerInfo{ Server: srv, FullMethod: "/contentservice.WorkspaceService/WorkspaceSnapshotExists", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(WorkspaceServiceServer).WorkspaceSnapshotExists(ctx, req.(*WorkspaceSnapshotExistsRequest)) } return interceptor(ctx, in, info, handler) } // WorkspaceService_ServiceDesc is the grpc.ServiceDesc for WorkspaceService service. // It's only intended for direct use with grpc.RegisterService, // and not to be introspected or modified (even as a copy) var WorkspaceService_ServiceDesc = grpc.ServiceDesc{ ServiceName: "contentservice.WorkspaceService", HandlerType: (*WorkspaceServiceServer)(nil), Methods: []grpc.MethodDesc{ { MethodName: "WorkspaceDownloadURL", Handler: _WorkspaceService_WorkspaceDownloadURL_Handler, }, { MethodName: "DeleteWorkspace", Handler: _WorkspaceService_DeleteWorkspace_Handler, }, { MethodName: "WorkspaceSnapshotExists", Handler: _WorkspaceService_WorkspaceSnapshotExists_Handler, }, }, Streams: []grpc.StreamDesc{}, Metadata: "workspace.proto", }