Path: blob/main/components/public-api/go/experimental/v1/workspaces_grpc.pb.go
2501 views
// Copyright (c) 2025 Gitpod GmbH. All rights reserved.1// Licensed under the GNU Affero General Public License (AGPL).2// See License.AGPL.txt in the project root for license information.34// Code generated by protoc-gen-go-grpc. DO NOT EDIT.5// versions:6// - protoc-gen-go-grpc v1.2.07// - protoc (unknown)8// source: gitpod/experimental/v1/workspaces.proto910package v11112import (13context "context"14grpc "google.golang.org/grpc"15codes "google.golang.org/grpc/codes"16status "google.golang.org/grpc/status"17)1819// This is a compile-time assertion to ensure that this generated file20// is compatible with the grpc package it is being compiled against.21// Requires gRPC-Go v1.32.0 or later.22const _ = grpc.SupportPackageIsVersion72324// WorkspacesServiceClient is the client API for WorkspacesService service.25//26// 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.27type WorkspacesServiceClient interface {28// ListWorkspaces enumerates all workspaces belonging to the authenticated user.29ListWorkspaces(ctx context.Context, in *ListWorkspacesRequest, opts ...grpc.CallOption) (*ListWorkspacesResponse, error)30// GetWorkspace returns a single workspace.31GetWorkspace(ctx context.Context, in *GetWorkspaceRequest, opts ...grpc.CallOption) (*GetWorkspaceResponse, error)32// StreamWorkspaceStatus returns workspace status once it changed.33StreamWorkspaceStatus(ctx context.Context, in *StreamWorkspaceStatusRequest, opts ...grpc.CallOption) (WorkspacesService_StreamWorkspaceStatusClient, error)34// GetOwnerToken returns an owner token.35GetOwnerToken(ctx context.Context, in *GetOwnerTokenRequest, opts ...grpc.CallOption) (*GetOwnerTokenResponse, error)36// CreateAndStartWorkspace creates a new workspace and starts it.37CreateAndStartWorkspace(ctx context.Context, in *CreateAndStartWorkspaceRequest, opts ...grpc.CallOption) (*CreateAndStartWorkspaceResponse, error)38// StartWorkspace starts an existing workspace.39StartWorkspace(ctx context.Context, in *StartWorkspaceRequest, opts ...grpc.CallOption) (*StartWorkspaceResponse, error)40// StopWorkspace stops a running workspace (instance).41// Errors:42//43// NOT_FOUND: the workspace_id is unkown44// FAILED_PRECONDITION: if there's no running instance45StopWorkspace(ctx context.Context, in *StopWorkspaceRequest, opts ...grpc.CallOption) (*StopWorkspaceResponse, error)46// DeleteWorkspace deletes a workspace.47// When the workspace is running, it will be stopped as well.48// Deleted workspaces cannot be started again.49DeleteWorkspace(ctx context.Context, in *DeleteWorkspaceRequest, opts ...grpc.CallOption) (*DeleteWorkspaceResponse, error)50UpdatePort(ctx context.Context, in *UpdatePortRequest, opts ...grpc.CallOption) (*UpdatePortResponse, error)51// ListWorkspaceClasses enumerates all available workspace classes.52ListWorkspaceClasses(ctx context.Context, in *ListWorkspaceClassesRequest, opts ...grpc.CallOption) (*ListWorkspaceClassesResponse, error)53// GetDefaultWorkspaceImage returns the default workspace image from different sources.54GetDefaultWorkspaceImage(ctx context.Context, in *GetDefaultWorkspaceImageRequest, opts ...grpc.CallOption) (*GetDefaultWorkspaceImageResponse, error)55}5657type workspacesServiceClient struct {58cc grpc.ClientConnInterface59}6061func NewWorkspacesServiceClient(cc grpc.ClientConnInterface) WorkspacesServiceClient {62return &workspacesServiceClient{cc}63}6465func (c *workspacesServiceClient) ListWorkspaces(ctx context.Context, in *ListWorkspacesRequest, opts ...grpc.CallOption) (*ListWorkspacesResponse, error) {66out := new(ListWorkspacesResponse)67err := c.cc.Invoke(ctx, "/gitpod.experimental.v1.WorkspacesService/ListWorkspaces", in, out, opts...)68if err != nil {69return nil, err70}71return out, nil72}7374func (c *workspacesServiceClient) GetWorkspace(ctx context.Context, in *GetWorkspaceRequest, opts ...grpc.CallOption) (*GetWorkspaceResponse, error) {75out := new(GetWorkspaceResponse)76err := c.cc.Invoke(ctx, "/gitpod.experimental.v1.WorkspacesService/GetWorkspace", in, out, opts...)77if err != nil {78return nil, err79}80return out, nil81}8283func (c *workspacesServiceClient) StreamWorkspaceStatus(ctx context.Context, in *StreamWorkspaceStatusRequest, opts ...grpc.CallOption) (WorkspacesService_StreamWorkspaceStatusClient, error) {84stream, err := c.cc.NewStream(ctx, &WorkspacesService_ServiceDesc.Streams[0], "/gitpod.experimental.v1.WorkspacesService/StreamWorkspaceStatus", opts...)85if err != nil {86return nil, err87}88x := &workspacesServiceStreamWorkspaceStatusClient{stream}89if err := x.ClientStream.SendMsg(in); err != nil {90return nil, err91}92if err := x.ClientStream.CloseSend(); err != nil {93return nil, err94}95return x, nil96}9798type WorkspacesService_StreamWorkspaceStatusClient interface {99Recv() (*StreamWorkspaceStatusResponse, error)100grpc.ClientStream101}102103type workspacesServiceStreamWorkspaceStatusClient struct {104grpc.ClientStream105}106107func (x *workspacesServiceStreamWorkspaceStatusClient) Recv() (*StreamWorkspaceStatusResponse, error) {108m := new(StreamWorkspaceStatusResponse)109if err := x.ClientStream.RecvMsg(m); err != nil {110return nil, err111}112return m, nil113}114115func (c *workspacesServiceClient) GetOwnerToken(ctx context.Context, in *GetOwnerTokenRequest, opts ...grpc.CallOption) (*GetOwnerTokenResponse, error) {116out := new(GetOwnerTokenResponse)117err := c.cc.Invoke(ctx, "/gitpod.experimental.v1.WorkspacesService/GetOwnerToken", in, out, opts...)118if err != nil {119return nil, err120}121return out, nil122}123124func (c *workspacesServiceClient) CreateAndStartWorkspace(ctx context.Context, in *CreateAndStartWorkspaceRequest, opts ...grpc.CallOption) (*CreateAndStartWorkspaceResponse, error) {125out := new(CreateAndStartWorkspaceResponse)126err := c.cc.Invoke(ctx, "/gitpod.experimental.v1.WorkspacesService/CreateAndStartWorkspace", in, out, opts...)127if err != nil {128return nil, err129}130return out, nil131}132133func (c *workspacesServiceClient) StartWorkspace(ctx context.Context, in *StartWorkspaceRequest, opts ...grpc.CallOption) (*StartWorkspaceResponse, error) {134out := new(StartWorkspaceResponse)135err := c.cc.Invoke(ctx, "/gitpod.experimental.v1.WorkspacesService/StartWorkspace", in, out, opts...)136if err != nil {137return nil, err138}139return out, nil140}141142func (c *workspacesServiceClient) StopWorkspace(ctx context.Context, in *StopWorkspaceRequest, opts ...grpc.CallOption) (*StopWorkspaceResponse, error) {143out := new(StopWorkspaceResponse)144err := c.cc.Invoke(ctx, "/gitpod.experimental.v1.WorkspacesService/StopWorkspace", in, out, opts...)145if err != nil {146return nil, err147}148return out, nil149}150151func (c *workspacesServiceClient) DeleteWorkspace(ctx context.Context, in *DeleteWorkspaceRequest, opts ...grpc.CallOption) (*DeleteWorkspaceResponse, error) {152out := new(DeleteWorkspaceResponse)153err := c.cc.Invoke(ctx, "/gitpod.experimental.v1.WorkspacesService/DeleteWorkspace", in, out, opts...)154if err != nil {155return nil, err156}157return out, nil158}159160func (c *workspacesServiceClient) UpdatePort(ctx context.Context, in *UpdatePortRequest, opts ...grpc.CallOption) (*UpdatePortResponse, error) {161out := new(UpdatePortResponse)162err := c.cc.Invoke(ctx, "/gitpod.experimental.v1.WorkspacesService/UpdatePort", in, out, opts...)163if err != nil {164return nil, err165}166return out, nil167}168169func (c *workspacesServiceClient) ListWorkspaceClasses(ctx context.Context, in *ListWorkspaceClassesRequest, opts ...grpc.CallOption) (*ListWorkspaceClassesResponse, error) {170out := new(ListWorkspaceClassesResponse)171err := c.cc.Invoke(ctx, "/gitpod.experimental.v1.WorkspacesService/ListWorkspaceClasses", in, out, opts...)172if err != nil {173return nil, err174}175return out, nil176}177178func (c *workspacesServiceClient) GetDefaultWorkspaceImage(ctx context.Context, in *GetDefaultWorkspaceImageRequest, opts ...grpc.CallOption) (*GetDefaultWorkspaceImageResponse, error) {179out := new(GetDefaultWorkspaceImageResponse)180err := c.cc.Invoke(ctx, "/gitpod.experimental.v1.WorkspacesService/GetDefaultWorkspaceImage", in, out, opts...)181if err != nil {182return nil, err183}184return out, nil185}186187// WorkspacesServiceServer is the server API for WorkspacesService service.188// All implementations must embed UnimplementedWorkspacesServiceServer189// for forward compatibility190type WorkspacesServiceServer interface {191// ListWorkspaces enumerates all workspaces belonging to the authenticated user.192ListWorkspaces(context.Context, *ListWorkspacesRequest) (*ListWorkspacesResponse, error)193// GetWorkspace returns a single workspace.194GetWorkspace(context.Context, *GetWorkspaceRequest) (*GetWorkspaceResponse, error)195// StreamWorkspaceStatus returns workspace status once it changed.196StreamWorkspaceStatus(*StreamWorkspaceStatusRequest, WorkspacesService_StreamWorkspaceStatusServer) error197// GetOwnerToken returns an owner token.198GetOwnerToken(context.Context, *GetOwnerTokenRequest) (*GetOwnerTokenResponse, error)199// CreateAndStartWorkspace creates a new workspace and starts it.200CreateAndStartWorkspace(context.Context, *CreateAndStartWorkspaceRequest) (*CreateAndStartWorkspaceResponse, error)201// StartWorkspace starts an existing workspace.202StartWorkspace(context.Context, *StartWorkspaceRequest) (*StartWorkspaceResponse, error)203// StopWorkspace stops a running workspace (instance).204// Errors:205//206// NOT_FOUND: the workspace_id is unkown207// FAILED_PRECONDITION: if there's no running instance208StopWorkspace(context.Context, *StopWorkspaceRequest) (*StopWorkspaceResponse, error)209// DeleteWorkspace deletes a workspace.210// When the workspace is running, it will be stopped as well.211// Deleted workspaces cannot be started again.212DeleteWorkspace(context.Context, *DeleteWorkspaceRequest) (*DeleteWorkspaceResponse, error)213UpdatePort(context.Context, *UpdatePortRequest) (*UpdatePortResponse, error)214// ListWorkspaceClasses enumerates all available workspace classes.215ListWorkspaceClasses(context.Context, *ListWorkspaceClassesRequest) (*ListWorkspaceClassesResponse, error)216// GetDefaultWorkspaceImage returns the default workspace image from different sources.217GetDefaultWorkspaceImage(context.Context, *GetDefaultWorkspaceImageRequest) (*GetDefaultWorkspaceImageResponse, error)218mustEmbedUnimplementedWorkspacesServiceServer()219}220221// UnimplementedWorkspacesServiceServer must be embedded to have forward compatible implementations.222type UnimplementedWorkspacesServiceServer struct {223}224225func (UnimplementedWorkspacesServiceServer) ListWorkspaces(context.Context, *ListWorkspacesRequest) (*ListWorkspacesResponse, error) {226return nil, status.Errorf(codes.Unimplemented, "method ListWorkspaces not implemented")227}228func (UnimplementedWorkspacesServiceServer) GetWorkspace(context.Context, *GetWorkspaceRequest) (*GetWorkspaceResponse, error) {229return nil, status.Errorf(codes.Unimplemented, "method GetWorkspace not implemented")230}231func (UnimplementedWorkspacesServiceServer) StreamWorkspaceStatus(*StreamWorkspaceStatusRequest, WorkspacesService_StreamWorkspaceStatusServer) error {232return status.Errorf(codes.Unimplemented, "method StreamWorkspaceStatus not implemented")233}234func (UnimplementedWorkspacesServiceServer) GetOwnerToken(context.Context, *GetOwnerTokenRequest) (*GetOwnerTokenResponse, error) {235return nil, status.Errorf(codes.Unimplemented, "method GetOwnerToken not implemented")236}237func (UnimplementedWorkspacesServiceServer) CreateAndStartWorkspace(context.Context, *CreateAndStartWorkspaceRequest) (*CreateAndStartWorkspaceResponse, error) {238return nil, status.Errorf(codes.Unimplemented, "method CreateAndStartWorkspace not implemented")239}240func (UnimplementedWorkspacesServiceServer) StartWorkspace(context.Context, *StartWorkspaceRequest) (*StartWorkspaceResponse, error) {241return nil, status.Errorf(codes.Unimplemented, "method StartWorkspace not implemented")242}243func (UnimplementedWorkspacesServiceServer) StopWorkspace(context.Context, *StopWorkspaceRequest) (*StopWorkspaceResponse, error) {244return nil, status.Errorf(codes.Unimplemented, "method StopWorkspace not implemented")245}246func (UnimplementedWorkspacesServiceServer) DeleteWorkspace(context.Context, *DeleteWorkspaceRequest) (*DeleteWorkspaceResponse, error) {247return nil, status.Errorf(codes.Unimplemented, "method DeleteWorkspace not implemented")248}249func (UnimplementedWorkspacesServiceServer) UpdatePort(context.Context, *UpdatePortRequest) (*UpdatePortResponse, error) {250return nil, status.Errorf(codes.Unimplemented, "method UpdatePort not implemented")251}252func (UnimplementedWorkspacesServiceServer) ListWorkspaceClasses(context.Context, *ListWorkspaceClassesRequest) (*ListWorkspaceClassesResponse, error) {253return nil, status.Errorf(codes.Unimplemented, "method ListWorkspaceClasses not implemented")254}255func (UnimplementedWorkspacesServiceServer) GetDefaultWorkspaceImage(context.Context, *GetDefaultWorkspaceImageRequest) (*GetDefaultWorkspaceImageResponse, error) {256return nil, status.Errorf(codes.Unimplemented, "method GetDefaultWorkspaceImage not implemented")257}258func (UnimplementedWorkspacesServiceServer) mustEmbedUnimplementedWorkspacesServiceServer() {}259260// UnsafeWorkspacesServiceServer may be embedded to opt out of forward compatibility for this service.261// Use of this interface is not recommended, as added methods to WorkspacesServiceServer will262// result in compilation errors.263type UnsafeWorkspacesServiceServer interface {264mustEmbedUnimplementedWorkspacesServiceServer()265}266267func RegisterWorkspacesServiceServer(s grpc.ServiceRegistrar, srv WorkspacesServiceServer) {268s.RegisterService(&WorkspacesService_ServiceDesc, srv)269}270271func _WorkspacesService_ListWorkspaces_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {272in := new(ListWorkspacesRequest)273if err := dec(in); err != nil {274return nil, err275}276if interceptor == nil {277return srv.(WorkspacesServiceServer).ListWorkspaces(ctx, in)278}279info := &grpc.UnaryServerInfo{280Server: srv,281FullMethod: "/gitpod.experimental.v1.WorkspacesService/ListWorkspaces",282}283handler := func(ctx context.Context, req interface{}) (interface{}, error) {284return srv.(WorkspacesServiceServer).ListWorkspaces(ctx, req.(*ListWorkspacesRequest))285}286return interceptor(ctx, in, info, handler)287}288289func _WorkspacesService_GetWorkspace_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {290in := new(GetWorkspaceRequest)291if err := dec(in); err != nil {292return nil, err293}294if interceptor == nil {295return srv.(WorkspacesServiceServer).GetWorkspace(ctx, in)296}297info := &grpc.UnaryServerInfo{298Server: srv,299FullMethod: "/gitpod.experimental.v1.WorkspacesService/GetWorkspace",300}301handler := func(ctx context.Context, req interface{}) (interface{}, error) {302return srv.(WorkspacesServiceServer).GetWorkspace(ctx, req.(*GetWorkspaceRequest))303}304return interceptor(ctx, in, info, handler)305}306307func _WorkspacesService_StreamWorkspaceStatus_Handler(srv interface{}, stream grpc.ServerStream) error {308m := new(StreamWorkspaceStatusRequest)309if err := stream.RecvMsg(m); err != nil {310return err311}312return srv.(WorkspacesServiceServer).StreamWorkspaceStatus(m, &workspacesServiceStreamWorkspaceStatusServer{stream})313}314315type WorkspacesService_StreamWorkspaceStatusServer interface {316Send(*StreamWorkspaceStatusResponse) error317grpc.ServerStream318}319320type workspacesServiceStreamWorkspaceStatusServer struct {321grpc.ServerStream322}323324func (x *workspacesServiceStreamWorkspaceStatusServer) Send(m *StreamWorkspaceStatusResponse) error {325return x.ServerStream.SendMsg(m)326}327328func _WorkspacesService_GetOwnerToken_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {329in := new(GetOwnerTokenRequest)330if err := dec(in); err != nil {331return nil, err332}333if interceptor == nil {334return srv.(WorkspacesServiceServer).GetOwnerToken(ctx, in)335}336info := &grpc.UnaryServerInfo{337Server: srv,338FullMethod: "/gitpod.experimental.v1.WorkspacesService/GetOwnerToken",339}340handler := func(ctx context.Context, req interface{}) (interface{}, error) {341return srv.(WorkspacesServiceServer).GetOwnerToken(ctx, req.(*GetOwnerTokenRequest))342}343return interceptor(ctx, in, info, handler)344}345346func _WorkspacesService_CreateAndStartWorkspace_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {347in := new(CreateAndStartWorkspaceRequest)348if err := dec(in); err != nil {349return nil, err350}351if interceptor == nil {352return srv.(WorkspacesServiceServer).CreateAndStartWorkspace(ctx, in)353}354info := &grpc.UnaryServerInfo{355Server: srv,356FullMethod: "/gitpod.experimental.v1.WorkspacesService/CreateAndStartWorkspace",357}358handler := func(ctx context.Context, req interface{}) (interface{}, error) {359return srv.(WorkspacesServiceServer).CreateAndStartWorkspace(ctx, req.(*CreateAndStartWorkspaceRequest))360}361return interceptor(ctx, in, info, handler)362}363364func _WorkspacesService_StartWorkspace_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {365in := new(StartWorkspaceRequest)366if err := dec(in); err != nil {367return nil, err368}369if interceptor == nil {370return srv.(WorkspacesServiceServer).StartWorkspace(ctx, in)371}372info := &grpc.UnaryServerInfo{373Server: srv,374FullMethod: "/gitpod.experimental.v1.WorkspacesService/StartWorkspace",375}376handler := func(ctx context.Context, req interface{}) (interface{}, error) {377return srv.(WorkspacesServiceServer).StartWorkspace(ctx, req.(*StartWorkspaceRequest))378}379return interceptor(ctx, in, info, handler)380}381382func _WorkspacesService_StopWorkspace_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {383in := new(StopWorkspaceRequest)384if err := dec(in); err != nil {385return nil, err386}387if interceptor == nil {388return srv.(WorkspacesServiceServer).StopWorkspace(ctx, in)389}390info := &grpc.UnaryServerInfo{391Server: srv,392FullMethod: "/gitpod.experimental.v1.WorkspacesService/StopWorkspace",393}394handler := func(ctx context.Context, req interface{}) (interface{}, error) {395return srv.(WorkspacesServiceServer).StopWorkspace(ctx, req.(*StopWorkspaceRequest))396}397return interceptor(ctx, in, info, handler)398}399400func _WorkspacesService_DeleteWorkspace_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {401in := new(DeleteWorkspaceRequest)402if err := dec(in); err != nil {403return nil, err404}405if interceptor == nil {406return srv.(WorkspacesServiceServer).DeleteWorkspace(ctx, in)407}408info := &grpc.UnaryServerInfo{409Server: srv,410FullMethod: "/gitpod.experimental.v1.WorkspacesService/DeleteWorkspace",411}412handler := func(ctx context.Context, req interface{}) (interface{}, error) {413return srv.(WorkspacesServiceServer).DeleteWorkspace(ctx, req.(*DeleteWorkspaceRequest))414}415return interceptor(ctx, in, info, handler)416}417418func _WorkspacesService_UpdatePort_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {419in := new(UpdatePortRequest)420if err := dec(in); err != nil {421return nil, err422}423if interceptor == nil {424return srv.(WorkspacesServiceServer).UpdatePort(ctx, in)425}426info := &grpc.UnaryServerInfo{427Server: srv,428FullMethod: "/gitpod.experimental.v1.WorkspacesService/UpdatePort",429}430handler := func(ctx context.Context, req interface{}) (interface{}, error) {431return srv.(WorkspacesServiceServer).UpdatePort(ctx, req.(*UpdatePortRequest))432}433return interceptor(ctx, in, info, handler)434}435436func _WorkspacesService_ListWorkspaceClasses_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {437in := new(ListWorkspaceClassesRequest)438if err := dec(in); err != nil {439return nil, err440}441if interceptor == nil {442return srv.(WorkspacesServiceServer).ListWorkspaceClasses(ctx, in)443}444info := &grpc.UnaryServerInfo{445Server: srv,446FullMethod: "/gitpod.experimental.v1.WorkspacesService/ListWorkspaceClasses",447}448handler := func(ctx context.Context, req interface{}) (interface{}, error) {449return srv.(WorkspacesServiceServer).ListWorkspaceClasses(ctx, req.(*ListWorkspaceClassesRequest))450}451return interceptor(ctx, in, info, handler)452}453454func _WorkspacesService_GetDefaultWorkspaceImage_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {455in := new(GetDefaultWorkspaceImageRequest)456if err := dec(in); err != nil {457return nil, err458}459if interceptor == nil {460return srv.(WorkspacesServiceServer).GetDefaultWorkspaceImage(ctx, in)461}462info := &grpc.UnaryServerInfo{463Server: srv,464FullMethod: "/gitpod.experimental.v1.WorkspacesService/GetDefaultWorkspaceImage",465}466handler := func(ctx context.Context, req interface{}) (interface{}, error) {467return srv.(WorkspacesServiceServer).GetDefaultWorkspaceImage(ctx, req.(*GetDefaultWorkspaceImageRequest))468}469return interceptor(ctx, in, info, handler)470}471472// WorkspacesService_ServiceDesc is the grpc.ServiceDesc for WorkspacesService service.473// It's only intended for direct use with grpc.RegisterService,474// and not to be introspected or modified (even as a copy)475var WorkspacesService_ServiceDesc = grpc.ServiceDesc{476ServiceName: "gitpod.experimental.v1.WorkspacesService",477HandlerType: (*WorkspacesServiceServer)(nil),478Methods: []grpc.MethodDesc{479{480MethodName: "ListWorkspaces",481Handler: _WorkspacesService_ListWorkspaces_Handler,482},483{484MethodName: "GetWorkspace",485Handler: _WorkspacesService_GetWorkspace_Handler,486},487{488MethodName: "GetOwnerToken",489Handler: _WorkspacesService_GetOwnerToken_Handler,490},491{492MethodName: "CreateAndStartWorkspace",493Handler: _WorkspacesService_CreateAndStartWorkspace_Handler,494},495{496MethodName: "StartWorkspace",497Handler: _WorkspacesService_StartWorkspace_Handler,498},499{500MethodName: "StopWorkspace",501Handler: _WorkspacesService_StopWorkspace_Handler,502},503{504MethodName: "DeleteWorkspace",505Handler: _WorkspacesService_DeleteWorkspace_Handler,506},507{508MethodName: "UpdatePort",509Handler: _WorkspacesService_UpdatePort_Handler,510},511{512MethodName: "ListWorkspaceClasses",513Handler: _WorkspacesService_ListWorkspaceClasses_Handler,514},515{516MethodName: "GetDefaultWorkspaceImage",517Handler: _WorkspacesService_GetDefaultWorkspaceImage_Handler,518},519},520Streams: []grpc.StreamDesc{521{522StreamName: "StreamWorkspaceStatus",523Handler: _WorkspacesService_StreamWorkspaceStatus_Handler,524ServerStreams: true,525},526},527Metadata: "gitpod/experimental/v1/workspaces.proto",528}529530531