Path: blob/main/components/content-service-api/go/workspace.pb.go
2496 views
// Copyright (c) 2021 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. DO NOT EDIT.5// versions:6// protoc-gen-go v1.28.17// protoc (unknown)8// source: workspace.proto910package api1112import (13protoreflect "google.golang.org/protobuf/reflect/protoreflect"14protoimpl "google.golang.org/protobuf/runtime/protoimpl"15reflect "reflect"16sync "sync"17)1819const (20// Verify that this generated code is sufficiently up-to-date.21_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)22// Verify that runtime/protoimpl is sufficiently up-to-date.23_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)24)2526type WorkspaceDownloadURLRequest struct {27state protoimpl.MessageState28sizeCache protoimpl.SizeCache29unknownFields protoimpl.UnknownFields3031OwnerId string `protobuf:"bytes,1,opt,name=owner_id,json=ownerId,proto3" json:"owner_id,omitempty"`32WorkspaceId string `protobuf:"bytes,2,opt,name=workspace_id,json=workspaceId,proto3" json:"workspace_id,omitempty"`33}3435func (x *WorkspaceDownloadURLRequest) Reset() {36*x = WorkspaceDownloadURLRequest{}37if protoimpl.UnsafeEnabled {38mi := &file_workspace_proto_msgTypes[0]39ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))40ms.StoreMessageInfo(mi)41}42}4344func (x *WorkspaceDownloadURLRequest) String() string {45return protoimpl.X.MessageStringOf(x)46}4748func (*WorkspaceDownloadURLRequest) ProtoMessage() {}4950func (x *WorkspaceDownloadURLRequest) ProtoReflect() protoreflect.Message {51mi := &file_workspace_proto_msgTypes[0]52if protoimpl.UnsafeEnabled && x != nil {53ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))54if ms.LoadMessageInfo() == nil {55ms.StoreMessageInfo(mi)56}57return ms58}59return mi.MessageOf(x)60}6162// Deprecated: Use WorkspaceDownloadURLRequest.ProtoReflect.Descriptor instead.63func (*WorkspaceDownloadURLRequest) Descriptor() ([]byte, []int) {64return file_workspace_proto_rawDescGZIP(), []int{0}65}6667func (x *WorkspaceDownloadURLRequest) GetOwnerId() string {68if x != nil {69return x.OwnerId70}71return ""72}7374func (x *WorkspaceDownloadURLRequest) GetWorkspaceId() string {75if x != nil {76return x.WorkspaceId77}78return ""79}8081type WorkspaceDownloadURLResponse struct {82state protoimpl.MessageState83sizeCache protoimpl.SizeCache84unknownFields protoimpl.UnknownFields8586Url string `protobuf:"bytes,1,opt,name=url,proto3" json:"url,omitempty"`87}8889func (x *WorkspaceDownloadURLResponse) Reset() {90*x = WorkspaceDownloadURLResponse{}91if protoimpl.UnsafeEnabled {92mi := &file_workspace_proto_msgTypes[1]93ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))94ms.StoreMessageInfo(mi)95}96}9798func (x *WorkspaceDownloadURLResponse) String() string {99return protoimpl.X.MessageStringOf(x)100}101102func (*WorkspaceDownloadURLResponse) ProtoMessage() {}103104func (x *WorkspaceDownloadURLResponse) ProtoReflect() protoreflect.Message {105mi := &file_workspace_proto_msgTypes[1]106if protoimpl.UnsafeEnabled && x != nil {107ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))108if ms.LoadMessageInfo() == nil {109ms.StoreMessageInfo(mi)110}111return ms112}113return mi.MessageOf(x)114}115116// Deprecated: Use WorkspaceDownloadURLResponse.ProtoReflect.Descriptor instead.117func (*WorkspaceDownloadURLResponse) Descriptor() ([]byte, []int) {118return file_workspace_proto_rawDescGZIP(), []int{1}119}120121func (x *WorkspaceDownloadURLResponse) GetUrl() string {122if x != nil {123return x.Url124}125return ""126}127128type DeleteWorkspaceRequest struct {129state protoimpl.MessageState130sizeCache protoimpl.SizeCache131unknownFields protoimpl.UnknownFields132133OwnerId string `protobuf:"bytes,1,opt,name=owner_id,json=ownerId,proto3" json:"owner_id,omitempty"`134WorkspaceId string `protobuf:"bytes,2,opt,name=workspace_id,json=workspaceId,proto3" json:"workspace_id,omitempty"`135IncludeSnapshots bool `protobuf:"varint,3,opt,name=include_snapshots,json=includeSnapshots,proto3" json:"include_snapshots,omitempty"`136}137138func (x *DeleteWorkspaceRequest) Reset() {139*x = DeleteWorkspaceRequest{}140if protoimpl.UnsafeEnabled {141mi := &file_workspace_proto_msgTypes[2]142ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))143ms.StoreMessageInfo(mi)144}145}146147func (x *DeleteWorkspaceRequest) String() string {148return protoimpl.X.MessageStringOf(x)149}150151func (*DeleteWorkspaceRequest) ProtoMessage() {}152153func (x *DeleteWorkspaceRequest) ProtoReflect() protoreflect.Message {154mi := &file_workspace_proto_msgTypes[2]155if protoimpl.UnsafeEnabled && x != nil {156ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))157if ms.LoadMessageInfo() == nil {158ms.StoreMessageInfo(mi)159}160return ms161}162return mi.MessageOf(x)163}164165// Deprecated: Use DeleteWorkspaceRequest.ProtoReflect.Descriptor instead.166func (*DeleteWorkspaceRequest) Descriptor() ([]byte, []int) {167return file_workspace_proto_rawDescGZIP(), []int{2}168}169170func (x *DeleteWorkspaceRequest) GetOwnerId() string {171if x != nil {172return x.OwnerId173}174return ""175}176177func (x *DeleteWorkspaceRequest) GetWorkspaceId() string {178if x != nil {179return x.WorkspaceId180}181return ""182}183184func (x *DeleteWorkspaceRequest) GetIncludeSnapshots() bool {185if x != nil {186return x.IncludeSnapshots187}188return false189}190191type DeleteWorkspaceResponse struct {192state protoimpl.MessageState193sizeCache protoimpl.SizeCache194unknownFields protoimpl.UnknownFields195}196197func (x *DeleteWorkspaceResponse) Reset() {198*x = DeleteWorkspaceResponse{}199if protoimpl.UnsafeEnabled {200mi := &file_workspace_proto_msgTypes[3]201ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))202ms.StoreMessageInfo(mi)203}204}205206func (x *DeleteWorkspaceResponse) String() string {207return protoimpl.X.MessageStringOf(x)208}209210func (*DeleteWorkspaceResponse) ProtoMessage() {}211212func (x *DeleteWorkspaceResponse) ProtoReflect() protoreflect.Message {213mi := &file_workspace_proto_msgTypes[3]214if protoimpl.UnsafeEnabled && x != nil {215ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))216if ms.LoadMessageInfo() == nil {217ms.StoreMessageInfo(mi)218}219return ms220}221return mi.MessageOf(x)222}223224// Deprecated: Use DeleteWorkspaceResponse.ProtoReflect.Descriptor instead.225func (*DeleteWorkspaceResponse) Descriptor() ([]byte, []int) {226return file_workspace_proto_rawDescGZIP(), []int{3}227}228229type WorkspaceSnapshotExistsRequest struct {230state protoimpl.MessageState231sizeCache protoimpl.SizeCache232unknownFields protoimpl.UnknownFields233234OwnerId string `protobuf:"bytes,1,opt,name=owner_id,json=ownerId,proto3" json:"owner_id,omitempty"`235WorkspaceId string `protobuf:"bytes,2,opt,name=workspace_id,json=workspaceId,proto3" json:"workspace_id,omitempty"`236Filename string `protobuf:"bytes,3,opt,name=filename,proto3" json:"filename,omitempty"`237}238239func (x *WorkspaceSnapshotExistsRequest) Reset() {240*x = WorkspaceSnapshotExistsRequest{}241if protoimpl.UnsafeEnabled {242mi := &file_workspace_proto_msgTypes[4]243ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))244ms.StoreMessageInfo(mi)245}246}247248func (x *WorkspaceSnapshotExistsRequest) String() string {249return protoimpl.X.MessageStringOf(x)250}251252func (*WorkspaceSnapshotExistsRequest) ProtoMessage() {}253254func (x *WorkspaceSnapshotExistsRequest) ProtoReflect() protoreflect.Message {255mi := &file_workspace_proto_msgTypes[4]256if protoimpl.UnsafeEnabled && x != nil {257ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))258if ms.LoadMessageInfo() == nil {259ms.StoreMessageInfo(mi)260}261return ms262}263return mi.MessageOf(x)264}265266// Deprecated: Use WorkspaceSnapshotExistsRequest.ProtoReflect.Descriptor instead.267func (*WorkspaceSnapshotExistsRequest) Descriptor() ([]byte, []int) {268return file_workspace_proto_rawDescGZIP(), []int{4}269}270271func (x *WorkspaceSnapshotExistsRequest) GetOwnerId() string {272if x != nil {273return x.OwnerId274}275return ""276}277278func (x *WorkspaceSnapshotExistsRequest) GetWorkspaceId() string {279if x != nil {280return x.WorkspaceId281}282return ""283}284285func (x *WorkspaceSnapshotExistsRequest) GetFilename() string {286if x != nil {287return x.Filename288}289return ""290}291292type WorkspaceSnapshotExistsResponse struct {293state protoimpl.MessageState294sizeCache protoimpl.SizeCache295unknownFields protoimpl.UnknownFields296297Exists bool `protobuf:"varint,1,opt,name=exists,proto3" json:"exists,omitempty"`298}299300func (x *WorkspaceSnapshotExistsResponse) Reset() {301*x = WorkspaceSnapshotExistsResponse{}302if protoimpl.UnsafeEnabled {303mi := &file_workspace_proto_msgTypes[5]304ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))305ms.StoreMessageInfo(mi)306}307}308309func (x *WorkspaceSnapshotExistsResponse) String() string {310return protoimpl.X.MessageStringOf(x)311}312313func (*WorkspaceSnapshotExistsResponse) ProtoMessage() {}314315func (x *WorkspaceSnapshotExistsResponse) ProtoReflect() protoreflect.Message {316mi := &file_workspace_proto_msgTypes[5]317if protoimpl.UnsafeEnabled && x != nil {318ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))319if ms.LoadMessageInfo() == nil {320ms.StoreMessageInfo(mi)321}322return ms323}324return mi.MessageOf(x)325}326327// Deprecated: Use WorkspaceSnapshotExistsResponse.ProtoReflect.Descriptor instead.328func (*WorkspaceSnapshotExistsResponse) Descriptor() ([]byte, []int) {329return file_workspace_proto_rawDescGZIP(), []int{5}330}331332func (x *WorkspaceSnapshotExistsResponse) GetExists() bool {333if x != nil {334return x.Exists335}336return false337}338339var File_workspace_proto protoreflect.FileDescriptor340341var file_workspace_proto_rawDesc = []byte{3420x0a, 0x0f, 0x77, 0x6f, 0x72, 0x6b, 0x73, 0x70, 0x61, 0x63, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74,3430x6f, 0x12, 0x0e, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63,3440x65, 0x22, 0x5b, 0x0a, 0x1b, 0x57, 0x6f, 0x72, 0x6b, 0x73, 0x70, 0x61, 0x63, 0x65, 0x44, 0x6f,3450x77, 0x6e, 0x6c, 0x6f, 0x61, 0x64, 0x55, 0x52, 0x4c, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,3460x12, 0x19, 0x0a, 0x08, 0x6f, 0x77, 0x6e, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01,3470x28, 0x09, 0x52, 0x07, 0x6f, 0x77, 0x6e, 0x65, 0x72, 0x49, 0x64, 0x12, 0x21, 0x0a, 0x0c, 0x77,3480x6f, 0x72, 0x6b, 0x73, 0x70, 0x61, 0x63, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28,3490x09, 0x52, 0x0b, 0x77, 0x6f, 0x72, 0x6b, 0x73, 0x70, 0x61, 0x63, 0x65, 0x49, 0x64, 0x22, 0x30,3500x0a, 0x1c, 0x57, 0x6f, 0x72, 0x6b, 0x73, 0x70, 0x61, 0x63, 0x65, 0x44, 0x6f, 0x77, 0x6e, 0x6c,3510x6f, 0x61, 0x64, 0x55, 0x52, 0x4c, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x10,3520x0a, 0x03, 0x75, 0x72, 0x6c, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x75, 0x72, 0x6c,3530x22, 0x83, 0x01, 0x0a, 0x16, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x57, 0x6f, 0x72, 0x6b, 0x73,3540x70, 0x61, 0x63, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x19, 0x0a, 0x08, 0x6f,3550x77, 0x6e, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x6f,3560x77, 0x6e, 0x65, 0x72, 0x49, 0x64, 0x12, 0x21, 0x0a, 0x0c, 0x77, 0x6f, 0x72, 0x6b, 0x73, 0x70,3570x61, 0x63, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x77, 0x6f,3580x72, 0x6b, 0x73, 0x70, 0x61, 0x63, 0x65, 0x49, 0x64, 0x12, 0x2b, 0x0a, 0x11, 0x69, 0x6e, 0x63,3590x6c, 0x75, 0x64, 0x65, 0x5f, 0x73, 0x6e, 0x61, 0x70, 0x73, 0x68, 0x6f, 0x74, 0x73, 0x18, 0x03,3600x20, 0x01, 0x28, 0x08, 0x52, 0x10, 0x69, 0x6e, 0x63, 0x6c, 0x75, 0x64, 0x65, 0x53, 0x6e, 0x61,3610x70, 0x73, 0x68, 0x6f, 0x74, 0x73, 0x22, 0x19, 0x0a, 0x17, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65,3620x57, 0x6f, 0x72, 0x6b, 0x73, 0x70, 0x61, 0x63, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,3630x65, 0x22, 0x7a, 0x0a, 0x1e, 0x57, 0x6f, 0x72, 0x6b, 0x73, 0x70, 0x61, 0x63, 0x65, 0x53, 0x6e,3640x61, 0x70, 0x73, 0x68, 0x6f, 0x74, 0x45, 0x78, 0x69, 0x73, 0x74, 0x73, 0x52, 0x65, 0x71, 0x75,3650x65, 0x73, 0x74, 0x12, 0x19, 0x0a, 0x08, 0x6f, 0x77, 0x6e, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x18,3660x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x6f, 0x77, 0x6e, 0x65, 0x72, 0x49, 0x64, 0x12, 0x21,3670x0a, 0x0c, 0x77, 0x6f, 0x72, 0x6b, 0x73, 0x70, 0x61, 0x63, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x02,3680x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x77, 0x6f, 0x72, 0x6b, 0x73, 0x70, 0x61, 0x63, 0x65, 0x49,3690x64, 0x12, 0x1a, 0x0a, 0x08, 0x66, 0x69, 0x6c, 0x65, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x03, 0x20,3700x01, 0x28, 0x09, 0x52, 0x08, 0x66, 0x69, 0x6c, 0x65, 0x6e, 0x61, 0x6d, 0x65, 0x22, 0x39, 0x0a,3710x1f, 0x57, 0x6f, 0x72, 0x6b, 0x73, 0x70, 0x61, 0x63, 0x65, 0x53, 0x6e, 0x61, 0x70, 0x73, 0x68,3720x6f, 0x74, 0x45, 0x78, 0x69, 0x73, 0x74, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,3730x12, 0x16, 0x0a, 0x06, 0x65, 0x78, 0x69, 0x73, 0x74, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08,3740x52, 0x06, 0x65, 0x78, 0x69, 0x73, 0x74, 0x73, 0x32, 0xeb, 0x02, 0x0a, 0x10, 0x57, 0x6f, 0x72,3750x6b, 0x73, 0x70, 0x61, 0x63, 0x65, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x12, 0x73, 0x0a,3760x14, 0x57, 0x6f, 0x72, 0x6b, 0x73, 0x70, 0x61, 0x63, 0x65, 0x44, 0x6f, 0x77, 0x6e, 0x6c, 0x6f,3770x61, 0x64, 0x55, 0x52, 0x4c, 0x12, 0x2b, 0x2e, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x73,3780x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x57, 0x6f, 0x72, 0x6b, 0x73, 0x70, 0x61, 0x63, 0x65,3790x44, 0x6f, 0x77, 0x6e, 0x6c, 0x6f, 0x61, 0x64, 0x55, 0x52, 0x4c, 0x52, 0x65, 0x71, 0x75, 0x65,3800x73, 0x74, 0x1a, 0x2c, 0x2e, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x73, 0x65, 0x72, 0x76,3810x69, 0x63, 0x65, 0x2e, 0x57, 0x6f, 0x72, 0x6b, 0x73, 0x70, 0x61, 0x63, 0x65, 0x44, 0x6f, 0x77,3820x6e, 0x6c, 0x6f, 0x61, 0x64, 0x55, 0x52, 0x4c, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,3830x22, 0x00, 0x12, 0x64, 0x0a, 0x0f, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x57, 0x6f, 0x72, 0x6b,3840x73, 0x70, 0x61, 0x63, 0x65, 0x12, 0x26, 0x2e, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x73,3850x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x57, 0x6f, 0x72,3860x6b, 0x73, 0x70, 0x61, 0x63, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x27, 0x2e,3870x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x44,3880x65, 0x6c, 0x65, 0x74, 0x65, 0x57, 0x6f, 0x72, 0x6b, 0x73, 0x70, 0x61, 0x63, 0x65, 0x52, 0x65,3890x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x7c, 0x0a, 0x17, 0x57, 0x6f, 0x72, 0x6b,3900x73, 0x70, 0x61, 0x63, 0x65, 0x53, 0x6e, 0x61, 0x70, 0x73, 0x68, 0x6f, 0x74, 0x45, 0x78, 0x69,3910x73, 0x74, 0x73, 0x12, 0x2e, 0x2e, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x73, 0x65, 0x72,3920x76, 0x69, 0x63, 0x65, 0x2e, 0x57, 0x6f, 0x72, 0x6b, 0x73, 0x70, 0x61, 0x63, 0x65, 0x53, 0x6e,3930x61, 0x70, 0x73, 0x68, 0x6f, 0x74, 0x45, 0x78, 0x69, 0x73, 0x74, 0x73, 0x52, 0x65, 0x71, 0x75,3940x65, 0x73, 0x74, 0x1a, 0x2f, 0x2e, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x73, 0x65, 0x72,3950x76, 0x69, 0x63, 0x65, 0x2e, 0x57, 0x6f, 0x72, 0x6b, 0x73, 0x70, 0x61, 0x63, 0x65, 0x53, 0x6e,3960x61, 0x70, 0x73, 0x68, 0x6f, 0x74, 0x45, 0x78, 0x69, 0x73, 0x74, 0x73, 0x52, 0x65, 0x73, 0x70,3970x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x42, 0x31, 0x5a, 0x2f, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62,3980x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x67, 0x69, 0x74, 0x70, 0x6f, 0x64, 0x2d, 0x69, 0x6f, 0x2f, 0x67,3990x69, 0x74, 0x70, 0x6f, 0x64, 0x2f, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x2d, 0x73, 0x65,4000x72, 0x76, 0x69, 0x63, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f,4010x33,402}403404var (405file_workspace_proto_rawDescOnce sync.Once406file_workspace_proto_rawDescData = file_workspace_proto_rawDesc407)408409func file_workspace_proto_rawDescGZIP() []byte {410file_workspace_proto_rawDescOnce.Do(func() {411file_workspace_proto_rawDescData = protoimpl.X.CompressGZIP(file_workspace_proto_rawDescData)412})413return file_workspace_proto_rawDescData414}415416var file_workspace_proto_msgTypes = make([]protoimpl.MessageInfo, 6)417var file_workspace_proto_goTypes = []interface{}{418(*WorkspaceDownloadURLRequest)(nil), // 0: contentservice.WorkspaceDownloadURLRequest419(*WorkspaceDownloadURLResponse)(nil), // 1: contentservice.WorkspaceDownloadURLResponse420(*DeleteWorkspaceRequest)(nil), // 2: contentservice.DeleteWorkspaceRequest421(*DeleteWorkspaceResponse)(nil), // 3: contentservice.DeleteWorkspaceResponse422(*WorkspaceSnapshotExistsRequest)(nil), // 4: contentservice.WorkspaceSnapshotExistsRequest423(*WorkspaceSnapshotExistsResponse)(nil), // 5: contentservice.WorkspaceSnapshotExistsResponse424}425var file_workspace_proto_depIdxs = []int32{4260, // 0: contentservice.WorkspaceService.WorkspaceDownloadURL:input_type -> contentservice.WorkspaceDownloadURLRequest4272, // 1: contentservice.WorkspaceService.DeleteWorkspace:input_type -> contentservice.DeleteWorkspaceRequest4284, // 2: contentservice.WorkspaceService.WorkspaceSnapshotExists:input_type -> contentservice.WorkspaceSnapshotExistsRequest4291, // 3: contentservice.WorkspaceService.WorkspaceDownloadURL:output_type -> contentservice.WorkspaceDownloadURLResponse4303, // 4: contentservice.WorkspaceService.DeleteWorkspace:output_type -> contentservice.DeleteWorkspaceResponse4315, // 5: contentservice.WorkspaceService.WorkspaceSnapshotExists:output_type -> contentservice.WorkspaceSnapshotExistsResponse4323, // [3:6] is the sub-list for method output_type4330, // [0:3] is the sub-list for method input_type4340, // [0:0] is the sub-list for extension type_name4350, // [0:0] is the sub-list for extension extendee4360, // [0:0] is the sub-list for field type_name437}438439func init() { file_workspace_proto_init() }440func file_workspace_proto_init() {441if File_workspace_proto != nil {442return443}444if !protoimpl.UnsafeEnabled {445file_workspace_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {446switch v := v.(*WorkspaceDownloadURLRequest); i {447case 0:448return &v.state449case 1:450return &v.sizeCache451case 2:452return &v.unknownFields453default:454return nil455}456}457file_workspace_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {458switch v := v.(*WorkspaceDownloadURLResponse); i {459case 0:460return &v.state461case 1:462return &v.sizeCache463case 2:464return &v.unknownFields465default:466return nil467}468}469file_workspace_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {470switch v := v.(*DeleteWorkspaceRequest); i {471case 0:472return &v.state473case 1:474return &v.sizeCache475case 2:476return &v.unknownFields477default:478return nil479}480}481file_workspace_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {482switch v := v.(*DeleteWorkspaceResponse); i {483case 0:484return &v.state485case 1:486return &v.sizeCache487case 2:488return &v.unknownFields489default:490return nil491}492}493file_workspace_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {494switch v := v.(*WorkspaceSnapshotExistsRequest); i {495case 0:496return &v.state497case 1:498return &v.sizeCache499case 2:500return &v.unknownFields501default:502return nil503}504}505file_workspace_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {506switch v := v.(*WorkspaceSnapshotExistsResponse); i {507case 0:508return &v.state509case 1:510return &v.sizeCache511case 2:512return &v.unknownFields513default:514return nil515}516}517}518type x struct{}519out := protoimpl.TypeBuilder{520File: protoimpl.DescBuilder{521GoPackagePath: reflect.TypeOf(x{}).PkgPath(),522RawDescriptor: file_workspace_proto_rawDesc,523NumEnums: 0,524NumMessages: 6,525NumExtensions: 0,526NumServices: 1,527},528GoTypes: file_workspace_proto_goTypes,529DependencyIndexes: file_workspace_proto_depIdxs,530MessageInfos: file_workspace_proto_msgTypes,531}.Build()532File_workspace_proto = out.File533file_workspace_proto_rawDesc = nil534file_workspace_proto_goTypes = nil535file_workspace_proto_depIdxs = nil536}537538539