olivetin.pb.go 150 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557
  1. // Code generated by protoc-gen-go. DO NOT EDIT.
  2. // versions:
  3. // protoc-gen-go v1.36.11
  4. // protoc (unknown)
  5. // source: olivetin/api/v1/olivetin.proto
  6. package apiv1
  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. unsafe "unsafe"
  13. )
  14. const (
  15. // Verify that this generated code is sufficiently up-to-date.
  16. _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
  17. // Verify that runtime/protoimpl is sufficiently up-to-date.
  18. _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
  19. )
  20. type Action struct {
  21. state protoimpl.MessageState `protogen:"open.v1"`
  22. BindingId string `protobuf:"bytes,1,opt,name=binding_id,json=bindingId,proto3" json:"binding_id,omitempty"`
  23. Title string `protobuf:"bytes,2,opt,name=title,proto3" json:"title,omitempty"`
  24. Icon string `protobuf:"bytes,3,opt,name=icon,proto3" json:"icon,omitempty"`
  25. CanExec bool `protobuf:"varint,4,opt,name=can_exec,json=canExec,proto3" json:"can_exec,omitempty"`
  26. Arguments []*ActionArgument `protobuf:"bytes,5,rep,name=arguments,proto3" json:"arguments,omitempty"`
  27. PopupOnStart string `protobuf:"bytes,6,opt,name=popup_on_start,json=popupOnStart,proto3" json:"popup_on_start,omitempty"`
  28. Order int32 `protobuf:"varint,7,opt,name=order,proto3" json:"order,omitempty"`
  29. Timeout int32 `protobuf:"varint,8,opt,name=timeout,proto3" json:"timeout,omitempty"`
  30. DatetimeRateLimitExpires string `protobuf:"bytes,9,opt,name=datetime_rate_limit_expires,json=datetimeRateLimitExpires,proto3" json:"datetime_rate_limit_expires,omitempty"` // Datetime when rate limit expires (empty string if not rate limited), format: "2006-01-02 15:04:05"
  31. ExecOnStartup bool `protobuf:"varint,10,opt,name=exec_on_startup,json=execOnStartup,proto3" json:"exec_on_startup,omitempty"`
  32. ExecOnCron []string `protobuf:"bytes,11,rep,name=exec_on_cron,json=execOnCron,proto3" json:"exec_on_cron,omitempty"`
  33. ExecOnFileCreatedInDir []string `protobuf:"bytes,12,rep,name=exec_on_file_created_in_dir,json=execOnFileCreatedInDir,proto3" json:"exec_on_file_created_in_dir,omitempty"`
  34. ExecOnFileChangedInDir []string `protobuf:"bytes,13,rep,name=exec_on_file_changed_in_dir,json=execOnFileChangedInDir,proto3" json:"exec_on_file_changed_in_dir,omitempty"`
  35. ExecOnCalendarFile string `protobuf:"bytes,14,opt,name=exec_on_calendar_file,json=execOnCalendarFile,proto3" json:"exec_on_calendar_file,omitempty"`
  36. ExecOnWebhooks []*ActionWebhookExecHint `protobuf:"bytes,15,rep,name=exec_on_webhooks,json=execOnWebhooks,proto3" json:"exec_on_webhooks,omitempty"`
  37. unknownFields protoimpl.UnknownFields
  38. sizeCache protoimpl.SizeCache
  39. }
  40. func (x *Action) Reset() {
  41. *x = Action{}
  42. mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[0]
  43. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  44. ms.StoreMessageInfo(mi)
  45. }
  46. func (x *Action) String() string {
  47. return protoimpl.X.MessageStringOf(x)
  48. }
  49. func (*Action) ProtoMessage() {}
  50. func (x *Action) ProtoReflect() protoreflect.Message {
  51. mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[0]
  52. if x != nil {
  53. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  54. if ms.LoadMessageInfo() == nil {
  55. ms.StoreMessageInfo(mi)
  56. }
  57. return ms
  58. }
  59. return mi.MessageOf(x)
  60. }
  61. // Deprecated: Use Action.ProtoReflect.Descriptor instead.
  62. func (*Action) Descriptor() ([]byte, []int) {
  63. return file_olivetin_api_v1_olivetin_proto_rawDescGZIP(), []int{0}
  64. }
  65. func (x *Action) GetBindingId() string {
  66. if x != nil {
  67. return x.BindingId
  68. }
  69. return ""
  70. }
  71. func (x *Action) GetTitle() string {
  72. if x != nil {
  73. return x.Title
  74. }
  75. return ""
  76. }
  77. func (x *Action) GetIcon() string {
  78. if x != nil {
  79. return x.Icon
  80. }
  81. return ""
  82. }
  83. func (x *Action) GetCanExec() bool {
  84. if x != nil {
  85. return x.CanExec
  86. }
  87. return false
  88. }
  89. func (x *Action) GetArguments() []*ActionArgument {
  90. if x != nil {
  91. return x.Arguments
  92. }
  93. return nil
  94. }
  95. func (x *Action) GetPopupOnStart() string {
  96. if x != nil {
  97. return x.PopupOnStart
  98. }
  99. return ""
  100. }
  101. func (x *Action) GetOrder() int32 {
  102. if x != nil {
  103. return x.Order
  104. }
  105. return 0
  106. }
  107. func (x *Action) GetTimeout() int32 {
  108. if x != nil {
  109. return x.Timeout
  110. }
  111. return 0
  112. }
  113. func (x *Action) GetDatetimeRateLimitExpires() string {
  114. if x != nil {
  115. return x.DatetimeRateLimitExpires
  116. }
  117. return ""
  118. }
  119. func (x *Action) GetExecOnStartup() bool {
  120. if x != nil {
  121. return x.ExecOnStartup
  122. }
  123. return false
  124. }
  125. func (x *Action) GetExecOnCron() []string {
  126. if x != nil {
  127. return x.ExecOnCron
  128. }
  129. return nil
  130. }
  131. func (x *Action) GetExecOnFileCreatedInDir() []string {
  132. if x != nil {
  133. return x.ExecOnFileCreatedInDir
  134. }
  135. return nil
  136. }
  137. func (x *Action) GetExecOnFileChangedInDir() []string {
  138. if x != nil {
  139. return x.ExecOnFileChangedInDir
  140. }
  141. return nil
  142. }
  143. func (x *Action) GetExecOnCalendarFile() string {
  144. if x != nil {
  145. return x.ExecOnCalendarFile
  146. }
  147. return ""
  148. }
  149. func (x *Action) GetExecOnWebhooks() []*ActionWebhookExecHint {
  150. if x != nil {
  151. return x.ExecOnWebhooks
  152. }
  153. return nil
  154. }
  155. type ActionWebhookExecHint struct {
  156. state protoimpl.MessageState `protogen:"open.v1"`
  157. Template string `protobuf:"bytes,1,opt,name=template,proto3" json:"template,omitempty"`
  158. MatchPath string `protobuf:"bytes,2,opt,name=match_path,json=matchPath,proto3" json:"match_path,omitempty"`
  159. MatchHeaders map[string]string `protobuf:"bytes,3,rep,name=match_headers,json=matchHeaders,proto3" json:"match_headers,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"`
  160. MatchQuery map[string]string `protobuf:"bytes,4,rep,name=match_query,json=matchQuery,proto3" json:"match_query,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"`
  161. unknownFields protoimpl.UnknownFields
  162. sizeCache protoimpl.SizeCache
  163. }
  164. func (x *ActionWebhookExecHint) Reset() {
  165. *x = ActionWebhookExecHint{}
  166. mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[1]
  167. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  168. ms.StoreMessageInfo(mi)
  169. }
  170. func (x *ActionWebhookExecHint) String() string {
  171. return protoimpl.X.MessageStringOf(x)
  172. }
  173. func (*ActionWebhookExecHint) ProtoMessage() {}
  174. func (x *ActionWebhookExecHint) ProtoReflect() protoreflect.Message {
  175. mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[1]
  176. if x != nil {
  177. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  178. if ms.LoadMessageInfo() == nil {
  179. ms.StoreMessageInfo(mi)
  180. }
  181. return ms
  182. }
  183. return mi.MessageOf(x)
  184. }
  185. // Deprecated: Use ActionWebhookExecHint.ProtoReflect.Descriptor instead.
  186. func (*ActionWebhookExecHint) Descriptor() ([]byte, []int) {
  187. return file_olivetin_api_v1_olivetin_proto_rawDescGZIP(), []int{1}
  188. }
  189. func (x *ActionWebhookExecHint) GetTemplate() string {
  190. if x != nil {
  191. return x.Template
  192. }
  193. return ""
  194. }
  195. func (x *ActionWebhookExecHint) GetMatchPath() string {
  196. if x != nil {
  197. return x.MatchPath
  198. }
  199. return ""
  200. }
  201. func (x *ActionWebhookExecHint) GetMatchHeaders() map[string]string {
  202. if x != nil {
  203. return x.MatchHeaders
  204. }
  205. return nil
  206. }
  207. func (x *ActionWebhookExecHint) GetMatchQuery() map[string]string {
  208. if x != nil {
  209. return x.MatchQuery
  210. }
  211. return nil
  212. }
  213. type ActionArgument struct {
  214. state protoimpl.MessageState `protogen:"open.v1"`
  215. Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
  216. Title string `protobuf:"bytes,2,opt,name=title,proto3" json:"title,omitempty"`
  217. Type string `protobuf:"bytes,3,opt,name=type,proto3" json:"type,omitempty"`
  218. DefaultValue string `protobuf:"bytes,4,opt,name=default_value,json=defaultValue,proto3" json:"default_value,omitempty"`
  219. Choices []*ActionArgumentChoice `protobuf:"bytes,5,rep,name=choices,proto3" json:"choices,omitempty"`
  220. Description string `protobuf:"bytes,6,opt,name=description,proto3" json:"description,omitempty"`
  221. Suggestions map[string]string `protobuf:"bytes,7,rep,name=suggestions,proto3" json:"suggestions,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"`
  222. SuggestionsBrowserKey string `protobuf:"bytes,8,opt,name=suggestions_browser_key,json=suggestionsBrowserKey,proto3" json:"suggestions_browser_key,omitempty"`
  223. unknownFields protoimpl.UnknownFields
  224. sizeCache protoimpl.SizeCache
  225. }
  226. func (x *ActionArgument) Reset() {
  227. *x = ActionArgument{}
  228. mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[2]
  229. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  230. ms.StoreMessageInfo(mi)
  231. }
  232. func (x *ActionArgument) String() string {
  233. return protoimpl.X.MessageStringOf(x)
  234. }
  235. func (*ActionArgument) ProtoMessage() {}
  236. func (x *ActionArgument) ProtoReflect() protoreflect.Message {
  237. mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[2]
  238. if x != nil {
  239. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  240. if ms.LoadMessageInfo() == nil {
  241. ms.StoreMessageInfo(mi)
  242. }
  243. return ms
  244. }
  245. return mi.MessageOf(x)
  246. }
  247. // Deprecated: Use ActionArgument.ProtoReflect.Descriptor instead.
  248. func (*ActionArgument) Descriptor() ([]byte, []int) {
  249. return file_olivetin_api_v1_olivetin_proto_rawDescGZIP(), []int{2}
  250. }
  251. func (x *ActionArgument) GetName() string {
  252. if x != nil {
  253. return x.Name
  254. }
  255. return ""
  256. }
  257. func (x *ActionArgument) GetTitle() string {
  258. if x != nil {
  259. return x.Title
  260. }
  261. return ""
  262. }
  263. func (x *ActionArgument) GetType() string {
  264. if x != nil {
  265. return x.Type
  266. }
  267. return ""
  268. }
  269. func (x *ActionArgument) GetDefaultValue() string {
  270. if x != nil {
  271. return x.DefaultValue
  272. }
  273. return ""
  274. }
  275. func (x *ActionArgument) GetChoices() []*ActionArgumentChoice {
  276. if x != nil {
  277. return x.Choices
  278. }
  279. return nil
  280. }
  281. func (x *ActionArgument) GetDescription() string {
  282. if x != nil {
  283. return x.Description
  284. }
  285. return ""
  286. }
  287. func (x *ActionArgument) GetSuggestions() map[string]string {
  288. if x != nil {
  289. return x.Suggestions
  290. }
  291. return nil
  292. }
  293. func (x *ActionArgument) GetSuggestionsBrowserKey() string {
  294. if x != nil {
  295. return x.SuggestionsBrowserKey
  296. }
  297. return ""
  298. }
  299. type ActionArgumentChoice struct {
  300. state protoimpl.MessageState `protogen:"open.v1"`
  301. Value string `protobuf:"bytes,1,opt,name=value,proto3" json:"value,omitempty"`
  302. Title string `protobuf:"bytes,2,opt,name=title,proto3" json:"title,omitempty"`
  303. unknownFields protoimpl.UnknownFields
  304. sizeCache protoimpl.SizeCache
  305. }
  306. func (x *ActionArgumentChoice) Reset() {
  307. *x = ActionArgumentChoice{}
  308. mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[3]
  309. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  310. ms.StoreMessageInfo(mi)
  311. }
  312. func (x *ActionArgumentChoice) String() string {
  313. return protoimpl.X.MessageStringOf(x)
  314. }
  315. func (*ActionArgumentChoice) ProtoMessage() {}
  316. func (x *ActionArgumentChoice) ProtoReflect() protoreflect.Message {
  317. mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[3]
  318. if x != nil {
  319. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  320. if ms.LoadMessageInfo() == nil {
  321. ms.StoreMessageInfo(mi)
  322. }
  323. return ms
  324. }
  325. return mi.MessageOf(x)
  326. }
  327. // Deprecated: Use ActionArgumentChoice.ProtoReflect.Descriptor instead.
  328. func (*ActionArgumentChoice) Descriptor() ([]byte, []int) {
  329. return file_olivetin_api_v1_olivetin_proto_rawDescGZIP(), []int{3}
  330. }
  331. func (x *ActionArgumentChoice) GetValue() string {
  332. if x != nil {
  333. return x.Value
  334. }
  335. return ""
  336. }
  337. func (x *ActionArgumentChoice) GetTitle() string {
  338. if x != nil {
  339. return x.Title
  340. }
  341. return ""
  342. }
  343. type Entity struct {
  344. state protoimpl.MessageState `protogen:"open.v1"`
  345. Title string `protobuf:"bytes,1,opt,name=title,proto3" json:"title,omitempty"`
  346. UniqueKey string `protobuf:"bytes,2,opt,name=unique_key,json=uniqueKey,proto3" json:"unique_key,omitempty"`
  347. Type string `protobuf:"bytes,3,opt,name=type,proto3" json:"type,omitempty"`
  348. Directories []string `protobuf:"bytes,4,rep,name=directories,proto3" json:"directories,omitempty"`
  349. Fields map[string]string `protobuf:"bytes,5,rep,name=fields,proto3" json:"fields,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"`
  350. unknownFields protoimpl.UnknownFields
  351. sizeCache protoimpl.SizeCache
  352. }
  353. func (x *Entity) Reset() {
  354. *x = Entity{}
  355. mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[4]
  356. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  357. ms.StoreMessageInfo(mi)
  358. }
  359. func (x *Entity) String() string {
  360. return protoimpl.X.MessageStringOf(x)
  361. }
  362. func (*Entity) ProtoMessage() {}
  363. func (x *Entity) ProtoReflect() protoreflect.Message {
  364. mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[4]
  365. if x != nil {
  366. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  367. if ms.LoadMessageInfo() == nil {
  368. ms.StoreMessageInfo(mi)
  369. }
  370. return ms
  371. }
  372. return mi.MessageOf(x)
  373. }
  374. // Deprecated: Use Entity.ProtoReflect.Descriptor instead.
  375. func (*Entity) Descriptor() ([]byte, []int) {
  376. return file_olivetin_api_v1_olivetin_proto_rawDescGZIP(), []int{4}
  377. }
  378. func (x *Entity) GetTitle() string {
  379. if x != nil {
  380. return x.Title
  381. }
  382. return ""
  383. }
  384. func (x *Entity) GetUniqueKey() string {
  385. if x != nil {
  386. return x.UniqueKey
  387. }
  388. return ""
  389. }
  390. func (x *Entity) GetType() string {
  391. if x != nil {
  392. return x.Type
  393. }
  394. return ""
  395. }
  396. func (x *Entity) GetDirectories() []string {
  397. if x != nil {
  398. return x.Directories
  399. }
  400. return nil
  401. }
  402. func (x *Entity) GetFields() map[string]string {
  403. if x != nil {
  404. return x.Fields
  405. }
  406. return nil
  407. }
  408. type GetDashboardResponse struct {
  409. state protoimpl.MessageState `protogen:"open.v1"`
  410. Title string `protobuf:"bytes,1,opt,name=title,proto3" json:"title,omitempty"`
  411. Dashboard *Dashboard `protobuf:"bytes,4,opt,name=dashboard,proto3" json:"dashboard,omitempty"`
  412. unknownFields protoimpl.UnknownFields
  413. sizeCache protoimpl.SizeCache
  414. }
  415. func (x *GetDashboardResponse) Reset() {
  416. *x = GetDashboardResponse{}
  417. mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[5]
  418. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  419. ms.StoreMessageInfo(mi)
  420. }
  421. func (x *GetDashboardResponse) String() string {
  422. return protoimpl.X.MessageStringOf(x)
  423. }
  424. func (*GetDashboardResponse) ProtoMessage() {}
  425. func (x *GetDashboardResponse) ProtoReflect() protoreflect.Message {
  426. mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[5]
  427. if x != nil {
  428. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  429. if ms.LoadMessageInfo() == nil {
  430. ms.StoreMessageInfo(mi)
  431. }
  432. return ms
  433. }
  434. return mi.MessageOf(x)
  435. }
  436. // Deprecated: Use GetDashboardResponse.ProtoReflect.Descriptor instead.
  437. func (*GetDashboardResponse) Descriptor() ([]byte, []int) {
  438. return file_olivetin_api_v1_olivetin_proto_rawDescGZIP(), []int{5}
  439. }
  440. func (x *GetDashboardResponse) GetTitle() string {
  441. if x != nil {
  442. return x.Title
  443. }
  444. return ""
  445. }
  446. func (x *GetDashboardResponse) GetDashboard() *Dashboard {
  447. if x != nil {
  448. return x.Dashboard
  449. }
  450. return nil
  451. }
  452. type EffectivePolicy struct {
  453. state protoimpl.MessageState `protogen:"open.v1"`
  454. ShowDiagnostics bool `protobuf:"varint,1,opt,name=show_diagnostics,json=showDiagnostics,proto3" json:"show_diagnostics,omitempty"`
  455. ShowLogList bool `protobuf:"varint,2,opt,name=show_log_list,json=showLogList,proto3" json:"show_log_list,omitempty"`
  456. ShowVersionNumber bool `protobuf:"varint,3,opt,name=show_version_number,json=showVersionNumber,proto3" json:"show_version_number,omitempty"`
  457. unknownFields protoimpl.UnknownFields
  458. sizeCache protoimpl.SizeCache
  459. }
  460. func (x *EffectivePolicy) Reset() {
  461. *x = EffectivePolicy{}
  462. mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[6]
  463. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  464. ms.StoreMessageInfo(mi)
  465. }
  466. func (x *EffectivePolicy) String() string {
  467. return protoimpl.X.MessageStringOf(x)
  468. }
  469. func (*EffectivePolicy) ProtoMessage() {}
  470. func (x *EffectivePolicy) ProtoReflect() protoreflect.Message {
  471. mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[6]
  472. if x != nil {
  473. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  474. if ms.LoadMessageInfo() == nil {
  475. ms.StoreMessageInfo(mi)
  476. }
  477. return ms
  478. }
  479. return mi.MessageOf(x)
  480. }
  481. // Deprecated: Use EffectivePolicy.ProtoReflect.Descriptor instead.
  482. func (*EffectivePolicy) Descriptor() ([]byte, []int) {
  483. return file_olivetin_api_v1_olivetin_proto_rawDescGZIP(), []int{6}
  484. }
  485. func (x *EffectivePolicy) GetShowDiagnostics() bool {
  486. if x != nil {
  487. return x.ShowDiagnostics
  488. }
  489. return false
  490. }
  491. func (x *EffectivePolicy) GetShowLogList() bool {
  492. if x != nil {
  493. return x.ShowLogList
  494. }
  495. return false
  496. }
  497. func (x *EffectivePolicy) GetShowVersionNumber() bool {
  498. if x != nil {
  499. return x.ShowVersionNumber
  500. }
  501. return false
  502. }
  503. type GetDashboardRequest struct {
  504. state protoimpl.MessageState `protogen:"open.v1"`
  505. Title string `protobuf:"bytes,1,opt,name=title,proto3" json:"title,omitempty"`
  506. EntityType string `protobuf:"bytes,2,opt,name=entity_type,json=entityType,proto3" json:"entity_type,omitempty"`
  507. EntityKey string `protobuf:"bytes,3,opt,name=entity_key,json=entityKey,proto3" json:"entity_key,omitempty"`
  508. unknownFields protoimpl.UnknownFields
  509. sizeCache protoimpl.SizeCache
  510. }
  511. func (x *GetDashboardRequest) Reset() {
  512. *x = GetDashboardRequest{}
  513. mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[7]
  514. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  515. ms.StoreMessageInfo(mi)
  516. }
  517. func (x *GetDashboardRequest) String() string {
  518. return protoimpl.X.MessageStringOf(x)
  519. }
  520. func (*GetDashboardRequest) ProtoMessage() {}
  521. func (x *GetDashboardRequest) ProtoReflect() protoreflect.Message {
  522. mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[7]
  523. if x != nil {
  524. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  525. if ms.LoadMessageInfo() == nil {
  526. ms.StoreMessageInfo(mi)
  527. }
  528. return ms
  529. }
  530. return mi.MessageOf(x)
  531. }
  532. // Deprecated: Use GetDashboardRequest.ProtoReflect.Descriptor instead.
  533. func (*GetDashboardRequest) Descriptor() ([]byte, []int) {
  534. return file_olivetin_api_v1_olivetin_proto_rawDescGZIP(), []int{7}
  535. }
  536. func (x *GetDashboardRequest) GetTitle() string {
  537. if x != nil {
  538. return x.Title
  539. }
  540. return ""
  541. }
  542. func (x *GetDashboardRequest) GetEntityType() string {
  543. if x != nil {
  544. return x.EntityType
  545. }
  546. return ""
  547. }
  548. func (x *GetDashboardRequest) GetEntityKey() string {
  549. if x != nil {
  550. return x.EntityKey
  551. }
  552. return ""
  553. }
  554. type Dashboard struct {
  555. state protoimpl.MessageState `protogen:"open.v1"`
  556. Title string `protobuf:"bytes,1,opt,name=title,proto3" json:"title,omitempty"`
  557. Contents []*DashboardComponent `protobuf:"bytes,2,rep,name=contents,proto3" json:"contents,omitempty"`
  558. unknownFields protoimpl.UnknownFields
  559. sizeCache protoimpl.SizeCache
  560. }
  561. func (x *Dashboard) Reset() {
  562. *x = Dashboard{}
  563. mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[8]
  564. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  565. ms.StoreMessageInfo(mi)
  566. }
  567. func (x *Dashboard) String() string {
  568. return protoimpl.X.MessageStringOf(x)
  569. }
  570. func (*Dashboard) ProtoMessage() {}
  571. func (x *Dashboard) ProtoReflect() protoreflect.Message {
  572. mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[8]
  573. if x != nil {
  574. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  575. if ms.LoadMessageInfo() == nil {
  576. ms.StoreMessageInfo(mi)
  577. }
  578. return ms
  579. }
  580. return mi.MessageOf(x)
  581. }
  582. // Deprecated: Use Dashboard.ProtoReflect.Descriptor instead.
  583. func (*Dashboard) Descriptor() ([]byte, []int) {
  584. return file_olivetin_api_v1_olivetin_proto_rawDescGZIP(), []int{8}
  585. }
  586. func (x *Dashboard) GetTitle() string {
  587. if x != nil {
  588. return x.Title
  589. }
  590. return ""
  591. }
  592. func (x *Dashboard) GetContents() []*DashboardComponent {
  593. if x != nil {
  594. return x.Contents
  595. }
  596. return nil
  597. }
  598. type DashboardComponent struct {
  599. state protoimpl.MessageState `protogen:"open.v1"`
  600. Title string `protobuf:"bytes,1,opt,name=title,proto3" json:"title,omitempty"`
  601. Type string `protobuf:"bytes,2,opt,name=type,proto3" json:"type,omitempty"`
  602. Contents []*DashboardComponent `protobuf:"bytes,3,rep,name=contents,proto3" json:"contents,omitempty"`
  603. Icon string `protobuf:"bytes,4,opt,name=icon,proto3" json:"icon,omitempty"`
  604. CssClass string `protobuf:"bytes,5,opt,name=css_class,json=cssClass,proto3" json:"css_class,omitempty"`
  605. Action *Action `protobuf:"bytes,6,opt,name=action,proto3" json:"action,omitempty"`
  606. EntityType string `protobuf:"bytes,7,opt,name=entity_type,json=entityType,proto3" json:"entity_type,omitempty"`
  607. EntityKey string `protobuf:"bytes,8,opt,name=entity_key,json=entityKey,proto3" json:"entity_key,omitempty"`
  608. unknownFields protoimpl.UnknownFields
  609. sizeCache protoimpl.SizeCache
  610. }
  611. func (x *DashboardComponent) Reset() {
  612. *x = DashboardComponent{}
  613. mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[9]
  614. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  615. ms.StoreMessageInfo(mi)
  616. }
  617. func (x *DashboardComponent) String() string {
  618. return protoimpl.X.MessageStringOf(x)
  619. }
  620. func (*DashboardComponent) ProtoMessage() {}
  621. func (x *DashboardComponent) ProtoReflect() protoreflect.Message {
  622. mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[9]
  623. if x != nil {
  624. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  625. if ms.LoadMessageInfo() == nil {
  626. ms.StoreMessageInfo(mi)
  627. }
  628. return ms
  629. }
  630. return mi.MessageOf(x)
  631. }
  632. // Deprecated: Use DashboardComponent.ProtoReflect.Descriptor instead.
  633. func (*DashboardComponent) Descriptor() ([]byte, []int) {
  634. return file_olivetin_api_v1_olivetin_proto_rawDescGZIP(), []int{9}
  635. }
  636. func (x *DashboardComponent) GetTitle() string {
  637. if x != nil {
  638. return x.Title
  639. }
  640. return ""
  641. }
  642. func (x *DashboardComponent) GetType() string {
  643. if x != nil {
  644. return x.Type
  645. }
  646. return ""
  647. }
  648. func (x *DashboardComponent) GetContents() []*DashboardComponent {
  649. if x != nil {
  650. return x.Contents
  651. }
  652. return nil
  653. }
  654. func (x *DashboardComponent) GetIcon() string {
  655. if x != nil {
  656. return x.Icon
  657. }
  658. return ""
  659. }
  660. func (x *DashboardComponent) GetCssClass() string {
  661. if x != nil {
  662. return x.CssClass
  663. }
  664. return ""
  665. }
  666. func (x *DashboardComponent) GetAction() *Action {
  667. if x != nil {
  668. return x.Action
  669. }
  670. return nil
  671. }
  672. func (x *DashboardComponent) GetEntityType() string {
  673. if x != nil {
  674. return x.EntityType
  675. }
  676. return ""
  677. }
  678. func (x *DashboardComponent) GetEntityKey() string {
  679. if x != nil {
  680. return x.EntityKey
  681. }
  682. return ""
  683. }
  684. type StartActionRequest struct {
  685. state protoimpl.MessageState `protogen:"open.v1"`
  686. BindingId string `protobuf:"bytes,1,opt,name=binding_id,json=bindingId,proto3" json:"binding_id,omitempty"`
  687. Arguments []*StartActionArgument `protobuf:"bytes,2,rep,name=arguments,proto3" json:"arguments,omitempty"`
  688. UniqueTrackingId string `protobuf:"bytes,3,opt,name=unique_tracking_id,json=uniqueTrackingId,proto3" json:"unique_tracking_id,omitempty"`
  689. unknownFields protoimpl.UnknownFields
  690. sizeCache protoimpl.SizeCache
  691. }
  692. func (x *StartActionRequest) Reset() {
  693. *x = StartActionRequest{}
  694. mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[10]
  695. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  696. ms.StoreMessageInfo(mi)
  697. }
  698. func (x *StartActionRequest) String() string {
  699. return protoimpl.X.MessageStringOf(x)
  700. }
  701. func (*StartActionRequest) ProtoMessage() {}
  702. func (x *StartActionRequest) ProtoReflect() protoreflect.Message {
  703. mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[10]
  704. if x != nil {
  705. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  706. if ms.LoadMessageInfo() == nil {
  707. ms.StoreMessageInfo(mi)
  708. }
  709. return ms
  710. }
  711. return mi.MessageOf(x)
  712. }
  713. // Deprecated: Use StartActionRequest.ProtoReflect.Descriptor instead.
  714. func (*StartActionRequest) Descriptor() ([]byte, []int) {
  715. return file_olivetin_api_v1_olivetin_proto_rawDescGZIP(), []int{10}
  716. }
  717. func (x *StartActionRequest) GetBindingId() string {
  718. if x != nil {
  719. return x.BindingId
  720. }
  721. return ""
  722. }
  723. func (x *StartActionRequest) GetArguments() []*StartActionArgument {
  724. if x != nil {
  725. return x.Arguments
  726. }
  727. return nil
  728. }
  729. func (x *StartActionRequest) GetUniqueTrackingId() string {
  730. if x != nil {
  731. return x.UniqueTrackingId
  732. }
  733. return ""
  734. }
  735. type StartActionArgument struct {
  736. state protoimpl.MessageState `protogen:"open.v1"`
  737. Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
  738. Value string `protobuf:"bytes,2,opt,name=value,proto3" json:"value,omitempty"`
  739. unknownFields protoimpl.UnknownFields
  740. sizeCache protoimpl.SizeCache
  741. }
  742. func (x *StartActionArgument) Reset() {
  743. *x = StartActionArgument{}
  744. mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[11]
  745. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  746. ms.StoreMessageInfo(mi)
  747. }
  748. func (x *StartActionArgument) String() string {
  749. return protoimpl.X.MessageStringOf(x)
  750. }
  751. func (*StartActionArgument) ProtoMessage() {}
  752. func (x *StartActionArgument) ProtoReflect() protoreflect.Message {
  753. mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[11]
  754. if x != nil {
  755. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  756. if ms.LoadMessageInfo() == nil {
  757. ms.StoreMessageInfo(mi)
  758. }
  759. return ms
  760. }
  761. return mi.MessageOf(x)
  762. }
  763. // Deprecated: Use StartActionArgument.ProtoReflect.Descriptor instead.
  764. func (*StartActionArgument) Descriptor() ([]byte, []int) {
  765. return file_olivetin_api_v1_olivetin_proto_rawDescGZIP(), []int{11}
  766. }
  767. func (x *StartActionArgument) GetName() string {
  768. if x != nil {
  769. return x.Name
  770. }
  771. return ""
  772. }
  773. func (x *StartActionArgument) GetValue() string {
  774. if x != nil {
  775. return x.Value
  776. }
  777. return ""
  778. }
  779. type StartActionResponse struct {
  780. state protoimpl.MessageState `protogen:"open.v1"`
  781. ExecutionTrackingId string `protobuf:"bytes,2,opt,name=execution_tracking_id,json=executionTrackingId,proto3" json:"execution_tracking_id,omitempty"`
  782. unknownFields protoimpl.UnknownFields
  783. sizeCache protoimpl.SizeCache
  784. }
  785. func (x *StartActionResponse) Reset() {
  786. *x = StartActionResponse{}
  787. mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[12]
  788. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  789. ms.StoreMessageInfo(mi)
  790. }
  791. func (x *StartActionResponse) String() string {
  792. return protoimpl.X.MessageStringOf(x)
  793. }
  794. func (*StartActionResponse) ProtoMessage() {}
  795. func (x *StartActionResponse) ProtoReflect() protoreflect.Message {
  796. mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[12]
  797. if x != nil {
  798. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  799. if ms.LoadMessageInfo() == nil {
  800. ms.StoreMessageInfo(mi)
  801. }
  802. return ms
  803. }
  804. return mi.MessageOf(x)
  805. }
  806. // Deprecated: Use StartActionResponse.ProtoReflect.Descriptor instead.
  807. func (*StartActionResponse) Descriptor() ([]byte, []int) {
  808. return file_olivetin_api_v1_olivetin_proto_rawDescGZIP(), []int{12}
  809. }
  810. func (x *StartActionResponse) GetExecutionTrackingId() string {
  811. if x != nil {
  812. return x.ExecutionTrackingId
  813. }
  814. return ""
  815. }
  816. type StartActionAndWaitRequest struct {
  817. state protoimpl.MessageState `protogen:"open.v1"`
  818. ActionId string `protobuf:"bytes,1,opt,name=action_id,json=actionId,proto3" json:"action_id,omitempty"`
  819. Arguments []*StartActionArgument `protobuf:"bytes,2,rep,name=arguments,proto3" json:"arguments,omitempty"`
  820. unknownFields protoimpl.UnknownFields
  821. sizeCache protoimpl.SizeCache
  822. }
  823. func (x *StartActionAndWaitRequest) Reset() {
  824. *x = StartActionAndWaitRequest{}
  825. mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[13]
  826. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  827. ms.StoreMessageInfo(mi)
  828. }
  829. func (x *StartActionAndWaitRequest) String() string {
  830. return protoimpl.X.MessageStringOf(x)
  831. }
  832. func (*StartActionAndWaitRequest) ProtoMessage() {}
  833. func (x *StartActionAndWaitRequest) ProtoReflect() protoreflect.Message {
  834. mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[13]
  835. if x != nil {
  836. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  837. if ms.LoadMessageInfo() == nil {
  838. ms.StoreMessageInfo(mi)
  839. }
  840. return ms
  841. }
  842. return mi.MessageOf(x)
  843. }
  844. // Deprecated: Use StartActionAndWaitRequest.ProtoReflect.Descriptor instead.
  845. func (*StartActionAndWaitRequest) Descriptor() ([]byte, []int) {
  846. return file_olivetin_api_v1_olivetin_proto_rawDescGZIP(), []int{13}
  847. }
  848. func (x *StartActionAndWaitRequest) GetActionId() string {
  849. if x != nil {
  850. return x.ActionId
  851. }
  852. return ""
  853. }
  854. func (x *StartActionAndWaitRequest) GetArguments() []*StartActionArgument {
  855. if x != nil {
  856. return x.Arguments
  857. }
  858. return nil
  859. }
  860. type StartActionAndWaitResponse struct {
  861. state protoimpl.MessageState `protogen:"open.v1"`
  862. LogEntry *LogEntry `protobuf:"bytes,1,opt,name=log_entry,json=logEntry,proto3" json:"log_entry,omitempty"`
  863. unknownFields protoimpl.UnknownFields
  864. sizeCache protoimpl.SizeCache
  865. }
  866. func (x *StartActionAndWaitResponse) Reset() {
  867. *x = StartActionAndWaitResponse{}
  868. mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[14]
  869. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  870. ms.StoreMessageInfo(mi)
  871. }
  872. func (x *StartActionAndWaitResponse) String() string {
  873. return protoimpl.X.MessageStringOf(x)
  874. }
  875. func (*StartActionAndWaitResponse) ProtoMessage() {}
  876. func (x *StartActionAndWaitResponse) ProtoReflect() protoreflect.Message {
  877. mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[14]
  878. if x != nil {
  879. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  880. if ms.LoadMessageInfo() == nil {
  881. ms.StoreMessageInfo(mi)
  882. }
  883. return ms
  884. }
  885. return mi.MessageOf(x)
  886. }
  887. // Deprecated: Use StartActionAndWaitResponse.ProtoReflect.Descriptor instead.
  888. func (*StartActionAndWaitResponse) Descriptor() ([]byte, []int) {
  889. return file_olivetin_api_v1_olivetin_proto_rawDescGZIP(), []int{14}
  890. }
  891. func (x *StartActionAndWaitResponse) GetLogEntry() *LogEntry {
  892. if x != nil {
  893. return x.LogEntry
  894. }
  895. return nil
  896. }
  897. type StartActionByGetRequest struct {
  898. state protoimpl.MessageState `protogen:"open.v1"`
  899. ActionId string `protobuf:"bytes,1,opt,name=action_id,json=actionId,proto3" json:"action_id,omitempty"`
  900. unknownFields protoimpl.UnknownFields
  901. sizeCache protoimpl.SizeCache
  902. }
  903. func (x *StartActionByGetRequest) Reset() {
  904. *x = StartActionByGetRequest{}
  905. mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[15]
  906. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  907. ms.StoreMessageInfo(mi)
  908. }
  909. func (x *StartActionByGetRequest) String() string {
  910. return protoimpl.X.MessageStringOf(x)
  911. }
  912. func (*StartActionByGetRequest) ProtoMessage() {}
  913. func (x *StartActionByGetRequest) ProtoReflect() protoreflect.Message {
  914. mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[15]
  915. if x != nil {
  916. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  917. if ms.LoadMessageInfo() == nil {
  918. ms.StoreMessageInfo(mi)
  919. }
  920. return ms
  921. }
  922. return mi.MessageOf(x)
  923. }
  924. // Deprecated: Use StartActionByGetRequest.ProtoReflect.Descriptor instead.
  925. func (*StartActionByGetRequest) Descriptor() ([]byte, []int) {
  926. return file_olivetin_api_v1_olivetin_proto_rawDescGZIP(), []int{15}
  927. }
  928. func (x *StartActionByGetRequest) GetActionId() string {
  929. if x != nil {
  930. return x.ActionId
  931. }
  932. return ""
  933. }
  934. type StartActionByGetResponse struct {
  935. state protoimpl.MessageState `protogen:"open.v1"`
  936. ExecutionTrackingId string `protobuf:"bytes,2,opt,name=execution_tracking_id,json=executionTrackingId,proto3" json:"execution_tracking_id,omitempty"`
  937. unknownFields protoimpl.UnknownFields
  938. sizeCache protoimpl.SizeCache
  939. }
  940. func (x *StartActionByGetResponse) Reset() {
  941. *x = StartActionByGetResponse{}
  942. mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[16]
  943. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  944. ms.StoreMessageInfo(mi)
  945. }
  946. func (x *StartActionByGetResponse) String() string {
  947. return protoimpl.X.MessageStringOf(x)
  948. }
  949. func (*StartActionByGetResponse) ProtoMessage() {}
  950. func (x *StartActionByGetResponse) ProtoReflect() protoreflect.Message {
  951. mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[16]
  952. if x != nil {
  953. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  954. if ms.LoadMessageInfo() == nil {
  955. ms.StoreMessageInfo(mi)
  956. }
  957. return ms
  958. }
  959. return mi.MessageOf(x)
  960. }
  961. // Deprecated: Use StartActionByGetResponse.ProtoReflect.Descriptor instead.
  962. func (*StartActionByGetResponse) Descriptor() ([]byte, []int) {
  963. return file_olivetin_api_v1_olivetin_proto_rawDescGZIP(), []int{16}
  964. }
  965. func (x *StartActionByGetResponse) GetExecutionTrackingId() string {
  966. if x != nil {
  967. return x.ExecutionTrackingId
  968. }
  969. return ""
  970. }
  971. type StartActionByGetAndWaitRequest struct {
  972. state protoimpl.MessageState `protogen:"open.v1"`
  973. ActionId string `protobuf:"bytes,1,opt,name=action_id,json=actionId,proto3" json:"action_id,omitempty"`
  974. unknownFields protoimpl.UnknownFields
  975. sizeCache protoimpl.SizeCache
  976. }
  977. func (x *StartActionByGetAndWaitRequest) Reset() {
  978. *x = StartActionByGetAndWaitRequest{}
  979. mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[17]
  980. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  981. ms.StoreMessageInfo(mi)
  982. }
  983. func (x *StartActionByGetAndWaitRequest) String() string {
  984. return protoimpl.X.MessageStringOf(x)
  985. }
  986. func (*StartActionByGetAndWaitRequest) ProtoMessage() {}
  987. func (x *StartActionByGetAndWaitRequest) ProtoReflect() protoreflect.Message {
  988. mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[17]
  989. if x != nil {
  990. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  991. if ms.LoadMessageInfo() == nil {
  992. ms.StoreMessageInfo(mi)
  993. }
  994. return ms
  995. }
  996. return mi.MessageOf(x)
  997. }
  998. // Deprecated: Use StartActionByGetAndWaitRequest.ProtoReflect.Descriptor instead.
  999. func (*StartActionByGetAndWaitRequest) Descriptor() ([]byte, []int) {
  1000. return file_olivetin_api_v1_olivetin_proto_rawDescGZIP(), []int{17}
  1001. }
  1002. func (x *StartActionByGetAndWaitRequest) GetActionId() string {
  1003. if x != nil {
  1004. return x.ActionId
  1005. }
  1006. return ""
  1007. }
  1008. type StartActionByGetAndWaitResponse struct {
  1009. state protoimpl.MessageState `protogen:"open.v1"`
  1010. LogEntry *LogEntry `protobuf:"bytes,1,opt,name=log_entry,json=logEntry,proto3" json:"log_entry,omitempty"`
  1011. unknownFields protoimpl.UnknownFields
  1012. sizeCache protoimpl.SizeCache
  1013. }
  1014. func (x *StartActionByGetAndWaitResponse) Reset() {
  1015. *x = StartActionByGetAndWaitResponse{}
  1016. mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[18]
  1017. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1018. ms.StoreMessageInfo(mi)
  1019. }
  1020. func (x *StartActionByGetAndWaitResponse) String() string {
  1021. return protoimpl.X.MessageStringOf(x)
  1022. }
  1023. func (*StartActionByGetAndWaitResponse) ProtoMessage() {}
  1024. func (x *StartActionByGetAndWaitResponse) ProtoReflect() protoreflect.Message {
  1025. mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[18]
  1026. if x != nil {
  1027. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1028. if ms.LoadMessageInfo() == nil {
  1029. ms.StoreMessageInfo(mi)
  1030. }
  1031. return ms
  1032. }
  1033. return mi.MessageOf(x)
  1034. }
  1035. // Deprecated: Use StartActionByGetAndWaitResponse.ProtoReflect.Descriptor instead.
  1036. func (*StartActionByGetAndWaitResponse) Descriptor() ([]byte, []int) {
  1037. return file_olivetin_api_v1_olivetin_proto_rawDescGZIP(), []int{18}
  1038. }
  1039. func (x *StartActionByGetAndWaitResponse) GetLogEntry() *LogEntry {
  1040. if x != nil {
  1041. return x.LogEntry
  1042. }
  1043. return nil
  1044. }
  1045. type GetLogsRequest struct {
  1046. state protoimpl.MessageState `protogen:"open.v1"`
  1047. StartOffset int64 `protobuf:"varint,1,opt,name=start_offset,json=startOffset,proto3" json:"start_offset,omitempty"`
  1048. DateFilter string `protobuf:"bytes,2,opt,name=date_filter,json=dateFilter,proto3" json:"date_filter,omitempty"` // Optional date filter in YYYY-MM-DD format
  1049. PageSize int64 `protobuf:"varint,3,opt,name=page_size,json=pageSize,proto3" json:"page_size,omitempty"` // Number of logs per page (optional; server default used if 0 or unset)
  1050. unknownFields protoimpl.UnknownFields
  1051. sizeCache protoimpl.SizeCache
  1052. }
  1053. func (x *GetLogsRequest) Reset() {
  1054. *x = GetLogsRequest{}
  1055. mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[19]
  1056. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1057. ms.StoreMessageInfo(mi)
  1058. }
  1059. func (x *GetLogsRequest) String() string {
  1060. return protoimpl.X.MessageStringOf(x)
  1061. }
  1062. func (*GetLogsRequest) ProtoMessage() {}
  1063. func (x *GetLogsRequest) ProtoReflect() protoreflect.Message {
  1064. mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[19]
  1065. if x != nil {
  1066. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1067. if ms.LoadMessageInfo() == nil {
  1068. ms.StoreMessageInfo(mi)
  1069. }
  1070. return ms
  1071. }
  1072. return mi.MessageOf(x)
  1073. }
  1074. // Deprecated: Use GetLogsRequest.ProtoReflect.Descriptor instead.
  1075. func (*GetLogsRequest) Descriptor() ([]byte, []int) {
  1076. return file_olivetin_api_v1_olivetin_proto_rawDescGZIP(), []int{19}
  1077. }
  1078. func (x *GetLogsRequest) GetStartOffset() int64 {
  1079. if x != nil {
  1080. return x.StartOffset
  1081. }
  1082. return 0
  1083. }
  1084. func (x *GetLogsRequest) GetDateFilter() string {
  1085. if x != nil {
  1086. return x.DateFilter
  1087. }
  1088. return ""
  1089. }
  1090. func (x *GetLogsRequest) GetPageSize() int64 {
  1091. if x != nil {
  1092. return x.PageSize
  1093. }
  1094. return 0
  1095. }
  1096. type LogEntry struct {
  1097. state protoimpl.MessageState `protogen:"open.v1"`
  1098. DatetimeStarted string `protobuf:"bytes,1,opt,name=datetime_started,json=datetimeStarted,proto3" json:"datetime_started,omitempty"`
  1099. ActionTitle string `protobuf:"bytes,2,opt,name=action_title,json=actionTitle,proto3" json:"action_title,omitempty"`
  1100. Output string `protobuf:"bytes,3,opt,name=output,proto3" json:"output,omitempty"`
  1101. TimedOut bool `protobuf:"varint,5,opt,name=timed_out,json=timedOut,proto3" json:"timed_out,omitempty"`
  1102. ExitCode int32 `protobuf:"varint,6,opt,name=exit_code,json=exitCode,proto3" json:"exit_code,omitempty"`
  1103. User string `protobuf:"bytes,7,opt,name=user,proto3" json:"user,omitempty"`
  1104. UserClass string `protobuf:"bytes,8,opt,name=user_class,json=userClass,proto3" json:"user_class,omitempty"`
  1105. ActionIcon string `protobuf:"bytes,9,opt,name=action_icon,json=actionIcon,proto3" json:"action_icon,omitempty"`
  1106. Tags []string `protobuf:"bytes,10,rep,name=tags,proto3" json:"tags,omitempty"`
  1107. ExecutionTrackingId string `protobuf:"bytes,11,opt,name=execution_tracking_id,json=executionTrackingId,proto3" json:"execution_tracking_id,omitempty"`
  1108. DatetimeFinished string `protobuf:"bytes,12,opt,name=datetime_finished,json=datetimeFinished,proto3" json:"datetime_finished,omitempty"`
  1109. ExecutionStarted bool `protobuf:"varint,14,opt,name=execution_started,json=executionStarted,proto3" json:"execution_started,omitempty"`
  1110. ExecutionFinished bool `protobuf:"varint,15,opt,name=execution_finished,json=executionFinished,proto3" json:"execution_finished,omitempty"`
  1111. Blocked bool `protobuf:"varint,16,opt,name=blocked,proto3" json:"blocked,omitempty"`
  1112. DatetimeIndex int64 `protobuf:"varint,17,opt,name=datetime_index,json=datetimeIndex,proto3" json:"datetime_index,omitempty"`
  1113. CanKill bool `protobuf:"varint,18,opt,name=can_kill,json=canKill,proto3" json:"can_kill,omitempty"`
  1114. DatetimeRateLimitExpires string `protobuf:"bytes,19,opt,name=datetime_rate_limit_expires,json=datetimeRateLimitExpires,proto3" json:"datetime_rate_limit_expires,omitempty"` // Datetime when rate limit expires (empty string if not rate limited), format: "2006-01-02 15:04:05"
  1115. BindingId string `protobuf:"bytes,20,opt,name=binding_id,json=bindingId,proto3" json:"binding_id,omitempty"` // Binding ID for matching rate limits to action buttons
  1116. unknownFields protoimpl.UnknownFields
  1117. sizeCache protoimpl.SizeCache
  1118. }
  1119. func (x *LogEntry) Reset() {
  1120. *x = LogEntry{}
  1121. mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[20]
  1122. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1123. ms.StoreMessageInfo(mi)
  1124. }
  1125. func (x *LogEntry) String() string {
  1126. return protoimpl.X.MessageStringOf(x)
  1127. }
  1128. func (*LogEntry) ProtoMessage() {}
  1129. func (x *LogEntry) ProtoReflect() protoreflect.Message {
  1130. mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[20]
  1131. if x != nil {
  1132. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1133. if ms.LoadMessageInfo() == nil {
  1134. ms.StoreMessageInfo(mi)
  1135. }
  1136. return ms
  1137. }
  1138. return mi.MessageOf(x)
  1139. }
  1140. // Deprecated: Use LogEntry.ProtoReflect.Descriptor instead.
  1141. func (*LogEntry) Descriptor() ([]byte, []int) {
  1142. return file_olivetin_api_v1_olivetin_proto_rawDescGZIP(), []int{20}
  1143. }
  1144. func (x *LogEntry) GetDatetimeStarted() string {
  1145. if x != nil {
  1146. return x.DatetimeStarted
  1147. }
  1148. return ""
  1149. }
  1150. func (x *LogEntry) GetActionTitle() string {
  1151. if x != nil {
  1152. return x.ActionTitle
  1153. }
  1154. return ""
  1155. }
  1156. func (x *LogEntry) GetOutput() string {
  1157. if x != nil {
  1158. return x.Output
  1159. }
  1160. return ""
  1161. }
  1162. func (x *LogEntry) GetTimedOut() bool {
  1163. if x != nil {
  1164. return x.TimedOut
  1165. }
  1166. return false
  1167. }
  1168. func (x *LogEntry) GetExitCode() int32 {
  1169. if x != nil {
  1170. return x.ExitCode
  1171. }
  1172. return 0
  1173. }
  1174. func (x *LogEntry) GetUser() string {
  1175. if x != nil {
  1176. return x.User
  1177. }
  1178. return ""
  1179. }
  1180. func (x *LogEntry) GetUserClass() string {
  1181. if x != nil {
  1182. return x.UserClass
  1183. }
  1184. return ""
  1185. }
  1186. func (x *LogEntry) GetActionIcon() string {
  1187. if x != nil {
  1188. return x.ActionIcon
  1189. }
  1190. return ""
  1191. }
  1192. func (x *LogEntry) GetTags() []string {
  1193. if x != nil {
  1194. return x.Tags
  1195. }
  1196. return nil
  1197. }
  1198. func (x *LogEntry) GetExecutionTrackingId() string {
  1199. if x != nil {
  1200. return x.ExecutionTrackingId
  1201. }
  1202. return ""
  1203. }
  1204. func (x *LogEntry) GetDatetimeFinished() string {
  1205. if x != nil {
  1206. return x.DatetimeFinished
  1207. }
  1208. return ""
  1209. }
  1210. func (x *LogEntry) GetExecutionStarted() bool {
  1211. if x != nil {
  1212. return x.ExecutionStarted
  1213. }
  1214. return false
  1215. }
  1216. func (x *LogEntry) GetExecutionFinished() bool {
  1217. if x != nil {
  1218. return x.ExecutionFinished
  1219. }
  1220. return false
  1221. }
  1222. func (x *LogEntry) GetBlocked() bool {
  1223. if x != nil {
  1224. return x.Blocked
  1225. }
  1226. return false
  1227. }
  1228. func (x *LogEntry) GetDatetimeIndex() int64 {
  1229. if x != nil {
  1230. return x.DatetimeIndex
  1231. }
  1232. return 0
  1233. }
  1234. func (x *LogEntry) GetCanKill() bool {
  1235. if x != nil {
  1236. return x.CanKill
  1237. }
  1238. return false
  1239. }
  1240. func (x *LogEntry) GetDatetimeRateLimitExpires() string {
  1241. if x != nil {
  1242. return x.DatetimeRateLimitExpires
  1243. }
  1244. return ""
  1245. }
  1246. func (x *LogEntry) GetBindingId() string {
  1247. if x != nil {
  1248. return x.BindingId
  1249. }
  1250. return ""
  1251. }
  1252. type GetLogsResponse struct {
  1253. state protoimpl.MessageState `protogen:"open.v1"`
  1254. Logs []*LogEntry `protobuf:"bytes,1,rep,name=logs,proto3" json:"logs,omitempty"`
  1255. CountRemaining int64 `protobuf:"varint,2,opt,name=count_remaining,json=countRemaining,proto3" json:"count_remaining,omitempty"`
  1256. PageSize int64 `protobuf:"varint,3,opt,name=page_size,json=pageSize,proto3" json:"page_size,omitempty"`
  1257. TotalCount int64 `protobuf:"varint,4,opt,name=total_count,json=totalCount,proto3" json:"total_count,omitempty"`
  1258. StartOffset int64 `protobuf:"varint,5,opt,name=start_offset,json=startOffset,proto3" json:"start_offset,omitempty"`
  1259. unknownFields protoimpl.UnknownFields
  1260. sizeCache protoimpl.SizeCache
  1261. }
  1262. func (x *GetLogsResponse) Reset() {
  1263. *x = GetLogsResponse{}
  1264. mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[21]
  1265. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1266. ms.StoreMessageInfo(mi)
  1267. }
  1268. func (x *GetLogsResponse) String() string {
  1269. return protoimpl.X.MessageStringOf(x)
  1270. }
  1271. func (*GetLogsResponse) ProtoMessage() {}
  1272. func (x *GetLogsResponse) ProtoReflect() protoreflect.Message {
  1273. mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[21]
  1274. if x != nil {
  1275. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1276. if ms.LoadMessageInfo() == nil {
  1277. ms.StoreMessageInfo(mi)
  1278. }
  1279. return ms
  1280. }
  1281. return mi.MessageOf(x)
  1282. }
  1283. // Deprecated: Use GetLogsResponse.ProtoReflect.Descriptor instead.
  1284. func (*GetLogsResponse) Descriptor() ([]byte, []int) {
  1285. return file_olivetin_api_v1_olivetin_proto_rawDescGZIP(), []int{21}
  1286. }
  1287. func (x *GetLogsResponse) GetLogs() []*LogEntry {
  1288. if x != nil {
  1289. return x.Logs
  1290. }
  1291. return nil
  1292. }
  1293. func (x *GetLogsResponse) GetCountRemaining() int64 {
  1294. if x != nil {
  1295. return x.CountRemaining
  1296. }
  1297. return 0
  1298. }
  1299. func (x *GetLogsResponse) GetPageSize() int64 {
  1300. if x != nil {
  1301. return x.PageSize
  1302. }
  1303. return 0
  1304. }
  1305. func (x *GetLogsResponse) GetTotalCount() int64 {
  1306. if x != nil {
  1307. return x.TotalCount
  1308. }
  1309. return 0
  1310. }
  1311. func (x *GetLogsResponse) GetStartOffset() int64 {
  1312. if x != nil {
  1313. return x.StartOffset
  1314. }
  1315. return 0
  1316. }
  1317. type GetActionLogsRequest struct {
  1318. state protoimpl.MessageState `protogen:"open.v1"`
  1319. ActionId string `protobuf:"bytes,1,opt,name=action_id,json=actionId,proto3" json:"action_id,omitempty"`
  1320. StartOffset int64 `protobuf:"varint,2,opt,name=start_offset,json=startOffset,proto3" json:"start_offset,omitempty"`
  1321. unknownFields protoimpl.UnknownFields
  1322. sizeCache protoimpl.SizeCache
  1323. }
  1324. func (x *GetActionLogsRequest) Reset() {
  1325. *x = GetActionLogsRequest{}
  1326. mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[22]
  1327. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1328. ms.StoreMessageInfo(mi)
  1329. }
  1330. func (x *GetActionLogsRequest) String() string {
  1331. return protoimpl.X.MessageStringOf(x)
  1332. }
  1333. func (*GetActionLogsRequest) ProtoMessage() {}
  1334. func (x *GetActionLogsRequest) ProtoReflect() protoreflect.Message {
  1335. mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[22]
  1336. if x != nil {
  1337. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1338. if ms.LoadMessageInfo() == nil {
  1339. ms.StoreMessageInfo(mi)
  1340. }
  1341. return ms
  1342. }
  1343. return mi.MessageOf(x)
  1344. }
  1345. // Deprecated: Use GetActionLogsRequest.ProtoReflect.Descriptor instead.
  1346. func (*GetActionLogsRequest) Descriptor() ([]byte, []int) {
  1347. return file_olivetin_api_v1_olivetin_proto_rawDescGZIP(), []int{22}
  1348. }
  1349. func (x *GetActionLogsRequest) GetActionId() string {
  1350. if x != nil {
  1351. return x.ActionId
  1352. }
  1353. return ""
  1354. }
  1355. func (x *GetActionLogsRequest) GetStartOffset() int64 {
  1356. if x != nil {
  1357. return x.StartOffset
  1358. }
  1359. return 0
  1360. }
  1361. type GetActionLogsResponse struct {
  1362. state protoimpl.MessageState `protogen:"open.v1"`
  1363. Logs []*LogEntry `protobuf:"bytes,1,rep,name=logs,proto3" json:"logs,omitempty"`
  1364. CountRemaining int64 `protobuf:"varint,2,opt,name=count_remaining,json=countRemaining,proto3" json:"count_remaining,omitempty"`
  1365. PageSize int64 `protobuf:"varint,3,opt,name=page_size,json=pageSize,proto3" json:"page_size,omitempty"`
  1366. TotalCount int64 `protobuf:"varint,4,opt,name=total_count,json=totalCount,proto3" json:"total_count,omitempty"`
  1367. StartOffset int64 `protobuf:"varint,5,opt,name=start_offset,json=startOffset,proto3" json:"start_offset,omitempty"`
  1368. unknownFields protoimpl.UnknownFields
  1369. sizeCache protoimpl.SizeCache
  1370. }
  1371. func (x *GetActionLogsResponse) Reset() {
  1372. *x = GetActionLogsResponse{}
  1373. mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[23]
  1374. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1375. ms.StoreMessageInfo(mi)
  1376. }
  1377. func (x *GetActionLogsResponse) String() string {
  1378. return protoimpl.X.MessageStringOf(x)
  1379. }
  1380. func (*GetActionLogsResponse) ProtoMessage() {}
  1381. func (x *GetActionLogsResponse) ProtoReflect() protoreflect.Message {
  1382. mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[23]
  1383. if x != nil {
  1384. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1385. if ms.LoadMessageInfo() == nil {
  1386. ms.StoreMessageInfo(mi)
  1387. }
  1388. return ms
  1389. }
  1390. return mi.MessageOf(x)
  1391. }
  1392. // Deprecated: Use GetActionLogsResponse.ProtoReflect.Descriptor instead.
  1393. func (*GetActionLogsResponse) Descriptor() ([]byte, []int) {
  1394. return file_olivetin_api_v1_olivetin_proto_rawDescGZIP(), []int{23}
  1395. }
  1396. func (x *GetActionLogsResponse) GetLogs() []*LogEntry {
  1397. if x != nil {
  1398. return x.Logs
  1399. }
  1400. return nil
  1401. }
  1402. func (x *GetActionLogsResponse) GetCountRemaining() int64 {
  1403. if x != nil {
  1404. return x.CountRemaining
  1405. }
  1406. return 0
  1407. }
  1408. func (x *GetActionLogsResponse) GetPageSize() int64 {
  1409. if x != nil {
  1410. return x.PageSize
  1411. }
  1412. return 0
  1413. }
  1414. func (x *GetActionLogsResponse) GetTotalCount() int64 {
  1415. if x != nil {
  1416. return x.TotalCount
  1417. }
  1418. return 0
  1419. }
  1420. func (x *GetActionLogsResponse) GetStartOffset() int64 {
  1421. if x != nil {
  1422. return x.StartOffset
  1423. }
  1424. return 0
  1425. }
  1426. type ValidateArgumentTypeRequest struct {
  1427. state protoimpl.MessageState `protogen:"open.v1"`
  1428. Value string `protobuf:"bytes,1,opt,name=value,proto3" json:"value,omitempty"`
  1429. Type string `protobuf:"bytes,2,opt,name=type,proto3" json:"type,omitempty"`
  1430. BindingId string `protobuf:"bytes,3,opt,name=binding_id,json=bindingId,proto3" json:"binding_id,omitempty"`
  1431. ArgumentName string `protobuf:"bytes,4,opt,name=argument_name,json=argumentName,proto3" json:"argument_name,omitempty"`
  1432. unknownFields protoimpl.UnknownFields
  1433. sizeCache protoimpl.SizeCache
  1434. }
  1435. func (x *ValidateArgumentTypeRequest) Reset() {
  1436. *x = ValidateArgumentTypeRequest{}
  1437. mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[24]
  1438. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1439. ms.StoreMessageInfo(mi)
  1440. }
  1441. func (x *ValidateArgumentTypeRequest) String() string {
  1442. return protoimpl.X.MessageStringOf(x)
  1443. }
  1444. func (*ValidateArgumentTypeRequest) ProtoMessage() {}
  1445. func (x *ValidateArgumentTypeRequest) ProtoReflect() protoreflect.Message {
  1446. mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[24]
  1447. if x != nil {
  1448. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1449. if ms.LoadMessageInfo() == nil {
  1450. ms.StoreMessageInfo(mi)
  1451. }
  1452. return ms
  1453. }
  1454. return mi.MessageOf(x)
  1455. }
  1456. // Deprecated: Use ValidateArgumentTypeRequest.ProtoReflect.Descriptor instead.
  1457. func (*ValidateArgumentTypeRequest) Descriptor() ([]byte, []int) {
  1458. return file_olivetin_api_v1_olivetin_proto_rawDescGZIP(), []int{24}
  1459. }
  1460. func (x *ValidateArgumentTypeRequest) GetValue() string {
  1461. if x != nil {
  1462. return x.Value
  1463. }
  1464. return ""
  1465. }
  1466. func (x *ValidateArgumentTypeRequest) GetType() string {
  1467. if x != nil {
  1468. return x.Type
  1469. }
  1470. return ""
  1471. }
  1472. func (x *ValidateArgumentTypeRequest) GetBindingId() string {
  1473. if x != nil {
  1474. return x.BindingId
  1475. }
  1476. return ""
  1477. }
  1478. func (x *ValidateArgumentTypeRequest) GetArgumentName() string {
  1479. if x != nil {
  1480. return x.ArgumentName
  1481. }
  1482. return ""
  1483. }
  1484. type ValidateArgumentTypeResponse struct {
  1485. state protoimpl.MessageState `protogen:"open.v1"`
  1486. Valid bool `protobuf:"varint,1,opt,name=valid,proto3" json:"valid,omitempty"`
  1487. Description string `protobuf:"bytes,2,opt,name=description,proto3" json:"description,omitempty"`
  1488. unknownFields protoimpl.UnknownFields
  1489. sizeCache protoimpl.SizeCache
  1490. }
  1491. func (x *ValidateArgumentTypeResponse) Reset() {
  1492. *x = ValidateArgumentTypeResponse{}
  1493. mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[25]
  1494. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1495. ms.StoreMessageInfo(mi)
  1496. }
  1497. func (x *ValidateArgumentTypeResponse) String() string {
  1498. return protoimpl.X.MessageStringOf(x)
  1499. }
  1500. func (*ValidateArgumentTypeResponse) ProtoMessage() {}
  1501. func (x *ValidateArgumentTypeResponse) ProtoReflect() protoreflect.Message {
  1502. mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[25]
  1503. if x != nil {
  1504. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1505. if ms.LoadMessageInfo() == nil {
  1506. ms.StoreMessageInfo(mi)
  1507. }
  1508. return ms
  1509. }
  1510. return mi.MessageOf(x)
  1511. }
  1512. // Deprecated: Use ValidateArgumentTypeResponse.ProtoReflect.Descriptor instead.
  1513. func (*ValidateArgumentTypeResponse) Descriptor() ([]byte, []int) {
  1514. return file_olivetin_api_v1_olivetin_proto_rawDescGZIP(), []int{25}
  1515. }
  1516. func (x *ValidateArgumentTypeResponse) GetValid() bool {
  1517. if x != nil {
  1518. return x.Valid
  1519. }
  1520. return false
  1521. }
  1522. func (x *ValidateArgumentTypeResponse) GetDescription() string {
  1523. if x != nil {
  1524. return x.Description
  1525. }
  1526. return ""
  1527. }
  1528. type WatchExecutionRequest struct {
  1529. state protoimpl.MessageState `protogen:"open.v1"`
  1530. ExecutionTrackingId string `protobuf:"bytes,1,opt,name=execution_tracking_id,json=executionTrackingId,proto3" json:"execution_tracking_id,omitempty"`
  1531. unknownFields protoimpl.UnknownFields
  1532. sizeCache protoimpl.SizeCache
  1533. }
  1534. func (x *WatchExecutionRequest) Reset() {
  1535. *x = WatchExecutionRequest{}
  1536. mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[26]
  1537. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1538. ms.StoreMessageInfo(mi)
  1539. }
  1540. func (x *WatchExecutionRequest) String() string {
  1541. return protoimpl.X.MessageStringOf(x)
  1542. }
  1543. func (*WatchExecutionRequest) ProtoMessage() {}
  1544. func (x *WatchExecutionRequest) ProtoReflect() protoreflect.Message {
  1545. mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[26]
  1546. if x != nil {
  1547. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1548. if ms.LoadMessageInfo() == nil {
  1549. ms.StoreMessageInfo(mi)
  1550. }
  1551. return ms
  1552. }
  1553. return mi.MessageOf(x)
  1554. }
  1555. // Deprecated: Use WatchExecutionRequest.ProtoReflect.Descriptor instead.
  1556. func (*WatchExecutionRequest) Descriptor() ([]byte, []int) {
  1557. return file_olivetin_api_v1_olivetin_proto_rawDescGZIP(), []int{26}
  1558. }
  1559. func (x *WatchExecutionRequest) GetExecutionTrackingId() string {
  1560. if x != nil {
  1561. return x.ExecutionTrackingId
  1562. }
  1563. return ""
  1564. }
  1565. type WatchExecutionUpdate struct {
  1566. state protoimpl.MessageState `protogen:"open.v1"`
  1567. Update string `protobuf:"bytes,1,opt,name=update,proto3" json:"update,omitempty"`
  1568. unknownFields protoimpl.UnknownFields
  1569. sizeCache protoimpl.SizeCache
  1570. }
  1571. func (x *WatchExecutionUpdate) Reset() {
  1572. *x = WatchExecutionUpdate{}
  1573. mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[27]
  1574. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1575. ms.StoreMessageInfo(mi)
  1576. }
  1577. func (x *WatchExecutionUpdate) String() string {
  1578. return protoimpl.X.MessageStringOf(x)
  1579. }
  1580. func (*WatchExecutionUpdate) ProtoMessage() {}
  1581. func (x *WatchExecutionUpdate) ProtoReflect() protoreflect.Message {
  1582. mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[27]
  1583. if x != nil {
  1584. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1585. if ms.LoadMessageInfo() == nil {
  1586. ms.StoreMessageInfo(mi)
  1587. }
  1588. return ms
  1589. }
  1590. return mi.MessageOf(x)
  1591. }
  1592. // Deprecated: Use WatchExecutionUpdate.ProtoReflect.Descriptor instead.
  1593. func (*WatchExecutionUpdate) Descriptor() ([]byte, []int) {
  1594. return file_olivetin_api_v1_olivetin_proto_rawDescGZIP(), []int{27}
  1595. }
  1596. func (x *WatchExecutionUpdate) GetUpdate() string {
  1597. if x != nil {
  1598. return x.Update
  1599. }
  1600. return ""
  1601. }
  1602. type ExecutionStatusRequest struct {
  1603. state protoimpl.MessageState `protogen:"open.v1"`
  1604. ExecutionTrackingId string `protobuf:"bytes,1,opt,name=execution_tracking_id,json=executionTrackingId,proto3" json:"execution_tracking_id,omitempty"`
  1605. ActionId string `protobuf:"bytes,2,opt,name=action_id,json=actionId,proto3" json:"action_id,omitempty"`
  1606. unknownFields protoimpl.UnknownFields
  1607. sizeCache protoimpl.SizeCache
  1608. }
  1609. func (x *ExecutionStatusRequest) Reset() {
  1610. *x = ExecutionStatusRequest{}
  1611. mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[28]
  1612. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1613. ms.StoreMessageInfo(mi)
  1614. }
  1615. func (x *ExecutionStatusRequest) String() string {
  1616. return protoimpl.X.MessageStringOf(x)
  1617. }
  1618. func (*ExecutionStatusRequest) ProtoMessage() {}
  1619. func (x *ExecutionStatusRequest) ProtoReflect() protoreflect.Message {
  1620. mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[28]
  1621. if x != nil {
  1622. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1623. if ms.LoadMessageInfo() == nil {
  1624. ms.StoreMessageInfo(mi)
  1625. }
  1626. return ms
  1627. }
  1628. return mi.MessageOf(x)
  1629. }
  1630. // Deprecated: Use ExecutionStatusRequest.ProtoReflect.Descriptor instead.
  1631. func (*ExecutionStatusRequest) Descriptor() ([]byte, []int) {
  1632. return file_olivetin_api_v1_olivetin_proto_rawDescGZIP(), []int{28}
  1633. }
  1634. func (x *ExecutionStatusRequest) GetExecutionTrackingId() string {
  1635. if x != nil {
  1636. return x.ExecutionTrackingId
  1637. }
  1638. return ""
  1639. }
  1640. func (x *ExecutionStatusRequest) GetActionId() string {
  1641. if x != nil {
  1642. return x.ActionId
  1643. }
  1644. return ""
  1645. }
  1646. type ExecutionStatusResponse struct {
  1647. state protoimpl.MessageState `protogen:"open.v1"`
  1648. LogEntry *LogEntry `protobuf:"bytes,1,opt,name=log_entry,json=logEntry,proto3" json:"log_entry,omitempty"`
  1649. unknownFields protoimpl.UnknownFields
  1650. sizeCache protoimpl.SizeCache
  1651. }
  1652. func (x *ExecutionStatusResponse) Reset() {
  1653. *x = ExecutionStatusResponse{}
  1654. mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[29]
  1655. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1656. ms.StoreMessageInfo(mi)
  1657. }
  1658. func (x *ExecutionStatusResponse) String() string {
  1659. return protoimpl.X.MessageStringOf(x)
  1660. }
  1661. func (*ExecutionStatusResponse) ProtoMessage() {}
  1662. func (x *ExecutionStatusResponse) ProtoReflect() protoreflect.Message {
  1663. mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[29]
  1664. if x != nil {
  1665. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1666. if ms.LoadMessageInfo() == nil {
  1667. ms.StoreMessageInfo(mi)
  1668. }
  1669. return ms
  1670. }
  1671. return mi.MessageOf(x)
  1672. }
  1673. // Deprecated: Use ExecutionStatusResponse.ProtoReflect.Descriptor instead.
  1674. func (*ExecutionStatusResponse) Descriptor() ([]byte, []int) {
  1675. return file_olivetin_api_v1_olivetin_proto_rawDescGZIP(), []int{29}
  1676. }
  1677. func (x *ExecutionStatusResponse) GetLogEntry() *LogEntry {
  1678. if x != nil {
  1679. return x.LogEntry
  1680. }
  1681. return nil
  1682. }
  1683. type WhoAmIRequest struct {
  1684. state protoimpl.MessageState `protogen:"open.v1"`
  1685. unknownFields protoimpl.UnknownFields
  1686. sizeCache protoimpl.SizeCache
  1687. }
  1688. func (x *WhoAmIRequest) Reset() {
  1689. *x = WhoAmIRequest{}
  1690. mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[30]
  1691. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1692. ms.StoreMessageInfo(mi)
  1693. }
  1694. func (x *WhoAmIRequest) String() string {
  1695. return protoimpl.X.MessageStringOf(x)
  1696. }
  1697. func (*WhoAmIRequest) ProtoMessage() {}
  1698. func (x *WhoAmIRequest) ProtoReflect() protoreflect.Message {
  1699. mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[30]
  1700. if x != nil {
  1701. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1702. if ms.LoadMessageInfo() == nil {
  1703. ms.StoreMessageInfo(mi)
  1704. }
  1705. return ms
  1706. }
  1707. return mi.MessageOf(x)
  1708. }
  1709. // Deprecated: Use WhoAmIRequest.ProtoReflect.Descriptor instead.
  1710. func (*WhoAmIRequest) Descriptor() ([]byte, []int) {
  1711. return file_olivetin_api_v1_olivetin_proto_rawDescGZIP(), []int{30}
  1712. }
  1713. type WhoAmIResponse struct {
  1714. state protoimpl.MessageState `protogen:"open.v1"`
  1715. AuthenticatedUser string `protobuf:"bytes,1,opt,name=authenticated_user,json=authenticatedUser,proto3" json:"authenticated_user,omitempty"`
  1716. Usergroup string `protobuf:"bytes,2,opt,name=usergroup,proto3" json:"usergroup,omitempty"`
  1717. Provider string `protobuf:"bytes,3,opt,name=provider,proto3" json:"provider,omitempty"`
  1718. Acls []string `protobuf:"bytes,4,rep,name=acls,proto3" json:"acls,omitempty"`
  1719. Sid string `protobuf:"bytes,5,opt,name=sid,proto3" json:"sid,omitempty"`
  1720. unknownFields protoimpl.UnknownFields
  1721. sizeCache protoimpl.SizeCache
  1722. }
  1723. func (x *WhoAmIResponse) Reset() {
  1724. *x = WhoAmIResponse{}
  1725. mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[31]
  1726. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1727. ms.StoreMessageInfo(mi)
  1728. }
  1729. func (x *WhoAmIResponse) String() string {
  1730. return protoimpl.X.MessageStringOf(x)
  1731. }
  1732. func (*WhoAmIResponse) ProtoMessage() {}
  1733. func (x *WhoAmIResponse) ProtoReflect() protoreflect.Message {
  1734. mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[31]
  1735. if x != nil {
  1736. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1737. if ms.LoadMessageInfo() == nil {
  1738. ms.StoreMessageInfo(mi)
  1739. }
  1740. return ms
  1741. }
  1742. return mi.MessageOf(x)
  1743. }
  1744. // Deprecated: Use WhoAmIResponse.ProtoReflect.Descriptor instead.
  1745. func (*WhoAmIResponse) Descriptor() ([]byte, []int) {
  1746. return file_olivetin_api_v1_olivetin_proto_rawDescGZIP(), []int{31}
  1747. }
  1748. func (x *WhoAmIResponse) GetAuthenticatedUser() string {
  1749. if x != nil {
  1750. return x.AuthenticatedUser
  1751. }
  1752. return ""
  1753. }
  1754. func (x *WhoAmIResponse) GetUsergroup() string {
  1755. if x != nil {
  1756. return x.Usergroup
  1757. }
  1758. return ""
  1759. }
  1760. func (x *WhoAmIResponse) GetProvider() string {
  1761. if x != nil {
  1762. return x.Provider
  1763. }
  1764. return ""
  1765. }
  1766. func (x *WhoAmIResponse) GetAcls() []string {
  1767. if x != nil {
  1768. return x.Acls
  1769. }
  1770. return nil
  1771. }
  1772. func (x *WhoAmIResponse) GetSid() string {
  1773. if x != nil {
  1774. return x.Sid
  1775. }
  1776. return ""
  1777. }
  1778. type SosReportRequest struct {
  1779. state protoimpl.MessageState `protogen:"open.v1"`
  1780. unknownFields protoimpl.UnknownFields
  1781. sizeCache protoimpl.SizeCache
  1782. }
  1783. func (x *SosReportRequest) Reset() {
  1784. *x = SosReportRequest{}
  1785. mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[32]
  1786. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1787. ms.StoreMessageInfo(mi)
  1788. }
  1789. func (x *SosReportRequest) String() string {
  1790. return protoimpl.X.MessageStringOf(x)
  1791. }
  1792. func (*SosReportRequest) ProtoMessage() {}
  1793. func (x *SosReportRequest) ProtoReflect() protoreflect.Message {
  1794. mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[32]
  1795. if x != nil {
  1796. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1797. if ms.LoadMessageInfo() == nil {
  1798. ms.StoreMessageInfo(mi)
  1799. }
  1800. return ms
  1801. }
  1802. return mi.MessageOf(x)
  1803. }
  1804. // Deprecated: Use SosReportRequest.ProtoReflect.Descriptor instead.
  1805. func (*SosReportRequest) Descriptor() ([]byte, []int) {
  1806. return file_olivetin_api_v1_olivetin_proto_rawDescGZIP(), []int{32}
  1807. }
  1808. type SosReportResponse struct {
  1809. state protoimpl.MessageState `protogen:"open.v1"`
  1810. Alert string `protobuf:"bytes,1,opt,name=alert,proto3" json:"alert,omitempty"`
  1811. unknownFields protoimpl.UnknownFields
  1812. sizeCache protoimpl.SizeCache
  1813. }
  1814. func (x *SosReportResponse) Reset() {
  1815. *x = SosReportResponse{}
  1816. mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[33]
  1817. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1818. ms.StoreMessageInfo(mi)
  1819. }
  1820. func (x *SosReportResponse) String() string {
  1821. return protoimpl.X.MessageStringOf(x)
  1822. }
  1823. func (*SosReportResponse) ProtoMessage() {}
  1824. func (x *SosReportResponse) ProtoReflect() protoreflect.Message {
  1825. mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[33]
  1826. if x != nil {
  1827. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1828. if ms.LoadMessageInfo() == nil {
  1829. ms.StoreMessageInfo(mi)
  1830. }
  1831. return ms
  1832. }
  1833. return mi.MessageOf(x)
  1834. }
  1835. // Deprecated: Use SosReportResponse.ProtoReflect.Descriptor instead.
  1836. func (*SosReportResponse) Descriptor() ([]byte, []int) {
  1837. return file_olivetin_api_v1_olivetin_proto_rawDescGZIP(), []int{33}
  1838. }
  1839. func (x *SosReportResponse) GetAlert() string {
  1840. if x != nil {
  1841. return x.Alert
  1842. }
  1843. return ""
  1844. }
  1845. type DumpVarsRequest struct {
  1846. state protoimpl.MessageState `protogen:"open.v1"`
  1847. unknownFields protoimpl.UnknownFields
  1848. sizeCache protoimpl.SizeCache
  1849. }
  1850. func (x *DumpVarsRequest) Reset() {
  1851. *x = DumpVarsRequest{}
  1852. mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[34]
  1853. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1854. ms.StoreMessageInfo(mi)
  1855. }
  1856. func (x *DumpVarsRequest) String() string {
  1857. return protoimpl.X.MessageStringOf(x)
  1858. }
  1859. func (*DumpVarsRequest) ProtoMessage() {}
  1860. func (x *DumpVarsRequest) ProtoReflect() protoreflect.Message {
  1861. mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[34]
  1862. if x != nil {
  1863. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1864. if ms.LoadMessageInfo() == nil {
  1865. ms.StoreMessageInfo(mi)
  1866. }
  1867. return ms
  1868. }
  1869. return mi.MessageOf(x)
  1870. }
  1871. // Deprecated: Use DumpVarsRequest.ProtoReflect.Descriptor instead.
  1872. func (*DumpVarsRequest) Descriptor() ([]byte, []int) {
  1873. return file_olivetin_api_v1_olivetin_proto_rawDescGZIP(), []int{34}
  1874. }
  1875. type DumpVarsResponse struct {
  1876. state protoimpl.MessageState `protogen:"open.v1"`
  1877. Alert string `protobuf:"bytes,1,opt,name=alert,proto3" json:"alert,omitempty"`
  1878. Contents map[string]string `protobuf:"bytes,2,rep,name=contents,proto3" json:"contents,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"`
  1879. unknownFields protoimpl.UnknownFields
  1880. sizeCache protoimpl.SizeCache
  1881. }
  1882. func (x *DumpVarsResponse) Reset() {
  1883. *x = DumpVarsResponse{}
  1884. mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[35]
  1885. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1886. ms.StoreMessageInfo(mi)
  1887. }
  1888. func (x *DumpVarsResponse) String() string {
  1889. return protoimpl.X.MessageStringOf(x)
  1890. }
  1891. func (*DumpVarsResponse) ProtoMessage() {}
  1892. func (x *DumpVarsResponse) ProtoReflect() protoreflect.Message {
  1893. mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[35]
  1894. if x != nil {
  1895. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1896. if ms.LoadMessageInfo() == nil {
  1897. ms.StoreMessageInfo(mi)
  1898. }
  1899. return ms
  1900. }
  1901. return mi.MessageOf(x)
  1902. }
  1903. // Deprecated: Use DumpVarsResponse.ProtoReflect.Descriptor instead.
  1904. func (*DumpVarsResponse) Descriptor() ([]byte, []int) {
  1905. return file_olivetin_api_v1_olivetin_proto_rawDescGZIP(), []int{35}
  1906. }
  1907. func (x *DumpVarsResponse) GetAlert() string {
  1908. if x != nil {
  1909. return x.Alert
  1910. }
  1911. return ""
  1912. }
  1913. func (x *DumpVarsResponse) GetContents() map[string]string {
  1914. if x != nil {
  1915. return x.Contents
  1916. }
  1917. return nil
  1918. }
  1919. type DebugBinding struct {
  1920. state protoimpl.MessageState `protogen:"open.v1"`
  1921. ActionTitle string `protobuf:"bytes,1,opt,name=action_title,json=actionTitle,proto3" json:"action_title,omitempty"`
  1922. EntityPrefix string `protobuf:"bytes,2,opt,name=entity_prefix,json=entityPrefix,proto3" json:"entity_prefix,omitempty"`
  1923. unknownFields protoimpl.UnknownFields
  1924. sizeCache protoimpl.SizeCache
  1925. }
  1926. func (x *DebugBinding) Reset() {
  1927. *x = DebugBinding{}
  1928. mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[36]
  1929. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1930. ms.StoreMessageInfo(mi)
  1931. }
  1932. func (x *DebugBinding) String() string {
  1933. return protoimpl.X.MessageStringOf(x)
  1934. }
  1935. func (*DebugBinding) ProtoMessage() {}
  1936. func (x *DebugBinding) ProtoReflect() protoreflect.Message {
  1937. mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[36]
  1938. if x != nil {
  1939. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1940. if ms.LoadMessageInfo() == nil {
  1941. ms.StoreMessageInfo(mi)
  1942. }
  1943. return ms
  1944. }
  1945. return mi.MessageOf(x)
  1946. }
  1947. // Deprecated: Use DebugBinding.ProtoReflect.Descriptor instead.
  1948. func (*DebugBinding) Descriptor() ([]byte, []int) {
  1949. return file_olivetin_api_v1_olivetin_proto_rawDescGZIP(), []int{36}
  1950. }
  1951. func (x *DebugBinding) GetActionTitle() string {
  1952. if x != nil {
  1953. return x.ActionTitle
  1954. }
  1955. return ""
  1956. }
  1957. func (x *DebugBinding) GetEntityPrefix() string {
  1958. if x != nil {
  1959. return x.EntityPrefix
  1960. }
  1961. return ""
  1962. }
  1963. type DumpPublicIdActionMapRequest struct {
  1964. state protoimpl.MessageState `protogen:"open.v1"`
  1965. unknownFields protoimpl.UnknownFields
  1966. sizeCache protoimpl.SizeCache
  1967. }
  1968. func (x *DumpPublicIdActionMapRequest) Reset() {
  1969. *x = DumpPublicIdActionMapRequest{}
  1970. mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[37]
  1971. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1972. ms.StoreMessageInfo(mi)
  1973. }
  1974. func (x *DumpPublicIdActionMapRequest) String() string {
  1975. return protoimpl.X.MessageStringOf(x)
  1976. }
  1977. func (*DumpPublicIdActionMapRequest) ProtoMessage() {}
  1978. func (x *DumpPublicIdActionMapRequest) ProtoReflect() protoreflect.Message {
  1979. mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[37]
  1980. if x != nil {
  1981. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1982. if ms.LoadMessageInfo() == nil {
  1983. ms.StoreMessageInfo(mi)
  1984. }
  1985. return ms
  1986. }
  1987. return mi.MessageOf(x)
  1988. }
  1989. // Deprecated: Use DumpPublicIdActionMapRequest.ProtoReflect.Descriptor instead.
  1990. func (*DumpPublicIdActionMapRequest) Descriptor() ([]byte, []int) {
  1991. return file_olivetin_api_v1_olivetin_proto_rawDescGZIP(), []int{37}
  1992. }
  1993. type DumpPublicIdActionMapResponse struct {
  1994. state protoimpl.MessageState `protogen:"open.v1"`
  1995. Alert string `protobuf:"bytes,1,opt,name=alert,proto3" json:"alert,omitempty"`
  1996. Contents map[string]*DebugBinding `protobuf:"bytes,2,rep,name=contents,proto3" json:"contents,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"`
  1997. unknownFields protoimpl.UnknownFields
  1998. sizeCache protoimpl.SizeCache
  1999. }
  2000. func (x *DumpPublicIdActionMapResponse) Reset() {
  2001. *x = DumpPublicIdActionMapResponse{}
  2002. mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[38]
  2003. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2004. ms.StoreMessageInfo(mi)
  2005. }
  2006. func (x *DumpPublicIdActionMapResponse) String() string {
  2007. return protoimpl.X.MessageStringOf(x)
  2008. }
  2009. func (*DumpPublicIdActionMapResponse) ProtoMessage() {}
  2010. func (x *DumpPublicIdActionMapResponse) ProtoReflect() protoreflect.Message {
  2011. mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[38]
  2012. if x != nil {
  2013. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2014. if ms.LoadMessageInfo() == nil {
  2015. ms.StoreMessageInfo(mi)
  2016. }
  2017. return ms
  2018. }
  2019. return mi.MessageOf(x)
  2020. }
  2021. // Deprecated: Use DumpPublicIdActionMapResponse.ProtoReflect.Descriptor instead.
  2022. func (*DumpPublicIdActionMapResponse) Descriptor() ([]byte, []int) {
  2023. return file_olivetin_api_v1_olivetin_proto_rawDescGZIP(), []int{38}
  2024. }
  2025. func (x *DumpPublicIdActionMapResponse) GetAlert() string {
  2026. if x != nil {
  2027. return x.Alert
  2028. }
  2029. return ""
  2030. }
  2031. func (x *DumpPublicIdActionMapResponse) GetContents() map[string]*DebugBinding {
  2032. if x != nil {
  2033. return x.Contents
  2034. }
  2035. return nil
  2036. }
  2037. type GetReadyzRequest struct {
  2038. state protoimpl.MessageState `protogen:"open.v1"`
  2039. unknownFields protoimpl.UnknownFields
  2040. sizeCache protoimpl.SizeCache
  2041. }
  2042. func (x *GetReadyzRequest) Reset() {
  2043. *x = GetReadyzRequest{}
  2044. mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[39]
  2045. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2046. ms.StoreMessageInfo(mi)
  2047. }
  2048. func (x *GetReadyzRequest) String() string {
  2049. return protoimpl.X.MessageStringOf(x)
  2050. }
  2051. func (*GetReadyzRequest) ProtoMessage() {}
  2052. func (x *GetReadyzRequest) ProtoReflect() protoreflect.Message {
  2053. mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[39]
  2054. if x != nil {
  2055. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2056. if ms.LoadMessageInfo() == nil {
  2057. ms.StoreMessageInfo(mi)
  2058. }
  2059. return ms
  2060. }
  2061. return mi.MessageOf(x)
  2062. }
  2063. // Deprecated: Use GetReadyzRequest.ProtoReflect.Descriptor instead.
  2064. func (*GetReadyzRequest) Descriptor() ([]byte, []int) {
  2065. return file_olivetin_api_v1_olivetin_proto_rawDescGZIP(), []int{39}
  2066. }
  2067. type GetReadyzResponse struct {
  2068. state protoimpl.MessageState `protogen:"open.v1"`
  2069. Status string `protobuf:"bytes,1,opt,name=status,proto3" json:"status,omitempty"`
  2070. unknownFields protoimpl.UnknownFields
  2071. sizeCache protoimpl.SizeCache
  2072. }
  2073. func (x *GetReadyzResponse) Reset() {
  2074. *x = GetReadyzResponse{}
  2075. mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[40]
  2076. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2077. ms.StoreMessageInfo(mi)
  2078. }
  2079. func (x *GetReadyzResponse) String() string {
  2080. return protoimpl.X.MessageStringOf(x)
  2081. }
  2082. func (*GetReadyzResponse) ProtoMessage() {}
  2083. func (x *GetReadyzResponse) ProtoReflect() protoreflect.Message {
  2084. mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[40]
  2085. if x != nil {
  2086. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2087. if ms.LoadMessageInfo() == nil {
  2088. ms.StoreMessageInfo(mi)
  2089. }
  2090. return ms
  2091. }
  2092. return mi.MessageOf(x)
  2093. }
  2094. // Deprecated: Use GetReadyzResponse.ProtoReflect.Descriptor instead.
  2095. func (*GetReadyzResponse) Descriptor() ([]byte, []int) {
  2096. return file_olivetin_api_v1_olivetin_proto_rawDescGZIP(), []int{40}
  2097. }
  2098. func (x *GetReadyzResponse) GetStatus() string {
  2099. if x != nil {
  2100. return x.Status
  2101. }
  2102. return ""
  2103. }
  2104. type EventStreamRequest struct {
  2105. state protoimpl.MessageState `protogen:"open.v1"`
  2106. unknownFields protoimpl.UnknownFields
  2107. sizeCache protoimpl.SizeCache
  2108. }
  2109. func (x *EventStreamRequest) Reset() {
  2110. *x = EventStreamRequest{}
  2111. mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[41]
  2112. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2113. ms.StoreMessageInfo(mi)
  2114. }
  2115. func (x *EventStreamRequest) String() string {
  2116. return protoimpl.X.MessageStringOf(x)
  2117. }
  2118. func (*EventStreamRequest) ProtoMessage() {}
  2119. func (x *EventStreamRequest) ProtoReflect() protoreflect.Message {
  2120. mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[41]
  2121. if x != nil {
  2122. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2123. if ms.LoadMessageInfo() == nil {
  2124. ms.StoreMessageInfo(mi)
  2125. }
  2126. return ms
  2127. }
  2128. return mi.MessageOf(x)
  2129. }
  2130. // Deprecated: Use EventStreamRequest.ProtoReflect.Descriptor instead.
  2131. func (*EventStreamRequest) Descriptor() ([]byte, []int) {
  2132. return file_olivetin_api_v1_olivetin_proto_rawDescGZIP(), []int{41}
  2133. }
  2134. type EventStreamResponse struct {
  2135. state protoimpl.MessageState `protogen:"open.v1"`
  2136. // Types that are valid to be assigned to Event:
  2137. //
  2138. // *EventStreamResponse_EntityChanged
  2139. // *EventStreamResponse_ConfigChanged
  2140. // *EventStreamResponse_ExecutionFinished
  2141. // *EventStreamResponse_ExecutionStarted
  2142. // *EventStreamResponse_OutputChunk
  2143. Event isEventStreamResponse_Event `protobuf_oneof:"event"`
  2144. unknownFields protoimpl.UnknownFields
  2145. sizeCache protoimpl.SizeCache
  2146. }
  2147. func (x *EventStreamResponse) Reset() {
  2148. *x = EventStreamResponse{}
  2149. mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[42]
  2150. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2151. ms.StoreMessageInfo(mi)
  2152. }
  2153. func (x *EventStreamResponse) String() string {
  2154. return protoimpl.X.MessageStringOf(x)
  2155. }
  2156. func (*EventStreamResponse) ProtoMessage() {}
  2157. func (x *EventStreamResponse) ProtoReflect() protoreflect.Message {
  2158. mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[42]
  2159. if x != nil {
  2160. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2161. if ms.LoadMessageInfo() == nil {
  2162. ms.StoreMessageInfo(mi)
  2163. }
  2164. return ms
  2165. }
  2166. return mi.MessageOf(x)
  2167. }
  2168. // Deprecated: Use EventStreamResponse.ProtoReflect.Descriptor instead.
  2169. func (*EventStreamResponse) Descriptor() ([]byte, []int) {
  2170. return file_olivetin_api_v1_olivetin_proto_rawDescGZIP(), []int{42}
  2171. }
  2172. func (x *EventStreamResponse) GetEvent() isEventStreamResponse_Event {
  2173. if x != nil {
  2174. return x.Event
  2175. }
  2176. return nil
  2177. }
  2178. func (x *EventStreamResponse) GetEntityChanged() *EventEntityChanged {
  2179. if x != nil {
  2180. if x, ok := x.Event.(*EventStreamResponse_EntityChanged); ok {
  2181. return x.EntityChanged
  2182. }
  2183. }
  2184. return nil
  2185. }
  2186. func (x *EventStreamResponse) GetConfigChanged() *EventConfigChanged {
  2187. if x != nil {
  2188. if x, ok := x.Event.(*EventStreamResponse_ConfigChanged); ok {
  2189. return x.ConfigChanged
  2190. }
  2191. }
  2192. return nil
  2193. }
  2194. func (x *EventStreamResponse) GetExecutionFinished() *EventExecutionFinished {
  2195. if x != nil {
  2196. if x, ok := x.Event.(*EventStreamResponse_ExecutionFinished); ok {
  2197. return x.ExecutionFinished
  2198. }
  2199. }
  2200. return nil
  2201. }
  2202. func (x *EventStreamResponse) GetExecutionStarted() *EventExecutionStarted {
  2203. if x != nil {
  2204. if x, ok := x.Event.(*EventStreamResponse_ExecutionStarted); ok {
  2205. return x.ExecutionStarted
  2206. }
  2207. }
  2208. return nil
  2209. }
  2210. func (x *EventStreamResponse) GetOutputChunk() *EventOutputChunk {
  2211. if x != nil {
  2212. if x, ok := x.Event.(*EventStreamResponse_OutputChunk); ok {
  2213. return x.OutputChunk
  2214. }
  2215. }
  2216. return nil
  2217. }
  2218. type isEventStreamResponse_Event interface {
  2219. isEventStreamResponse_Event()
  2220. }
  2221. type EventStreamResponse_EntityChanged struct {
  2222. EntityChanged *EventEntityChanged `protobuf:"bytes,2,opt,name=entity_changed,json=entityChanged,proto3,oneof"`
  2223. }
  2224. type EventStreamResponse_ConfigChanged struct {
  2225. ConfigChanged *EventConfigChanged `protobuf:"bytes,3,opt,name=config_changed,json=configChanged,proto3,oneof"`
  2226. }
  2227. type EventStreamResponse_ExecutionFinished struct {
  2228. ExecutionFinished *EventExecutionFinished `protobuf:"bytes,4,opt,name=execution_finished,json=executionFinished,proto3,oneof"`
  2229. }
  2230. type EventStreamResponse_ExecutionStarted struct {
  2231. ExecutionStarted *EventExecutionStarted `protobuf:"bytes,5,opt,name=execution_started,json=executionStarted,proto3,oneof"`
  2232. }
  2233. type EventStreamResponse_OutputChunk struct {
  2234. OutputChunk *EventOutputChunk `protobuf:"bytes,6,opt,name=output_chunk,json=outputChunk,proto3,oneof"`
  2235. }
  2236. func (*EventStreamResponse_EntityChanged) isEventStreamResponse_Event() {}
  2237. func (*EventStreamResponse_ConfigChanged) isEventStreamResponse_Event() {}
  2238. func (*EventStreamResponse_ExecutionFinished) isEventStreamResponse_Event() {}
  2239. func (*EventStreamResponse_ExecutionStarted) isEventStreamResponse_Event() {}
  2240. func (*EventStreamResponse_OutputChunk) isEventStreamResponse_Event() {}
  2241. type EventOutputChunk struct {
  2242. state protoimpl.MessageState `protogen:"open.v1"`
  2243. ExecutionTrackingId string `protobuf:"bytes,1,opt,name=execution_tracking_id,json=executionTrackingId,proto3" json:"execution_tracking_id,omitempty"`
  2244. Output string `protobuf:"bytes,2,opt,name=output,proto3" json:"output,omitempty"`
  2245. unknownFields protoimpl.UnknownFields
  2246. sizeCache protoimpl.SizeCache
  2247. }
  2248. func (x *EventOutputChunk) Reset() {
  2249. *x = EventOutputChunk{}
  2250. mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[43]
  2251. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2252. ms.StoreMessageInfo(mi)
  2253. }
  2254. func (x *EventOutputChunk) String() string {
  2255. return protoimpl.X.MessageStringOf(x)
  2256. }
  2257. func (*EventOutputChunk) ProtoMessage() {}
  2258. func (x *EventOutputChunk) ProtoReflect() protoreflect.Message {
  2259. mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[43]
  2260. if x != nil {
  2261. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2262. if ms.LoadMessageInfo() == nil {
  2263. ms.StoreMessageInfo(mi)
  2264. }
  2265. return ms
  2266. }
  2267. return mi.MessageOf(x)
  2268. }
  2269. // Deprecated: Use EventOutputChunk.ProtoReflect.Descriptor instead.
  2270. func (*EventOutputChunk) Descriptor() ([]byte, []int) {
  2271. return file_olivetin_api_v1_olivetin_proto_rawDescGZIP(), []int{43}
  2272. }
  2273. func (x *EventOutputChunk) GetExecutionTrackingId() string {
  2274. if x != nil {
  2275. return x.ExecutionTrackingId
  2276. }
  2277. return ""
  2278. }
  2279. func (x *EventOutputChunk) GetOutput() string {
  2280. if x != nil {
  2281. return x.Output
  2282. }
  2283. return ""
  2284. }
  2285. type EventEntityChanged struct {
  2286. state protoimpl.MessageState `protogen:"open.v1"`
  2287. unknownFields protoimpl.UnknownFields
  2288. sizeCache protoimpl.SizeCache
  2289. }
  2290. func (x *EventEntityChanged) Reset() {
  2291. *x = EventEntityChanged{}
  2292. mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[44]
  2293. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2294. ms.StoreMessageInfo(mi)
  2295. }
  2296. func (x *EventEntityChanged) String() string {
  2297. return protoimpl.X.MessageStringOf(x)
  2298. }
  2299. func (*EventEntityChanged) ProtoMessage() {}
  2300. func (x *EventEntityChanged) ProtoReflect() protoreflect.Message {
  2301. mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[44]
  2302. if x != nil {
  2303. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2304. if ms.LoadMessageInfo() == nil {
  2305. ms.StoreMessageInfo(mi)
  2306. }
  2307. return ms
  2308. }
  2309. return mi.MessageOf(x)
  2310. }
  2311. // Deprecated: Use EventEntityChanged.ProtoReflect.Descriptor instead.
  2312. func (*EventEntityChanged) Descriptor() ([]byte, []int) {
  2313. return file_olivetin_api_v1_olivetin_proto_rawDescGZIP(), []int{44}
  2314. }
  2315. type EventConfigChanged struct {
  2316. state protoimpl.MessageState `protogen:"open.v1"`
  2317. unknownFields protoimpl.UnknownFields
  2318. sizeCache protoimpl.SizeCache
  2319. }
  2320. func (x *EventConfigChanged) Reset() {
  2321. *x = EventConfigChanged{}
  2322. mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[45]
  2323. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2324. ms.StoreMessageInfo(mi)
  2325. }
  2326. func (x *EventConfigChanged) String() string {
  2327. return protoimpl.X.MessageStringOf(x)
  2328. }
  2329. func (*EventConfigChanged) ProtoMessage() {}
  2330. func (x *EventConfigChanged) ProtoReflect() protoreflect.Message {
  2331. mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[45]
  2332. if x != nil {
  2333. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2334. if ms.LoadMessageInfo() == nil {
  2335. ms.StoreMessageInfo(mi)
  2336. }
  2337. return ms
  2338. }
  2339. return mi.MessageOf(x)
  2340. }
  2341. // Deprecated: Use EventConfigChanged.ProtoReflect.Descriptor instead.
  2342. func (*EventConfigChanged) Descriptor() ([]byte, []int) {
  2343. return file_olivetin_api_v1_olivetin_proto_rawDescGZIP(), []int{45}
  2344. }
  2345. type EventExecutionFinished struct {
  2346. state protoimpl.MessageState `protogen:"open.v1"`
  2347. LogEntry *LogEntry `protobuf:"bytes,1,opt,name=log_entry,json=logEntry,proto3" json:"log_entry,omitempty"`
  2348. unknownFields protoimpl.UnknownFields
  2349. sizeCache protoimpl.SizeCache
  2350. }
  2351. func (x *EventExecutionFinished) Reset() {
  2352. *x = EventExecutionFinished{}
  2353. mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[46]
  2354. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2355. ms.StoreMessageInfo(mi)
  2356. }
  2357. func (x *EventExecutionFinished) String() string {
  2358. return protoimpl.X.MessageStringOf(x)
  2359. }
  2360. func (*EventExecutionFinished) ProtoMessage() {}
  2361. func (x *EventExecutionFinished) ProtoReflect() protoreflect.Message {
  2362. mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[46]
  2363. if x != nil {
  2364. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2365. if ms.LoadMessageInfo() == nil {
  2366. ms.StoreMessageInfo(mi)
  2367. }
  2368. return ms
  2369. }
  2370. return mi.MessageOf(x)
  2371. }
  2372. // Deprecated: Use EventExecutionFinished.ProtoReflect.Descriptor instead.
  2373. func (*EventExecutionFinished) Descriptor() ([]byte, []int) {
  2374. return file_olivetin_api_v1_olivetin_proto_rawDescGZIP(), []int{46}
  2375. }
  2376. func (x *EventExecutionFinished) GetLogEntry() *LogEntry {
  2377. if x != nil {
  2378. return x.LogEntry
  2379. }
  2380. return nil
  2381. }
  2382. type EventExecutionStarted struct {
  2383. state protoimpl.MessageState `protogen:"open.v1"`
  2384. LogEntry *LogEntry `protobuf:"bytes,1,opt,name=log_entry,json=logEntry,proto3" json:"log_entry,omitempty"`
  2385. unknownFields protoimpl.UnknownFields
  2386. sizeCache protoimpl.SizeCache
  2387. }
  2388. func (x *EventExecutionStarted) Reset() {
  2389. *x = EventExecutionStarted{}
  2390. mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[47]
  2391. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2392. ms.StoreMessageInfo(mi)
  2393. }
  2394. func (x *EventExecutionStarted) String() string {
  2395. return protoimpl.X.MessageStringOf(x)
  2396. }
  2397. func (*EventExecutionStarted) ProtoMessage() {}
  2398. func (x *EventExecutionStarted) ProtoReflect() protoreflect.Message {
  2399. mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[47]
  2400. if x != nil {
  2401. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2402. if ms.LoadMessageInfo() == nil {
  2403. ms.StoreMessageInfo(mi)
  2404. }
  2405. return ms
  2406. }
  2407. return mi.MessageOf(x)
  2408. }
  2409. // Deprecated: Use EventExecutionStarted.ProtoReflect.Descriptor instead.
  2410. func (*EventExecutionStarted) Descriptor() ([]byte, []int) {
  2411. return file_olivetin_api_v1_olivetin_proto_rawDescGZIP(), []int{47}
  2412. }
  2413. func (x *EventExecutionStarted) GetLogEntry() *LogEntry {
  2414. if x != nil {
  2415. return x.LogEntry
  2416. }
  2417. return nil
  2418. }
  2419. type KillActionRequest struct {
  2420. state protoimpl.MessageState `protogen:"open.v1"`
  2421. ExecutionTrackingId string `protobuf:"bytes,1,opt,name=execution_tracking_id,json=executionTrackingId,proto3" json:"execution_tracking_id,omitempty"`
  2422. unknownFields protoimpl.UnknownFields
  2423. sizeCache protoimpl.SizeCache
  2424. }
  2425. func (x *KillActionRequest) Reset() {
  2426. *x = KillActionRequest{}
  2427. mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[48]
  2428. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2429. ms.StoreMessageInfo(mi)
  2430. }
  2431. func (x *KillActionRequest) String() string {
  2432. return protoimpl.X.MessageStringOf(x)
  2433. }
  2434. func (*KillActionRequest) ProtoMessage() {}
  2435. func (x *KillActionRequest) ProtoReflect() protoreflect.Message {
  2436. mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[48]
  2437. if x != nil {
  2438. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2439. if ms.LoadMessageInfo() == nil {
  2440. ms.StoreMessageInfo(mi)
  2441. }
  2442. return ms
  2443. }
  2444. return mi.MessageOf(x)
  2445. }
  2446. // Deprecated: Use KillActionRequest.ProtoReflect.Descriptor instead.
  2447. func (*KillActionRequest) Descriptor() ([]byte, []int) {
  2448. return file_olivetin_api_v1_olivetin_proto_rawDescGZIP(), []int{48}
  2449. }
  2450. func (x *KillActionRequest) GetExecutionTrackingId() string {
  2451. if x != nil {
  2452. return x.ExecutionTrackingId
  2453. }
  2454. return ""
  2455. }
  2456. type KillActionResponse struct {
  2457. state protoimpl.MessageState `protogen:"open.v1"`
  2458. ExecutionTrackingId string `protobuf:"bytes,1,opt,name=execution_tracking_id,json=executionTrackingId,proto3" json:"execution_tracking_id,omitempty"`
  2459. Killed bool `protobuf:"varint,2,opt,name=killed,proto3" json:"killed,omitempty"`
  2460. AlreadyCompleted bool `protobuf:"varint,3,opt,name=already_completed,json=alreadyCompleted,proto3" json:"already_completed,omitempty"`
  2461. Found bool `protobuf:"varint,4,opt,name=found,proto3" json:"found,omitempty"`
  2462. unknownFields protoimpl.UnknownFields
  2463. sizeCache protoimpl.SizeCache
  2464. }
  2465. func (x *KillActionResponse) Reset() {
  2466. *x = KillActionResponse{}
  2467. mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[49]
  2468. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2469. ms.StoreMessageInfo(mi)
  2470. }
  2471. func (x *KillActionResponse) String() string {
  2472. return protoimpl.X.MessageStringOf(x)
  2473. }
  2474. func (*KillActionResponse) ProtoMessage() {}
  2475. func (x *KillActionResponse) ProtoReflect() protoreflect.Message {
  2476. mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[49]
  2477. if x != nil {
  2478. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2479. if ms.LoadMessageInfo() == nil {
  2480. ms.StoreMessageInfo(mi)
  2481. }
  2482. return ms
  2483. }
  2484. return mi.MessageOf(x)
  2485. }
  2486. // Deprecated: Use KillActionResponse.ProtoReflect.Descriptor instead.
  2487. func (*KillActionResponse) Descriptor() ([]byte, []int) {
  2488. return file_olivetin_api_v1_olivetin_proto_rawDescGZIP(), []int{49}
  2489. }
  2490. func (x *KillActionResponse) GetExecutionTrackingId() string {
  2491. if x != nil {
  2492. return x.ExecutionTrackingId
  2493. }
  2494. return ""
  2495. }
  2496. func (x *KillActionResponse) GetKilled() bool {
  2497. if x != nil {
  2498. return x.Killed
  2499. }
  2500. return false
  2501. }
  2502. func (x *KillActionResponse) GetAlreadyCompleted() bool {
  2503. if x != nil {
  2504. return x.AlreadyCompleted
  2505. }
  2506. return false
  2507. }
  2508. func (x *KillActionResponse) GetFound() bool {
  2509. if x != nil {
  2510. return x.Found
  2511. }
  2512. return false
  2513. }
  2514. type LocalUserLoginRequest struct {
  2515. state protoimpl.MessageState `protogen:"open.v1"`
  2516. Username string `protobuf:"bytes,1,opt,name=username,proto3" json:"username,omitempty"`
  2517. Password string `protobuf:"bytes,2,opt,name=password,proto3" json:"password,omitempty"`
  2518. unknownFields protoimpl.UnknownFields
  2519. sizeCache protoimpl.SizeCache
  2520. }
  2521. func (x *LocalUserLoginRequest) Reset() {
  2522. *x = LocalUserLoginRequest{}
  2523. mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[50]
  2524. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2525. ms.StoreMessageInfo(mi)
  2526. }
  2527. func (x *LocalUserLoginRequest) String() string {
  2528. return protoimpl.X.MessageStringOf(x)
  2529. }
  2530. func (*LocalUserLoginRequest) ProtoMessage() {}
  2531. func (x *LocalUserLoginRequest) ProtoReflect() protoreflect.Message {
  2532. mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[50]
  2533. if x != nil {
  2534. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2535. if ms.LoadMessageInfo() == nil {
  2536. ms.StoreMessageInfo(mi)
  2537. }
  2538. return ms
  2539. }
  2540. return mi.MessageOf(x)
  2541. }
  2542. // Deprecated: Use LocalUserLoginRequest.ProtoReflect.Descriptor instead.
  2543. func (*LocalUserLoginRequest) Descriptor() ([]byte, []int) {
  2544. return file_olivetin_api_v1_olivetin_proto_rawDescGZIP(), []int{50}
  2545. }
  2546. func (x *LocalUserLoginRequest) GetUsername() string {
  2547. if x != nil {
  2548. return x.Username
  2549. }
  2550. return ""
  2551. }
  2552. func (x *LocalUserLoginRequest) GetPassword() string {
  2553. if x != nil {
  2554. return x.Password
  2555. }
  2556. return ""
  2557. }
  2558. type LocalUserLoginResponse struct {
  2559. state protoimpl.MessageState `protogen:"open.v1"`
  2560. Success bool `protobuf:"varint,1,opt,name=success,proto3" json:"success,omitempty"`
  2561. unknownFields protoimpl.UnknownFields
  2562. sizeCache protoimpl.SizeCache
  2563. }
  2564. func (x *LocalUserLoginResponse) Reset() {
  2565. *x = LocalUserLoginResponse{}
  2566. mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[51]
  2567. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2568. ms.StoreMessageInfo(mi)
  2569. }
  2570. func (x *LocalUserLoginResponse) String() string {
  2571. return protoimpl.X.MessageStringOf(x)
  2572. }
  2573. func (*LocalUserLoginResponse) ProtoMessage() {}
  2574. func (x *LocalUserLoginResponse) ProtoReflect() protoreflect.Message {
  2575. mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[51]
  2576. if x != nil {
  2577. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2578. if ms.LoadMessageInfo() == nil {
  2579. ms.StoreMessageInfo(mi)
  2580. }
  2581. return ms
  2582. }
  2583. return mi.MessageOf(x)
  2584. }
  2585. // Deprecated: Use LocalUserLoginResponse.ProtoReflect.Descriptor instead.
  2586. func (*LocalUserLoginResponse) Descriptor() ([]byte, []int) {
  2587. return file_olivetin_api_v1_olivetin_proto_rawDescGZIP(), []int{51}
  2588. }
  2589. func (x *LocalUserLoginResponse) GetSuccess() bool {
  2590. if x != nil {
  2591. return x.Success
  2592. }
  2593. return false
  2594. }
  2595. type PasswordHashRequest struct {
  2596. state protoimpl.MessageState `protogen:"open.v1"`
  2597. Password string `protobuf:"bytes,1,opt,name=password,proto3" json:"password,omitempty"`
  2598. unknownFields protoimpl.UnknownFields
  2599. sizeCache protoimpl.SizeCache
  2600. }
  2601. func (x *PasswordHashRequest) Reset() {
  2602. *x = PasswordHashRequest{}
  2603. mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[52]
  2604. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2605. ms.StoreMessageInfo(mi)
  2606. }
  2607. func (x *PasswordHashRequest) String() string {
  2608. return protoimpl.X.MessageStringOf(x)
  2609. }
  2610. func (*PasswordHashRequest) ProtoMessage() {}
  2611. func (x *PasswordHashRequest) ProtoReflect() protoreflect.Message {
  2612. mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[52]
  2613. if x != nil {
  2614. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2615. if ms.LoadMessageInfo() == nil {
  2616. ms.StoreMessageInfo(mi)
  2617. }
  2618. return ms
  2619. }
  2620. return mi.MessageOf(x)
  2621. }
  2622. // Deprecated: Use PasswordHashRequest.ProtoReflect.Descriptor instead.
  2623. func (*PasswordHashRequest) Descriptor() ([]byte, []int) {
  2624. return file_olivetin_api_v1_olivetin_proto_rawDescGZIP(), []int{52}
  2625. }
  2626. func (x *PasswordHashRequest) GetPassword() string {
  2627. if x != nil {
  2628. return x.Password
  2629. }
  2630. return ""
  2631. }
  2632. type PasswordHashResponse struct {
  2633. state protoimpl.MessageState `protogen:"open.v1"`
  2634. Hash string `protobuf:"bytes,1,opt,name=hash,proto3" json:"hash,omitempty"`
  2635. unknownFields protoimpl.UnknownFields
  2636. sizeCache protoimpl.SizeCache
  2637. }
  2638. func (x *PasswordHashResponse) Reset() {
  2639. *x = PasswordHashResponse{}
  2640. mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[53]
  2641. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2642. ms.StoreMessageInfo(mi)
  2643. }
  2644. func (x *PasswordHashResponse) String() string {
  2645. return protoimpl.X.MessageStringOf(x)
  2646. }
  2647. func (*PasswordHashResponse) ProtoMessage() {}
  2648. func (x *PasswordHashResponse) ProtoReflect() protoreflect.Message {
  2649. mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[53]
  2650. if x != nil {
  2651. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2652. if ms.LoadMessageInfo() == nil {
  2653. ms.StoreMessageInfo(mi)
  2654. }
  2655. return ms
  2656. }
  2657. return mi.MessageOf(x)
  2658. }
  2659. // Deprecated: Use PasswordHashResponse.ProtoReflect.Descriptor instead.
  2660. func (*PasswordHashResponse) Descriptor() ([]byte, []int) {
  2661. return file_olivetin_api_v1_olivetin_proto_rawDescGZIP(), []int{53}
  2662. }
  2663. func (x *PasswordHashResponse) GetHash() string {
  2664. if x != nil {
  2665. return x.Hash
  2666. }
  2667. return ""
  2668. }
  2669. type LogoutRequest struct {
  2670. state protoimpl.MessageState `protogen:"open.v1"`
  2671. unknownFields protoimpl.UnknownFields
  2672. sizeCache protoimpl.SizeCache
  2673. }
  2674. func (x *LogoutRequest) Reset() {
  2675. *x = LogoutRequest{}
  2676. mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[54]
  2677. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2678. ms.StoreMessageInfo(mi)
  2679. }
  2680. func (x *LogoutRequest) String() string {
  2681. return protoimpl.X.MessageStringOf(x)
  2682. }
  2683. func (*LogoutRequest) ProtoMessage() {}
  2684. func (x *LogoutRequest) ProtoReflect() protoreflect.Message {
  2685. mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[54]
  2686. if x != nil {
  2687. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2688. if ms.LoadMessageInfo() == nil {
  2689. ms.StoreMessageInfo(mi)
  2690. }
  2691. return ms
  2692. }
  2693. return mi.MessageOf(x)
  2694. }
  2695. // Deprecated: Use LogoutRequest.ProtoReflect.Descriptor instead.
  2696. func (*LogoutRequest) Descriptor() ([]byte, []int) {
  2697. return file_olivetin_api_v1_olivetin_proto_rawDescGZIP(), []int{54}
  2698. }
  2699. type LogoutResponse struct {
  2700. state protoimpl.MessageState `protogen:"open.v1"`
  2701. unknownFields protoimpl.UnknownFields
  2702. sizeCache protoimpl.SizeCache
  2703. }
  2704. func (x *LogoutResponse) Reset() {
  2705. *x = LogoutResponse{}
  2706. mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[55]
  2707. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2708. ms.StoreMessageInfo(mi)
  2709. }
  2710. func (x *LogoutResponse) String() string {
  2711. return protoimpl.X.MessageStringOf(x)
  2712. }
  2713. func (*LogoutResponse) ProtoMessage() {}
  2714. func (x *LogoutResponse) ProtoReflect() protoreflect.Message {
  2715. mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[55]
  2716. if x != nil {
  2717. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2718. if ms.LoadMessageInfo() == nil {
  2719. ms.StoreMessageInfo(mi)
  2720. }
  2721. return ms
  2722. }
  2723. return mi.MessageOf(x)
  2724. }
  2725. // Deprecated: Use LogoutResponse.ProtoReflect.Descriptor instead.
  2726. func (*LogoutResponse) Descriptor() ([]byte, []int) {
  2727. return file_olivetin_api_v1_olivetin_proto_rawDescGZIP(), []int{55}
  2728. }
  2729. type GetDiagnosticsRequest struct {
  2730. state protoimpl.MessageState `protogen:"open.v1"`
  2731. unknownFields protoimpl.UnknownFields
  2732. sizeCache protoimpl.SizeCache
  2733. }
  2734. func (x *GetDiagnosticsRequest) Reset() {
  2735. *x = GetDiagnosticsRequest{}
  2736. mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[56]
  2737. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2738. ms.StoreMessageInfo(mi)
  2739. }
  2740. func (x *GetDiagnosticsRequest) String() string {
  2741. return protoimpl.X.MessageStringOf(x)
  2742. }
  2743. func (*GetDiagnosticsRequest) ProtoMessage() {}
  2744. func (x *GetDiagnosticsRequest) ProtoReflect() protoreflect.Message {
  2745. mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[56]
  2746. if x != nil {
  2747. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2748. if ms.LoadMessageInfo() == nil {
  2749. ms.StoreMessageInfo(mi)
  2750. }
  2751. return ms
  2752. }
  2753. return mi.MessageOf(x)
  2754. }
  2755. // Deprecated: Use GetDiagnosticsRequest.ProtoReflect.Descriptor instead.
  2756. func (*GetDiagnosticsRequest) Descriptor() ([]byte, []int) {
  2757. return file_olivetin_api_v1_olivetin_proto_rawDescGZIP(), []int{56}
  2758. }
  2759. type GetDiagnosticsResponse struct {
  2760. state protoimpl.MessageState `protogen:"open.v1"`
  2761. SshFoundKey string `protobuf:"bytes,1,opt,name=SshFoundKey,proto3" json:"SshFoundKey,omitempty"`
  2762. SshFoundConfig string `protobuf:"bytes,2,opt,name=SshFoundConfig,proto3" json:"SshFoundConfig,omitempty"`
  2763. unknownFields protoimpl.UnknownFields
  2764. sizeCache protoimpl.SizeCache
  2765. }
  2766. func (x *GetDiagnosticsResponse) Reset() {
  2767. *x = GetDiagnosticsResponse{}
  2768. mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[57]
  2769. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2770. ms.StoreMessageInfo(mi)
  2771. }
  2772. func (x *GetDiagnosticsResponse) String() string {
  2773. return protoimpl.X.MessageStringOf(x)
  2774. }
  2775. func (*GetDiagnosticsResponse) ProtoMessage() {}
  2776. func (x *GetDiagnosticsResponse) ProtoReflect() protoreflect.Message {
  2777. mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[57]
  2778. if x != nil {
  2779. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2780. if ms.LoadMessageInfo() == nil {
  2781. ms.StoreMessageInfo(mi)
  2782. }
  2783. return ms
  2784. }
  2785. return mi.MessageOf(x)
  2786. }
  2787. // Deprecated: Use GetDiagnosticsResponse.ProtoReflect.Descriptor instead.
  2788. func (*GetDiagnosticsResponse) Descriptor() ([]byte, []int) {
  2789. return file_olivetin_api_v1_olivetin_proto_rawDescGZIP(), []int{57}
  2790. }
  2791. func (x *GetDiagnosticsResponse) GetSshFoundKey() string {
  2792. if x != nil {
  2793. return x.SshFoundKey
  2794. }
  2795. return ""
  2796. }
  2797. func (x *GetDiagnosticsResponse) GetSshFoundConfig() string {
  2798. if x != nil {
  2799. return x.SshFoundConfig
  2800. }
  2801. return ""
  2802. }
  2803. type InitRequest struct {
  2804. state protoimpl.MessageState `protogen:"open.v1"`
  2805. unknownFields protoimpl.UnknownFields
  2806. sizeCache protoimpl.SizeCache
  2807. }
  2808. func (x *InitRequest) Reset() {
  2809. *x = InitRequest{}
  2810. mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[58]
  2811. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2812. ms.StoreMessageInfo(mi)
  2813. }
  2814. func (x *InitRequest) String() string {
  2815. return protoimpl.X.MessageStringOf(x)
  2816. }
  2817. func (*InitRequest) ProtoMessage() {}
  2818. func (x *InitRequest) ProtoReflect() protoreflect.Message {
  2819. mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[58]
  2820. if x != nil {
  2821. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2822. if ms.LoadMessageInfo() == nil {
  2823. ms.StoreMessageInfo(mi)
  2824. }
  2825. return ms
  2826. }
  2827. return mi.MessageOf(x)
  2828. }
  2829. // Deprecated: Use InitRequest.ProtoReflect.Descriptor instead.
  2830. func (*InitRequest) Descriptor() ([]byte, []int) {
  2831. return file_olivetin_api_v1_olivetin_proto_rawDescGZIP(), []int{58}
  2832. }
  2833. type InitResponse struct {
  2834. state protoimpl.MessageState `protogen:"open.v1"`
  2835. ShowFooter bool `protobuf:"varint,1,opt,name=showFooter,proto3" json:"showFooter,omitempty"`
  2836. ShowNavigation bool `protobuf:"varint,2,opt,name=showNavigation,proto3" json:"showNavigation,omitempty"`
  2837. ShowNewVersions bool `protobuf:"varint,3,opt,name=showNewVersions,proto3" json:"showNewVersions,omitempty"`
  2838. AvailableVersion string `protobuf:"bytes,4,opt,name=availableVersion,proto3" json:"availableVersion,omitempty"`
  2839. CurrentVersion string `protobuf:"bytes,5,opt,name=currentVersion,proto3" json:"currentVersion,omitempty"`
  2840. PageTitle string `protobuf:"bytes,6,opt,name=pageTitle,proto3" json:"pageTitle,omitempty"`
  2841. SectionNavigationStyle string `protobuf:"bytes,7,opt,name=sectionNavigationStyle,proto3" json:"sectionNavigationStyle,omitempty"`
  2842. DefaultIconForBack string `protobuf:"bytes,8,opt,name=defaultIconForBack,proto3" json:"defaultIconForBack,omitempty"`
  2843. EnableCustomJs bool `protobuf:"varint,9,opt,name=enableCustomJs,proto3" json:"enableCustomJs,omitempty"`
  2844. AuthLoginUrl string `protobuf:"bytes,10,opt,name=authLoginUrl,proto3" json:"authLoginUrl,omitempty"`
  2845. AuthLocalLogin bool `protobuf:"varint,11,opt,name=authLocalLogin,proto3" json:"authLocalLogin,omitempty"`
  2846. StyleMods []string `protobuf:"bytes,12,rep,name=styleMods,proto3" json:"styleMods,omitempty"`
  2847. OAuth2Providers []*OAuth2Provider `protobuf:"bytes,13,rep,name=oAuth2Providers,proto3" json:"oAuth2Providers,omitempty"`
  2848. AdditionalLinks []*AdditionalLink `protobuf:"bytes,14,rep,name=additionalLinks,proto3" json:"additionalLinks,omitempty"`
  2849. RootDashboards []string `protobuf:"bytes,15,rep,name=rootDashboards,proto3" json:"rootDashboards,omitempty"`
  2850. AuthenticatedUser string `protobuf:"bytes,16,opt,name=authenticated_user,json=authenticatedUser,proto3" json:"authenticated_user,omitempty"`
  2851. AuthenticatedUserProvider string `protobuf:"bytes,17,opt,name=authenticated_user_provider,json=authenticatedUserProvider,proto3" json:"authenticated_user_provider,omitempty"`
  2852. EffectivePolicy *EffectivePolicy `protobuf:"bytes,18,opt,name=effective_policy,json=effectivePolicy,proto3" json:"effective_policy,omitempty"`
  2853. BannerMessage string `protobuf:"bytes,19,opt,name=banner_message,json=bannerMessage,proto3" json:"banner_message,omitempty"`
  2854. BannerCss string `protobuf:"bytes,20,opt,name=banner_css,json=bannerCss,proto3" json:"banner_css,omitempty"`
  2855. ShowDiagnostics bool `protobuf:"varint,21,opt,name=show_diagnostics,json=showDiagnostics,proto3" json:"show_diagnostics,omitempty"`
  2856. ShowLogList bool `protobuf:"varint,22,opt,name=show_log_list,json=showLogList,proto3" json:"show_log_list,omitempty"`
  2857. LoginRequired bool `protobuf:"varint,23,opt,name=login_required,json=loginRequired,proto3" json:"login_required,omitempty"`
  2858. AvailableThemes []string `protobuf:"bytes,24,rep,name=available_themes,json=availableThemes,proto3" json:"available_themes,omitempty"` // List of available theme names
  2859. ShowNavigateOnStartIcons bool `protobuf:"varint,25,opt,name=show_navigate_on_start_icons,json=showNavigateOnStartIcons,proto3" json:"show_navigate_on_start_icons,omitempty"`
  2860. unknownFields protoimpl.UnknownFields
  2861. sizeCache protoimpl.SizeCache
  2862. }
  2863. func (x *InitResponse) Reset() {
  2864. *x = InitResponse{}
  2865. mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[59]
  2866. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2867. ms.StoreMessageInfo(mi)
  2868. }
  2869. func (x *InitResponse) String() string {
  2870. return protoimpl.X.MessageStringOf(x)
  2871. }
  2872. func (*InitResponse) ProtoMessage() {}
  2873. func (x *InitResponse) ProtoReflect() protoreflect.Message {
  2874. mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[59]
  2875. if x != nil {
  2876. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2877. if ms.LoadMessageInfo() == nil {
  2878. ms.StoreMessageInfo(mi)
  2879. }
  2880. return ms
  2881. }
  2882. return mi.MessageOf(x)
  2883. }
  2884. // Deprecated: Use InitResponse.ProtoReflect.Descriptor instead.
  2885. func (*InitResponse) Descriptor() ([]byte, []int) {
  2886. return file_olivetin_api_v1_olivetin_proto_rawDescGZIP(), []int{59}
  2887. }
  2888. func (x *InitResponse) GetShowFooter() bool {
  2889. if x != nil {
  2890. return x.ShowFooter
  2891. }
  2892. return false
  2893. }
  2894. func (x *InitResponse) GetShowNavigation() bool {
  2895. if x != nil {
  2896. return x.ShowNavigation
  2897. }
  2898. return false
  2899. }
  2900. func (x *InitResponse) GetShowNewVersions() bool {
  2901. if x != nil {
  2902. return x.ShowNewVersions
  2903. }
  2904. return false
  2905. }
  2906. func (x *InitResponse) GetAvailableVersion() string {
  2907. if x != nil {
  2908. return x.AvailableVersion
  2909. }
  2910. return ""
  2911. }
  2912. func (x *InitResponse) GetCurrentVersion() string {
  2913. if x != nil {
  2914. return x.CurrentVersion
  2915. }
  2916. return ""
  2917. }
  2918. func (x *InitResponse) GetPageTitle() string {
  2919. if x != nil {
  2920. return x.PageTitle
  2921. }
  2922. return ""
  2923. }
  2924. func (x *InitResponse) GetSectionNavigationStyle() string {
  2925. if x != nil {
  2926. return x.SectionNavigationStyle
  2927. }
  2928. return ""
  2929. }
  2930. func (x *InitResponse) GetDefaultIconForBack() string {
  2931. if x != nil {
  2932. return x.DefaultIconForBack
  2933. }
  2934. return ""
  2935. }
  2936. func (x *InitResponse) GetEnableCustomJs() bool {
  2937. if x != nil {
  2938. return x.EnableCustomJs
  2939. }
  2940. return false
  2941. }
  2942. func (x *InitResponse) GetAuthLoginUrl() string {
  2943. if x != nil {
  2944. return x.AuthLoginUrl
  2945. }
  2946. return ""
  2947. }
  2948. func (x *InitResponse) GetAuthLocalLogin() bool {
  2949. if x != nil {
  2950. return x.AuthLocalLogin
  2951. }
  2952. return false
  2953. }
  2954. func (x *InitResponse) GetStyleMods() []string {
  2955. if x != nil {
  2956. return x.StyleMods
  2957. }
  2958. return nil
  2959. }
  2960. func (x *InitResponse) GetOAuth2Providers() []*OAuth2Provider {
  2961. if x != nil {
  2962. return x.OAuth2Providers
  2963. }
  2964. return nil
  2965. }
  2966. func (x *InitResponse) GetAdditionalLinks() []*AdditionalLink {
  2967. if x != nil {
  2968. return x.AdditionalLinks
  2969. }
  2970. return nil
  2971. }
  2972. func (x *InitResponse) GetRootDashboards() []string {
  2973. if x != nil {
  2974. return x.RootDashboards
  2975. }
  2976. return nil
  2977. }
  2978. func (x *InitResponse) GetAuthenticatedUser() string {
  2979. if x != nil {
  2980. return x.AuthenticatedUser
  2981. }
  2982. return ""
  2983. }
  2984. func (x *InitResponse) GetAuthenticatedUserProvider() string {
  2985. if x != nil {
  2986. return x.AuthenticatedUserProvider
  2987. }
  2988. return ""
  2989. }
  2990. func (x *InitResponse) GetEffectivePolicy() *EffectivePolicy {
  2991. if x != nil {
  2992. return x.EffectivePolicy
  2993. }
  2994. return nil
  2995. }
  2996. func (x *InitResponse) GetBannerMessage() string {
  2997. if x != nil {
  2998. return x.BannerMessage
  2999. }
  3000. return ""
  3001. }
  3002. func (x *InitResponse) GetBannerCss() string {
  3003. if x != nil {
  3004. return x.BannerCss
  3005. }
  3006. return ""
  3007. }
  3008. func (x *InitResponse) GetShowDiagnostics() bool {
  3009. if x != nil {
  3010. return x.ShowDiagnostics
  3011. }
  3012. return false
  3013. }
  3014. func (x *InitResponse) GetShowLogList() bool {
  3015. if x != nil {
  3016. return x.ShowLogList
  3017. }
  3018. return false
  3019. }
  3020. func (x *InitResponse) GetLoginRequired() bool {
  3021. if x != nil {
  3022. return x.LoginRequired
  3023. }
  3024. return false
  3025. }
  3026. func (x *InitResponse) GetAvailableThemes() []string {
  3027. if x != nil {
  3028. return x.AvailableThemes
  3029. }
  3030. return nil
  3031. }
  3032. func (x *InitResponse) GetShowNavigateOnStartIcons() bool {
  3033. if x != nil {
  3034. return x.ShowNavigateOnStartIcons
  3035. }
  3036. return false
  3037. }
  3038. type AdditionalLink struct {
  3039. state protoimpl.MessageState `protogen:"open.v1"`
  3040. Title string `protobuf:"bytes,1,opt,name=title,proto3" json:"title,omitempty"`
  3041. Url string `protobuf:"bytes,2,opt,name=url,proto3" json:"url,omitempty"`
  3042. unknownFields protoimpl.UnknownFields
  3043. sizeCache protoimpl.SizeCache
  3044. }
  3045. func (x *AdditionalLink) Reset() {
  3046. *x = AdditionalLink{}
  3047. mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[60]
  3048. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3049. ms.StoreMessageInfo(mi)
  3050. }
  3051. func (x *AdditionalLink) String() string {
  3052. return protoimpl.X.MessageStringOf(x)
  3053. }
  3054. func (*AdditionalLink) ProtoMessage() {}
  3055. func (x *AdditionalLink) ProtoReflect() protoreflect.Message {
  3056. mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[60]
  3057. if x != nil {
  3058. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3059. if ms.LoadMessageInfo() == nil {
  3060. ms.StoreMessageInfo(mi)
  3061. }
  3062. return ms
  3063. }
  3064. return mi.MessageOf(x)
  3065. }
  3066. // Deprecated: Use AdditionalLink.ProtoReflect.Descriptor instead.
  3067. func (*AdditionalLink) Descriptor() ([]byte, []int) {
  3068. return file_olivetin_api_v1_olivetin_proto_rawDescGZIP(), []int{60}
  3069. }
  3070. func (x *AdditionalLink) GetTitle() string {
  3071. if x != nil {
  3072. return x.Title
  3073. }
  3074. return ""
  3075. }
  3076. func (x *AdditionalLink) GetUrl() string {
  3077. if x != nil {
  3078. return x.Url
  3079. }
  3080. return ""
  3081. }
  3082. type OAuth2Provider struct {
  3083. state protoimpl.MessageState `protogen:"open.v1"`
  3084. Title string `protobuf:"bytes,1,opt,name=title,proto3" json:"title,omitempty"`
  3085. Icon string `protobuf:"bytes,3,opt,name=icon,proto3" json:"icon,omitempty"`
  3086. Key string `protobuf:"bytes,4,opt,name=key,proto3" json:"key,omitempty"`
  3087. unknownFields protoimpl.UnknownFields
  3088. sizeCache protoimpl.SizeCache
  3089. }
  3090. func (x *OAuth2Provider) Reset() {
  3091. *x = OAuth2Provider{}
  3092. mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[61]
  3093. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3094. ms.StoreMessageInfo(mi)
  3095. }
  3096. func (x *OAuth2Provider) String() string {
  3097. return protoimpl.X.MessageStringOf(x)
  3098. }
  3099. func (*OAuth2Provider) ProtoMessage() {}
  3100. func (x *OAuth2Provider) ProtoReflect() protoreflect.Message {
  3101. mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[61]
  3102. if x != nil {
  3103. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3104. if ms.LoadMessageInfo() == nil {
  3105. ms.StoreMessageInfo(mi)
  3106. }
  3107. return ms
  3108. }
  3109. return mi.MessageOf(x)
  3110. }
  3111. // Deprecated: Use OAuth2Provider.ProtoReflect.Descriptor instead.
  3112. func (*OAuth2Provider) Descriptor() ([]byte, []int) {
  3113. return file_olivetin_api_v1_olivetin_proto_rawDescGZIP(), []int{61}
  3114. }
  3115. func (x *OAuth2Provider) GetTitle() string {
  3116. if x != nil {
  3117. return x.Title
  3118. }
  3119. return ""
  3120. }
  3121. func (x *OAuth2Provider) GetIcon() string {
  3122. if x != nil {
  3123. return x.Icon
  3124. }
  3125. return ""
  3126. }
  3127. func (x *OAuth2Provider) GetKey() string {
  3128. if x != nil {
  3129. return x.Key
  3130. }
  3131. return ""
  3132. }
  3133. type GetActionBindingRequest struct {
  3134. state protoimpl.MessageState `protogen:"open.v1"`
  3135. BindingId string `protobuf:"bytes,1,opt,name=binding_id,json=bindingId,proto3" json:"binding_id,omitempty"`
  3136. unknownFields protoimpl.UnknownFields
  3137. sizeCache protoimpl.SizeCache
  3138. }
  3139. func (x *GetActionBindingRequest) Reset() {
  3140. *x = GetActionBindingRequest{}
  3141. mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[62]
  3142. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3143. ms.StoreMessageInfo(mi)
  3144. }
  3145. func (x *GetActionBindingRequest) String() string {
  3146. return protoimpl.X.MessageStringOf(x)
  3147. }
  3148. func (*GetActionBindingRequest) ProtoMessage() {}
  3149. func (x *GetActionBindingRequest) ProtoReflect() protoreflect.Message {
  3150. mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[62]
  3151. if x != nil {
  3152. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3153. if ms.LoadMessageInfo() == nil {
  3154. ms.StoreMessageInfo(mi)
  3155. }
  3156. return ms
  3157. }
  3158. return mi.MessageOf(x)
  3159. }
  3160. // Deprecated: Use GetActionBindingRequest.ProtoReflect.Descriptor instead.
  3161. func (*GetActionBindingRequest) Descriptor() ([]byte, []int) {
  3162. return file_olivetin_api_v1_olivetin_proto_rawDescGZIP(), []int{62}
  3163. }
  3164. func (x *GetActionBindingRequest) GetBindingId() string {
  3165. if x != nil {
  3166. return x.BindingId
  3167. }
  3168. return ""
  3169. }
  3170. type GetActionBindingResponse struct {
  3171. state protoimpl.MessageState `protogen:"open.v1"`
  3172. Action *Action `protobuf:"bytes,1,opt,name=action,proto3" json:"action,omitempty"`
  3173. unknownFields protoimpl.UnknownFields
  3174. sizeCache protoimpl.SizeCache
  3175. }
  3176. func (x *GetActionBindingResponse) Reset() {
  3177. *x = GetActionBindingResponse{}
  3178. mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[63]
  3179. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3180. ms.StoreMessageInfo(mi)
  3181. }
  3182. func (x *GetActionBindingResponse) String() string {
  3183. return protoimpl.X.MessageStringOf(x)
  3184. }
  3185. func (*GetActionBindingResponse) ProtoMessage() {}
  3186. func (x *GetActionBindingResponse) ProtoReflect() protoreflect.Message {
  3187. mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[63]
  3188. if x != nil {
  3189. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3190. if ms.LoadMessageInfo() == nil {
  3191. ms.StoreMessageInfo(mi)
  3192. }
  3193. return ms
  3194. }
  3195. return mi.MessageOf(x)
  3196. }
  3197. // Deprecated: Use GetActionBindingResponse.ProtoReflect.Descriptor instead.
  3198. func (*GetActionBindingResponse) Descriptor() ([]byte, []int) {
  3199. return file_olivetin_api_v1_olivetin_proto_rawDescGZIP(), []int{63}
  3200. }
  3201. func (x *GetActionBindingResponse) GetAction() *Action {
  3202. if x != nil {
  3203. return x.Action
  3204. }
  3205. return nil
  3206. }
  3207. type GetEntitiesRequest struct {
  3208. state protoimpl.MessageState `protogen:"open.v1"`
  3209. unknownFields protoimpl.UnknownFields
  3210. sizeCache protoimpl.SizeCache
  3211. }
  3212. func (x *GetEntitiesRequest) Reset() {
  3213. *x = GetEntitiesRequest{}
  3214. mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[64]
  3215. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3216. ms.StoreMessageInfo(mi)
  3217. }
  3218. func (x *GetEntitiesRequest) String() string {
  3219. return protoimpl.X.MessageStringOf(x)
  3220. }
  3221. func (*GetEntitiesRequest) ProtoMessage() {}
  3222. func (x *GetEntitiesRequest) ProtoReflect() protoreflect.Message {
  3223. mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[64]
  3224. if x != nil {
  3225. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3226. if ms.LoadMessageInfo() == nil {
  3227. ms.StoreMessageInfo(mi)
  3228. }
  3229. return ms
  3230. }
  3231. return mi.MessageOf(x)
  3232. }
  3233. // Deprecated: Use GetEntitiesRequest.ProtoReflect.Descriptor instead.
  3234. func (*GetEntitiesRequest) Descriptor() ([]byte, []int) {
  3235. return file_olivetin_api_v1_olivetin_proto_rawDescGZIP(), []int{64}
  3236. }
  3237. type GetEntitiesResponse struct {
  3238. state protoimpl.MessageState `protogen:"open.v1"`
  3239. EntityDefinitions []*EntityDefinition `protobuf:"bytes,1,rep,name=entity_definitions,json=entityDefinitions,proto3" json:"entity_definitions,omitempty"`
  3240. unknownFields protoimpl.UnknownFields
  3241. sizeCache protoimpl.SizeCache
  3242. }
  3243. func (x *GetEntitiesResponse) Reset() {
  3244. *x = GetEntitiesResponse{}
  3245. mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[65]
  3246. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3247. ms.StoreMessageInfo(mi)
  3248. }
  3249. func (x *GetEntitiesResponse) String() string {
  3250. return protoimpl.X.MessageStringOf(x)
  3251. }
  3252. func (*GetEntitiesResponse) ProtoMessage() {}
  3253. func (x *GetEntitiesResponse) ProtoReflect() protoreflect.Message {
  3254. mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[65]
  3255. if x != nil {
  3256. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3257. if ms.LoadMessageInfo() == nil {
  3258. ms.StoreMessageInfo(mi)
  3259. }
  3260. return ms
  3261. }
  3262. return mi.MessageOf(x)
  3263. }
  3264. // Deprecated: Use GetEntitiesResponse.ProtoReflect.Descriptor instead.
  3265. func (*GetEntitiesResponse) Descriptor() ([]byte, []int) {
  3266. return file_olivetin_api_v1_olivetin_proto_rawDescGZIP(), []int{65}
  3267. }
  3268. func (x *GetEntitiesResponse) GetEntityDefinitions() []*EntityDefinition {
  3269. if x != nil {
  3270. return x.EntityDefinitions
  3271. }
  3272. return nil
  3273. }
  3274. type EntityDefinition struct {
  3275. state protoimpl.MessageState `protogen:"open.v1"`
  3276. Title string `protobuf:"bytes,1,opt,name=title,proto3" json:"title,omitempty"`
  3277. Instances []*Entity `protobuf:"bytes,2,rep,name=instances,proto3" json:"instances,omitempty"`
  3278. UsedOnDashboards []string `protobuf:"bytes,3,rep,name=used_on_dashboards,json=usedOnDashboards,proto3" json:"used_on_dashboards,omitempty"`
  3279. unknownFields protoimpl.UnknownFields
  3280. sizeCache protoimpl.SizeCache
  3281. }
  3282. func (x *EntityDefinition) Reset() {
  3283. *x = EntityDefinition{}
  3284. mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[66]
  3285. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3286. ms.StoreMessageInfo(mi)
  3287. }
  3288. func (x *EntityDefinition) String() string {
  3289. return protoimpl.X.MessageStringOf(x)
  3290. }
  3291. func (*EntityDefinition) ProtoMessage() {}
  3292. func (x *EntityDefinition) ProtoReflect() protoreflect.Message {
  3293. mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[66]
  3294. if x != nil {
  3295. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3296. if ms.LoadMessageInfo() == nil {
  3297. ms.StoreMessageInfo(mi)
  3298. }
  3299. return ms
  3300. }
  3301. return mi.MessageOf(x)
  3302. }
  3303. // Deprecated: Use EntityDefinition.ProtoReflect.Descriptor instead.
  3304. func (*EntityDefinition) Descriptor() ([]byte, []int) {
  3305. return file_olivetin_api_v1_olivetin_proto_rawDescGZIP(), []int{66}
  3306. }
  3307. func (x *EntityDefinition) GetTitle() string {
  3308. if x != nil {
  3309. return x.Title
  3310. }
  3311. return ""
  3312. }
  3313. func (x *EntityDefinition) GetInstances() []*Entity {
  3314. if x != nil {
  3315. return x.Instances
  3316. }
  3317. return nil
  3318. }
  3319. func (x *EntityDefinition) GetUsedOnDashboards() []string {
  3320. if x != nil {
  3321. return x.UsedOnDashboards
  3322. }
  3323. return nil
  3324. }
  3325. type GetEntityRequest struct {
  3326. state protoimpl.MessageState `protogen:"open.v1"`
  3327. UniqueKey string `protobuf:"bytes,1,opt,name=unique_key,json=uniqueKey,proto3" json:"unique_key,omitempty"`
  3328. Type string `protobuf:"bytes,2,opt,name=type,proto3" json:"type,omitempty"`
  3329. unknownFields protoimpl.UnknownFields
  3330. sizeCache protoimpl.SizeCache
  3331. }
  3332. func (x *GetEntityRequest) Reset() {
  3333. *x = GetEntityRequest{}
  3334. mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[67]
  3335. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3336. ms.StoreMessageInfo(mi)
  3337. }
  3338. func (x *GetEntityRequest) String() string {
  3339. return protoimpl.X.MessageStringOf(x)
  3340. }
  3341. func (*GetEntityRequest) ProtoMessage() {}
  3342. func (x *GetEntityRequest) ProtoReflect() protoreflect.Message {
  3343. mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[67]
  3344. if x != nil {
  3345. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3346. if ms.LoadMessageInfo() == nil {
  3347. ms.StoreMessageInfo(mi)
  3348. }
  3349. return ms
  3350. }
  3351. return mi.MessageOf(x)
  3352. }
  3353. // Deprecated: Use GetEntityRequest.ProtoReflect.Descriptor instead.
  3354. func (*GetEntityRequest) Descriptor() ([]byte, []int) {
  3355. return file_olivetin_api_v1_olivetin_proto_rawDescGZIP(), []int{67}
  3356. }
  3357. func (x *GetEntityRequest) GetUniqueKey() string {
  3358. if x != nil {
  3359. return x.UniqueKey
  3360. }
  3361. return ""
  3362. }
  3363. func (x *GetEntityRequest) GetType() string {
  3364. if x != nil {
  3365. return x.Type
  3366. }
  3367. return ""
  3368. }
  3369. type RestartActionRequest struct {
  3370. state protoimpl.MessageState `protogen:"open.v1"`
  3371. ExecutionTrackingId string `protobuf:"bytes,1,opt,name=execution_tracking_id,json=executionTrackingId,proto3" json:"execution_tracking_id,omitempty"`
  3372. unknownFields protoimpl.UnknownFields
  3373. sizeCache protoimpl.SizeCache
  3374. }
  3375. func (x *RestartActionRequest) Reset() {
  3376. *x = RestartActionRequest{}
  3377. mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[68]
  3378. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3379. ms.StoreMessageInfo(mi)
  3380. }
  3381. func (x *RestartActionRequest) String() string {
  3382. return protoimpl.X.MessageStringOf(x)
  3383. }
  3384. func (*RestartActionRequest) ProtoMessage() {}
  3385. func (x *RestartActionRequest) ProtoReflect() protoreflect.Message {
  3386. mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[68]
  3387. if x != nil {
  3388. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  3389. if ms.LoadMessageInfo() == nil {
  3390. ms.StoreMessageInfo(mi)
  3391. }
  3392. return ms
  3393. }
  3394. return mi.MessageOf(x)
  3395. }
  3396. // Deprecated: Use RestartActionRequest.ProtoReflect.Descriptor instead.
  3397. func (*RestartActionRequest) Descriptor() ([]byte, []int) {
  3398. return file_olivetin_api_v1_olivetin_proto_rawDescGZIP(), []int{68}
  3399. }
  3400. func (x *RestartActionRequest) GetExecutionTrackingId() string {
  3401. if x != nil {
  3402. return x.ExecutionTrackingId
  3403. }
  3404. return ""
  3405. }
  3406. var File_olivetin_api_v1_olivetin_proto protoreflect.FileDescriptor
  3407. const file_olivetin_api_v1_olivetin_proto_rawDesc = "" +
  3408. "\n" +
  3409. "\x1eolivetin/api/v1/olivetin.proto\x12\x0folivetin.api.v1\"\x89\x05\n" +
  3410. "\x06Action\x12\x1d\n" +
  3411. "\n" +
  3412. "binding_id\x18\x01 \x01(\tR\tbindingId\x12\x14\n" +
  3413. "\x05title\x18\x02 \x01(\tR\x05title\x12\x12\n" +
  3414. "\x04icon\x18\x03 \x01(\tR\x04icon\x12\x19\n" +
  3415. "\bcan_exec\x18\x04 \x01(\bR\acanExec\x12=\n" +
  3416. "\targuments\x18\x05 \x03(\v2\x1f.olivetin.api.v1.ActionArgumentR\targuments\x12$\n" +
  3417. "\x0epopup_on_start\x18\x06 \x01(\tR\fpopupOnStart\x12\x14\n" +
  3418. "\x05order\x18\a \x01(\x05R\x05order\x12\x18\n" +
  3419. "\atimeout\x18\b \x01(\x05R\atimeout\x12=\n" +
  3420. "\x1bdatetime_rate_limit_expires\x18\t \x01(\tR\x18datetimeRateLimitExpires\x12&\n" +
  3421. "\x0fexec_on_startup\x18\n" +
  3422. " \x01(\bR\rexecOnStartup\x12 \n" +
  3423. "\fexec_on_cron\x18\v \x03(\tR\n" +
  3424. "execOnCron\x12;\n" +
  3425. "\x1bexec_on_file_created_in_dir\x18\f \x03(\tR\x16execOnFileCreatedInDir\x12;\n" +
  3426. "\x1bexec_on_file_changed_in_dir\x18\r \x03(\tR\x16execOnFileChangedInDir\x121\n" +
  3427. "\x15exec_on_calendar_file\x18\x0e \x01(\tR\x12execOnCalendarFile\x12P\n" +
  3428. "\x10exec_on_webhooks\x18\x0f \x03(\v2&.olivetin.api.v1.ActionWebhookExecHintR\x0eexecOnWebhooks\"\x8a\x03\n" +
  3429. "\x15ActionWebhookExecHint\x12\x1a\n" +
  3430. "\btemplate\x18\x01 \x01(\tR\btemplate\x12\x1d\n" +
  3431. "\n" +
  3432. "match_path\x18\x02 \x01(\tR\tmatchPath\x12]\n" +
  3433. "\rmatch_headers\x18\x03 \x03(\v28.olivetin.api.v1.ActionWebhookExecHint.MatchHeadersEntryR\fmatchHeaders\x12W\n" +
  3434. "\vmatch_query\x18\x04 \x03(\v26.olivetin.api.v1.ActionWebhookExecHint.MatchQueryEntryR\n" +
  3435. "matchQuery\x1a?\n" +
  3436. "\x11MatchHeadersEntry\x12\x10\n" +
  3437. "\x03key\x18\x01 \x01(\tR\x03key\x12\x14\n" +
  3438. "\x05value\x18\x02 \x01(\tR\x05value:\x028\x01\x1a=\n" +
  3439. "\x0fMatchQueryEntry\x12\x10\n" +
  3440. "\x03key\x18\x01 \x01(\tR\x03key\x12\x14\n" +
  3441. "\x05value\x18\x02 \x01(\tR\x05value:\x028\x01\"\xa2\x03\n" +
  3442. "\x0eActionArgument\x12\x12\n" +
  3443. "\x04name\x18\x01 \x01(\tR\x04name\x12\x14\n" +
  3444. "\x05title\x18\x02 \x01(\tR\x05title\x12\x12\n" +
  3445. "\x04type\x18\x03 \x01(\tR\x04type\x12#\n" +
  3446. "\rdefault_value\x18\x04 \x01(\tR\fdefaultValue\x12?\n" +
  3447. "\achoices\x18\x05 \x03(\v2%.olivetin.api.v1.ActionArgumentChoiceR\achoices\x12 \n" +
  3448. "\vdescription\x18\x06 \x01(\tR\vdescription\x12R\n" +
  3449. "\vsuggestions\x18\a \x03(\v20.olivetin.api.v1.ActionArgument.SuggestionsEntryR\vsuggestions\x126\n" +
  3450. "\x17suggestions_browser_key\x18\b \x01(\tR\x15suggestionsBrowserKey\x1a>\n" +
  3451. "\x10SuggestionsEntry\x12\x10\n" +
  3452. "\x03key\x18\x01 \x01(\tR\x03key\x12\x14\n" +
  3453. "\x05value\x18\x02 \x01(\tR\x05value:\x028\x01\"B\n" +
  3454. "\x14ActionArgumentChoice\x12\x14\n" +
  3455. "\x05value\x18\x01 \x01(\tR\x05value\x12\x14\n" +
  3456. "\x05title\x18\x02 \x01(\tR\x05title\"\xeb\x01\n" +
  3457. "\x06Entity\x12\x14\n" +
  3458. "\x05title\x18\x01 \x01(\tR\x05title\x12\x1d\n" +
  3459. "\n" +
  3460. "unique_key\x18\x02 \x01(\tR\tuniqueKey\x12\x12\n" +
  3461. "\x04type\x18\x03 \x01(\tR\x04type\x12 \n" +
  3462. "\vdirectories\x18\x04 \x03(\tR\vdirectories\x12;\n" +
  3463. "\x06fields\x18\x05 \x03(\v2#.olivetin.api.v1.Entity.FieldsEntryR\x06fields\x1a9\n" +
  3464. "\vFieldsEntry\x12\x10\n" +
  3465. "\x03key\x18\x01 \x01(\tR\x03key\x12\x14\n" +
  3466. "\x05value\x18\x02 \x01(\tR\x05value:\x028\x01\"f\n" +
  3467. "\x14GetDashboardResponse\x12\x14\n" +
  3468. "\x05title\x18\x01 \x01(\tR\x05title\x128\n" +
  3469. "\tdashboard\x18\x04 \x01(\v2\x1a.olivetin.api.v1.DashboardR\tdashboard\"\x90\x01\n" +
  3470. "\x0fEffectivePolicy\x12)\n" +
  3471. "\x10show_diagnostics\x18\x01 \x01(\bR\x0fshowDiagnostics\x12\"\n" +
  3472. "\rshow_log_list\x18\x02 \x01(\bR\vshowLogList\x12.\n" +
  3473. "\x13show_version_number\x18\x03 \x01(\bR\x11showVersionNumber\"k\n" +
  3474. "\x13GetDashboardRequest\x12\x14\n" +
  3475. "\x05title\x18\x01 \x01(\tR\x05title\x12\x1f\n" +
  3476. "\ventity_type\x18\x02 \x01(\tR\n" +
  3477. "entityType\x12\x1d\n" +
  3478. "\n" +
  3479. "entity_key\x18\x03 \x01(\tR\tentityKey\"b\n" +
  3480. "\tDashboard\x12\x14\n" +
  3481. "\x05title\x18\x01 \x01(\tR\x05title\x12?\n" +
  3482. "\bcontents\x18\x02 \x03(\v2#.olivetin.api.v1.DashboardComponentR\bcontents\"\xa1\x02\n" +
  3483. "\x12DashboardComponent\x12\x14\n" +
  3484. "\x05title\x18\x01 \x01(\tR\x05title\x12\x12\n" +
  3485. "\x04type\x18\x02 \x01(\tR\x04type\x12?\n" +
  3486. "\bcontents\x18\x03 \x03(\v2#.olivetin.api.v1.DashboardComponentR\bcontents\x12\x12\n" +
  3487. "\x04icon\x18\x04 \x01(\tR\x04icon\x12\x1b\n" +
  3488. "\tcss_class\x18\x05 \x01(\tR\bcssClass\x12/\n" +
  3489. "\x06action\x18\x06 \x01(\v2\x17.olivetin.api.v1.ActionR\x06action\x12\x1f\n" +
  3490. "\ventity_type\x18\a \x01(\tR\n" +
  3491. "entityType\x12\x1d\n" +
  3492. "\n" +
  3493. "entity_key\x18\b \x01(\tR\tentityKey\"\xa5\x01\n" +
  3494. "\x12StartActionRequest\x12\x1d\n" +
  3495. "\n" +
  3496. "binding_id\x18\x01 \x01(\tR\tbindingId\x12B\n" +
  3497. "\targuments\x18\x02 \x03(\v2$.olivetin.api.v1.StartActionArgumentR\targuments\x12,\n" +
  3498. "\x12unique_tracking_id\x18\x03 \x01(\tR\x10uniqueTrackingId\"?\n" +
  3499. "\x13StartActionArgument\x12\x12\n" +
  3500. "\x04name\x18\x01 \x01(\tR\x04name\x12\x14\n" +
  3501. "\x05value\x18\x02 \x01(\tR\x05value\"I\n" +
  3502. "\x13StartActionResponse\x122\n" +
  3503. "\x15execution_tracking_id\x18\x02 \x01(\tR\x13executionTrackingId\"|\n" +
  3504. "\x19StartActionAndWaitRequest\x12\x1b\n" +
  3505. "\taction_id\x18\x01 \x01(\tR\bactionId\x12B\n" +
  3506. "\targuments\x18\x02 \x03(\v2$.olivetin.api.v1.StartActionArgumentR\targuments\"T\n" +
  3507. "\x1aStartActionAndWaitResponse\x126\n" +
  3508. "\tlog_entry\x18\x01 \x01(\v2\x19.olivetin.api.v1.LogEntryR\blogEntry\"6\n" +
  3509. "\x17StartActionByGetRequest\x12\x1b\n" +
  3510. "\taction_id\x18\x01 \x01(\tR\bactionId\"N\n" +
  3511. "\x18StartActionByGetResponse\x122\n" +
  3512. "\x15execution_tracking_id\x18\x02 \x01(\tR\x13executionTrackingId\"=\n" +
  3513. "\x1eStartActionByGetAndWaitRequest\x12\x1b\n" +
  3514. "\taction_id\x18\x01 \x01(\tR\bactionId\"Y\n" +
  3515. "\x1fStartActionByGetAndWaitResponse\x126\n" +
  3516. "\tlog_entry\x18\x01 \x01(\v2\x19.olivetin.api.v1.LogEntryR\blogEntry\"q\n" +
  3517. "\x0eGetLogsRequest\x12!\n" +
  3518. "\fstart_offset\x18\x01 \x01(\x03R\vstartOffset\x12\x1f\n" +
  3519. "\vdate_filter\x18\x02 \x01(\tR\n" +
  3520. "dateFilter\x12\x1b\n" +
  3521. "\tpage_size\x18\x03 \x01(\x03R\bpageSize\"\x89\x05\n" +
  3522. "\bLogEntry\x12)\n" +
  3523. "\x10datetime_started\x18\x01 \x01(\tR\x0fdatetimeStarted\x12!\n" +
  3524. "\faction_title\x18\x02 \x01(\tR\vactionTitle\x12\x16\n" +
  3525. "\x06output\x18\x03 \x01(\tR\x06output\x12\x1b\n" +
  3526. "\ttimed_out\x18\x05 \x01(\bR\btimedOut\x12\x1b\n" +
  3527. "\texit_code\x18\x06 \x01(\x05R\bexitCode\x12\x12\n" +
  3528. "\x04user\x18\a \x01(\tR\x04user\x12\x1d\n" +
  3529. "\n" +
  3530. "user_class\x18\b \x01(\tR\tuserClass\x12\x1f\n" +
  3531. "\vaction_icon\x18\t \x01(\tR\n" +
  3532. "actionIcon\x12\x12\n" +
  3533. "\x04tags\x18\n" +
  3534. " \x03(\tR\x04tags\x122\n" +
  3535. "\x15execution_tracking_id\x18\v \x01(\tR\x13executionTrackingId\x12+\n" +
  3536. "\x11datetime_finished\x18\f \x01(\tR\x10datetimeFinished\x12+\n" +
  3537. "\x11execution_started\x18\x0e \x01(\bR\x10executionStarted\x12-\n" +
  3538. "\x12execution_finished\x18\x0f \x01(\bR\x11executionFinished\x12\x18\n" +
  3539. "\ablocked\x18\x10 \x01(\bR\ablocked\x12%\n" +
  3540. "\x0edatetime_index\x18\x11 \x01(\x03R\rdatetimeIndex\x12\x19\n" +
  3541. "\bcan_kill\x18\x12 \x01(\bR\acanKill\x12=\n" +
  3542. "\x1bdatetime_rate_limit_expires\x18\x13 \x01(\tR\x18datetimeRateLimitExpires\x12\x1d\n" +
  3543. "\n" +
  3544. "binding_id\x18\x14 \x01(\tR\tbindingId\"\xca\x01\n" +
  3545. "\x0fGetLogsResponse\x12-\n" +
  3546. "\x04logs\x18\x01 \x03(\v2\x19.olivetin.api.v1.LogEntryR\x04logs\x12'\n" +
  3547. "\x0fcount_remaining\x18\x02 \x01(\x03R\x0ecountRemaining\x12\x1b\n" +
  3548. "\tpage_size\x18\x03 \x01(\x03R\bpageSize\x12\x1f\n" +
  3549. "\vtotal_count\x18\x04 \x01(\x03R\n" +
  3550. "totalCount\x12!\n" +
  3551. "\fstart_offset\x18\x05 \x01(\x03R\vstartOffset\"V\n" +
  3552. "\x14GetActionLogsRequest\x12\x1b\n" +
  3553. "\taction_id\x18\x01 \x01(\tR\bactionId\x12!\n" +
  3554. "\fstart_offset\x18\x02 \x01(\x03R\vstartOffset\"\xd0\x01\n" +
  3555. "\x15GetActionLogsResponse\x12-\n" +
  3556. "\x04logs\x18\x01 \x03(\v2\x19.olivetin.api.v1.LogEntryR\x04logs\x12'\n" +
  3557. "\x0fcount_remaining\x18\x02 \x01(\x03R\x0ecountRemaining\x12\x1b\n" +
  3558. "\tpage_size\x18\x03 \x01(\x03R\bpageSize\x12\x1f\n" +
  3559. "\vtotal_count\x18\x04 \x01(\x03R\n" +
  3560. "totalCount\x12!\n" +
  3561. "\fstart_offset\x18\x05 \x01(\x03R\vstartOffset\"\x8b\x01\n" +
  3562. "\x1bValidateArgumentTypeRequest\x12\x14\n" +
  3563. "\x05value\x18\x01 \x01(\tR\x05value\x12\x12\n" +
  3564. "\x04type\x18\x02 \x01(\tR\x04type\x12\x1d\n" +
  3565. "\n" +
  3566. "binding_id\x18\x03 \x01(\tR\tbindingId\x12#\n" +
  3567. "\rargument_name\x18\x04 \x01(\tR\fargumentName\"V\n" +
  3568. "\x1cValidateArgumentTypeResponse\x12\x14\n" +
  3569. "\x05valid\x18\x01 \x01(\bR\x05valid\x12 \n" +
  3570. "\vdescription\x18\x02 \x01(\tR\vdescription\"K\n" +
  3571. "\x15WatchExecutionRequest\x122\n" +
  3572. "\x15execution_tracking_id\x18\x01 \x01(\tR\x13executionTrackingId\".\n" +
  3573. "\x14WatchExecutionUpdate\x12\x16\n" +
  3574. "\x06update\x18\x01 \x01(\tR\x06update\"i\n" +
  3575. "\x16ExecutionStatusRequest\x122\n" +
  3576. "\x15execution_tracking_id\x18\x01 \x01(\tR\x13executionTrackingId\x12\x1b\n" +
  3577. "\taction_id\x18\x02 \x01(\tR\bactionId\"Q\n" +
  3578. "\x17ExecutionStatusResponse\x126\n" +
  3579. "\tlog_entry\x18\x01 \x01(\v2\x19.olivetin.api.v1.LogEntryR\blogEntry\"\x0f\n" +
  3580. "\rWhoAmIRequest\"\x9f\x01\n" +
  3581. "\x0eWhoAmIResponse\x12-\n" +
  3582. "\x12authenticated_user\x18\x01 \x01(\tR\x11authenticatedUser\x12\x1c\n" +
  3583. "\tusergroup\x18\x02 \x01(\tR\tusergroup\x12\x1a\n" +
  3584. "\bprovider\x18\x03 \x01(\tR\bprovider\x12\x12\n" +
  3585. "\x04acls\x18\x04 \x03(\tR\x04acls\x12\x10\n" +
  3586. "\x03sid\x18\x05 \x01(\tR\x03sid\"\x12\n" +
  3587. "\x10SosReportRequest\")\n" +
  3588. "\x11SosReportResponse\x12\x14\n" +
  3589. "\x05alert\x18\x01 \x01(\tR\x05alert\"\x11\n" +
  3590. "\x0fDumpVarsRequest\"\xb2\x01\n" +
  3591. "\x10DumpVarsResponse\x12\x14\n" +
  3592. "\x05alert\x18\x01 \x01(\tR\x05alert\x12K\n" +
  3593. "\bcontents\x18\x02 \x03(\v2/.olivetin.api.v1.DumpVarsResponse.ContentsEntryR\bcontents\x1a;\n" +
  3594. "\rContentsEntry\x12\x10\n" +
  3595. "\x03key\x18\x01 \x01(\tR\x03key\x12\x14\n" +
  3596. "\x05value\x18\x02 \x01(\tR\x05value:\x028\x01\"V\n" +
  3597. "\fDebugBinding\x12!\n" +
  3598. "\faction_title\x18\x01 \x01(\tR\vactionTitle\x12#\n" +
  3599. "\rentity_prefix\x18\x02 \x01(\tR\fentityPrefix\"\x1e\n" +
  3600. "\x1cDumpPublicIdActionMapRequest\"\xeb\x01\n" +
  3601. "\x1dDumpPublicIdActionMapResponse\x12\x14\n" +
  3602. "\x05alert\x18\x01 \x01(\tR\x05alert\x12X\n" +
  3603. "\bcontents\x18\x02 \x03(\v2<.olivetin.api.v1.DumpPublicIdActionMapResponse.ContentsEntryR\bcontents\x1aZ\n" +
  3604. "\rContentsEntry\x12\x10\n" +
  3605. "\x03key\x18\x01 \x01(\tR\x03key\x123\n" +
  3606. "\x05value\x18\x02 \x01(\v2\x1d.olivetin.api.v1.DebugBindingR\x05value:\x028\x01\"\x12\n" +
  3607. "\x10GetReadyzRequest\"+\n" +
  3608. "\x11GetReadyzResponse\x12\x16\n" +
  3609. "\x06status\x18\x01 \x01(\tR\x06status\"\x14\n" +
  3610. "\x12EventStreamRequest\"\xb3\x03\n" +
  3611. "\x13EventStreamResponse\x12L\n" +
  3612. "\x0eentity_changed\x18\x02 \x01(\v2#.olivetin.api.v1.EventEntityChangedH\x00R\rentityChanged\x12L\n" +
  3613. "\x0econfig_changed\x18\x03 \x01(\v2#.olivetin.api.v1.EventConfigChangedH\x00R\rconfigChanged\x12X\n" +
  3614. "\x12execution_finished\x18\x04 \x01(\v2'.olivetin.api.v1.EventExecutionFinishedH\x00R\x11executionFinished\x12U\n" +
  3615. "\x11execution_started\x18\x05 \x01(\v2&.olivetin.api.v1.EventExecutionStartedH\x00R\x10executionStarted\x12F\n" +
  3616. "\foutput_chunk\x18\x06 \x01(\v2!.olivetin.api.v1.EventOutputChunkH\x00R\voutputChunkB\a\n" +
  3617. "\x05event\"^\n" +
  3618. "\x10EventOutputChunk\x122\n" +
  3619. "\x15execution_tracking_id\x18\x01 \x01(\tR\x13executionTrackingId\x12\x16\n" +
  3620. "\x06output\x18\x02 \x01(\tR\x06output\"\x14\n" +
  3621. "\x12EventEntityChanged\"\x14\n" +
  3622. "\x12EventConfigChanged\"P\n" +
  3623. "\x16EventExecutionFinished\x126\n" +
  3624. "\tlog_entry\x18\x01 \x01(\v2\x19.olivetin.api.v1.LogEntryR\blogEntry\"O\n" +
  3625. "\x15EventExecutionStarted\x126\n" +
  3626. "\tlog_entry\x18\x01 \x01(\v2\x19.olivetin.api.v1.LogEntryR\blogEntry\"G\n" +
  3627. "\x11KillActionRequest\x122\n" +
  3628. "\x15execution_tracking_id\x18\x01 \x01(\tR\x13executionTrackingId\"\xa3\x01\n" +
  3629. "\x12KillActionResponse\x122\n" +
  3630. "\x15execution_tracking_id\x18\x01 \x01(\tR\x13executionTrackingId\x12\x16\n" +
  3631. "\x06killed\x18\x02 \x01(\bR\x06killed\x12+\n" +
  3632. "\x11already_completed\x18\x03 \x01(\bR\x10alreadyCompleted\x12\x14\n" +
  3633. "\x05found\x18\x04 \x01(\bR\x05found\"O\n" +
  3634. "\x15LocalUserLoginRequest\x12\x1a\n" +
  3635. "\busername\x18\x01 \x01(\tR\busername\x12\x1a\n" +
  3636. "\bpassword\x18\x02 \x01(\tR\bpassword\"2\n" +
  3637. "\x16LocalUserLoginResponse\x12\x18\n" +
  3638. "\asuccess\x18\x01 \x01(\bR\asuccess\"1\n" +
  3639. "\x13PasswordHashRequest\x12\x1a\n" +
  3640. "\bpassword\x18\x01 \x01(\tR\bpassword\"*\n" +
  3641. "\x14PasswordHashResponse\x12\x12\n" +
  3642. "\x04hash\x18\x01 \x01(\tR\x04hash\"\x0f\n" +
  3643. "\rLogoutRequest\"\x10\n" +
  3644. "\x0eLogoutResponse\"\x17\n" +
  3645. "\x15GetDiagnosticsRequest\"b\n" +
  3646. "\x16GetDiagnosticsResponse\x12 \n" +
  3647. "\vSshFoundKey\x18\x01 \x01(\tR\vSshFoundKey\x12&\n" +
  3648. "\x0eSshFoundConfig\x18\x02 \x01(\tR\x0eSshFoundConfig\"\r\n" +
  3649. "\vInitRequest\"\x8d\t\n" +
  3650. "\fInitResponse\x12\x1e\n" +
  3651. "\n" +
  3652. "showFooter\x18\x01 \x01(\bR\n" +
  3653. "showFooter\x12&\n" +
  3654. "\x0eshowNavigation\x18\x02 \x01(\bR\x0eshowNavigation\x12(\n" +
  3655. "\x0fshowNewVersions\x18\x03 \x01(\bR\x0fshowNewVersions\x12*\n" +
  3656. "\x10availableVersion\x18\x04 \x01(\tR\x10availableVersion\x12&\n" +
  3657. "\x0ecurrentVersion\x18\x05 \x01(\tR\x0ecurrentVersion\x12\x1c\n" +
  3658. "\tpageTitle\x18\x06 \x01(\tR\tpageTitle\x126\n" +
  3659. "\x16sectionNavigationStyle\x18\a \x01(\tR\x16sectionNavigationStyle\x12.\n" +
  3660. "\x12defaultIconForBack\x18\b \x01(\tR\x12defaultIconForBack\x12&\n" +
  3661. "\x0eenableCustomJs\x18\t \x01(\bR\x0eenableCustomJs\x12\"\n" +
  3662. "\fauthLoginUrl\x18\n" +
  3663. " \x01(\tR\fauthLoginUrl\x12&\n" +
  3664. "\x0eauthLocalLogin\x18\v \x01(\bR\x0eauthLocalLogin\x12\x1c\n" +
  3665. "\tstyleMods\x18\f \x03(\tR\tstyleMods\x12I\n" +
  3666. "\x0foAuth2Providers\x18\r \x03(\v2\x1f.olivetin.api.v1.OAuth2ProviderR\x0foAuth2Providers\x12I\n" +
  3667. "\x0fadditionalLinks\x18\x0e \x03(\v2\x1f.olivetin.api.v1.AdditionalLinkR\x0fadditionalLinks\x12&\n" +
  3668. "\x0erootDashboards\x18\x0f \x03(\tR\x0erootDashboards\x12-\n" +
  3669. "\x12authenticated_user\x18\x10 \x01(\tR\x11authenticatedUser\x12>\n" +
  3670. "\x1bauthenticated_user_provider\x18\x11 \x01(\tR\x19authenticatedUserProvider\x12K\n" +
  3671. "\x10effective_policy\x18\x12 \x01(\v2 .olivetin.api.v1.EffectivePolicyR\x0feffectivePolicy\x12%\n" +
  3672. "\x0ebanner_message\x18\x13 \x01(\tR\rbannerMessage\x12\x1d\n" +
  3673. "\n" +
  3674. "banner_css\x18\x14 \x01(\tR\tbannerCss\x12)\n" +
  3675. "\x10show_diagnostics\x18\x15 \x01(\bR\x0fshowDiagnostics\x12\"\n" +
  3676. "\rshow_log_list\x18\x16 \x01(\bR\vshowLogList\x12%\n" +
  3677. "\x0elogin_required\x18\x17 \x01(\bR\rloginRequired\x12)\n" +
  3678. "\x10available_themes\x18\x18 \x03(\tR\x0favailableThemes\x12>\n" +
  3679. "\x1cshow_navigate_on_start_icons\x18\x19 \x01(\bR\x18showNavigateOnStartIcons\"8\n" +
  3680. "\x0eAdditionalLink\x12\x14\n" +
  3681. "\x05title\x18\x01 \x01(\tR\x05title\x12\x10\n" +
  3682. "\x03url\x18\x02 \x01(\tR\x03url\"L\n" +
  3683. "\x0eOAuth2Provider\x12\x14\n" +
  3684. "\x05title\x18\x01 \x01(\tR\x05title\x12\x12\n" +
  3685. "\x04icon\x18\x03 \x01(\tR\x04icon\x12\x10\n" +
  3686. "\x03key\x18\x04 \x01(\tR\x03key\"8\n" +
  3687. "\x17GetActionBindingRequest\x12\x1d\n" +
  3688. "\n" +
  3689. "binding_id\x18\x01 \x01(\tR\tbindingId\"K\n" +
  3690. "\x18GetActionBindingResponse\x12/\n" +
  3691. "\x06action\x18\x01 \x01(\v2\x17.olivetin.api.v1.ActionR\x06action\"\x14\n" +
  3692. "\x12GetEntitiesRequest\"g\n" +
  3693. "\x13GetEntitiesResponse\x12P\n" +
  3694. "\x12entity_definitions\x18\x01 \x03(\v2!.olivetin.api.v1.EntityDefinitionR\x11entityDefinitions\"\x8d\x01\n" +
  3695. "\x10EntityDefinition\x12\x14\n" +
  3696. "\x05title\x18\x01 \x01(\tR\x05title\x125\n" +
  3697. "\tinstances\x18\x02 \x03(\v2\x17.olivetin.api.v1.EntityR\tinstances\x12,\n" +
  3698. "\x12used_on_dashboards\x18\x03 \x03(\tR\x10usedOnDashboards\"E\n" +
  3699. "\x10GetEntityRequest\x12\x1d\n" +
  3700. "\n" +
  3701. "unique_key\x18\x01 \x01(\tR\tuniqueKey\x12\x12\n" +
  3702. "\x04type\x18\x02 \x01(\tR\x04type\"J\n" +
  3703. "\x14RestartActionRequest\x122\n" +
  3704. "\x15execution_tracking_id\x18\x01 \x01(\tR\x13executionTrackingId2\xe8\x12\n" +
  3705. "\x12OliveTinApiService\x12]\n" +
  3706. "\fGetDashboard\x12$.olivetin.api.v1.GetDashboardRequest\x1a%.olivetin.api.v1.GetDashboardResponse\"\x00\x12Z\n" +
  3707. "\vStartAction\x12#.olivetin.api.v1.StartActionRequest\x1a$.olivetin.api.v1.StartActionResponse\"\x00\x12o\n" +
  3708. "\x12StartActionAndWait\x12*.olivetin.api.v1.StartActionAndWaitRequest\x1a+.olivetin.api.v1.StartActionAndWaitResponse\"\x00\x12i\n" +
  3709. "\x10StartActionByGet\x12(.olivetin.api.v1.StartActionByGetRequest\x1a).olivetin.api.v1.StartActionByGetResponse\"\x00\x12~\n" +
  3710. "\x17StartActionByGetAndWait\x12/.olivetin.api.v1.StartActionByGetAndWaitRequest\x1a0.olivetin.api.v1.StartActionByGetAndWaitResponse\"\x00\x12^\n" +
  3711. "\rRestartAction\x12%.olivetin.api.v1.RestartActionRequest\x1a$.olivetin.api.v1.StartActionResponse\"\x00\x12W\n" +
  3712. "\n" +
  3713. "KillAction\x12\".olivetin.api.v1.KillActionRequest\x1a#.olivetin.api.v1.KillActionResponse\"\x00\x12f\n" +
  3714. "\x0fExecutionStatus\x12'.olivetin.api.v1.ExecutionStatusRequest\x1a(.olivetin.api.v1.ExecutionStatusResponse\"\x00\x12N\n" +
  3715. "\aGetLogs\x12\x1f.olivetin.api.v1.GetLogsRequest\x1a .olivetin.api.v1.GetLogsResponse\"\x00\x12`\n" +
  3716. "\rGetActionLogs\x12%.olivetin.api.v1.GetActionLogsRequest\x1a&.olivetin.api.v1.GetActionLogsResponse\"\x00\x12u\n" +
  3717. "\x14ValidateArgumentType\x12,.olivetin.api.v1.ValidateArgumentTypeRequest\x1a-.olivetin.api.v1.ValidateArgumentTypeResponse\"\x00\x12K\n" +
  3718. "\x06WhoAmI\x12\x1e.olivetin.api.v1.WhoAmIRequest\x1a\x1f.olivetin.api.v1.WhoAmIResponse\"\x00\x12T\n" +
  3719. "\tSosReport\x12!.olivetin.api.v1.SosReportRequest\x1a\".olivetin.api.v1.SosReportResponse\"\x00\x12Q\n" +
  3720. "\bDumpVars\x12 .olivetin.api.v1.DumpVarsRequest\x1a!.olivetin.api.v1.DumpVarsResponse\"\x00\x12x\n" +
  3721. "\x15DumpPublicIdActionMap\x12-.olivetin.api.v1.DumpPublicIdActionMapRequest\x1a..olivetin.api.v1.DumpPublicIdActionMapResponse\"\x00\x12T\n" +
  3722. "\tGetReadyz\x12!.olivetin.api.v1.GetReadyzRequest\x1a\".olivetin.api.v1.GetReadyzResponse\"\x00\x12c\n" +
  3723. "\x0eLocalUserLogin\x12&.olivetin.api.v1.LocalUserLoginRequest\x1a'.olivetin.api.v1.LocalUserLoginResponse\"\x00\x12]\n" +
  3724. "\fPasswordHash\x12$.olivetin.api.v1.PasswordHashRequest\x1a%.olivetin.api.v1.PasswordHashResponse\"\x00\x12K\n" +
  3725. "\x06Logout\x12\x1e.olivetin.api.v1.LogoutRequest\x1a\x1f.olivetin.api.v1.LogoutResponse\"\x00\x12\\\n" +
  3726. "\vEventStream\x12#.olivetin.api.v1.EventStreamRequest\x1a$.olivetin.api.v1.EventStreamResponse\"\x000\x01\x12c\n" +
  3727. "\x0eGetDiagnostics\x12&.olivetin.api.v1.GetDiagnosticsRequest\x1a'.olivetin.api.v1.GetDiagnosticsResponse\"\x00\x12E\n" +
  3728. "\x04Init\x12\x1c.olivetin.api.v1.InitRequest\x1a\x1d.olivetin.api.v1.InitResponse\"\x00\x12i\n" +
  3729. "\x10GetActionBinding\x12(.olivetin.api.v1.GetActionBindingRequest\x1a).olivetin.api.v1.GetActionBindingResponse\"\x00\x12Z\n" +
  3730. "\vGetEntities\x12#.olivetin.api.v1.GetEntitiesRequest\x1a$.olivetin.api.v1.GetEntitiesResponse\"\x00\x12I\n" +
  3731. "\tGetEntity\x12!.olivetin.api.v1.GetEntityRequest\x1a\x17.olivetin.api.v1.Entity\"\x00B8Z6github.com/OliveTin/OliveTin/gen/olivetin/api/v1;apiv1b\x06proto3"
  3732. var (
  3733. file_olivetin_api_v1_olivetin_proto_rawDescOnce sync.Once
  3734. file_olivetin_api_v1_olivetin_proto_rawDescData []byte
  3735. )
  3736. func file_olivetin_api_v1_olivetin_proto_rawDescGZIP() []byte {
  3737. file_olivetin_api_v1_olivetin_proto_rawDescOnce.Do(func() {
  3738. file_olivetin_api_v1_olivetin_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_olivetin_api_v1_olivetin_proto_rawDesc), len(file_olivetin_api_v1_olivetin_proto_rawDesc)))
  3739. })
  3740. return file_olivetin_api_v1_olivetin_proto_rawDescData
  3741. }
  3742. var file_olivetin_api_v1_olivetin_proto_msgTypes = make([]protoimpl.MessageInfo, 75)
  3743. var file_olivetin_api_v1_olivetin_proto_goTypes = []any{
  3744. (*Action)(nil), // 0: olivetin.api.v1.Action
  3745. (*ActionWebhookExecHint)(nil), // 1: olivetin.api.v1.ActionWebhookExecHint
  3746. (*ActionArgument)(nil), // 2: olivetin.api.v1.ActionArgument
  3747. (*ActionArgumentChoice)(nil), // 3: olivetin.api.v1.ActionArgumentChoice
  3748. (*Entity)(nil), // 4: olivetin.api.v1.Entity
  3749. (*GetDashboardResponse)(nil), // 5: olivetin.api.v1.GetDashboardResponse
  3750. (*EffectivePolicy)(nil), // 6: olivetin.api.v1.EffectivePolicy
  3751. (*GetDashboardRequest)(nil), // 7: olivetin.api.v1.GetDashboardRequest
  3752. (*Dashboard)(nil), // 8: olivetin.api.v1.Dashboard
  3753. (*DashboardComponent)(nil), // 9: olivetin.api.v1.DashboardComponent
  3754. (*StartActionRequest)(nil), // 10: olivetin.api.v1.StartActionRequest
  3755. (*StartActionArgument)(nil), // 11: olivetin.api.v1.StartActionArgument
  3756. (*StartActionResponse)(nil), // 12: olivetin.api.v1.StartActionResponse
  3757. (*StartActionAndWaitRequest)(nil), // 13: olivetin.api.v1.StartActionAndWaitRequest
  3758. (*StartActionAndWaitResponse)(nil), // 14: olivetin.api.v1.StartActionAndWaitResponse
  3759. (*StartActionByGetRequest)(nil), // 15: olivetin.api.v1.StartActionByGetRequest
  3760. (*StartActionByGetResponse)(nil), // 16: olivetin.api.v1.StartActionByGetResponse
  3761. (*StartActionByGetAndWaitRequest)(nil), // 17: olivetin.api.v1.StartActionByGetAndWaitRequest
  3762. (*StartActionByGetAndWaitResponse)(nil), // 18: olivetin.api.v1.StartActionByGetAndWaitResponse
  3763. (*GetLogsRequest)(nil), // 19: olivetin.api.v1.GetLogsRequest
  3764. (*LogEntry)(nil), // 20: olivetin.api.v1.LogEntry
  3765. (*GetLogsResponse)(nil), // 21: olivetin.api.v1.GetLogsResponse
  3766. (*GetActionLogsRequest)(nil), // 22: olivetin.api.v1.GetActionLogsRequest
  3767. (*GetActionLogsResponse)(nil), // 23: olivetin.api.v1.GetActionLogsResponse
  3768. (*ValidateArgumentTypeRequest)(nil), // 24: olivetin.api.v1.ValidateArgumentTypeRequest
  3769. (*ValidateArgumentTypeResponse)(nil), // 25: olivetin.api.v1.ValidateArgumentTypeResponse
  3770. (*WatchExecutionRequest)(nil), // 26: olivetin.api.v1.WatchExecutionRequest
  3771. (*WatchExecutionUpdate)(nil), // 27: olivetin.api.v1.WatchExecutionUpdate
  3772. (*ExecutionStatusRequest)(nil), // 28: olivetin.api.v1.ExecutionStatusRequest
  3773. (*ExecutionStatusResponse)(nil), // 29: olivetin.api.v1.ExecutionStatusResponse
  3774. (*WhoAmIRequest)(nil), // 30: olivetin.api.v1.WhoAmIRequest
  3775. (*WhoAmIResponse)(nil), // 31: olivetin.api.v1.WhoAmIResponse
  3776. (*SosReportRequest)(nil), // 32: olivetin.api.v1.SosReportRequest
  3777. (*SosReportResponse)(nil), // 33: olivetin.api.v1.SosReportResponse
  3778. (*DumpVarsRequest)(nil), // 34: olivetin.api.v1.DumpVarsRequest
  3779. (*DumpVarsResponse)(nil), // 35: olivetin.api.v1.DumpVarsResponse
  3780. (*DebugBinding)(nil), // 36: olivetin.api.v1.DebugBinding
  3781. (*DumpPublicIdActionMapRequest)(nil), // 37: olivetin.api.v1.DumpPublicIdActionMapRequest
  3782. (*DumpPublicIdActionMapResponse)(nil), // 38: olivetin.api.v1.DumpPublicIdActionMapResponse
  3783. (*GetReadyzRequest)(nil), // 39: olivetin.api.v1.GetReadyzRequest
  3784. (*GetReadyzResponse)(nil), // 40: olivetin.api.v1.GetReadyzResponse
  3785. (*EventStreamRequest)(nil), // 41: olivetin.api.v1.EventStreamRequest
  3786. (*EventStreamResponse)(nil), // 42: olivetin.api.v1.EventStreamResponse
  3787. (*EventOutputChunk)(nil), // 43: olivetin.api.v1.EventOutputChunk
  3788. (*EventEntityChanged)(nil), // 44: olivetin.api.v1.EventEntityChanged
  3789. (*EventConfigChanged)(nil), // 45: olivetin.api.v1.EventConfigChanged
  3790. (*EventExecutionFinished)(nil), // 46: olivetin.api.v1.EventExecutionFinished
  3791. (*EventExecutionStarted)(nil), // 47: olivetin.api.v1.EventExecutionStarted
  3792. (*KillActionRequest)(nil), // 48: olivetin.api.v1.KillActionRequest
  3793. (*KillActionResponse)(nil), // 49: olivetin.api.v1.KillActionResponse
  3794. (*LocalUserLoginRequest)(nil), // 50: olivetin.api.v1.LocalUserLoginRequest
  3795. (*LocalUserLoginResponse)(nil), // 51: olivetin.api.v1.LocalUserLoginResponse
  3796. (*PasswordHashRequest)(nil), // 52: olivetin.api.v1.PasswordHashRequest
  3797. (*PasswordHashResponse)(nil), // 53: olivetin.api.v1.PasswordHashResponse
  3798. (*LogoutRequest)(nil), // 54: olivetin.api.v1.LogoutRequest
  3799. (*LogoutResponse)(nil), // 55: olivetin.api.v1.LogoutResponse
  3800. (*GetDiagnosticsRequest)(nil), // 56: olivetin.api.v1.GetDiagnosticsRequest
  3801. (*GetDiagnosticsResponse)(nil), // 57: olivetin.api.v1.GetDiagnosticsResponse
  3802. (*InitRequest)(nil), // 58: olivetin.api.v1.InitRequest
  3803. (*InitResponse)(nil), // 59: olivetin.api.v1.InitResponse
  3804. (*AdditionalLink)(nil), // 60: olivetin.api.v1.AdditionalLink
  3805. (*OAuth2Provider)(nil), // 61: olivetin.api.v1.OAuth2Provider
  3806. (*GetActionBindingRequest)(nil), // 62: olivetin.api.v1.GetActionBindingRequest
  3807. (*GetActionBindingResponse)(nil), // 63: olivetin.api.v1.GetActionBindingResponse
  3808. (*GetEntitiesRequest)(nil), // 64: olivetin.api.v1.GetEntitiesRequest
  3809. (*GetEntitiesResponse)(nil), // 65: olivetin.api.v1.GetEntitiesResponse
  3810. (*EntityDefinition)(nil), // 66: olivetin.api.v1.EntityDefinition
  3811. (*GetEntityRequest)(nil), // 67: olivetin.api.v1.GetEntityRequest
  3812. (*RestartActionRequest)(nil), // 68: olivetin.api.v1.RestartActionRequest
  3813. nil, // 69: olivetin.api.v1.ActionWebhookExecHint.MatchHeadersEntry
  3814. nil, // 70: olivetin.api.v1.ActionWebhookExecHint.MatchQueryEntry
  3815. nil, // 71: olivetin.api.v1.ActionArgument.SuggestionsEntry
  3816. nil, // 72: olivetin.api.v1.Entity.FieldsEntry
  3817. nil, // 73: olivetin.api.v1.DumpVarsResponse.ContentsEntry
  3818. nil, // 74: olivetin.api.v1.DumpPublicIdActionMapResponse.ContentsEntry
  3819. }
  3820. var file_olivetin_api_v1_olivetin_proto_depIdxs = []int32{
  3821. 2, // 0: olivetin.api.v1.Action.arguments:type_name -> olivetin.api.v1.ActionArgument
  3822. 1, // 1: olivetin.api.v1.Action.exec_on_webhooks:type_name -> olivetin.api.v1.ActionWebhookExecHint
  3823. 69, // 2: olivetin.api.v1.ActionWebhookExecHint.match_headers:type_name -> olivetin.api.v1.ActionWebhookExecHint.MatchHeadersEntry
  3824. 70, // 3: olivetin.api.v1.ActionWebhookExecHint.match_query:type_name -> olivetin.api.v1.ActionWebhookExecHint.MatchQueryEntry
  3825. 3, // 4: olivetin.api.v1.ActionArgument.choices:type_name -> olivetin.api.v1.ActionArgumentChoice
  3826. 71, // 5: olivetin.api.v1.ActionArgument.suggestions:type_name -> olivetin.api.v1.ActionArgument.SuggestionsEntry
  3827. 72, // 6: olivetin.api.v1.Entity.fields:type_name -> olivetin.api.v1.Entity.FieldsEntry
  3828. 8, // 7: olivetin.api.v1.GetDashboardResponse.dashboard:type_name -> olivetin.api.v1.Dashboard
  3829. 9, // 8: olivetin.api.v1.Dashboard.contents:type_name -> olivetin.api.v1.DashboardComponent
  3830. 9, // 9: olivetin.api.v1.DashboardComponent.contents:type_name -> olivetin.api.v1.DashboardComponent
  3831. 0, // 10: olivetin.api.v1.DashboardComponent.action:type_name -> olivetin.api.v1.Action
  3832. 11, // 11: olivetin.api.v1.StartActionRequest.arguments:type_name -> olivetin.api.v1.StartActionArgument
  3833. 11, // 12: olivetin.api.v1.StartActionAndWaitRequest.arguments:type_name -> olivetin.api.v1.StartActionArgument
  3834. 20, // 13: olivetin.api.v1.StartActionAndWaitResponse.log_entry:type_name -> olivetin.api.v1.LogEntry
  3835. 20, // 14: olivetin.api.v1.StartActionByGetAndWaitResponse.log_entry:type_name -> olivetin.api.v1.LogEntry
  3836. 20, // 15: olivetin.api.v1.GetLogsResponse.logs:type_name -> olivetin.api.v1.LogEntry
  3837. 20, // 16: olivetin.api.v1.GetActionLogsResponse.logs:type_name -> olivetin.api.v1.LogEntry
  3838. 20, // 17: olivetin.api.v1.ExecutionStatusResponse.log_entry:type_name -> olivetin.api.v1.LogEntry
  3839. 73, // 18: olivetin.api.v1.DumpVarsResponse.contents:type_name -> olivetin.api.v1.DumpVarsResponse.ContentsEntry
  3840. 74, // 19: olivetin.api.v1.DumpPublicIdActionMapResponse.contents:type_name -> olivetin.api.v1.DumpPublicIdActionMapResponse.ContentsEntry
  3841. 44, // 20: olivetin.api.v1.EventStreamResponse.entity_changed:type_name -> olivetin.api.v1.EventEntityChanged
  3842. 45, // 21: olivetin.api.v1.EventStreamResponse.config_changed:type_name -> olivetin.api.v1.EventConfigChanged
  3843. 46, // 22: olivetin.api.v1.EventStreamResponse.execution_finished:type_name -> olivetin.api.v1.EventExecutionFinished
  3844. 47, // 23: olivetin.api.v1.EventStreamResponse.execution_started:type_name -> olivetin.api.v1.EventExecutionStarted
  3845. 43, // 24: olivetin.api.v1.EventStreamResponse.output_chunk:type_name -> olivetin.api.v1.EventOutputChunk
  3846. 20, // 25: olivetin.api.v1.EventExecutionFinished.log_entry:type_name -> olivetin.api.v1.LogEntry
  3847. 20, // 26: olivetin.api.v1.EventExecutionStarted.log_entry:type_name -> olivetin.api.v1.LogEntry
  3848. 61, // 27: olivetin.api.v1.InitResponse.oAuth2Providers:type_name -> olivetin.api.v1.OAuth2Provider
  3849. 60, // 28: olivetin.api.v1.InitResponse.additionalLinks:type_name -> olivetin.api.v1.AdditionalLink
  3850. 6, // 29: olivetin.api.v1.InitResponse.effective_policy:type_name -> olivetin.api.v1.EffectivePolicy
  3851. 0, // 30: olivetin.api.v1.GetActionBindingResponse.action:type_name -> olivetin.api.v1.Action
  3852. 66, // 31: olivetin.api.v1.GetEntitiesResponse.entity_definitions:type_name -> olivetin.api.v1.EntityDefinition
  3853. 4, // 32: olivetin.api.v1.EntityDefinition.instances:type_name -> olivetin.api.v1.Entity
  3854. 36, // 33: olivetin.api.v1.DumpPublicIdActionMapResponse.ContentsEntry.value:type_name -> olivetin.api.v1.DebugBinding
  3855. 7, // 34: olivetin.api.v1.OliveTinApiService.GetDashboard:input_type -> olivetin.api.v1.GetDashboardRequest
  3856. 10, // 35: olivetin.api.v1.OliveTinApiService.StartAction:input_type -> olivetin.api.v1.StartActionRequest
  3857. 13, // 36: olivetin.api.v1.OliveTinApiService.StartActionAndWait:input_type -> olivetin.api.v1.StartActionAndWaitRequest
  3858. 15, // 37: olivetin.api.v1.OliveTinApiService.StartActionByGet:input_type -> olivetin.api.v1.StartActionByGetRequest
  3859. 17, // 38: olivetin.api.v1.OliveTinApiService.StartActionByGetAndWait:input_type -> olivetin.api.v1.StartActionByGetAndWaitRequest
  3860. 68, // 39: olivetin.api.v1.OliveTinApiService.RestartAction:input_type -> olivetin.api.v1.RestartActionRequest
  3861. 48, // 40: olivetin.api.v1.OliveTinApiService.KillAction:input_type -> olivetin.api.v1.KillActionRequest
  3862. 28, // 41: olivetin.api.v1.OliveTinApiService.ExecutionStatus:input_type -> olivetin.api.v1.ExecutionStatusRequest
  3863. 19, // 42: olivetin.api.v1.OliveTinApiService.GetLogs:input_type -> olivetin.api.v1.GetLogsRequest
  3864. 22, // 43: olivetin.api.v1.OliveTinApiService.GetActionLogs:input_type -> olivetin.api.v1.GetActionLogsRequest
  3865. 24, // 44: olivetin.api.v1.OliveTinApiService.ValidateArgumentType:input_type -> olivetin.api.v1.ValidateArgumentTypeRequest
  3866. 30, // 45: olivetin.api.v1.OliveTinApiService.WhoAmI:input_type -> olivetin.api.v1.WhoAmIRequest
  3867. 32, // 46: olivetin.api.v1.OliveTinApiService.SosReport:input_type -> olivetin.api.v1.SosReportRequest
  3868. 34, // 47: olivetin.api.v1.OliveTinApiService.DumpVars:input_type -> olivetin.api.v1.DumpVarsRequest
  3869. 37, // 48: olivetin.api.v1.OliveTinApiService.DumpPublicIdActionMap:input_type -> olivetin.api.v1.DumpPublicIdActionMapRequest
  3870. 39, // 49: olivetin.api.v1.OliveTinApiService.GetReadyz:input_type -> olivetin.api.v1.GetReadyzRequest
  3871. 50, // 50: olivetin.api.v1.OliveTinApiService.LocalUserLogin:input_type -> olivetin.api.v1.LocalUserLoginRequest
  3872. 52, // 51: olivetin.api.v1.OliveTinApiService.PasswordHash:input_type -> olivetin.api.v1.PasswordHashRequest
  3873. 54, // 52: olivetin.api.v1.OliveTinApiService.Logout:input_type -> olivetin.api.v1.LogoutRequest
  3874. 41, // 53: olivetin.api.v1.OliveTinApiService.EventStream:input_type -> olivetin.api.v1.EventStreamRequest
  3875. 56, // 54: olivetin.api.v1.OliveTinApiService.GetDiagnostics:input_type -> olivetin.api.v1.GetDiagnosticsRequest
  3876. 58, // 55: olivetin.api.v1.OliveTinApiService.Init:input_type -> olivetin.api.v1.InitRequest
  3877. 62, // 56: olivetin.api.v1.OliveTinApiService.GetActionBinding:input_type -> olivetin.api.v1.GetActionBindingRequest
  3878. 64, // 57: olivetin.api.v1.OliveTinApiService.GetEntities:input_type -> olivetin.api.v1.GetEntitiesRequest
  3879. 67, // 58: olivetin.api.v1.OliveTinApiService.GetEntity:input_type -> olivetin.api.v1.GetEntityRequest
  3880. 5, // 59: olivetin.api.v1.OliveTinApiService.GetDashboard:output_type -> olivetin.api.v1.GetDashboardResponse
  3881. 12, // 60: olivetin.api.v1.OliveTinApiService.StartAction:output_type -> olivetin.api.v1.StartActionResponse
  3882. 14, // 61: olivetin.api.v1.OliveTinApiService.StartActionAndWait:output_type -> olivetin.api.v1.StartActionAndWaitResponse
  3883. 16, // 62: olivetin.api.v1.OliveTinApiService.StartActionByGet:output_type -> olivetin.api.v1.StartActionByGetResponse
  3884. 18, // 63: olivetin.api.v1.OliveTinApiService.StartActionByGetAndWait:output_type -> olivetin.api.v1.StartActionByGetAndWaitResponse
  3885. 12, // 64: olivetin.api.v1.OliveTinApiService.RestartAction:output_type -> olivetin.api.v1.StartActionResponse
  3886. 49, // 65: olivetin.api.v1.OliveTinApiService.KillAction:output_type -> olivetin.api.v1.KillActionResponse
  3887. 29, // 66: olivetin.api.v1.OliveTinApiService.ExecutionStatus:output_type -> olivetin.api.v1.ExecutionStatusResponse
  3888. 21, // 67: olivetin.api.v1.OliveTinApiService.GetLogs:output_type -> olivetin.api.v1.GetLogsResponse
  3889. 23, // 68: olivetin.api.v1.OliveTinApiService.GetActionLogs:output_type -> olivetin.api.v1.GetActionLogsResponse
  3890. 25, // 69: olivetin.api.v1.OliveTinApiService.ValidateArgumentType:output_type -> olivetin.api.v1.ValidateArgumentTypeResponse
  3891. 31, // 70: olivetin.api.v1.OliveTinApiService.WhoAmI:output_type -> olivetin.api.v1.WhoAmIResponse
  3892. 33, // 71: olivetin.api.v1.OliveTinApiService.SosReport:output_type -> olivetin.api.v1.SosReportResponse
  3893. 35, // 72: olivetin.api.v1.OliveTinApiService.DumpVars:output_type -> olivetin.api.v1.DumpVarsResponse
  3894. 38, // 73: olivetin.api.v1.OliveTinApiService.DumpPublicIdActionMap:output_type -> olivetin.api.v1.DumpPublicIdActionMapResponse
  3895. 40, // 74: olivetin.api.v1.OliveTinApiService.GetReadyz:output_type -> olivetin.api.v1.GetReadyzResponse
  3896. 51, // 75: olivetin.api.v1.OliveTinApiService.LocalUserLogin:output_type -> olivetin.api.v1.LocalUserLoginResponse
  3897. 53, // 76: olivetin.api.v1.OliveTinApiService.PasswordHash:output_type -> olivetin.api.v1.PasswordHashResponse
  3898. 55, // 77: olivetin.api.v1.OliveTinApiService.Logout:output_type -> olivetin.api.v1.LogoutResponse
  3899. 42, // 78: olivetin.api.v1.OliveTinApiService.EventStream:output_type -> olivetin.api.v1.EventStreamResponse
  3900. 57, // 79: olivetin.api.v1.OliveTinApiService.GetDiagnostics:output_type -> olivetin.api.v1.GetDiagnosticsResponse
  3901. 59, // 80: olivetin.api.v1.OliveTinApiService.Init:output_type -> olivetin.api.v1.InitResponse
  3902. 63, // 81: olivetin.api.v1.OliveTinApiService.GetActionBinding:output_type -> olivetin.api.v1.GetActionBindingResponse
  3903. 65, // 82: olivetin.api.v1.OliveTinApiService.GetEntities:output_type -> olivetin.api.v1.GetEntitiesResponse
  3904. 4, // 83: olivetin.api.v1.OliveTinApiService.GetEntity:output_type -> olivetin.api.v1.Entity
  3905. 59, // [59:84] is the sub-list for method output_type
  3906. 34, // [34:59] is the sub-list for method input_type
  3907. 34, // [34:34] is the sub-list for extension type_name
  3908. 34, // [34:34] is the sub-list for extension extendee
  3909. 0, // [0:34] is the sub-list for field type_name
  3910. }
  3911. func init() { file_olivetin_api_v1_olivetin_proto_init() }
  3912. func file_olivetin_api_v1_olivetin_proto_init() {
  3913. if File_olivetin_api_v1_olivetin_proto != nil {
  3914. return
  3915. }
  3916. file_olivetin_api_v1_olivetin_proto_msgTypes[42].OneofWrappers = []any{
  3917. (*EventStreamResponse_EntityChanged)(nil),
  3918. (*EventStreamResponse_ConfigChanged)(nil),
  3919. (*EventStreamResponse_ExecutionFinished)(nil),
  3920. (*EventStreamResponse_ExecutionStarted)(nil),
  3921. (*EventStreamResponse_OutputChunk)(nil),
  3922. }
  3923. type x struct{}
  3924. out := protoimpl.TypeBuilder{
  3925. File: protoimpl.DescBuilder{
  3926. GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
  3927. RawDescriptor: unsafe.Slice(unsafe.StringData(file_olivetin_api_v1_olivetin_proto_rawDesc), len(file_olivetin_api_v1_olivetin_proto_rawDesc)),
  3928. NumEnums: 0,
  3929. NumMessages: 75,
  3930. NumExtensions: 0,
  3931. NumServices: 1,
  3932. },
  3933. GoTypes: file_olivetin_api_v1_olivetin_proto_goTypes,
  3934. DependencyIndexes: file_olivetin_api_v1_olivetin_proto_depIdxs,
  3935. MessageInfos: file_olivetin_api_v1_olivetin_proto_msgTypes,
  3936. }.Build()
  3937. File_olivetin_api_v1_olivetin_proto = out.File
  3938. file_olivetin_api_v1_olivetin_proto_goTypes = nil
  3939. file_olivetin_api_v1_olivetin_proto_depIdxs = nil
  3940. }