github.com/v2fly/v2ray-core/v5@v5.16.2-0.20240507031116-8191faa6e095/app/instman/command/command.pb.go (about)

     1  package command
     2  
     3  import (
     4  	_ "github.com/v2fly/v2ray-core/v5/common/protoext"
     5  	protoreflect "google.golang.org/protobuf/reflect/protoreflect"
     6  	protoimpl "google.golang.org/protobuf/runtime/protoimpl"
     7  	reflect "reflect"
     8  	sync "sync"
     9  )
    10  
    11  const (
    12  	// Verify that this generated code is sufficiently up-to-date.
    13  	_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
    14  	// Verify that runtime/protoimpl is sufficiently up-to-date.
    15  	_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
    16  )
    17  
    18  type ListInstanceReq struct {
    19  	state         protoimpl.MessageState
    20  	sizeCache     protoimpl.SizeCache
    21  	unknownFields protoimpl.UnknownFields
    22  }
    23  
    24  func (x *ListInstanceReq) Reset() {
    25  	*x = ListInstanceReq{}
    26  	if protoimpl.UnsafeEnabled {
    27  		mi := &file_app_instman_command_command_proto_msgTypes[0]
    28  		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
    29  		ms.StoreMessageInfo(mi)
    30  	}
    31  }
    32  
    33  func (x *ListInstanceReq) String() string {
    34  	return protoimpl.X.MessageStringOf(x)
    35  }
    36  
    37  func (*ListInstanceReq) ProtoMessage() {}
    38  
    39  func (x *ListInstanceReq) ProtoReflect() protoreflect.Message {
    40  	mi := &file_app_instman_command_command_proto_msgTypes[0]
    41  	if protoimpl.UnsafeEnabled && x != nil {
    42  		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
    43  		if ms.LoadMessageInfo() == nil {
    44  			ms.StoreMessageInfo(mi)
    45  		}
    46  		return ms
    47  	}
    48  	return mi.MessageOf(x)
    49  }
    50  
    51  // Deprecated: Use ListInstanceReq.ProtoReflect.Descriptor instead.
    52  func (*ListInstanceReq) Descriptor() ([]byte, []int) {
    53  	return file_app_instman_command_command_proto_rawDescGZIP(), []int{0}
    54  }
    55  
    56  type ListInstanceResp struct {
    57  	state         protoimpl.MessageState
    58  	sizeCache     protoimpl.SizeCache
    59  	unknownFields protoimpl.UnknownFields
    60  
    61  	Name []string `protobuf:"bytes,1,rep,name=name,proto3" json:"name,omitempty"`
    62  }
    63  
    64  func (x *ListInstanceResp) Reset() {
    65  	*x = ListInstanceResp{}
    66  	if protoimpl.UnsafeEnabled {
    67  		mi := &file_app_instman_command_command_proto_msgTypes[1]
    68  		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
    69  		ms.StoreMessageInfo(mi)
    70  	}
    71  }
    72  
    73  func (x *ListInstanceResp) String() string {
    74  	return protoimpl.X.MessageStringOf(x)
    75  }
    76  
    77  func (*ListInstanceResp) ProtoMessage() {}
    78  
    79  func (x *ListInstanceResp) ProtoReflect() protoreflect.Message {
    80  	mi := &file_app_instman_command_command_proto_msgTypes[1]
    81  	if protoimpl.UnsafeEnabled && x != nil {
    82  		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
    83  		if ms.LoadMessageInfo() == nil {
    84  			ms.StoreMessageInfo(mi)
    85  		}
    86  		return ms
    87  	}
    88  	return mi.MessageOf(x)
    89  }
    90  
    91  // Deprecated: Use ListInstanceResp.ProtoReflect.Descriptor instead.
    92  func (*ListInstanceResp) Descriptor() ([]byte, []int) {
    93  	return file_app_instman_command_command_proto_rawDescGZIP(), []int{1}
    94  }
    95  
    96  func (x *ListInstanceResp) GetName() []string {
    97  	if x != nil {
    98  		return x.Name
    99  	}
   100  	return nil
   101  }
   102  
   103  type AddInstanceReq struct {
   104  	state         protoimpl.MessageState
   105  	sizeCache     protoimpl.SizeCache
   106  	unknownFields protoimpl.UnknownFields
   107  
   108  	Name             string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
   109  	ConfigType       string `protobuf:"bytes,2,opt,name=configType,proto3" json:"configType,omitempty"`
   110  	ConfigContentB64 string `protobuf:"bytes,3,opt,name=configContentB64,proto3" json:"configContentB64,omitempty"`
   111  }
   112  
   113  func (x *AddInstanceReq) Reset() {
   114  	*x = AddInstanceReq{}
   115  	if protoimpl.UnsafeEnabled {
   116  		mi := &file_app_instman_command_command_proto_msgTypes[2]
   117  		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
   118  		ms.StoreMessageInfo(mi)
   119  	}
   120  }
   121  
   122  func (x *AddInstanceReq) String() string {
   123  	return protoimpl.X.MessageStringOf(x)
   124  }
   125  
   126  func (*AddInstanceReq) ProtoMessage() {}
   127  
   128  func (x *AddInstanceReq) ProtoReflect() protoreflect.Message {
   129  	mi := &file_app_instman_command_command_proto_msgTypes[2]
   130  	if protoimpl.UnsafeEnabled && x != nil {
   131  		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
   132  		if ms.LoadMessageInfo() == nil {
   133  			ms.StoreMessageInfo(mi)
   134  		}
   135  		return ms
   136  	}
   137  	return mi.MessageOf(x)
   138  }
   139  
   140  // Deprecated: Use AddInstanceReq.ProtoReflect.Descriptor instead.
   141  func (*AddInstanceReq) Descriptor() ([]byte, []int) {
   142  	return file_app_instman_command_command_proto_rawDescGZIP(), []int{2}
   143  }
   144  
   145  func (x *AddInstanceReq) GetName() string {
   146  	if x != nil {
   147  		return x.Name
   148  	}
   149  	return ""
   150  }
   151  
   152  func (x *AddInstanceReq) GetConfigType() string {
   153  	if x != nil {
   154  		return x.ConfigType
   155  	}
   156  	return ""
   157  }
   158  
   159  func (x *AddInstanceReq) GetConfigContentB64() string {
   160  	if x != nil {
   161  		return x.ConfigContentB64
   162  	}
   163  	return ""
   164  }
   165  
   166  type AddInstanceResp struct {
   167  	state         protoimpl.MessageState
   168  	sizeCache     protoimpl.SizeCache
   169  	unknownFields protoimpl.UnknownFields
   170  }
   171  
   172  func (x *AddInstanceResp) Reset() {
   173  	*x = AddInstanceResp{}
   174  	if protoimpl.UnsafeEnabled {
   175  		mi := &file_app_instman_command_command_proto_msgTypes[3]
   176  		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
   177  		ms.StoreMessageInfo(mi)
   178  	}
   179  }
   180  
   181  func (x *AddInstanceResp) String() string {
   182  	return protoimpl.X.MessageStringOf(x)
   183  }
   184  
   185  func (*AddInstanceResp) ProtoMessage() {}
   186  
   187  func (x *AddInstanceResp) ProtoReflect() protoreflect.Message {
   188  	mi := &file_app_instman_command_command_proto_msgTypes[3]
   189  	if protoimpl.UnsafeEnabled && x != nil {
   190  		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
   191  		if ms.LoadMessageInfo() == nil {
   192  			ms.StoreMessageInfo(mi)
   193  		}
   194  		return ms
   195  	}
   196  	return mi.MessageOf(x)
   197  }
   198  
   199  // Deprecated: Use AddInstanceResp.ProtoReflect.Descriptor instead.
   200  func (*AddInstanceResp) Descriptor() ([]byte, []int) {
   201  	return file_app_instman_command_command_proto_rawDescGZIP(), []int{3}
   202  }
   203  
   204  type StartInstanceReq struct {
   205  	state         protoimpl.MessageState
   206  	sizeCache     protoimpl.SizeCache
   207  	unknownFields protoimpl.UnknownFields
   208  
   209  	Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
   210  }
   211  
   212  func (x *StartInstanceReq) Reset() {
   213  	*x = StartInstanceReq{}
   214  	if protoimpl.UnsafeEnabled {
   215  		mi := &file_app_instman_command_command_proto_msgTypes[4]
   216  		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
   217  		ms.StoreMessageInfo(mi)
   218  	}
   219  }
   220  
   221  func (x *StartInstanceReq) String() string {
   222  	return protoimpl.X.MessageStringOf(x)
   223  }
   224  
   225  func (*StartInstanceReq) ProtoMessage() {}
   226  
   227  func (x *StartInstanceReq) ProtoReflect() protoreflect.Message {
   228  	mi := &file_app_instman_command_command_proto_msgTypes[4]
   229  	if protoimpl.UnsafeEnabled && x != nil {
   230  		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
   231  		if ms.LoadMessageInfo() == nil {
   232  			ms.StoreMessageInfo(mi)
   233  		}
   234  		return ms
   235  	}
   236  	return mi.MessageOf(x)
   237  }
   238  
   239  // Deprecated: Use StartInstanceReq.ProtoReflect.Descriptor instead.
   240  func (*StartInstanceReq) Descriptor() ([]byte, []int) {
   241  	return file_app_instman_command_command_proto_rawDescGZIP(), []int{4}
   242  }
   243  
   244  func (x *StartInstanceReq) GetName() string {
   245  	if x != nil {
   246  		return x.Name
   247  	}
   248  	return ""
   249  }
   250  
   251  type StartInstanceResp struct {
   252  	state         protoimpl.MessageState
   253  	sizeCache     protoimpl.SizeCache
   254  	unknownFields protoimpl.UnknownFields
   255  }
   256  
   257  func (x *StartInstanceResp) Reset() {
   258  	*x = StartInstanceResp{}
   259  	if protoimpl.UnsafeEnabled {
   260  		mi := &file_app_instman_command_command_proto_msgTypes[5]
   261  		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
   262  		ms.StoreMessageInfo(mi)
   263  	}
   264  }
   265  
   266  func (x *StartInstanceResp) String() string {
   267  	return protoimpl.X.MessageStringOf(x)
   268  }
   269  
   270  func (*StartInstanceResp) ProtoMessage() {}
   271  
   272  func (x *StartInstanceResp) ProtoReflect() protoreflect.Message {
   273  	mi := &file_app_instman_command_command_proto_msgTypes[5]
   274  	if protoimpl.UnsafeEnabled && x != nil {
   275  		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
   276  		if ms.LoadMessageInfo() == nil {
   277  			ms.StoreMessageInfo(mi)
   278  		}
   279  		return ms
   280  	}
   281  	return mi.MessageOf(x)
   282  }
   283  
   284  // Deprecated: Use StartInstanceResp.ProtoReflect.Descriptor instead.
   285  func (*StartInstanceResp) Descriptor() ([]byte, []int) {
   286  	return file_app_instman_command_command_proto_rawDescGZIP(), []int{5}
   287  }
   288  
   289  type Config struct {
   290  	state         protoimpl.MessageState
   291  	sizeCache     protoimpl.SizeCache
   292  	unknownFields protoimpl.UnknownFields
   293  }
   294  
   295  func (x *Config) Reset() {
   296  	*x = Config{}
   297  	if protoimpl.UnsafeEnabled {
   298  		mi := &file_app_instman_command_command_proto_msgTypes[6]
   299  		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
   300  		ms.StoreMessageInfo(mi)
   301  	}
   302  }
   303  
   304  func (x *Config) String() string {
   305  	return protoimpl.X.MessageStringOf(x)
   306  }
   307  
   308  func (*Config) ProtoMessage() {}
   309  
   310  func (x *Config) ProtoReflect() protoreflect.Message {
   311  	mi := &file_app_instman_command_command_proto_msgTypes[6]
   312  	if protoimpl.UnsafeEnabled && x != nil {
   313  		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
   314  		if ms.LoadMessageInfo() == nil {
   315  			ms.StoreMessageInfo(mi)
   316  		}
   317  		return ms
   318  	}
   319  	return mi.MessageOf(x)
   320  }
   321  
   322  // Deprecated: Use Config.ProtoReflect.Descriptor instead.
   323  func (*Config) Descriptor() ([]byte, []int) {
   324  	return file_app_instman_command_command_proto_rawDescGZIP(), []int{6}
   325  }
   326  
   327  var File_app_instman_command_command_proto protoreflect.FileDescriptor
   328  
   329  var file_app_instman_command_command_proto_rawDesc = []byte{
   330  	0x0a, 0x21, 0x61, 0x70, 0x70, 0x2f, 0x69, 0x6e, 0x73, 0x74, 0x6d, 0x61, 0x6e, 0x2f, 0x63, 0x6f,
   331  	0x6d, 0x6d, 0x61, 0x6e, 0x64, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x61, 0x6e, 0x64, 0x2e, 0x70, 0x72,
   332  	0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x76, 0x32, 0x72, 0x61, 0x79, 0x2e, 0x63, 0x6f, 0x72, 0x65, 0x2e,
   333  	0x61, 0x70, 0x70, 0x2e, 0x69, 0x6e, 0x73, 0x74, 0x6d, 0x61, 0x6e, 0x2e, 0x63, 0x6f, 0x6d, 0x6d,
   334  	0x61, 0x6e, 0x64, 0x1a, 0x20, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2f, 0x70, 0x72, 0x6f, 0x74,
   335  	0x6f, 0x65, 0x78, 0x74, 0x2f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x2e,
   336  	0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0x11, 0x0a, 0x0f, 0x4c, 0x69, 0x73, 0x74, 0x49, 0x6e, 0x73,
   337  	0x74, 0x61, 0x6e, 0x63, 0x65, 0x52, 0x65, 0x71, 0x22, 0x26, 0x0a, 0x10, 0x4c, 0x69, 0x73, 0x74,
   338  	0x49, 0x6e, 0x73, 0x74, 0x61, 0x6e, 0x63, 0x65, 0x52, 0x65, 0x73, 0x70, 0x12, 0x12, 0x0a, 0x04,
   339  	0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x03, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65,
   340  	0x22, 0x70, 0x0a, 0x0e, 0x41, 0x64, 0x64, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6e, 0x63, 0x65, 0x52,
   341  	0x65, 0x71, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09,
   342  	0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x1e, 0x0a, 0x0a, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67,
   343  	0x54, 0x79, 0x70, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x63, 0x6f, 0x6e, 0x66,
   344  	0x69, 0x67, 0x54, 0x79, 0x70, 0x65, 0x12, 0x2a, 0x0a, 0x10, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67,
   345  	0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x42, 0x36, 0x34, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09,
   346  	0x52, 0x10, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x42,
   347  	0x36, 0x34, 0x22, 0x11, 0x0a, 0x0f, 0x41, 0x64, 0x64, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6e, 0x63,
   348  	0x65, 0x52, 0x65, 0x73, 0x70, 0x22, 0x26, 0x0a, 0x10, 0x53, 0x74, 0x61, 0x72, 0x74, 0x49, 0x6e,
   349  	0x73, 0x74, 0x61, 0x6e, 0x63, 0x65, 0x52, 0x65, 0x71, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d,
   350  	0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x22, 0x13, 0x0a,
   351  	0x11, 0x53, 0x74, 0x61, 0x72, 0x74, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6e, 0x63, 0x65, 0x52, 0x65,
   352  	0x73, 0x70, 0x22, 0x24, 0x0a, 0x06, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x3a, 0x1a, 0x82, 0xb5,
   353  	0x18, 0x16, 0x0a, 0x0b, 0x67, 0x72, 0x70, 0x63, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x12,
   354  	0x07, 0x69, 0x6e, 0x73, 0x74, 0x6d, 0x61, 0x6e, 0x32, 0xf4, 0x02, 0x0a, 0x19, 0x49, 0x6e, 0x73,
   355  	0x74, 0x61, 0x6e, 0x63, 0x65, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x53,
   356  	0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x12, 0x71, 0x0a, 0x0c, 0x4c, 0x69, 0x73, 0x74, 0x49, 0x6e,
   357  	0x73, 0x74, 0x61, 0x6e, 0x63, 0x65, 0x12, 0x2f, 0x2e, 0x76, 0x32, 0x72, 0x61, 0x79, 0x2e, 0x63,
   358  	0x6f, 0x72, 0x65, 0x2e, 0x61, 0x70, 0x70, 0x2e, 0x69, 0x6e, 0x73, 0x74, 0x6d, 0x61, 0x6e, 0x2e,
   359  	0x63, 0x6f, 0x6d, 0x6d, 0x61, 0x6e, 0x64, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x49, 0x6e, 0x73, 0x74,
   360  	0x61, 0x6e, 0x63, 0x65, 0x52, 0x65, 0x71, 0x1a, 0x30, 0x2e, 0x76, 0x32, 0x72, 0x61, 0x79, 0x2e,
   361  	0x63, 0x6f, 0x72, 0x65, 0x2e, 0x61, 0x70, 0x70, 0x2e, 0x69, 0x6e, 0x73, 0x74, 0x6d, 0x61, 0x6e,
   362  	0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x61, 0x6e, 0x64, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x49, 0x6e, 0x73,
   363  	0x74, 0x61, 0x6e, 0x63, 0x65, 0x52, 0x65, 0x73, 0x70, 0x12, 0x6e, 0x0a, 0x0b, 0x41, 0x64, 0x64,
   364  	0x49, 0x6e, 0x73, 0x74, 0x61, 0x6e, 0x63, 0x65, 0x12, 0x2e, 0x2e, 0x76, 0x32, 0x72, 0x61, 0x79,
   365  	0x2e, 0x63, 0x6f, 0x72, 0x65, 0x2e, 0x61, 0x70, 0x70, 0x2e, 0x69, 0x6e, 0x73, 0x74, 0x6d, 0x61,
   366  	0x6e, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x61, 0x6e, 0x64, 0x2e, 0x41, 0x64, 0x64, 0x49, 0x6e, 0x73,
   367  	0x74, 0x61, 0x6e, 0x63, 0x65, 0x52, 0x65, 0x71, 0x1a, 0x2f, 0x2e, 0x76, 0x32, 0x72, 0x61, 0x79,
   368  	0x2e, 0x63, 0x6f, 0x72, 0x65, 0x2e, 0x61, 0x70, 0x70, 0x2e, 0x69, 0x6e, 0x73, 0x74, 0x6d, 0x61,
   369  	0x6e, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x61, 0x6e, 0x64, 0x2e, 0x41, 0x64, 0x64, 0x49, 0x6e, 0x73,
   370  	0x74, 0x61, 0x6e, 0x63, 0x65, 0x52, 0x65, 0x73, 0x70, 0x12, 0x74, 0x0a, 0x0d, 0x53, 0x74, 0x61,
   371  	0x72, 0x74, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6e, 0x63, 0x65, 0x12, 0x30, 0x2e, 0x76, 0x32, 0x72,
   372  	0x61, 0x79, 0x2e, 0x63, 0x6f, 0x72, 0x65, 0x2e, 0x61, 0x70, 0x70, 0x2e, 0x69, 0x6e, 0x73, 0x74,
   373  	0x6d, 0x61, 0x6e, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x61, 0x6e, 0x64, 0x2e, 0x53, 0x74, 0x61, 0x72,
   374  	0x74, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6e, 0x63, 0x65, 0x52, 0x65, 0x71, 0x1a, 0x31, 0x2e, 0x76,
   375  	0x32, 0x72, 0x61, 0x79, 0x2e, 0x63, 0x6f, 0x72, 0x65, 0x2e, 0x61, 0x70, 0x70, 0x2e, 0x69, 0x6e,
   376  	0x73, 0x74, 0x6d, 0x61, 0x6e, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x61, 0x6e, 0x64, 0x2e, 0x53, 0x74,
   377  	0x61, 0x72, 0x74, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6e, 0x63, 0x65, 0x52, 0x65, 0x73, 0x70, 0x42,
   378  	0x7f, 0x0a, 0x26, 0x63, 0x6f, 0x6d, 0x2e, 0x76, 0x32, 0x72, 0x61, 0x79, 0x2e, 0x63, 0x6f, 0x72,
   379  	0x65, 0x2e, 0x61, 0x70, 0x70, 0x2e, 0x6f, 0x62, 0x73, 0x65, 0x72, 0x76, 0x61, 0x74, 0x6f, 0x72,
   380  	0x79, 0x2e, 0x69, 0x6e, 0x73, 0x74, 0x6d, 0x61, 0x6e, 0x50, 0x01, 0x5a, 0x32, 0x67, 0x69, 0x74,
   381  	0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x76, 0x32, 0x66, 0x6c, 0x79, 0x2f, 0x76, 0x32,
   382  	0x72, 0x61, 0x79, 0x2d, 0x63, 0x6f, 0x72, 0x65, 0x2f, 0x76, 0x35, 0x2f, 0x61, 0x70, 0x70, 0x2f,
   383  	0x69, 0x6e, 0x73, 0x74, 0x6d, 0x61, 0x6e, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x61, 0x6e, 0x64, 0xaa,
   384  	0x02, 0x1e, 0x56, 0x32, 0x52, 0x61, 0x79, 0x2e, 0x43, 0x6f, 0x72, 0x65, 0x2e, 0x41, 0x70, 0x70,
   385  	0x2e, 0x49, 0x6e, 0x73, 0x74, 0x6d, 0x61, 0x6e, 0x2e, 0x43, 0x6f, 0x6d, 0x6d, 0x61, 0x6e, 0x64,
   386  	0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
   387  }
   388  
   389  var (
   390  	file_app_instman_command_command_proto_rawDescOnce sync.Once
   391  	file_app_instman_command_command_proto_rawDescData = file_app_instman_command_command_proto_rawDesc
   392  )
   393  
   394  func file_app_instman_command_command_proto_rawDescGZIP() []byte {
   395  	file_app_instman_command_command_proto_rawDescOnce.Do(func() {
   396  		file_app_instman_command_command_proto_rawDescData = protoimpl.X.CompressGZIP(file_app_instman_command_command_proto_rawDescData)
   397  	})
   398  	return file_app_instman_command_command_proto_rawDescData
   399  }
   400  
   401  var file_app_instman_command_command_proto_msgTypes = make([]protoimpl.MessageInfo, 7)
   402  var file_app_instman_command_command_proto_goTypes = []interface{}{
   403  	(*ListInstanceReq)(nil),   // 0: v2ray.core.app.instman.command.ListInstanceReq
   404  	(*ListInstanceResp)(nil),  // 1: v2ray.core.app.instman.command.ListInstanceResp
   405  	(*AddInstanceReq)(nil),    // 2: v2ray.core.app.instman.command.AddInstanceReq
   406  	(*AddInstanceResp)(nil),   // 3: v2ray.core.app.instman.command.AddInstanceResp
   407  	(*StartInstanceReq)(nil),  // 4: v2ray.core.app.instman.command.StartInstanceReq
   408  	(*StartInstanceResp)(nil), // 5: v2ray.core.app.instman.command.StartInstanceResp
   409  	(*Config)(nil),            // 6: v2ray.core.app.instman.command.Config
   410  }
   411  var file_app_instman_command_command_proto_depIdxs = []int32{
   412  	0, // 0: v2ray.core.app.instman.command.InstanceManagementService.ListInstance:input_type -> v2ray.core.app.instman.command.ListInstanceReq
   413  	2, // 1: v2ray.core.app.instman.command.InstanceManagementService.AddInstance:input_type -> v2ray.core.app.instman.command.AddInstanceReq
   414  	4, // 2: v2ray.core.app.instman.command.InstanceManagementService.StartInstance:input_type -> v2ray.core.app.instman.command.StartInstanceReq
   415  	1, // 3: v2ray.core.app.instman.command.InstanceManagementService.ListInstance:output_type -> v2ray.core.app.instman.command.ListInstanceResp
   416  	3, // 4: v2ray.core.app.instman.command.InstanceManagementService.AddInstance:output_type -> v2ray.core.app.instman.command.AddInstanceResp
   417  	5, // 5: v2ray.core.app.instman.command.InstanceManagementService.StartInstance:output_type -> v2ray.core.app.instman.command.StartInstanceResp
   418  	3, // [3:6] is the sub-list for method output_type
   419  	0, // [0:3] is the sub-list for method input_type
   420  	0, // [0:0] is the sub-list for extension type_name
   421  	0, // [0:0] is the sub-list for extension extendee
   422  	0, // [0:0] is the sub-list for field type_name
   423  }
   424  
   425  func init() { file_app_instman_command_command_proto_init() }
   426  func file_app_instman_command_command_proto_init() {
   427  	if File_app_instman_command_command_proto != nil {
   428  		return
   429  	}
   430  	if !protoimpl.UnsafeEnabled {
   431  		file_app_instman_command_command_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
   432  			switch v := v.(*ListInstanceReq); i {
   433  			case 0:
   434  				return &v.state
   435  			case 1:
   436  				return &v.sizeCache
   437  			case 2:
   438  				return &v.unknownFields
   439  			default:
   440  				return nil
   441  			}
   442  		}
   443  		file_app_instman_command_command_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
   444  			switch v := v.(*ListInstanceResp); i {
   445  			case 0:
   446  				return &v.state
   447  			case 1:
   448  				return &v.sizeCache
   449  			case 2:
   450  				return &v.unknownFields
   451  			default:
   452  				return nil
   453  			}
   454  		}
   455  		file_app_instman_command_command_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
   456  			switch v := v.(*AddInstanceReq); i {
   457  			case 0:
   458  				return &v.state
   459  			case 1:
   460  				return &v.sizeCache
   461  			case 2:
   462  				return &v.unknownFields
   463  			default:
   464  				return nil
   465  			}
   466  		}
   467  		file_app_instman_command_command_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
   468  			switch v := v.(*AddInstanceResp); i {
   469  			case 0:
   470  				return &v.state
   471  			case 1:
   472  				return &v.sizeCache
   473  			case 2:
   474  				return &v.unknownFields
   475  			default:
   476  				return nil
   477  			}
   478  		}
   479  		file_app_instman_command_command_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
   480  			switch v := v.(*StartInstanceReq); i {
   481  			case 0:
   482  				return &v.state
   483  			case 1:
   484  				return &v.sizeCache
   485  			case 2:
   486  				return &v.unknownFields
   487  			default:
   488  				return nil
   489  			}
   490  		}
   491  		file_app_instman_command_command_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
   492  			switch v := v.(*StartInstanceResp); i {
   493  			case 0:
   494  				return &v.state
   495  			case 1:
   496  				return &v.sizeCache
   497  			case 2:
   498  				return &v.unknownFields
   499  			default:
   500  				return nil
   501  			}
   502  		}
   503  		file_app_instman_command_command_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {
   504  			switch v := v.(*Config); i {
   505  			case 0:
   506  				return &v.state
   507  			case 1:
   508  				return &v.sizeCache
   509  			case 2:
   510  				return &v.unknownFields
   511  			default:
   512  				return nil
   513  			}
   514  		}
   515  	}
   516  	type x struct{}
   517  	out := protoimpl.TypeBuilder{
   518  		File: protoimpl.DescBuilder{
   519  			GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
   520  			RawDescriptor: file_app_instman_command_command_proto_rawDesc,
   521  			NumEnums:      0,
   522  			NumMessages:   7,
   523  			NumExtensions: 0,
   524  			NumServices:   1,
   525  		},
   526  		GoTypes:           file_app_instman_command_command_proto_goTypes,
   527  		DependencyIndexes: file_app_instman_command_command_proto_depIdxs,
   528  		MessageInfos:      file_app_instman_command_command_proto_msgTypes,
   529  	}.Build()
   530  	File_app_instman_command_command_proto = out.File
   531  	file_app_instman_command_command_proto_rawDesc = nil
   532  	file_app_instman_command_command_proto_goTypes = nil
   533  	file_app_instman_command_command_proto_depIdxs = nil
   534  }