command.pb.go 19 KB

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