Path: blob/main/components/local-app-api/go/localapp.pb.go
2498 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 v3.20.18// source: localapp.proto910package api1112import (13api "github.com/gitpod-io/gitpod/supervisor/api"14protoreflect "google.golang.org/protobuf/reflect/protoreflect"15protoimpl "google.golang.org/protobuf/runtime/protoimpl"16reflect "reflect"17sync "sync"18)1920const (21// Verify that this generated code is sufficiently up-to-date.22_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)23// Verify that runtime/protoimpl is sufficiently up-to-date.24_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)25)2627type TunnelStatusRequest struct {28state protoimpl.MessageState29sizeCache protoimpl.SizeCache30unknownFields protoimpl.UnknownFields3132InstanceId string `protobuf:"bytes,1,opt,name=instance_id,json=instanceId,proto3" json:"instance_id,omitempty"`33// if observe is true, we'll return a stream of changes rather than just the34// current state of affairs.35Observe bool `protobuf:"varint,2,opt,name=observe,proto3" json:"observe,omitempty"`36}3738func (x *TunnelStatusRequest) Reset() {39*x = TunnelStatusRequest{}40if protoimpl.UnsafeEnabled {41mi := &file_localapp_proto_msgTypes[0]42ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))43ms.StoreMessageInfo(mi)44}45}4647func (x *TunnelStatusRequest) String() string {48return protoimpl.X.MessageStringOf(x)49}5051func (*TunnelStatusRequest) ProtoMessage() {}5253func (x *TunnelStatusRequest) ProtoReflect() protoreflect.Message {54mi := &file_localapp_proto_msgTypes[0]55if protoimpl.UnsafeEnabled && x != nil {56ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))57if ms.LoadMessageInfo() == nil {58ms.StoreMessageInfo(mi)59}60return ms61}62return mi.MessageOf(x)63}6465// Deprecated: Use TunnelStatusRequest.ProtoReflect.Descriptor instead.66func (*TunnelStatusRequest) Descriptor() ([]byte, []int) {67return file_localapp_proto_rawDescGZIP(), []int{0}68}6970func (x *TunnelStatusRequest) GetInstanceId() string {71if x != nil {72return x.InstanceId73}74return ""75}7677func (x *TunnelStatusRequest) GetObserve() bool {78if x != nil {79return x.Observe80}81return false82}8384type TunnelStatusResponse struct {85state protoimpl.MessageState86sizeCache protoimpl.SizeCache87unknownFields protoimpl.UnknownFields8889Tunnels []*TunnelStatus `protobuf:"bytes,1,rep,name=tunnels,proto3" json:"tunnels,omitempty"`90}9192func (x *TunnelStatusResponse) Reset() {93*x = TunnelStatusResponse{}94if protoimpl.UnsafeEnabled {95mi := &file_localapp_proto_msgTypes[1]96ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))97ms.StoreMessageInfo(mi)98}99}100101func (x *TunnelStatusResponse) String() string {102return protoimpl.X.MessageStringOf(x)103}104105func (*TunnelStatusResponse) ProtoMessage() {}106107func (x *TunnelStatusResponse) ProtoReflect() protoreflect.Message {108mi := &file_localapp_proto_msgTypes[1]109if protoimpl.UnsafeEnabled && x != nil {110ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))111if ms.LoadMessageInfo() == nil {112ms.StoreMessageInfo(mi)113}114return ms115}116return mi.MessageOf(x)117}118119// Deprecated: Use TunnelStatusResponse.ProtoReflect.Descriptor instead.120func (*TunnelStatusResponse) Descriptor() ([]byte, []int) {121return file_localapp_proto_rawDescGZIP(), []int{1}122}123124func (x *TunnelStatusResponse) GetTunnels() []*TunnelStatus {125if x != nil {126return x.Tunnels127}128return nil129}130131type TunnelStatus struct {132state protoimpl.MessageState133sizeCache protoimpl.SizeCache134unknownFields protoimpl.UnknownFields135136RemotePort uint32 `protobuf:"varint,1,opt,name=remote_port,json=remotePort,proto3" json:"remote_port,omitempty"`137LocalPort uint32 `protobuf:"varint,2,opt,name=local_port,json=localPort,proto3" json:"local_port,omitempty"`138Visibility api.TunnelVisiblity `protobuf:"varint,3,opt,name=visibility,proto3,enum=supervisor.TunnelVisiblity" json:"visibility,omitempty"`139}140141func (x *TunnelStatus) Reset() {142*x = TunnelStatus{}143if protoimpl.UnsafeEnabled {144mi := &file_localapp_proto_msgTypes[2]145ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))146ms.StoreMessageInfo(mi)147}148}149150func (x *TunnelStatus) String() string {151return protoimpl.X.MessageStringOf(x)152}153154func (*TunnelStatus) ProtoMessage() {}155156func (x *TunnelStatus) ProtoReflect() protoreflect.Message {157mi := &file_localapp_proto_msgTypes[2]158if protoimpl.UnsafeEnabled && x != nil {159ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))160if ms.LoadMessageInfo() == nil {161ms.StoreMessageInfo(mi)162}163return ms164}165return mi.MessageOf(x)166}167168// Deprecated: Use TunnelStatus.ProtoReflect.Descriptor instead.169func (*TunnelStatus) Descriptor() ([]byte, []int) {170return file_localapp_proto_rawDescGZIP(), []int{2}171}172173func (x *TunnelStatus) GetRemotePort() uint32 {174if x != nil {175return x.RemotePort176}177return 0178}179180func (x *TunnelStatus) GetLocalPort() uint32 {181if x != nil {182return x.LocalPort183}184return 0185}186187func (x *TunnelStatus) GetVisibility() api.TunnelVisiblity {188if x != nil {189return x.Visibility190}191return api.TunnelVisiblity(0)192}193194type AutoTunnelRequest struct {195state protoimpl.MessageState196sizeCache protoimpl.SizeCache197unknownFields protoimpl.UnknownFields198199InstanceId string `protobuf:"bytes,1,opt,name=instance_id,json=instanceId,proto3" json:"instance_id,omitempty"`200Enabled bool `protobuf:"varint,2,opt,name=enabled,proto3" json:"enabled,omitempty"`201}202203func (x *AutoTunnelRequest) Reset() {204*x = AutoTunnelRequest{}205if protoimpl.UnsafeEnabled {206mi := &file_localapp_proto_msgTypes[3]207ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))208ms.StoreMessageInfo(mi)209}210}211212func (x *AutoTunnelRequest) String() string {213return protoimpl.X.MessageStringOf(x)214}215216func (*AutoTunnelRequest) ProtoMessage() {}217218func (x *AutoTunnelRequest) ProtoReflect() protoreflect.Message {219mi := &file_localapp_proto_msgTypes[3]220if protoimpl.UnsafeEnabled && x != nil {221ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))222if ms.LoadMessageInfo() == nil {223ms.StoreMessageInfo(mi)224}225return ms226}227return mi.MessageOf(x)228}229230// Deprecated: Use AutoTunnelRequest.ProtoReflect.Descriptor instead.231func (*AutoTunnelRequest) Descriptor() ([]byte, []int) {232return file_localapp_proto_rawDescGZIP(), []int{3}233}234235func (x *AutoTunnelRequest) GetInstanceId() string {236if x != nil {237return x.InstanceId238}239return ""240}241242func (x *AutoTunnelRequest) GetEnabled() bool {243if x != nil {244return x.Enabled245}246return false247}248249type AutoTunnelResponse struct {250state protoimpl.MessageState251sizeCache protoimpl.SizeCache252unknownFields protoimpl.UnknownFields253}254255func (x *AutoTunnelResponse) Reset() {256*x = AutoTunnelResponse{}257if protoimpl.UnsafeEnabled {258mi := &file_localapp_proto_msgTypes[4]259ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))260ms.StoreMessageInfo(mi)261}262}263264func (x *AutoTunnelResponse) String() string {265return protoimpl.X.MessageStringOf(x)266}267268func (*AutoTunnelResponse) ProtoMessage() {}269270func (x *AutoTunnelResponse) ProtoReflect() protoreflect.Message {271mi := &file_localapp_proto_msgTypes[4]272if protoimpl.UnsafeEnabled && x != nil {273ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))274if ms.LoadMessageInfo() == nil {275ms.StoreMessageInfo(mi)276}277return ms278}279return mi.MessageOf(x)280}281282// Deprecated: Use AutoTunnelResponse.ProtoReflect.Descriptor instead.283func (*AutoTunnelResponse) Descriptor() ([]byte, []int) {284return file_localapp_proto_rawDescGZIP(), []int{4}285}286287type ResolveSSHConnectionRequest struct {288state protoimpl.MessageState289sizeCache protoimpl.SizeCache290unknownFields protoimpl.UnknownFields291292InstanceId string `protobuf:"bytes,1,opt,name=instance_id,json=instanceId,proto3" json:"instance_id,omitempty"`293WorkspaceId string `protobuf:"bytes,2,opt,name=workspace_id,json=workspaceId,proto3" json:"workspace_id,omitempty"`294}295296func (x *ResolveSSHConnectionRequest) Reset() {297*x = ResolveSSHConnectionRequest{}298if protoimpl.UnsafeEnabled {299mi := &file_localapp_proto_msgTypes[5]300ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))301ms.StoreMessageInfo(mi)302}303}304305func (x *ResolveSSHConnectionRequest) String() string {306return protoimpl.X.MessageStringOf(x)307}308309func (*ResolveSSHConnectionRequest) ProtoMessage() {}310311func (x *ResolveSSHConnectionRequest) ProtoReflect() protoreflect.Message {312mi := &file_localapp_proto_msgTypes[5]313if protoimpl.UnsafeEnabled && x != nil {314ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))315if ms.LoadMessageInfo() == nil {316ms.StoreMessageInfo(mi)317}318return ms319}320return mi.MessageOf(x)321}322323// Deprecated: Use ResolveSSHConnectionRequest.ProtoReflect.Descriptor instead.324func (*ResolveSSHConnectionRequest) Descriptor() ([]byte, []int) {325return file_localapp_proto_rawDescGZIP(), []int{5}326}327328func (x *ResolveSSHConnectionRequest) GetInstanceId() string {329if x != nil {330return x.InstanceId331}332return ""333}334335func (x *ResolveSSHConnectionRequest) GetWorkspaceId() string {336if x != nil {337return x.WorkspaceId338}339return ""340}341342type ResolveSSHConnectionResponse struct {343state protoimpl.MessageState344sizeCache protoimpl.SizeCache345unknownFields protoimpl.UnknownFields346347ConfigFile string `protobuf:"bytes,1,opt,name=config_file,json=configFile,proto3" json:"config_file,omitempty"`348Host string `protobuf:"bytes,2,opt,name=host,proto3" json:"host,omitempty"`349}350351func (x *ResolveSSHConnectionResponse) Reset() {352*x = ResolveSSHConnectionResponse{}353if protoimpl.UnsafeEnabled {354mi := &file_localapp_proto_msgTypes[6]355ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))356ms.StoreMessageInfo(mi)357}358}359360func (x *ResolveSSHConnectionResponse) String() string {361return protoimpl.X.MessageStringOf(x)362}363364func (*ResolveSSHConnectionResponse) ProtoMessage() {}365366func (x *ResolveSSHConnectionResponse) ProtoReflect() protoreflect.Message {367mi := &file_localapp_proto_msgTypes[6]368if protoimpl.UnsafeEnabled && x != nil {369ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))370if ms.LoadMessageInfo() == nil {371ms.StoreMessageInfo(mi)372}373return ms374}375return mi.MessageOf(x)376}377378// Deprecated: Use ResolveSSHConnectionResponse.ProtoReflect.Descriptor instead.379func (*ResolveSSHConnectionResponse) Descriptor() ([]byte, []int) {380return file_localapp_proto_rawDescGZIP(), []int{6}381}382383func (x *ResolveSSHConnectionResponse) GetConfigFile() string {384if x != nil {385return x.ConfigFile386}387return ""388}389390func (x *ResolveSSHConnectionResponse) GetHost() string {391if x != nil {392return x.Host393}394return ""395}396397var File_localapp_proto protoreflect.FileDescriptor398399var file_localapp_proto_rawDesc = []byte{4000x0a, 0x0e, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x61, 0x70, 0x70, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,4010x12, 0x08, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x61, 0x70, 0x70, 0x1a, 0x19, 0x73, 0x75, 0x70, 0x65,4020x72, 0x76, 0x69, 0x73, 0x6f, 0x72, 0x2d, 0x61, 0x70, 0x69, 0x2f, 0x70, 0x6f, 0x72, 0x74, 0x2e,4030x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0x50, 0x0a, 0x13, 0x54, 0x75, 0x6e, 0x6e, 0x65, 0x6c, 0x53,4040x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1f, 0x0a, 0x0b,4050x69, 0x6e, 0x73, 0x74, 0x61, 0x6e, 0x63, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28,4060x09, 0x52, 0x0a, 0x69, 0x6e, 0x73, 0x74, 0x61, 0x6e, 0x63, 0x65, 0x49, 0x64, 0x12, 0x18, 0x0a,4070x07, 0x6f, 0x62, 0x73, 0x65, 0x72, 0x76, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x08, 0x52, 0x07,4080x6f, 0x62, 0x73, 0x65, 0x72, 0x76, 0x65, 0x22, 0x48, 0x0a, 0x14, 0x54, 0x75, 0x6e, 0x6e, 0x65,4090x6c, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12,4100x30, 0x0a, 0x07, 0x74, 0x75, 0x6e, 0x6e, 0x65, 0x6c, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b,4110x32, 0x16, 0x2e, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x61, 0x70, 0x70, 0x2e, 0x54, 0x75, 0x6e, 0x6e,4120x65, 0x6c, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x07, 0x74, 0x75, 0x6e, 0x6e, 0x65, 0x6c,4130x73, 0x22, 0x8b, 0x01, 0x0a, 0x0c, 0x54, 0x75, 0x6e, 0x6e, 0x65, 0x6c, 0x53, 0x74, 0x61, 0x74,4140x75, 0x73, 0x12, 0x1f, 0x0a, 0x0b, 0x72, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x5f, 0x70, 0x6f, 0x72,4150x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x0a, 0x72, 0x65, 0x6d, 0x6f, 0x74, 0x65, 0x50,4160x6f, 0x72, 0x74, 0x12, 0x1d, 0x0a, 0x0a, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x5f, 0x70, 0x6f, 0x72,4170x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x09, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x50, 0x6f,4180x72, 0x74, 0x12, 0x3b, 0x0a, 0x0a, 0x76, 0x69, 0x73, 0x69, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79,4190x18, 0x03, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x1b, 0x2e, 0x73, 0x75, 0x70, 0x65, 0x72, 0x76, 0x69,4200x73, 0x6f, 0x72, 0x2e, 0x54, 0x75, 0x6e, 0x6e, 0x65, 0x6c, 0x56, 0x69, 0x73, 0x69, 0x62, 0x6c,4210x69, 0x74, 0x79, 0x52, 0x0a, 0x76, 0x69, 0x73, 0x69, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x22,4220x4e, 0x0a, 0x11, 0x41, 0x75, 0x74, 0x6f, 0x54, 0x75, 0x6e, 0x6e, 0x65, 0x6c, 0x52, 0x65, 0x71,4230x75, 0x65, 0x73, 0x74, 0x12, 0x1f, 0x0a, 0x0b, 0x69, 0x6e, 0x73, 0x74, 0x61, 0x6e, 0x63, 0x65,4240x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x69, 0x6e, 0x73, 0x74, 0x61,4250x6e, 0x63, 0x65, 0x49, 0x64, 0x12, 0x18, 0x0a, 0x07, 0x65, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64,4260x18, 0x02, 0x20, 0x01, 0x28, 0x08, 0x52, 0x07, 0x65, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x22,4270x14, 0x0a, 0x12, 0x41, 0x75, 0x74, 0x6f, 0x54, 0x75, 0x6e, 0x6e, 0x65, 0x6c, 0x52, 0x65, 0x73,4280x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x61, 0x0a, 0x1b, 0x52, 0x65, 0x73, 0x6f, 0x6c, 0x76, 0x65,4290x53, 0x53, 0x48, 0x43, 0x6f, 0x6e, 0x6e, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71,4300x75, 0x65, 0x73, 0x74, 0x12, 0x1f, 0x0a, 0x0b, 0x69, 0x6e, 0x73, 0x74, 0x61, 0x6e, 0x63, 0x65,4310x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x69, 0x6e, 0x73, 0x74, 0x61,4320x6e, 0x63, 0x65, 0x49, 0x64, 0x12, 0x21, 0x0a, 0x0c, 0x77, 0x6f, 0x72, 0x6b, 0x73, 0x70, 0x61,4330x63, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x77, 0x6f, 0x72,4340x6b, 0x73, 0x70, 0x61, 0x63, 0x65, 0x49, 0x64, 0x22, 0x53, 0x0a, 0x1c, 0x52, 0x65, 0x73, 0x6f,4350x6c, 0x76, 0x65, 0x53, 0x53, 0x48, 0x43, 0x6f, 0x6e, 0x6e, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e,4360x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x1f, 0x0a, 0x0b, 0x63, 0x6f, 0x6e, 0x66,4370x69, 0x67, 0x5f, 0x66, 0x69, 0x6c, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x63,4380x6f, 0x6e, 0x66, 0x69, 0x67, 0x46, 0x69, 0x6c, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x68, 0x6f, 0x73,4390x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x68, 0x6f, 0x73, 0x74, 0x32, 0x91, 0x02,4400x0a, 0x08, 0x4c, 0x6f, 0x63, 0x61, 0x6c, 0x41, 0x70, 0x70, 0x12, 0x51, 0x0a, 0x0c, 0x54, 0x75,4410x6e, 0x6e, 0x65, 0x6c, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x1d, 0x2e, 0x6c, 0x6f, 0x63,4420x61, 0x6c, 0x61, 0x70, 0x70, 0x2e, 0x54, 0x75, 0x6e, 0x6e, 0x65, 0x6c, 0x53, 0x74, 0x61, 0x74,4430x75, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1e, 0x2e, 0x6c, 0x6f, 0x63, 0x61,4440x6c, 0x61, 0x70, 0x70, 0x2e, 0x54, 0x75, 0x6e, 0x6e, 0x65, 0x6c, 0x53, 0x74, 0x61, 0x74, 0x75,4450x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x30, 0x01, 0x12, 0x49, 0x0a,4460x0a, 0x41, 0x75, 0x74, 0x6f, 0x54, 0x75, 0x6e, 0x6e, 0x65, 0x6c, 0x12, 0x1b, 0x2e, 0x6c, 0x6f,4470x63, 0x61, 0x6c, 0x61, 0x70, 0x70, 0x2e, 0x41, 0x75, 0x74, 0x6f, 0x54, 0x75, 0x6e, 0x6e, 0x65,4480x6c, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1c, 0x2e, 0x6c, 0x6f, 0x63, 0x61, 0x6c,4490x61, 0x70, 0x70, 0x2e, 0x41, 0x75, 0x74, 0x6f, 0x54, 0x75, 0x6e, 0x6e, 0x65, 0x6c, 0x52, 0x65,4500x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x67, 0x0a, 0x14, 0x52, 0x65, 0x73, 0x6f,4510x6c, 0x76, 0x65, 0x53, 0x53, 0x48, 0x43, 0x6f, 0x6e, 0x6e, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e,4520x12, 0x25, 0x2e, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x61, 0x70, 0x70, 0x2e, 0x52, 0x65, 0x73, 0x6f,4530x6c, 0x76, 0x65, 0x53, 0x53, 0x48, 0x43, 0x6f, 0x6e, 0x6e, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e,4540x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x26, 0x2e, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x61,4550x70, 0x70, 0x2e, 0x52, 0x65, 0x73, 0x6f, 0x6c, 0x76, 0x65, 0x53, 0x53, 0x48, 0x43, 0x6f, 0x6e,4560x6e, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22,4570x00, 0x42, 0x2b, 0x5a, 0x29, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f,4580x67, 0x69, 0x74, 0x70, 0x6f, 0x64, 0x2d, 0x69, 0x6f, 0x2f, 0x67, 0x69, 0x74, 0x70, 0x6f, 0x64,4590x2f, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x2d, 0x61, 0x70, 0x70, 0x2f, 0x61, 0x70, 0x69, 0x62, 0x06,4600x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,461}462463var (464file_localapp_proto_rawDescOnce sync.Once465file_localapp_proto_rawDescData = file_localapp_proto_rawDesc466)467468func file_localapp_proto_rawDescGZIP() []byte {469file_localapp_proto_rawDescOnce.Do(func() {470file_localapp_proto_rawDescData = protoimpl.X.CompressGZIP(file_localapp_proto_rawDescData)471})472return file_localapp_proto_rawDescData473}474475var file_localapp_proto_msgTypes = make([]protoimpl.MessageInfo, 7)476var file_localapp_proto_goTypes = []interface{}{477(*TunnelStatusRequest)(nil), // 0: localapp.TunnelStatusRequest478(*TunnelStatusResponse)(nil), // 1: localapp.TunnelStatusResponse479(*TunnelStatus)(nil), // 2: localapp.TunnelStatus480(*AutoTunnelRequest)(nil), // 3: localapp.AutoTunnelRequest481(*AutoTunnelResponse)(nil), // 4: localapp.AutoTunnelResponse482(*ResolveSSHConnectionRequest)(nil), // 5: localapp.ResolveSSHConnectionRequest483(*ResolveSSHConnectionResponse)(nil), // 6: localapp.ResolveSSHConnectionResponse484(api.TunnelVisiblity)(0), // 7: supervisor.TunnelVisiblity485}486var file_localapp_proto_depIdxs = []int32{4872, // 0: localapp.TunnelStatusResponse.tunnels:type_name -> localapp.TunnelStatus4887, // 1: localapp.TunnelStatus.visibility:type_name -> supervisor.TunnelVisiblity4890, // 2: localapp.LocalApp.TunnelStatus:input_type -> localapp.TunnelStatusRequest4903, // 3: localapp.LocalApp.AutoTunnel:input_type -> localapp.AutoTunnelRequest4915, // 4: localapp.LocalApp.ResolveSSHConnection:input_type -> localapp.ResolveSSHConnectionRequest4921, // 5: localapp.LocalApp.TunnelStatus:output_type -> localapp.TunnelStatusResponse4934, // 6: localapp.LocalApp.AutoTunnel:output_type -> localapp.AutoTunnelResponse4946, // 7: localapp.LocalApp.ResolveSSHConnection:output_type -> localapp.ResolveSSHConnectionResponse4955, // [5:8] is the sub-list for method output_type4962, // [2:5] is the sub-list for method input_type4972, // [2:2] is the sub-list for extension type_name4982, // [2:2] is the sub-list for extension extendee4990, // [0:2] is the sub-list for field type_name500}501502func init() { file_localapp_proto_init() }503func file_localapp_proto_init() {504if File_localapp_proto != nil {505return506}507if !protoimpl.UnsafeEnabled {508file_localapp_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {509switch v := v.(*TunnelStatusRequest); i {510case 0:511return &v.state512case 1:513return &v.sizeCache514case 2:515return &v.unknownFields516default:517return nil518}519}520file_localapp_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {521switch v := v.(*TunnelStatusResponse); i {522case 0:523return &v.state524case 1:525return &v.sizeCache526case 2:527return &v.unknownFields528default:529return nil530}531}532file_localapp_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {533switch v := v.(*TunnelStatus); i {534case 0:535return &v.state536case 1:537return &v.sizeCache538case 2:539return &v.unknownFields540default:541return nil542}543}544file_localapp_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {545switch v := v.(*AutoTunnelRequest); i {546case 0:547return &v.state548case 1:549return &v.sizeCache550case 2:551return &v.unknownFields552default:553return nil554}555}556file_localapp_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {557switch v := v.(*AutoTunnelResponse); i {558case 0:559return &v.state560case 1:561return &v.sizeCache562case 2:563return &v.unknownFields564default:565return nil566}567}568file_localapp_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {569switch v := v.(*ResolveSSHConnectionRequest); i {570case 0:571return &v.state572case 1:573return &v.sizeCache574case 2:575return &v.unknownFields576default:577return nil578}579}580file_localapp_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {581switch v := v.(*ResolveSSHConnectionResponse); i {582case 0:583return &v.state584case 1:585return &v.sizeCache586case 2:587return &v.unknownFields588default:589return nil590}591}592}593type x struct{}594out := protoimpl.TypeBuilder{595File: protoimpl.DescBuilder{596GoPackagePath: reflect.TypeOf(x{}).PkgPath(),597RawDescriptor: file_localapp_proto_rawDesc,598NumEnums: 0,599NumMessages: 7,600NumExtensions: 0,601NumServices: 1,602},603GoTypes: file_localapp_proto_goTypes,604DependencyIndexes: file_localapp_proto_depIdxs,605MessageInfos: file_localapp_proto_msgTypes,606}.Build()607File_localapp_proto = out.File608file_localapp_proto_rawDesc = nil609file_localapp_proto_goTypes = nil610file_localapp_proto_depIdxs = nil611}612613614