command.pb.go 19 KB

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