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.

pcmCore.pb.go 119 kB

2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357
  1. // Code generated by protoc-gen-go. DO NOT EDIT.
  2. // versions:
  3. // protoc-gen-go v1.30.0
  4. // protoc v3.19.4
  5. // source: pcmCore.proto
  6. package pcmCore
  7. import (
  8. protoreflect "google.golang.org/protobuf/reflect/protoreflect"
  9. protoimpl "google.golang.org/protobuf/runtime/protoimpl"
  10. reflect "reflect"
  11. sync "sync"
  12. )
  13. const (
  14. // Verify that this generated code is sufficiently up-to-date.
  15. _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
  16. // Verify that runtime/protoimpl is sufficiently up-to-date.
  17. _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
  18. )
  19. type MessageStatus int32
  20. const (
  21. MessageStatus_FAIL MessageStatus = 0
  22. MessageStatus_SUCCESS MessageStatus = 1
  23. MessageStatus_UNKNOWN MessageStatus = 2
  24. )
  25. // Enum value maps for MessageStatus.
  26. var (
  27. MessageStatus_name = map[int32]string{
  28. 0: "FAIL",
  29. 1: "SUCCESS",
  30. 2: "UNKNOWN",
  31. }
  32. MessageStatus_value = map[string]int32{
  33. "FAIL": 0,
  34. "SUCCESS": 1,
  35. "UNKNOWN": 2,
  36. }
  37. )
  38. func (x MessageStatus) Enum() *MessageStatus {
  39. p := new(MessageStatus)
  40. *p = x
  41. return p
  42. }
  43. func (x MessageStatus) String() string {
  44. return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
  45. }
  46. func (MessageStatus) Descriptor() protoreflect.EnumDescriptor {
  47. return file_pcmCore_proto_enumTypes[0].Descriptor()
  48. }
  49. func (MessageStatus) Type() protoreflect.EnumType {
  50. return &file_pcmCore_proto_enumTypes[0]
  51. }
  52. func (x MessageStatus) Number() protoreflect.EnumNumber {
  53. return protoreflect.EnumNumber(x)
  54. }
  55. // Deprecated: Use MessageStatus.Descriptor instead.
  56. func (MessageStatus) EnumDescriptor() ([]byte, []int) {
  57. return file_pcmCore_proto_rawDescGZIP(), []int{0}
  58. }
  59. type SyncInfoReq struct {
  60. state protoimpl.MessageState
  61. sizeCache protoimpl.SizeCache
  62. unknownFields protoimpl.UnknownFields
  63. ParticipantId int64 `protobuf:"varint,1,opt,name=participantId,proto3" json:"participantId,omitempty"`
  64. HpcInfoList []*HpcInfo `protobuf:"bytes,2,rep,name=HpcInfoList,proto3" json:"HpcInfoList,omitempty"`
  65. CloudInfoList []*CloudInfo `protobuf:"bytes,3,rep,name=CloudInfoList,proto3" json:"CloudInfoList,omitempty"`
  66. AiInfoList []*AiInfo `protobuf:"bytes,4,rep,name=AiInfoList,proto3" json:"AiInfoList,omitempty"`
  67. VmInfoList []*VmInfo `protobuf:"bytes,5,rep,name=VmInfoList,proto3" json:"VmInfoList,omitempty"`
  68. }
  69. func (x *SyncInfoReq) Reset() {
  70. *x = SyncInfoReq{}
  71. if protoimpl.UnsafeEnabled {
  72. mi := &file_pcmCore_proto_msgTypes[0]
  73. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  74. ms.StoreMessageInfo(mi)
  75. }
  76. }
  77. func (x *SyncInfoReq) String() string {
  78. return protoimpl.X.MessageStringOf(x)
  79. }
  80. func (*SyncInfoReq) ProtoMessage() {}
  81. func (x *SyncInfoReq) ProtoReflect() protoreflect.Message {
  82. mi := &file_pcmCore_proto_msgTypes[0]
  83. if protoimpl.UnsafeEnabled && x != nil {
  84. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  85. if ms.LoadMessageInfo() == nil {
  86. ms.StoreMessageInfo(mi)
  87. }
  88. return ms
  89. }
  90. return mi.MessageOf(x)
  91. }
  92. // Deprecated: Use SyncInfoReq.ProtoReflect.Descriptor instead.
  93. func (*SyncInfoReq) Descriptor() ([]byte, []int) {
  94. return file_pcmCore_proto_rawDescGZIP(), []int{0}
  95. }
  96. func (x *SyncInfoReq) GetParticipantId() int64 {
  97. if x != nil {
  98. return x.ParticipantId
  99. }
  100. return 0
  101. }
  102. func (x *SyncInfoReq) GetHpcInfoList() []*HpcInfo {
  103. if x != nil {
  104. return x.HpcInfoList
  105. }
  106. return nil
  107. }
  108. func (x *SyncInfoReq) GetCloudInfoList() []*CloudInfo {
  109. if x != nil {
  110. return x.CloudInfoList
  111. }
  112. return nil
  113. }
  114. func (x *SyncInfoReq) GetAiInfoList() []*AiInfo {
  115. if x != nil {
  116. return x.AiInfoList
  117. }
  118. return nil
  119. }
  120. func (x *SyncInfoReq) GetVmInfoList() []*VmInfo {
  121. if x != nil {
  122. return x.VmInfoList
  123. }
  124. return nil
  125. }
  126. type AiInfo struct {
  127. state protoimpl.MessageState
  128. sizeCache protoimpl.SizeCache
  129. unknownFields protoimpl.UnknownFields
  130. ParticipantId int64 `protobuf:"varint,1,opt,name=participantId,proto3" json:"participantId,omitempty"`
  131. TaskId int64 `protobuf:"varint,2,opt,name=taskId,proto3" json:"taskId,omitempty"`
  132. ProjectId string `protobuf:"bytes,3,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"`
  133. Name string `protobuf:"bytes,4,opt,name=name,proto3" json:"name,omitempty"`
  134. Status string `protobuf:"bytes,5,opt,name=status,proto3" json:"status,omitempty"`
  135. StartTime string `protobuf:"bytes,6,opt,name=startTime,proto3" json:"startTime,omitempty"`
  136. RunningTime int64 `protobuf:"varint,7,opt,name=runningTime,proto3" json:"runningTime,omitempty"`
  137. Result string `protobuf:"bytes,8,opt,name=result,proto3" json:"result,omitempty"`
  138. JobId string `protobuf:"bytes,9,opt,name=jobId,proto3" json:"jobId,omitempty"`
  139. CreateTime string `protobuf:"bytes,10,opt,name=createTime,proto3" json:"createTime,omitempty"`
  140. ImageUrl string `protobuf:"bytes,11,opt,name=imageUrl,proto3" json:"imageUrl,omitempty"`
  141. Command string `protobuf:"bytes,12,opt,name=command,proto3" json:"command,omitempty"`
  142. FlavorId string `protobuf:"bytes,13,opt,name=flavorId,proto3" json:"flavorId,omitempty"`
  143. SubscriptionId string `protobuf:"bytes,14,opt,name=subscriptionId,proto3" json:"subscriptionId,omitempty"`
  144. ItemVersionId string `protobuf:"bytes,15,opt,name=itemVersionId,proto3" json:"itemVersionId,omitempty"`
  145. }
  146. func (x *AiInfo) Reset() {
  147. *x = AiInfo{}
  148. if protoimpl.UnsafeEnabled {
  149. mi := &file_pcmCore_proto_msgTypes[1]
  150. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  151. ms.StoreMessageInfo(mi)
  152. }
  153. }
  154. func (x *AiInfo) String() string {
  155. return protoimpl.X.MessageStringOf(x)
  156. }
  157. func (*AiInfo) ProtoMessage() {}
  158. func (x *AiInfo) ProtoReflect() protoreflect.Message {
  159. mi := &file_pcmCore_proto_msgTypes[1]
  160. if protoimpl.UnsafeEnabled && x != nil {
  161. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  162. if ms.LoadMessageInfo() == nil {
  163. ms.StoreMessageInfo(mi)
  164. }
  165. return ms
  166. }
  167. return mi.MessageOf(x)
  168. }
  169. // Deprecated: Use AiInfo.ProtoReflect.Descriptor instead.
  170. func (*AiInfo) Descriptor() ([]byte, []int) {
  171. return file_pcmCore_proto_rawDescGZIP(), []int{1}
  172. }
  173. func (x *AiInfo) GetParticipantId() int64 {
  174. if x != nil {
  175. return x.ParticipantId
  176. }
  177. return 0
  178. }
  179. func (x *AiInfo) GetTaskId() int64 {
  180. if x != nil {
  181. return x.TaskId
  182. }
  183. return 0
  184. }
  185. func (x *AiInfo) GetProjectId() string {
  186. if x != nil {
  187. return x.ProjectId
  188. }
  189. return ""
  190. }
  191. func (x *AiInfo) GetName() string {
  192. if x != nil {
  193. return x.Name
  194. }
  195. return ""
  196. }
  197. func (x *AiInfo) GetStatus() string {
  198. if x != nil {
  199. return x.Status
  200. }
  201. return ""
  202. }
  203. func (x *AiInfo) GetStartTime() string {
  204. if x != nil {
  205. return x.StartTime
  206. }
  207. return ""
  208. }
  209. func (x *AiInfo) GetRunningTime() int64 {
  210. if x != nil {
  211. return x.RunningTime
  212. }
  213. return 0
  214. }
  215. func (x *AiInfo) GetResult() string {
  216. if x != nil {
  217. return x.Result
  218. }
  219. return ""
  220. }
  221. func (x *AiInfo) GetJobId() string {
  222. if x != nil {
  223. return x.JobId
  224. }
  225. return ""
  226. }
  227. func (x *AiInfo) GetCreateTime() string {
  228. if x != nil {
  229. return x.CreateTime
  230. }
  231. return ""
  232. }
  233. func (x *AiInfo) GetImageUrl() string {
  234. if x != nil {
  235. return x.ImageUrl
  236. }
  237. return ""
  238. }
  239. func (x *AiInfo) GetCommand() string {
  240. if x != nil {
  241. return x.Command
  242. }
  243. return ""
  244. }
  245. func (x *AiInfo) GetFlavorId() string {
  246. if x != nil {
  247. return x.FlavorId
  248. }
  249. return ""
  250. }
  251. func (x *AiInfo) GetSubscriptionId() string {
  252. if x != nil {
  253. return x.SubscriptionId
  254. }
  255. return ""
  256. }
  257. func (x *AiInfo) GetItemVersionId() string {
  258. if x != nil {
  259. return x.ItemVersionId
  260. }
  261. return ""
  262. }
  263. type CloudInfo struct {
  264. state protoimpl.MessageState
  265. sizeCache protoimpl.SizeCache
  266. unknownFields protoimpl.UnknownFields
  267. Participant int64 `protobuf:"varint,1,opt,name=participant,proto3" json:"participant,omitempty"`
  268. TaskId int64 `protobuf:"varint,2,opt,name=taskId,proto3" json:"taskId,omitempty"`
  269. ApiVersion string `protobuf:"bytes,3,opt,name=apiVersion,proto3" json:"apiVersion,omitempty"`
  270. Kind string `protobuf:"bytes,4,opt,name=kind,proto3" json:"kind,omitempty"`
  271. Namespace string `protobuf:"bytes,5,opt,name=namespace,proto3" json:"namespace,omitempty"`
  272. Name string `protobuf:"bytes,6,opt,name=name,proto3" json:"name,omitempty"`
  273. Status string `protobuf:"bytes,7,opt,name=status,proto3" json:"status,omitempty"`
  274. StartTime string `protobuf:"bytes,8,opt,name=startTime,proto3" json:"startTime,omitempty"`
  275. RunningTime int64 `protobuf:"varint,9,opt,name=runningTime,proto3" json:"runningTime,omitempty"`
  276. Result string `protobuf:"bytes,10,opt,name=result,proto3" json:"result,omitempty"`
  277. YamlString string `protobuf:"bytes,11,opt,name=yamlString,proto3" json:"yamlString,omitempty"`
  278. Id int64 `protobuf:"varint,12,opt,name=id,proto3" json:"id,omitempty"`
  279. }
  280. func (x *CloudInfo) Reset() {
  281. *x = CloudInfo{}
  282. if protoimpl.UnsafeEnabled {
  283. mi := &file_pcmCore_proto_msgTypes[2]
  284. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  285. ms.StoreMessageInfo(mi)
  286. }
  287. }
  288. func (x *CloudInfo) String() string {
  289. return protoimpl.X.MessageStringOf(x)
  290. }
  291. func (*CloudInfo) ProtoMessage() {}
  292. func (x *CloudInfo) ProtoReflect() protoreflect.Message {
  293. mi := &file_pcmCore_proto_msgTypes[2]
  294. if protoimpl.UnsafeEnabled && x != nil {
  295. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  296. if ms.LoadMessageInfo() == nil {
  297. ms.StoreMessageInfo(mi)
  298. }
  299. return ms
  300. }
  301. return mi.MessageOf(x)
  302. }
  303. // Deprecated: Use CloudInfo.ProtoReflect.Descriptor instead.
  304. func (*CloudInfo) Descriptor() ([]byte, []int) {
  305. return file_pcmCore_proto_rawDescGZIP(), []int{2}
  306. }
  307. func (x *CloudInfo) GetParticipant() int64 {
  308. if x != nil {
  309. return x.Participant
  310. }
  311. return 0
  312. }
  313. func (x *CloudInfo) GetTaskId() int64 {
  314. if x != nil {
  315. return x.TaskId
  316. }
  317. return 0
  318. }
  319. func (x *CloudInfo) GetApiVersion() string {
  320. if x != nil {
  321. return x.ApiVersion
  322. }
  323. return ""
  324. }
  325. func (x *CloudInfo) GetKind() string {
  326. if x != nil {
  327. return x.Kind
  328. }
  329. return ""
  330. }
  331. func (x *CloudInfo) GetNamespace() string {
  332. if x != nil {
  333. return x.Namespace
  334. }
  335. return ""
  336. }
  337. func (x *CloudInfo) GetName() string {
  338. if x != nil {
  339. return x.Name
  340. }
  341. return ""
  342. }
  343. func (x *CloudInfo) GetStatus() string {
  344. if x != nil {
  345. return x.Status
  346. }
  347. return ""
  348. }
  349. func (x *CloudInfo) GetStartTime() string {
  350. if x != nil {
  351. return x.StartTime
  352. }
  353. return ""
  354. }
  355. func (x *CloudInfo) GetRunningTime() int64 {
  356. if x != nil {
  357. return x.RunningTime
  358. }
  359. return 0
  360. }
  361. func (x *CloudInfo) GetResult() string {
  362. if x != nil {
  363. return x.Result
  364. }
  365. return ""
  366. }
  367. func (x *CloudInfo) GetYamlString() string {
  368. if x != nil {
  369. return x.YamlString
  370. }
  371. return ""
  372. }
  373. func (x *CloudInfo) GetId() int64 {
  374. if x != nil {
  375. return x.Id
  376. }
  377. return 0
  378. }
  379. type VmInfo struct {
  380. state protoimpl.MessageState
  381. sizeCache protoimpl.SizeCache
  382. unknownFields protoimpl.UnknownFields
  383. ParticipantId int64 `protobuf:"varint,1,opt,name=participantId,proto3" json:"participantId,omitempty"`
  384. TaskId int64 `protobuf:"varint,2,opt,name=taskId,proto3" json:"taskId,omitempty"`
  385. Name string `protobuf:"bytes,3,opt,name=name,proto3" json:"name,omitempty"`
  386. FlavorRef string `protobuf:"bytes,4,opt,name=flavor_ref,json=flavorRef,proto3" json:"flavor_ref,omitempty"`
  387. ImageRef string `protobuf:"bytes,5,opt,name=image_ref,json=imageRef,proto3" json:"image_ref,omitempty"`
  388. NetworkUuid string `protobuf:"bytes,6,opt,name=network_uuid,json=networkUuid,proto3" json:"network_uuid,omitempty"`
  389. BlockUuid string `protobuf:"bytes,7,opt,name=block_uuid,json=blockUuid,proto3" json:"block_uuid,omitempty"`
  390. SourceType string `protobuf:"bytes,8,opt,name=source_type,json=sourceType,proto3" json:"source_type,omitempty"`
  391. DeleteOnTermination bool `protobuf:"varint,9,opt,name=delete_on_termination,json=deleteOnTermination,proto3" json:"delete_on_termination,omitempty"`
  392. State string `protobuf:"bytes,10,opt,name=state,proto3" json:"state,omitempty"`
  393. }
  394. func (x *VmInfo) Reset() {
  395. *x = VmInfo{}
  396. if protoimpl.UnsafeEnabled {
  397. mi := &file_pcmCore_proto_msgTypes[3]
  398. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  399. ms.StoreMessageInfo(mi)
  400. }
  401. }
  402. func (x *VmInfo) String() string {
  403. return protoimpl.X.MessageStringOf(x)
  404. }
  405. func (*VmInfo) ProtoMessage() {}
  406. func (x *VmInfo) ProtoReflect() protoreflect.Message {
  407. mi := &file_pcmCore_proto_msgTypes[3]
  408. if protoimpl.UnsafeEnabled && x != nil {
  409. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  410. if ms.LoadMessageInfo() == nil {
  411. ms.StoreMessageInfo(mi)
  412. }
  413. return ms
  414. }
  415. return mi.MessageOf(x)
  416. }
  417. // Deprecated: Use VmInfo.ProtoReflect.Descriptor instead.
  418. func (*VmInfo) Descriptor() ([]byte, []int) {
  419. return file_pcmCore_proto_rawDescGZIP(), []int{3}
  420. }
  421. func (x *VmInfo) GetParticipantId() int64 {
  422. if x != nil {
  423. return x.ParticipantId
  424. }
  425. return 0
  426. }
  427. func (x *VmInfo) GetTaskId() int64 {
  428. if x != nil {
  429. return x.TaskId
  430. }
  431. return 0
  432. }
  433. func (x *VmInfo) GetName() string {
  434. if x != nil {
  435. return x.Name
  436. }
  437. return ""
  438. }
  439. func (x *VmInfo) GetFlavorRef() string {
  440. if x != nil {
  441. return x.FlavorRef
  442. }
  443. return ""
  444. }
  445. func (x *VmInfo) GetImageRef() string {
  446. if x != nil {
  447. return x.ImageRef
  448. }
  449. return ""
  450. }
  451. func (x *VmInfo) GetNetworkUuid() string {
  452. if x != nil {
  453. return x.NetworkUuid
  454. }
  455. return ""
  456. }
  457. func (x *VmInfo) GetBlockUuid() string {
  458. if x != nil {
  459. return x.BlockUuid
  460. }
  461. return ""
  462. }
  463. func (x *VmInfo) GetSourceType() string {
  464. if x != nil {
  465. return x.SourceType
  466. }
  467. return ""
  468. }
  469. func (x *VmInfo) GetDeleteOnTermination() bool {
  470. if x != nil {
  471. return x.DeleteOnTermination
  472. }
  473. return false
  474. }
  475. func (x *VmInfo) GetState() string {
  476. if x != nil {
  477. return x.State
  478. }
  479. return ""
  480. }
  481. type HpcInfo struct {
  482. state protoimpl.MessageState
  483. sizeCache protoimpl.SizeCache
  484. unknownFields protoimpl.UnknownFields
  485. ParticipantId int64 `protobuf:"varint,1,opt,name=participantId,proto3" json:"participantId,omitempty"`
  486. TaskId int64 `protobuf:"varint,2,opt,name=taskId,proto3" json:"taskId,omitempty"`
  487. JobId string `protobuf:"bytes,3,opt,name=jobId,proto3" json:"jobId,omitempty"`
  488. Name string `protobuf:"bytes,4,opt,name=name,proto3" json:"name,omitempty"`
  489. Status string `protobuf:"bytes,5,opt,name=status,proto3" json:"status,omitempty"`
  490. StartTime string `protobuf:"bytes,6,opt,name=startTime,proto3" json:"startTime,omitempty"`
  491. RunningTime int64 `protobuf:"varint,7,opt,name=runningTime,proto3" json:"runningTime,omitempty"`
  492. Result string `protobuf:"bytes,8,opt,name=result,proto3" json:"result,omitempty"`
  493. WorkDir string `protobuf:"bytes,9,opt,name=workDir,proto3" json:"workDir,omitempty"`
  494. WallTime string `protobuf:"bytes,10,opt,name=wallTime,proto3" json:"wallTime,omitempty"`
  495. CmdScript string `protobuf:"bytes,11,opt,name=cmdScript,proto3" json:"cmdScript,omitempty"`
  496. DerivedEs string `protobuf:"bytes,12,opt,name=derivedEs,proto3" json:"derivedEs,omitempty"`
  497. Cluster string `protobuf:"bytes,13,opt,name=cluster,proto3" json:"cluster,omitempty"`
  498. BlockId string `protobuf:"bytes,14,opt,name=blockId,proto3" json:"blockId,omitempty"`
  499. AllocNodes uint32 `protobuf:"varint,15,opt,name=allocNodes,proto3" json:"allocNodes,omitempty"`
  500. AllocCpu uint32 `protobuf:"varint,16,opt,name=allocCpu,proto3" json:"allocCpu,omitempty"`
  501. Version string `protobuf:"bytes,17,opt,name=version,proto3" json:"version,omitempty"`
  502. Account string `protobuf:"bytes,18,opt,name=account,proto3" json:"account,omitempty"`
  503. ExitCode uint32 `protobuf:"varint,19,opt,name=exitCode,proto3" json:"exitCode,omitempty"`
  504. AssocId uint32 `protobuf:"varint,20,opt,name=assocId,proto3" json:"assocId,omitempty"`
  505. AppType string `protobuf:"bytes,21,opt,name=appType,proto3" json:"appType,omitempty"`
  506. AppName string `protobuf:"bytes,22,opt,name=appName,proto3" json:"appName,omitempty"`
  507. Queue string `protobuf:"bytes,23,opt,name=queue,proto3" json:"queue,omitempty"`
  508. SubmitType string `protobuf:"bytes,24,opt,name=submitType,proto3" json:"submitType,omitempty"`
  509. NNode string `protobuf:"bytes,25,opt,name=nNode,proto3" json:"nNode,omitempty"`
  510. StdOutFile string `protobuf:"bytes,26,opt,name=stdOutFile,proto3" json:"stdOutFile,omitempty"`
  511. StdErrFile string `protobuf:"bytes,27,opt,name=stdErrFile,proto3" json:"stdErrFile,omitempty"`
  512. StdInput string `protobuf:"bytes,28,opt,name=stdInput,proto3" json:"stdInput,omitempty"`
  513. Environment string `protobuf:"bytes,29,opt,name=environment,proto3" json:"environment,omitempty"`
  514. }
  515. func (x *HpcInfo) Reset() {
  516. *x = HpcInfo{}
  517. if protoimpl.UnsafeEnabled {
  518. mi := &file_pcmCore_proto_msgTypes[4]
  519. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  520. ms.StoreMessageInfo(mi)
  521. }
  522. }
  523. func (x *HpcInfo) String() string {
  524. return protoimpl.X.MessageStringOf(x)
  525. }
  526. func (*HpcInfo) ProtoMessage() {}
  527. func (x *HpcInfo) ProtoReflect() protoreflect.Message {
  528. mi := &file_pcmCore_proto_msgTypes[4]
  529. if protoimpl.UnsafeEnabled && x != nil {
  530. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  531. if ms.LoadMessageInfo() == nil {
  532. ms.StoreMessageInfo(mi)
  533. }
  534. return ms
  535. }
  536. return mi.MessageOf(x)
  537. }
  538. // Deprecated: Use HpcInfo.ProtoReflect.Descriptor instead.
  539. func (*HpcInfo) Descriptor() ([]byte, []int) {
  540. return file_pcmCore_proto_rawDescGZIP(), []int{4}
  541. }
  542. func (x *HpcInfo) GetParticipantId() int64 {
  543. if x != nil {
  544. return x.ParticipantId
  545. }
  546. return 0
  547. }
  548. func (x *HpcInfo) GetTaskId() int64 {
  549. if x != nil {
  550. return x.TaskId
  551. }
  552. return 0
  553. }
  554. func (x *HpcInfo) GetJobId() string {
  555. if x != nil {
  556. return x.JobId
  557. }
  558. return ""
  559. }
  560. func (x *HpcInfo) GetName() string {
  561. if x != nil {
  562. return x.Name
  563. }
  564. return ""
  565. }
  566. func (x *HpcInfo) GetStatus() string {
  567. if x != nil {
  568. return x.Status
  569. }
  570. return ""
  571. }
  572. func (x *HpcInfo) GetStartTime() string {
  573. if x != nil {
  574. return x.StartTime
  575. }
  576. return ""
  577. }
  578. func (x *HpcInfo) GetRunningTime() int64 {
  579. if x != nil {
  580. return x.RunningTime
  581. }
  582. return 0
  583. }
  584. func (x *HpcInfo) GetResult() string {
  585. if x != nil {
  586. return x.Result
  587. }
  588. return ""
  589. }
  590. func (x *HpcInfo) GetWorkDir() string {
  591. if x != nil {
  592. return x.WorkDir
  593. }
  594. return ""
  595. }
  596. func (x *HpcInfo) GetWallTime() string {
  597. if x != nil {
  598. return x.WallTime
  599. }
  600. return ""
  601. }
  602. func (x *HpcInfo) GetCmdScript() string {
  603. if x != nil {
  604. return x.CmdScript
  605. }
  606. return ""
  607. }
  608. func (x *HpcInfo) GetDerivedEs() string {
  609. if x != nil {
  610. return x.DerivedEs
  611. }
  612. return ""
  613. }
  614. func (x *HpcInfo) GetCluster() string {
  615. if x != nil {
  616. return x.Cluster
  617. }
  618. return ""
  619. }
  620. func (x *HpcInfo) GetBlockId() string {
  621. if x != nil {
  622. return x.BlockId
  623. }
  624. return ""
  625. }
  626. func (x *HpcInfo) GetAllocNodes() uint32 {
  627. if x != nil {
  628. return x.AllocNodes
  629. }
  630. return 0
  631. }
  632. func (x *HpcInfo) GetAllocCpu() uint32 {
  633. if x != nil {
  634. return x.AllocCpu
  635. }
  636. return 0
  637. }
  638. func (x *HpcInfo) GetVersion() string {
  639. if x != nil {
  640. return x.Version
  641. }
  642. return ""
  643. }
  644. func (x *HpcInfo) GetAccount() string {
  645. if x != nil {
  646. return x.Account
  647. }
  648. return ""
  649. }
  650. func (x *HpcInfo) GetExitCode() uint32 {
  651. if x != nil {
  652. return x.ExitCode
  653. }
  654. return 0
  655. }
  656. func (x *HpcInfo) GetAssocId() uint32 {
  657. if x != nil {
  658. return x.AssocId
  659. }
  660. return 0
  661. }
  662. func (x *HpcInfo) GetAppType() string {
  663. if x != nil {
  664. return x.AppType
  665. }
  666. return ""
  667. }
  668. func (x *HpcInfo) GetAppName() string {
  669. if x != nil {
  670. return x.AppName
  671. }
  672. return ""
  673. }
  674. func (x *HpcInfo) GetQueue() string {
  675. if x != nil {
  676. return x.Queue
  677. }
  678. return ""
  679. }
  680. func (x *HpcInfo) GetSubmitType() string {
  681. if x != nil {
  682. return x.SubmitType
  683. }
  684. return ""
  685. }
  686. func (x *HpcInfo) GetNNode() string {
  687. if x != nil {
  688. return x.NNode
  689. }
  690. return ""
  691. }
  692. func (x *HpcInfo) GetStdOutFile() string {
  693. if x != nil {
  694. return x.StdOutFile
  695. }
  696. return ""
  697. }
  698. func (x *HpcInfo) GetStdErrFile() string {
  699. if x != nil {
  700. return x.StdErrFile
  701. }
  702. return ""
  703. }
  704. func (x *HpcInfo) GetStdInput() string {
  705. if x != nil {
  706. return x.StdInput
  707. }
  708. return ""
  709. }
  710. func (x *HpcInfo) GetEnvironment() string {
  711. if x != nil {
  712. return x.Environment
  713. }
  714. return ""
  715. }
  716. type SyncInfoResp struct {
  717. state protoimpl.MessageState
  718. sizeCache protoimpl.SizeCache
  719. unknownFields protoimpl.UnknownFields
  720. Code int64 `protobuf:"varint,1,opt,name=code,proto3" json:"code,omitempty"`
  721. Msg string `protobuf:"bytes,2,opt,name=msg,proto3" json:"msg,omitempty"`
  722. }
  723. func (x *SyncInfoResp) Reset() {
  724. *x = SyncInfoResp{}
  725. if protoimpl.UnsafeEnabled {
  726. mi := &file_pcmCore_proto_msgTypes[5]
  727. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  728. ms.StoreMessageInfo(mi)
  729. }
  730. }
  731. func (x *SyncInfoResp) String() string {
  732. return protoimpl.X.MessageStringOf(x)
  733. }
  734. func (*SyncInfoResp) ProtoMessage() {}
  735. func (x *SyncInfoResp) ProtoReflect() protoreflect.Message {
  736. mi := &file_pcmCore_proto_msgTypes[5]
  737. if protoimpl.UnsafeEnabled && x != nil {
  738. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  739. if ms.LoadMessageInfo() == nil {
  740. ms.StoreMessageInfo(mi)
  741. }
  742. return ms
  743. }
  744. return mi.MessageOf(x)
  745. }
  746. // Deprecated: Use SyncInfoResp.ProtoReflect.Descriptor instead.
  747. func (*SyncInfoResp) Descriptor() ([]byte, []int) {
  748. return file_pcmCore_proto_rawDescGZIP(), []int{5}
  749. }
  750. func (x *SyncInfoResp) GetCode() int64 {
  751. if x != nil {
  752. return x.Code
  753. }
  754. return 0
  755. }
  756. func (x *SyncInfoResp) GetMsg() string {
  757. if x != nil {
  758. return x.Msg
  759. }
  760. return ""
  761. }
  762. type InfoListReq struct {
  763. state protoimpl.MessageState
  764. sizeCache protoimpl.SizeCache
  765. unknownFields protoimpl.UnknownFields
  766. ParticipantId int64 `protobuf:"varint,1,opt,name=participantId,proto3" json:"participantId,omitempty"`
  767. }
  768. func (x *InfoListReq) Reset() {
  769. *x = InfoListReq{}
  770. if protoimpl.UnsafeEnabled {
  771. mi := &file_pcmCore_proto_msgTypes[6]
  772. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  773. ms.StoreMessageInfo(mi)
  774. }
  775. }
  776. func (x *InfoListReq) String() string {
  777. return protoimpl.X.MessageStringOf(x)
  778. }
  779. func (*InfoListReq) ProtoMessage() {}
  780. func (x *InfoListReq) ProtoReflect() protoreflect.Message {
  781. mi := &file_pcmCore_proto_msgTypes[6]
  782. if protoimpl.UnsafeEnabled && x != nil {
  783. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  784. if ms.LoadMessageInfo() == nil {
  785. ms.StoreMessageInfo(mi)
  786. }
  787. return ms
  788. }
  789. return mi.MessageOf(x)
  790. }
  791. // Deprecated: Use InfoListReq.ProtoReflect.Descriptor instead.
  792. func (*InfoListReq) Descriptor() ([]byte, []int) {
  793. return file_pcmCore_proto_rawDescGZIP(), []int{6}
  794. }
  795. func (x *InfoListReq) GetParticipantId() int64 {
  796. if x != nil {
  797. return x.ParticipantId
  798. }
  799. return 0
  800. }
  801. type InfoListResp struct {
  802. state protoimpl.MessageState
  803. sizeCache protoimpl.SizeCache
  804. unknownFields protoimpl.UnknownFields
  805. HpcInfoList []*HpcInfo `protobuf:"bytes,1,rep,name=HpcInfoList,proto3" json:"HpcInfoList,omitempty"`
  806. CloudInfoList []*CloudInfo `protobuf:"bytes,2,rep,name=CloudInfoList,proto3" json:"CloudInfoList,omitempty"`
  807. AiInfoList []*AiInfo `protobuf:"bytes,3,rep,name=AiInfoList,proto3" json:"AiInfoList,omitempty"`
  808. }
  809. func (x *InfoListResp) Reset() {
  810. *x = InfoListResp{}
  811. if protoimpl.UnsafeEnabled {
  812. mi := &file_pcmCore_proto_msgTypes[7]
  813. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  814. ms.StoreMessageInfo(mi)
  815. }
  816. }
  817. func (x *InfoListResp) String() string {
  818. return protoimpl.X.MessageStringOf(x)
  819. }
  820. func (*InfoListResp) ProtoMessage() {}
  821. func (x *InfoListResp) ProtoReflect() protoreflect.Message {
  822. mi := &file_pcmCore_proto_msgTypes[7]
  823. if protoimpl.UnsafeEnabled && x != nil {
  824. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  825. if ms.LoadMessageInfo() == nil {
  826. ms.StoreMessageInfo(mi)
  827. }
  828. return ms
  829. }
  830. return mi.MessageOf(x)
  831. }
  832. // Deprecated: Use InfoListResp.ProtoReflect.Descriptor instead.
  833. func (*InfoListResp) Descriptor() ([]byte, []int) {
  834. return file_pcmCore_proto_rawDescGZIP(), []int{7}
  835. }
  836. func (x *InfoListResp) GetHpcInfoList() []*HpcInfo {
  837. if x != nil {
  838. return x.HpcInfoList
  839. }
  840. return nil
  841. }
  842. func (x *InfoListResp) GetCloudInfoList() []*CloudInfo {
  843. if x != nil {
  844. return x.CloudInfoList
  845. }
  846. return nil
  847. }
  848. func (x *InfoListResp) GetAiInfoList() []*AiInfo {
  849. if x != nil {
  850. return x.AiInfoList
  851. }
  852. return nil
  853. }
  854. // participantTenant 租户信息
  855. type ParticipantTenant struct {
  856. state protoimpl.MessageState
  857. sizeCache protoimpl.SizeCache
  858. unknownFields protoimpl.UnknownFields
  859. TenantName string `protobuf:"bytes,1,opt,name=tenantName,proto3" json:"tenantName,omitempty"` // 租户名称
  860. }
  861. func (x *ParticipantTenant) Reset() {
  862. *x = ParticipantTenant{}
  863. if protoimpl.UnsafeEnabled {
  864. mi := &file_pcmCore_proto_msgTypes[8]
  865. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  866. ms.StoreMessageInfo(mi)
  867. }
  868. }
  869. func (x *ParticipantTenant) String() string {
  870. return protoimpl.X.MessageStringOf(x)
  871. }
  872. func (*ParticipantTenant) ProtoMessage() {}
  873. func (x *ParticipantTenant) ProtoReflect() protoreflect.Message {
  874. mi := &file_pcmCore_proto_msgTypes[8]
  875. if protoimpl.UnsafeEnabled && x != nil {
  876. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  877. if ms.LoadMessageInfo() == nil {
  878. ms.StoreMessageInfo(mi)
  879. }
  880. return ms
  881. }
  882. return mi.MessageOf(x)
  883. }
  884. // Deprecated: Use ParticipantTenant.ProtoReflect.Descriptor instead.
  885. func (*ParticipantTenant) Descriptor() ([]byte, []int) {
  886. return file_pcmCore_proto_rawDescGZIP(), []int{8}
  887. }
  888. func (x *ParticipantTenant) GetTenantName() string {
  889. if x != nil {
  890. return x.TenantName
  891. }
  892. return ""
  893. }
  894. // 集群标签
  895. type ParticipantLabel struct {
  896. state protoimpl.MessageState
  897. sizeCache protoimpl.SizeCache
  898. unknownFields protoimpl.UnknownFields
  899. Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"` // id
  900. Key string `protobuf:"bytes,2,opt,name=key,proto3" json:"key,omitempty"` // 标签名
  901. Value string `protobuf:"bytes,3,opt,name=value,proto3" json:"value,omitempty"` // 标签值
  902. }
  903. func (x *ParticipantLabel) Reset() {
  904. *x = ParticipantLabel{}
  905. if protoimpl.UnsafeEnabled {
  906. mi := &file_pcmCore_proto_msgTypes[9]
  907. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  908. ms.StoreMessageInfo(mi)
  909. }
  910. }
  911. func (x *ParticipantLabel) String() string {
  912. return protoimpl.X.MessageStringOf(x)
  913. }
  914. func (*ParticipantLabel) ProtoMessage() {}
  915. func (x *ParticipantLabel) ProtoReflect() protoreflect.Message {
  916. mi := &file_pcmCore_proto_msgTypes[9]
  917. if protoimpl.UnsafeEnabled && x != nil {
  918. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  919. if ms.LoadMessageInfo() == nil {
  920. ms.StoreMessageInfo(mi)
  921. }
  922. return ms
  923. }
  924. return mi.MessageOf(x)
  925. }
  926. // Deprecated: Use ParticipantLabel.ProtoReflect.Descriptor instead.
  927. func (*ParticipantLabel) Descriptor() ([]byte, []int) {
  928. return file_pcmCore_proto_rawDescGZIP(), []int{9}
  929. }
  930. func (x *ParticipantLabel) GetId() int64 {
  931. if x != nil {
  932. return x.Id
  933. }
  934. return 0
  935. }
  936. func (x *ParticipantLabel) GetKey() string {
  937. if x != nil {
  938. return x.Key
  939. }
  940. return ""
  941. }
  942. func (x *ParticipantLabel) GetValue() string {
  943. if x != nil {
  944. return x.Value
  945. }
  946. return ""
  947. }
  948. type HealthCheckResp struct {
  949. state protoimpl.MessageState
  950. sizeCache protoimpl.SizeCache
  951. unknownFields protoimpl.UnknownFields
  952. MessageStatus MessageStatus `protobuf:"varint,1,opt,name=messageStatus,proto3,enum=pcmCore.MessageStatus" json:"messageStatus,omitempty"`
  953. Code int64 `protobuf:"varint,2,opt,name=code,proto3" json:"code,omitempty"`
  954. Msg string `protobuf:"bytes,3,opt,name=msg,proto3" json:"msg,omitempty"`
  955. }
  956. func (x *HealthCheckResp) Reset() {
  957. *x = HealthCheckResp{}
  958. if protoimpl.UnsafeEnabled {
  959. mi := &file_pcmCore_proto_msgTypes[10]
  960. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  961. ms.StoreMessageInfo(mi)
  962. }
  963. }
  964. func (x *HealthCheckResp) String() string {
  965. return protoimpl.X.MessageStringOf(x)
  966. }
  967. func (*HealthCheckResp) ProtoMessage() {}
  968. func (x *HealthCheckResp) ProtoReflect() protoreflect.Message {
  969. mi := &file_pcmCore_proto_msgTypes[10]
  970. if protoimpl.UnsafeEnabled && x != nil {
  971. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  972. if ms.LoadMessageInfo() == nil {
  973. ms.StoreMessageInfo(mi)
  974. }
  975. return ms
  976. }
  977. return mi.MessageOf(x)
  978. }
  979. // Deprecated: Use HealthCheckResp.ProtoReflect.Descriptor instead.
  980. func (*HealthCheckResp) Descriptor() ([]byte, []int) {
  981. return file_pcmCore_proto_rawDescGZIP(), []int{10}
  982. }
  983. func (x *HealthCheckResp) GetMessageStatus() MessageStatus {
  984. if x != nil {
  985. return x.MessageStatus
  986. }
  987. return MessageStatus_FAIL
  988. }
  989. func (x *HealthCheckResp) GetCode() int64 {
  990. if x != nil {
  991. return x.Code
  992. }
  993. return 0
  994. }
  995. func (x *HealthCheckResp) GetMsg() string {
  996. if x != nil {
  997. return x.Msg
  998. }
  999. return ""
  1000. }
  1001. type ParticipantPhyResp struct {
  1002. state protoimpl.MessageState
  1003. sizeCache protoimpl.SizeCache
  1004. unknownFields protoimpl.UnknownFields
  1005. Code int64 `protobuf:"varint,1,opt,name=code,proto3" json:"code,omitempty"`
  1006. Msg string `protobuf:"bytes,2,opt,name=msg,proto3" json:"msg,omitempty"`
  1007. ParticipantId int64 `protobuf:"varint,3,opt,name=participantId,proto3" json:"participantId,omitempty"` // participant 唯一标识
  1008. }
  1009. func (x *ParticipantPhyResp) Reset() {
  1010. *x = ParticipantPhyResp{}
  1011. if protoimpl.UnsafeEnabled {
  1012. mi := &file_pcmCore_proto_msgTypes[11]
  1013. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1014. ms.StoreMessageInfo(mi)
  1015. }
  1016. }
  1017. func (x *ParticipantPhyResp) String() string {
  1018. return protoimpl.X.MessageStringOf(x)
  1019. }
  1020. func (*ParticipantPhyResp) ProtoMessage() {}
  1021. func (x *ParticipantPhyResp) ProtoReflect() protoreflect.Message {
  1022. mi := &file_pcmCore_proto_msgTypes[11]
  1023. if protoimpl.UnsafeEnabled && x != nil {
  1024. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1025. if ms.LoadMessageInfo() == nil {
  1026. ms.StoreMessageInfo(mi)
  1027. }
  1028. return ms
  1029. }
  1030. return mi.MessageOf(x)
  1031. }
  1032. // Deprecated: Use ParticipantPhyResp.ProtoReflect.Descriptor instead.
  1033. func (*ParticipantPhyResp) Descriptor() ([]byte, []int) {
  1034. return file_pcmCore_proto_rawDescGZIP(), []int{11}
  1035. }
  1036. func (x *ParticipantPhyResp) GetCode() int64 {
  1037. if x != nil {
  1038. return x.Code
  1039. }
  1040. return 0
  1041. }
  1042. func (x *ParticipantPhyResp) GetMsg() string {
  1043. if x != nil {
  1044. return x.Msg
  1045. }
  1046. return ""
  1047. }
  1048. func (x *ParticipantPhyResp) GetParticipantId() int64 {
  1049. if x != nil {
  1050. return x.ParticipantId
  1051. }
  1052. return 0
  1053. }
  1054. // 集群静态信息返回
  1055. type ListParticipantPhyResp struct {
  1056. state protoimpl.MessageState
  1057. sizeCache protoimpl.SizeCache
  1058. unknownFields protoimpl.UnknownFields
  1059. Code int64 `protobuf:"varint,1,opt,name=code,proto3" json:"code,omitempty"`
  1060. Msg string `protobuf:"bytes,2,opt,name=msg,proto3" json:"msg,omitempty"`
  1061. ParticipantPhys []*ParticipantPhyReq `protobuf:"bytes,3,rep,name=ParticipantPhys,proto3" json:"ParticipantPhys,omitempty"`
  1062. }
  1063. func (x *ListParticipantPhyResp) Reset() {
  1064. *x = ListParticipantPhyResp{}
  1065. if protoimpl.UnsafeEnabled {
  1066. mi := &file_pcmCore_proto_msgTypes[12]
  1067. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1068. ms.StoreMessageInfo(mi)
  1069. }
  1070. }
  1071. func (x *ListParticipantPhyResp) String() string {
  1072. return protoimpl.X.MessageStringOf(x)
  1073. }
  1074. func (*ListParticipantPhyResp) ProtoMessage() {}
  1075. func (x *ListParticipantPhyResp) ProtoReflect() protoreflect.Message {
  1076. mi := &file_pcmCore_proto_msgTypes[12]
  1077. if protoimpl.UnsafeEnabled && x != nil {
  1078. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1079. if ms.LoadMessageInfo() == nil {
  1080. ms.StoreMessageInfo(mi)
  1081. }
  1082. return ms
  1083. }
  1084. return mi.MessageOf(x)
  1085. }
  1086. // Deprecated: Use ListParticipantPhyResp.ProtoReflect.Descriptor instead.
  1087. func (*ListParticipantPhyResp) Descriptor() ([]byte, []int) {
  1088. return file_pcmCore_proto_rawDescGZIP(), []int{12}
  1089. }
  1090. func (x *ListParticipantPhyResp) GetCode() int64 {
  1091. if x != nil {
  1092. return x.Code
  1093. }
  1094. return 0
  1095. }
  1096. func (x *ListParticipantPhyResp) GetMsg() string {
  1097. if x != nil {
  1098. return x.Msg
  1099. }
  1100. return ""
  1101. }
  1102. func (x *ListParticipantPhyResp) GetParticipantPhys() []*ParticipantPhyReq {
  1103. if x != nil {
  1104. return x.ParticipantPhys
  1105. }
  1106. return nil
  1107. }
  1108. // participantPhy 静态信息
  1109. type ParticipantPhyReq struct {
  1110. state protoimpl.MessageState
  1111. sizeCache protoimpl.SizeCache
  1112. unknownFields protoimpl.UnknownFields
  1113. Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"` // 名称
  1114. Address string `protobuf:"bytes,2,opt,name=address,proto3" json:"address,omitempty"` // 地址
  1115. NetworkType string `protobuf:"bytes,4,opt,name=networkType,proto3" json:"networkType,omitempty"` // 集群网络类型
  1116. NetworkBandwidth string `protobuf:"bytes,5,opt,name=networkBandwidth,proto3" json:"networkBandwidth,omitempty"` // 集群网络带宽
  1117. StorageType string `protobuf:"bytes,6,opt,name=storageType,proto3" json:"storageType,omitempty"` // 集群存储类型
  1118. StorageSpace string `protobuf:"bytes,7,opt,name=storageSpace,proto3" json:"storageSpace,omitempty"` // 集群存储空间
  1119. StorageAvailSpace string `protobuf:"bytes,8,opt,name=storageAvailSpace,proto3" json:"storageAvailSpace,omitempty"` // 集群存储可用空间
  1120. StorageBandwidth string `protobuf:"bytes,9,opt,name=storageBandwidth,proto3" json:"storageBandwidth,omitempty"` // 集群存储带宽
  1121. Type string `protobuf:"bytes,10,opt,name=type,proto3" json:"type,omitempty"` // 参与者类型:CLOUD-数算集群;AI-智算集群;HPC-超算集群
  1122. TenantId int64 `protobuf:"varint,11,opt,name=tenantId,proto3" json:"tenantId,omitempty"` // 租户id
  1123. TenantName string `protobuf:"bytes,12,opt,name=tenantName,proto3" json:"tenantName,omitempty"` // 租户名称
  1124. NodeInfo []*NodePhyInfo `protobuf:"bytes,13,rep,name=nodeInfo,proto3" json:"nodeInfo,omitempty"` // 节点信息
  1125. ParticipantId int64 `protobuf:"varint,14,opt,name=participantId,proto3" json:"participantId,omitempty"` // participant id
  1126. LabelInfo []*ParticipantLabel `protobuf:"bytes,15,rep,name=labelInfo,proto3" json:"labelInfo,omitempty"` // 标签信息
  1127. QueueInfo []*QueuePhyInfo `protobuf:"bytes,16,rep,name=queueInfo,proto3" json:"queueInfo,omitempty"` // 队列信息
  1128. Id int64 `protobuf:"varint,17,opt,name=id,proto3" json:"id,omitempty"` // id
  1129. MetricsUrl string `protobuf:"bytes,18,opt,name=MetricsUrl,proto3" json:"MetricsUrl,omitempty"` //监控url
  1130. RpcAddress string `protobuf:"bytes,19,opt,name=RpcAddress,proto3" json:"RpcAddress,omitempty"`
  1131. }
  1132. func (x *ParticipantPhyReq) Reset() {
  1133. *x = ParticipantPhyReq{}
  1134. if protoimpl.UnsafeEnabled {
  1135. mi := &file_pcmCore_proto_msgTypes[13]
  1136. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1137. ms.StoreMessageInfo(mi)
  1138. }
  1139. }
  1140. func (x *ParticipantPhyReq) String() string {
  1141. return protoimpl.X.MessageStringOf(x)
  1142. }
  1143. func (*ParticipantPhyReq) ProtoMessage() {}
  1144. func (x *ParticipantPhyReq) ProtoReflect() protoreflect.Message {
  1145. mi := &file_pcmCore_proto_msgTypes[13]
  1146. if protoimpl.UnsafeEnabled && x != nil {
  1147. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1148. if ms.LoadMessageInfo() == nil {
  1149. ms.StoreMessageInfo(mi)
  1150. }
  1151. return ms
  1152. }
  1153. return mi.MessageOf(x)
  1154. }
  1155. // Deprecated: Use ParticipantPhyReq.ProtoReflect.Descriptor instead.
  1156. func (*ParticipantPhyReq) Descriptor() ([]byte, []int) {
  1157. return file_pcmCore_proto_rawDescGZIP(), []int{13}
  1158. }
  1159. func (x *ParticipantPhyReq) GetName() string {
  1160. if x != nil {
  1161. return x.Name
  1162. }
  1163. return ""
  1164. }
  1165. func (x *ParticipantPhyReq) GetAddress() string {
  1166. if x != nil {
  1167. return x.Address
  1168. }
  1169. return ""
  1170. }
  1171. func (x *ParticipantPhyReq) GetNetworkType() string {
  1172. if x != nil {
  1173. return x.NetworkType
  1174. }
  1175. return ""
  1176. }
  1177. func (x *ParticipantPhyReq) GetNetworkBandwidth() string {
  1178. if x != nil {
  1179. return x.NetworkBandwidth
  1180. }
  1181. return ""
  1182. }
  1183. func (x *ParticipantPhyReq) GetStorageType() string {
  1184. if x != nil {
  1185. return x.StorageType
  1186. }
  1187. return ""
  1188. }
  1189. func (x *ParticipantPhyReq) GetStorageSpace() string {
  1190. if x != nil {
  1191. return x.StorageSpace
  1192. }
  1193. return ""
  1194. }
  1195. func (x *ParticipantPhyReq) GetStorageAvailSpace() string {
  1196. if x != nil {
  1197. return x.StorageAvailSpace
  1198. }
  1199. return ""
  1200. }
  1201. func (x *ParticipantPhyReq) GetStorageBandwidth() string {
  1202. if x != nil {
  1203. return x.StorageBandwidth
  1204. }
  1205. return ""
  1206. }
  1207. func (x *ParticipantPhyReq) GetType() string {
  1208. if x != nil {
  1209. return x.Type
  1210. }
  1211. return ""
  1212. }
  1213. func (x *ParticipantPhyReq) GetTenantId() int64 {
  1214. if x != nil {
  1215. return x.TenantId
  1216. }
  1217. return 0
  1218. }
  1219. func (x *ParticipantPhyReq) GetTenantName() string {
  1220. if x != nil {
  1221. return x.TenantName
  1222. }
  1223. return ""
  1224. }
  1225. func (x *ParticipantPhyReq) GetNodeInfo() []*NodePhyInfo {
  1226. if x != nil {
  1227. return x.NodeInfo
  1228. }
  1229. return nil
  1230. }
  1231. func (x *ParticipantPhyReq) GetParticipantId() int64 {
  1232. if x != nil {
  1233. return x.ParticipantId
  1234. }
  1235. return 0
  1236. }
  1237. func (x *ParticipantPhyReq) GetLabelInfo() []*ParticipantLabel {
  1238. if x != nil {
  1239. return x.LabelInfo
  1240. }
  1241. return nil
  1242. }
  1243. func (x *ParticipantPhyReq) GetQueueInfo() []*QueuePhyInfo {
  1244. if x != nil {
  1245. return x.QueueInfo
  1246. }
  1247. return nil
  1248. }
  1249. func (x *ParticipantPhyReq) GetId() int64 {
  1250. if x != nil {
  1251. return x.Id
  1252. }
  1253. return 0
  1254. }
  1255. func (x *ParticipantPhyReq) GetMetricsUrl() string {
  1256. if x != nil {
  1257. return x.MetricsUrl
  1258. }
  1259. return ""
  1260. }
  1261. func (x *ParticipantPhyReq) GetRpcAddress() string {
  1262. if x != nil {
  1263. return x.RpcAddress
  1264. }
  1265. return ""
  1266. }
  1267. // NodePhyInfo 节点信息
  1268. type NodePhyInfo struct {
  1269. state protoimpl.MessageState
  1270. sizeCache protoimpl.SizeCache
  1271. unknownFields protoimpl.UnknownFields
  1272. Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
  1273. NodeName string `protobuf:"bytes,2,opt,name=nodeName,proto3" json:"nodeName,omitempty"` // 节点名称
  1274. OsName string `protobuf:"bytes,3,opt,name=osName,proto3" json:"osName,omitempty"` // 系统名称
  1275. OsVersion string `protobuf:"bytes,4,opt,name=osVersion,proto3" json:"osVersion,omitempty"` // 系统版本
  1276. ArchType string `protobuf:"bytes,5,opt,name=archType,proto3" json:"archType,omitempty"` // 架构类型
  1277. ArchName string `protobuf:"bytes,6,opt,name=archName,proto3" json:"archName,omitempty"` // 架构名称
  1278. ArchFreq string `protobuf:"bytes,7,opt,name=archFreq,proto3" json:"archFreq,omitempty"` // 架构频率
  1279. }
  1280. func (x *NodePhyInfo) Reset() {
  1281. *x = NodePhyInfo{}
  1282. if protoimpl.UnsafeEnabled {
  1283. mi := &file_pcmCore_proto_msgTypes[14]
  1284. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1285. ms.StoreMessageInfo(mi)
  1286. }
  1287. }
  1288. func (x *NodePhyInfo) String() string {
  1289. return protoimpl.X.MessageStringOf(x)
  1290. }
  1291. func (*NodePhyInfo) ProtoMessage() {}
  1292. func (x *NodePhyInfo) ProtoReflect() protoreflect.Message {
  1293. mi := &file_pcmCore_proto_msgTypes[14]
  1294. if protoimpl.UnsafeEnabled && x != nil {
  1295. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1296. if ms.LoadMessageInfo() == nil {
  1297. ms.StoreMessageInfo(mi)
  1298. }
  1299. return ms
  1300. }
  1301. return mi.MessageOf(x)
  1302. }
  1303. // Deprecated: Use NodePhyInfo.ProtoReflect.Descriptor instead.
  1304. func (*NodePhyInfo) Descriptor() ([]byte, []int) {
  1305. return file_pcmCore_proto_rawDescGZIP(), []int{14}
  1306. }
  1307. func (x *NodePhyInfo) GetId() int64 {
  1308. if x != nil {
  1309. return x.Id
  1310. }
  1311. return 0
  1312. }
  1313. func (x *NodePhyInfo) GetNodeName() string {
  1314. if x != nil {
  1315. return x.NodeName
  1316. }
  1317. return ""
  1318. }
  1319. func (x *NodePhyInfo) GetOsName() string {
  1320. if x != nil {
  1321. return x.OsName
  1322. }
  1323. return ""
  1324. }
  1325. func (x *NodePhyInfo) GetOsVersion() string {
  1326. if x != nil {
  1327. return x.OsVersion
  1328. }
  1329. return ""
  1330. }
  1331. func (x *NodePhyInfo) GetArchType() string {
  1332. if x != nil {
  1333. return x.ArchType
  1334. }
  1335. return ""
  1336. }
  1337. func (x *NodePhyInfo) GetArchName() string {
  1338. if x != nil {
  1339. return x.ArchName
  1340. }
  1341. return ""
  1342. }
  1343. func (x *NodePhyInfo) GetArchFreq() string {
  1344. if x != nil {
  1345. return x.ArchFreq
  1346. }
  1347. return ""
  1348. }
  1349. // QueuePhyInfo 队列信息
  1350. type QueuePhyInfo struct {
  1351. state protoimpl.MessageState
  1352. sizeCache protoimpl.SizeCache
  1353. unknownFields protoimpl.UnknownFields
  1354. Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"` // id
  1355. AclHosts string `protobuf:"bytes,2,opt,name=aclHosts,proto3" json:"aclHosts,omitempty"` // 可用节点,多个节点用逗号隔开
  1356. QueueId string `protobuf:"bytes,3,opt,name=queueId,proto3" json:"queueId,omitempty"` // 队列名称
  1357. Text string `protobuf:"bytes,4,opt,name=text,proto3" json:"text,omitempty"` // 队列名称
  1358. QueueName string `protobuf:"bytes,5,opt,name=queueName,proto3" json:"queueName,omitempty"` //队列名称
  1359. QueNodes string `protobuf:"bytes,6,opt,name=queNodes,proto3" json:"queNodes,omitempty"` // 队列节点总数
  1360. QueMinNodect string `protobuf:"bytes,7,opt,name=queMinNodect,proto3" json:"queMinNodect,omitempty"` // 队列最小节点数
  1361. QueMaxNgpus string `protobuf:"bytes,8,opt,name=queMaxNgpus,proto3" json:"queMaxNgpus,omitempty"` // 队列最大GPU卡数
  1362. QueMaxPpn string `protobuf:"bytes,9,opt,name=queMaxPpn,proto3" json:"queMaxPpn,omitempty"` // 使用该队列作业最大CPU核心数
  1363. QueChargeRate string `protobuf:"bytes,10,opt,name=queChargeRate,proto3" json:"queChargeRate,omitempty"` // 费率
  1364. QueMaxNcpus string `protobuf:"bytes,11,opt,name=queMaxNcpus,proto3" json:"queMaxNcpus,omitempty"` // 用户最大可用核心数
  1365. QueMaxNdcus string `protobuf:"bytes,12,opt,name=queMaxNdcus,proto3" json:"queMaxNdcus,omitempty"` // 队列总DCU卡数
  1366. QueMinNcpus string `protobuf:"bytes,13,opt,name=queMinNcpus,proto3" json:"queMinNcpus,omitempty"` // 队列最小CPU核数
  1367. QueFreeNodes string `protobuf:"bytes,14,opt,name=queFreeNodes,proto3" json:"queFreeNodes,omitempty"` // 队列空闲节点数
  1368. QueMaxNodect string `protobuf:"bytes,15,opt,name=queMaxNodect,proto3" json:"queMaxNodect,omitempty"` // 队列作业最大节点数
  1369. QueMaxGpuPN string `protobuf:"bytes,16,opt,name=queMaxGpuPN,proto3" json:"queMaxGpuPN,omitempty"` // 队列单作业最大GPU卡数
  1370. QueMaxWalltime string `protobuf:"bytes,17,opt,name=queMaxWalltime,proto3" json:"queMaxWalltime,omitempty"` // 队列最大运行时间
  1371. QueMaxDcuPN string `protobuf:"bytes,18,opt,name=queMaxDcuPN,proto3" json:"queMaxDcuPN,omitempty"` // 队列单作业最大DCU卡数
  1372. QueNcpus string `protobuf:"bytes,19,opt,name=queNcpus,proto3" json:"queNcpus,omitempty"` //队列cpu数
  1373. QueFreeNcpus string `protobuf:"bytes,20,opt,name=queFreeNcpus,proto3" json:"queFreeNcpus,omitempty"` //队列空闲cpu数
  1374. }
  1375. func (x *QueuePhyInfo) Reset() {
  1376. *x = QueuePhyInfo{}
  1377. if protoimpl.UnsafeEnabled {
  1378. mi := &file_pcmCore_proto_msgTypes[15]
  1379. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1380. ms.StoreMessageInfo(mi)
  1381. }
  1382. }
  1383. func (x *QueuePhyInfo) String() string {
  1384. return protoimpl.X.MessageStringOf(x)
  1385. }
  1386. func (*QueuePhyInfo) ProtoMessage() {}
  1387. func (x *QueuePhyInfo) ProtoReflect() protoreflect.Message {
  1388. mi := &file_pcmCore_proto_msgTypes[15]
  1389. if protoimpl.UnsafeEnabled && x != nil {
  1390. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1391. if ms.LoadMessageInfo() == nil {
  1392. ms.StoreMessageInfo(mi)
  1393. }
  1394. return ms
  1395. }
  1396. return mi.MessageOf(x)
  1397. }
  1398. // Deprecated: Use QueuePhyInfo.ProtoReflect.Descriptor instead.
  1399. func (*QueuePhyInfo) Descriptor() ([]byte, []int) {
  1400. return file_pcmCore_proto_rawDescGZIP(), []int{15}
  1401. }
  1402. func (x *QueuePhyInfo) GetId() int64 {
  1403. if x != nil {
  1404. return x.Id
  1405. }
  1406. return 0
  1407. }
  1408. func (x *QueuePhyInfo) GetAclHosts() string {
  1409. if x != nil {
  1410. return x.AclHosts
  1411. }
  1412. return ""
  1413. }
  1414. func (x *QueuePhyInfo) GetQueueId() string {
  1415. if x != nil {
  1416. return x.QueueId
  1417. }
  1418. return ""
  1419. }
  1420. func (x *QueuePhyInfo) GetText() string {
  1421. if x != nil {
  1422. return x.Text
  1423. }
  1424. return ""
  1425. }
  1426. func (x *QueuePhyInfo) GetQueueName() string {
  1427. if x != nil {
  1428. return x.QueueName
  1429. }
  1430. return ""
  1431. }
  1432. func (x *QueuePhyInfo) GetQueNodes() string {
  1433. if x != nil {
  1434. return x.QueNodes
  1435. }
  1436. return ""
  1437. }
  1438. func (x *QueuePhyInfo) GetQueMinNodect() string {
  1439. if x != nil {
  1440. return x.QueMinNodect
  1441. }
  1442. return ""
  1443. }
  1444. func (x *QueuePhyInfo) GetQueMaxNgpus() string {
  1445. if x != nil {
  1446. return x.QueMaxNgpus
  1447. }
  1448. return ""
  1449. }
  1450. func (x *QueuePhyInfo) GetQueMaxPpn() string {
  1451. if x != nil {
  1452. return x.QueMaxPpn
  1453. }
  1454. return ""
  1455. }
  1456. func (x *QueuePhyInfo) GetQueChargeRate() string {
  1457. if x != nil {
  1458. return x.QueChargeRate
  1459. }
  1460. return ""
  1461. }
  1462. func (x *QueuePhyInfo) GetQueMaxNcpus() string {
  1463. if x != nil {
  1464. return x.QueMaxNcpus
  1465. }
  1466. return ""
  1467. }
  1468. func (x *QueuePhyInfo) GetQueMaxNdcus() string {
  1469. if x != nil {
  1470. return x.QueMaxNdcus
  1471. }
  1472. return ""
  1473. }
  1474. func (x *QueuePhyInfo) GetQueMinNcpus() string {
  1475. if x != nil {
  1476. return x.QueMinNcpus
  1477. }
  1478. return ""
  1479. }
  1480. func (x *QueuePhyInfo) GetQueFreeNodes() string {
  1481. if x != nil {
  1482. return x.QueFreeNodes
  1483. }
  1484. return ""
  1485. }
  1486. func (x *QueuePhyInfo) GetQueMaxNodect() string {
  1487. if x != nil {
  1488. return x.QueMaxNodect
  1489. }
  1490. return ""
  1491. }
  1492. func (x *QueuePhyInfo) GetQueMaxGpuPN() string {
  1493. if x != nil {
  1494. return x.QueMaxGpuPN
  1495. }
  1496. return ""
  1497. }
  1498. func (x *QueuePhyInfo) GetQueMaxWalltime() string {
  1499. if x != nil {
  1500. return x.QueMaxWalltime
  1501. }
  1502. return ""
  1503. }
  1504. func (x *QueuePhyInfo) GetQueMaxDcuPN() string {
  1505. if x != nil {
  1506. return x.QueMaxDcuPN
  1507. }
  1508. return ""
  1509. }
  1510. func (x *QueuePhyInfo) GetQueNcpus() string {
  1511. if x != nil {
  1512. return x.QueNcpus
  1513. }
  1514. return ""
  1515. }
  1516. func (x *QueuePhyInfo) GetQueFreeNcpus() string {
  1517. if x != nil {
  1518. return x.QueFreeNcpus
  1519. }
  1520. return ""
  1521. }
  1522. // ParticipantHeartbeatReq 心跳请求
  1523. type ParticipantHeartbeatReq struct {
  1524. state protoimpl.MessageState
  1525. sizeCache protoimpl.SizeCache
  1526. unknownFields protoimpl.UnknownFields
  1527. ParticipantId int64 `protobuf:"varint,1,opt,name=participantId,proto3" json:"participantId,omitempty"` // participantId
  1528. Address string `protobuf:"bytes,2,opt,name=address,proto3" json:"address,omitempty"`
  1529. }
  1530. func (x *ParticipantHeartbeatReq) Reset() {
  1531. *x = ParticipantHeartbeatReq{}
  1532. if protoimpl.UnsafeEnabled {
  1533. mi := &file_pcmCore_proto_msgTypes[16]
  1534. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1535. ms.StoreMessageInfo(mi)
  1536. }
  1537. }
  1538. func (x *ParticipantHeartbeatReq) String() string {
  1539. return protoimpl.X.MessageStringOf(x)
  1540. }
  1541. func (*ParticipantHeartbeatReq) ProtoMessage() {}
  1542. func (x *ParticipantHeartbeatReq) ProtoReflect() protoreflect.Message {
  1543. mi := &file_pcmCore_proto_msgTypes[16]
  1544. if protoimpl.UnsafeEnabled && x != nil {
  1545. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1546. if ms.LoadMessageInfo() == nil {
  1547. ms.StoreMessageInfo(mi)
  1548. }
  1549. return ms
  1550. }
  1551. return mi.MessageOf(x)
  1552. }
  1553. // Deprecated: Use ParticipantHeartbeatReq.ProtoReflect.Descriptor instead.
  1554. func (*ParticipantHeartbeatReq) Descriptor() ([]byte, []int) {
  1555. return file_pcmCore_proto_rawDescGZIP(), []int{16}
  1556. }
  1557. func (x *ParticipantHeartbeatReq) GetParticipantId() int64 {
  1558. if x != nil {
  1559. return x.ParticipantId
  1560. }
  1561. return 0
  1562. }
  1563. func (x *ParticipantHeartbeatReq) GetAddress() string {
  1564. if x != nil {
  1565. return x.Address
  1566. }
  1567. return ""
  1568. }
  1569. // ParticipantAvailInfo Participant可用信息
  1570. type ParticipantAvailReq struct {
  1571. state protoimpl.MessageState
  1572. sizeCache protoimpl.SizeCache
  1573. unknownFields protoimpl.UnknownFields
  1574. Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"` // id
  1575. AvailStorageSpace int64 `protobuf:"varint,2,opt,name=availStorageSpace,proto3" json:"availStorageSpace,omitempty"` // 集群存储可用空间
  1576. UserNum int64 `protobuf:"varint,3,opt,name=userNum,proto3" json:"userNum,omitempty"` // 用户数量
  1577. PendingJobNum int64 `protobuf:"varint,4,opt,name=pendingJobNum,proto3" json:"pendingJobNum,omitempty"` // 待处理作业数量
  1578. RunningJobNum int64 `protobuf:"varint,5,opt,name=runningJobNum,proto3" json:"runningJobNum,omitempty"` // 运行作业数量
  1579. ParticipantId int64 `protobuf:"varint,6,opt,name=participantId,proto3" json:"participantId,omitempty"` // 集群静态信息id
  1580. NodeAvailInfo []*NodeAvailInfo `protobuf:"bytes,7,rep,name=nodeAvailInfo,proto3" json:"nodeAvailInfo,omitempty"` // 节点可用信息
  1581. }
  1582. func (x *ParticipantAvailReq) Reset() {
  1583. *x = ParticipantAvailReq{}
  1584. if protoimpl.UnsafeEnabled {
  1585. mi := &file_pcmCore_proto_msgTypes[17]
  1586. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1587. ms.StoreMessageInfo(mi)
  1588. }
  1589. }
  1590. func (x *ParticipantAvailReq) String() string {
  1591. return protoimpl.X.MessageStringOf(x)
  1592. }
  1593. func (*ParticipantAvailReq) ProtoMessage() {}
  1594. func (x *ParticipantAvailReq) ProtoReflect() protoreflect.Message {
  1595. mi := &file_pcmCore_proto_msgTypes[17]
  1596. if protoimpl.UnsafeEnabled && x != nil {
  1597. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1598. if ms.LoadMessageInfo() == nil {
  1599. ms.StoreMessageInfo(mi)
  1600. }
  1601. return ms
  1602. }
  1603. return mi.MessageOf(x)
  1604. }
  1605. // Deprecated: Use ParticipantAvailReq.ProtoReflect.Descriptor instead.
  1606. func (*ParticipantAvailReq) Descriptor() ([]byte, []int) {
  1607. return file_pcmCore_proto_rawDescGZIP(), []int{17}
  1608. }
  1609. func (x *ParticipantAvailReq) GetId() int64 {
  1610. if x != nil {
  1611. return x.Id
  1612. }
  1613. return 0
  1614. }
  1615. func (x *ParticipantAvailReq) GetAvailStorageSpace() int64 {
  1616. if x != nil {
  1617. return x.AvailStorageSpace
  1618. }
  1619. return 0
  1620. }
  1621. func (x *ParticipantAvailReq) GetUserNum() int64 {
  1622. if x != nil {
  1623. return x.UserNum
  1624. }
  1625. return 0
  1626. }
  1627. func (x *ParticipantAvailReq) GetPendingJobNum() int64 {
  1628. if x != nil {
  1629. return x.PendingJobNum
  1630. }
  1631. return 0
  1632. }
  1633. func (x *ParticipantAvailReq) GetRunningJobNum() int64 {
  1634. if x != nil {
  1635. return x.RunningJobNum
  1636. }
  1637. return 0
  1638. }
  1639. func (x *ParticipantAvailReq) GetParticipantId() int64 {
  1640. if x != nil {
  1641. return x.ParticipantId
  1642. }
  1643. return 0
  1644. }
  1645. func (x *ParticipantAvailReq) GetNodeAvailInfo() []*NodeAvailInfo {
  1646. if x != nil {
  1647. return x.NodeAvailInfo
  1648. }
  1649. return nil
  1650. }
  1651. // NodeAvailInfo 节点可用信息
  1652. type NodeAvailInfo struct {
  1653. state protoimpl.MessageState
  1654. sizeCache protoimpl.SizeCache
  1655. unknownFields protoimpl.UnknownFields
  1656. Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"` // id
  1657. NodeName string `protobuf:"bytes,2,opt,name=nodeName,proto3" json:"nodeName,omitempty"` // 节点名称
  1658. CpuTotal int64 `protobuf:"varint,3,opt,name=cpuTotal,proto3" json:"cpuTotal,omitempty"` // cpu核数
  1659. CpuUsable float64 `protobuf:"fixed64,4,opt,name=cpuUsable,proto3" json:"cpuUsable,omitempty"` // cpu可用率
  1660. DiskTotal int64 `protobuf:"varint,5,opt,name=diskTotal,proto3" json:"diskTotal,omitempty"` // 磁盘空间
  1661. DiskAvail int64 `protobuf:"varint,6,opt,name=diskAvail,proto3" json:"diskAvail,omitempty"` // 磁盘可用空间
  1662. MemTotal int64 `protobuf:"varint,7,opt,name=memTotal,proto3" json:"memTotal,omitempty"` // 内存总数
  1663. MemAvail int64 `protobuf:"varint,8,opt,name=memAvail,proto3" json:"memAvail,omitempty"` // 内存可用数
  1664. GpuTotal int64 `protobuf:"varint,9,opt,name=gpuTotal,proto3" json:"gpuTotal,omitempty"` // gpu总数
  1665. GpuAvail int64 `protobuf:"varint,10,opt,name=gpuAvail,proto3" json:"gpuAvail,omitempty"` // gpu可用数
  1666. ParticipantId int64 `protobuf:"varint,11,opt,name=participantId,proto3" json:"participantId,omitempty"` // 集群动态信息id
  1667. }
  1668. func (x *NodeAvailInfo) Reset() {
  1669. *x = NodeAvailInfo{}
  1670. if protoimpl.UnsafeEnabled {
  1671. mi := &file_pcmCore_proto_msgTypes[18]
  1672. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1673. ms.StoreMessageInfo(mi)
  1674. }
  1675. }
  1676. func (x *NodeAvailInfo) String() string {
  1677. return protoimpl.X.MessageStringOf(x)
  1678. }
  1679. func (*NodeAvailInfo) ProtoMessage() {}
  1680. func (x *NodeAvailInfo) ProtoReflect() protoreflect.Message {
  1681. mi := &file_pcmCore_proto_msgTypes[18]
  1682. if protoimpl.UnsafeEnabled && x != nil {
  1683. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1684. if ms.LoadMessageInfo() == nil {
  1685. ms.StoreMessageInfo(mi)
  1686. }
  1687. return ms
  1688. }
  1689. return mi.MessageOf(x)
  1690. }
  1691. // Deprecated: Use NodeAvailInfo.ProtoReflect.Descriptor instead.
  1692. func (*NodeAvailInfo) Descriptor() ([]byte, []int) {
  1693. return file_pcmCore_proto_rawDescGZIP(), []int{18}
  1694. }
  1695. func (x *NodeAvailInfo) GetId() int64 {
  1696. if x != nil {
  1697. return x.Id
  1698. }
  1699. return 0
  1700. }
  1701. func (x *NodeAvailInfo) GetNodeName() string {
  1702. if x != nil {
  1703. return x.NodeName
  1704. }
  1705. return ""
  1706. }
  1707. func (x *NodeAvailInfo) GetCpuTotal() int64 {
  1708. if x != nil {
  1709. return x.CpuTotal
  1710. }
  1711. return 0
  1712. }
  1713. func (x *NodeAvailInfo) GetCpuUsable() float64 {
  1714. if x != nil {
  1715. return x.CpuUsable
  1716. }
  1717. return 0
  1718. }
  1719. func (x *NodeAvailInfo) GetDiskTotal() int64 {
  1720. if x != nil {
  1721. return x.DiskTotal
  1722. }
  1723. return 0
  1724. }
  1725. func (x *NodeAvailInfo) GetDiskAvail() int64 {
  1726. if x != nil {
  1727. return x.DiskAvail
  1728. }
  1729. return 0
  1730. }
  1731. func (x *NodeAvailInfo) GetMemTotal() int64 {
  1732. if x != nil {
  1733. return x.MemTotal
  1734. }
  1735. return 0
  1736. }
  1737. func (x *NodeAvailInfo) GetMemAvail() int64 {
  1738. if x != nil {
  1739. return x.MemAvail
  1740. }
  1741. return 0
  1742. }
  1743. func (x *NodeAvailInfo) GetGpuTotal() int64 {
  1744. if x != nil {
  1745. return x.GpuTotal
  1746. }
  1747. return 0
  1748. }
  1749. func (x *NodeAvailInfo) GetGpuAvail() int64 {
  1750. if x != nil {
  1751. return x.GpuAvail
  1752. }
  1753. return 0
  1754. }
  1755. func (x *NodeAvailInfo) GetParticipantId() int64 {
  1756. if x != nil {
  1757. return x.ParticipantId
  1758. }
  1759. return 0
  1760. }
  1761. // 集群可用信息
  1762. type ListParticipantAvailResp struct {
  1763. state protoimpl.MessageState
  1764. sizeCache protoimpl.SizeCache
  1765. unknownFields protoimpl.UnknownFields
  1766. Code int64 `protobuf:"varint,1,opt,name=code,proto3" json:"code,omitempty"`
  1767. Msg string `protobuf:"bytes,2,opt,name=msg,proto3" json:"msg,omitempty"`
  1768. ParticipantAvails []*ParticipantAvailReq `protobuf:"bytes,3,rep,name=ParticipantAvails,proto3" json:"ParticipantAvails,omitempty"`
  1769. }
  1770. func (x *ListParticipantAvailResp) Reset() {
  1771. *x = ListParticipantAvailResp{}
  1772. if protoimpl.UnsafeEnabled {
  1773. mi := &file_pcmCore_proto_msgTypes[19]
  1774. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1775. ms.StoreMessageInfo(mi)
  1776. }
  1777. }
  1778. func (x *ListParticipantAvailResp) String() string {
  1779. return protoimpl.X.MessageStringOf(x)
  1780. }
  1781. func (*ListParticipantAvailResp) ProtoMessage() {}
  1782. func (x *ListParticipantAvailResp) ProtoReflect() protoreflect.Message {
  1783. mi := &file_pcmCore_proto_msgTypes[19]
  1784. if protoimpl.UnsafeEnabled && x != nil {
  1785. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1786. if ms.LoadMessageInfo() == nil {
  1787. ms.StoreMessageInfo(mi)
  1788. }
  1789. return ms
  1790. }
  1791. return mi.MessageOf(x)
  1792. }
  1793. // Deprecated: Use ListParticipantAvailResp.ProtoReflect.Descriptor instead.
  1794. func (*ListParticipantAvailResp) Descriptor() ([]byte, []int) {
  1795. return file_pcmCore_proto_rawDescGZIP(), []int{19}
  1796. }
  1797. func (x *ListParticipantAvailResp) GetCode() int64 {
  1798. if x != nil {
  1799. return x.Code
  1800. }
  1801. return 0
  1802. }
  1803. func (x *ListParticipantAvailResp) GetMsg() string {
  1804. if x != nil {
  1805. return x.Msg
  1806. }
  1807. return ""
  1808. }
  1809. func (x *ListParticipantAvailResp) GetParticipantAvails() []*ParticipantAvailReq {
  1810. if x != nil {
  1811. return x.ParticipantAvails
  1812. }
  1813. return nil
  1814. }
  1815. type ParticipantResp struct {
  1816. state protoimpl.MessageState
  1817. sizeCache protoimpl.SizeCache
  1818. unknownFields protoimpl.UnknownFields
  1819. Code int64 `protobuf:"varint,1,opt,name=code,proto3" json:"code,omitempty"`
  1820. Msg string `protobuf:"bytes,2,opt,name=msg,proto3" json:"msg,omitempty"`
  1821. }
  1822. func (x *ParticipantResp) Reset() {
  1823. *x = ParticipantResp{}
  1824. if protoimpl.UnsafeEnabled {
  1825. mi := &file_pcmCore_proto_msgTypes[20]
  1826. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1827. ms.StoreMessageInfo(mi)
  1828. }
  1829. }
  1830. func (x *ParticipantResp) String() string {
  1831. return protoimpl.X.MessageStringOf(x)
  1832. }
  1833. func (*ParticipantResp) ProtoMessage() {}
  1834. func (x *ParticipantResp) ProtoReflect() protoreflect.Message {
  1835. mi := &file_pcmCore_proto_msgTypes[20]
  1836. if protoimpl.UnsafeEnabled && x != nil {
  1837. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1838. if ms.LoadMessageInfo() == nil {
  1839. ms.StoreMessageInfo(mi)
  1840. }
  1841. return ms
  1842. }
  1843. return mi.MessageOf(x)
  1844. }
  1845. // Deprecated: Use ParticipantResp.ProtoReflect.Descriptor instead.
  1846. func (*ParticipantResp) Descriptor() ([]byte, []int) {
  1847. return file_pcmCore_proto_rawDescGZIP(), []int{20}
  1848. }
  1849. func (x *ParticipantResp) GetCode() int64 {
  1850. if x != nil {
  1851. return x.Code
  1852. }
  1853. return 0
  1854. }
  1855. func (x *ParticipantResp) GetMsg() string {
  1856. if x != nil {
  1857. return x.Msg
  1858. }
  1859. return ""
  1860. }
  1861. type ParticipantServiceResp struct {
  1862. state protoimpl.MessageState
  1863. sizeCache protoimpl.SizeCache
  1864. unknownFields protoimpl.UnknownFields
  1865. Code int64 `protobuf:"varint,1,opt,name=code,proto3" json:"code,omitempty"`
  1866. Msg string `protobuf:"bytes,2,opt,name=msg,proto3" json:"msg,omitempty"`
  1867. Data []*ClientInfo `protobuf:"bytes,3,rep,name=data,proto3" json:"data,omitempty"`
  1868. }
  1869. func (x *ParticipantServiceResp) Reset() {
  1870. *x = ParticipantServiceResp{}
  1871. if protoimpl.UnsafeEnabled {
  1872. mi := &file_pcmCore_proto_msgTypes[21]
  1873. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1874. ms.StoreMessageInfo(mi)
  1875. }
  1876. }
  1877. func (x *ParticipantServiceResp) String() string {
  1878. return protoimpl.X.MessageStringOf(x)
  1879. }
  1880. func (*ParticipantServiceResp) ProtoMessage() {}
  1881. func (x *ParticipantServiceResp) ProtoReflect() protoreflect.Message {
  1882. mi := &file_pcmCore_proto_msgTypes[21]
  1883. if protoimpl.UnsafeEnabled && x != nil {
  1884. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1885. if ms.LoadMessageInfo() == nil {
  1886. ms.StoreMessageInfo(mi)
  1887. }
  1888. return ms
  1889. }
  1890. return mi.MessageOf(x)
  1891. }
  1892. // Deprecated: Use ParticipantServiceResp.ProtoReflect.Descriptor instead.
  1893. func (*ParticipantServiceResp) Descriptor() ([]byte, []int) {
  1894. return file_pcmCore_proto_rawDescGZIP(), []int{21}
  1895. }
  1896. func (x *ParticipantServiceResp) GetCode() int64 {
  1897. if x != nil {
  1898. return x.Code
  1899. }
  1900. return 0
  1901. }
  1902. func (x *ParticipantServiceResp) GetMsg() string {
  1903. if x != nil {
  1904. return x.Msg
  1905. }
  1906. return ""
  1907. }
  1908. func (x *ParticipantServiceResp) GetData() []*ClientInfo {
  1909. if x != nil {
  1910. return x.Data
  1911. }
  1912. return nil
  1913. }
  1914. type ClientInfo struct {
  1915. state protoimpl.MessageState
  1916. sizeCache protoimpl.SizeCache
  1917. unknownFields protoimpl.UnknownFields
  1918. Address string `protobuf:"bytes,1,opt,name=address,proto3" json:"address,omitempty"` // @gotags: redis:"address"
  1919. ParticipantId int64 `protobuf:"varint,2,opt,name=participantId,proto3" json:"participantId,omitempty"` // @gotags: redis:"participantId"
  1920. ClientState string `protobuf:"bytes,3,opt,name=clientState,proto3" json:"clientState,omitempty"` // @gotags: redis:"clientState"
  1921. LastHeartbeat int64 `protobuf:"varint,4,opt,name=lastHeartbeat,proto3" json:"lastHeartbeat,omitempty"` // @gotags: redis:"lastHeartbeat"
  1922. }
  1923. func (x *ClientInfo) Reset() {
  1924. *x = ClientInfo{}
  1925. if protoimpl.UnsafeEnabled {
  1926. mi := &file_pcmCore_proto_msgTypes[22]
  1927. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1928. ms.StoreMessageInfo(mi)
  1929. }
  1930. }
  1931. func (x *ClientInfo) String() string {
  1932. return protoimpl.X.MessageStringOf(x)
  1933. }
  1934. func (*ClientInfo) ProtoMessage() {}
  1935. func (x *ClientInfo) ProtoReflect() protoreflect.Message {
  1936. mi := &file_pcmCore_proto_msgTypes[22]
  1937. if protoimpl.UnsafeEnabled && x != nil {
  1938. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1939. if ms.LoadMessageInfo() == nil {
  1940. ms.StoreMessageInfo(mi)
  1941. }
  1942. return ms
  1943. }
  1944. return mi.MessageOf(x)
  1945. }
  1946. // Deprecated: Use ClientInfo.ProtoReflect.Descriptor instead.
  1947. func (*ClientInfo) Descriptor() ([]byte, []int) {
  1948. return file_pcmCore_proto_rawDescGZIP(), []int{22}
  1949. }
  1950. func (x *ClientInfo) GetAddress() string {
  1951. if x != nil {
  1952. return x.Address
  1953. }
  1954. return ""
  1955. }
  1956. func (x *ClientInfo) GetParticipantId() int64 {
  1957. if x != nil {
  1958. return x.ParticipantId
  1959. }
  1960. return 0
  1961. }
  1962. func (x *ClientInfo) GetClientState() string {
  1963. if x != nil {
  1964. return x.ClientState
  1965. }
  1966. return ""
  1967. }
  1968. func (x *ClientInfo) GetLastHeartbeat() int64 {
  1969. if x != nil {
  1970. return x.LastHeartbeat
  1971. }
  1972. return 0
  1973. }
  1974. type TenantInfo struct {
  1975. state protoimpl.MessageState
  1976. sizeCache protoimpl.SizeCache
  1977. unknownFields protoimpl.UnknownFields
  1978. Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
  1979. TenantName string `protobuf:"bytes,2,opt,name=tenantName,proto3" json:"tenantName,omitempty"`
  1980. TenantDesc string `protobuf:"bytes,3,opt,name=tenantDesc,proto3" json:"tenantDesc,omitempty"`
  1981. }
  1982. func (x *TenantInfo) Reset() {
  1983. *x = TenantInfo{}
  1984. if protoimpl.UnsafeEnabled {
  1985. mi := &file_pcmCore_proto_msgTypes[23]
  1986. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1987. ms.StoreMessageInfo(mi)
  1988. }
  1989. }
  1990. func (x *TenantInfo) String() string {
  1991. return protoimpl.X.MessageStringOf(x)
  1992. }
  1993. func (*TenantInfo) ProtoMessage() {}
  1994. func (x *TenantInfo) ProtoReflect() protoreflect.Message {
  1995. mi := &file_pcmCore_proto_msgTypes[23]
  1996. if protoimpl.UnsafeEnabled && x != nil {
  1997. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1998. if ms.LoadMessageInfo() == nil {
  1999. ms.StoreMessageInfo(mi)
  2000. }
  2001. return ms
  2002. }
  2003. return mi.MessageOf(x)
  2004. }
  2005. // Deprecated: Use TenantInfo.ProtoReflect.Descriptor instead.
  2006. func (*TenantInfo) Descriptor() ([]byte, []int) {
  2007. return file_pcmCore_proto_rawDescGZIP(), []int{23}
  2008. }
  2009. func (x *TenantInfo) GetId() int64 {
  2010. if x != nil {
  2011. return x.Id
  2012. }
  2013. return 0
  2014. }
  2015. func (x *TenantInfo) GetTenantName() string {
  2016. if x != nil {
  2017. return x.TenantName
  2018. }
  2019. return ""
  2020. }
  2021. func (x *TenantInfo) GetTenantDesc() string {
  2022. if x != nil {
  2023. return x.TenantDesc
  2024. }
  2025. return ""
  2026. }
  2027. type TenantResp struct {
  2028. state protoimpl.MessageState
  2029. sizeCache protoimpl.SizeCache
  2030. unknownFields protoimpl.UnknownFields
  2031. Code int64 `protobuf:"varint,1,opt,name=code,proto3" json:"code,omitempty"`
  2032. Msg string `protobuf:"bytes,2,opt,name=msg,proto3" json:"msg,omitempty"`
  2033. Id int64 `protobuf:"varint,3,opt,name=id,proto3" json:"id,omitempty"`
  2034. }
  2035. func (x *TenantResp) Reset() {
  2036. *x = TenantResp{}
  2037. if protoimpl.UnsafeEnabled {
  2038. mi := &file_pcmCore_proto_msgTypes[24]
  2039. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2040. ms.StoreMessageInfo(mi)
  2041. }
  2042. }
  2043. func (x *TenantResp) String() string {
  2044. return protoimpl.X.MessageStringOf(x)
  2045. }
  2046. func (*TenantResp) ProtoMessage() {}
  2047. func (x *TenantResp) ProtoReflect() protoreflect.Message {
  2048. mi := &file_pcmCore_proto_msgTypes[24]
  2049. if protoimpl.UnsafeEnabled && x != nil {
  2050. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2051. if ms.LoadMessageInfo() == nil {
  2052. ms.StoreMessageInfo(mi)
  2053. }
  2054. return ms
  2055. }
  2056. return mi.MessageOf(x)
  2057. }
  2058. // Deprecated: Use TenantResp.ProtoReflect.Descriptor instead.
  2059. func (*TenantResp) Descriptor() ([]byte, []int) {
  2060. return file_pcmCore_proto_rawDescGZIP(), []int{24}
  2061. }
  2062. func (x *TenantResp) GetCode() int64 {
  2063. if x != nil {
  2064. return x.Code
  2065. }
  2066. return 0
  2067. }
  2068. func (x *TenantResp) GetMsg() string {
  2069. if x != nil {
  2070. return x.Msg
  2071. }
  2072. return ""
  2073. }
  2074. func (x *TenantResp) GetId() int64 {
  2075. if x != nil {
  2076. return x.Id
  2077. }
  2078. return 0
  2079. }
  2080. type ListTenantResp struct {
  2081. state protoimpl.MessageState
  2082. sizeCache protoimpl.SizeCache
  2083. unknownFields protoimpl.UnknownFields
  2084. Code int64 `protobuf:"varint,1,opt,name=code,proto3" json:"code,omitempty"`
  2085. Msg string `protobuf:"bytes,2,opt,name=msg,proto3" json:"msg,omitempty"`
  2086. TenantInfos []*TenantInfo `protobuf:"bytes,3,rep,name=tenantInfos,proto3" json:"tenantInfos,omitempty"`
  2087. }
  2088. func (x *ListTenantResp) Reset() {
  2089. *x = ListTenantResp{}
  2090. if protoimpl.UnsafeEnabled {
  2091. mi := &file_pcmCore_proto_msgTypes[25]
  2092. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2093. ms.StoreMessageInfo(mi)
  2094. }
  2095. }
  2096. func (x *ListTenantResp) String() string {
  2097. return protoimpl.X.MessageStringOf(x)
  2098. }
  2099. func (*ListTenantResp) ProtoMessage() {}
  2100. func (x *ListTenantResp) ProtoReflect() protoreflect.Message {
  2101. mi := &file_pcmCore_proto_msgTypes[25]
  2102. if protoimpl.UnsafeEnabled && x != nil {
  2103. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2104. if ms.LoadMessageInfo() == nil {
  2105. ms.StoreMessageInfo(mi)
  2106. }
  2107. return ms
  2108. }
  2109. return mi.MessageOf(x)
  2110. }
  2111. // Deprecated: Use ListTenantResp.ProtoReflect.Descriptor instead.
  2112. func (*ListTenantResp) Descriptor() ([]byte, []int) {
  2113. return file_pcmCore_proto_rawDescGZIP(), []int{25}
  2114. }
  2115. func (x *ListTenantResp) GetCode() int64 {
  2116. if x != nil {
  2117. return x.Code
  2118. }
  2119. return 0
  2120. }
  2121. func (x *ListTenantResp) GetMsg() string {
  2122. if x != nil {
  2123. return x.Msg
  2124. }
  2125. return ""
  2126. }
  2127. func (x *ListTenantResp) GetTenantInfos() []*TenantInfo {
  2128. if x != nil {
  2129. return x.TenantInfos
  2130. }
  2131. return nil
  2132. }
  2133. var File_pcmCore_proto protoreflect.FileDescriptor
  2134. var file_pcmCore_proto_rawDesc = []byte{
  2135. 0x0a, 0x0d, 0x70, 0x63, 0x6d, 0x43, 0x6f, 0x72, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12,
  2136. 0x07, 0x70, 0x63, 0x6d, 0x43, 0x6f, 0x72, 0x65, 0x22, 0x83, 0x02, 0x0a, 0x0b, 0x53, 0x79, 0x6e,
  2137. 0x63, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x71, 0x12, 0x24, 0x0a, 0x0d, 0x70, 0x61, 0x72, 0x74,
  2138. 0x69, 0x63, 0x69, 0x70, 0x61, 0x6e, 0x74, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52,
  2139. 0x0d, 0x70, 0x61, 0x72, 0x74, 0x69, 0x63, 0x69, 0x70, 0x61, 0x6e, 0x74, 0x49, 0x64, 0x12, 0x32,
  2140. 0x0a, 0x0b, 0x48, 0x70, 0x63, 0x49, 0x6e, 0x66, 0x6f, 0x4c, 0x69, 0x73, 0x74, 0x18, 0x02, 0x20,
  2141. 0x03, 0x28, 0x0b, 0x32, 0x10, 0x2e, 0x70, 0x63, 0x6d, 0x43, 0x6f, 0x72, 0x65, 0x2e, 0x48, 0x70,
  2142. 0x63, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x0b, 0x48, 0x70, 0x63, 0x49, 0x6e, 0x66, 0x6f, 0x4c, 0x69,
  2143. 0x73, 0x74, 0x12, 0x38, 0x0a, 0x0d, 0x43, 0x6c, 0x6f, 0x75, 0x64, 0x49, 0x6e, 0x66, 0x6f, 0x4c,
  2144. 0x69, 0x73, 0x74, 0x18, 0x03, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x12, 0x2e, 0x70, 0x63, 0x6d, 0x43,
  2145. 0x6f, 0x72, 0x65, 0x2e, 0x43, 0x6c, 0x6f, 0x75, 0x64, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x0d, 0x43,
  2146. 0x6c, 0x6f, 0x75, 0x64, 0x49, 0x6e, 0x66, 0x6f, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x2f, 0x0a, 0x0a,
  2147. 0x41, 0x69, 0x49, 0x6e, 0x66, 0x6f, 0x4c, 0x69, 0x73, 0x74, 0x18, 0x04, 0x20, 0x03, 0x28, 0x0b,
  2148. 0x32, 0x0f, 0x2e, 0x70, 0x63, 0x6d, 0x43, 0x6f, 0x72, 0x65, 0x2e, 0x41, 0x69, 0x49, 0x6e, 0x66,
  2149. 0x6f, 0x52, 0x0a, 0x41, 0x69, 0x49, 0x6e, 0x66, 0x6f, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x2f, 0x0a,
  2150. 0x0a, 0x56, 0x6d, 0x49, 0x6e, 0x66, 0x6f, 0x4c, 0x69, 0x73, 0x74, 0x18, 0x05, 0x20, 0x03, 0x28,
  2151. 0x0b, 0x32, 0x0f, 0x2e, 0x70, 0x63, 0x6d, 0x43, 0x6f, 0x72, 0x65, 0x2e, 0x56, 0x6d, 0x49, 0x6e,
  2152. 0x66, 0x6f, 0x52, 0x0a, 0x56, 0x6d, 0x49, 0x6e, 0x66, 0x6f, 0x4c, 0x69, 0x73, 0x74, 0x22, 0xbf,
  2153. 0x03, 0x0a, 0x06, 0x41, 0x69, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x24, 0x0a, 0x0d, 0x70, 0x61, 0x72,
  2154. 0x74, 0x69, 0x63, 0x69, 0x70, 0x61, 0x6e, 0x74, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03,
  2155. 0x52, 0x0d, 0x70, 0x61, 0x72, 0x74, 0x69, 0x63, 0x69, 0x70, 0x61, 0x6e, 0x74, 0x49, 0x64, 0x12,
  2156. 0x16, 0x0a, 0x06, 0x74, 0x61, 0x73, 0x6b, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52,
  2157. 0x06, 0x74, 0x61, 0x73, 0x6b, 0x49, 0x64, 0x12, 0x1d, 0x0a, 0x0a, 0x70, 0x72, 0x6f, 0x6a, 0x65,
  2158. 0x63, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x70, 0x72, 0x6f,
  2159. 0x6a, 0x65, 0x63, 0x74, 0x49, 0x64, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x04,
  2160. 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x73, 0x74,
  2161. 0x61, 0x74, 0x75, 0x73, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x73, 0x74, 0x61, 0x74,
  2162. 0x75, 0x73, 0x12, 0x1c, 0x0a, 0x09, 0x73, 0x74, 0x61, 0x72, 0x74, 0x54, 0x69, 0x6d, 0x65, 0x18,
  2163. 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x73, 0x74, 0x61, 0x72, 0x74, 0x54, 0x69, 0x6d, 0x65,
  2164. 0x12, 0x20, 0x0a, 0x0b, 0x72, 0x75, 0x6e, 0x6e, 0x69, 0x6e, 0x67, 0x54, 0x69, 0x6d, 0x65, 0x18,
  2165. 0x07, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0b, 0x72, 0x75, 0x6e, 0x6e, 0x69, 0x6e, 0x67, 0x54, 0x69,
  2166. 0x6d, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, 0x08, 0x20, 0x01,
  2167. 0x28, 0x09, 0x52, 0x06, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x12, 0x14, 0x0a, 0x05, 0x6a, 0x6f,
  2168. 0x62, 0x49, 0x64, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x6a, 0x6f, 0x62, 0x49, 0x64,
  2169. 0x12, 0x1e, 0x0a, 0x0a, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x0a,
  2170. 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x54, 0x69, 0x6d, 0x65,
  2171. 0x12, 0x1a, 0x0a, 0x08, 0x69, 0x6d, 0x61, 0x67, 0x65, 0x55, 0x72, 0x6c, 0x18, 0x0b, 0x20, 0x01,
  2172. 0x28, 0x09, 0x52, 0x08, 0x69, 0x6d, 0x61, 0x67, 0x65, 0x55, 0x72, 0x6c, 0x12, 0x18, 0x0a, 0x07,
  2173. 0x63, 0x6f, 0x6d, 0x6d, 0x61, 0x6e, 0x64, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x63,
  2174. 0x6f, 0x6d, 0x6d, 0x61, 0x6e, 0x64, 0x12, 0x1a, 0x0a, 0x08, 0x66, 0x6c, 0x61, 0x76, 0x6f, 0x72,
  2175. 0x49, 0x64, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x66, 0x6c, 0x61, 0x76, 0x6f, 0x72,
  2176. 0x49, 0x64, 0x12, 0x26, 0x0a, 0x0e, 0x73, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69,
  2177. 0x6f, 0x6e, 0x49, 0x64, 0x18, 0x0e, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x73, 0x75, 0x62, 0x73,
  2178. 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x12, 0x24, 0x0a, 0x0d, 0x69, 0x74,
  2179. 0x65, 0x6d, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x18, 0x0f, 0x20, 0x01, 0x28,
  2180. 0x09, 0x52, 0x0d, 0x69, 0x74, 0x65, 0x6d, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x49, 0x64,
  2181. 0x22, 0xcb, 0x02, 0x0a, 0x09, 0x43, 0x6c, 0x6f, 0x75, 0x64, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x20,
  2182. 0x0a, 0x0b, 0x70, 0x61, 0x72, 0x74, 0x69, 0x63, 0x69, 0x70, 0x61, 0x6e, 0x74, 0x18, 0x01, 0x20,
  2183. 0x01, 0x28, 0x03, 0x52, 0x0b, 0x70, 0x61, 0x72, 0x74, 0x69, 0x63, 0x69, 0x70, 0x61, 0x6e, 0x74,
  2184. 0x12, 0x16, 0x0a, 0x06, 0x74, 0x61, 0x73, 0x6b, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03,
  2185. 0x52, 0x06, 0x74, 0x61, 0x73, 0x6b, 0x49, 0x64, 0x12, 0x1e, 0x0a, 0x0a, 0x61, 0x70, 0x69, 0x56,
  2186. 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x61, 0x70,
  2187. 0x69, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x12, 0x0a, 0x04, 0x6b, 0x69, 0x6e, 0x64,
  2188. 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6b, 0x69, 0x6e, 0x64, 0x12, 0x1c, 0x0a, 0x09,
  2189. 0x6e, 0x61, 0x6d, 0x65, 0x73, 0x70, 0x61, 0x63, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52,
  2190. 0x09, 0x6e, 0x61, 0x6d, 0x65, 0x73, 0x70, 0x61, 0x63, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61,
  2191. 0x6d, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x16,
  2192. 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06,
  2193. 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x1c, 0x0a, 0x09, 0x73, 0x74, 0x61, 0x72, 0x74, 0x54,
  2194. 0x69, 0x6d, 0x65, 0x18, 0x08, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x73, 0x74, 0x61, 0x72, 0x74,
  2195. 0x54, 0x69, 0x6d, 0x65, 0x12, 0x20, 0x0a, 0x0b, 0x72, 0x75, 0x6e, 0x6e, 0x69, 0x6e, 0x67, 0x54,
  2196. 0x69, 0x6d, 0x65, 0x18, 0x09, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0b, 0x72, 0x75, 0x6e, 0x6e, 0x69,
  2197. 0x6e, 0x67, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74,
  2198. 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x12, 0x1e,
  2199. 0x0a, 0x0a, 0x79, 0x61, 0x6d, 0x6c, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x18, 0x0b, 0x20, 0x01,
  2200. 0x28, 0x09, 0x52, 0x0a, 0x79, 0x61, 0x6d, 0x6c, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x12, 0x0e,
  2201. 0x0a, 0x02, 0x69, 0x64, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x03, 0x52, 0x02, 0x69, 0x64, 0x22, 0xc3,
  2202. 0x02, 0x0a, 0x06, 0x56, 0x6d, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x24, 0x0a, 0x0d, 0x70, 0x61, 0x72,
  2203. 0x74, 0x69, 0x63, 0x69, 0x70, 0x61, 0x6e, 0x74, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03,
  2204. 0x52, 0x0d, 0x70, 0x61, 0x72, 0x74, 0x69, 0x63, 0x69, 0x70, 0x61, 0x6e, 0x74, 0x49, 0x64, 0x12,
  2205. 0x16, 0x0a, 0x06, 0x74, 0x61, 0x73, 0x6b, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52,
  2206. 0x06, 0x74, 0x61, 0x73, 0x6b, 0x49, 0x64, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18,
  2207. 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x1d, 0x0a, 0x0a, 0x66,
  2208. 0x6c, 0x61, 0x76, 0x6f, 0x72, 0x5f, 0x72, 0x65, 0x66, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52,
  2209. 0x09, 0x66, 0x6c, 0x61, 0x76, 0x6f, 0x72, 0x52, 0x65, 0x66, 0x12, 0x1b, 0x0a, 0x09, 0x69, 0x6d,
  2210. 0x61, 0x67, 0x65, 0x5f, 0x72, 0x65, 0x66, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x69,
  2211. 0x6d, 0x61, 0x67, 0x65, 0x52, 0x65, 0x66, 0x12, 0x21, 0x0a, 0x0c, 0x6e, 0x65, 0x74, 0x77, 0x6f,
  2212. 0x72, 0x6b, 0x5f, 0x75, 0x75, 0x69, 0x64, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x6e,
  2213. 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x55, 0x75, 0x69, 0x64, 0x12, 0x1d, 0x0a, 0x0a, 0x62, 0x6c,
  2214. 0x6f, 0x63, 0x6b, 0x5f, 0x75, 0x75, 0x69, 0x64, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09,
  2215. 0x62, 0x6c, 0x6f, 0x63, 0x6b, 0x55, 0x75, 0x69, 0x64, 0x12, 0x1f, 0x0a, 0x0b, 0x73, 0x6f, 0x75,
  2216. 0x72, 0x63, 0x65, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x08, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a,
  2217. 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x54, 0x79, 0x70, 0x65, 0x12, 0x32, 0x0a, 0x15, 0x64, 0x65,
  2218. 0x6c, 0x65, 0x74, 0x65, 0x5f, 0x6f, 0x6e, 0x5f, 0x74, 0x65, 0x72, 0x6d, 0x69, 0x6e, 0x61, 0x74,
  2219. 0x69, 0x6f, 0x6e, 0x18, 0x09, 0x20, 0x01, 0x28, 0x08, 0x52, 0x13, 0x64, 0x65, 0x6c, 0x65, 0x74,
  2220. 0x65, 0x4f, 0x6e, 0x54, 0x65, 0x72, 0x6d, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x14,
  2221. 0x0a, 0x05, 0x73, 0x74, 0x61, 0x74, 0x65, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x73,
  2222. 0x74, 0x61, 0x74, 0x65, 0x22, 0xab, 0x06, 0x0a, 0x07, 0x48, 0x70, 0x63, 0x49, 0x6e, 0x66, 0x6f,
  2223. 0x12, 0x24, 0x0a, 0x0d, 0x70, 0x61, 0x72, 0x74, 0x69, 0x63, 0x69, 0x70, 0x61, 0x6e, 0x74, 0x49,
  2224. 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0d, 0x70, 0x61, 0x72, 0x74, 0x69, 0x63, 0x69,
  2225. 0x70, 0x61, 0x6e, 0x74, 0x49, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x74, 0x61, 0x73, 0x6b, 0x49, 0x64,
  2226. 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x74, 0x61, 0x73, 0x6b, 0x49, 0x64, 0x12, 0x14,
  2227. 0x0a, 0x05, 0x6a, 0x6f, 0x62, 0x49, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x6a,
  2228. 0x6f, 0x62, 0x49, 0x64, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x04, 0x20, 0x01,
  2229. 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74,
  2230. 0x75, 0x73, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73,
  2231. 0x12, 0x1c, 0x0a, 0x09, 0x73, 0x74, 0x61, 0x72, 0x74, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x06, 0x20,
  2232. 0x01, 0x28, 0x09, 0x52, 0x09, 0x73, 0x74, 0x61, 0x72, 0x74, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x20,
  2233. 0x0a, 0x0b, 0x72, 0x75, 0x6e, 0x6e, 0x69, 0x6e, 0x67, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x07, 0x20,
  2234. 0x01, 0x28, 0x03, 0x52, 0x0b, 0x72, 0x75, 0x6e, 0x6e, 0x69, 0x6e, 0x67, 0x54, 0x69, 0x6d, 0x65,
  2235. 0x12, 0x16, 0x0a, 0x06, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, 0x08, 0x20, 0x01, 0x28, 0x09,
  2236. 0x52, 0x06, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x12, 0x18, 0x0a, 0x07, 0x77, 0x6f, 0x72, 0x6b,
  2237. 0x44, 0x69, 0x72, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x77, 0x6f, 0x72, 0x6b, 0x44,
  2238. 0x69, 0x72, 0x12, 0x1a, 0x0a, 0x08, 0x77, 0x61, 0x6c, 0x6c, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x0a,
  2239. 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x77, 0x61, 0x6c, 0x6c, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x1c,
  2240. 0x0a, 0x09, 0x63, 0x6d, 0x64, 0x53, 0x63, 0x72, 0x69, 0x70, 0x74, 0x18, 0x0b, 0x20, 0x01, 0x28,
  2241. 0x09, 0x52, 0x09, 0x63, 0x6d, 0x64, 0x53, 0x63, 0x72, 0x69, 0x70, 0x74, 0x12, 0x1c, 0x0a, 0x09,
  2242. 0x64, 0x65, 0x72, 0x69, 0x76, 0x65, 0x64, 0x45, 0x73, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x09, 0x52,
  2243. 0x09, 0x64, 0x65, 0x72, 0x69, 0x76, 0x65, 0x64, 0x45, 0x73, 0x12, 0x18, 0x0a, 0x07, 0x63, 0x6c,
  2244. 0x75, 0x73, 0x74, 0x65, 0x72, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x63, 0x6c, 0x75,
  2245. 0x73, 0x74, 0x65, 0x72, 0x12, 0x18, 0x0a, 0x07, 0x62, 0x6c, 0x6f, 0x63, 0x6b, 0x49, 0x64, 0x18,
  2246. 0x0e, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x62, 0x6c, 0x6f, 0x63, 0x6b, 0x49, 0x64, 0x12, 0x1e,
  2247. 0x0a, 0x0a, 0x61, 0x6c, 0x6c, 0x6f, 0x63, 0x4e, 0x6f, 0x64, 0x65, 0x73, 0x18, 0x0f, 0x20, 0x01,
  2248. 0x28, 0x0d, 0x52, 0x0a, 0x61, 0x6c, 0x6c, 0x6f, 0x63, 0x4e, 0x6f, 0x64, 0x65, 0x73, 0x12, 0x1a,
  2249. 0x0a, 0x08, 0x61, 0x6c, 0x6c, 0x6f, 0x63, 0x43, 0x70, 0x75, 0x18, 0x10, 0x20, 0x01, 0x28, 0x0d,
  2250. 0x52, 0x08, 0x61, 0x6c, 0x6c, 0x6f, 0x63, 0x43, 0x70, 0x75, 0x12, 0x18, 0x0a, 0x07, 0x76, 0x65,
  2251. 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x11, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x76, 0x65, 0x72,
  2252. 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x18, 0x0a, 0x07, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x18,
  2253. 0x12, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x1a,
  2254. 0x0a, 0x08, 0x65, 0x78, 0x69, 0x74, 0x43, 0x6f, 0x64, 0x65, 0x18, 0x13, 0x20, 0x01, 0x28, 0x0d,
  2255. 0x52, 0x08, 0x65, 0x78, 0x69, 0x74, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x61, 0x73,
  2256. 0x73, 0x6f, 0x63, 0x49, 0x64, 0x18, 0x14, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x07, 0x61, 0x73, 0x73,
  2257. 0x6f, 0x63, 0x49, 0x64, 0x12, 0x18, 0x0a, 0x07, 0x61, 0x70, 0x70, 0x54, 0x79, 0x70, 0x65, 0x18,
  2258. 0x15, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x61, 0x70, 0x70, 0x54, 0x79, 0x70, 0x65, 0x12, 0x18,
  2259. 0x0a, 0x07, 0x61, 0x70, 0x70, 0x4e, 0x61, 0x6d, 0x65, 0x18, 0x16, 0x20, 0x01, 0x28, 0x09, 0x52,
  2260. 0x07, 0x61, 0x70, 0x70, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x71, 0x75, 0x65, 0x75,
  2261. 0x65, 0x18, 0x17, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x71, 0x75, 0x65, 0x75, 0x65, 0x12, 0x1e,
  2262. 0x0a, 0x0a, 0x73, 0x75, 0x62, 0x6d, 0x69, 0x74, 0x54, 0x79, 0x70, 0x65, 0x18, 0x18, 0x20, 0x01,
  2263. 0x28, 0x09, 0x52, 0x0a, 0x73, 0x75, 0x62, 0x6d, 0x69, 0x74, 0x54, 0x79, 0x70, 0x65, 0x12, 0x14,
  2264. 0x0a, 0x05, 0x6e, 0x4e, 0x6f, 0x64, 0x65, 0x18, 0x19, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x6e,
  2265. 0x4e, 0x6f, 0x64, 0x65, 0x12, 0x1e, 0x0a, 0x0a, 0x73, 0x74, 0x64, 0x4f, 0x75, 0x74, 0x46, 0x69,
  2266. 0x6c, 0x65, 0x18, 0x1a, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x73, 0x74, 0x64, 0x4f, 0x75, 0x74,
  2267. 0x46, 0x69, 0x6c, 0x65, 0x12, 0x1e, 0x0a, 0x0a, 0x73, 0x74, 0x64, 0x45, 0x72, 0x72, 0x46, 0x69,
  2268. 0x6c, 0x65, 0x18, 0x1b, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x73, 0x74, 0x64, 0x45, 0x72, 0x72,
  2269. 0x46, 0x69, 0x6c, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x73, 0x74, 0x64, 0x49, 0x6e, 0x70, 0x75, 0x74,
  2270. 0x18, 0x1c, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x73, 0x74, 0x64, 0x49, 0x6e, 0x70, 0x75, 0x74,
  2271. 0x12, 0x20, 0x0a, 0x0b, 0x65, 0x6e, 0x76, 0x69, 0x72, 0x6f, 0x6e, 0x6d, 0x65, 0x6e, 0x74, 0x18,
  2272. 0x1d, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x65, 0x6e, 0x76, 0x69, 0x72, 0x6f, 0x6e, 0x6d, 0x65,
  2273. 0x6e, 0x74, 0x22, 0x34, 0x0a, 0x0c, 0x53, 0x79, 0x6e, 0x63, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65,
  2274. 0x73, 0x70, 0x12, 0x12, 0x0a, 0x04, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03,
  2275. 0x52, 0x04, 0x63, 0x6f, 0x64, 0x65, 0x12, 0x10, 0x0a, 0x03, 0x6d, 0x73, 0x67, 0x18, 0x02, 0x20,
  2276. 0x01, 0x28, 0x09, 0x52, 0x03, 0x6d, 0x73, 0x67, 0x22, 0x33, 0x0a, 0x0b, 0x49, 0x6e, 0x66, 0x6f,
  2277. 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x12, 0x24, 0x0a, 0x0d, 0x70, 0x61, 0x72, 0x74, 0x69,
  2278. 0x63, 0x69, 0x70, 0x61, 0x6e, 0x74, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0d,
  2279. 0x70, 0x61, 0x72, 0x74, 0x69, 0x63, 0x69, 0x70, 0x61, 0x6e, 0x74, 0x49, 0x64, 0x22, 0xad, 0x01,
  2280. 0x0a, 0x0c, 0x49, 0x6e, 0x66, 0x6f, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x73, 0x70, 0x12, 0x32,
  2281. 0x0a, 0x0b, 0x48, 0x70, 0x63, 0x49, 0x6e, 0x66, 0x6f, 0x4c, 0x69, 0x73, 0x74, 0x18, 0x01, 0x20,
  2282. 0x03, 0x28, 0x0b, 0x32, 0x10, 0x2e, 0x70, 0x63, 0x6d, 0x43, 0x6f, 0x72, 0x65, 0x2e, 0x48, 0x70,
  2283. 0x63, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x0b, 0x48, 0x70, 0x63, 0x49, 0x6e, 0x66, 0x6f, 0x4c, 0x69,
  2284. 0x73, 0x74, 0x12, 0x38, 0x0a, 0x0d, 0x43, 0x6c, 0x6f, 0x75, 0x64, 0x49, 0x6e, 0x66, 0x6f, 0x4c,
  2285. 0x69, 0x73, 0x74, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x12, 0x2e, 0x70, 0x63, 0x6d, 0x43,
  2286. 0x6f, 0x72, 0x65, 0x2e, 0x43, 0x6c, 0x6f, 0x75, 0x64, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x0d, 0x43,
  2287. 0x6c, 0x6f, 0x75, 0x64, 0x49, 0x6e, 0x66, 0x6f, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x2f, 0x0a, 0x0a,
  2288. 0x41, 0x69, 0x49, 0x6e, 0x66, 0x6f, 0x4c, 0x69, 0x73, 0x74, 0x18, 0x03, 0x20, 0x03, 0x28, 0x0b,
  2289. 0x32, 0x0f, 0x2e, 0x70, 0x63, 0x6d, 0x43, 0x6f, 0x72, 0x65, 0x2e, 0x41, 0x69, 0x49, 0x6e, 0x66,
  2290. 0x6f, 0x52, 0x0a, 0x41, 0x69, 0x49, 0x6e, 0x66, 0x6f, 0x4c, 0x69, 0x73, 0x74, 0x22, 0x33, 0x0a,
  2291. 0x11, 0x50, 0x61, 0x72, 0x74, 0x69, 0x63, 0x69, 0x70, 0x61, 0x6e, 0x74, 0x54, 0x65, 0x6e, 0x61,
  2292. 0x6e, 0x74, 0x12, 0x1e, 0x0a, 0x0a, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x4e, 0x61, 0x6d, 0x65,
  2293. 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x4e, 0x61,
  2294. 0x6d, 0x65, 0x22, 0x4a, 0x0a, 0x10, 0x50, 0x61, 0x72, 0x74, 0x69, 0x63, 0x69, 0x70, 0x61, 0x6e,
  2295. 0x74, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01,
  2296. 0x28, 0x03, 0x52, 0x02, 0x69, 0x64, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x02, 0x20,
  2297. 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75,
  2298. 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x22, 0x75,
  2299. 0x0a, 0x0f, 0x48, 0x65, 0x61, 0x6c, 0x74, 0x68, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x52, 0x65, 0x73,
  2300. 0x70, 0x12, 0x3c, 0x0a, 0x0d, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x53, 0x74, 0x61, 0x74,
  2301. 0x75, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x16, 0x2e, 0x70, 0x63, 0x6d, 0x43, 0x6f,
  2302. 0x72, 0x65, 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73,
  2303. 0x52, 0x0d, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12,
  2304. 0x12, 0x0a, 0x04, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x04, 0x63,
  2305. 0x6f, 0x64, 0x65, 0x12, 0x10, 0x0a, 0x03, 0x6d, 0x73, 0x67, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09,
  2306. 0x52, 0x03, 0x6d, 0x73, 0x67, 0x22, 0x60, 0x0a, 0x12, 0x50, 0x61, 0x72, 0x74, 0x69, 0x63, 0x69,
  2307. 0x70, 0x61, 0x6e, 0x74, 0x50, 0x68, 0x79, 0x52, 0x65, 0x73, 0x70, 0x12, 0x12, 0x0a, 0x04, 0x63,
  2308. 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x04, 0x63, 0x6f, 0x64, 0x65, 0x12,
  2309. 0x10, 0x0a, 0x03, 0x6d, 0x73, 0x67, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6d, 0x73,
  2310. 0x67, 0x12, 0x24, 0x0a, 0x0d, 0x70, 0x61, 0x72, 0x74, 0x69, 0x63, 0x69, 0x70, 0x61, 0x6e, 0x74,
  2311. 0x49, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0d, 0x70, 0x61, 0x72, 0x74, 0x69, 0x63,
  2312. 0x69, 0x70, 0x61, 0x6e, 0x74, 0x49, 0x64, 0x22, 0x84, 0x01, 0x0a, 0x16, 0x4c, 0x69, 0x73, 0x74,
  2313. 0x50, 0x61, 0x72, 0x74, 0x69, 0x63, 0x69, 0x70, 0x61, 0x6e, 0x74, 0x50, 0x68, 0x79, 0x52, 0x65,
  2314. 0x73, 0x70, 0x12, 0x12, 0x0a, 0x04, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03,
  2315. 0x52, 0x04, 0x63, 0x6f, 0x64, 0x65, 0x12, 0x10, 0x0a, 0x03, 0x6d, 0x73, 0x67, 0x18, 0x02, 0x20,
  2316. 0x01, 0x28, 0x09, 0x52, 0x03, 0x6d, 0x73, 0x67, 0x12, 0x44, 0x0a, 0x0f, 0x50, 0x61, 0x72, 0x74,
  2317. 0x69, 0x63, 0x69, 0x70, 0x61, 0x6e, 0x74, 0x50, 0x68, 0x79, 0x73, 0x18, 0x03, 0x20, 0x03, 0x28,
  2318. 0x0b, 0x32, 0x1a, 0x2e, 0x70, 0x63, 0x6d, 0x43, 0x6f, 0x72, 0x65, 0x2e, 0x50, 0x61, 0x72, 0x74,
  2319. 0x69, 0x63, 0x69, 0x70, 0x61, 0x6e, 0x74, 0x50, 0x68, 0x79, 0x52, 0x65, 0x71, 0x52, 0x0f, 0x50,
  2320. 0x61, 0x72, 0x74, 0x69, 0x63, 0x69, 0x70, 0x61, 0x6e, 0x74, 0x50, 0x68, 0x79, 0x73, 0x22, 0x95,
  2321. 0x05, 0x0a, 0x11, 0x50, 0x61, 0x72, 0x74, 0x69, 0x63, 0x69, 0x70, 0x61, 0x6e, 0x74, 0x50, 0x68,
  2322. 0x79, 0x52, 0x65, 0x71, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01,
  2323. 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x61, 0x64, 0x64, 0x72,
  2324. 0x65, 0x73, 0x73, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x61, 0x64, 0x64, 0x72, 0x65,
  2325. 0x73, 0x73, 0x12, 0x20, 0x0a, 0x0b, 0x6e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x54, 0x79, 0x70,
  2326. 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x6e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b,
  2327. 0x54, 0x79, 0x70, 0x65, 0x12, 0x2a, 0x0a, 0x10, 0x6e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x42,
  2328. 0x61, 0x6e, 0x64, 0x77, 0x69, 0x64, 0x74, 0x68, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x10,
  2329. 0x6e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x42, 0x61, 0x6e, 0x64, 0x77, 0x69, 0x64, 0x74, 0x68,
  2330. 0x12, 0x20, 0x0a, 0x0b, 0x73, 0x74, 0x6f, 0x72, 0x61, 0x67, 0x65, 0x54, 0x79, 0x70, 0x65, 0x18,
  2331. 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x73, 0x74, 0x6f, 0x72, 0x61, 0x67, 0x65, 0x54, 0x79,
  2332. 0x70, 0x65, 0x12, 0x22, 0x0a, 0x0c, 0x73, 0x74, 0x6f, 0x72, 0x61, 0x67, 0x65, 0x53, 0x70, 0x61,
  2333. 0x63, 0x65, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c, 0x73, 0x74, 0x6f, 0x72, 0x61, 0x67,
  2334. 0x65, 0x53, 0x70, 0x61, 0x63, 0x65, 0x12, 0x2c, 0x0a, 0x11, 0x73, 0x74, 0x6f, 0x72, 0x61, 0x67,
  2335. 0x65, 0x41, 0x76, 0x61, 0x69, 0x6c, 0x53, 0x70, 0x61, 0x63, 0x65, 0x18, 0x08, 0x20, 0x01, 0x28,
  2336. 0x09, 0x52, 0x11, 0x73, 0x74, 0x6f, 0x72, 0x61, 0x67, 0x65, 0x41, 0x76, 0x61, 0x69, 0x6c, 0x53,
  2337. 0x70, 0x61, 0x63, 0x65, 0x12, 0x2a, 0x0a, 0x10, 0x73, 0x74, 0x6f, 0x72, 0x61, 0x67, 0x65, 0x42,
  2338. 0x61, 0x6e, 0x64, 0x77, 0x69, 0x64, 0x74, 0x68, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x52, 0x10,
  2339. 0x73, 0x74, 0x6f, 0x72, 0x61, 0x67, 0x65, 0x42, 0x61, 0x6e, 0x64, 0x77, 0x69, 0x64, 0x74, 0x68,
  2340. 0x12, 0x12, 0x0a, 0x04, 0x74, 0x79, 0x70, 0x65, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04,
  2341. 0x74, 0x79, 0x70, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x49, 0x64,
  2342. 0x18, 0x0b, 0x20, 0x01, 0x28, 0x03, 0x52, 0x08, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x49, 0x64,
  2343. 0x12, 0x1e, 0x0a, 0x0a, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x4e, 0x61, 0x6d, 0x65, 0x18, 0x0c,
  2344. 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x4e, 0x61, 0x6d, 0x65,
  2345. 0x12, 0x30, 0x0a, 0x08, 0x6e, 0x6f, 0x64, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x18, 0x0d, 0x20, 0x03,
  2346. 0x28, 0x0b, 0x32, 0x14, 0x2e, 0x70, 0x63, 0x6d, 0x43, 0x6f, 0x72, 0x65, 0x2e, 0x4e, 0x6f, 0x64,
  2347. 0x65, 0x50, 0x68, 0x79, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x08, 0x6e, 0x6f, 0x64, 0x65, 0x49, 0x6e,
  2348. 0x66, 0x6f, 0x12, 0x24, 0x0a, 0x0d, 0x70, 0x61, 0x72, 0x74, 0x69, 0x63, 0x69, 0x70, 0x61, 0x6e,
  2349. 0x74, 0x49, 0x64, 0x18, 0x0e, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0d, 0x70, 0x61, 0x72, 0x74, 0x69,
  2350. 0x63, 0x69, 0x70, 0x61, 0x6e, 0x74, 0x49, 0x64, 0x12, 0x37, 0x0a, 0x09, 0x6c, 0x61, 0x62, 0x65,
  2351. 0x6c, 0x49, 0x6e, 0x66, 0x6f, 0x18, 0x0f, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x19, 0x2e, 0x70, 0x63,
  2352. 0x6d, 0x43, 0x6f, 0x72, 0x65, 0x2e, 0x50, 0x61, 0x72, 0x74, 0x69, 0x63, 0x69, 0x70, 0x61, 0x6e,
  2353. 0x74, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x52, 0x09, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x49, 0x6e, 0x66,
  2354. 0x6f, 0x12, 0x33, 0x0a, 0x09, 0x71, 0x75, 0x65, 0x75, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x18, 0x10,
  2355. 0x20, 0x03, 0x28, 0x0b, 0x32, 0x15, 0x2e, 0x70, 0x63, 0x6d, 0x43, 0x6f, 0x72, 0x65, 0x2e, 0x51,
  2356. 0x75, 0x65, 0x75, 0x65, 0x50, 0x68, 0x79, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x09, 0x71, 0x75, 0x65,
  2357. 0x75, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x11, 0x20, 0x01,
  2358. 0x28, 0x03, 0x52, 0x02, 0x69, 0x64, 0x12, 0x1e, 0x0a, 0x0a, 0x4d, 0x65, 0x74, 0x72, 0x69, 0x63,
  2359. 0x73, 0x55, 0x72, 0x6c, 0x18, 0x12, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x4d, 0x65, 0x74, 0x72,
  2360. 0x69, 0x63, 0x73, 0x55, 0x72, 0x6c, 0x12, 0x1e, 0x0a, 0x0a, 0x52, 0x70, 0x63, 0x41, 0x64, 0x64,
  2361. 0x72, 0x65, 0x73, 0x73, 0x18, 0x13, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x52, 0x70, 0x63, 0x41,
  2362. 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x22, 0xc3, 0x01, 0x0a, 0x0b, 0x4e, 0x6f, 0x64, 0x65, 0x50,
  2363. 0x68, 0x79, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01,
  2364. 0x28, 0x03, 0x52, 0x02, 0x69, 0x64, 0x12, 0x1a, 0x0a, 0x08, 0x6e, 0x6f, 0x64, 0x65, 0x4e, 0x61,
  2365. 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6e, 0x6f, 0x64, 0x65, 0x4e, 0x61,
  2366. 0x6d, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x6f, 0x73, 0x4e, 0x61, 0x6d, 0x65, 0x18, 0x03, 0x20, 0x01,
  2367. 0x28, 0x09, 0x52, 0x06, 0x6f, 0x73, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x6f, 0x73,
  2368. 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x6f,
  2369. 0x73, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x1a, 0x0a, 0x08, 0x61, 0x72, 0x63, 0x68,
  2370. 0x54, 0x79, 0x70, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x61, 0x72, 0x63, 0x68,
  2371. 0x54, 0x79, 0x70, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x61, 0x72, 0x63, 0x68, 0x4e, 0x61, 0x6d, 0x65,
  2372. 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x61, 0x72, 0x63, 0x68, 0x4e, 0x61, 0x6d, 0x65,
  2373. 0x12, 0x1a, 0x0a, 0x08, 0x61, 0x72, 0x63, 0x68, 0x46, 0x72, 0x65, 0x71, 0x18, 0x07, 0x20, 0x01,
  2374. 0x28, 0x09, 0x52, 0x08, 0x61, 0x72, 0x63, 0x68, 0x46, 0x72, 0x65, 0x71, 0x22, 0x86, 0x05, 0x0a,
  2375. 0x0c, 0x51, 0x75, 0x65, 0x75, 0x65, 0x50, 0x68, 0x79, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x0e, 0x0a,
  2376. 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x02, 0x69, 0x64, 0x12, 0x1a, 0x0a,
  2377. 0x08, 0x61, 0x63, 0x6c, 0x48, 0x6f, 0x73, 0x74, 0x73, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52,
  2378. 0x08, 0x61, 0x63, 0x6c, 0x48, 0x6f, 0x73, 0x74, 0x73, 0x12, 0x18, 0x0a, 0x07, 0x71, 0x75, 0x65,
  2379. 0x75, 0x65, 0x49, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x71, 0x75, 0x65, 0x75,
  2380. 0x65, 0x49, 0x64, 0x12, 0x12, 0x0a, 0x04, 0x74, 0x65, 0x78, 0x74, 0x18, 0x04, 0x20, 0x01, 0x28,
  2381. 0x09, 0x52, 0x04, 0x74, 0x65, 0x78, 0x74, 0x12, 0x1c, 0x0a, 0x09, 0x71, 0x75, 0x65, 0x75, 0x65,
  2382. 0x4e, 0x61, 0x6d, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x71, 0x75, 0x65, 0x75,
  2383. 0x65, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x71, 0x75, 0x65, 0x4e, 0x6f, 0x64, 0x65,
  2384. 0x73, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x71, 0x75, 0x65, 0x4e, 0x6f, 0x64, 0x65,
  2385. 0x73, 0x12, 0x22, 0x0a, 0x0c, 0x71, 0x75, 0x65, 0x4d, 0x69, 0x6e, 0x4e, 0x6f, 0x64, 0x65, 0x63,
  2386. 0x74, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c, 0x71, 0x75, 0x65, 0x4d, 0x69, 0x6e, 0x4e,
  2387. 0x6f, 0x64, 0x65, 0x63, 0x74, 0x12, 0x20, 0x0a, 0x0b, 0x71, 0x75, 0x65, 0x4d, 0x61, 0x78, 0x4e,
  2388. 0x67, 0x70, 0x75, 0x73, 0x18, 0x08, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x71, 0x75, 0x65, 0x4d,
  2389. 0x61, 0x78, 0x4e, 0x67, 0x70, 0x75, 0x73, 0x12, 0x1c, 0x0a, 0x09, 0x71, 0x75, 0x65, 0x4d, 0x61,
  2390. 0x78, 0x50, 0x70, 0x6e, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x71, 0x75, 0x65, 0x4d,
  2391. 0x61, 0x78, 0x50, 0x70, 0x6e, 0x12, 0x24, 0x0a, 0x0d, 0x71, 0x75, 0x65, 0x43, 0x68, 0x61, 0x72,
  2392. 0x67, 0x65, 0x52, 0x61, 0x74, 0x65, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x71, 0x75,
  2393. 0x65, 0x43, 0x68, 0x61, 0x72, 0x67, 0x65, 0x52, 0x61, 0x74, 0x65, 0x12, 0x20, 0x0a, 0x0b, 0x71,
  2394. 0x75, 0x65, 0x4d, 0x61, 0x78, 0x4e, 0x63, 0x70, 0x75, 0x73, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x09,
  2395. 0x52, 0x0b, 0x71, 0x75, 0x65, 0x4d, 0x61, 0x78, 0x4e, 0x63, 0x70, 0x75, 0x73, 0x12, 0x20, 0x0a,
  2396. 0x0b, 0x71, 0x75, 0x65, 0x4d, 0x61, 0x78, 0x4e, 0x64, 0x63, 0x75, 0x73, 0x18, 0x0c, 0x20, 0x01,
  2397. 0x28, 0x09, 0x52, 0x0b, 0x71, 0x75, 0x65, 0x4d, 0x61, 0x78, 0x4e, 0x64, 0x63, 0x75, 0x73, 0x12,
  2398. 0x20, 0x0a, 0x0b, 0x71, 0x75, 0x65, 0x4d, 0x69, 0x6e, 0x4e, 0x63, 0x70, 0x75, 0x73, 0x18, 0x0d,
  2399. 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x71, 0x75, 0x65, 0x4d, 0x69, 0x6e, 0x4e, 0x63, 0x70, 0x75,
  2400. 0x73, 0x12, 0x22, 0x0a, 0x0c, 0x71, 0x75, 0x65, 0x46, 0x72, 0x65, 0x65, 0x4e, 0x6f, 0x64, 0x65,
  2401. 0x73, 0x18, 0x0e, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c, 0x71, 0x75, 0x65, 0x46, 0x72, 0x65, 0x65,
  2402. 0x4e, 0x6f, 0x64, 0x65, 0x73, 0x12, 0x22, 0x0a, 0x0c, 0x71, 0x75, 0x65, 0x4d, 0x61, 0x78, 0x4e,
  2403. 0x6f, 0x64, 0x65, 0x63, 0x74, 0x18, 0x0f, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c, 0x71, 0x75, 0x65,
  2404. 0x4d, 0x61, 0x78, 0x4e, 0x6f, 0x64, 0x65, 0x63, 0x74, 0x12, 0x20, 0x0a, 0x0b, 0x71, 0x75, 0x65,
  2405. 0x4d, 0x61, 0x78, 0x47, 0x70, 0x75, 0x50, 0x4e, 0x18, 0x10, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b,
  2406. 0x71, 0x75, 0x65, 0x4d, 0x61, 0x78, 0x47, 0x70, 0x75, 0x50, 0x4e, 0x12, 0x26, 0x0a, 0x0e, 0x71,
  2407. 0x75, 0x65, 0x4d, 0x61, 0x78, 0x57, 0x61, 0x6c, 0x6c, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x11, 0x20,
  2408. 0x01, 0x28, 0x09, 0x52, 0x0e, 0x71, 0x75, 0x65, 0x4d, 0x61, 0x78, 0x57, 0x61, 0x6c, 0x6c, 0x74,
  2409. 0x69, 0x6d, 0x65, 0x12, 0x20, 0x0a, 0x0b, 0x71, 0x75, 0x65, 0x4d, 0x61, 0x78, 0x44, 0x63, 0x75,
  2410. 0x50, 0x4e, 0x18, 0x12, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x71, 0x75, 0x65, 0x4d, 0x61, 0x78,
  2411. 0x44, 0x63, 0x75, 0x50, 0x4e, 0x12, 0x1a, 0x0a, 0x08, 0x71, 0x75, 0x65, 0x4e, 0x63, 0x70, 0x75,
  2412. 0x73, 0x18, 0x13, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x71, 0x75, 0x65, 0x4e, 0x63, 0x70, 0x75,
  2413. 0x73, 0x12, 0x22, 0x0a, 0x0c, 0x71, 0x75, 0x65, 0x46, 0x72, 0x65, 0x65, 0x4e, 0x63, 0x70, 0x75,
  2414. 0x73, 0x18, 0x14, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c, 0x71, 0x75, 0x65, 0x46, 0x72, 0x65, 0x65,
  2415. 0x4e, 0x63, 0x70, 0x75, 0x73, 0x22, 0x59, 0x0a, 0x17, 0x50, 0x61, 0x72, 0x74, 0x69, 0x63, 0x69,
  2416. 0x70, 0x61, 0x6e, 0x74, 0x48, 0x65, 0x61, 0x72, 0x74, 0x62, 0x65, 0x61, 0x74, 0x52, 0x65, 0x71,
  2417. 0x12, 0x24, 0x0a, 0x0d, 0x70, 0x61, 0x72, 0x74, 0x69, 0x63, 0x69, 0x70, 0x61, 0x6e, 0x74, 0x49,
  2418. 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0d, 0x70, 0x61, 0x72, 0x74, 0x69, 0x63, 0x69,
  2419. 0x70, 0x61, 0x6e, 0x74, 0x49, 0x64, 0x12, 0x18, 0x0a, 0x07, 0x61, 0x64, 0x64, 0x72, 0x65, 0x73,
  2420. 0x73, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x61, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73,
  2421. 0x22, 0x9d, 0x02, 0x0a, 0x13, 0x50, 0x61, 0x72, 0x74, 0x69, 0x63, 0x69, 0x70, 0x61, 0x6e, 0x74,
  2422. 0x41, 0x76, 0x61, 0x69, 0x6c, 0x52, 0x65, 0x71, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01,
  2423. 0x20, 0x01, 0x28, 0x03, 0x52, 0x02, 0x69, 0x64, 0x12, 0x2c, 0x0a, 0x11, 0x61, 0x76, 0x61, 0x69,
  2424. 0x6c, 0x53, 0x74, 0x6f, 0x72, 0x61, 0x67, 0x65, 0x53, 0x70, 0x61, 0x63, 0x65, 0x18, 0x02, 0x20,
  2425. 0x01, 0x28, 0x03, 0x52, 0x11, 0x61, 0x76, 0x61, 0x69, 0x6c, 0x53, 0x74, 0x6f, 0x72, 0x61, 0x67,
  2426. 0x65, 0x53, 0x70, 0x61, 0x63, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x75, 0x73, 0x65, 0x72, 0x4e, 0x75,
  2427. 0x6d, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x07, 0x75, 0x73, 0x65, 0x72, 0x4e, 0x75, 0x6d,
  2428. 0x12, 0x24, 0x0a, 0x0d, 0x70, 0x65, 0x6e, 0x64, 0x69, 0x6e, 0x67, 0x4a, 0x6f, 0x62, 0x4e, 0x75,
  2429. 0x6d, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0d, 0x70, 0x65, 0x6e, 0x64, 0x69, 0x6e, 0x67,
  2430. 0x4a, 0x6f, 0x62, 0x4e, 0x75, 0x6d, 0x12, 0x24, 0x0a, 0x0d, 0x72, 0x75, 0x6e, 0x6e, 0x69, 0x6e,
  2431. 0x67, 0x4a, 0x6f, 0x62, 0x4e, 0x75, 0x6d, 0x18, 0x05, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0d, 0x72,
  2432. 0x75, 0x6e, 0x6e, 0x69, 0x6e, 0x67, 0x4a, 0x6f, 0x62, 0x4e, 0x75, 0x6d, 0x12, 0x24, 0x0a, 0x0d,
  2433. 0x70, 0x61, 0x72, 0x74, 0x69, 0x63, 0x69, 0x70, 0x61, 0x6e, 0x74, 0x49, 0x64, 0x18, 0x06, 0x20,
  2434. 0x01, 0x28, 0x03, 0x52, 0x0d, 0x70, 0x61, 0x72, 0x74, 0x69, 0x63, 0x69, 0x70, 0x61, 0x6e, 0x74,
  2435. 0x49, 0x64, 0x12, 0x3c, 0x0a, 0x0d, 0x6e, 0x6f, 0x64, 0x65, 0x41, 0x76, 0x61, 0x69, 0x6c, 0x49,
  2436. 0x6e, 0x66, 0x6f, 0x18, 0x07, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x16, 0x2e, 0x70, 0x63, 0x6d, 0x43,
  2437. 0x6f, 0x72, 0x65, 0x2e, 0x4e, 0x6f, 0x64, 0x65, 0x41, 0x76, 0x61, 0x69, 0x6c, 0x49, 0x6e, 0x66,
  2438. 0x6f, 0x52, 0x0d, 0x6e, 0x6f, 0x64, 0x65, 0x41, 0x76, 0x61, 0x69, 0x6c, 0x49, 0x6e, 0x66, 0x6f,
  2439. 0x22, 0xc7, 0x02, 0x0a, 0x0d, 0x4e, 0x6f, 0x64, 0x65, 0x41, 0x76, 0x61, 0x69, 0x6c, 0x49, 0x6e,
  2440. 0x66, 0x6f, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x02,
  2441. 0x69, 0x64, 0x12, 0x1a, 0x0a, 0x08, 0x6e, 0x6f, 0x64, 0x65, 0x4e, 0x61, 0x6d, 0x65, 0x18, 0x02,
  2442. 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6e, 0x6f, 0x64, 0x65, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x1a,
  2443. 0x0a, 0x08, 0x63, 0x70, 0x75, 0x54, 0x6f, 0x74, 0x61, 0x6c, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03,
  2444. 0x52, 0x08, 0x63, 0x70, 0x75, 0x54, 0x6f, 0x74, 0x61, 0x6c, 0x12, 0x1c, 0x0a, 0x09, 0x63, 0x70,
  2445. 0x75, 0x55, 0x73, 0x61, 0x62, 0x6c, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x01, 0x52, 0x09, 0x63,
  2446. 0x70, 0x75, 0x55, 0x73, 0x61, 0x62, 0x6c, 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x64, 0x69, 0x73, 0x6b,
  2447. 0x54, 0x6f, 0x74, 0x61, 0x6c, 0x18, 0x05, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x64, 0x69, 0x73,
  2448. 0x6b, 0x54, 0x6f, 0x74, 0x61, 0x6c, 0x12, 0x1c, 0x0a, 0x09, 0x64, 0x69, 0x73, 0x6b, 0x41, 0x76,
  2449. 0x61, 0x69, 0x6c, 0x18, 0x06, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x64, 0x69, 0x73, 0x6b, 0x41,
  2450. 0x76, 0x61, 0x69, 0x6c, 0x12, 0x1a, 0x0a, 0x08, 0x6d, 0x65, 0x6d, 0x54, 0x6f, 0x74, 0x61, 0x6c,
  2451. 0x18, 0x07, 0x20, 0x01, 0x28, 0x03, 0x52, 0x08, 0x6d, 0x65, 0x6d, 0x54, 0x6f, 0x74, 0x61, 0x6c,
  2452. 0x12, 0x1a, 0x0a, 0x08, 0x6d, 0x65, 0x6d, 0x41, 0x76, 0x61, 0x69, 0x6c, 0x18, 0x08, 0x20, 0x01,
  2453. 0x28, 0x03, 0x52, 0x08, 0x6d, 0x65, 0x6d, 0x41, 0x76, 0x61, 0x69, 0x6c, 0x12, 0x1a, 0x0a, 0x08,
  2454. 0x67, 0x70, 0x75, 0x54, 0x6f, 0x74, 0x61, 0x6c, 0x18, 0x09, 0x20, 0x01, 0x28, 0x03, 0x52, 0x08,
  2455. 0x67, 0x70, 0x75, 0x54, 0x6f, 0x74, 0x61, 0x6c, 0x12, 0x1a, 0x0a, 0x08, 0x67, 0x70, 0x75, 0x41,
  2456. 0x76, 0x61, 0x69, 0x6c, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x03, 0x52, 0x08, 0x67, 0x70, 0x75, 0x41,
  2457. 0x76, 0x61, 0x69, 0x6c, 0x12, 0x24, 0x0a, 0x0d, 0x70, 0x61, 0x72, 0x74, 0x69, 0x63, 0x69, 0x70,
  2458. 0x61, 0x6e, 0x74, 0x49, 0x64, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0d, 0x70, 0x61, 0x72,
  2459. 0x74, 0x69, 0x63, 0x69, 0x70, 0x61, 0x6e, 0x74, 0x49, 0x64, 0x22, 0x8c, 0x01, 0x0a, 0x18, 0x4c,
  2460. 0x69, 0x73, 0x74, 0x50, 0x61, 0x72, 0x74, 0x69, 0x63, 0x69, 0x70, 0x61, 0x6e, 0x74, 0x41, 0x76,
  2461. 0x61, 0x69, 0x6c, 0x52, 0x65, 0x73, 0x70, 0x12, 0x12, 0x0a, 0x04, 0x63, 0x6f, 0x64, 0x65, 0x18,
  2462. 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x04, 0x63, 0x6f, 0x64, 0x65, 0x12, 0x10, 0x0a, 0x03, 0x6d,
  2463. 0x73, 0x67, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6d, 0x73, 0x67, 0x12, 0x4a, 0x0a,
  2464. 0x11, 0x50, 0x61, 0x72, 0x74, 0x69, 0x63, 0x69, 0x70, 0x61, 0x6e, 0x74, 0x41, 0x76, 0x61, 0x69,
  2465. 0x6c, 0x73, 0x18, 0x03, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x1c, 0x2e, 0x70, 0x63, 0x6d, 0x43, 0x6f,
  2466. 0x72, 0x65, 0x2e, 0x50, 0x61, 0x72, 0x74, 0x69, 0x63, 0x69, 0x70, 0x61, 0x6e, 0x74, 0x41, 0x76,
  2467. 0x61, 0x69, 0x6c, 0x52, 0x65, 0x71, 0x52, 0x11, 0x50, 0x61, 0x72, 0x74, 0x69, 0x63, 0x69, 0x70,
  2468. 0x61, 0x6e, 0x74, 0x41, 0x76, 0x61, 0x69, 0x6c, 0x73, 0x22, 0x37, 0x0a, 0x0f, 0x50, 0x61, 0x72,
  2469. 0x74, 0x69, 0x63, 0x69, 0x70, 0x61, 0x6e, 0x74, 0x52, 0x65, 0x73, 0x70, 0x12, 0x12, 0x0a, 0x04,
  2470. 0x63, 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x04, 0x63, 0x6f, 0x64, 0x65,
  2471. 0x12, 0x10, 0x0a, 0x03, 0x6d, 0x73, 0x67, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6d,
  2472. 0x73, 0x67, 0x22, 0x67, 0x0a, 0x16, 0x50, 0x61, 0x72, 0x74, 0x69, 0x63, 0x69, 0x70, 0x61, 0x6e,
  2473. 0x74, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x52, 0x65, 0x73, 0x70, 0x12, 0x12, 0x0a, 0x04,
  2474. 0x63, 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x04, 0x63, 0x6f, 0x64, 0x65,
  2475. 0x12, 0x10, 0x0a, 0x03, 0x6d, 0x73, 0x67, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6d,
  2476. 0x73, 0x67, 0x12, 0x27, 0x0a, 0x04, 0x64, 0x61, 0x74, 0x61, 0x18, 0x03, 0x20, 0x03, 0x28, 0x0b,
  2477. 0x32, 0x13, 0x2e, 0x70, 0x63, 0x6d, 0x43, 0x6f, 0x72, 0x65, 0x2e, 0x43, 0x6c, 0x69, 0x65, 0x6e,
  2478. 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x04, 0x64, 0x61, 0x74, 0x61, 0x22, 0x94, 0x01, 0x0a, 0x0a,
  2479. 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x18, 0x0a, 0x07, 0x61, 0x64,
  2480. 0x64, 0x72, 0x65, 0x73, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x61, 0x64, 0x64,
  2481. 0x72, 0x65, 0x73, 0x73, 0x12, 0x24, 0x0a, 0x0d, 0x70, 0x61, 0x72, 0x74, 0x69, 0x63, 0x69, 0x70,
  2482. 0x61, 0x6e, 0x74, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0d, 0x70, 0x61, 0x72,
  2483. 0x74, 0x69, 0x63, 0x69, 0x70, 0x61, 0x6e, 0x74, 0x49, 0x64, 0x12, 0x20, 0x0a, 0x0b, 0x63, 0x6c,
  2484. 0x69, 0x65, 0x6e, 0x74, 0x53, 0x74, 0x61, 0x74, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52,
  2485. 0x0b, 0x63, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x53, 0x74, 0x61, 0x74, 0x65, 0x12, 0x24, 0x0a, 0x0d,
  2486. 0x6c, 0x61, 0x73, 0x74, 0x48, 0x65, 0x61, 0x72, 0x74, 0x62, 0x65, 0x61, 0x74, 0x18, 0x04, 0x20,
  2487. 0x01, 0x28, 0x03, 0x52, 0x0d, 0x6c, 0x61, 0x73, 0x74, 0x48, 0x65, 0x61, 0x72, 0x74, 0x62, 0x65,
  2488. 0x61, 0x74, 0x22, 0x5c, 0x0a, 0x0a, 0x54, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x49, 0x6e, 0x66, 0x6f,
  2489. 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x02, 0x69, 0x64,
  2490. 0x12, 0x1e, 0x0a, 0x0a, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x4e, 0x61, 0x6d, 0x65, 0x18, 0x02,
  2491. 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x4e, 0x61, 0x6d, 0x65,
  2492. 0x12, 0x1e, 0x0a, 0x0a, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x44, 0x65, 0x73, 0x63, 0x18, 0x03,
  2493. 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x44, 0x65, 0x73, 0x63,
  2494. 0x22, 0x42, 0x0a, 0x0a, 0x54, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x52, 0x65, 0x73, 0x70, 0x12, 0x12,
  2495. 0x0a, 0x04, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x04, 0x63, 0x6f,
  2496. 0x64, 0x65, 0x12, 0x10, 0x0a, 0x03, 0x6d, 0x73, 0x67, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52,
  2497. 0x03, 0x6d, 0x73, 0x67, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03,
  2498. 0x52, 0x02, 0x69, 0x64, 0x22, 0x6d, 0x0a, 0x0e, 0x4c, 0x69, 0x73, 0x74, 0x54, 0x65, 0x6e, 0x61,
  2499. 0x6e, 0x74, 0x52, 0x65, 0x73, 0x70, 0x12, 0x12, 0x0a, 0x04, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x01,
  2500. 0x20, 0x01, 0x28, 0x03, 0x52, 0x04, 0x63, 0x6f, 0x64, 0x65, 0x12, 0x10, 0x0a, 0x03, 0x6d, 0x73,
  2501. 0x67, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6d, 0x73, 0x67, 0x12, 0x35, 0x0a, 0x0b,
  2502. 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x73, 0x18, 0x03, 0x20, 0x03, 0x28,
  2503. 0x0b, 0x32, 0x13, 0x2e, 0x70, 0x63, 0x6d, 0x43, 0x6f, 0x72, 0x65, 0x2e, 0x54, 0x65, 0x6e, 0x61,
  2504. 0x6e, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x0b, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x49, 0x6e,
  2505. 0x66, 0x6f, 0x73, 0x2a, 0x33, 0x0a, 0x0d, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x53, 0x74,
  2506. 0x61, 0x74, 0x75, 0x73, 0x12, 0x08, 0x0a, 0x04, 0x46, 0x41, 0x49, 0x4c, 0x10, 0x00, 0x12, 0x0b,
  2507. 0x0a, 0x07, 0x53, 0x55, 0x43, 0x43, 0x45, 0x53, 0x53, 0x10, 0x01, 0x12, 0x0b, 0x0a, 0x07, 0x55,
  2508. 0x4e, 0x4b, 0x4e, 0x4f, 0x57, 0x4e, 0x10, 0x02, 0x32, 0x7b, 0x0a, 0x07, 0x70, 0x63, 0x6d, 0x43,
  2509. 0x6f, 0x72, 0x65, 0x12, 0x37, 0x0a, 0x08, 0x53, 0x79, 0x6e, 0x63, 0x49, 0x6e, 0x66, 0x6f, 0x12,
  2510. 0x14, 0x2e, 0x70, 0x63, 0x6d, 0x43, 0x6f, 0x72, 0x65, 0x2e, 0x53, 0x79, 0x6e, 0x63, 0x49, 0x6e,
  2511. 0x66, 0x6f, 0x52, 0x65, 0x71, 0x1a, 0x15, 0x2e, 0x70, 0x63, 0x6d, 0x43, 0x6f, 0x72, 0x65, 0x2e,
  2512. 0x53, 0x79, 0x6e, 0x63, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x73, 0x70, 0x12, 0x37, 0x0a, 0x08,
  2513. 0x49, 0x6e, 0x66, 0x6f, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x14, 0x2e, 0x70, 0x63, 0x6d, 0x43, 0x6f,
  2514. 0x72, 0x65, 0x2e, 0x49, 0x6e, 0x66, 0x6f, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x1a, 0x15,
  2515. 0x2e, 0x70, 0x63, 0x6d, 0x43, 0x6f, 0x72, 0x65, 0x2e, 0x49, 0x6e, 0x66, 0x6f, 0x4c, 0x69, 0x73,
  2516. 0x74, 0x52, 0x65, 0x73, 0x70, 0x32, 0xfc, 0x04, 0x0a, 0x12, 0x70, 0x61, 0x72, 0x74, 0x69, 0x63,
  2517. 0x69, 0x70, 0x61, 0x6e, 0x74, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x12, 0x50, 0x0a, 0x13,
  2518. 0x72, 0x65, 0x67, 0x69, 0x73, 0x74, 0x65, 0x72, 0x50, 0x61, 0x72, 0x74, 0x69, 0x63, 0x69, 0x70,
  2519. 0x61, 0x6e, 0x74, 0x12, 0x1a, 0x2e, 0x70, 0x63, 0x6d, 0x43, 0x6f, 0x72, 0x65, 0x2e, 0x50, 0x61,
  2520. 0x72, 0x74, 0x69, 0x63, 0x69, 0x70, 0x61, 0x6e, 0x74, 0x50, 0x68, 0x79, 0x52, 0x65, 0x71, 0x1a,
  2521. 0x1b, 0x2e, 0x70, 0x63, 0x6d, 0x43, 0x6f, 0x72, 0x65, 0x2e, 0x50, 0x61, 0x72, 0x74, 0x69, 0x63,
  2522. 0x69, 0x70, 0x61, 0x6e, 0x74, 0x50, 0x68, 0x79, 0x52, 0x65, 0x73, 0x70, 0x22, 0x00, 0x12, 0x4f,
  2523. 0x0a, 0x0f, 0x72, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x48, 0x65, 0x61, 0x72, 0x74, 0x62, 0x65, 0x61,
  2524. 0x74, 0x12, 0x20, 0x2e, 0x70, 0x63, 0x6d, 0x43, 0x6f, 0x72, 0x65, 0x2e, 0x50, 0x61, 0x72, 0x74,
  2525. 0x69, 0x63, 0x69, 0x70, 0x61, 0x6e, 0x74, 0x48, 0x65, 0x61, 0x72, 0x74, 0x62, 0x65, 0x61, 0x74,
  2526. 0x52, 0x65, 0x71, 0x1a, 0x18, 0x2e, 0x70, 0x63, 0x6d, 0x43, 0x6f, 0x72, 0x65, 0x2e, 0x48, 0x65,
  2527. 0x61, 0x6c, 0x74, 0x68, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x52, 0x65, 0x73, 0x70, 0x22, 0x00, 0x12,
  2528. 0x4b, 0x0a, 0x0f, 0x72, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x41, 0x76, 0x61, 0x69, 0x6c, 0x61, 0x62,
  2529. 0x6c, 0x65, 0x12, 0x1c, 0x2e, 0x70, 0x63, 0x6d, 0x43, 0x6f, 0x72, 0x65, 0x2e, 0x50, 0x61, 0x72,
  2530. 0x74, 0x69, 0x63, 0x69, 0x70, 0x61, 0x6e, 0x74, 0x41, 0x76, 0x61, 0x69, 0x6c, 0x52, 0x65, 0x71,
  2531. 0x1a, 0x18, 0x2e, 0x70, 0x63, 0x6d, 0x43, 0x6f, 0x72, 0x65, 0x2e, 0x50, 0x61, 0x72, 0x74, 0x69,
  2532. 0x63, 0x69, 0x70, 0x61, 0x6e, 0x74, 0x52, 0x65, 0x73, 0x70, 0x22, 0x00, 0x12, 0x50, 0x0a, 0x0f,
  2533. 0x6c, 0x69, 0x73, 0x74, 0x50, 0x61, 0x72, 0x74, 0x69, 0x63, 0x69, 0x70, 0x61, 0x6e, 0x74, 0x12,
  2534. 0x1a, 0x2e, 0x70, 0x63, 0x6d, 0x43, 0x6f, 0x72, 0x65, 0x2e, 0x50, 0x61, 0x72, 0x74, 0x69, 0x63,
  2535. 0x69, 0x70, 0x61, 0x6e, 0x74, 0x54, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x1a, 0x1f, 0x2e, 0x70, 0x63,
  2536. 0x6d, 0x43, 0x6f, 0x72, 0x65, 0x2e, 0x50, 0x61, 0x72, 0x74, 0x69, 0x63, 0x69, 0x70, 0x61, 0x6e,
  2537. 0x74, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x52, 0x65, 0x73, 0x70, 0x22, 0x00, 0x12, 0x53,
  2538. 0x0a, 0x10, 0x6c, 0x69, 0x73, 0x74, 0x50, 0x68, 0x79, 0x41, 0x76, 0x61, 0x69, 0x6c, 0x61, 0x62,
  2539. 0x6c, 0x65, 0x12, 0x1a, 0x2e, 0x70, 0x63, 0x6d, 0x43, 0x6f, 0x72, 0x65, 0x2e, 0x50, 0x61, 0x72,
  2540. 0x74, 0x69, 0x63, 0x69, 0x70, 0x61, 0x6e, 0x74, 0x54, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x1a, 0x21,
  2541. 0x2e, 0x70, 0x63, 0x6d, 0x43, 0x6f, 0x72, 0x65, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x50, 0x61, 0x72,
  2542. 0x74, 0x69, 0x63, 0x69, 0x70, 0x61, 0x6e, 0x74, 0x41, 0x76, 0x61, 0x69, 0x6c, 0x52, 0x65, 0x73,
  2543. 0x70, 0x22, 0x00, 0x12, 0x53, 0x0a, 0x12, 0x6c, 0x69, 0x73, 0x74, 0x50, 0x68, 0x79, 0x49, 0x6e,
  2544. 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x1a, 0x2e, 0x70, 0x63, 0x6d, 0x43,
  2545. 0x6f, 0x72, 0x65, 0x2e, 0x50, 0x61, 0x72, 0x74, 0x69, 0x63, 0x69, 0x70, 0x61, 0x6e, 0x74, 0x54,
  2546. 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x1a, 0x1f, 0x2e, 0x70, 0x63, 0x6d, 0x43, 0x6f, 0x72, 0x65, 0x2e,
  2547. 0x4c, 0x69, 0x73, 0x74, 0x50, 0x61, 0x72, 0x74, 0x69, 0x63, 0x69, 0x70, 0x61, 0x6e, 0x74, 0x50,
  2548. 0x68, 0x79, 0x52, 0x65, 0x73, 0x70, 0x22, 0x00, 0x12, 0x3c, 0x0a, 0x0e, 0x72, 0x65, 0x67, 0x69,
  2549. 0x73, 0x74, 0x65, 0x72, 0x54, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x12, 0x13, 0x2e, 0x70, 0x63, 0x6d,
  2550. 0x43, 0x6f, 0x72, 0x65, 0x2e, 0x54, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x1a,
  2551. 0x13, 0x2e, 0x70, 0x63, 0x6d, 0x43, 0x6f, 0x72, 0x65, 0x2e, 0x54, 0x65, 0x6e, 0x61, 0x6e, 0x74,
  2552. 0x52, 0x65, 0x73, 0x70, 0x22, 0x00, 0x12, 0x3c, 0x0a, 0x0a, 0x6c, 0x69, 0x73, 0x74, 0x54, 0x65,
  2553. 0x6e, 0x61, 0x6e, 0x74, 0x12, 0x13, 0x2e, 0x70, 0x63, 0x6d, 0x43, 0x6f, 0x72, 0x65, 0x2e, 0x54,
  2554. 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x1a, 0x17, 0x2e, 0x70, 0x63, 0x6d, 0x43,
  2555. 0x6f, 0x72, 0x65, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x54, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x52, 0x65,
  2556. 0x73, 0x70, 0x22, 0x00, 0x42, 0x0a, 0x5a, 0x08, 0x2f, 0x70, 0x63, 0x6d, 0x43, 0x6f, 0x72, 0x65,
  2557. 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
  2558. }
  2559. var (
  2560. file_pcmCore_proto_rawDescOnce sync.Once
  2561. file_pcmCore_proto_rawDescData = file_pcmCore_proto_rawDesc
  2562. )
  2563. func file_pcmCore_proto_rawDescGZIP() []byte {
  2564. file_pcmCore_proto_rawDescOnce.Do(func() {
  2565. file_pcmCore_proto_rawDescData = protoimpl.X.CompressGZIP(file_pcmCore_proto_rawDescData)
  2566. })
  2567. return file_pcmCore_proto_rawDescData
  2568. }
  2569. var file_pcmCore_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
  2570. var file_pcmCore_proto_msgTypes = make([]protoimpl.MessageInfo, 26)
  2571. var file_pcmCore_proto_goTypes = []interface{}{
  2572. (MessageStatus)(0), // 0: pcmCore.MessageStatus
  2573. (*SyncInfoReq)(nil), // 1: pcmCore.SyncInfoReq
  2574. (*AiInfo)(nil), // 2: pcmCore.AiInfo
  2575. (*CloudInfo)(nil), // 3: pcmCore.CloudInfo
  2576. (*VmInfo)(nil), // 4: pcmCore.VmInfo
  2577. (*HpcInfo)(nil), // 5: pcmCore.HpcInfo
  2578. (*SyncInfoResp)(nil), // 6: pcmCore.SyncInfoResp
  2579. (*InfoListReq)(nil), // 7: pcmCore.InfoListReq
  2580. (*InfoListResp)(nil), // 8: pcmCore.InfoListResp
  2581. (*ParticipantTenant)(nil), // 9: pcmCore.ParticipantTenant
  2582. (*ParticipantLabel)(nil), // 10: pcmCore.ParticipantLabel
  2583. (*HealthCheckResp)(nil), // 11: pcmCore.HealthCheckResp
  2584. (*ParticipantPhyResp)(nil), // 12: pcmCore.ParticipantPhyResp
  2585. (*ListParticipantPhyResp)(nil), // 13: pcmCore.ListParticipantPhyResp
  2586. (*ParticipantPhyReq)(nil), // 14: pcmCore.ParticipantPhyReq
  2587. (*NodePhyInfo)(nil), // 15: pcmCore.NodePhyInfo
  2588. (*QueuePhyInfo)(nil), // 16: pcmCore.QueuePhyInfo
  2589. (*ParticipantHeartbeatReq)(nil), // 17: pcmCore.ParticipantHeartbeatReq
  2590. (*ParticipantAvailReq)(nil), // 18: pcmCore.ParticipantAvailReq
  2591. (*NodeAvailInfo)(nil), // 19: pcmCore.NodeAvailInfo
  2592. (*ListParticipantAvailResp)(nil), // 20: pcmCore.ListParticipantAvailResp
  2593. (*ParticipantResp)(nil), // 21: pcmCore.ParticipantResp
  2594. (*ParticipantServiceResp)(nil), // 22: pcmCore.ParticipantServiceResp
  2595. (*ClientInfo)(nil), // 23: pcmCore.ClientInfo
  2596. (*TenantInfo)(nil), // 24: pcmCore.TenantInfo
  2597. (*TenantResp)(nil), // 25: pcmCore.TenantResp
  2598. (*ListTenantResp)(nil), // 26: pcmCore.ListTenantResp
  2599. }
  2600. var file_pcmCore_proto_depIdxs = []int32{
  2601. 5, // 0: pcmCore.SyncInfoReq.HpcInfoList:type_name -> pcmCore.HpcInfo
  2602. 3, // 1: pcmCore.SyncInfoReq.CloudInfoList:type_name -> pcmCore.CloudInfo
  2603. 2, // 2: pcmCore.SyncInfoReq.AiInfoList:type_name -> pcmCore.AiInfo
  2604. 4, // 3: pcmCore.SyncInfoReq.VmInfoList:type_name -> pcmCore.VmInfo
  2605. 5, // 4: pcmCore.InfoListResp.HpcInfoList:type_name -> pcmCore.HpcInfo
  2606. 3, // 5: pcmCore.InfoListResp.CloudInfoList:type_name -> pcmCore.CloudInfo
  2607. 2, // 6: pcmCore.InfoListResp.AiInfoList:type_name -> pcmCore.AiInfo
  2608. 0, // 7: pcmCore.HealthCheckResp.messageStatus:type_name -> pcmCore.MessageStatus
  2609. 14, // 8: pcmCore.ListParticipantPhyResp.ParticipantPhys:type_name -> pcmCore.ParticipantPhyReq
  2610. 15, // 9: pcmCore.ParticipantPhyReq.nodeInfo:type_name -> pcmCore.NodePhyInfo
  2611. 10, // 10: pcmCore.ParticipantPhyReq.labelInfo:type_name -> pcmCore.ParticipantLabel
  2612. 16, // 11: pcmCore.ParticipantPhyReq.queueInfo:type_name -> pcmCore.QueuePhyInfo
  2613. 19, // 12: pcmCore.ParticipantAvailReq.nodeAvailInfo:type_name -> pcmCore.NodeAvailInfo
  2614. 18, // 13: pcmCore.ListParticipantAvailResp.ParticipantAvails:type_name -> pcmCore.ParticipantAvailReq
  2615. 23, // 14: pcmCore.ParticipantServiceResp.data:type_name -> pcmCore.ClientInfo
  2616. 24, // 15: pcmCore.ListTenantResp.tenantInfos:type_name -> pcmCore.TenantInfo
  2617. 1, // 16: pcmCore.pcmCore.SyncInfo:input_type -> pcmCore.SyncInfoReq
  2618. 7, // 17: pcmCore.pcmCore.InfoList:input_type -> pcmCore.InfoListReq
  2619. 14, // 18: pcmCore.participantService.registerParticipant:input_type -> pcmCore.ParticipantPhyReq
  2620. 17, // 19: pcmCore.participantService.reportHeartbeat:input_type -> pcmCore.ParticipantHeartbeatReq
  2621. 18, // 20: pcmCore.participantService.reportAvailable:input_type -> pcmCore.ParticipantAvailReq
  2622. 9, // 21: pcmCore.participantService.listParticipant:input_type -> pcmCore.ParticipantTenant
  2623. 9, // 22: pcmCore.participantService.listPhyAvailable:input_type -> pcmCore.ParticipantTenant
  2624. 9, // 23: pcmCore.participantService.listPhyInformation:input_type -> pcmCore.ParticipantTenant
  2625. 24, // 24: pcmCore.participantService.registerTenant:input_type -> pcmCore.TenantInfo
  2626. 24, // 25: pcmCore.participantService.listTenant:input_type -> pcmCore.TenantInfo
  2627. 6, // 26: pcmCore.pcmCore.SyncInfo:output_type -> pcmCore.SyncInfoResp
  2628. 8, // 27: pcmCore.pcmCore.InfoList:output_type -> pcmCore.InfoListResp
  2629. 12, // 28: pcmCore.participantService.registerParticipant:output_type -> pcmCore.ParticipantPhyResp
  2630. 11, // 29: pcmCore.participantService.reportHeartbeat:output_type -> pcmCore.HealthCheckResp
  2631. 21, // 30: pcmCore.participantService.reportAvailable:output_type -> pcmCore.ParticipantResp
  2632. 22, // 31: pcmCore.participantService.listParticipant:output_type -> pcmCore.ParticipantServiceResp
  2633. 20, // 32: pcmCore.participantService.listPhyAvailable:output_type -> pcmCore.ListParticipantAvailResp
  2634. 13, // 33: pcmCore.participantService.listPhyInformation:output_type -> pcmCore.ListParticipantPhyResp
  2635. 25, // 34: pcmCore.participantService.registerTenant:output_type -> pcmCore.TenantResp
  2636. 26, // 35: pcmCore.participantService.listTenant:output_type -> pcmCore.ListTenantResp
  2637. 26, // [26:36] is the sub-list for method output_type
  2638. 16, // [16:26] is the sub-list for method input_type
  2639. 16, // [16:16] is the sub-list for extension type_name
  2640. 16, // [16:16] is the sub-list for extension extendee
  2641. 0, // [0:16] is the sub-list for field type_name
  2642. }
  2643. func init() { file_pcmCore_proto_init() }
  2644. func file_pcmCore_proto_init() {
  2645. if File_pcmCore_proto != nil {
  2646. return
  2647. }
  2648. if !protoimpl.UnsafeEnabled {
  2649. file_pcmCore_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
  2650. switch v := v.(*SyncInfoReq); i {
  2651. case 0:
  2652. return &v.state
  2653. case 1:
  2654. return &v.sizeCache
  2655. case 2:
  2656. return &v.unknownFields
  2657. default:
  2658. return nil
  2659. }
  2660. }
  2661. file_pcmCore_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
  2662. switch v := v.(*AiInfo); i {
  2663. case 0:
  2664. return &v.state
  2665. case 1:
  2666. return &v.sizeCache
  2667. case 2:
  2668. return &v.unknownFields
  2669. default:
  2670. return nil
  2671. }
  2672. }
  2673. file_pcmCore_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
  2674. switch v := v.(*CloudInfo); i {
  2675. case 0:
  2676. return &v.state
  2677. case 1:
  2678. return &v.sizeCache
  2679. case 2:
  2680. return &v.unknownFields
  2681. default:
  2682. return nil
  2683. }
  2684. }
  2685. file_pcmCore_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
  2686. switch v := v.(*VmInfo); i {
  2687. case 0:
  2688. return &v.state
  2689. case 1:
  2690. return &v.sizeCache
  2691. case 2:
  2692. return &v.unknownFields
  2693. default:
  2694. return nil
  2695. }
  2696. }
  2697. file_pcmCore_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
  2698. switch v := v.(*HpcInfo); i {
  2699. case 0:
  2700. return &v.state
  2701. case 1:
  2702. return &v.sizeCache
  2703. case 2:
  2704. return &v.unknownFields
  2705. default:
  2706. return nil
  2707. }
  2708. }
  2709. file_pcmCore_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
  2710. switch v := v.(*SyncInfoResp); i {
  2711. case 0:
  2712. return &v.state
  2713. case 1:
  2714. return &v.sizeCache
  2715. case 2:
  2716. return &v.unknownFields
  2717. default:
  2718. return nil
  2719. }
  2720. }
  2721. file_pcmCore_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {
  2722. switch v := v.(*InfoListReq); i {
  2723. case 0:
  2724. return &v.state
  2725. case 1:
  2726. return &v.sizeCache
  2727. case 2:
  2728. return &v.unknownFields
  2729. default:
  2730. return nil
  2731. }
  2732. }
  2733. file_pcmCore_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} {
  2734. switch v := v.(*InfoListResp); i {
  2735. case 0:
  2736. return &v.state
  2737. case 1:
  2738. return &v.sizeCache
  2739. case 2:
  2740. return &v.unknownFields
  2741. default:
  2742. return nil
  2743. }
  2744. }
  2745. file_pcmCore_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} {
  2746. switch v := v.(*ParticipantTenant); i {
  2747. case 0:
  2748. return &v.state
  2749. case 1:
  2750. return &v.sizeCache
  2751. case 2:
  2752. return &v.unknownFields
  2753. default:
  2754. return nil
  2755. }
  2756. }
  2757. file_pcmCore_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} {
  2758. switch v := v.(*ParticipantLabel); i {
  2759. case 0:
  2760. return &v.state
  2761. case 1:
  2762. return &v.sizeCache
  2763. case 2:
  2764. return &v.unknownFields
  2765. default:
  2766. return nil
  2767. }
  2768. }
  2769. file_pcmCore_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} {
  2770. switch v := v.(*HealthCheckResp); i {
  2771. case 0:
  2772. return &v.state
  2773. case 1:
  2774. return &v.sizeCache
  2775. case 2:
  2776. return &v.unknownFields
  2777. default:
  2778. return nil
  2779. }
  2780. }
  2781. file_pcmCore_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} {
  2782. switch v := v.(*ParticipantPhyResp); i {
  2783. case 0:
  2784. return &v.state
  2785. case 1:
  2786. return &v.sizeCache
  2787. case 2:
  2788. return &v.unknownFields
  2789. default:
  2790. return nil
  2791. }
  2792. }
  2793. file_pcmCore_proto_msgTypes[12].Exporter = func(v interface{}, i int) interface{} {
  2794. switch v := v.(*ListParticipantPhyResp); i {
  2795. case 0:
  2796. return &v.state
  2797. case 1:
  2798. return &v.sizeCache
  2799. case 2:
  2800. return &v.unknownFields
  2801. default:
  2802. return nil
  2803. }
  2804. }
  2805. file_pcmCore_proto_msgTypes[13].Exporter = func(v interface{}, i int) interface{} {
  2806. switch v := v.(*ParticipantPhyReq); i {
  2807. case 0:
  2808. return &v.state
  2809. case 1:
  2810. return &v.sizeCache
  2811. case 2:
  2812. return &v.unknownFields
  2813. default:
  2814. return nil
  2815. }
  2816. }
  2817. file_pcmCore_proto_msgTypes[14].Exporter = func(v interface{}, i int) interface{} {
  2818. switch v := v.(*NodePhyInfo); i {
  2819. case 0:
  2820. return &v.state
  2821. case 1:
  2822. return &v.sizeCache
  2823. case 2:
  2824. return &v.unknownFields
  2825. default:
  2826. return nil
  2827. }
  2828. }
  2829. file_pcmCore_proto_msgTypes[15].Exporter = func(v interface{}, i int) interface{} {
  2830. switch v := v.(*QueuePhyInfo); i {
  2831. case 0:
  2832. return &v.state
  2833. case 1:
  2834. return &v.sizeCache
  2835. case 2:
  2836. return &v.unknownFields
  2837. default:
  2838. return nil
  2839. }
  2840. }
  2841. file_pcmCore_proto_msgTypes[16].Exporter = func(v interface{}, i int) interface{} {
  2842. switch v := v.(*ParticipantHeartbeatReq); i {
  2843. case 0:
  2844. return &v.state
  2845. case 1:
  2846. return &v.sizeCache
  2847. case 2:
  2848. return &v.unknownFields
  2849. default:
  2850. return nil
  2851. }
  2852. }
  2853. file_pcmCore_proto_msgTypes[17].Exporter = func(v interface{}, i int) interface{} {
  2854. switch v := v.(*ParticipantAvailReq); i {
  2855. case 0:
  2856. return &v.state
  2857. case 1:
  2858. return &v.sizeCache
  2859. case 2:
  2860. return &v.unknownFields
  2861. default:
  2862. return nil
  2863. }
  2864. }
  2865. file_pcmCore_proto_msgTypes[18].Exporter = func(v interface{}, i int) interface{} {
  2866. switch v := v.(*NodeAvailInfo); i {
  2867. case 0:
  2868. return &v.state
  2869. case 1:
  2870. return &v.sizeCache
  2871. case 2:
  2872. return &v.unknownFields
  2873. default:
  2874. return nil
  2875. }
  2876. }
  2877. file_pcmCore_proto_msgTypes[19].Exporter = func(v interface{}, i int) interface{} {
  2878. switch v := v.(*ListParticipantAvailResp); i {
  2879. case 0:
  2880. return &v.state
  2881. case 1:
  2882. return &v.sizeCache
  2883. case 2:
  2884. return &v.unknownFields
  2885. default:
  2886. return nil
  2887. }
  2888. }
  2889. file_pcmCore_proto_msgTypes[20].Exporter = func(v interface{}, i int) interface{} {
  2890. switch v := v.(*ParticipantResp); i {
  2891. case 0:
  2892. return &v.state
  2893. case 1:
  2894. return &v.sizeCache
  2895. case 2:
  2896. return &v.unknownFields
  2897. default:
  2898. return nil
  2899. }
  2900. }
  2901. file_pcmCore_proto_msgTypes[21].Exporter = func(v interface{}, i int) interface{} {
  2902. switch v := v.(*ParticipantServiceResp); i {
  2903. case 0:
  2904. return &v.state
  2905. case 1:
  2906. return &v.sizeCache
  2907. case 2:
  2908. return &v.unknownFields
  2909. default:
  2910. return nil
  2911. }
  2912. }
  2913. file_pcmCore_proto_msgTypes[22].Exporter = func(v interface{}, i int) interface{} {
  2914. switch v := v.(*ClientInfo); i {
  2915. case 0:
  2916. return &v.state
  2917. case 1:
  2918. return &v.sizeCache
  2919. case 2:
  2920. return &v.unknownFields
  2921. default:
  2922. return nil
  2923. }
  2924. }
  2925. file_pcmCore_proto_msgTypes[23].Exporter = func(v interface{}, i int) interface{} {
  2926. switch v := v.(*TenantInfo); i {
  2927. case 0:
  2928. return &v.state
  2929. case 1:
  2930. return &v.sizeCache
  2931. case 2:
  2932. return &v.unknownFields
  2933. default:
  2934. return nil
  2935. }
  2936. }
  2937. file_pcmCore_proto_msgTypes[24].Exporter = func(v interface{}, i int) interface{} {
  2938. switch v := v.(*TenantResp); i {
  2939. case 0:
  2940. return &v.state
  2941. case 1:
  2942. return &v.sizeCache
  2943. case 2:
  2944. return &v.unknownFields
  2945. default:
  2946. return nil
  2947. }
  2948. }
  2949. file_pcmCore_proto_msgTypes[25].Exporter = func(v interface{}, i int) interface{} {
  2950. switch v := v.(*ListTenantResp); i {
  2951. case 0:
  2952. return &v.state
  2953. case 1:
  2954. return &v.sizeCache
  2955. case 2:
  2956. return &v.unknownFields
  2957. default:
  2958. return nil
  2959. }
  2960. }
  2961. }
  2962. type x struct{}
  2963. out := protoimpl.TypeBuilder{
  2964. File: protoimpl.DescBuilder{
  2965. GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
  2966. RawDescriptor: file_pcmCore_proto_rawDesc,
  2967. NumEnums: 1,
  2968. NumMessages: 26,
  2969. NumExtensions: 0,
  2970. NumServices: 2,
  2971. },
  2972. GoTypes: file_pcmCore_proto_goTypes,
  2973. DependencyIndexes: file_pcmCore_proto_depIdxs,
  2974. EnumInfos: file_pcmCore_proto_enumTypes,
  2975. MessageInfos: file_pcmCore_proto_msgTypes,
  2976. }.Build()
  2977. File_pcmCore_proto = out.File
  2978. file_pcmCore_proto_rawDesc = nil
  2979. file_pcmCore_proto_goTypes = nil
  2980. file_pcmCore_proto_depIdxs = nil
  2981. }

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.