Path: blob/main/components/public-api/go/experimental/v1/editor_service.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. DO NOT EDIT.5// versions:6// protoc-gen-go v1.28.17// protoc (unknown)8// source: gitpod/experimental/v1/editor_service.proto910package v11112import (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)2526// The type of the editor, currently browser or desktop.27type EditorOption_Type int322829const (30EditorOption_TYPE_UNSPECIFIED EditorOption_Type = 031EditorOption_TYPE_BROWSER EditorOption_Type = 132EditorOption_TYPE_DESKTOP EditorOption_Type = 233)3435// Enum value maps for EditorOption_Type.36var (37EditorOption_Type_name = map[int32]string{380: "TYPE_UNSPECIFIED",391: "TYPE_BROWSER",402: "TYPE_DESKTOP",41}42EditorOption_Type_value = map[string]int32{43"TYPE_UNSPECIFIED": 0,44"TYPE_BROWSER": 1,45"TYPE_DESKTOP": 2,46}47)4849func (x EditorOption_Type) Enum() *EditorOption_Type {50p := new(EditorOption_Type)51*p = x52return p53}5455func (x EditorOption_Type) String() string {56return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))57}5859func (EditorOption_Type) Descriptor() protoreflect.EnumDescriptor {60return file_gitpod_experimental_v1_editor_service_proto_enumTypes[0].Descriptor()61}6263func (EditorOption_Type) Type() protoreflect.EnumType {64return &file_gitpod_experimental_v1_editor_service_proto_enumTypes[0]65}6667func (x EditorOption_Type) Number() protoreflect.EnumNumber {68return protoreflect.EnumNumber(x)69}7071// Deprecated: Use EditorOption_Type.Descriptor instead.72func (EditorOption_Type) EnumDescriptor() ([]byte, []int) {73return file_gitpod_experimental_v1_editor_service_proto_rawDescGZIP(), []int{2, 0}74}7576type ListEditorOptionsRequest struct {77state protoimpl.MessageState78sizeCache protoimpl.SizeCache79unknownFields protoimpl.UnknownFields80}8182func (x *ListEditorOptionsRequest) Reset() {83*x = ListEditorOptionsRequest{}84if protoimpl.UnsafeEnabled {85mi := &file_gitpod_experimental_v1_editor_service_proto_msgTypes[0]86ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))87ms.StoreMessageInfo(mi)88}89}9091func (x *ListEditorOptionsRequest) String() string {92return protoimpl.X.MessageStringOf(x)93}9495func (*ListEditorOptionsRequest) ProtoMessage() {}9697func (x *ListEditorOptionsRequest) ProtoReflect() protoreflect.Message {98mi := &file_gitpod_experimental_v1_editor_service_proto_msgTypes[0]99if protoimpl.UnsafeEnabled && x != nil {100ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))101if ms.LoadMessageInfo() == nil {102ms.StoreMessageInfo(mi)103}104return ms105}106return mi.MessageOf(x)107}108109// Deprecated: Use ListEditorOptionsRequest.ProtoReflect.Descriptor instead.110func (*ListEditorOptionsRequest) Descriptor() ([]byte, []int) {111return file_gitpod_experimental_v1_editor_service_proto_rawDescGZIP(), []int{0}112}113114type ListEditorOptionsResponse struct {115state protoimpl.MessageState116sizeCache protoimpl.SizeCache117unknownFields protoimpl.UnknownFields118119Result []*EditorOption `protobuf:"bytes,1,rep,name=result,proto3" json:"result,omitempty"`120}121122func (x *ListEditorOptionsResponse) Reset() {123*x = ListEditorOptionsResponse{}124if protoimpl.UnsafeEnabled {125mi := &file_gitpod_experimental_v1_editor_service_proto_msgTypes[1]126ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))127ms.StoreMessageInfo(mi)128}129}130131func (x *ListEditorOptionsResponse) String() string {132return protoimpl.X.MessageStringOf(x)133}134135func (*ListEditorOptionsResponse) ProtoMessage() {}136137func (x *ListEditorOptionsResponse) ProtoReflect() protoreflect.Message {138mi := &file_gitpod_experimental_v1_editor_service_proto_msgTypes[1]139if protoimpl.UnsafeEnabled && x != nil {140ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))141if ms.LoadMessageInfo() == nil {142ms.StoreMessageInfo(mi)143}144return ms145}146return mi.MessageOf(x)147}148149// Deprecated: Use ListEditorOptionsResponse.ProtoReflect.Descriptor instead.150func (*ListEditorOptionsResponse) Descriptor() ([]byte, []int) {151return file_gitpod_experimental_v1_editor_service_proto_rawDescGZIP(), []int{1}152}153154func (x *ListEditorOptionsResponse) GetResult() []*EditorOption {155if x != nil {156return x.Result157}158return nil159}160161type EditorOption struct {162state protoimpl.MessageState163sizeCache protoimpl.SizeCache164unknownFields protoimpl.UnknownFields165166// The unique identifier for an editor.167Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`168// Human readable title text of the editor (plain text only).169Title string `protobuf:"bytes,2,opt,name=title,proto3" json:"title,omitempty"`170Type EditorOption_Type `protobuf:"varint,3,opt,name=type,proto3,enum=gitpod.experimental.v1.EditorOption_Type" json:"type,omitempty"`171// The logo for the editor172Logo string `protobuf:"bytes,4,opt,name=logo,proto3" json:"logo,omitempty"`173// Text of an optional label next to the editor option like “Insiders” (plain174// text only).175Label string `protobuf:"bytes,5,opt,name=label,proto3" json:"label,omitempty"`176Stable *EditorOption_Kind `protobuf:"bytes,6,opt,name=stable,proto3" json:"stable,omitempty"`177Latest *EditorOption_Kind `protobuf:"bytes,7,opt,name=latest,proto3" json:"latest,omitempty"`178}179180func (x *EditorOption) Reset() {181*x = EditorOption{}182if protoimpl.UnsafeEnabled {183mi := &file_gitpod_experimental_v1_editor_service_proto_msgTypes[2]184ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))185ms.StoreMessageInfo(mi)186}187}188189func (x *EditorOption) String() string {190return protoimpl.X.MessageStringOf(x)191}192193func (*EditorOption) ProtoMessage() {}194195func (x *EditorOption) ProtoReflect() protoreflect.Message {196mi := &file_gitpod_experimental_v1_editor_service_proto_msgTypes[2]197if protoimpl.UnsafeEnabled && x != nil {198ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))199if ms.LoadMessageInfo() == nil {200ms.StoreMessageInfo(mi)201}202return ms203}204return mi.MessageOf(x)205}206207// Deprecated: Use EditorOption.ProtoReflect.Descriptor instead.208func (*EditorOption) Descriptor() ([]byte, []int) {209return file_gitpod_experimental_v1_editor_service_proto_rawDescGZIP(), []int{2}210}211212func (x *EditorOption) GetId() string {213if x != nil {214return x.Id215}216return ""217}218219func (x *EditorOption) GetTitle() string {220if x != nil {221return x.Title222}223return ""224}225226func (x *EditorOption) GetType() EditorOption_Type {227if x != nil {228return x.Type229}230return EditorOption_TYPE_UNSPECIFIED231}232233func (x *EditorOption) GetLogo() string {234if x != nil {235return x.Logo236}237return ""238}239240func (x *EditorOption) GetLabel() string {241if x != nil {242return x.Label243}244return ""245}246247func (x *EditorOption) GetStable() *EditorOption_Kind {248if x != nil {249return x.Stable250}251return nil252}253254func (x *EditorOption) GetLatest() *EditorOption_Kind {255if x != nil {256return x.Latest257}258return nil259}260261type EditorOption_Kind struct {262state protoimpl.MessageState263sizeCache protoimpl.SizeCache264unknownFields protoimpl.UnknownFields265266// The semantic version of the editor.267Version string `protobuf:"bytes,1,opt,name=version,proto3" json:"version,omitempty"`268}269270func (x *EditorOption_Kind) Reset() {271*x = EditorOption_Kind{}272if protoimpl.UnsafeEnabled {273mi := &file_gitpod_experimental_v1_editor_service_proto_msgTypes[3]274ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))275ms.StoreMessageInfo(mi)276}277}278279func (x *EditorOption_Kind) String() string {280return protoimpl.X.MessageStringOf(x)281}282283func (*EditorOption_Kind) ProtoMessage() {}284285func (x *EditorOption_Kind) ProtoReflect() protoreflect.Message {286mi := &file_gitpod_experimental_v1_editor_service_proto_msgTypes[3]287if protoimpl.UnsafeEnabled && x != nil {288ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))289if ms.LoadMessageInfo() == nil {290ms.StoreMessageInfo(mi)291}292return ms293}294return mi.MessageOf(x)295}296297// Deprecated: Use EditorOption_Kind.ProtoReflect.Descriptor instead.298func (*EditorOption_Kind) Descriptor() ([]byte, []int) {299return file_gitpod_experimental_v1_editor_service_proto_rawDescGZIP(), []int{2, 0}300}301302func (x *EditorOption_Kind) GetVersion() string {303if x != nil {304return x.Version305}306return ""307}308309var File_gitpod_experimental_v1_editor_service_proto protoreflect.FileDescriptor310311var file_gitpod_experimental_v1_editor_service_proto_rawDesc = []byte{3120x0a, 0x2b, 0x67, 0x69, 0x74, 0x70, 0x6f, 0x64, 0x2f, 0x65, 0x78, 0x70, 0x65, 0x72, 0x69, 0x6d,3130x65, 0x6e, 0x74, 0x61, 0x6c, 0x2f, 0x76, 0x31, 0x2f, 0x65, 0x64, 0x69, 0x74, 0x6f, 0x72, 0x5f,3140x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x16, 0x67,3150x69, 0x74, 0x70, 0x6f, 0x64, 0x2e, 0x65, 0x78, 0x70, 0x65, 0x72, 0x69, 0x6d, 0x65, 0x6e, 0x74,3160x61, 0x6c, 0x2e, 0x76, 0x31, 0x22, 0x1a, 0x0a, 0x18, 0x4c, 0x69, 0x73, 0x74, 0x45, 0x64, 0x69,3170x74, 0x6f, 0x72, 0x4f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,3180x74, 0x22, 0x59, 0x0a, 0x19, 0x4c, 0x69, 0x73, 0x74, 0x45, 0x64, 0x69, 0x74, 0x6f, 0x72, 0x4f,3190x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x3c,3200x0a, 0x06, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x24,3210x2e, 0x67, 0x69, 0x74, 0x70, 0x6f, 0x64, 0x2e, 0x65, 0x78, 0x70, 0x65, 0x72, 0x69, 0x6d, 0x65,3220x6e, 0x74, 0x61, 0x6c, 0x2e, 0x76, 0x31, 0x2e, 0x45, 0x64, 0x69, 0x74, 0x6f, 0x72, 0x4f, 0x70,3230x74, 0x69, 0x6f, 0x6e, 0x52, 0x06, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x22, 0x87, 0x03, 0x0a,3240x0c, 0x45, 0x64, 0x69, 0x74, 0x6f, 0x72, 0x4f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x0e, 0x0a,3250x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x14, 0x0a,3260x05, 0x74, 0x69, 0x74, 0x6c, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x74, 0x69,3270x74, 0x6c, 0x65, 0x12, 0x3d, 0x0a, 0x04, 0x74, 0x79, 0x70, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28,3280x0e, 0x32, 0x29, 0x2e, 0x67, 0x69, 0x74, 0x70, 0x6f, 0x64, 0x2e, 0x65, 0x78, 0x70, 0x65, 0x72,3290x69, 0x6d, 0x65, 0x6e, 0x74, 0x61, 0x6c, 0x2e, 0x76, 0x31, 0x2e, 0x45, 0x64, 0x69, 0x74, 0x6f,3300x72, 0x4f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x54, 0x79, 0x70, 0x65, 0x52, 0x04, 0x74, 0x79,3310x70, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x6c, 0x6f, 0x67, 0x6f, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09,3320x52, 0x04, 0x6c, 0x6f, 0x67, 0x6f, 0x12, 0x14, 0x0a, 0x05, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x18,3330x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x12, 0x41, 0x0a, 0x06,3340x73, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x29, 0x2e, 0x67,3350x69, 0x74, 0x70, 0x6f, 0x64, 0x2e, 0x65, 0x78, 0x70, 0x65, 0x72, 0x69, 0x6d, 0x65, 0x6e, 0x74,3360x61, 0x6c, 0x2e, 0x76, 0x31, 0x2e, 0x45, 0x64, 0x69, 0x74, 0x6f, 0x72, 0x4f, 0x70, 0x74, 0x69,3370x6f, 0x6e, 0x2e, 0x4b, 0x69, 0x6e, 0x64, 0x52, 0x06, 0x73, 0x74, 0x61, 0x62, 0x6c, 0x65, 0x12,3380x41, 0x0a, 0x06, 0x6c, 0x61, 0x74, 0x65, 0x73, 0x74, 0x18, 0x07, 0x20, 0x01, 0x28, 0x0b, 0x32,3390x29, 0x2e, 0x67, 0x69, 0x74, 0x70, 0x6f, 0x64, 0x2e, 0x65, 0x78, 0x70, 0x65, 0x72, 0x69, 0x6d,3400x65, 0x6e, 0x74, 0x61, 0x6c, 0x2e, 0x76, 0x31, 0x2e, 0x45, 0x64, 0x69, 0x74, 0x6f, 0x72, 0x4f,3410x70, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x4b, 0x69, 0x6e, 0x64, 0x52, 0x06, 0x6c, 0x61, 0x74, 0x65,3420x73, 0x74, 0x1a, 0x20, 0x0a, 0x04, 0x4b, 0x69, 0x6e, 0x64, 0x12, 0x18, 0x0a, 0x07, 0x76, 0x65,3430x72, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x76, 0x65, 0x72,3440x73, 0x69, 0x6f, 0x6e, 0x22, 0x40, 0x0a, 0x04, 0x54, 0x79, 0x70, 0x65, 0x12, 0x14, 0x0a, 0x10,3450x54, 0x59, 0x50, 0x45, 0x5f, 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43, 0x49, 0x46, 0x49, 0x45, 0x44,3460x10, 0x00, 0x12, 0x10, 0x0a, 0x0c, 0x54, 0x59, 0x50, 0x45, 0x5f, 0x42, 0x52, 0x4f, 0x57, 0x53,3470x45, 0x52, 0x10, 0x01, 0x12, 0x10, 0x0a, 0x0c, 0x54, 0x59, 0x50, 0x45, 0x5f, 0x44, 0x45, 0x53,3480x4b, 0x54, 0x4f, 0x50, 0x10, 0x02, 0x32, 0x8b, 0x01, 0x0a, 0x0d, 0x45, 0x64, 0x69, 0x74, 0x6f,3490x72, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x12, 0x7a, 0x0a, 0x11, 0x4c, 0x69, 0x73, 0x74,3500x45, 0x64, 0x69, 0x74, 0x6f, 0x72, 0x4f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x12, 0x30, 0x2e,3510x67, 0x69, 0x74, 0x70, 0x6f, 0x64, 0x2e, 0x65, 0x78, 0x70, 0x65, 0x72, 0x69, 0x6d, 0x65, 0x6e,3520x74, 0x61, 0x6c, 0x2e, 0x76, 0x31, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x45, 0x64, 0x69, 0x74, 0x6f,3530x72, 0x4f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a,3540x31, 0x2e, 0x67, 0x69, 0x74, 0x70, 0x6f, 0x64, 0x2e, 0x65, 0x78, 0x70, 0x65, 0x72, 0x69, 0x6d,3550x65, 0x6e, 0x74, 0x61, 0x6c, 0x2e, 0x76, 0x31, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x45, 0x64, 0x69,3560x74, 0x6f, 0x72, 0x4f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,3570x73, 0x65, 0x22, 0x00, 0x42, 0x6b, 0x0a, 0x23, 0x69, 0x6f, 0x2e, 0x67, 0x69, 0x74, 0x70, 0x6f,3580x64, 0x2e, 0x70, 0x75, 0x62, 0x6c, 0x69, 0x63, 0x61, 0x70, 0x69, 0x2e, 0x65, 0x78, 0x70, 0x65,3590x72, 0x69, 0x6d, 0x65, 0x6e, 0x74, 0x61, 0x6c, 0x2e, 0x76, 0x31, 0x5a, 0x44, 0x67, 0x69, 0x74,3600x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x67, 0x69, 0x74, 0x70, 0x6f, 0x64, 0x2d, 0x69,3610x6f, 0x2f, 0x67, 0x69, 0x74, 0x70, 0x6f, 0x64, 0x2f, 0x63, 0x6f, 0x6d, 0x70, 0x6f, 0x6e, 0x65,3620x6e, 0x74, 0x73, 0x2f, 0x70, 0x75, 0x62, 0x6c, 0x69, 0x63, 0x2d, 0x61, 0x70, 0x69, 0x2f, 0x67,3630x6f, 0x2f, 0x65, 0x78, 0x70, 0x65, 0x72, 0x69, 0x6d, 0x65, 0x6e, 0x74, 0x61, 0x6c, 0x2f, 0x76,3640x31, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,365}366367var (368file_gitpod_experimental_v1_editor_service_proto_rawDescOnce sync.Once369file_gitpod_experimental_v1_editor_service_proto_rawDescData = file_gitpod_experimental_v1_editor_service_proto_rawDesc370)371372func file_gitpod_experimental_v1_editor_service_proto_rawDescGZIP() []byte {373file_gitpod_experimental_v1_editor_service_proto_rawDescOnce.Do(func() {374file_gitpod_experimental_v1_editor_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_gitpod_experimental_v1_editor_service_proto_rawDescData)375})376return file_gitpod_experimental_v1_editor_service_proto_rawDescData377}378379var file_gitpod_experimental_v1_editor_service_proto_enumTypes = make([]protoimpl.EnumInfo, 1)380var file_gitpod_experimental_v1_editor_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4)381var file_gitpod_experimental_v1_editor_service_proto_goTypes = []interface{}{382(EditorOption_Type)(0), // 0: gitpod.experimental.v1.EditorOption.Type383(*ListEditorOptionsRequest)(nil), // 1: gitpod.experimental.v1.ListEditorOptionsRequest384(*ListEditorOptionsResponse)(nil), // 2: gitpod.experimental.v1.ListEditorOptionsResponse385(*EditorOption)(nil), // 3: gitpod.experimental.v1.EditorOption386(*EditorOption_Kind)(nil), // 4: gitpod.experimental.v1.EditorOption.Kind387}388var file_gitpod_experimental_v1_editor_service_proto_depIdxs = []int32{3893, // 0: gitpod.experimental.v1.ListEditorOptionsResponse.result:type_name -> gitpod.experimental.v1.EditorOption3900, // 1: gitpod.experimental.v1.EditorOption.type:type_name -> gitpod.experimental.v1.EditorOption.Type3914, // 2: gitpod.experimental.v1.EditorOption.stable:type_name -> gitpod.experimental.v1.EditorOption.Kind3924, // 3: gitpod.experimental.v1.EditorOption.latest:type_name -> gitpod.experimental.v1.EditorOption.Kind3931, // 4: gitpod.experimental.v1.EditorService.ListEditorOptions:input_type -> gitpod.experimental.v1.ListEditorOptionsRequest3942, // 5: gitpod.experimental.v1.EditorService.ListEditorOptions:output_type -> gitpod.experimental.v1.ListEditorOptionsResponse3955, // [5:6] is the sub-list for method output_type3964, // [4:5] is the sub-list for method input_type3974, // [4:4] is the sub-list for extension type_name3984, // [4:4] is the sub-list for extension extendee3990, // [0:4] is the sub-list for field type_name400}401402func init() { file_gitpod_experimental_v1_editor_service_proto_init() }403func file_gitpod_experimental_v1_editor_service_proto_init() {404if File_gitpod_experimental_v1_editor_service_proto != nil {405return406}407if !protoimpl.UnsafeEnabled {408file_gitpod_experimental_v1_editor_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {409switch v := v.(*ListEditorOptionsRequest); i {410case 0:411return &v.state412case 1:413return &v.sizeCache414case 2:415return &v.unknownFields416default:417return nil418}419}420file_gitpod_experimental_v1_editor_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {421switch v := v.(*ListEditorOptionsResponse); i {422case 0:423return &v.state424case 1:425return &v.sizeCache426case 2:427return &v.unknownFields428default:429return nil430}431}432file_gitpod_experimental_v1_editor_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {433switch v := v.(*EditorOption); i {434case 0:435return &v.state436case 1:437return &v.sizeCache438case 2:439return &v.unknownFields440default:441return nil442}443}444file_gitpod_experimental_v1_editor_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {445switch v := v.(*EditorOption_Kind); i {446case 0:447return &v.state448case 1:449return &v.sizeCache450case 2:451return &v.unknownFields452default:453return nil454}455}456}457type x struct{}458out := protoimpl.TypeBuilder{459File: protoimpl.DescBuilder{460GoPackagePath: reflect.TypeOf(x{}).PkgPath(),461RawDescriptor: file_gitpod_experimental_v1_editor_service_proto_rawDesc,462NumEnums: 1,463NumMessages: 4,464NumExtensions: 0,465NumServices: 1,466},467GoTypes: file_gitpod_experimental_v1_editor_service_proto_goTypes,468DependencyIndexes: file_gitpod_experimental_v1_editor_service_proto_depIdxs,469EnumInfos: file_gitpod_experimental_v1_editor_service_proto_enumTypes,470MessageInfos: file_gitpod_experimental_v1_editor_service_proto_msgTypes,471}.Build()472File_gitpod_experimental_v1_editor_service_proto = out.File473file_gitpod_experimental_v1_editor_service_proto_rawDesc = nil474file_gitpod_experimental_v1_editor_service_proto_goTypes = nil475file_gitpod_experimental_v1_editor_service_proto_depIdxs = nil476}477478479