You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

hpcAC.pb.go 111 kB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853
  1. // Code generated by protoc-gen-go. DO NOT EDIT.
  2. // versions:
  3. // protoc-gen-go v1.28.1
  4. // protoc v3.21.12
  5. // source: hpcAC.proto
  6. package hpcAC
  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. // *****************cluster Start************************
  20. type JobManager struct {
  21. state protoimpl.MessageState
  22. sizeCache protoimpl.SizeCache
  23. unknownFields protoimpl.UnknownFields
  24. JobManagerType string `protobuf:"bytes,1,opt,name=job_manager_type,json=jobManagerType,proto3" json:"job_manager_type,omitempty"` // @gotags: copier:"JobManagerType", json:"JobManagerType"
  25. JobManagerAddr string `protobuf:"bytes,2,opt,name=job_manager_addr,json=jobManagerAddr,proto3" json:"job_manager_addr,omitempty"` // @gotags: copier:"JobManagerAddr", json:"JobManagerAddr"
  26. Id int64 `protobuf:"varint,3,opt,name=id,proto3" json:"id,omitempty"` // @gotags: copier:"ID", json:"id"
  27. Text string `protobuf:"bytes,4,opt,name=text,proto3" json:"text,omitempty"` // @gotags: copier:"Text", json:"text"
  28. JobManagerPort string `protobuf:"bytes,5,opt,name=job_manager_port,json=jobManagerPort,proto3" json:"job_manager_port,omitempty"` // @gotags: copier:"JobManagerPort", json:"JobManagerPort"
  29. }
  30. func (x *JobManager) Reset() {
  31. *x = JobManager{}
  32. if protoimpl.UnsafeEnabled {
  33. mi := &file_hpcAC_proto_msgTypes[0]
  34. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  35. ms.StoreMessageInfo(mi)
  36. }
  37. }
  38. func (x *JobManager) String() string {
  39. return protoimpl.X.MessageStringOf(x)
  40. }
  41. func (*JobManager) ProtoMessage() {}
  42. func (x *JobManager) ProtoReflect() protoreflect.Message {
  43. mi := &file_hpcAC_proto_msgTypes[0]
  44. if protoimpl.UnsafeEnabled && x != nil {
  45. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  46. if ms.LoadMessageInfo() == nil {
  47. ms.StoreMessageInfo(mi)
  48. }
  49. return ms
  50. }
  51. return mi.MessageOf(x)
  52. }
  53. // Deprecated: Use JobManager.ProtoReflect.Descriptor instead.
  54. func (*JobManager) Descriptor() ([]byte, []int) {
  55. return file_hpcAC_proto_rawDescGZIP(), []int{0}
  56. }
  57. func (x *JobManager) GetJobManagerType() string {
  58. if x != nil {
  59. return x.JobManagerType
  60. }
  61. return ""
  62. }
  63. func (x *JobManager) GetJobManagerAddr() string {
  64. if x != nil {
  65. return x.JobManagerAddr
  66. }
  67. return ""
  68. }
  69. func (x *JobManager) GetId() int64 {
  70. if x != nil {
  71. return x.Id
  72. }
  73. return 0
  74. }
  75. func (x *JobManager) GetText() string {
  76. if x != nil {
  77. return x.Text
  78. }
  79. return ""
  80. }
  81. func (x *JobManager) GetJobManagerPort() string {
  82. if x != nil {
  83. return x.JobManagerPort
  84. }
  85. return ""
  86. }
  87. type JobManagerReq struct {
  88. state protoimpl.MessageState
  89. sizeCache protoimpl.SizeCache
  90. unknownFields protoimpl.UnknownFields
  91. }
  92. func (x *JobManagerReq) Reset() {
  93. *x = JobManagerReq{}
  94. if protoimpl.UnsafeEnabled {
  95. mi := &file_hpcAC_proto_msgTypes[1]
  96. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  97. ms.StoreMessageInfo(mi)
  98. }
  99. }
  100. func (x *JobManagerReq) String() string {
  101. return protoimpl.X.MessageStringOf(x)
  102. }
  103. func (*JobManagerReq) ProtoMessage() {}
  104. func (x *JobManagerReq) ProtoReflect() protoreflect.Message {
  105. mi := &file_hpcAC_proto_msgTypes[1]
  106. if protoimpl.UnsafeEnabled && x != nil {
  107. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  108. if ms.LoadMessageInfo() == nil {
  109. ms.StoreMessageInfo(mi)
  110. }
  111. return ms
  112. }
  113. return mi.MessageOf(x)
  114. }
  115. // Deprecated: Use JobManagerReq.ProtoReflect.Descriptor instead.
  116. func (*JobManagerReq) Descriptor() ([]byte, []int) {
  117. return file_hpcAC_proto_rawDescGZIP(), []int{1}
  118. }
  119. type ListJobManagerResp struct {
  120. state protoimpl.MessageState
  121. sizeCache protoimpl.SizeCache
  122. unknownFields protoimpl.UnknownFields
  123. Code string `protobuf:"bytes,1,opt,name=code,proto3" json:"code,omitempty"` // @gotags: copier:"Code", json:"code"
  124. Msg string `protobuf:"bytes,2,opt,name=msg,proto3" json:"msg,omitempty"` // @gotags: copier:"Msg", json:"msg"
  125. JobManagers []*JobManager `protobuf:"bytes,3,rep,name=job_managers,json=jobManagers,proto3" json:"job_managers,omitempty"` // @gotags: copier:"JobManagers", json:"data"
  126. }
  127. func (x *ListJobManagerResp) Reset() {
  128. *x = ListJobManagerResp{}
  129. if protoimpl.UnsafeEnabled {
  130. mi := &file_hpcAC_proto_msgTypes[2]
  131. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  132. ms.StoreMessageInfo(mi)
  133. }
  134. }
  135. func (x *ListJobManagerResp) String() string {
  136. return protoimpl.X.MessageStringOf(x)
  137. }
  138. func (*ListJobManagerResp) ProtoMessage() {}
  139. func (x *ListJobManagerResp) ProtoReflect() protoreflect.Message {
  140. mi := &file_hpcAC_proto_msgTypes[2]
  141. if protoimpl.UnsafeEnabled && x != nil {
  142. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  143. if ms.LoadMessageInfo() == nil {
  144. ms.StoreMessageInfo(mi)
  145. }
  146. return ms
  147. }
  148. return mi.MessageOf(x)
  149. }
  150. // Deprecated: Use ListJobManagerResp.ProtoReflect.Descriptor instead.
  151. func (*ListJobManagerResp) Descriptor() ([]byte, []int) {
  152. return file_hpcAC_proto_rawDescGZIP(), []int{2}
  153. }
  154. func (x *ListJobManagerResp) GetCode() string {
  155. if x != nil {
  156. return x.Code
  157. }
  158. return ""
  159. }
  160. func (x *ListJobManagerResp) GetMsg() string {
  161. if x != nil {
  162. return x.Msg
  163. }
  164. return ""
  165. }
  166. func (x *ListJobManagerResp) GetJobManagers() []*JobManager {
  167. if x != nil {
  168. return x.JobManagers
  169. }
  170. return nil
  171. }
  172. // *****************Job Start************************
  173. type Job struct {
  174. state protoimpl.MessageState
  175. sizeCache protoimpl.SizeCache
  176. unknownFields protoimpl.UnknownFields
  177. JobId string `protobuf:"bytes,1,opt,name=job_id,json=jobId,proto3" json:"job_id,omitempty"` // @gotags: copier:"JobId"
  178. JobName string `protobuf:"bytes,2,opt,name=job_name,json=jobName,proto3" json:"job_name,omitempty"` // @gotags: copier:"Name"
  179. JobStatus string `protobuf:"bytes,3,opt,name=job_status,json=jobStatus,proto3" json:"job_status,omitempty"` // @gotags: copier:"JobState"
  180. Queue string `protobuf:"bytes,4,opt,name=queue,proto3" json:"queue,omitempty"` // @gotags: copier:"Partition"
  181. User string `protobuf:"bytes,5,opt,name=user,proto3" json:"user,omitempty"` // @gotags: copier:"UserId"
  182. NodeUsed string `protobuf:"bytes,6,opt,name=node_used,json=nodeUsed,proto3" json:"node_used,omitempty"` // @gotags: copier:"ExcNodes"
  183. ProcNumUsed int32 `protobuf:"varint,7,opt,name=proc_num_used,json=procNumUsed,proto3" json:"proc_num_used,omitempty"` // @gotags: copier:"NumCpus"
  184. JobStartTime string `protobuf:"bytes,8,opt,name=job_start_time,json=jobStartTime,proto3" json:"job_start_time,omitempty"` // @gotags: copier:"StartTime"
  185. JobRunTime string `protobuf:"bytes,9,opt,name=job_run_time,json=jobRunTime,proto3" json:"job_run_time,omitempty"` // @gotags: copier:"JobRunTime"
  186. JobManagerId string `protobuf:"bytes,10,opt,name=job_manager_id,json=jobManagerId,proto3" json:"job_manager_id,omitempty"` // @gotags: copier:"JobmanagerId"
  187. JobManagerName string `protobuf:"bytes,11,opt,name=job_manager_name,json=jobManagerName,proto3" json:"job_manager_name,omitempty"` // @gotags: copier:"JobmanagerName"
  188. JobManagerType string `protobuf:"bytes,12,opt,name=job_manager_type,json=jobManagerType,proto3" json:"job_manager_type,omitempty"` // @gotags: copier:"JobmanagerType"
  189. ErrorPath string `protobuf:"bytes,13,opt,name=error_path,json=errorPath,proto3" json:"error_path,omitempty"` // @gotags: copier:"ErrorPath"
  190. OutputPath string `protobuf:"bytes,14,opt,name=output_path,json=outputPath,proto3" json:"output_path,omitempty"` // @gotags: copier:"OutputPath"
  191. WorkDir string `protobuf:"bytes,15,opt,name=work_dir,json=workDir,proto3" json:"work_dir,omitempty"` // @gotags: copier:"WorkDir"
  192. Reason string `protobuf:"bytes,16,opt,name=reason,proto3" json:"reason,omitempty"` // @gotags: copier:"Reason"
  193. AppType string `protobuf:"bytes,17,opt,name=app_type,json=appType,proto3" json:"app_type,omitempty"` // @gotags: copier:"AppType"
  194. }
  195. func (x *Job) Reset() {
  196. *x = Job{}
  197. if protoimpl.UnsafeEnabled {
  198. mi := &file_hpcAC_proto_msgTypes[3]
  199. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  200. ms.StoreMessageInfo(mi)
  201. }
  202. }
  203. func (x *Job) String() string {
  204. return protoimpl.X.MessageStringOf(x)
  205. }
  206. func (*Job) ProtoMessage() {}
  207. func (x *Job) ProtoReflect() protoreflect.Message {
  208. mi := &file_hpcAC_proto_msgTypes[3]
  209. if protoimpl.UnsafeEnabled && x != nil {
  210. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  211. if ms.LoadMessageInfo() == nil {
  212. ms.StoreMessageInfo(mi)
  213. }
  214. return ms
  215. }
  216. return mi.MessageOf(x)
  217. }
  218. // Deprecated: Use Job.ProtoReflect.Descriptor instead.
  219. func (*Job) Descriptor() ([]byte, []int) {
  220. return file_hpcAC_proto_rawDescGZIP(), []int{3}
  221. }
  222. func (x *Job) GetJobId() string {
  223. if x != nil {
  224. return x.JobId
  225. }
  226. return ""
  227. }
  228. func (x *Job) GetJobName() string {
  229. if x != nil {
  230. return x.JobName
  231. }
  232. return ""
  233. }
  234. func (x *Job) GetJobStatus() string {
  235. if x != nil {
  236. return x.JobStatus
  237. }
  238. return ""
  239. }
  240. func (x *Job) GetQueue() string {
  241. if x != nil {
  242. return x.Queue
  243. }
  244. return ""
  245. }
  246. func (x *Job) GetUser() string {
  247. if x != nil {
  248. return x.User
  249. }
  250. return ""
  251. }
  252. func (x *Job) GetNodeUsed() string {
  253. if x != nil {
  254. return x.NodeUsed
  255. }
  256. return ""
  257. }
  258. func (x *Job) GetProcNumUsed() int32 {
  259. if x != nil {
  260. return x.ProcNumUsed
  261. }
  262. return 0
  263. }
  264. func (x *Job) GetJobStartTime() string {
  265. if x != nil {
  266. return x.JobStartTime
  267. }
  268. return ""
  269. }
  270. func (x *Job) GetJobRunTime() string {
  271. if x != nil {
  272. return x.JobRunTime
  273. }
  274. return ""
  275. }
  276. func (x *Job) GetJobManagerId() string {
  277. if x != nil {
  278. return x.JobManagerId
  279. }
  280. return ""
  281. }
  282. func (x *Job) GetJobManagerName() string {
  283. if x != nil {
  284. return x.JobManagerName
  285. }
  286. return ""
  287. }
  288. func (x *Job) GetJobManagerType() string {
  289. if x != nil {
  290. return x.JobManagerType
  291. }
  292. return ""
  293. }
  294. func (x *Job) GetErrorPath() string {
  295. if x != nil {
  296. return x.ErrorPath
  297. }
  298. return ""
  299. }
  300. func (x *Job) GetOutputPath() string {
  301. if x != nil {
  302. return x.OutputPath
  303. }
  304. return ""
  305. }
  306. func (x *Job) GetWorkDir() string {
  307. if x != nil {
  308. return x.WorkDir
  309. }
  310. return ""
  311. }
  312. func (x *Job) GetReason() string {
  313. if x != nil {
  314. return x.Reason
  315. }
  316. return ""
  317. }
  318. func (x *Job) GetAppType() string {
  319. if x != nil {
  320. return x.AppType
  321. }
  322. return ""
  323. }
  324. type ListJobReq struct {
  325. state protoimpl.MessageState
  326. sizeCache protoimpl.SizeCache
  327. unknownFields protoimpl.UnknownFields
  328. }
  329. func (x *ListJobReq) Reset() {
  330. *x = ListJobReq{}
  331. if protoimpl.UnsafeEnabled {
  332. mi := &file_hpcAC_proto_msgTypes[4]
  333. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  334. ms.StoreMessageInfo(mi)
  335. }
  336. }
  337. func (x *ListJobReq) String() string {
  338. return protoimpl.X.MessageStringOf(x)
  339. }
  340. func (*ListJobReq) ProtoMessage() {}
  341. func (x *ListJobReq) ProtoReflect() protoreflect.Message {
  342. mi := &file_hpcAC_proto_msgTypes[4]
  343. if protoimpl.UnsafeEnabled && x != nil {
  344. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  345. if ms.LoadMessageInfo() == nil {
  346. ms.StoreMessageInfo(mi)
  347. }
  348. return ms
  349. }
  350. return mi.MessageOf(x)
  351. }
  352. // Deprecated: Use ListJobReq.ProtoReflect.Descriptor instead.
  353. func (*ListJobReq) Descriptor() ([]byte, []int) {
  354. return file_hpcAC_proto_rawDescGZIP(), []int{4}
  355. }
  356. type ListJobResp struct {
  357. state protoimpl.MessageState
  358. sizeCache protoimpl.SizeCache
  359. unknownFields protoimpl.UnknownFields
  360. Code uint32 `protobuf:"varint,1,opt,name=code,proto3" json:"code,omitempty"` // @gotags: copier:"Code"
  361. Msg string `protobuf:"bytes,2,opt,name=msg,proto3" json:"msg,omitempty"` // @gotags: copier:"Msg"
  362. RecordCount uint32 `protobuf:"varint,3,opt,name=record_count,json=recordCount,proto3" json:"record_count,omitempty"` // @gotags: copier:"RecordCount"
  363. Jobs []*Job `protobuf:"bytes,4,rep,name=jobs,proto3" json:"jobs,omitempty"` // @gotags: copier:"Jobs"
  364. }
  365. func (x *ListJobResp) Reset() {
  366. *x = ListJobResp{}
  367. if protoimpl.UnsafeEnabled {
  368. mi := &file_hpcAC_proto_msgTypes[5]
  369. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  370. ms.StoreMessageInfo(mi)
  371. }
  372. }
  373. func (x *ListJobResp) String() string {
  374. return protoimpl.X.MessageStringOf(x)
  375. }
  376. func (*ListJobResp) ProtoMessage() {}
  377. func (x *ListJobResp) ProtoReflect() protoreflect.Message {
  378. mi := &file_hpcAC_proto_msgTypes[5]
  379. if protoimpl.UnsafeEnabled && x != nil {
  380. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  381. if ms.LoadMessageInfo() == nil {
  382. ms.StoreMessageInfo(mi)
  383. }
  384. return ms
  385. }
  386. return mi.MessageOf(x)
  387. }
  388. // Deprecated: Use ListJobResp.ProtoReflect.Descriptor instead.
  389. func (*ListJobResp) Descriptor() ([]byte, []int) {
  390. return file_hpcAC_proto_rawDescGZIP(), []int{5}
  391. }
  392. func (x *ListJobResp) GetCode() uint32 {
  393. if x != nil {
  394. return x.Code
  395. }
  396. return 0
  397. }
  398. func (x *ListJobResp) GetMsg() string {
  399. if x != nil {
  400. return x.Msg
  401. }
  402. return ""
  403. }
  404. func (x *ListJobResp) GetRecordCount() uint32 {
  405. if x != nil {
  406. return x.RecordCount
  407. }
  408. return 0
  409. }
  410. func (x *ListJobResp) GetJobs() []*Job {
  411. if x != nil {
  412. return x.Jobs
  413. }
  414. return nil
  415. }
  416. // *****************History Job Start************************
  417. type HistoryJob struct {
  418. state protoimpl.MessageState
  419. sizeCache protoimpl.SizeCache
  420. unknownFields protoimpl.UnknownFields
  421. AcctTime string `protobuf:"bytes,1,opt,name=acct_time,json=acctTime,proto3" json:"acct_time,omitempty"` // @gotags: copier:"AcctTime"
  422. AppType string `protobuf:"bytes,2,opt,name=app_type,json=appType,proto3" json:"app_type,omitempty"` // @gotags: copier:"AppType"
  423. JobEndTime string `protobuf:"bytes,3,opt,name=job_end_time,json=jobEndTime,proto3" json:"job_end_time,omitempty"` // @gotags: copier:"End"
  424. JobExecHost string `protobuf:"bytes,4,opt,name=job_exec_host,json=jobExecHost,proto3" json:"job_exec_host,omitempty"` // @gotags: copier:"Nodes"
  425. JobExitStatus int32 `protobuf:"varint,5,opt,name=job_exit_status,json=jobExitStatus,proto3" json:"job_exit_status,omitempty"` // @gotags: copier:"ExitCode"
  426. JobId int64 `protobuf:"varint,6,opt,name=job_id,json=jobId,proto3" json:"job_id,omitempty"` // @gotags: copier:"JobId"
  427. JobName string `protobuf:"bytes,7,opt,name=job_name,json=jobName,proto3" json:"job_name,omitempty"` // @gotags: copier:"JobName"
  428. JobQueueTime string `protobuf:"bytes,8,opt,name=job_queue_time,json=jobQueueTime,proto3" json:"job_queue_time,omitempty"` // @gotags: copier:"JobQueueTime"
  429. JobStartTime string `protobuf:"bytes,9,opt,name=job_start_time,json=jobStartTime,proto3" json:"job_start_time,omitempty"` // @gotags: copier:"Start"
  430. JobState string `protobuf:"bytes,10,opt,name=job_state,json=jobState,proto3" json:"job_state,omitempty"` // @gotags: copier:"State"
  431. JobWalltimeUsed string `protobuf:"bytes,11,opt,name=job_walltime_used,json=jobWalltimeUsed,proto3" json:"job_walltime_used,omitempty"` // @gotags: copier:"JobWalltimeUsed"
  432. JobManagerId int64 `protobuf:"varint,12,opt,name=job_manager_id,json=jobManagerId,proto3" json:"job_manager_id,omitempty"` // @gotags: copier:"JobManagerId"
  433. NodeCt int32 `protobuf:"varint,13,opt,name=node_ct,json=nodeCt,proto3" json:"node_ct,omitempty"` // @gotags: copier:"AllocNodes"
  434. Queue string `protobuf:"bytes,14,opt,name=queue,proto3" json:"queue,omitempty"` // @gotags: copier:"Partition"
  435. UserName string `protobuf:"bytes,15,opt,name=user_name,json=userName,proto3" json:"user_name,omitempty"` // @gotags: copier:"User"
  436. Workdir string `protobuf:"bytes,16,opt,name=workdir,proto3" json:"workdir,omitempty"` // @gotags: copier:"WorkDir"
  437. }
  438. func (x *HistoryJob) Reset() {
  439. *x = HistoryJob{}
  440. if protoimpl.UnsafeEnabled {
  441. mi := &file_hpcAC_proto_msgTypes[6]
  442. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  443. ms.StoreMessageInfo(mi)
  444. }
  445. }
  446. func (x *HistoryJob) String() string {
  447. return protoimpl.X.MessageStringOf(x)
  448. }
  449. func (*HistoryJob) ProtoMessage() {}
  450. func (x *HistoryJob) ProtoReflect() protoreflect.Message {
  451. mi := &file_hpcAC_proto_msgTypes[6]
  452. if protoimpl.UnsafeEnabled && x != nil {
  453. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  454. if ms.LoadMessageInfo() == nil {
  455. ms.StoreMessageInfo(mi)
  456. }
  457. return ms
  458. }
  459. return mi.MessageOf(x)
  460. }
  461. // Deprecated: Use HistoryJob.ProtoReflect.Descriptor instead.
  462. func (*HistoryJob) Descriptor() ([]byte, []int) {
  463. return file_hpcAC_proto_rawDescGZIP(), []int{6}
  464. }
  465. func (x *HistoryJob) GetAcctTime() string {
  466. if x != nil {
  467. return x.AcctTime
  468. }
  469. return ""
  470. }
  471. func (x *HistoryJob) GetAppType() string {
  472. if x != nil {
  473. return x.AppType
  474. }
  475. return ""
  476. }
  477. func (x *HistoryJob) GetJobEndTime() string {
  478. if x != nil {
  479. return x.JobEndTime
  480. }
  481. return ""
  482. }
  483. func (x *HistoryJob) GetJobExecHost() string {
  484. if x != nil {
  485. return x.JobExecHost
  486. }
  487. return ""
  488. }
  489. func (x *HistoryJob) GetJobExitStatus() int32 {
  490. if x != nil {
  491. return x.JobExitStatus
  492. }
  493. return 0
  494. }
  495. func (x *HistoryJob) GetJobId() int64 {
  496. if x != nil {
  497. return x.JobId
  498. }
  499. return 0
  500. }
  501. func (x *HistoryJob) GetJobName() string {
  502. if x != nil {
  503. return x.JobName
  504. }
  505. return ""
  506. }
  507. func (x *HistoryJob) GetJobQueueTime() string {
  508. if x != nil {
  509. return x.JobQueueTime
  510. }
  511. return ""
  512. }
  513. func (x *HistoryJob) GetJobStartTime() string {
  514. if x != nil {
  515. return x.JobStartTime
  516. }
  517. return ""
  518. }
  519. func (x *HistoryJob) GetJobState() string {
  520. if x != nil {
  521. return x.JobState
  522. }
  523. return ""
  524. }
  525. func (x *HistoryJob) GetJobWalltimeUsed() string {
  526. if x != nil {
  527. return x.JobWalltimeUsed
  528. }
  529. return ""
  530. }
  531. func (x *HistoryJob) GetJobManagerId() int64 {
  532. if x != nil {
  533. return x.JobManagerId
  534. }
  535. return 0
  536. }
  537. func (x *HistoryJob) GetNodeCt() int32 {
  538. if x != nil {
  539. return x.NodeCt
  540. }
  541. return 0
  542. }
  543. func (x *HistoryJob) GetQueue() string {
  544. if x != nil {
  545. return x.Queue
  546. }
  547. return ""
  548. }
  549. func (x *HistoryJob) GetUserName() string {
  550. if x != nil {
  551. return x.UserName
  552. }
  553. return ""
  554. }
  555. func (x *HistoryJob) GetWorkdir() string {
  556. if x != nil {
  557. return x.Workdir
  558. }
  559. return ""
  560. }
  561. type ListHistoryJobReq struct {
  562. state protoimpl.MessageState
  563. sizeCache protoimpl.SizeCache
  564. unknownFields protoimpl.UnknownFields
  565. StartTime string `protobuf:"bytes,1,opt,name=startTime,proto3" json:"startTime,omitempty"` // @gotags: copier:"StartTime"
  566. EndTime string `protobuf:"bytes,2,opt,name=endTime,proto3" json:"endTime,omitempty"` // @gotags: copier:"EndTime"
  567. TimeType string `protobuf:"bytes,3,opt,name=timeType,proto3" json:"timeType,omitempty"` // @gotags: copier:"TimeType"
  568. Start int32 `protobuf:"varint,4,opt,name=start,proto3" json:"start,omitempty"` // @gotags: copier:"Start"
  569. Limit int32 `protobuf:"varint,5,opt,name=limit,proto3" json:"limit,omitempty"` // @gotags: copier:"Limit"
  570. IsQueryByQueueTime int32 `protobuf:"varint,6,opt,name=isQueryByQueueTime,proto3" json:"isQueryByQueueTime,omitempty"` // @gotags: copier:"IsQueryByQueueTime"
  571. }
  572. func (x *ListHistoryJobReq) Reset() {
  573. *x = ListHistoryJobReq{}
  574. if protoimpl.UnsafeEnabled {
  575. mi := &file_hpcAC_proto_msgTypes[7]
  576. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  577. ms.StoreMessageInfo(mi)
  578. }
  579. }
  580. func (x *ListHistoryJobReq) String() string {
  581. return protoimpl.X.MessageStringOf(x)
  582. }
  583. func (*ListHistoryJobReq) ProtoMessage() {}
  584. func (x *ListHistoryJobReq) ProtoReflect() protoreflect.Message {
  585. mi := &file_hpcAC_proto_msgTypes[7]
  586. if protoimpl.UnsafeEnabled && x != nil {
  587. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  588. if ms.LoadMessageInfo() == nil {
  589. ms.StoreMessageInfo(mi)
  590. }
  591. return ms
  592. }
  593. return mi.MessageOf(x)
  594. }
  595. // Deprecated: Use ListHistoryJobReq.ProtoReflect.Descriptor instead.
  596. func (*ListHistoryJobReq) Descriptor() ([]byte, []int) {
  597. return file_hpcAC_proto_rawDescGZIP(), []int{7}
  598. }
  599. func (x *ListHistoryJobReq) GetStartTime() string {
  600. if x != nil {
  601. return x.StartTime
  602. }
  603. return ""
  604. }
  605. func (x *ListHistoryJobReq) GetEndTime() string {
  606. if x != nil {
  607. return x.EndTime
  608. }
  609. return ""
  610. }
  611. func (x *ListHistoryJobReq) GetTimeType() string {
  612. if x != nil {
  613. return x.TimeType
  614. }
  615. return ""
  616. }
  617. func (x *ListHistoryJobReq) GetStart() int32 {
  618. if x != nil {
  619. return x.Start
  620. }
  621. return 0
  622. }
  623. func (x *ListHistoryJobReq) GetLimit() int32 {
  624. if x != nil {
  625. return x.Limit
  626. }
  627. return 0
  628. }
  629. func (x *ListHistoryJobReq) GetIsQueryByQueueTime() int32 {
  630. if x != nil {
  631. return x.IsQueryByQueueTime
  632. }
  633. return 0
  634. }
  635. type ListHistoryJobResp struct {
  636. state protoimpl.MessageState
  637. sizeCache protoimpl.SizeCache
  638. unknownFields protoimpl.UnknownFields
  639. Code uint32 `protobuf:"varint,1,opt,name=code,proto3" json:"code,omitempty"` // @gotags: copier:"Code"
  640. Msg string `protobuf:"bytes,2,opt,name=msg,proto3" json:"msg,omitempty"` // @gotags: copier:"Msg"
  641. RecordCount uint32 `protobuf:"varint,3,opt,name=record_count,json=recordCount,proto3" json:"record_count,omitempty"` // @gotags: copier:"RecordCount"
  642. HistoryJobs []*HistoryJob `protobuf:"bytes,4,rep,name=history_jobs,json=historyJobs,proto3" json:"history_jobs,omitempty"` // @gotags: copier:"HistoryJobs"
  643. }
  644. func (x *ListHistoryJobResp) Reset() {
  645. *x = ListHistoryJobResp{}
  646. if protoimpl.UnsafeEnabled {
  647. mi := &file_hpcAC_proto_msgTypes[8]
  648. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  649. ms.StoreMessageInfo(mi)
  650. }
  651. }
  652. func (x *ListHistoryJobResp) String() string {
  653. return protoimpl.X.MessageStringOf(x)
  654. }
  655. func (*ListHistoryJobResp) ProtoMessage() {}
  656. func (x *ListHistoryJobResp) ProtoReflect() protoreflect.Message {
  657. mi := &file_hpcAC_proto_msgTypes[8]
  658. if protoimpl.UnsafeEnabled && x != nil {
  659. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  660. if ms.LoadMessageInfo() == nil {
  661. ms.StoreMessageInfo(mi)
  662. }
  663. return ms
  664. }
  665. return mi.MessageOf(x)
  666. }
  667. // Deprecated: Use ListHistoryJobResp.ProtoReflect.Descriptor instead.
  668. func (*ListHistoryJobResp) Descriptor() ([]byte, []int) {
  669. return file_hpcAC_proto_rawDescGZIP(), []int{8}
  670. }
  671. func (x *ListHistoryJobResp) GetCode() uint32 {
  672. if x != nil {
  673. return x.Code
  674. }
  675. return 0
  676. }
  677. func (x *ListHistoryJobResp) GetMsg() string {
  678. if x != nil {
  679. return x.Msg
  680. }
  681. return ""
  682. }
  683. func (x *ListHistoryJobResp) GetRecordCount() uint32 {
  684. if x != nil {
  685. return x.RecordCount
  686. }
  687. return 0
  688. }
  689. func (x *ListHistoryJobResp) GetHistoryJobs() []*HistoryJob {
  690. if x != nil {
  691. return x.HistoryJobs
  692. }
  693. return nil
  694. }
  695. // *****************Job(Submit) Start************************
  696. type SubmitJobReq struct {
  697. state protoimpl.MessageState
  698. sizeCache protoimpl.SizeCache
  699. unknownFields protoimpl.UnknownFields
  700. Apptype string `protobuf:"bytes,1,opt,name=apptype,proto3" json:"apptype,omitempty"` // @gotags: copier:"Apptype"
  701. Appname string `protobuf:"bytes,2,opt,name=appname,proto3" json:"appname,omitempty"` // @gotags: copier:"Appname"
  702. StrJobManagerID int64 `protobuf:"varint,3,opt,name=strJobManagerID,proto3" json:"strJobManagerID,omitempty"` // @gotags: copier:"StrJobManagerID"
  703. MapAppJobInfo *MapAppJobInfo `protobuf:"bytes,4,opt,name=mapAppJobInfo,proto3" json:"mapAppJobInfo,omitempty"` // @gotags: copier:"MapAppJobInfo"
  704. }
  705. func (x *SubmitJobReq) Reset() {
  706. *x = SubmitJobReq{}
  707. if protoimpl.UnsafeEnabled {
  708. mi := &file_hpcAC_proto_msgTypes[9]
  709. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  710. ms.StoreMessageInfo(mi)
  711. }
  712. }
  713. func (x *SubmitJobReq) String() string {
  714. return protoimpl.X.MessageStringOf(x)
  715. }
  716. func (*SubmitJobReq) ProtoMessage() {}
  717. func (x *SubmitJobReq) ProtoReflect() protoreflect.Message {
  718. mi := &file_hpcAC_proto_msgTypes[9]
  719. if protoimpl.UnsafeEnabled && x != nil {
  720. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  721. if ms.LoadMessageInfo() == nil {
  722. ms.StoreMessageInfo(mi)
  723. }
  724. return ms
  725. }
  726. return mi.MessageOf(x)
  727. }
  728. // Deprecated: Use SubmitJobReq.ProtoReflect.Descriptor instead.
  729. func (*SubmitJobReq) Descriptor() ([]byte, []int) {
  730. return file_hpcAC_proto_rawDescGZIP(), []int{9}
  731. }
  732. func (x *SubmitJobReq) GetApptype() string {
  733. if x != nil {
  734. return x.Apptype
  735. }
  736. return ""
  737. }
  738. func (x *SubmitJobReq) GetAppname() string {
  739. if x != nil {
  740. return x.Appname
  741. }
  742. return ""
  743. }
  744. func (x *SubmitJobReq) GetStrJobManagerID() int64 {
  745. if x != nil {
  746. return x.StrJobManagerID
  747. }
  748. return 0
  749. }
  750. func (x *SubmitJobReq) GetMapAppJobInfo() *MapAppJobInfo {
  751. if x != nil {
  752. return x.MapAppJobInfo
  753. }
  754. return nil
  755. }
  756. type SubmitJobResp struct {
  757. state protoimpl.MessageState
  758. sizeCache protoimpl.SizeCache
  759. unknownFields protoimpl.UnknownFields
  760. Code string `protobuf:"bytes,1,opt,name=Code,proto3" json:"Code,omitempty"` // @gotags: copier:"Code"
  761. Msg string `protobuf:"bytes,2,opt,name=Msg,proto3" json:"Msg,omitempty"` // @gotags: copier:"Msg"
  762. Data string `protobuf:"bytes,3,opt,name=Data,proto3" json:"Data,omitempty"` // @gotags: copier:"Data"
  763. }
  764. func (x *SubmitJobResp) Reset() {
  765. *x = SubmitJobResp{}
  766. if protoimpl.UnsafeEnabled {
  767. mi := &file_hpcAC_proto_msgTypes[10]
  768. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  769. ms.StoreMessageInfo(mi)
  770. }
  771. }
  772. func (x *SubmitJobResp) String() string {
  773. return protoimpl.X.MessageStringOf(x)
  774. }
  775. func (*SubmitJobResp) ProtoMessage() {}
  776. func (x *SubmitJobResp) ProtoReflect() protoreflect.Message {
  777. mi := &file_hpcAC_proto_msgTypes[10]
  778. if protoimpl.UnsafeEnabled && x != nil {
  779. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  780. if ms.LoadMessageInfo() == nil {
  781. ms.StoreMessageInfo(mi)
  782. }
  783. return ms
  784. }
  785. return mi.MessageOf(x)
  786. }
  787. // Deprecated: Use SubmitJobResp.ProtoReflect.Descriptor instead.
  788. func (*SubmitJobResp) Descriptor() ([]byte, []int) {
  789. return file_hpcAC_proto_rawDescGZIP(), []int{10}
  790. }
  791. func (x *SubmitJobResp) GetCode() string {
  792. if x != nil {
  793. return x.Code
  794. }
  795. return ""
  796. }
  797. func (x *SubmitJobResp) GetMsg() string {
  798. if x != nil {
  799. return x.Msg
  800. }
  801. return ""
  802. }
  803. func (x *SubmitJobResp) GetData() string {
  804. if x != nil {
  805. return x.Data
  806. }
  807. return ""
  808. }
  809. type MapAppJobInfo struct {
  810. state protoimpl.MessageState
  811. sizeCache protoimpl.SizeCache
  812. unknownFields protoimpl.UnknownFields
  813. GAP_CMD_FILE string `protobuf:"bytes,1,opt,name=GAP_CMD_FILE,json=GAPCMDFILE,proto3" json:"GAP_CMD_FILE,omitempty"` // @gotags: copier:"GAP_CMD_FILE" //命令行内容
  814. GAP_NNODE string `protobuf:"bytes,2,opt,name=GAP_NNODE,json=GAPNNODE,proto3" json:"GAP_NNODE,omitempty"` // @gotags: copier:"GAP_NNODE" //节点个数(当指定该参数时,GAP_NODE_STRING必须为"")
  815. GAP_NODE_STRING string `protobuf:"bytes,3,opt,name=GAP_NODE_STRING,json=GAPNODESTRING,proto3" json:"GAP_NODE_STRING,omitempty"` // @gotags: copier:"GAP_NODE_STRING" //指定节点(当指定该参数时,GAP_NNODE必须为"")
  816. GAP_SUBMIT_TYPE string `protobuf:"bytes,4,opt,name=GAP_SUBMIT_TYPE,json=GAPSUBMITTYPE,proto3" json:"GAP_SUBMIT_TYPE,omitempty"` // @gotags: copier:"GAP_SUBMIT_TYPE" //cmd(命令行模式)
  817. GAP_JOB_NAME string `protobuf:"bytes,5,opt,name=GAP_JOB_NAME,json=GAPJOBNAME,proto3" json:"GAP_JOB_NAME,omitempty"` // @gotags: copier:"GAP_JOB_NAME" //作业名称
  818. GAP_WORK_DIR string `protobuf:"bytes,6,opt,name=GAP_WORK_DIR,json=GAPWORKDIR,proto3" json:"GAP_WORK_DIR,omitempty"` // @gotags: copier:"GAP_WORK_DIR" //工作路径
  819. GAP_QUEUE string `protobuf:"bytes,7,opt,name=GAP_QUEUE,json=GAPQUEUE,proto3" json:"GAP_QUEUE,omitempty"` // @gotags: copier:"GAP_QUEUE" //队列名称
  820. GAP_NPROC string `protobuf:"bytes,8,opt,name=GAP_NPROC,json=GAPNPROC,proto3" json:"GAP_NPROC,omitempty"` // @gotags: copier:"GAP_NPROC" //总核心数(GAP_NPROC和GAP_PPN选其一填写)
  821. GAP_PPN string `protobuf:"bytes,9,opt,name=GAP_PPN,json=GAPPPN,proto3" json:"GAP_PPN,omitempty"` // @gotags: copier:"GAP_PPN" //CPU核心/节点(GAP_NPROC和GAP_PPN选其一填写)
  822. GAP_NGPU string `protobuf:"bytes,10,opt,name=GAP_NGPU,json=GAPNGPU,proto3" json:"GAP_NGPU,omitempty"` // @gotags: copier:"GAP_NGPU" //GPU卡数/节点
  823. GAP_NDCU string `protobuf:"bytes,11,opt,name=GAP_NDCU,json=GAPNDCU,proto3" json:"GAP_NDCU,omitempty"` // @gotags: copier:"GAP_NDCU" //DCU卡数/节点
  824. GAP_JOB_MEM string `protobuf:"bytes,12,opt,name=GAP_JOB_MEM,json=GAPJOBMEM,proto3" json:"GAP_JOB_MEM,omitempty"` // @gotags: copier:"GAP_JOB_MEM" //每个节点内存值,单位为MB/GB
  825. GAP_WALL_TIME string `protobuf:"bytes,13,opt,name=GAP_WALL_TIME,json=GAPWALLTIME,proto3" json:"GAP_WALL_TIME,omitempty"` // @gotags: copier:"GAP_WALL_TIME" //最大运行时长(HH:MM:ss)
  826. GAP_EXCLUSIVE string `protobuf:"bytes,14,opt,name=GAP_EXCLUSIVE,json=GAPEXCLUSIVE,proto3" json:"GAP_EXCLUSIVE,omitempty"` // @gotags: copier:"GAP_EXCLUSIVE" // 是否独占节点,1为独占,空为非独占
  827. GAP_APPNAME string `protobuf:"bytes,15,opt,name=GAP_APPNAME,json=GAPAPPNAME,proto3" json:"GAP_APPNAME,omitempty"` // @gotags: copier:"GAP_APPNAME" //BASE(基础应用),支持填写具体的应用英文名称
  828. GAP_MULTI_SUB string `protobuf:"bytes,16,opt,name=GAP_MULTI_SUB,json=GAPMULTISUB,proto3" json:"GAP_MULTI_SUB,omitempty"` // @gotags: copier:"GAP_MULTI_SUB" //作业组长度,建议为小于等于50的正整数
  829. GAP_STD_OUT_FILE string `protobuf:"bytes,17,opt,name=GAP_STD_OUT_FILE,json=GAPSTDOUTFILE,proto3" json:"GAP_STD_OUT_FILE,omitempty"` // @gotags: copier:"GAP_STD_OUT_FILE" //工作路径/std.out.%j
  830. GAP_STD_ERR_FILE string `protobuf:"bytes,18,opt,name=GAP_STD_ERR_FILE,json=GAPSTDERRFILE,proto3" json:"GAP_STD_ERR_FILE,omitempty"` // @gotags: copier:"GAP_STD_ERR_FILE" //工作路径/std.err.%j
  831. }
  832. func (x *MapAppJobInfo) Reset() {
  833. *x = MapAppJobInfo{}
  834. if protoimpl.UnsafeEnabled {
  835. mi := &file_hpcAC_proto_msgTypes[11]
  836. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  837. ms.StoreMessageInfo(mi)
  838. }
  839. }
  840. func (x *MapAppJobInfo) String() string {
  841. return protoimpl.X.MessageStringOf(x)
  842. }
  843. func (*MapAppJobInfo) ProtoMessage() {}
  844. func (x *MapAppJobInfo) ProtoReflect() protoreflect.Message {
  845. mi := &file_hpcAC_proto_msgTypes[11]
  846. if protoimpl.UnsafeEnabled && x != nil {
  847. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  848. if ms.LoadMessageInfo() == nil {
  849. ms.StoreMessageInfo(mi)
  850. }
  851. return ms
  852. }
  853. return mi.MessageOf(x)
  854. }
  855. // Deprecated: Use MapAppJobInfo.ProtoReflect.Descriptor instead.
  856. func (*MapAppJobInfo) Descriptor() ([]byte, []int) {
  857. return file_hpcAC_proto_rawDescGZIP(), []int{11}
  858. }
  859. func (x *MapAppJobInfo) GetGAP_CMD_FILE() string {
  860. if x != nil {
  861. return x.GAP_CMD_FILE
  862. }
  863. return ""
  864. }
  865. func (x *MapAppJobInfo) GetGAP_NNODE() string {
  866. if x != nil {
  867. return x.GAP_NNODE
  868. }
  869. return ""
  870. }
  871. func (x *MapAppJobInfo) GetGAP_NODE_STRING() string {
  872. if x != nil {
  873. return x.GAP_NODE_STRING
  874. }
  875. return ""
  876. }
  877. func (x *MapAppJobInfo) GetGAP_SUBMIT_TYPE() string {
  878. if x != nil {
  879. return x.GAP_SUBMIT_TYPE
  880. }
  881. return ""
  882. }
  883. func (x *MapAppJobInfo) GetGAP_JOB_NAME() string {
  884. if x != nil {
  885. return x.GAP_JOB_NAME
  886. }
  887. return ""
  888. }
  889. func (x *MapAppJobInfo) GetGAP_WORK_DIR() string {
  890. if x != nil {
  891. return x.GAP_WORK_DIR
  892. }
  893. return ""
  894. }
  895. func (x *MapAppJobInfo) GetGAP_QUEUE() string {
  896. if x != nil {
  897. return x.GAP_QUEUE
  898. }
  899. return ""
  900. }
  901. func (x *MapAppJobInfo) GetGAP_NPROC() string {
  902. if x != nil {
  903. return x.GAP_NPROC
  904. }
  905. return ""
  906. }
  907. func (x *MapAppJobInfo) GetGAP_PPN() string {
  908. if x != nil {
  909. return x.GAP_PPN
  910. }
  911. return ""
  912. }
  913. func (x *MapAppJobInfo) GetGAP_NGPU() string {
  914. if x != nil {
  915. return x.GAP_NGPU
  916. }
  917. return ""
  918. }
  919. func (x *MapAppJobInfo) GetGAP_NDCU() string {
  920. if x != nil {
  921. return x.GAP_NDCU
  922. }
  923. return ""
  924. }
  925. func (x *MapAppJobInfo) GetGAP_JOB_MEM() string {
  926. if x != nil {
  927. return x.GAP_JOB_MEM
  928. }
  929. return ""
  930. }
  931. func (x *MapAppJobInfo) GetGAP_WALL_TIME() string {
  932. if x != nil {
  933. return x.GAP_WALL_TIME
  934. }
  935. return ""
  936. }
  937. func (x *MapAppJobInfo) GetGAP_EXCLUSIVE() string {
  938. if x != nil {
  939. return x.GAP_EXCLUSIVE
  940. }
  941. return ""
  942. }
  943. func (x *MapAppJobInfo) GetGAP_APPNAME() string {
  944. if x != nil {
  945. return x.GAP_APPNAME
  946. }
  947. return ""
  948. }
  949. func (x *MapAppJobInfo) GetGAP_MULTI_SUB() string {
  950. if x != nil {
  951. return x.GAP_MULTI_SUB
  952. }
  953. return ""
  954. }
  955. func (x *MapAppJobInfo) GetGAP_STD_OUT_FILE() string {
  956. if x != nil {
  957. return x.GAP_STD_OUT_FILE
  958. }
  959. return ""
  960. }
  961. func (x *MapAppJobInfo) GetGAP_STD_ERR_FILE() string {
  962. if x != nil {
  963. return x.GAP_STD_ERR_FILE
  964. }
  965. return ""
  966. }
  967. type FileContentResp struct {
  968. state protoimpl.MessageState
  969. sizeCache protoimpl.SizeCache
  970. unknownFields protoimpl.UnknownFields
  971. Code string `protobuf:"bytes,1,opt,name=code,proto3" json:"code,omitempty"` // @gotags: copier:"Code" //状态码 示例:0
  972. Msg string `protobuf:"bytes,2,opt,name=msg,proto3" json:"msg,omitempty"` // @gotags: copier:"Msg" //信息 示例:success
  973. Data *FileDataResp `protobuf:"bytes,3,opt,name=data,proto3" json:"data,omitempty"` // @gotags: copier:"Data" //对象数据
  974. }
  975. func (x *FileContentResp) Reset() {
  976. *x = FileContentResp{}
  977. if protoimpl.UnsafeEnabled {
  978. mi := &file_hpcAC_proto_msgTypes[12]
  979. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  980. ms.StoreMessageInfo(mi)
  981. }
  982. }
  983. func (x *FileContentResp) String() string {
  984. return protoimpl.X.MessageStringOf(x)
  985. }
  986. func (*FileContentResp) ProtoMessage() {}
  987. func (x *FileContentResp) ProtoReflect() protoreflect.Message {
  988. mi := &file_hpcAC_proto_msgTypes[12]
  989. if protoimpl.UnsafeEnabled && x != nil {
  990. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  991. if ms.LoadMessageInfo() == nil {
  992. ms.StoreMessageInfo(mi)
  993. }
  994. return ms
  995. }
  996. return mi.MessageOf(x)
  997. }
  998. // Deprecated: Use FileContentResp.ProtoReflect.Descriptor instead.
  999. func (*FileContentResp) Descriptor() ([]byte, []int) {
  1000. return file_hpcAC_proto_rawDescGZIP(), []int{12}
  1001. }
  1002. func (x *FileContentResp) GetCode() string {
  1003. if x != nil {
  1004. return x.Code
  1005. }
  1006. return ""
  1007. }
  1008. func (x *FileContentResp) GetMsg() string {
  1009. if x != nil {
  1010. return x.Msg
  1011. }
  1012. return ""
  1013. }
  1014. func (x *FileContentResp) GetData() *FileDataResp {
  1015. if x != nil {
  1016. return x.Data
  1017. }
  1018. return nil
  1019. }
  1020. type FileDataReq struct {
  1021. state protoimpl.MessageState
  1022. sizeCache protoimpl.SizeCache
  1023. unknownFields protoimpl.UnknownFields
  1024. HostName string `protobuf:"bytes,1,opt,name=hostName,proto3" json:"hostName,omitempty"` // @gotags: copier:"HostName" //服务器hostname 示例:127.0.0.1
  1025. DirPath string `protobuf:"bytes,2,opt,name=dirPath,proto3" json:"dirPath,omitempty"` // @gotags: copier:"DirPath" //服务器文件绝对路径 示例:/public/home/test/BASE/STDIN_1210_114429/std.out.22
  1026. TriggerNum int32 `protobuf:"varint,3,opt,name=triggerNum,proto3" json:"triggerNum,omitempty"` // @gotags: copier:"TriggerNum" //翻页次数,第一次打开传1,文件每超过1000行,该参数累加1(类似分页,每页显示1000行数据) 示例:1
  1027. RollDirection string `protobuf:"bytes,4,opt,name=rollDirection,proto3" json:"rollDirection,omitempty"` // @gotags: copier:"RollDirection" //文件查看方向,传参UP,从文件尾向上看;传参DOWN,从文件头向下看 示例:UP
  1028. }
  1029. func (x *FileDataReq) Reset() {
  1030. *x = FileDataReq{}
  1031. if protoimpl.UnsafeEnabled {
  1032. mi := &file_hpcAC_proto_msgTypes[13]
  1033. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1034. ms.StoreMessageInfo(mi)
  1035. }
  1036. }
  1037. func (x *FileDataReq) String() string {
  1038. return protoimpl.X.MessageStringOf(x)
  1039. }
  1040. func (*FileDataReq) ProtoMessage() {}
  1041. func (x *FileDataReq) ProtoReflect() protoreflect.Message {
  1042. mi := &file_hpcAC_proto_msgTypes[13]
  1043. if protoimpl.UnsafeEnabled && x != nil {
  1044. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1045. if ms.LoadMessageInfo() == nil {
  1046. ms.StoreMessageInfo(mi)
  1047. }
  1048. return ms
  1049. }
  1050. return mi.MessageOf(x)
  1051. }
  1052. // Deprecated: Use FileDataReq.ProtoReflect.Descriptor instead.
  1053. func (*FileDataReq) Descriptor() ([]byte, []int) {
  1054. return file_hpcAC_proto_rawDescGZIP(), []int{13}
  1055. }
  1056. func (x *FileDataReq) GetHostName() string {
  1057. if x != nil {
  1058. return x.HostName
  1059. }
  1060. return ""
  1061. }
  1062. func (x *FileDataReq) GetDirPath() string {
  1063. if x != nil {
  1064. return x.DirPath
  1065. }
  1066. return ""
  1067. }
  1068. func (x *FileDataReq) GetTriggerNum() int32 {
  1069. if x != nil {
  1070. return x.TriggerNum
  1071. }
  1072. return 0
  1073. }
  1074. func (x *FileDataReq) GetRollDirection() string {
  1075. if x != nil {
  1076. return x.RollDirection
  1077. }
  1078. return ""
  1079. }
  1080. type FileDataResp struct {
  1081. state protoimpl.MessageState
  1082. sizeCache protoimpl.SizeCache
  1083. unknownFields protoimpl.UnknownFields
  1084. AllLineTotal int32 `protobuf:"varint,1,opt,name=allLineTotal,proto3" json:"allLineTotal,omitempty"` // @gotags: copier:"AllLineTotal" //文件总行数 示例:100
  1085. Success string `protobuf:"bytes,2,opt,name=success,proto3" json:"success,omitempty"` // @gotags: copier:"Success" //请求是否成功 示例:true
  1086. TotalTriggerTimes int32 `protobuf:"varint,3,opt,name=totalTriggerTimes,proto3" json:"totalTriggerTimes,omitempty"` // @gotags: copier:"TotalTriggerTimes" //总次数(类似分页总页数) 示例:1
  1087. Errmsg string `protobuf:"bytes,4,opt,name=errmsg,proto3" json:"errmsg,omitempty"` // @gotags: copier:"Errmsg" //错误信息 示例:false
  1088. Data string `protobuf:"bytes,5,opt,name=data,proto3" json:"data,omitempty"` // @gotags: copier:"Data" //返回的文件内容 示例:start time is: 2021-10-14
  1089. }
  1090. func (x *FileDataResp) Reset() {
  1091. *x = FileDataResp{}
  1092. if protoimpl.UnsafeEnabled {
  1093. mi := &file_hpcAC_proto_msgTypes[14]
  1094. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1095. ms.StoreMessageInfo(mi)
  1096. }
  1097. }
  1098. func (x *FileDataResp) String() string {
  1099. return protoimpl.X.MessageStringOf(x)
  1100. }
  1101. func (*FileDataResp) ProtoMessage() {}
  1102. func (x *FileDataResp) ProtoReflect() protoreflect.Message {
  1103. mi := &file_hpcAC_proto_msgTypes[14]
  1104. if protoimpl.UnsafeEnabled && x != nil {
  1105. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1106. if ms.LoadMessageInfo() == nil {
  1107. ms.StoreMessageInfo(mi)
  1108. }
  1109. return ms
  1110. }
  1111. return mi.MessageOf(x)
  1112. }
  1113. // Deprecated: Use FileDataResp.ProtoReflect.Descriptor instead.
  1114. func (*FileDataResp) Descriptor() ([]byte, []int) {
  1115. return file_hpcAC_proto_rawDescGZIP(), []int{14}
  1116. }
  1117. func (x *FileDataResp) GetAllLineTotal() int32 {
  1118. if x != nil {
  1119. return x.AllLineTotal
  1120. }
  1121. return 0
  1122. }
  1123. func (x *FileDataResp) GetSuccess() string {
  1124. if x != nil {
  1125. return x.Success
  1126. }
  1127. return ""
  1128. }
  1129. func (x *FileDataResp) GetTotalTriggerTimes() int32 {
  1130. if x != nil {
  1131. return x.TotalTriggerTimes
  1132. }
  1133. return 0
  1134. }
  1135. func (x *FileDataResp) GetErrmsg() string {
  1136. if x != nil {
  1137. return x.Errmsg
  1138. }
  1139. return ""
  1140. }
  1141. func (x *FileDataResp) GetData() string {
  1142. if x != nil {
  1143. return x.Data
  1144. }
  1145. return ""
  1146. }
  1147. type QueueReq struct {
  1148. state protoimpl.MessageState
  1149. sizeCache protoimpl.SizeCache
  1150. unknownFields protoimpl.UnknownFields
  1151. User string `protobuf:"bytes,1,opt,name=user,proto3" json:"user,omitempty"` // @gotags: copier:"User" //用户 示例:test
  1152. StrJobManagerID string `protobuf:"bytes,2,opt,name=strJobManagerID,proto3" json:"strJobManagerID,omitempty"` // @gotags: copier:"StrJobManagerID" //调度器ID 示例:1626190154
  1153. }
  1154. func (x *QueueReq) Reset() {
  1155. *x = QueueReq{}
  1156. if protoimpl.UnsafeEnabled {
  1157. mi := &file_hpcAC_proto_msgTypes[15]
  1158. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1159. ms.StoreMessageInfo(mi)
  1160. }
  1161. }
  1162. func (x *QueueReq) String() string {
  1163. return protoimpl.X.MessageStringOf(x)
  1164. }
  1165. func (*QueueReq) ProtoMessage() {}
  1166. func (x *QueueReq) ProtoReflect() protoreflect.Message {
  1167. mi := &file_hpcAC_proto_msgTypes[15]
  1168. if protoimpl.UnsafeEnabled && x != nil {
  1169. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1170. if ms.LoadMessageInfo() == nil {
  1171. ms.StoreMessageInfo(mi)
  1172. }
  1173. return ms
  1174. }
  1175. return mi.MessageOf(x)
  1176. }
  1177. // Deprecated: Use QueueReq.ProtoReflect.Descriptor instead.
  1178. func (*QueueReq) Descriptor() ([]byte, []int) {
  1179. return file_hpcAC_proto_rawDescGZIP(), []int{15}
  1180. }
  1181. func (x *QueueReq) GetUser() string {
  1182. if x != nil {
  1183. return x.User
  1184. }
  1185. return ""
  1186. }
  1187. func (x *QueueReq) GetStrJobManagerID() string {
  1188. if x != nil {
  1189. return x.StrJobManagerID
  1190. }
  1191. return ""
  1192. }
  1193. type QueueResp struct {
  1194. state protoimpl.MessageState
  1195. sizeCache protoimpl.SizeCache
  1196. unknownFields protoimpl.UnknownFields
  1197. Code string `protobuf:"bytes,1,opt,name=code,proto3" json:"code,omitempty"` // @gotags: copier:"Code" //状态码 示例:0
  1198. Msg string `protobuf:"bytes,2,opt,name=msg,proto3" json:"msg,omitempty"` // @gotags: copier:"Msg" //信息 示例:success
  1199. Data []*QueueData `protobuf:"bytes,3,rep,name=data,proto3" json:"data,omitempty"` // @gotags: copier:"Data" //队列数组
  1200. }
  1201. func (x *QueueResp) Reset() {
  1202. *x = QueueResp{}
  1203. if protoimpl.UnsafeEnabled {
  1204. mi := &file_hpcAC_proto_msgTypes[16]
  1205. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1206. ms.StoreMessageInfo(mi)
  1207. }
  1208. }
  1209. func (x *QueueResp) String() string {
  1210. return protoimpl.X.MessageStringOf(x)
  1211. }
  1212. func (*QueueResp) ProtoMessage() {}
  1213. func (x *QueueResp) ProtoReflect() protoreflect.Message {
  1214. mi := &file_hpcAC_proto_msgTypes[16]
  1215. if protoimpl.UnsafeEnabled && x != nil {
  1216. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1217. if ms.LoadMessageInfo() == nil {
  1218. ms.StoreMessageInfo(mi)
  1219. }
  1220. return ms
  1221. }
  1222. return mi.MessageOf(x)
  1223. }
  1224. // Deprecated: Use QueueResp.ProtoReflect.Descriptor instead.
  1225. func (*QueueResp) Descriptor() ([]byte, []int) {
  1226. return file_hpcAC_proto_rawDescGZIP(), []int{16}
  1227. }
  1228. func (x *QueueResp) GetCode() string {
  1229. if x != nil {
  1230. return x.Code
  1231. }
  1232. return ""
  1233. }
  1234. func (x *QueueResp) GetMsg() string {
  1235. if x != nil {
  1236. return x.Msg
  1237. }
  1238. return ""
  1239. }
  1240. func (x *QueueResp) GetData() []*QueueData {
  1241. if x != nil {
  1242. return x.Data
  1243. }
  1244. return nil
  1245. }
  1246. type QueueData struct {
  1247. state protoimpl.MessageState
  1248. sizeCache protoimpl.SizeCache
  1249. unknownFields protoimpl.UnknownFields
  1250. AclHosts string `protobuf:"bytes,1,opt,name=aclHosts,proto3" json:"aclHosts,omitempty"` // @gotags: copier:"aclHosts" //可用节点,多个节点用逗号隔开 示例:node1,node2
  1251. Id string `protobuf:"bytes,2,opt,name=id,proto3" json:"id,omitempty"` // @gotags: copier:"id" //队列名称 示例:debug
  1252. Text string `protobuf:"bytes,3,opt,name=text,proto3" json:"text,omitempty"` // @gotags: copier:"text" //队列名称 示例:debug
  1253. QueNodes string `protobuf:"bytes,4,opt,name=queNodes,proto3" json:"queNodes,omitempty"` // @gotags: copier:"queNodes" //队列节点总数 示例:3
  1254. QueMinNodect string `protobuf:"bytes,5,opt,name=queMinNodect,proto3" json:"queMinNodect,omitempty"` // @gotags: copier:"queMinNodect" //队列最小节点数 示例:1
  1255. QueMaxNgpus string `protobuf:"bytes,6,opt,name=queMaxNgpus,proto3" json:"queMaxNgpus,omitempty"` // @gotags: copier:"queMaxNgpus" //队列最大GPU卡数 示例:0
  1256. QueMaxPPN string `protobuf:"bytes,7,opt,name=queMaxPPN,proto3" json:"queMaxPPN,omitempty"` // @gotags: copier:"queMaxPPN" //使用该队列作业最大CPU核心数 示例:4
  1257. QueChargeRate string `protobuf:"bytes,8,opt,name=queChargeRate,proto3" json:"queChargeRate,omitempty"` // @gotags: copier:"queChargeRate" //费率 示例:1
  1258. QueMaxNcpus string `protobuf:"bytes,9,opt,name=queMaxNcpus,proto3" json:"queMaxNcpus,omitempty"` // @gotags: copier:"queMaxNcpus" //用户最大可用核心数 示例:4
  1259. QueMaxNdcus string `protobuf:"bytes,10,opt,name=queMaxNdcus,proto3" json:"queMaxNdcus,omitempty"` // @gotags: copier:"queMaxNdcus" //队列总DCU卡数 示例:0
  1260. QueueName string `protobuf:"bytes,11,opt,name=queueName,proto3" json:"queueName,omitempty"` // @gotags: copier:"queueName" //队列名称 示例:debug
  1261. QueMinNcpus string `protobuf:"bytes,12,opt,name=queMinNcpus,proto3" json:"queMinNcpus,omitempty"` // @gotags: copier:"queMinNcpus" //队列最小CPU核数 示例:1
  1262. QueFreeNodes string `protobuf:"bytes,13,opt,name=queFreeNodes,proto3" json:"queFreeNodes,omitempty"` // @gotags: copier:"queFreeNodes" //队列空闲节点数 示例:1
  1263. QueMaxNodect string `protobuf:"bytes,14,opt,name=queMaxNodect,proto3" json:"queMaxNodect,omitempty"` // @gotags: copier:"queMaxNodect" //队列作业最大节点数 示例:1
  1264. QueMaxGpuPN string `protobuf:"bytes,15,opt,name=queMaxGpuPN,proto3" json:"queMaxGpuPN,omitempty"` // @gotags: copier:"queMaxGpuPN" //队列单作业最大GPU卡数 示例:0
  1265. QueMaxWalltime string `protobuf:"bytes,16,opt,name=queMaxWalltime,proto3" json:"queMaxWalltime,omitempty"` // @gotags: copier:"queMaxWalltime" //队列最大运行时间 示例:unlimit
  1266. QueMaxDcuPN string `protobuf:"bytes,17,opt,name=queMaxDcuPN,proto3" json:"queMaxDcuPN,omitempty"` // @gotags: copier:"queMaxDcuPN" //队列单作业最大DCU卡数 示例:0
  1267. }
  1268. func (x *QueueData) Reset() {
  1269. *x = QueueData{}
  1270. if protoimpl.UnsafeEnabled {
  1271. mi := &file_hpcAC_proto_msgTypes[17]
  1272. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1273. ms.StoreMessageInfo(mi)
  1274. }
  1275. }
  1276. func (x *QueueData) String() string {
  1277. return protoimpl.X.MessageStringOf(x)
  1278. }
  1279. func (*QueueData) ProtoMessage() {}
  1280. func (x *QueueData) ProtoReflect() protoreflect.Message {
  1281. mi := &file_hpcAC_proto_msgTypes[17]
  1282. if protoimpl.UnsafeEnabled && x != nil {
  1283. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1284. if ms.LoadMessageInfo() == nil {
  1285. ms.StoreMessageInfo(mi)
  1286. }
  1287. return ms
  1288. }
  1289. return mi.MessageOf(x)
  1290. }
  1291. // Deprecated: Use QueueData.ProtoReflect.Descriptor instead.
  1292. func (*QueueData) Descriptor() ([]byte, []int) {
  1293. return file_hpcAC_proto_rawDescGZIP(), []int{17}
  1294. }
  1295. func (x *QueueData) GetAclHosts() string {
  1296. if x != nil {
  1297. return x.AclHosts
  1298. }
  1299. return ""
  1300. }
  1301. func (x *QueueData) GetId() string {
  1302. if x != nil {
  1303. return x.Id
  1304. }
  1305. return ""
  1306. }
  1307. func (x *QueueData) GetText() string {
  1308. if x != nil {
  1309. return x.Text
  1310. }
  1311. return ""
  1312. }
  1313. func (x *QueueData) GetQueNodes() string {
  1314. if x != nil {
  1315. return x.QueNodes
  1316. }
  1317. return ""
  1318. }
  1319. func (x *QueueData) GetQueMinNodect() string {
  1320. if x != nil {
  1321. return x.QueMinNodect
  1322. }
  1323. return ""
  1324. }
  1325. func (x *QueueData) GetQueMaxNgpus() string {
  1326. if x != nil {
  1327. return x.QueMaxNgpus
  1328. }
  1329. return ""
  1330. }
  1331. func (x *QueueData) GetQueMaxPPN() string {
  1332. if x != nil {
  1333. return x.QueMaxPPN
  1334. }
  1335. return ""
  1336. }
  1337. func (x *QueueData) GetQueChargeRate() string {
  1338. if x != nil {
  1339. return x.QueChargeRate
  1340. }
  1341. return ""
  1342. }
  1343. func (x *QueueData) GetQueMaxNcpus() string {
  1344. if x != nil {
  1345. return x.QueMaxNcpus
  1346. }
  1347. return ""
  1348. }
  1349. func (x *QueueData) GetQueMaxNdcus() string {
  1350. if x != nil {
  1351. return x.QueMaxNdcus
  1352. }
  1353. return ""
  1354. }
  1355. func (x *QueueData) GetQueueName() string {
  1356. if x != nil {
  1357. return x.QueueName
  1358. }
  1359. return ""
  1360. }
  1361. func (x *QueueData) GetQueMinNcpus() string {
  1362. if x != nil {
  1363. return x.QueMinNcpus
  1364. }
  1365. return ""
  1366. }
  1367. func (x *QueueData) GetQueFreeNodes() string {
  1368. if x != nil {
  1369. return x.QueFreeNodes
  1370. }
  1371. return ""
  1372. }
  1373. func (x *QueueData) GetQueMaxNodect() string {
  1374. if x != nil {
  1375. return x.QueMaxNodect
  1376. }
  1377. return ""
  1378. }
  1379. func (x *QueueData) GetQueMaxGpuPN() string {
  1380. if x != nil {
  1381. return x.QueMaxGpuPN
  1382. }
  1383. return ""
  1384. }
  1385. func (x *QueueData) GetQueMaxWalltime() string {
  1386. if x != nil {
  1387. return x.QueMaxWalltime
  1388. }
  1389. return ""
  1390. }
  1391. func (x *QueueData) GetQueMaxDcuPN() string {
  1392. if x != nil {
  1393. return x.QueMaxDcuPN
  1394. }
  1395. return ""
  1396. }
  1397. type QueueDetailsResp struct {
  1398. state protoimpl.MessageState
  1399. sizeCache protoimpl.SizeCache
  1400. unknownFields protoimpl.UnknownFields
  1401. Code string `protobuf:"bytes,1,opt,name=code,proto3" json:"code,omitempty"` // @gotags: copier:"Code" //状态码 示例:0
  1402. Msg string `protobuf:"bytes,2,opt,name=msg,proto3" json:"msg,omitempty"` // @gotags: copier:"Msg" //信息 示例:success
  1403. Data []*QueueDetailsData `protobuf:"bytes,3,rep,name=data,proto3" json:"data,omitempty"` // @gotags: copier:"Data" //队列数组
  1404. }
  1405. func (x *QueueDetailsResp) Reset() {
  1406. *x = QueueDetailsResp{}
  1407. if protoimpl.UnsafeEnabled {
  1408. mi := &file_hpcAC_proto_msgTypes[18]
  1409. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1410. ms.StoreMessageInfo(mi)
  1411. }
  1412. }
  1413. func (x *QueueDetailsResp) String() string {
  1414. return protoimpl.X.MessageStringOf(x)
  1415. }
  1416. func (*QueueDetailsResp) ProtoMessage() {}
  1417. func (x *QueueDetailsResp) ProtoReflect() protoreflect.Message {
  1418. mi := &file_hpcAC_proto_msgTypes[18]
  1419. if protoimpl.UnsafeEnabled && x != nil {
  1420. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1421. if ms.LoadMessageInfo() == nil {
  1422. ms.StoreMessageInfo(mi)
  1423. }
  1424. return ms
  1425. }
  1426. return mi.MessageOf(x)
  1427. }
  1428. // Deprecated: Use QueueDetailsResp.ProtoReflect.Descriptor instead.
  1429. func (*QueueDetailsResp) Descriptor() ([]byte, []int) {
  1430. return file_hpcAC_proto_rawDescGZIP(), []int{18}
  1431. }
  1432. func (x *QueueDetailsResp) GetCode() string {
  1433. if x != nil {
  1434. return x.Code
  1435. }
  1436. return ""
  1437. }
  1438. func (x *QueueDetailsResp) GetMsg() string {
  1439. if x != nil {
  1440. return x.Msg
  1441. }
  1442. return ""
  1443. }
  1444. func (x *QueueDetailsResp) GetData() []*QueueDetailsData {
  1445. if x != nil {
  1446. return x.Data
  1447. }
  1448. return nil
  1449. }
  1450. type QueueDetailsData struct {
  1451. state protoimpl.MessageState
  1452. sizeCache protoimpl.SizeCache
  1453. unknownFields protoimpl.UnknownFields
  1454. QueNodes int32 `protobuf:"varint,1,opt,name=queNodes,proto3" json:"queNodes,omitempty"` // @gotags: copier:"queNodes" //队列节点总数 示例:3
  1455. QueMinNodect int32 `protobuf:"varint,2,opt,name=queMinNodect,proto3" json:"queMinNodect,omitempty"` // @gotags: copier:"queMinNodect" //队列最小节点数 示例:1
  1456. QueMaxNgpus int32 `protobuf:"varint,3,opt,name=queMaxNgpus,proto3" json:"queMaxNgpus,omitempty"` // @gotags: copier:"queMaxNgpus" //队列最大GPU卡数 示例:0
  1457. QueMaxPPN int32 `protobuf:"varint,4,opt,name=queMaxPPN,proto3" json:"queMaxPPN,omitempty"` // @gotags: copier:"queMaxPPN" //使用该队列作业最大CPU核心数 示例:4
  1458. QueChargeRate float32 `protobuf:"fixed32,5,opt,name=queChargeRate,proto3" json:"queChargeRate,omitempty"` // @gotags: copier:"queChargeRate" //费率 示例:1
  1459. QueMaxNcpus int32 `protobuf:"varint,6,opt,name=queMaxNcpus,proto3" json:"queMaxNcpus,omitempty"` // @gotags: copier:"queMaxNcpus" //用户最大可用核心数 示例:4
  1460. QueMaxNdcus int32 `protobuf:"varint,7,opt,name=queMaxNdcus,proto3" json:"queMaxNdcus,omitempty"` // @gotags: copier:"queMaxNdcus" //队列总DCU卡数 示例:0
  1461. QueueName string `protobuf:"bytes,8,opt,name=queueName,proto3" json:"queueName,omitempty"` // @gotags: copier:"queueName" //队列名称 示例:debug
  1462. QueMinNcpus int32 `protobuf:"varint,9,opt,name=queMinNcpus,proto3" json:"queMinNcpus,omitempty"` // @gotags: copier:"queMinNcpus" //队列最小CPU核数 示例:1
  1463. QueFreeNodes int32 `protobuf:"varint,10,opt,name=queFreeNodes,proto3" json:"queFreeNodes,omitempty"` // @gotags: copier:"queFreeNodes" //队列空闲节点数 示例:1
  1464. QueMaxNodect int32 `protobuf:"varint,11,opt,name=queMaxNodect,proto3" json:"queMaxNodect,omitempty"` // @gotags: copier:"queMaxNodect" //队列作业最大节点数 示例:1
  1465. QueMaxGpuPN int32 `protobuf:"varint,12,opt,name=queMaxGpuPN,proto3" json:"queMaxGpuPN,omitempty"` // @gotags: copier:"queMaxGpuPN" //队列单作业最大GPU卡数 示例:0
  1466. QueMaxWalltime int32 `protobuf:"varint,13,opt,name=queMaxWalltime,proto3" json:"queMaxWalltime,omitempty"` // @gotags: copier:"queMaxWalltime" //队列最大运行时间 示例:unlimit
  1467. QueMaxDcuPN int32 `protobuf:"varint,14,opt,name=queMaxDcuPN,proto3" json:"queMaxDcuPN,omitempty"` // @gotags: copier:"queMaxDcuPN" //队列单作业最大DCU卡数 示例:0
  1468. }
  1469. func (x *QueueDetailsData) Reset() {
  1470. *x = QueueDetailsData{}
  1471. if protoimpl.UnsafeEnabled {
  1472. mi := &file_hpcAC_proto_msgTypes[19]
  1473. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1474. ms.StoreMessageInfo(mi)
  1475. }
  1476. }
  1477. func (x *QueueDetailsData) String() string {
  1478. return protoimpl.X.MessageStringOf(x)
  1479. }
  1480. func (*QueueDetailsData) ProtoMessage() {}
  1481. func (x *QueueDetailsData) ProtoReflect() protoreflect.Message {
  1482. mi := &file_hpcAC_proto_msgTypes[19]
  1483. if protoimpl.UnsafeEnabled && x != nil {
  1484. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1485. if ms.LoadMessageInfo() == nil {
  1486. ms.StoreMessageInfo(mi)
  1487. }
  1488. return ms
  1489. }
  1490. return mi.MessageOf(x)
  1491. }
  1492. // Deprecated: Use QueueDetailsData.ProtoReflect.Descriptor instead.
  1493. func (*QueueDetailsData) Descriptor() ([]byte, []int) {
  1494. return file_hpcAC_proto_rawDescGZIP(), []int{19}
  1495. }
  1496. func (x *QueueDetailsData) GetQueNodes() int32 {
  1497. if x != nil {
  1498. return x.QueNodes
  1499. }
  1500. return 0
  1501. }
  1502. func (x *QueueDetailsData) GetQueMinNodect() int32 {
  1503. if x != nil {
  1504. return x.QueMinNodect
  1505. }
  1506. return 0
  1507. }
  1508. func (x *QueueDetailsData) GetQueMaxNgpus() int32 {
  1509. if x != nil {
  1510. return x.QueMaxNgpus
  1511. }
  1512. return 0
  1513. }
  1514. func (x *QueueDetailsData) GetQueMaxPPN() int32 {
  1515. if x != nil {
  1516. return x.QueMaxPPN
  1517. }
  1518. return 0
  1519. }
  1520. func (x *QueueDetailsData) GetQueChargeRate() float32 {
  1521. if x != nil {
  1522. return x.QueChargeRate
  1523. }
  1524. return 0
  1525. }
  1526. func (x *QueueDetailsData) GetQueMaxNcpus() int32 {
  1527. if x != nil {
  1528. return x.QueMaxNcpus
  1529. }
  1530. return 0
  1531. }
  1532. func (x *QueueDetailsData) GetQueMaxNdcus() int32 {
  1533. if x != nil {
  1534. return x.QueMaxNdcus
  1535. }
  1536. return 0
  1537. }
  1538. func (x *QueueDetailsData) GetQueueName() string {
  1539. if x != nil {
  1540. return x.QueueName
  1541. }
  1542. return ""
  1543. }
  1544. func (x *QueueDetailsData) GetQueMinNcpus() int32 {
  1545. if x != nil {
  1546. return x.QueMinNcpus
  1547. }
  1548. return 0
  1549. }
  1550. func (x *QueueDetailsData) GetQueFreeNodes() int32 {
  1551. if x != nil {
  1552. return x.QueFreeNodes
  1553. }
  1554. return 0
  1555. }
  1556. func (x *QueueDetailsData) GetQueMaxNodect() int32 {
  1557. if x != nil {
  1558. return x.QueMaxNodect
  1559. }
  1560. return 0
  1561. }
  1562. func (x *QueueDetailsData) GetQueMaxGpuPN() int32 {
  1563. if x != nil {
  1564. return x.QueMaxGpuPN
  1565. }
  1566. return 0
  1567. }
  1568. func (x *QueueDetailsData) GetQueMaxWalltime() int32 {
  1569. if x != nil {
  1570. return x.QueMaxWalltime
  1571. }
  1572. return 0
  1573. }
  1574. func (x *QueueDetailsData) GetQueMaxDcuPN() int32 {
  1575. if x != nil {
  1576. return x.QueMaxDcuPN
  1577. }
  1578. return 0
  1579. }
  1580. type UserQuotasLimitResp struct {
  1581. state protoimpl.MessageState
  1582. sizeCache protoimpl.SizeCache
  1583. unknownFields protoimpl.UnknownFields
  1584. Code string `protobuf:"bytes,1,opt,name=code,proto3" json:"code,omitempty"` // @gotags: copier:"Code" //状态码 示例:0
  1585. Msg string `protobuf:"bytes,2,opt,name=msg,proto3" json:"msg,omitempty"` // @gotags: copier:"Msg" //信息 示例:success
  1586. Data *UserQuotasLimitData `protobuf:"bytes,3,opt,name=data,proto3" json:"data,omitempty"` // @gotags: copier:"Data" //队列数组
  1587. }
  1588. func (x *UserQuotasLimitResp) Reset() {
  1589. *x = UserQuotasLimitResp{}
  1590. if protoimpl.UnsafeEnabled {
  1591. mi := &file_hpcAC_proto_msgTypes[20]
  1592. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1593. ms.StoreMessageInfo(mi)
  1594. }
  1595. }
  1596. func (x *UserQuotasLimitResp) String() string {
  1597. return protoimpl.X.MessageStringOf(x)
  1598. }
  1599. func (*UserQuotasLimitResp) ProtoMessage() {}
  1600. func (x *UserQuotasLimitResp) ProtoReflect() protoreflect.Message {
  1601. mi := &file_hpcAC_proto_msgTypes[20]
  1602. if protoimpl.UnsafeEnabled && x != nil {
  1603. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1604. if ms.LoadMessageInfo() == nil {
  1605. ms.StoreMessageInfo(mi)
  1606. }
  1607. return ms
  1608. }
  1609. return mi.MessageOf(x)
  1610. }
  1611. // Deprecated: Use UserQuotasLimitResp.ProtoReflect.Descriptor instead.
  1612. func (*UserQuotasLimitResp) Descriptor() ([]byte, []int) {
  1613. return file_hpcAC_proto_rawDescGZIP(), []int{20}
  1614. }
  1615. func (x *UserQuotasLimitResp) GetCode() string {
  1616. if x != nil {
  1617. return x.Code
  1618. }
  1619. return ""
  1620. }
  1621. func (x *UserQuotasLimitResp) GetMsg() string {
  1622. if x != nil {
  1623. return x.Msg
  1624. }
  1625. return ""
  1626. }
  1627. func (x *UserQuotasLimitResp) GetData() *UserQuotasLimitData {
  1628. if x != nil {
  1629. return x.Data
  1630. }
  1631. return nil
  1632. }
  1633. type UserQuotasLimitData struct {
  1634. state protoimpl.MessageState
  1635. sizeCache protoimpl.SizeCache
  1636. unknownFields protoimpl.UnknownFields
  1637. UserName string `protobuf:"bytes,1,opt,name=userName,proto3" json:"userName,omitempty"` // @gotags: copier:"userName" //用户名称
  1638. AccountName string `protobuf:"bytes,2,opt,name=accountName,proto3" json:"accountName,omitempty"` // @gotags: copier:"accountName" //用户所关联的默认的账号名
  1639. UserMaxCpu int64 `protobuf:"varint,3,opt,name=userMaxCpu,proto3" json:"userMaxCpu,omitempty"` // @gotags: copier:"userMaxCpu" //用户最大CPU核数,单位:个,如果未做限制,则值为-1
  1640. UserMaxDcu int64 `protobuf:"varint,4,opt,name=userMaxDcu,proto3" json:"userMaxDcu,omitempty"` // @gotags: copier:"userMaxDcu" //用户最大DCU卡数,单位:个,如果未做限制,则值为-1
  1641. UserMaxGpu int64 `protobuf:"varint,5,opt,name=userMaxGpu,proto3" json:"userMaxGpu,omitempty"` // @gotags: copier:"userMaxGpu" //用户最大GPU卡数,单位:个,如果未做限制,则值为-1
  1642. UserMaxMlu int64 `protobuf:"varint,6,opt,name=userMaxMlu,proto3" json:"userMaxMlu,omitempty"` // @gotags: copier:"userMaxMlu" //用户最大MLU卡数,单位:个,如果未做限制,则值为-1
  1643. UserMaxMem int64 `protobuf:"varint,7,opt,name=userMaxMem,proto3" json:"userMaxMem,omitempty"` // @gotags: copier:"userMaxMem" //用户最大内存,单位:m,如果未做限制,则值为-1
  1644. UserMaxNode int64 `protobuf:"varint,8,opt,name=userMaxNode,proto3" json:"userMaxNode,omitempty"` // @gotags: copier:"userMaxNode" //用户最大节点数,单位:个,如果未做限制,则值为-1
  1645. UserMaxSubmitJob int64 `protobuf:"varint,9,opt,name=userMaxSubmitJob,proto3" json:"userMaxSubmitJob,omitempty"` // @gotags: copier:"userMaxSubmitJob" //用户最大提交作业数,单位:个,如果未做限制,则值为-1
  1646. UserMaxRunJob int64 `protobuf:"varint,10,opt,name=userMaxRunJob,proto3" json:"userMaxRunJob,omitempty"` // @gotags: copier:"userMaxRunJob" //用户最大运行作业数,单位:个,如果未做限制,则值为-1
  1647. AccountMaxCpu int64 `protobuf:"varint,11,opt,name=accountMaxCpu,proto3" json:"accountMaxCpu,omitempty"` // @gotags: copier:"accountMaxCpu" //账户最大CPU核数,单位:个,如果未做限制,则值为-1
  1648. AccountMaxDcu int64 `protobuf:"varint,12,opt,name=accountMaxDcu,proto3" json:"accountMaxDcu,omitempty"` // @gotags: copier:"accountMaxDcu" //账户最大DCU卡数,单位:个,如果未做限制,则值为-1
  1649. AccountMaxGpu int64 `protobuf:"varint,13,opt,name=accountMaxGpu,proto3" json:"accountMaxGpu,omitempty"` // @gotags: copier:"accountMaxGpu" //账户最大GPU卡数,单位:个,如果未做限制,则值为-1
  1650. AccountMaxMlu int64 `protobuf:"varint,14,opt,name=accountMaxMlu,proto3" json:"accountMaxMlu,omitempty"` // @gotags: copier:"accountMaxMlu" //账户最大MLU卡数,单位:个,如果未做限制,则值为-1
  1651. AccountMaxMem int64 `protobuf:"varint,15,opt,name=accountMaxMem,proto3" json:"accountMaxMem,omitempty"` // @gotags: copier:"accountMaxMem" //账户最大内存,单位:m,如果未做限制,则值为-1
  1652. AccountMaxNode int64 `protobuf:"varint,16,opt,name=accountMaxNode,proto3" json:"accountMaxNode,omitempty"` // @gotags: copier:"accountMaxNode" //账户最大节点数,单位:个,如果未做限制,则值为-1
  1653. AccountMaxSubmitJob int64 `protobuf:"varint,17,opt,name=accountMaxSubmitJob,proto3" json:"accountMaxSubmitJob,omitempty"` // @gotags: copier:"accountMaxSubmitJob" //账户最大提交作业数,单位:个,如果未做限制,则值为-1
  1654. AccountMaxRunJob int64 `protobuf:"varint,18,opt,name=accountMaxRunJob,proto3" json:"accountMaxRunJob,omitempty"` // @gotags: copier:"accountMaxRunJob" //账户最大运行作业数,单位:个,如果未做限制,则值为-1
  1655. UserMinCpu int64 `protobuf:"varint,19,opt,name=userMinCpu,proto3" json:"userMinCpu,omitempty"` // @gotags: copier:"userMinCpu" //用户最小CPU核数,单位:个,如果未做限制,则值为-1
  1656. UserMinNode int64 `protobuf:"varint,20,opt,name=userMinNode,proto3" json:"userMinNode,omitempty"` // @gotags: copier:"userMinNode" //用户最小节点数,单位:个,如果未做限制,则值为-1
  1657. MaxWallTime int64 `protobuf:"varint,21,opt,name=maxWallTime,proto3" json:"maxWallTime,omitempty"` // @gotags: copier:"maxWallTime" //用户关联的glod账号的机时,机时单位:s,如果未做限制,则值为-1
  1658. }
  1659. func (x *UserQuotasLimitData) Reset() {
  1660. *x = UserQuotasLimitData{}
  1661. if protoimpl.UnsafeEnabled {
  1662. mi := &file_hpcAC_proto_msgTypes[21]
  1663. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1664. ms.StoreMessageInfo(mi)
  1665. }
  1666. }
  1667. func (x *UserQuotasLimitData) String() string {
  1668. return protoimpl.X.MessageStringOf(x)
  1669. }
  1670. func (*UserQuotasLimitData) ProtoMessage() {}
  1671. func (x *UserQuotasLimitData) ProtoReflect() protoreflect.Message {
  1672. mi := &file_hpcAC_proto_msgTypes[21]
  1673. if protoimpl.UnsafeEnabled && x != nil {
  1674. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1675. if ms.LoadMessageInfo() == nil {
  1676. ms.StoreMessageInfo(mi)
  1677. }
  1678. return ms
  1679. }
  1680. return mi.MessageOf(x)
  1681. }
  1682. // Deprecated: Use UserQuotasLimitData.ProtoReflect.Descriptor instead.
  1683. func (*UserQuotasLimitData) Descriptor() ([]byte, []int) {
  1684. return file_hpcAC_proto_rawDescGZIP(), []int{21}
  1685. }
  1686. func (x *UserQuotasLimitData) GetUserName() string {
  1687. if x != nil {
  1688. return x.UserName
  1689. }
  1690. return ""
  1691. }
  1692. func (x *UserQuotasLimitData) GetAccountName() string {
  1693. if x != nil {
  1694. return x.AccountName
  1695. }
  1696. return ""
  1697. }
  1698. func (x *UserQuotasLimitData) GetUserMaxCpu() int64 {
  1699. if x != nil {
  1700. return x.UserMaxCpu
  1701. }
  1702. return 0
  1703. }
  1704. func (x *UserQuotasLimitData) GetUserMaxDcu() int64 {
  1705. if x != nil {
  1706. return x.UserMaxDcu
  1707. }
  1708. return 0
  1709. }
  1710. func (x *UserQuotasLimitData) GetUserMaxGpu() int64 {
  1711. if x != nil {
  1712. return x.UserMaxGpu
  1713. }
  1714. return 0
  1715. }
  1716. func (x *UserQuotasLimitData) GetUserMaxMlu() int64 {
  1717. if x != nil {
  1718. return x.UserMaxMlu
  1719. }
  1720. return 0
  1721. }
  1722. func (x *UserQuotasLimitData) GetUserMaxMem() int64 {
  1723. if x != nil {
  1724. return x.UserMaxMem
  1725. }
  1726. return 0
  1727. }
  1728. func (x *UserQuotasLimitData) GetUserMaxNode() int64 {
  1729. if x != nil {
  1730. return x.UserMaxNode
  1731. }
  1732. return 0
  1733. }
  1734. func (x *UserQuotasLimitData) GetUserMaxSubmitJob() int64 {
  1735. if x != nil {
  1736. return x.UserMaxSubmitJob
  1737. }
  1738. return 0
  1739. }
  1740. func (x *UserQuotasLimitData) GetUserMaxRunJob() int64 {
  1741. if x != nil {
  1742. return x.UserMaxRunJob
  1743. }
  1744. return 0
  1745. }
  1746. func (x *UserQuotasLimitData) GetAccountMaxCpu() int64 {
  1747. if x != nil {
  1748. return x.AccountMaxCpu
  1749. }
  1750. return 0
  1751. }
  1752. func (x *UserQuotasLimitData) GetAccountMaxDcu() int64 {
  1753. if x != nil {
  1754. return x.AccountMaxDcu
  1755. }
  1756. return 0
  1757. }
  1758. func (x *UserQuotasLimitData) GetAccountMaxGpu() int64 {
  1759. if x != nil {
  1760. return x.AccountMaxGpu
  1761. }
  1762. return 0
  1763. }
  1764. func (x *UserQuotasLimitData) GetAccountMaxMlu() int64 {
  1765. if x != nil {
  1766. return x.AccountMaxMlu
  1767. }
  1768. return 0
  1769. }
  1770. func (x *UserQuotasLimitData) GetAccountMaxMem() int64 {
  1771. if x != nil {
  1772. return x.AccountMaxMem
  1773. }
  1774. return 0
  1775. }
  1776. func (x *UserQuotasLimitData) GetAccountMaxNode() int64 {
  1777. if x != nil {
  1778. return x.AccountMaxNode
  1779. }
  1780. return 0
  1781. }
  1782. func (x *UserQuotasLimitData) GetAccountMaxSubmitJob() int64 {
  1783. if x != nil {
  1784. return x.AccountMaxSubmitJob
  1785. }
  1786. return 0
  1787. }
  1788. func (x *UserQuotasLimitData) GetAccountMaxRunJob() int64 {
  1789. if x != nil {
  1790. return x.AccountMaxRunJob
  1791. }
  1792. return 0
  1793. }
  1794. func (x *UserQuotasLimitData) GetUserMinCpu() int64 {
  1795. if x != nil {
  1796. return x.UserMinCpu
  1797. }
  1798. return 0
  1799. }
  1800. func (x *UserQuotasLimitData) GetUserMinNode() int64 {
  1801. if x != nil {
  1802. return x.UserMinNode
  1803. }
  1804. return 0
  1805. }
  1806. func (x *UserQuotasLimitData) GetMaxWallTime() int64 {
  1807. if x != nil {
  1808. return x.MaxWallTime
  1809. }
  1810. return 0
  1811. }
  1812. var File_hpcAC_proto protoreflect.FileDescriptor
  1813. var file_hpcAC_proto_rawDesc = []byte{
  1814. 0x0a, 0x0b, 0x68, 0x70, 0x63, 0x41, 0x43, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x05, 0x68,
  1815. 0x70, 0x63, 0x41, 0x43, 0x22, 0xae, 0x01, 0x0a, 0x0a, 0x4a, 0x6f, 0x62, 0x4d, 0x61, 0x6e, 0x61,
  1816. 0x67, 0x65, 0x72, 0x12, 0x28, 0x0a, 0x10, 0x6a, 0x6f, 0x62, 0x5f, 0x6d, 0x61, 0x6e, 0x61, 0x67,
  1817. 0x65, 0x72, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x6a,
  1818. 0x6f, 0x62, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x54, 0x79, 0x70, 0x65, 0x12, 0x28, 0x0a,
  1819. 0x10, 0x6a, 0x6f, 0x62, 0x5f, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x5f, 0x61, 0x64, 0x64,
  1820. 0x72, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x6a, 0x6f, 0x62, 0x4d, 0x61, 0x6e, 0x61,
  1821. 0x67, 0x65, 0x72, 0x41, 0x64, 0x64, 0x72, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x03, 0x20,
  1822. 0x01, 0x28, 0x03, 0x52, 0x02, 0x69, 0x64, 0x12, 0x12, 0x0a, 0x04, 0x74, 0x65, 0x78, 0x74, 0x18,
  1823. 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x74, 0x65, 0x78, 0x74, 0x12, 0x28, 0x0a, 0x10, 0x6a,
  1824. 0x6f, 0x62, 0x5f, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x5f, 0x70, 0x6f, 0x72, 0x74, 0x18,
  1825. 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x6a, 0x6f, 0x62, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65,
  1826. 0x72, 0x50, 0x6f, 0x72, 0x74, 0x22, 0x0f, 0x0a, 0x0d, 0x4a, 0x6f, 0x62, 0x4d, 0x61, 0x6e, 0x61,
  1827. 0x67, 0x65, 0x72, 0x52, 0x65, 0x71, 0x22, 0x70, 0x0a, 0x12, 0x4c, 0x69, 0x73, 0x74, 0x4a, 0x6f,
  1828. 0x62, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x52, 0x65, 0x73, 0x70, 0x12, 0x12, 0x0a, 0x04,
  1829. 0x63, 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x63, 0x6f, 0x64, 0x65,
  1830. 0x12, 0x10, 0x0a, 0x03, 0x6d, 0x73, 0x67, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6d,
  1831. 0x73, 0x67, 0x12, 0x34, 0x0a, 0x0c, 0x6a, 0x6f, 0x62, 0x5f, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65,
  1832. 0x72, 0x73, 0x18, 0x03, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x11, 0x2e, 0x68, 0x70, 0x63, 0x41, 0x43,
  1833. 0x2e, 0x4a, 0x6f, 0x62, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x52, 0x0b, 0x6a, 0x6f, 0x62,
  1834. 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x73, 0x22, 0x91, 0x04, 0x0a, 0x03, 0x6a, 0x6f, 0x62,
  1835. 0x12, 0x15, 0x0a, 0x06, 0x6a, 0x6f, 0x62, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09,
  1836. 0x52, 0x05, 0x6a, 0x6f, 0x62, 0x49, 0x64, 0x12, 0x19, 0x0a, 0x08, 0x6a, 0x6f, 0x62, 0x5f, 0x6e,
  1837. 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x6a, 0x6f, 0x62, 0x4e, 0x61,
  1838. 0x6d, 0x65, 0x12, 0x1d, 0x0a, 0x0a, 0x6a, 0x6f, 0x62, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73,
  1839. 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x6a, 0x6f, 0x62, 0x53, 0x74, 0x61, 0x74, 0x75,
  1840. 0x73, 0x12, 0x14, 0x0a, 0x05, 0x71, 0x75, 0x65, 0x75, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09,
  1841. 0x52, 0x05, 0x71, 0x75, 0x65, 0x75, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x75, 0x73, 0x65, 0x72, 0x18,
  1842. 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x75, 0x73, 0x65, 0x72, 0x12, 0x1b, 0x0a, 0x09, 0x6e,
  1843. 0x6f, 0x64, 0x65, 0x5f, 0x75, 0x73, 0x65, 0x64, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08,
  1844. 0x6e, 0x6f, 0x64, 0x65, 0x55, 0x73, 0x65, 0x64, 0x12, 0x22, 0x0a, 0x0d, 0x70, 0x72, 0x6f, 0x63,
  1845. 0x5f, 0x6e, 0x75, 0x6d, 0x5f, 0x75, 0x73, 0x65, 0x64, 0x18, 0x07, 0x20, 0x01, 0x28, 0x05, 0x52,
  1846. 0x0b, 0x70, 0x72, 0x6f, 0x63, 0x4e, 0x75, 0x6d, 0x55, 0x73, 0x65, 0x64, 0x12, 0x24, 0x0a, 0x0e,
  1847. 0x6a, 0x6f, 0x62, 0x5f, 0x73, 0x74, 0x61, 0x72, 0x74, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x08,
  1848. 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c, 0x6a, 0x6f, 0x62, 0x53, 0x74, 0x61, 0x72, 0x74, 0x54, 0x69,
  1849. 0x6d, 0x65, 0x12, 0x20, 0x0a, 0x0c, 0x6a, 0x6f, 0x62, 0x5f, 0x72, 0x75, 0x6e, 0x5f, 0x74, 0x69,
  1850. 0x6d, 0x65, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x6a, 0x6f, 0x62, 0x52, 0x75, 0x6e,
  1851. 0x54, 0x69, 0x6d, 0x65, 0x12, 0x24, 0x0a, 0x0e, 0x6a, 0x6f, 0x62, 0x5f, 0x6d, 0x61, 0x6e, 0x61,
  1852. 0x67, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c, 0x6a, 0x6f,
  1853. 0x62, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x49, 0x64, 0x12, 0x28, 0x0a, 0x10, 0x6a, 0x6f,
  1854. 0x62, 0x5f, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x0b,
  1855. 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x6a, 0x6f, 0x62, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72,
  1856. 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x28, 0x0a, 0x10, 0x6a, 0x6f, 0x62, 0x5f, 0x6d, 0x61, 0x6e, 0x61,
  1857. 0x67, 0x65, 0x72, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e,
  1858. 0x6a, 0x6f, 0x62, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x54, 0x79, 0x70, 0x65, 0x12, 0x1d,
  1859. 0x0a, 0x0a, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x70, 0x61, 0x74, 0x68, 0x18, 0x0d, 0x20, 0x01,
  1860. 0x28, 0x09, 0x52, 0x09, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x50, 0x61, 0x74, 0x68, 0x12, 0x1f, 0x0a,
  1861. 0x0b, 0x6f, 0x75, 0x74, 0x70, 0x75, 0x74, 0x5f, 0x70, 0x61, 0x74, 0x68, 0x18, 0x0e, 0x20, 0x01,
  1862. 0x28, 0x09, 0x52, 0x0a, 0x6f, 0x75, 0x74, 0x70, 0x75, 0x74, 0x50, 0x61, 0x74, 0x68, 0x12, 0x19,
  1863. 0x0a, 0x08, 0x77, 0x6f, 0x72, 0x6b, 0x5f, 0x64, 0x69, 0x72, 0x18, 0x0f, 0x20, 0x01, 0x28, 0x09,
  1864. 0x52, 0x07, 0x77, 0x6f, 0x72, 0x6b, 0x44, 0x69, 0x72, 0x12, 0x16, 0x0a, 0x06, 0x72, 0x65, 0x61,
  1865. 0x73, 0x6f, 0x6e, 0x18, 0x10, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x72, 0x65, 0x61, 0x73, 0x6f,
  1866. 0x6e, 0x12, 0x19, 0x0a, 0x08, 0x61, 0x70, 0x70, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x11, 0x20,
  1867. 0x01, 0x28, 0x09, 0x52, 0x07, 0x61, 0x70, 0x70, 0x54, 0x79, 0x70, 0x65, 0x22, 0x0c, 0x0a, 0x0a,
  1868. 0x4c, 0x69, 0x73, 0x74, 0x4a, 0x6f, 0x62, 0x52, 0x65, 0x71, 0x22, 0x76, 0x0a, 0x0b, 0x4c, 0x69,
  1869. 0x73, 0x74, 0x4a, 0x6f, 0x62, 0x52, 0x65, 0x73, 0x70, 0x12, 0x12, 0x0a, 0x04, 0x63, 0x6f, 0x64,
  1870. 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x04, 0x63, 0x6f, 0x64, 0x65, 0x12, 0x10, 0x0a,
  1871. 0x03, 0x6d, 0x73, 0x67, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6d, 0x73, 0x67, 0x12,
  1872. 0x21, 0x0a, 0x0c, 0x72, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x5f, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x18,
  1873. 0x03, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x0b, 0x72, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x43, 0x6f, 0x75,
  1874. 0x6e, 0x74, 0x12, 0x1e, 0x0a, 0x04, 0x6a, 0x6f, 0x62, 0x73, 0x18, 0x04, 0x20, 0x03, 0x28, 0x0b,
  1875. 0x32, 0x0a, 0x2e, 0x68, 0x70, 0x63, 0x41, 0x43, 0x2e, 0x6a, 0x6f, 0x62, 0x52, 0x04, 0x6a, 0x6f,
  1876. 0x62, 0x73, 0x22, 0x85, 0x04, 0x0a, 0x0a, 0x68, 0x69, 0x73, 0x74, 0x6f, 0x72, 0x79, 0x4a, 0x6f,
  1877. 0x62, 0x12, 0x1b, 0x0a, 0x09, 0x61, 0x63, 0x63, 0x74, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x01,
  1878. 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x61, 0x63, 0x63, 0x74, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x19,
  1879. 0x0a, 0x08, 0x61, 0x70, 0x70, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09,
  1880. 0x52, 0x07, 0x61, 0x70, 0x70, 0x54, 0x79, 0x70, 0x65, 0x12, 0x20, 0x0a, 0x0c, 0x6a, 0x6f, 0x62,
  1881. 0x5f, 0x65, 0x6e, 0x64, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52,
  1882. 0x0a, 0x6a, 0x6f, 0x62, 0x45, 0x6e, 0x64, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x22, 0x0a, 0x0d, 0x6a,
  1883. 0x6f, 0x62, 0x5f, 0x65, 0x78, 0x65, 0x63, 0x5f, 0x68, 0x6f, 0x73, 0x74, 0x18, 0x04, 0x20, 0x01,
  1884. 0x28, 0x09, 0x52, 0x0b, 0x6a, 0x6f, 0x62, 0x45, 0x78, 0x65, 0x63, 0x48, 0x6f, 0x73, 0x74, 0x12,
  1885. 0x26, 0x0a, 0x0f, 0x6a, 0x6f, 0x62, 0x5f, 0x65, 0x78, 0x69, 0x74, 0x5f, 0x73, 0x74, 0x61, 0x74,
  1886. 0x75, 0x73, 0x18, 0x05, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0d, 0x6a, 0x6f, 0x62, 0x45, 0x78, 0x69,
  1887. 0x74, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x15, 0x0a, 0x06, 0x6a, 0x6f, 0x62, 0x5f, 0x69,
  1888. 0x64, 0x18, 0x06, 0x20, 0x01, 0x28, 0x03, 0x52, 0x05, 0x6a, 0x6f, 0x62, 0x49, 0x64, 0x12, 0x19,
  1889. 0x0a, 0x08, 0x6a, 0x6f, 0x62, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09,
  1890. 0x52, 0x07, 0x6a, 0x6f, 0x62, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x24, 0x0a, 0x0e, 0x6a, 0x6f, 0x62,
  1891. 0x5f, 0x71, 0x75, 0x65, 0x75, 0x65, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x08, 0x20, 0x01, 0x28,
  1892. 0x09, 0x52, 0x0c, 0x6a, 0x6f, 0x62, 0x51, 0x75, 0x65, 0x75, 0x65, 0x54, 0x69, 0x6d, 0x65, 0x12,
  1893. 0x24, 0x0a, 0x0e, 0x6a, 0x6f, 0x62, 0x5f, 0x73, 0x74, 0x61, 0x72, 0x74, 0x5f, 0x74, 0x69, 0x6d,
  1894. 0x65, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c, 0x6a, 0x6f, 0x62, 0x53, 0x74, 0x61, 0x72,
  1895. 0x74, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x6a, 0x6f, 0x62, 0x5f, 0x73, 0x74, 0x61,
  1896. 0x74, 0x65, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6a, 0x6f, 0x62, 0x53, 0x74, 0x61,
  1897. 0x74, 0x65, 0x12, 0x2a, 0x0a, 0x11, 0x6a, 0x6f, 0x62, 0x5f, 0x77, 0x61, 0x6c, 0x6c, 0x74, 0x69,
  1898. 0x6d, 0x65, 0x5f, 0x75, 0x73, 0x65, 0x64, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0f, 0x6a,
  1899. 0x6f, 0x62, 0x57, 0x61, 0x6c, 0x6c, 0x74, 0x69, 0x6d, 0x65, 0x55, 0x73, 0x65, 0x64, 0x12, 0x24,
  1900. 0x0a, 0x0e, 0x6a, 0x6f, 0x62, 0x5f, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x5f, 0x69, 0x64,
  1901. 0x18, 0x0c, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0c, 0x6a, 0x6f, 0x62, 0x4d, 0x61, 0x6e, 0x61, 0x67,
  1902. 0x65, 0x72, 0x49, 0x64, 0x12, 0x17, 0x0a, 0x07, 0x6e, 0x6f, 0x64, 0x65, 0x5f, 0x63, 0x74, 0x18,
  1903. 0x0d, 0x20, 0x01, 0x28, 0x05, 0x52, 0x06, 0x6e, 0x6f, 0x64, 0x65, 0x43, 0x74, 0x12, 0x14, 0x0a,
  1904. 0x05, 0x71, 0x75, 0x65, 0x75, 0x65, 0x18, 0x0e, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x71, 0x75,
  1905. 0x65, 0x75, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x6e, 0x61, 0x6d, 0x65,
  1906. 0x18, 0x0f, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x75, 0x73, 0x65, 0x72, 0x4e, 0x61, 0x6d, 0x65,
  1907. 0x12, 0x18, 0x0a, 0x07, 0x77, 0x6f, 0x72, 0x6b, 0x64, 0x69, 0x72, 0x18, 0x10, 0x20, 0x01, 0x28,
  1908. 0x09, 0x52, 0x07, 0x77, 0x6f, 0x72, 0x6b, 0x64, 0x69, 0x72, 0x22, 0xc3, 0x01, 0x0a, 0x11, 0x4c,
  1909. 0x69, 0x73, 0x74, 0x48, 0x69, 0x73, 0x74, 0x6f, 0x72, 0x79, 0x4a, 0x6f, 0x62, 0x52, 0x65, 0x71,
  1910. 0x12, 0x1c, 0x0a, 0x09, 0x73, 0x74, 0x61, 0x72, 0x74, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x01, 0x20,
  1911. 0x01, 0x28, 0x09, 0x52, 0x09, 0x73, 0x74, 0x61, 0x72, 0x74, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x18,
  1912. 0x0a, 0x07, 0x65, 0x6e, 0x64, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52,
  1913. 0x07, 0x65, 0x6e, 0x64, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x74, 0x69, 0x6d, 0x65,
  1914. 0x54, 0x79, 0x70, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x74, 0x69, 0x6d, 0x65,
  1915. 0x54, 0x79, 0x70, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x73, 0x74, 0x61, 0x72, 0x74, 0x18, 0x04, 0x20,
  1916. 0x01, 0x28, 0x05, 0x52, 0x05, 0x73, 0x74, 0x61, 0x72, 0x74, 0x12, 0x14, 0x0a, 0x05, 0x6c, 0x69,
  1917. 0x6d, 0x69, 0x74, 0x18, 0x05, 0x20, 0x01, 0x28, 0x05, 0x52, 0x05, 0x6c, 0x69, 0x6d, 0x69, 0x74,
  1918. 0x12, 0x2e, 0x0a, 0x12, 0x69, 0x73, 0x51, 0x75, 0x65, 0x72, 0x79, 0x42, 0x79, 0x51, 0x75, 0x65,
  1919. 0x75, 0x65, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x05, 0x52, 0x12, 0x69, 0x73,
  1920. 0x51, 0x75, 0x65, 0x72, 0x79, 0x42, 0x79, 0x51, 0x75, 0x65, 0x75, 0x65, 0x54, 0x69, 0x6d, 0x65,
  1921. 0x22, 0x93, 0x01, 0x0a, 0x12, 0x4c, 0x69, 0x73, 0x74, 0x48, 0x69, 0x73, 0x74, 0x6f, 0x72, 0x79,
  1922. 0x4a, 0x6f, 0x62, 0x52, 0x65, 0x73, 0x70, 0x12, 0x12, 0x0a, 0x04, 0x63, 0x6f, 0x64, 0x65, 0x18,
  1923. 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x04, 0x63, 0x6f, 0x64, 0x65, 0x12, 0x10, 0x0a, 0x03, 0x6d,
  1924. 0x73, 0x67, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6d, 0x73, 0x67, 0x12, 0x21, 0x0a,
  1925. 0x0c, 0x72, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x5f, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x03, 0x20,
  1926. 0x01, 0x28, 0x0d, 0x52, 0x0b, 0x72, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x43, 0x6f, 0x75, 0x6e, 0x74,
  1927. 0x12, 0x34, 0x0a, 0x0c, 0x68, 0x69, 0x73, 0x74, 0x6f, 0x72, 0x79, 0x5f, 0x6a, 0x6f, 0x62, 0x73,
  1928. 0x18, 0x04, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x11, 0x2e, 0x68, 0x70, 0x63, 0x41, 0x43, 0x2e, 0x68,
  1929. 0x69, 0x73, 0x74, 0x6f, 0x72, 0x79, 0x4a, 0x6f, 0x62, 0x52, 0x0b, 0x68, 0x69, 0x73, 0x74, 0x6f,
  1930. 0x72, 0x79, 0x4a, 0x6f, 0x62, 0x73, 0x22, 0xa8, 0x01, 0x0a, 0x0c, 0x53, 0x75, 0x62, 0x6d, 0x69,
  1931. 0x74, 0x4a, 0x6f, 0x62, 0x52, 0x65, 0x71, 0x12, 0x18, 0x0a, 0x07, 0x61, 0x70, 0x70, 0x74, 0x79,
  1932. 0x70, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x61, 0x70, 0x70, 0x74, 0x79, 0x70,
  1933. 0x65, 0x12, 0x18, 0x0a, 0x07, 0x61, 0x70, 0x70, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01,
  1934. 0x28, 0x09, 0x52, 0x07, 0x61, 0x70, 0x70, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x28, 0x0a, 0x0f, 0x73,
  1935. 0x74, 0x72, 0x4a, 0x6f, 0x62, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x49, 0x44, 0x18, 0x03,
  1936. 0x20, 0x01, 0x28, 0x03, 0x52, 0x0f, 0x73, 0x74, 0x72, 0x4a, 0x6f, 0x62, 0x4d, 0x61, 0x6e, 0x61,
  1937. 0x67, 0x65, 0x72, 0x49, 0x44, 0x12, 0x3a, 0x0a, 0x0d, 0x6d, 0x61, 0x70, 0x41, 0x70, 0x70, 0x4a,
  1938. 0x6f, 0x62, 0x49, 0x6e, 0x66, 0x6f, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x14, 0x2e, 0x68,
  1939. 0x70, 0x63, 0x41, 0x43, 0x2e, 0x4d, 0x61, 0x70, 0x41, 0x70, 0x70, 0x4a, 0x6f, 0x62, 0x49, 0x6e,
  1940. 0x66, 0x6f, 0x52, 0x0d, 0x6d, 0x61, 0x70, 0x41, 0x70, 0x70, 0x4a, 0x6f, 0x62, 0x49, 0x6e, 0x66,
  1941. 0x6f, 0x22, 0x49, 0x0a, 0x0d, 0x53, 0x75, 0x62, 0x6d, 0x69, 0x74, 0x4a, 0x6f, 0x62, 0x52, 0x65,
  1942. 0x73, 0x70, 0x12, 0x12, 0x0a, 0x04, 0x43, 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09,
  1943. 0x52, 0x04, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x10, 0x0a, 0x03, 0x4d, 0x73, 0x67, 0x18, 0x02, 0x20,
  1944. 0x01, 0x28, 0x09, 0x52, 0x03, 0x4d, 0x73, 0x67, 0x12, 0x12, 0x0a, 0x04, 0x44, 0x61, 0x74, 0x61,
  1945. 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x44, 0x61, 0x74, 0x61, 0x22, 0xeb, 0x04, 0x0a,
  1946. 0x0d, 0x4d, 0x61, 0x70, 0x41, 0x70, 0x70, 0x4a, 0x6f, 0x62, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x20,
  1947. 0x0a, 0x0c, 0x47, 0x41, 0x50, 0x5f, 0x43, 0x4d, 0x44, 0x5f, 0x46, 0x49, 0x4c, 0x45, 0x18, 0x01,
  1948. 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x47, 0x41, 0x50, 0x43, 0x4d, 0x44, 0x46, 0x49, 0x4c, 0x45,
  1949. 0x12, 0x1b, 0x0a, 0x09, 0x47, 0x41, 0x50, 0x5f, 0x4e, 0x4e, 0x4f, 0x44, 0x45, 0x18, 0x02, 0x20,
  1950. 0x01, 0x28, 0x09, 0x52, 0x08, 0x47, 0x41, 0x50, 0x4e, 0x4e, 0x4f, 0x44, 0x45, 0x12, 0x26, 0x0a,
  1951. 0x0f, 0x47, 0x41, 0x50, 0x5f, 0x4e, 0x4f, 0x44, 0x45, 0x5f, 0x53, 0x54, 0x52, 0x49, 0x4e, 0x47,
  1952. 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x47, 0x41, 0x50, 0x4e, 0x4f, 0x44, 0x45, 0x53,
  1953. 0x54, 0x52, 0x49, 0x4e, 0x47, 0x12, 0x26, 0x0a, 0x0f, 0x47, 0x41, 0x50, 0x5f, 0x53, 0x55, 0x42,
  1954. 0x4d, 0x49, 0x54, 0x5f, 0x54, 0x59, 0x50, 0x45, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d,
  1955. 0x47, 0x41, 0x50, 0x53, 0x55, 0x42, 0x4d, 0x49, 0x54, 0x54, 0x59, 0x50, 0x45, 0x12, 0x20, 0x0a,
  1956. 0x0c, 0x47, 0x41, 0x50, 0x5f, 0x4a, 0x4f, 0x42, 0x5f, 0x4e, 0x41, 0x4d, 0x45, 0x18, 0x05, 0x20,
  1957. 0x01, 0x28, 0x09, 0x52, 0x0a, 0x47, 0x41, 0x50, 0x4a, 0x4f, 0x42, 0x4e, 0x41, 0x4d, 0x45, 0x12,
  1958. 0x20, 0x0a, 0x0c, 0x47, 0x41, 0x50, 0x5f, 0x57, 0x4f, 0x52, 0x4b, 0x5f, 0x44, 0x49, 0x52, 0x18,
  1959. 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x47, 0x41, 0x50, 0x57, 0x4f, 0x52, 0x4b, 0x44, 0x49,
  1960. 0x52, 0x12, 0x1b, 0x0a, 0x09, 0x47, 0x41, 0x50, 0x5f, 0x51, 0x55, 0x45, 0x55, 0x45, 0x18, 0x07,
  1961. 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x47, 0x41, 0x50, 0x51, 0x55, 0x45, 0x55, 0x45, 0x12, 0x1b,
  1962. 0x0a, 0x09, 0x47, 0x41, 0x50, 0x5f, 0x4e, 0x50, 0x52, 0x4f, 0x43, 0x18, 0x08, 0x20, 0x01, 0x28,
  1963. 0x09, 0x52, 0x08, 0x47, 0x41, 0x50, 0x4e, 0x50, 0x52, 0x4f, 0x43, 0x12, 0x17, 0x0a, 0x07, 0x47,
  1964. 0x41, 0x50, 0x5f, 0x50, 0x50, 0x4e, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x47, 0x41,
  1965. 0x50, 0x50, 0x50, 0x4e, 0x12, 0x19, 0x0a, 0x08, 0x47, 0x41, 0x50, 0x5f, 0x4e, 0x47, 0x50, 0x55,
  1966. 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x47, 0x41, 0x50, 0x4e, 0x47, 0x50, 0x55, 0x12,
  1967. 0x19, 0x0a, 0x08, 0x47, 0x41, 0x50, 0x5f, 0x4e, 0x44, 0x43, 0x55, 0x18, 0x0b, 0x20, 0x01, 0x28,
  1968. 0x09, 0x52, 0x07, 0x47, 0x41, 0x50, 0x4e, 0x44, 0x43, 0x55, 0x12, 0x1e, 0x0a, 0x0b, 0x47, 0x41,
  1969. 0x50, 0x5f, 0x4a, 0x4f, 0x42, 0x5f, 0x4d, 0x45, 0x4d, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x09, 0x52,
  1970. 0x09, 0x47, 0x41, 0x50, 0x4a, 0x4f, 0x42, 0x4d, 0x45, 0x4d, 0x12, 0x22, 0x0a, 0x0d, 0x47, 0x41,
  1971. 0x50, 0x5f, 0x57, 0x41, 0x4c, 0x4c, 0x5f, 0x54, 0x49, 0x4d, 0x45, 0x18, 0x0d, 0x20, 0x01, 0x28,
  1972. 0x09, 0x52, 0x0b, 0x47, 0x41, 0x50, 0x57, 0x41, 0x4c, 0x4c, 0x54, 0x49, 0x4d, 0x45, 0x12, 0x23,
  1973. 0x0a, 0x0d, 0x47, 0x41, 0x50, 0x5f, 0x45, 0x58, 0x43, 0x4c, 0x55, 0x53, 0x49, 0x56, 0x45, 0x18,
  1974. 0x0e, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c, 0x47, 0x41, 0x50, 0x45, 0x58, 0x43, 0x4c, 0x55, 0x53,
  1975. 0x49, 0x56, 0x45, 0x12, 0x1f, 0x0a, 0x0b, 0x47, 0x41, 0x50, 0x5f, 0x41, 0x50, 0x50, 0x4e, 0x41,
  1976. 0x4d, 0x45, 0x18, 0x0f, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x47, 0x41, 0x50, 0x41, 0x50, 0x50,
  1977. 0x4e, 0x41, 0x4d, 0x45, 0x12, 0x22, 0x0a, 0x0d, 0x47, 0x41, 0x50, 0x5f, 0x4d, 0x55, 0x4c, 0x54,
  1978. 0x49, 0x5f, 0x53, 0x55, 0x42, 0x18, 0x10, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x47, 0x41, 0x50,
  1979. 0x4d, 0x55, 0x4c, 0x54, 0x49, 0x53, 0x55, 0x42, 0x12, 0x27, 0x0a, 0x10, 0x47, 0x41, 0x50, 0x5f,
  1980. 0x53, 0x54, 0x44, 0x5f, 0x4f, 0x55, 0x54, 0x5f, 0x46, 0x49, 0x4c, 0x45, 0x18, 0x11, 0x20, 0x01,
  1981. 0x28, 0x09, 0x52, 0x0d, 0x47, 0x41, 0x50, 0x53, 0x54, 0x44, 0x4f, 0x55, 0x54, 0x46, 0x49, 0x4c,
  1982. 0x45, 0x12, 0x27, 0x0a, 0x10, 0x47, 0x41, 0x50, 0x5f, 0x53, 0x54, 0x44, 0x5f, 0x45, 0x52, 0x52,
  1983. 0x5f, 0x46, 0x49, 0x4c, 0x45, 0x18, 0x12, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x47, 0x41, 0x50,
  1984. 0x53, 0x54, 0x44, 0x45, 0x52, 0x52, 0x46, 0x49, 0x4c, 0x45, 0x22, 0x60, 0x0a, 0x0f, 0x46, 0x69,
  1985. 0x6c, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x52, 0x65, 0x73, 0x70, 0x12, 0x12, 0x0a,
  1986. 0x04, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x63, 0x6f, 0x64,
  1987. 0x65, 0x12, 0x10, 0x0a, 0x03, 0x6d, 0x73, 0x67, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03,
  1988. 0x6d, 0x73, 0x67, 0x12, 0x27, 0x0a, 0x04, 0x64, 0x61, 0x74, 0x61, 0x18, 0x03, 0x20, 0x01, 0x28,
  1989. 0x0b, 0x32, 0x13, 0x2e, 0x68, 0x70, 0x63, 0x41, 0x43, 0x2e, 0x46, 0x69, 0x6c, 0x65, 0x44, 0x61,
  1990. 0x74, 0x61, 0x52, 0x65, 0x73, 0x70, 0x52, 0x04, 0x64, 0x61, 0x74, 0x61, 0x22, 0x89, 0x01, 0x0a,
  1991. 0x0b, 0x46, 0x69, 0x6c, 0x65, 0x44, 0x61, 0x74, 0x61, 0x52, 0x65, 0x71, 0x12, 0x1a, 0x0a, 0x08,
  1992. 0x68, 0x6f, 0x73, 0x74, 0x4e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08,
  1993. 0x68, 0x6f, 0x73, 0x74, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x64, 0x69, 0x72, 0x50,
  1994. 0x61, 0x74, 0x68, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x64, 0x69, 0x72, 0x50, 0x61,
  1995. 0x74, 0x68, 0x12, 0x1e, 0x0a, 0x0a, 0x74, 0x72, 0x69, 0x67, 0x67, 0x65, 0x72, 0x4e, 0x75, 0x6d,
  1996. 0x18, 0x03, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0a, 0x74, 0x72, 0x69, 0x67, 0x67, 0x65, 0x72, 0x4e,
  1997. 0x75, 0x6d, 0x12, 0x24, 0x0a, 0x0d, 0x72, 0x6f, 0x6c, 0x6c, 0x44, 0x69, 0x72, 0x65, 0x63, 0x74,
  1998. 0x69, 0x6f, 0x6e, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x72, 0x6f, 0x6c, 0x6c, 0x44,
  1999. 0x69, 0x72, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0xa6, 0x01, 0x0a, 0x0c, 0x46, 0x69, 0x6c,
  2000. 0x65, 0x44, 0x61, 0x74, 0x61, 0x52, 0x65, 0x73, 0x70, 0x12, 0x22, 0x0a, 0x0c, 0x61, 0x6c, 0x6c,
  2001. 0x4c, 0x69, 0x6e, 0x65, 0x54, 0x6f, 0x74, 0x61, 0x6c, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52,
  2002. 0x0c, 0x61, 0x6c, 0x6c, 0x4c, 0x69, 0x6e, 0x65, 0x54, 0x6f, 0x74, 0x61, 0x6c, 0x12, 0x18, 0x0a,
  2003. 0x07, 0x73, 0x75, 0x63, 0x63, 0x65, 0x73, 0x73, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07,
  2004. 0x73, 0x75, 0x63, 0x63, 0x65, 0x73, 0x73, 0x12, 0x2c, 0x0a, 0x11, 0x74, 0x6f, 0x74, 0x61, 0x6c,
  2005. 0x54, 0x72, 0x69, 0x67, 0x67, 0x65, 0x72, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x18, 0x03, 0x20, 0x01,
  2006. 0x28, 0x05, 0x52, 0x11, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x54, 0x72, 0x69, 0x67, 0x67, 0x65, 0x72,
  2007. 0x54, 0x69, 0x6d, 0x65, 0x73, 0x12, 0x16, 0x0a, 0x06, 0x65, 0x72, 0x72, 0x6d, 0x73, 0x67, 0x18,
  2008. 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x65, 0x72, 0x72, 0x6d, 0x73, 0x67, 0x12, 0x12, 0x0a,
  2009. 0x04, 0x64, 0x61, 0x74, 0x61, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x64, 0x61, 0x74,
  2010. 0x61, 0x22, 0x48, 0x0a, 0x08, 0x51, 0x75, 0x65, 0x75, 0x65, 0x52, 0x65, 0x71, 0x12, 0x12, 0x0a,
  2011. 0x04, 0x75, 0x73, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x75, 0x73, 0x65,
  2012. 0x72, 0x12, 0x28, 0x0a, 0x0f, 0x73, 0x74, 0x72, 0x4a, 0x6f, 0x62, 0x4d, 0x61, 0x6e, 0x61, 0x67,
  2013. 0x65, 0x72, 0x49, 0x44, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0f, 0x73, 0x74, 0x72, 0x4a,
  2014. 0x6f, 0x62, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x49, 0x44, 0x22, 0x57, 0x0a, 0x09, 0x51,
  2015. 0x75, 0x65, 0x75, 0x65, 0x52, 0x65, 0x73, 0x70, 0x12, 0x12, 0x0a, 0x04, 0x63, 0x6f, 0x64, 0x65,
  2016. 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x63, 0x6f, 0x64, 0x65, 0x12, 0x10, 0x0a, 0x03,
  2017. 0x6d, 0x73, 0x67, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6d, 0x73, 0x67, 0x12, 0x24,
  2018. 0x0a, 0x04, 0x64, 0x61, 0x74, 0x61, 0x18, 0x03, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x10, 0x2e, 0x68,
  2019. 0x70, 0x63, 0x41, 0x43, 0x2e, 0x51, 0x75, 0x65, 0x75, 0x65, 0x44, 0x61, 0x74, 0x61, 0x52, 0x04,
  2020. 0x64, 0x61, 0x74, 0x61, 0x22, 0xa9, 0x04, 0x0a, 0x09, 0x51, 0x75, 0x65, 0x75, 0x65, 0x44, 0x61,
  2021. 0x74, 0x61, 0x12, 0x1a, 0x0a, 0x08, 0x61, 0x63, 0x6c, 0x48, 0x6f, 0x73, 0x74, 0x73, 0x18, 0x01,
  2022. 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x61, 0x63, 0x6c, 0x48, 0x6f, 0x73, 0x74, 0x73, 0x12, 0x0e,
  2023. 0x0a, 0x02, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x12,
  2024. 0x0a, 0x04, 0x74, 0x65, 0x78, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x74, 0x65,
  2025. 0x78, 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x71, 0x75, 0x65, 0x4e, 0x6f, 0x64, 0x65, 0x73, 0x18, 0x04,
  2026. 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x71, 0x75, 0x65, 0x4e, 0x6f, 0x64, 0x65, 0x73, 0x12, 0x22,
  2027. 0x0a, 0x0c, 0x71, 0x75, 0x65, 0x4d, 0x69, 0x6e, 0x4e, 0x6f, 0x64, 0x65, 0x63, 0x74, 0x18, 0x05,
  2028. 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c, 0x71, 0x75, 0x65, 0x4d, 0x69, 0x6e, 0x4e, 0x6f, 0x64, 0x65,
  2029. 0x63, 0x74, 0x12, 0x20, 0x0a, 0x0b, 0x71, 0x75, 0x65, 0x4d, 0x61, 0x78, 0x4e, 0x67, 0x70, 0x75,
  2030. 0x73, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x71, 0x75, 0x65, 0x4d, 0x61, 0x78, 0x4e,
  2031. 0x67, 0x70, 0x75, 0x73, 0x12, 0x1c, 0x0a, 0x09, 0x71, 0x75, 0x65, 0x4d, 0x61, 0x78, 0x50, 0x50,
  2032. 0x4e, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x71, 0x75, 0x65, 0x4d, 0x61, 0x78, 0x50,
  2033. 0x50, 0x4e, 0x12, 0x24, 0x0a, 0x0d, 0x71, 0x75, 0x65, 0x43, 0x68, 0x61, 0x72, 0x67, 0x65, 0x52,
  2034. 0x61, 0x74, 0x65, 0x18, 0x08, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x71, 0x75, 0x65, 0x43, 0x68,
  2035. 0x61, 0x72, 0x67, 0x65, 0x52, 0x61, 0x74, 0x65, 0x12, 0x20, 0x0a, 0x0b, 0x71, 0x75, 0x65, 0x4d,
  2036. 0x61, 0x78, 0x4e, 0x63, 0x70, 0x75, 0x73, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x71,
  2037. 0x75, 0x65, 0x4d, 0x61, 0x78, 0x4e, 0x63, 0x70, 0x75, 0x73, 0x12, 0x20, 0x0a, 0x0b, 0x71, 0x75,
  2038. 0x65, 0x4d, 0x61, 0x78, 0x4e, 0x64, 0x63, 0x75, 0x73, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09, 0x52,
  2039. 0x0b, 0x71, 0x75, 0x65, 0x4d, 0x61, 0x78, 0x4e, 0x64, 0x63, 0x75, 0x73, 0x12, 0x1c, 0x0a, 0x09,
  2040. 0x71, 0x75, 0x65, 0x75, 0x65, 0x4e, 0x61, 0x6d, 0x65, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x09, 0x52,
  2041. 0x09, 0x71, 0x75, 0x65, 0x75, 0x65, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x20, 0x0a, 0x0b, 0x71, 0x75,
  2042. 0x65, 0x4d, 0x69, 0x6e, 0x4e, 0x63, 0x70, 0x75, 0x73, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x09, 0x52,
  2043. 0x0b, 0x71, 0x75, 0x65, 0x4d, 0x69, 0x6e, 0x4e, 0x63, 0x70, 0x75, 0x73, 0x12, 0x22, 0x0a, 0x0c,
  2044. 0x71, 0x75, 0x65, 0x46, 0x72, 0x65, 0x65, 0x4e, 0x6f, 0x64, 0x65, 0x73, 0x18, 0x0d, 0x20, 0x01,
  2045. 0x28, 0x09, 0x52, 0x0c, 0x71, 0x75, 0x65, 0x46, 0x72, 0x65, 0x65, 0x4e, 0x6f, 0x64, 0x65, 0x73,
  2046. 0x12, 0x22, 0x0a, 0x0c, 0x71, 0x75, 0x65, 0x4d, 0x61, 0x78, 0x4e, 0x6f, 0x64, 0x65, 0x63, 0x74,
  2047. 0x18, 0x0e, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c, 0x71, 0x75, 0x65, 0x4d, 0x61, 0x78, 0x4e, 0x6f,
  2048. 0x64, 0x65, 0x63, 0x74, 0x12, 0x20, 0x0a, 0x0b, 0x71, 0x75, 0x65, 0x4d, 0x61, 0x78, 0x47, 0x70,
  2049. 0x75, 0x50, 0x4e, 0x18, 0x0f, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x71, 0x75, 0x65, 0x4d, 0x61,
  2050. 0x78, 0x47, 0x70, 0x75, 0x50, 0x4e, 0x12, 0x26, 0x0a, 0x0e, 0x71, 0x75, 0x65, 0x4d, 0x61, 0x78,
  2051. 0x57, 0x61, 0x6c, 0x6c, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x10, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e,
  2052. 0x71, 0x75, 0x65, 0x4d, 0x61, 0x78, 0x57, 0x61, 0x6c, 0x6c, 0x74, 0x69, 0x6d, 0x65, 0x12, 0x20,
  2053. 0x0a, 0x0b, 0x71, 0x75, 0x65, 0x4d, 0x61, 0x78, 0x44, 0x63, 0x75, 0x50, 0x4e, 0x18, 0x11, 0x20,
  2054. 0x01, 0x28, 0x09, 0x52, 0x0b, 0x71, 0x75, 0x65, 0x4d, 0x61, 0x78, 0x44, 0x63, 0x75, 0x50, 0x4e,
  2055. 0x22, 0x65, 0x0a, 0x10, 0x51, 0x75, 0x65, 0x75, 0x65, 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x73,
  2056. 0x52, 0x65, 0x73, 0x70, 0x12, 0x12, 0x0a, 0x04, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20, 0x01,
  2057. 0x28, 0x09, 0x52, 0x04, 0x63, 0x6f, 0x64, 0x65, 0x12, 0x10, 0x0a, 0x03, 0x6d, 0x73, 0x67, 0x18,
  2058. 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6d, 0x73, 0x67, 0x12, 0x2b, 0x0a, 0x04, 0x64, 0x61,
  2059. 0x74, 0x61, 0x18, 0x03, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x17, 0x2e, 0x68, 0x70, 0x63, 0x41, 0x43,
  2060. 0x2e, 0x51, 0x75, 0x65, 0x75, 0x65, 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x73, 0x44, 0x61, 0x74,
  2061. 0x61, 0x52, 0x04, 0x64, 0x61, 0x74, 0x61, 0x22, 0xf0, 0x03, 0x0a, 0x10, 0x51, 0x75, 0x65, 0x75,
  2062. 0x65, 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x73, 0x44, 0x61, 0x74, 0x61, 0x12, 0x1a, 0x0a, 0x08,
  2063. 0x71, 0x75, 0x65, 0x4e, 0x6f, 0x64, 0x65, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x08,
  2064. 0x71, 0x75, 0x65, 0x4e, 0x6f, 0x64, 0x65, 0x73, 0x12, 0x22, 0x0a, 0x0c, 0x71, 0x75, 0x65, 0x4d,
  2065. 0x69, 0x6e, 0x4e, 0x6f, 0x64, 0x65, 0x63, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0c,
  2066. 0x71, 0x75, 0x65, 0x4d, 0x69, 0x6e, 0x4e, 0x6f, 0x64, 0x65, 0x63, 0x74, 0x12, 0x20, 0x0a, 0x0b,
  2067. 0x71, 0x75, 0x65, 0x4d, 0x61, 0x78, 0x4e, 0x67, 0x70, 0x75, 0x73, 0x18, 0x03, 0x20, 0x01, 0x28,
  2068. 0x05, 0x52, 0x0b, 0x71, 0x75, 0x65, 0x4d, 0x61, 0x78, 0x4e, 0x67, 0x70, 0x75, 0x73, 0x12, 0x1c,
  2069. 0x0a, 0x09, 0x71, 0x75, 0x65, 0x4d, 0x61, 0x78, 0x50, 0x50, 0x4e, 0x18, 0x04, 0x20, 0x01, 0x28,
  2070. 0x05, 0x52, 0x09, 0x71, 0x75, 0x65, 0x4d, 0x61, 0x78, 0x50, 0x50, 0x4e, 0x12, 0x24, 0x0a, 0x0d,
  2071. 0x71, 0x75, 0x65, 0x43, 0x68, 0x61, 0x72, 0x67, 0x65, 0x52, 0x61, 0x74, 0x65, 0x18, 0x05, 0x20,
  2072. 0x01, 0x28, 0x02, 0x52, 0x0d, 0x71, 0x75, 0x65, 0x43, 0x68, 0x61, 0x72, 0x67, 0x65, 0x52, 0x61,
  2073. 0x74, 0x65, 0x12, 0x20, 0x0a, 0x0b, 0x71, 0x75, 0x65, 0x4d, 0x61, 0x78, 0x4e, 0x63, 0x70, 0x75,
  2074. 0x73, 0x18, 0x06, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0b, 0x71, 0x75, 0x65, 0x4d, 0x61, 0x78, 0x4e,
  2075. 0x63, 0x70, 0x75, 0x73, 0x12, 0x20, 0x0a, 0x0b, 0x71, 0x75, 0x65, 0x4d, 0x61, 0x78, 0x4e, 0x64,
  2076. 0x63, 0x75, 0x73, 0x18, 0x07, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0b, 0x71, 0x75, 0x65, 0x4d, 0x61,
  2077. 0x78, 0x4e, 0x64, 0x63, 0x75, 0x73, 0x12, 0x1c, 0x0a, 0x09, 0x71, 0x75, 0x65, 0x75, 0x65, 0x4e,
  2078. 0x61, 0x6d, 0x65, 0x18, 0x08, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x71, 0x75, 0x65, 0x75, 0x65,
  2079. 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x20, 0x0a, 0x0b, 0x71, 0x75, 0x65, 0x4d, 0x69, 0x6e, 0x4e, 0x63,
  2080. 0x70, 0x75, 0x73, 0x18, 0x09, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0b, 0x71, 0x75, 0x65, 0x4d, 0x69,
  2081. 0x6e, 0x4e, 0x63, 0x70, 0x75, 0x73, 0x12, 0x22, 0x0a, 0x0c, 0x71, 0x75, 0x65, 0x46, 0x72, 0x65,
  2082. 0x65, 0x4e, 0x6f, 0x64, 0x65, 0x73, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0c, 0x71, 0x75,
  2083. 0x65, 0x46, 0x72, 0x65, 0x65, 0x4e, 0x6f, 0x64, 0x65, 0x73, 0x12, 0x22, 0x0a, 0x0c, 0x71, 0x75,
  2084. 0x65, 0x4d, 0x61, 0x78, 0x4e, 0x6f, 0x64, 0x65, 0x63, 0x74, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x05,
  2085. 0x52, 0x0c, 0x71, 0x75, 0x65, 0x4d, 0x61, 0x78, 0x4e, 0x6f, 0x64, 0x65, 0x63, 0x74, 0x12, 0x20,
  2086. 0x0a, 0x0b, 0x71, 0x75, 0x65, 0x4d, 0x61, 0x78, 0x47, 0x70, 0x75, 0x50, 0x4e, 0x18, 0x0c, 0x20,
  2087. 0x01, 0x28, 0x05, 0x52, 0x0b, 0x71, 0x75, 0x65, 0x4d, 0x61, 0x78, 0x47, 0x70, 0x75, 0x50, 0x4e,
  2088. 0x12, 0x26, 0x0a, 0x0e, 0x71, 0x75, 0x65, 0x4d, 0x61, 0x78, 0x57, 0x61, 0x6c, 0x6c, 0x74, 0x69,
  2089. 0x6d, 0x65, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0e, 0x71, 0x75, 0x65, 0x4d, 0x61, 0x78,
  2090. 0x57, 0x61, 0x6c, 0x6c, 0x74, 0x69, 0x6d, 0x65, 0x12, 0x20, 0x0a, 0x0b, 0x71, 0x75, 0x65, 0x4d,
  2091. 0x61, 0x78, 0x44, 0x63, 0x75, 0x50, 0x4e, 0x18, 0x0e, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0b, 0x71,
  2092. 0x75, 0x65, 0x4d, 0x61, 0x78, 0x44, 0x63, 0x75, 0x50, 0x4e, 0x22, 0x6b, 0x0a, 0x13, 0x55, 0x73,
  2093. 0x65, 0x72, 0x51, 0x75, 0x6f, 0x74, 0x61, 0x73, 0x4c, 0x69, 0x6d, 0x69, 0x74, 0x52, 0x65, 0x73,
  2094. 0x70, 0x12, 0x12, 0x0a, 0x04, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52,
  2095. 0x04, 0x63, 0x6f, 0x64, 0x65, 0x12, 0x10, 0x0a, 0x03, 0x6d, 0x73, 0x67, 0x18, 0x02, 0x20, 0x01,
  2096. 0x28, 0x09, 0x52, 0x03, 0x6d, 0x73, 0x67, 0x12, 0x2e, 0x0a, 0x04, 0x64, 0x61, 0x74, 0x61, 0x18,
  2097. 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x68, 0x70, 0x63, 0x41, 0x43, 0x2e, 0x55, 0x73,
  2098. 0x65, 0x72, 0x51, 0x75, 0x6f, 0x74, 0x61, 0x73, 0x4c, 0x69, 0x6d, 0x69, 0x74, 0x44, 0x61, 0x74,
  2099. 0x61, 0x52, 0x04, 0x64, 0x61, 0x74, 0x61, 0x22, 0x8f, 0x06, 0x0a, 0x13, 0x55, 0x73, 0x65, 0x72,
  2100. 0x51, 0x75, 0x6f, 0x74, 0x61, 0x73, 0x4c, 0x69, 0x6d, 0x69, 0x74, 0x44, 0x61, 0x74, 0x61, 0x12,
  2101. 0x1a, 0x0a, 0x08, 0x75, 0x73, 0x65, 0x72, 0x4e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28,
  2102. 0x09, 0x52, 0x08, 0x75, 0x73, 0x65, 0x72, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x20, 0x0a, 0x0b, 0x61,
  2103. 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x4e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09,
  2104. 0x52, 0x0b, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x1e, 0x0a,
  2105. 0x0a, 0x75, 0x73, 0x65, 0x72, 0x4d, 0x61, 0x78, 0x43, 0x70, 0x75, 0x18, 0x03, 0x20, 0x01, 0x28,
  2106. 0x03, 0x52, 0x0a, 0x75, 0x73, 0x65, 0x72, 0x4d, 0x61, 0x78, 0x43, 0x70, 0x75, 0x12, 0x1e, 0x0a,
  2107. 0x0a, 0x75, 0x73, 0x65, 0x72, 0x4d, 0x61, 0x78, 0x44, 0x63, 0x75, 0x18, 0x04, 0x20, 0x01, 0x28,
  2108. 0x03, 0x52, 0x0a, 0x75, 0x73, 0x65, 0x72, 0x4d, 0x61, 0x78, 0x44, 0x63, 0x75, 0x12, 0x1e, 0x0a,
  2109. 0x0a, 0x75, 0x73, 0x65, 0x72, 0x4d, 0x61, 0x78, 0x47, 0x70, 0x75, 0x18, 0x05, 0x20, 0x01, 0x28,
  2110. 0x03, 0x52, 0x0a, 0x75, 0x73, 0x65, 0x72, 0x4d, 0x61, 0x78, 0x47, 0x70, 0x75, 0x12, 0x1e, 0x0a,
  2111. 0x0a, 0x75, 0x73, 0x65, 0x72, 0x4d, 0x61, 0x78, 0x4d, 0x6c, 0x75, 0x18, 0x06, 0x20, 0x01, 0x28,
  2112. 0x03, 0x52, 0x0a, 0x75, 0x73, 0x65, 0x72, 0x4d, 0x61, 0x78, 0x4d, 0x6c, 0x75, 0x12, 0x1e, 0x0a,
  2113. 0x0a, 0x75, 0x73, 0x65, 0x72, 0x4d, 0x61, 0x78, 0x4d, 0x65, 0x6d, 0x18, 0x07, 0x20, 0x01, 0x28,
  2114. 0x03, 0x52, 0x0a, 0x75, 0x73, 0x65, 0x72, 0x4d, 0x61, 0x78, 0x4d, 0x65, 0x6d, 0x12, 0x20, 0x0a,
  2115. 0x0b, 0x75, 0x73, 0x65, 0x72, 0x4d, 0x61, 0x78, 0x4e, 0x6f, 0x64, 0x65, 0x18, 0x08, 0x20, 0x01,
  2116. 0x28, 0x03, 0x52, 0x0b, 0x75, 0x73, 0x65, 0x72, 0x4d, 0x61, 0x78, 0x4e, 0x6f, 0x64, 0x65, 0x12,
  2117. 0x2a, 0x0a, 0x10, 0x75, 0x73, 0x65, 0x72, 0x4d, 0x61, 0x78, 0x53, 0x75, 0x62, 0x6d, 0x69, 0x74,
  2118. 0x4a, 0x6f, 0x62, 0x18, 0x09, 0x20, 0x01, 0x28, 0x03, 0x52, 0x10, 0x75, 0x73, 0x65, 0x72, 0x4d,
  2119. 0x61, 0x78, 0x53, 0x75, 0x62, 0x6d, 0x69, 0x74, 0x4a, 0x6f, 0x62, 0x12, 0x24, 0x0a, 0x0d, 0x75,
  2120. 0x73, 0x65, 0x72, 0x4d, 0x61, 0x78, 0x52, 0x75, 0x6e, 0x4a, 0x6f, 0x62, 0x18, 0x0a, 0x20, 0x01,
  2121. 0x28, 0x03, 0x52, 0x0d, 0x75, 0x73, 0x65, 0x72, 0x4d, 0x61, 0x78, 0x52, 0x75, 0x6e, 0x4a, 0x6f,
  2122. 0x62, 0x12, 0x24, 0x0a, 0x0d, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x4d, 0x61, 0x78, 0x43,
  2123. 0x70, 0x75, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0d, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e,
  2124. 0x74, 0x4d, 0x61, 0x78, 0x43, 0x70, 0x75, 0x12, 0x24, 0x0a, 0x0d, 0x61, 0x63, 0x63, 0x6f, 0x75,
  2125. 0x6e, 0x74, 0x4d, 0x61, 0x78, 0x44, 0x63, 0x75, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0d,
  2126. 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x4d, 0x61, 0x78, 0x44, 0x63, 0x75, 0x12, 0x24, 0x0a,
  2127. 0x0d, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x4d, 0x61, 0x78, 0x47, 0x70, 0x75, 0x18, 0x0d,
  2128. 0x20, 0x01, 0x28, 0x03, 0x52, 0x0d, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x4d, 0x61, 0x78,
  2129. 0x47, 0x70, 0x75, 0x12, 0x24, 0x0a, 0x0d, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x4d, 0x61,
  2130. 0x78, 0x4d, 0x6c, 0x75, 0x18, 0x0e, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0d, 0x61, 0x63, 0x63, 0x6f,
  2131. 0x75, 0x6e, 0x74, 0x4d, 0x61, 0x78, 0x4d, 0x6c, 0x75, 0x12, 0x24, 0x0a, 0x0d, 0x61, 0x63, 0x63,
  2132. 0x6f, 0x75, 0x6e, 0x74, 0x4d, 0x61, 0x78, 0x4d, 0x65, 0x6d, 0x18, 0x0f, 0x20, 0x01, 0x28, 0x03,
  2133. 0x52, 0x0d, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x4d, 0x61, 0x78, 0x4d, 0x65, 0x6d, 0x12,
  2134. 0x26, 0x0a, 0x0e, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x4d, 0x61, 0x78, 0x4e, 0x6f, 0x64,
  2135. 0x65, 0x18, 0x10, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0e, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74,
  2136. 0x4d, 0x61, 0x78, 0x4e, 0x6f, 0x64, 0x65, 0x12, 0x30, 0x0a, 0x13, 0x61, 0x63, 0x63, 0x6f, 0x75,
  2137. 0x6e, 0x74, 0x4d, 0x61, 0x78, 0x53, 0x75, 0x62, 0x6d, 0x69, 0x74, 0x4a, 0x6f, 0x62, 0x18, 0x11,
  2138. 0x20, 0x01, 0x28, 0x03, 0x52, 0x13, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x4d, 0x61, 0x78,
  2139. 0x53, 0x75, 0x62, 0x6d, 0x69, 0x74, 0x4a, 0x6f, 0x62, 0x12, 0x2a, 0x0a, 0x10, 0x61, 0x63, 0x63,
  2140. 0x6f, 0x75, 0x6e, 0x74, 0x4d, 0x61, 0x78, 0x52, 0x75, 0x6e, 0x4a, 0x6f, 0x62, 0x18, 0x12, 0x20,
  2141. 0x01, 0x28, 0x03, 0x52, 0x10, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x4d, 0x61, 0x78, 0x52,
  2142. 0x75, 0x6e, 0x4a, 0x6f, 0x62, 0x12, 0x1e, 0x0a, 0x0a, 0x75, 0x73, 0x65, 0x72, 0x4d, 0x69, 0x6e,
  2143. 0x43, 0x70, 0x75, 0x18, 0x13, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0a, 0x75, 0x73, 0x65, 0x72, 0x4d,
  2144. 0x69, 0x6e, 0x43, 0x70, 0x75, 0x12, 0x20, 0x0a, 0x0b, 0x75, 0x73, 0x65, 0x72, 0x4d, 0x69, 0x6e,
  2145. 0x4e, 0x6f, 0x64, 0x65, 0x18, 0x14, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0b, 0x75, 0x73, 0x65, 0x72,
  2146. 0x4d, 0x69, 0x6e, 0x4e, 0x6f, 0x64, 0x65, 0x12, 0x20, 0x0a, 0x0b, 0x6d, 0x61, 0x78, 0x57, 0x61,
  2147. 0x6c, 0x6c, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x15, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0b, 0x6d, 0x61,
  2148. 0x78, 0x57, 0x61, 0x6c, 0x6c, 0x54, 0x69, 0x6d, 0x65, 0x32, 0xf2, 0x03, 0x0a, 0x05, 0x68, 0x70,
  2149. 0x63, 0x41, 0x43, 0x12, 0x30, 0x0a, 0x07, 0x4c, 0x69, 0x73, 0x74, 0x4a, 0x6f, 0x62, 0x12, 0x11,
  2150. 0x2e, 0x68, 0x70, 0x63, 0x41, 0x43, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x4a, 0x6f, 0x62, 0x52, 0x65,
  2151. 0x71, 0x1a, 0x12, 0x2e, 0x68, 0x70, 0x63, 0x41, 0x43, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x4a, 0x6f,
  2152. 0x62, 0x52, 0x65, 0x73, 0x70, 0x12, 0x45, 0x0a, 0x0e, 0x4c, 0x69, 0x73, 0x74, 0x48, 0x69, 0x73,
  2153. 0x74, 0x6f, 0x72, 0x79, 0x4a, 0x6f, 0x62, 0x12, 0x18, 0x2e, 0x68, 0x70, 0x63, 0x41, 0x43, 0x2e,
  2154. 0x4c, 0x69, 0x73, 0x74, 0x48, 0x69, 0x73, 0x74, 0x6f, 0x72, 0x79, 0x4a, 0x6f, 0x62, 0x52, 0x65,
  2155. 0x71, 0x1a, 0x19, 0x2e, 0x68, 0x70, 0x63, 0x41, 0x43, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x48, 0x69,
  2156. 0x73, 0x74, 0x6f, 0x72, 0x79, 0x4a, 0x6f, 0x62, 0x52, 0x65, 0x73, 0x70, 0x12, 0x36, 0x0a, 0x09,
  2157. 0x53, 0x75, 0x62, 0x6d, 0x69, 0x74, 0x4a, 0x6f, 0x62, 0x12, 0x13, 0x2e, 0x68, 0x70, 0x63, 0x41,
  2158. 0x43, 0x2e, 0x53, 0x75, 0x62, 0x6d, 0x69, 0x74, 0x4a, 0x6f, 0x62, 0x52, 0x65, 0x71, 0x1a, 0x14,
  2159. 0x2e, 0x68, 0x70, 0x63, 0x41, 0x43, 0x2e, 0x53, 0x75, 0x62, 0x6d, 0x69, 0x74, 0x4a, 0x6f, 0x62,
  2160. 0x52, 0x65, 0x73, 0x70, 0x12, 0x41, 0x0a, 0x0e, 0x4c, 0x69, 0x73, 0x74, 0x4a, 0x6f, 0x62, 0x4d,
  2161. 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x12, 0x14, 0x2e, 0x68, 0x70, 0x63, 0x41, 0x43, 0x2e, 0x4a,
  2162. 0x6f, 0x62, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x52, 0x65, 0x71, 0x1a, 0x19, 0x2e, 0x68,
  2163. 0x70, 0x63, 0x41, 0x43, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x4a, 0x6f, 0x62, 0x4d, 0x61, 0x6e, 0x61,
  2164. 0x67, 0x65, 0x72, 0x52, 0x65, 0x73, 0x70, 0x12, 0x39, 0x0a, 0x0b, 0x46, 0x69, 0x6c, 0x65, 0x43,
  2165. 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x12, 0x12, 0x2e, 0x68, 0x70, 0x63, 0x41, 0x43, 0x2e, 0x46,
  2166. 0x69, 0x6c, 0x65, 0x44, 0x61, 0x74, 0x61, 0x52, 0x65, 0x71, 0x1a, 0x16, 0x2e, 0x68, 0x70, 0x63,
  2167. 0x41, 0x43, 0x2e, 0x46, 0x69, 0x6c, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x52, 0x65,
  2168. 0x73, 0x70, 0x12, 0x36, 0x0a, 0x11, 0x53, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x51, 0x75, 0x65, 0x75,
  2169. 0x65, 0x42, 0x79, 0x55, 0x73, 0x65, 0x72, 0x12, 0x0f, 0x2e, 0x68, 0x70, 0x63, 0x41, 0x43, 0x2e,
  2170. 0x51, 0x75, 0x65, 0x75, 0x65, 0x52, 0x65, 0x71, 0x1a, 0x10, 0x2e, 0x68, 0x70, 0x63, 0x41, 0x43,
  2171. 0x2e, 0x51, 0x75, 0x65, 0x75, 0x65, 0x52, 0x65, 0x73, 0x70, 0x12, 0x3d, 0x0a, 0x11, 0x51, 0x75,
  2172. 0x65, 0x72, 0x79, 0x51, 0x75, 0x65, 0x75, 0x65, 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x73, 0x12,
  2173. 0x0f, 0x2e, 0x68, 0x70, 0x63, 0x41, 0x43, 0x2e, 0x51, 0x75, 0x65, 0x75, 0x65, 0x52, 0x65, 0x71,
  2174. 0x1a, 0x17, 0x2e, 0x68, 0x70, 0x63, 0x41, 0x43, 0x2e, 0x51, 0x75, 0x65, 0x75, 0x65, 0x44, 0x65,
  2175. 0x74, 0x61, 0x69, 0x6c, 0x73, 0x52, 0x65, 0x73, 0x70, 0x12, 0x43, 0x0a, 0x14, 0x51, 0x75, 0x65,
  2176. 0x72, 0x79, 0x55, 0x73, 0x65, 0x72, 0x51, 0x75, 0x6f, 0x74, 0x61, 0x73, 0x4c, 0x69, 0x6d, 0x69,
  2177. 0x74, 0x12, 0x0f, 0x2e, 0x68, 0x70, 0x63, 0x41, 0x43, 0x2e, 0x51, 0x75, 0x65, 0x75, 0x65, 0x52,
  2178. 0x65, 0x71, 0x1a, 0x1a, 0x2e, 0x68, 0x70, 0x63, 0x41, 0x43, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x51,
  2179. 0x75, 0x6f, 0x74, 0x61, 0x73, 0x4c, 0x69, 0x6d, 0x69, 0x74, 0x52, 0x65, 0x73, 0x70, 0x42, 0x08,
  2180. 0x5a, 0x06, 0x2f, 0x68, 0x70, 0x63, 0x41, 0x43, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
  2181. }
  2182. var (
  2183. file_hpcAC_proto_rawDescOnce sync.Once
  2184. file_hpcAC_proto_rawDescData = file_hpcAC_proto_rawDesc
  2185. )
  2186. func file_hpcAC_proto_rawDescGZIP() []byte {
  2187. file_hpcAC_proto_rawDescOnce.Do(func() {
  2188. file_hpcAC_proto_rawDescData = protoimpl.X.CompressGZIP(file_hpcAC_proto_rawDescData)
  2189. })
  2190. return file_hpcAC_proto_rawDescData
  2191. }
  2192. var file_hpcAC_proto_msgTypes = make([]protoimpl.MessageInfo, 22)
  2193. var file_hpcAC_proto_goTypes = []interface{}{
  2194. (*JobManager)(nil), // 0: hpcAC.JobManager
  2195. (*JobManagerReq)(nil), // 1: hpcAC.JobManagerReq
  2196. (*ListJobManagerResp)(nil), // 2: hpcAC.ListJobManagerResp
  2197. (*Job)(nil), // 3: hpcAC.job
  2198. (*ListJobReq)(nil), // 4: hpcAC.ListJobReq
  2199. (*ListJobResp)(nil), // 5: hpcAC.ListJobResp
  2200. (*HistoryJob)(nil), // 6: hpcAC.historyJob
  2201. (*ListHistoryJobReq)(nil), // 7: hpcAC.ListHistoryJobReq
  2202. (*ListHistoryJobResp)(nil), // 8: hpcAC.ListHistoryJobResp
  2203. (*SubmitJobReq)(nil), // 9: hpcAC.SubmitJobReq
  2204. (*SubmitJobResp)(nil), // 10: hpcAC.SubmitJobResp
  2205. (*MapAppJobInfo)(nil), // 11: hpcAC.MapAppJobInfo
  2206. (*FileContentResp)(nil), // 12: hpcAC.FileContentResp
  2207. (*FileDataReq)(nil), // 13: hpcAC.FileDataReq
  2208. (*FileDataResp)(nil), // 14: hpcAC.FileDataResp
  2209. (*QueueReq)(nil), // 15: hpcAC.QueueReq
  2210. (*QueueResp)(nil), // 16: hpcAC.QueueResp
  2211. (*QueueData)(nil), // 17: hpcAC.QueueData
  2212. (*QueueDetailsResp)(nil), // 18: hpcAC.QueueDetailsResp
  2213. (*QueueDetailsData)(nil), // 19: hpcAC.QueueDetailsData
  2214. (*UserQuotasLimitResp)(nil), // 20: hpcAC.UserQuotasLimitResp
  2215. (*UserQuotasLimitData)(nil), // 21: hpcAC.UserQuotasLimitData
  2216. }
  2217. var file_hpcAC_proto_depIdxs = []int32{
  2218. 0, // 0: hpcAC.ListJobManagerResp.job_managers:type_name -> hpcAC.JobManager
  2219. 3, // 1: hpcAC.ListJobResp.jobs:type_name -> hpcAC.job
  2220. 6, // 2: hpcAC.ListHistoryJobResp.history_jobs:type_name -> hpcAC.historyJob
  2221. 11, // 3: hpcAC.SubmitJobReq.mapAppJobInfo:type_name -> hpcAC.MapAppJobInfo
  2222. 14, // 4: hpcAC.FileContentResp.data:type_name -> hpcAC.FileDataResp
  2223. 17, // 5: hpcAC.QueueResp.data:type_name -> hpcAC.QueueData
  2224. 19, // 6: hpcAC.QueueDetailsResp.data:type_name -> hpcAC.QueueDetailsData
  2225. 21, // 7: hpcAC.UserQuotasLimitResp.data:type_name -> hpcAC.UserQuotasLimitData
  2226. 4, // 8: hpcAC.hpcAC.ListJob:input_type -> hpcAC.ListJobReq
  2227. 7, // 9: hpcAC.hpcAC.ListHistoryJob:input_type -> hpcAC.ListHistoryJobReq
  2228. 9, // 10: hpcAC.hpcAC.SubmitJob:input_type -> hpcAC.SubmitJobReq
  2229. 1, // 11: hpcAC.hpcAC.ListJobManager:input_type -> hpcAC.JobManagerReq
  2230. 13, // 12: hpcAC.hpcAC.FileContent:input_type -> hpcAC.FileDataReq
  2231. 15, // 13: hpcAC.hpcAC.SelectQueueByUser:input_type -> hpcAC.QueueReq
  2232. 15, // 14: hpcAC.hpcAC.QueryQueueDetails:input_type -> hpcAC.QueueReq
  2233. 15, // 15: hpcAC.hpcAC.QueryUserQuotasLimit:input_type -> hpcAC.QueueReq
  2234. 5, // 16: hpcAC.hpcAC.ListJob:output_type -> hpcAC.ListJobResp
  2235. 8, // 17: hpcAC.hpcAC.ListHistoryJob:output_type -> hpcAC.ListHistoryJobResp
  2236. 10, // 18: hpcAC.hpcAC.SubmitJob:output_type -> hpcAC.SubmitJobResp
  2237. 2, // 19: hpcAC.hpcAC.ListJobManager:output_type -> hpcAC.ListJobManagerResp
  2238. 12, // 20: hpcAC.hpcAC.FileContent:output_type -> hpcAC.FileContentResp
  2239. 16, // 21: hpcAC.hpcAC.SelectQueueByUser:output_type -> hpcAC.QueueResp
  2240. 18, // 22: hpcAC.hpcAC.QueryQueueDetails:output_type -> hpcAC.QueueDetailsResp
  2241. 20, // 23: hpcAC.hpcAC.QueryUserQuotasLimit:output_type -> hpcAC.UserQuotasLimitResp
  2242. 16, // [16:24] is the sub-list for method output_type
  2243. 8, // [8:16] is the sub-list for method input_type
  2244. 8, // [8:8] is the sub-list for extension type_name
  2245. 8, // [8:8] is the sub-list for extension extendee
  2246. 0, // [0:8] is the sub-list for field type_name
  2247. }
  2248. func init() { file_hpcAC_proto_init() }
  2249. func file_hpcAC_proto_init() {
  2250. if File_hpcAC_proto != nil {
  2251. return
  2252. }
  2253. if !protoimpl.UnsafeEnabled {
  2254. file_hpcAC_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
  2255. switch v := v.(*JobManager); i {
  2256. case 0:
  2257. return &v.state
  2258. case 1:
  2259. return &v.sizeCache
  2260. case 2:
  2261. return &v.unknownFields
  2262. default:
  2263. return nil
  2264. }
  2265. }
  2266. file_hpcAC_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
  2267. switch v := v.(*JobManagerReq); i {
  2268. case 0:
  2269. return &v.state
  2270. case 1:
  2271. return &v.sizeCache
  2272. case 2:
  2273. return &v.unknownFields
  2274. default:
  2275. return nil
  2276. }
  2277. }
  2278. file_hpcAC_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
  2279. switch v := v.(*ListJobManagerResp); i {
  2280. case 0:
  2281. return &v.state
  2282. case 1:
  2283. return &v.sizeCache
  2284. case 2:
  2285. return &v.unknownFields
  2286. default:
  2287. return nil
  2288. }
  2289. }
  2290. file_hpcAC_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
  2291. switch v := v.(*Job); i {
  2292. case 0:
  2293. return &v.state
  2294. case 1:
  2295. return &v.sizeCache
  2296. case 2:
  2297. return &v.unknownFields
  2298. default:
  2299. return nil
  2300. }
  2301. }
  2302. file_hpcAC_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
  2303. switch v := v.(*ListJobReq); i {
  2304. case 0:
  2305. return &v.state
  2306. case 1:
  2307. return &v.sizeCache
  2308. case 2:
  2309. return &v.unknownFields
  2310. default:
  2311. return nil
  2312. }
  2313. }
  2314. file_hpcAC_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
  2315. switch v := v.(*ListJobResp); i {
  2316. case 0:
  2317. return &v.state
  2318. case 1:
  2319. return &v.sizeCache
  2320. case 2:
  2321. return &v.unknownFields
  2322. default:
  2323. return nil
  2324. }
  2325. }
  2326. file_hpcAC_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {
  2327. switch v := v.(*HistoryJob); i {
  2328. case 0:
  2329. return &v.state
  2330. case 1:
  2331. return &v.sizeCache
  2332. case 2:
  2333. return &v.unknownFields
  2334. default:
  2335. return nil
  2336. }
  2337. }
  2338. file_hpcAC_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} {
  2339. switch v := v.(*ListHistoryJobReq); i {
  2340. case 0:
  2341. return &v.state
  2342. case 1:
  2343. return &v.sizeCache
  2344. case 2:
  2345. return &v.unknownFields
  2346. default:
  2347. return nil
  2348. }
  2349. }
  2350. file_hpcAC_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} {
  2351. switch v := v.(*ListHistoryJobResp); i {
  2352. case 0:
  2353. return &v.state
  2354. case 1:
  2355. return &v.sizeCache
  2356. case 2:
  2357. return &v.unknownFields
  2358. default:
  2359. return nil
  2360. }
  2361. }
  2362. file_hpcAC_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} {
  2363. switch v := v.(*SubmitJobReq); i {
  2364. case 0:
  2365. return &v.state
  2366. case 1:
  2367. return &v.sizeCache
  2368. case 2:
  2369. return &v.unknownFields
  2370. default:
  2371. return nil
  2372. }
  2373. }
  2374. file_hpcAC_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} {
  2375. switch v := v.(*SubmitJobResp); i {
  2376. case 0:
  2377. return &v.state
  2378. case 1:
  2379. return &v.sizeCache
  2380. case 2:
  2381. return &v.unknownFields
  2382. default:
  2383. return nil
  2384. }
  2385. }
  2386. file_hpcAC_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} {
  2387. switch v := v.(*MapAppJobInfo); i {
  2388. case 0:
  2389. return &v.state
  2390. case 1:
  2391. return &v.sizeCache
  2392. case 2:
  2393. return &v.unknownFields
  2394. default:
  2395. return nil
  2396. }
  2397. }
  2398. file_hpcAC_proto_msgTypes[12].Exporter = func(v interface{}, i int) interface{} {
  2399. switch v := v.(*FileContentResp); i {
  2400. case 0:
  2401. return &v.state
  2402. case 1:
  2403. return &v.sizeCache
  2404. case 2:
  2405. return &v.unknownFields
  2406. default:
  2407. return nil
  2408. }
  2409. }
  2410. file_hpcAC_proto_msgTypes[13].Exporter = func(v interface{}, i int) interface{} {
  2411. switch v := v.(*FileDataReq); i {
  2412. case 0:
  2413. return &v.state
  2414. case 1:
  2415. return &v.sizeCache
  2416. case 2:
  2417. return &v.unknownFields
  2418. default:
  2419. return nil
  2420. }
  2421. }
  2422. file_hpcAC_proto_msgTypes[14].Exporter = func(v interface{}, i int) interface{} {
  2423. switch v := v.(*FileDataResp); i {
  2424. case 0:
  2425. return &v.state
  2426. case 1:
  2427. return &v.sizeCache
  2428. case 2:
  2429. return &v.unknownFields
  2430. default:
  2431. return nil
  2432. }
  2433. }
  2434. file_hpcAC_proto_msgTypes[15].Exporter = func(v interface{}, i int) interface{} {
  2435. switch v := v.(*QueueReq); i {
  2436. case 0:
  2437. return &v.state
  2438. case 1:
  2439. return &v.sizeCache
  2440. case 2:
  2441. return &v.unknownFields
  2442. default:
  2443. return nil
  2444. }
  2445. }
  2446. file_hpcAC_proto_msgTypes[16].Exporter = func(v interface{}, i int) interface{} {
  2447. switch v := v.(*QueueResp); i {
  2448. case 0:
  2449. return &v.state
  2450. case 1:
  2451. return &v.sizeCache
  2452. case 2:
  2453. return &v.unknownFields
  2454. default:
  2455. return nil
  2456. }
  2457. }
  2458. file_hpcAC_proto_msgTypes[17].Exporter = func(v interface{}, i int) interface{} {
  2459. switch v := v.(*QueueData); i {
  2460. case 0:
  2461. return &v.state
  2462. case 1:
  2463. return &v.sizeCache
  2464. case 2:
  2465. return &v.unknownFields
  2466. default:
  2467. return nil
  2468. }
  2469. }
  2470. file_hpcAC_proto_msgTypes[18].Exporter = func(v interface{}, i int) interface{} {
  2471. switch v := v.(*QueueDetailsResp); i {
  2472. case 0:
  2473. return &v.state
  2474. case 1:
  2475. return &v.sizeCache
  2476. case 2:
  2477. return &v.unknownFields
  2478. default:
  2479. return nil
  2480. }
  2481. }
  2482. file_hpcAC_proto_msgTypes[19].Exporter = func(v interface{}, i int) interface{} {
  2483. switch v := v.(*QueueDetailsData); i {
  2484. case 0:
  2485. return &v.state
  2486. case 1:
  2487. return &v.sizeCache
  2488. case 2:
  2489. return &v.unknownFields
  2490. default:
  2491. return nil
  2492. }
  2493. }
  2494. file_hpcAC_proto_msgTypes[20].Exporter = func(v interface{}, i int) interface{} {
  2495. switch v := v.(*UserQuotasLimitResp); i {
  2496. case 0:
  2497. return &v.state
  2498. case 1:
  2499. return &v.sizeCache
  2500. case 2:
  2501. return &v.unknownFields
  2502. default:
  2503. return nil
  2504. }
  2505. }
  2506. file_hpcAC_proto_msgTypes[21].Exporter = func(v interface{}, i int) interface{} {
  2507. switch v := v.(*UserQuotasLimitData); i {
  2508. case 0:
  2509. return &v.state
  2510. case 1:
  2511. return &v.sizeCache
  2512. case 2:
  2513. return &v.unknownFields
  2514. default:
  2515. return nil
  2516. }
  2517. }
  2518. }
  2519. type x struct{}
  2520. out := protoimpl.TypeBuilder{
  2521. File: protoimpl.DescBuilder{
  2522. GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
  2523. RawDescriptor: file_hpcAC_proto_rawDesc,
  2524. NumEnums: 0,
  2525. NumMessages: 22,
  2526. NumExtensions: 0,
  2527. NumServices: 1,
  2528. },
  2529. GoTypes: file_hpcAC_proto_goTypes,
  2530. DependencyIndexes: file_hpcAC_proto_depIdxs,
  2531. MessageInfos: file_hpcAC_proto_msgTypes,
  2532. }.Build()
  2533. File_hpcAC_proto = out.File
  2534. file_hpcAC_proto_rawDesc = nil
  2535. file_hpcAC_proto_goTypes = nil
  2536. file_hpcAC_proto_depIdxs = nil
  2537. }

PCM is positioned as Software stack over Cloud, aiming to build the standards and ecology of heterogeneous cloud collaboration for JCC in a non intrusive and autonomous peer-to-peer manner.