| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172 |
- // Code generated by protoc-gen-go. DO NOT EDIT.
- // versions:
- // protoc-gen-go v1.36.11
- // protoc (unknown)
- // source: olivetin/api/v1/olivetin.proto
- package apiv1
- import (
- protoreflect "google.golang.org/protobuf/reflect/protoreflect"
- protoimpl "google.golang.org/protobuf/runtime/protoimpl"
- reflect "reflect"
- sync "sync"
- unsafe "unsafe"
- )
- const (
- // Verify that this generated code is sufficiently up-to-date.
- _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
- // Verify that runtime/protoimpl is sufficiently up-to-date.
- _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
- )
- type Action struct {
- state protoimpl.MessageState `protogen:"open.v1"`
- BindingId string `protobuf:"bytes,1,opt,name=binding_id,json=bindingId,proto3" json:"binding_id,omitempty"`
- Title string `protobuf:"bytes,2,opt,name=title,proto3" json:"title,omitempty"`
- Icon string `protobuf:"bytes,3,opt,name=icon,proto3" json:"icon,omitempty"`
- CanExec bool `protobuf:"varint,4,opt,name=can_exec,json=canExec,proto3" json:"can_exec,omitempty"`
- Arguments []*ActionArgument `protobuf:"bytes,5,rep,name=arguments,proto3" json:"arguments,omitempty"`
- PopupOnStart string `protobuf:"bytes,6,opt,name=popup_on_start,json=popupOnStart,proto3" json:"popup_on_start,omitempty"`
- Order int32 `protobuf:"varint,7,opt,name=order,proto3" json:"order,omitempty"`
- Timeout int32 `protobuf:"varint,8,opt,name=timeout,proto3" json:"timeout,omitempty"`
- 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"
- ExecOnStartup bool `protobuf:"varint,10,opt,name=exec_on_startup,json=execOnStartup,proto3" json:"exec_on_startup,omitempty"`
- ExecOnCron []string `protobuf:"bytes,11,rep,name=exec_on_cron,json=execOnCron,proto3" json:"exec_on_cron,omitempty"`
- ExecOnFileCreatedInDir []string `protobuf:"bytes,12,rep,name=exec_on_file_created_in_dir,json=execOnFileCreatedInDir,proto3" json:"exec_on_file_created_in_dir,omitempty"`
- ExecOnFileChangedInDir []string `protobuf:"bytes,13,rep,name=exec_on_file_changed_in_dir,json=execOnFileChangedInDir,proto3" json:"exec_on_file_changed_in_dir,omitempty"`
- ExecOnCalendarFile string `protobuf:"bytes,14,opt,name=exec_on_calendar_file,json=execOnCalendarFile,proto3" json:"exec_on_calendar_file,omitempty"`
- ExecOnWebhooks []*ActionWebhookExecHint `protobuf:"bytes,15,rep,name=exec_on_webhooks,json=execOnWebhooks,proto3" json:"exec_on_webhooks,omitempty"`
- Justification bool `protobuf:"varint,16,opt,name=justification,proto3" json:"justification,omitempty"`
- HasRunningInstance bool `protobuf:"varint,17,opt,name=has_running_instance,json=hasRunningInstance,proto3" json:"has_running_instance,omitempty"`
- HasQueuedInstance bool `protobuf:"varint,18,opt,name=has_queued_instance,json=hasQueuedInstance,proto3" json:"has_queued_instance,omitempty"`
- Groups []*ActionGroupMembership `protobuf:"bytes,19,rep,name=groups,proto3" json:"groups,omitempty"`
- unknownFields protoimpl.UnknownFields
- sizeCache protoimpl.SizeCache
- }
- func (x *Action) Reset() {
- *x = Action{}
- mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[0]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- func (x *Action) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*Action) ProtoMessage() {}
- func (x *Action) ProtoReflect() protoreflect.Message {
- mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[0]
- if x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use Action.ProtoReflect.Descriptor instead.
- func (*Action) Descriptor() ([]byte, []int) {
- return file_olivetin_api_v1_olivetin_proto_rawDescGZIP(), []int{0}
- }
- func (x *Action) GetBindingId() string {
- if x != nil {
- return x.BindingId
- }
- return ""
- }
- func (x *Action) GetTitle() string {
- if x != nil {
- return x.Title
- }
- return ""
- }
- func (x *Action) GetIcon() string {
- if x != nil {
- return x.Icon
- }
- return ""
- }
- func (x *Action) GetCanExec() bool {
- if x != nil {
- return x.CanExec
- }
- return false
- }
- func (x *Action) GetArguments() []*ActionArgument {
- if x != nil {
- return x.Arguments
- }
- return nil
- }
- func (x *Action) GetPopupOnStart() string {
- if x != nil {
- return x.PopupOnStart
- }
- return ""
- }
- func (x *Action) GetOrder() int32 {
- if x != nil {
- return x.Order
- }
- return 0
- }
- func (x *Action) GetTimeout() int32 {
- if x != nil {
- return x.Timeout
- }
- return 0
- }
- func (x *Action) GetDatetimeRateLimitExpires() string {
- if x != nil {
- return x.DatetimeRateLimitExpires
- }
- return ""
- }
- func (x *Action) GetExecOnStartup() bool {
- if x != nil {
- return x.ExecOnStartup
- }
- return false
- }
- func (x *Action) GetExecOnCron() []string {
- if x != nil {
- return x.ExecOnCron
- }
- return nil
- }
- func (x *Action) GetExecOnFileCreatedInDir() []string {
- if x != nil {
- return x.ExecOnFileCreatedInDir
- }
- return nil
- }
- func (x *Action) GetExecOnFileChangedInDir() []string {
- if x != nil {
- return x.ExecOnFileChangedInDir
- }
- return nil
- }
- func (x *Action) GetExecOnCalendarFile() string {
- if x != nil {
- return x.ExecOnCalendarFile
- }
- return ""
- }
- func (x *Action) GetExecOnWebhooks() []*ActionWebhookExecHint {
- if x != nil {
- return x.ExecOnWebhooks
- }
- return nil
- }
- func (x *Action) GetJustification() bool {
- if x != nil {
- return x.Justification
- }
- return false
- }
- func (x *Action) GetHasRunningInstance() bool {
- if x != nil {
- return x.HasRunningInstance
- }
- return false
- }
- func (x *Action) GetHasQueuedInstance() bool {
- if x != nil {
- return x.HasQueuedInstance
- }
- return false
- }
- func (x *Action) GetGroups() []*ActionGroupMembership {
- if x != nil {
- return x.Groups
- }
- return nil
- }
- type ActionGroupMembership struct {
- state protoimpl.MessageState `protogen:"open.v1"`
- Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
- MaxConcurrent int32 `protobuf:"varint,2,opt,name=max_concurrent,json=maxConcurrent,proto3" json:"max_concurrent,omitempty"`
- QueueSize int32 `protobuf:"varint,3,opt,name=queue_size,json=queueSize,proto3" json:"queue_size,omitempty"`
- unknownFields protoimpl.UnknownFields
- sizeCache protoimpl.SizeCache
- }
- func (x *ActionGroupMembership) Reset() {
- *x = ActionGroupMembership{}
- mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[1]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- func (x *ActionGroupMembership) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*ActionGroupMembership) ProtoMessage() {}
- func (x *ActionGroupMembership) ProtoReflect() protoreflect.Message {
- mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[1]
- if x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use ActionGroupMembership.ProtoReflect.Descriptor instead.
- func (*ActionGroupMembership) Descriptor() ([]byte, []int) {
- return file_olivetin_api_v1_olivetin_proto_rawDescGZIP(), []int{1}
- }
- func (x *ActionGroupMembership) GetName() string {
- if x != nil {
- return x.Name
- }
- return ""
- }
- func (x *ActionGroupMembership) GetMaxConcurrent() int32 {
- if x != nil {
- return x.MaxConcurrent
- }
- return 0
- }
- func (x *ActionGroupMembership) GetQueueSize() int32 {
- if x != nil {
- return x.QueueSize
- }
- return 0
- }
- type ActionWebhookExecHint struct {
- state protoimpl.MessageState `protogen:"open.v1"`
- Template string `protobuf:"bytes,1,opt,name=template,proto3" json:"template,omitempty"`
- MatchPath string `protobuf:"bytes,2,opt,name=match_path,json=matchPath,proto3" json:"match_path,omitempty"`
- 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"`
- 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"`
- unknownFields protoimpl.UnknownFields
- sizeCache protoimpl.SizeCache
- }
- func (x *ActionWebhookExecHint) Reset() {
- *x = ActionWebhookExecHint{}
- mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[2]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- func (x *ActionWebhookExecHint) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*ActionWebhookExecHint) ProtoMessage() {}
- func (x *ActionWebhookExecHint) ProtoReflect() protoreflect.Message {
- mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[2]
- if x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use ActionWebhookExecHint.ProtoReflect.Descriptor instead.
- func (*ActionWebhookExecHint) Descriptor() ([]byte, []int) {
- return file_olivetin_api_v1_olivetin_proto_rawDescGZIP(), []int{2}
- }
- func (x *ActionWebhookExecHint) GetTemplate() string {
- if x != nil {
- return x.Template
- }
- return ""
- }
- func (x *ActionWebhookExecHint) GetMatchPath() string {
- if x != nil {
- return x.MatchPath
- }
- return ""
- }
- func (x *ActionWebhookExecHint) GetMatchHeaders() map[string]string {
- if x != nil {
- return x.MatchHeaders
- }
- return nil
- }
- func (x *ActionWebhookExecHint) GetMatchQuery() map[string]string {
- if x != nil {
- return x.MatchQuery
- }
- return nil
- }
- type ActionArgument struct {
- state protoimpl.MessageState `protogen:"open.v1"`
- Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
- Title string `protobuf:"bytes,2,opt,name=title,proto3" json:"title,omitempty"`
- Type string `protobuf:"bytes,3,opt,name=type,proto3" json:"type,omitempty"`
- DefaultValue string `protobuf:"bytes,4,opt,name=default_value,json=defaultValue,proto3" json:"default_value,omitempty"`
- Choices []*ActionArgumentChoice `protobuf:"bytes,5,rep,name=choices,proto3" json:"choices,omitempty"`
- Description string `protobuf:"bytes,6,opt,name=description,proto3" json:"description,omitempty"`
- 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"`
- SuggestionsBrowserKey string `protobuf:"bytes,8,opt,name=suggestions_browser_key,json=suggestionsBrowserKey,proto3" json:"suggestions_browser_key,omitempty"`
- unknownFields protoimpl.UnknownFields
- sizeCache protoimpl.SizeCache
- }
- func (x *ActionArgument) Reset() {
- *x = ActionArgument{}
- mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[3]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- func (x *ActionArgument) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*ActionArgument) ProtoMessage() {}
- func (x *ActionArgument) ProtoReflect() protoreflect.Message {
- mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[3]
- if x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use ActionArgument.ProtoReflect.Descriptor instead.
- func (*ActionArgument) Descriptor() ([]byte, []int) {
- return file_olivetin_api_v1_olivetin_proto_rawDescGZIP(), []int{3}
- }
- func (x *ActionArgument) GetName() string {
- if x != nil {
- return x.Name
- }
- return ""
- }
- func (x *ActionArgument) GetTitle() string {
- if x != nil {
- return x.Title
- }
- return ""
- }
- func (x *ActionArgument) GetType() string {
- if x != nil {
- return x.Type
- }
- return ""
- }
- func (x *ActionArgument) GetDefaultValue() string {
- if x != nil {
- return x.DefaultValue
- }
- return ""
- }
- func (x *ActionArgument) GetChoices() []*ActionArgumentChoice {
- if x != nil {
- return x.Choices
- }
- return nil
- }
- func (x *ActionArgument) GetDescription() string {
- if x != nil {
- return x.Description
- }
- return ""
- }
- func (x *ActionArgument) GetSuggestions() map[string]string {
- if x != nil {
- return x.Suggestions
- }
- return nil
- }
- func (x *ActionArgument) GetSuggestionsBrowserKey() string {
- if x != nil {
- return x.SuggestionsBrowserKey
- }
- return ""
- }
- type ActionArgumentChoice struct {
- state protoimpl.MessageState `protogen:"open.v1"`
- Value string `protobuf:"bytes,1,opt,name=value,proto3" json:"value,omitempty"`
- Title string `protobuf:"bytes,2,opt,name=title,proto3" json:"title,omitempty"`
- unknownFields protoimpl.UnknownFields
- sizeCache protoimpl.SizeCache
- }
- func (x *ActionArgumentChoice) Reset() {
- *x = ActionArgumentChoice{}
- mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[4]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- func (x *ActionArgumentChoice) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*ActionArgumentChoice) ProtoMessage() {}
- func (x *ActionArgumentChoice) ProtoReflect() protoreflect.Message {
- mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[4]
- if x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use ActionArgumentChoice.ProtoReflect.Descriptor instead.
- func (*ActionArgumentChoice) Descriptor() ([]byte, []int) {
- return file_olivetin_api_v1_olivetin_proto_rawDescGZIP(), []int{4}
- }
- func (x *ActionArgumentChoice) GetValue() string {
- if x != nil {
- return x.Value
- }
- return ""
- }
- func (x *ActionArgumentChoice) GetTitle() string {
- if x != nil {
- return x.Title
- }
- return ""
- }
- type Entity struct {
- state protoimpl.MessageState `protogen:"open.v1"`
- Title string `protobuf:"bytes,1,opt,name=title,proto3" json:"title,omitempty"`
- UniqueKey string `protobuf:"bytes,2,opt,name=unique_key,json=uniqueKey,proto3" json:"unique_key,omitempty"`
- Type string `protobuf:"bytes,3,opt,name=type,proto3" json:"type,omitempty"`
- Directories []string `protobuf:"bytes,4,rep,name=directories,proto3" json:"directories,omitempty"`
- 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"`
- unknownFields protoimpl.UnknownFields
- sizeCache protoimpl.SizeCache
- }
- func (x *Entity) Reset() {
- *x = Entity{}
- mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[5]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- func (x *Entity) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*Entity) ProtoMessage() {}
- func (x *Entity) ProtoReflect() protoreflect.Message {
- mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[5]
- if x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use Entity.ProtoReflect.Descriptor instead.
- func (*Entity) Descriptor() ([]byte, []int) {
- return file_olivetin_api_v1_olivetin_proto_rawDescGZIP(), []int{5}
- }
- func (x *Entity) GetTitle() string {
- if x != nil {
- return x.Title
- }
- return ""
- }
- func (x *Entity) GetUniqueKey() string {
- if x != nil {
- return x.UniqueKey
- }
- return ""
- }
- func (x *Entity) GetType() string {
- if x != nil {
- return x.Type
- }
- return ""
- }
- func (x *Entity) GetDirectories() []string {
- if x != nil {
- return x.Directories
- }
- return nil
- }
- func (x *Entity) GetFields() map[string]string {
- if x != nil {
- return x.Fields
- }
- return nil
- }
- type GetDashboardResponse struct {
- state protoimpl.MessageState `protogen:"open.v1"`
- Title string `protobuf:"bytes,1,opt,name=title,proto3" json:"title,omitempty"`
- Dashboard *Dashboard `protobuf:"bytes,4,opt,name=dashboard,proto3" json:"dashboard,omitempty"`
- unknownFields protoimpl.UnknownFields
- sizeCache protoimpl.SizeCache
- }
- func (x *GetDashboardResponse) Reset() {
- *x = GetDashboardResponse{}
- mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[6]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- func (x *GetDashboardResponse) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*GetDashboardResponse) ProtoMessage() {}
- func (x *GetDashboardResponse) ProtoReflect() protoreflect.Message {
- mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[6]
- if x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use GetDashboardResponse.ProtoReflect.Descriptor instead.
- func (*GetDashboardResponse) Descriptor() ([]byte, []int) {
- return file_olivetin_api_v1_olivetin_proto_rawDescGZIP(), []int{6}
- }
- func (x *GetDashboardResponse) GetTitle() string {
- if x != nil {
- return x.Title
- }
- return ""
- }
- func (x *GetDashboardResponse) GetDashboard() *Dashboard {
- if x != nil {
- return x.Dashboard
- }
- return nil
- }
- type EffectivePolicy struct {
- state protoimpl.MessageState `protogen:"open.v1"`
- ShowDiagnostics bool `protobuf:"varint,1,opt,name=show_diagnostics,json=showDiagnostics,proto3" json:"show_diagnostics,omitempty"`
- ShowLogList bool `protobuf:"varint,2,opt,name=show_log_list,json=showLogList,proto3" json:"show_log_list,omitempty"`
- ShowVersionNumber bool `protobuf:"varint,3,opt,name=show_version_number,json=showVersionNumber,proto3" json:"show_version_number,omitempty"`
- unknownFields protoimpl.UnknownFields
- sizeCache protoimpl.SizeCache
- }
- func (x *EffectivePolicy) Reset() {
- *x = EffectivePolicy{}
- mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[7]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- func (x *EffectivePolicy) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*EffectivePolicy) ProtoMessage() {}
- func (x *EffectivePolicy) ProtoReflect() protoreflect.Message {
- mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[7]
- if x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use EffectivePolicy.ProtoReflect.Descriptor instead.
- func (*EffectivePolicy) Descriptor() ([]byte, []int) {
- return file_olivetin_api_v1_olivetin_proto_rawDescGZIP(), []int{7}
- }
- func (x *EffectivePolicy) GetShowDiagnostics() bool {
- if x != nil {
- return x.ShowDiagnostics
- }
- return false
- }
- func (x *EffectivePolicy) GetShowLogList() bool {
- if x != nil {
- return x.ShowLogList
- }
- return false
- }
- func (x *EffectivePolicy) GetShowVersionNumber() bool {
- if x != nil {
- return x.ShowVersionNumber
- }
- return false
- }
- type GetDashboardRequest struct {
- state protoimpl.MessageState `protogen:"open.v1"`
- Title string `protobuf:"bytes,1,opt,name=title,proto3" json:"title,omitempty"`
- EntityType string `protobuf:"bytes,2,opt,name=entity_type,json=entityType,proto3" json:"entity_type,omitempty"`
- EntityKey string `protobuf:"bytes,3,opt,name=entity_key,json=entityKey,proto3" json:"entity_key,omitempty"`
- unknownFields protoimpl.UnknownFields
- sizeCache protoimpl.SizeCache
- }
- func (x *GetDashboardRequest) Reset() {
- *x = GetDashboardRequest{}
- mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[8]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- func (x *GetDashboardRequest) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*GetDashboardRequest) ProtoMessage() {}
- func (x *GetDashboardRequest) ProtoReflect() protoreflect.Message {
- mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[8]
- if x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use GetDashboardRequest.ProtoReflect.Descriptor instead.
- func (*GetDashboardRequest) Descriptor() ([]byte, []int) {
- return file_olivetin_api_v1_olivetin_proto_rawDescGZIP(), []int{8}
- }
- func (x *GetDashboardRequest) GetTitle() string {
- if x != nil {
- return x.Title
- }
- return ""
- }
- func (x *GetDashboardRequest) GetEntityType() string {
- if x != nil {
- return x.EntityType
- }
- return ""
- }
- func (x *GetDashboardRequest) GetEntityKey() string {
- if x != nil {
- return x.EntityKey
- }
- return ""
- }
- type Dashboard struct {
- state protoimpl.MessageState `protogen:"open.v1"`
- Title string `protobuf:"bytes,1,opt,name=title,proto3" json:"title,omitempty"`
- Contents []*DashboardComponent `protobuf:"bytes,2,rep,name=contents,proto3" json:"contents,omitempty"`
- unknownFields protoimpl.UnknownFields
- sizeCache protoimpl.SizeCache
- }
- func (x *Dashboard) Reset() {
- *x = Dashboard{}
- mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[9]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- func (x *Dashboard) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*Dashboard) ProtoMessage() {}
- func (x *Dashboard) ProtoReflect() protoreflect.Message {
- mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[9]
- if x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use Dashboard.ProtoReflect.Descriptor instead.
- func (*Dashboard) Descriptor() ([]byte, []int) {
- return file_olivetin_api_v1_olivetin_proto_rawDescGZIP(), []int{9}
- }
- func (x *Dashboard) GetTitle() string {
- if x != nil {
- return x.Title
- }
- return ""
- }
- func (x *Dashboard) GetContents() []*DashboardComponent {
- if x != nil {
- return x.Contents
- }
- return nil
- }
- type DashboardComponent struct {
- state protoimpl.MessageState `protogen:"open.v1"`
- Title string `protobuf:"bytes,1,opt,name=title,proto3" json:"title,omitempty"`
- Type string `protobuf:"bytes,2,opt,name=type,proto3" json:"type,omitempty"`
- Contents []*DashboardComponent `protobuf:"bytes,3,rep,name=contents,proto3" json:"contents,omitempty"`
- Icon string `protobuf:"bytes,4,opt,name=icon,proto3" json:"icon,omitempty"`
- CssClass string `protobuf:"bytes,5,opt,name=css_class,json=cssClass,proto3" json:"css_class,omitempty"`
- Action *Action `protobuf:"bytes,6,opt,name=action,proto3" json:"action,omitempty"`
- EntityType string `protobuf:"bytes,7,opt,name=entity_type,json=entityType,proto3" json:"entity_type,omitempty"`
- EntityKey string `protobuf:"bytes,8,opt,name=entity_key,json=entityKey,proto3" json:"entity_key,omitempty"`
- unknownFields protoimpl.UnknownFields
- sizeCache protoimpl.SizeCache
- }
- func (x *DashboardComponent) Reset() {
- *x = DashboardComponent{}
- mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[10]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- func (x *DashboardComponent) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*DashboardComponent) ProtoMessage() {}
- func (x *DashboardComponent) ProtoReflect() protoreflect.Message {
- mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[10]
- if x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use DashboardComponent.ProtoReflect.Descriptor instead.
- func (*DashboardComponent) Descriptor() ([]byte, []int) {
- return file_olivetin_api_v1_olivetin_proto_rawDescGZIP(), []int{10}
- }
- func (x *DashboardComponent) GetTitle() string {
- if x != nil {
- return x.Title
- }
- return ""
- }
- func (x *DashboardComponent) GetType() string {
- if x != nil {
- return x.Type
- }
- return ""
- }
- func (x *DashboardComponent) GetContents() []*DashboardComponent {
- if x != nil {
- return x.Contents
- }
- return nil
- }
- func (x *DashboardComponent) GetIcon() string {
- if x != nil {
- return x.Icon
- }
- return ""
- }
- func (x *DashboardComponent) GetCssClass() string {
- if x != nil {
- return x.CssClass
- }
- return ""
- }
- func (x *DashboardComponent) GetAction() *Action {
- if x != nil {
- return x.Action
- }
- return nil
- }
- func (x *DashboardComponent) GetEntityType() string {
- if x != nil {
- return x.EntityType
- }
- return ""
- }
- func (x *DashboardComponent) GetEntityKey() string {
- if x != nil {
- return x.EntityKey
- }
- return ""
- }
- type StartActionRequest struct {
- state protoimpl.MessageState `protogen:"open.v1"`
- BindingId string `protobuf:"bytes,1,opt,name=binding_id,json=bindingId,proto3" json:"binding_id,omitempty"`
- Arguments []*StartActionArgument `protobuf:"bytes,2,rep,name=arguments,proto3" json:"arguments,omitempty"`
- UniqueTrackingId string `protobuf:"bytes,3,opt,name=unique_tracking_id,json=uniqueTrackingId,proto3" json:"unique_tracking_id,omitempty"`
- Justification string `protobuf:"bytes,4,opt,name=justification,proto3" json:"justification,omitempty"`
- unknownFields protoimpl.UnknownFields
- sizeCache protoimpl.SizeCache
- }
- func (x *StartActionRequest) Reset() {
- *x = StartActionRequest{}
- mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[11]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- func (x *StartActionRequest) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*StartActionRequest) ProtoMessage() {}
- func (x *StartActionRequest) ProtoReflect() protoreflect.Message {
- mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[11]
- if x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use StartActionRequest.ProtoReflect.Descriptor instead.
- func (*StartActionRequest) Descriptor() ([]byte, []int) {
- return file_olivetin_api_v1_olivetin_proto_rawDescGZIP(), []int{11}
- }
- func (x *StartActionRequest) GetBindingId() string {
- if x != nil {
- return x.BindingId
- }
- return ""
- }
- func (x *StartActionRequest) GetArguments() []*StartActionArgument {
- if x != nil {
- return x.Arguments
- }
- return nil
- }
- func (x *StartActionRequest) GetUniqueTrackingId() string {
- if x != nil {
- return x.UniqueTrackingId
- }
- return ""
- }
- func (x *StartActionRequest) GetJustification() string {
- if x != nil {
- return x.Justification
- }
- return ""
- }
- type StartActionArgument struct {
- state protoimpl.MessageState `protogen:"open.v1"`
- Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
- Value string `protobuf:"bytes,2,opt,name=value,proto3" json:"value,omitempty"`
- unknownFields protoimpl.UnknownFields
- sizeCache protoimpl.SizeCache
- }
- func (x *StartActionArgument) Reset() {
- *x = StartActionArgument{}
- mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[12]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- func (x *StartActionArgument) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*StartActionArgument) ProtoMessage() {}
- func (x *StartActionArgument) ProtoReflect() protoreflect.Message {
- mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[12]
- if x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use StartActionArgument.ProtoReflect.Descriptor instead.
- func (*StartActionArgument) Descriptor() ([]byte, []int) {
- return file_olivetin_api_v1_olivetin_proto_rawDescGZIP(), []int{12}
- }
- func (x *StartActionArgument) GetName() string {
- if x != nil {
- return x.Name
- }
- return ""
- }
- func (x *StartActionArgument) GetValue() string {
- if x != nil {
- return x.Value
- }
- return ""
- }
- type StartActionResponse struct {
- state protoimpl.MessageState `protogen:"open.v1"`
- ExecutionTrackingId string `protobuf:"bytes,2,opt,name=execution_tracking_id,json=executionTrackingId,proto3" json:"execution_tracking_id,omitempty"`
- unknownFields protoimpl.UnknownFields
- sizeCache protoimpl.SizeCache
- }
- func (x *StartActionResponse) Reset() {
- *x = StartActionResponse{}
- mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[13]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- func (x *StartActionResponse) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*StartActionResponse) ProtoMessage() {}
- func (x *StartActionResponse) ProtoReflect() protoreflect.Message {
- mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[13]
- if x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use StartActionResponse.ProtoReflect.Descriptor instead.
- func (*StartActionResponse) Descriptor() ([]byte, []int) {
- return file_olivetin_api_v1_olivetin_proto_rawDescGZIP(), []int{13}
- }
- func (x *StartActionResponse) GetExecutionTrackingId() string {
- if x != nil {
- return x.ExecutionTrackingId
- }
- return ""
- }
- type StartActionAndWaitRequest struct {
- state protoimpl.MessageState `protogen:"open.v1"`
- ActionId string `protobuf:"bytes,1,opt,name=action_id,json=actionId,proto3" json:"action_id,omitempty"`
- Arguments []*StartActionArgument `protobuf:"bytes,2,rep,name=arguments,proto3" json:"arguments,omitempty"`
- Justification string `protobuf:"bytes,3,opt,name=justification,proto3" json:"justification,omitempty"`
- unknownFields protoimpl.UnknownFields
- sizeCache protoimpl.SizeCache
- }
- func (x *StartActionAndWaitRequest) Reset() {
- *x = StartActionAndWaitRequest{}
- mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[14]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- func (x *StartActionAndWaitRequest) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*StartActionAndWaitRequest) ProtoMessage() {}
- func (x *StartActionAndWaitRequest) ProtoReflect() protoreflect.Message {
- mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[14]
- if x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use StartActionAndWaitRequest.ProtoReflect.Descriptor instead.
- func (*StartActionAndWaitRequest) Descriptor() ([]byte, []int) {
- return file_olivetin_api_v1_olivetin_proto_rawDescGZIP(), []int{14}
- }
- func (x *StartActionAndWaitRequest) GetActionId() string {
- if x != nil {
- return x.ActionId
- }
- return ""
- }
- func (x *StartActionAndWaitRequest) GetArguments() []*StartActionArgument {
- if x != nil {
- return x.Arguments
- }
- return nil
- }
- func (x *StartActionAndWaitRequest) GetJustification() string {
- if x != nil {
- return x.Justification
- }
- return ""
- }
- type StartActionAndWaitResponse struct {
- state protoimpl.MessageState `protogen:"open.v1"`
- LogEntry *LogEntry `protobuf:"bytes,1,opt,name=log_entry,json=logEntry,proto3" json:"log_entry,omitempty"`
- unknownFields protoimpl.UnknownFields
- sizeCache protoimpl.SizeCache
- }
- func (x *StartActionAndWaitResponse) Reset() {
- *x = StartActionAndWaitResponse{}
- mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[15]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- func (x *StartActionAndWaitResponse) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*StartActionAndWaitResponse) ProtoMessage() {}
- func (x *StartActionAndWaitResponse) ProtoReflect() protoreflect.Message {
- mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[15]
- if x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use StartActionAndWaitResponse.ProtoReflect.Descriptor instead.
- func (*StartActionAndWaitResponse) Descriptor() ([]byte, []int) {
- return file_olivetin_api_v1_olivetin_proto_rawDescGZIP(), []int{15}
- }
- func (x *StartActionAndWaitResponse) GetLogEntry() *LogEntry {
- if x != nil {
- return x.LogEntry
- }
- return nil
- }
- type StartActionByGetRequest struct {
- state protoimpl.MessageState `protogen:"open.v1"`
- ActionId string `protobuf:"bytes,1,opt,name=action_id,json=actionId,proto3" json:"action_id,omitempty"`
- unknownFields protoimpl.UnknownFields
- sizeCache protoimpl.SizeCache
- }
- func (x *StartActionByGetRequest) Reset() {
- *x = StartActionByGetRequest{}
- mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[16]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- func (x *StartActionByGetRequest) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*StartActionByGetRequest) ProtoMessage() {}
- func (x *StartActionByGetRequest) ProtoReflect() protoreflect.Message {
- mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[16]
- if x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use StartActionByGetRequest.ProtoReflect.Descriptor instead.
- func (*StartActionByGetRequest) Descriptor() ([]byte, []int) {
- return file_olivetin_api_v1_olivetin_proto_rawDescGZIP(), []int{16}
- }
- func (x *StartActionByGetRequest) GetActionId() string {
- if x != nil {
- return x.ActionId
- }
- return ""
- }
- type StartActionByGetResponse struct {
- state protoimpl.MessageState `protogen:"open.v1"`
- ExecutionTrackingId string `protobuf:"bytes,2,opt,name=execution_tracking_id,json=executionTrackingId,proto3" json:"execution_tracking_id,omitempty"`
- unknownFields protoimpl.UnknownFields
- sizeCache protoimpl.SizeCache
- }
- func (x *StartActionByGetResponse) Reset() {
- *x = StartActionByGetResponse{}
- mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[17]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- func (x *StartActionByGetResponse) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*StartActionByGetResponse) ProtoMessage() {}
- func (x *StartActionByGetResponse) ProtoReflect() protoreflect.Message {
- mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[17]
- if x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use StartActionByGetResponse.ProtoReflect.Descriptor instead.
- func (*StartActionByGetResponse) Descriptor() ([]byte, []int) {
- return file_olivetin_api_v1_olivetin_proto_rawDescGZIP(), []int{17}
- }
- func (x *StartActionByGetResponse) GetExecutionTrackingId() string {
- if x != nil {
- return x.ExecutionTrackingId
- }
- return ""
- }
- type StartActionByGetAndWaitRequest struct {
- state protoimpl.MessageState `protogen:"open.v1"`
- ActionId string `protobuf:"bytes,1,opt,name=action_id,json=actionId,proto3" json:"action_id,omitempty"`
- unknownFields protoimpl.UnknownFields
- sizeCache protoimpl.SizeCache
- }
- func (x *StartActionByGetAndWaitRequest) Reset() {
- *x = StartActionByGetAndWaitRequest{}
- mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[18]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- func (x *StartActionByGetAndWaitRequest) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*StartActionByGetAndWaitRequest) ProtoMessage() {}
- func (x *StartActionByGetAndWaitRequest) ProtoReflect() protoreflect.Message {
- mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[18]
- if x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use StartActionByGetAndWaitRequest.ProtoReflect.Descriptor instead.
- func (*StartActionByGetAndWaitRequest) Descriptor() ([]byte, []int) {
- return file_olivetin_api_v1_olivetin_proto_rawDescGZIP(), []int{18}
- }
- func (x *StartActionByGetAndWaitRequest) GetActionId() string {
- if x != nil {
- return x.ActionId
- }
- return ""
- }
- type StartActionByGetAndWaitResponse struct {
- state protoimpl.MessageState `protogen:"open.v1"`
- LogEntry *LogEntry `protobuf:"bytes,1,opt,name=log_entry,json=logEntry,proto3" json:"log_entry,omitempty"`
- unknownFields protoimpl.UnknownFields
- sizeCache protoimpl.SizeCache
- }
- func (x *StartActionByGetAndWaitResponse) Reset() {
- *x = StartActionByGetAndWaitResponse{}
- mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[19]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- func (x *StartActionByGetAndWaitResponse) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*StartActionByGetAndWaitResponse) ProtoMessage() {}
- func (x *StartActionByGetAndWaitResponse) ProtoReflect() protoreflect.Message {
- mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[19]
- if x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use StartActionByGetAndWaitResponse.ProtoReflect.Descriptor instead.
- func (*StartActionByGetAndWaitResponse) Descriptor() ([]byte, []int) {
- return file_olivetin_api_v1_olivetin_proto_rawDescGZIP(), []int{19}
- }
- func (x *StartActionByGetAndWaitResponse) GetLogEntry() *LogEntry {
- if x != nil {
- return x.LogEntry
- }
- return nil
- }
- type GetLogsRequest struct {
- state protoimpl.MessageState `protogen:"open.v1"`
- StartOffset int64 `protobuf:"varint,1,opt,name=start_offset,json=startOffset,proto3" json:"start_offset,omitempty"`
- DateFilter string `protobuf:"bytes,2,opt,name=date_filter,json=dateFilter,proto3" json:"date_filter,omitempty"` // Optional date filter in YYYY-MM-DD format
- 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)
- Filter string `protobuf:"bytes,4,opt,name=filter,proto3" json:"filter,omitempty"` // Optional filter expression (see logs UI syntax help)
- unknownFields protoimpl.UnknownFields
- sizeCache protoimpl.SizeCache
- }
- func (x *GetLogsRequest) Reset() {
- *x = GetLogsRequest{}
- mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[20]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- func (x *GetLogsRequest) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*GetLogsRequest) ProtoMessage() {}
- func (x *GetLogsRequest) ProtoReflect() protoreflect.Message {
- mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[20]
- if x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use GetLogsRequest.ProtoReflect.Descriptor instead.
- func (*GetLogsRequest) Descriptor() ([]byte, []int) {
- return file_olivetin_api_v1_olivetin_proto_rawDescGZIP(), []int{20}
- }
- func (x *GetLogsRequest) GetStartOffset() int64 {
- if x != nil {
- return x.StartOffset
- }
- return 0
- }
- func (x *GetLogsRequest) GetDateFilter() string {
- if x != nil {
- return x.DateFilter
- }
- return ""
- }
- func (x *GetLogsRequest) GetPageSize() int64 {
- if x != nil {
- return x.PageSize
- }
- return 0
- }
- func (x *GetLogsRequest) GetFilter() string {
- if x != nil {
- return x.Filter
- }
- return ""
- }
- type LogEntry struct {
- state protoimpl.MessageState `protogen:"open.v1"`
- DatetimeStarted string `protobuf:"bytes,1,opt,name=datetime_started,json=datetimeStarted,proto3" json:"datetime_started,omitempty"`
- ActionTitle string `protobuf:"bytes,2,opt,name=action_title,json=actionTitle,proto3" json:"action_title,omitempty"`
- Output string `protobuf:"bytes,3,opt,name=output,proto3" json:"output,omitempty"`
- TimedOut bool `protobuf:"varint,5,opt,name=timed_out,json=timedOut,proto3" json:"timed_out,omitempty"`
- ExitCode int32 `protobuf:"varint,6,opt,name=exit_code,json=exitCode,proto3" json:"exit_code,omitempty"`
- User string `protobuf:"bytes,7,opt,name=user,proto3" json:"user,omitempty"`
- UserClass string `protobuf:"bytes,8,opt,name=user_class,json=userClass,proto3" json:"user_class,omitempty"`
- ActionIcon string `protobuf:"bytes,9,opt,name=action_icon,json=actionIcon,proto3" json:"action_icon,omitempty"`
- Tags []string `protobuf:"bytes,10,rep,name=tags,proto3" json:"tags,omitempty"`
- ExecutionTrackingId string `protobuf:"bytes,11,opt,name=execution_tracking_id,json=executionTrackingId,proto3" json:"execution_tracking_id,omitempty"`
- DatetimeFinished string `protobuf:"bytes,12,opt,name=datetime_finished,json=datetimeFinished,proto3" json:"datetime_finished,omitempty"`
- ExecutionStarted bool `protobuf:"varint,14,opt,name=execution_started,json=executionStarted,proto3" json:"execution_started,omitempty"`
- ExecutionFinished bool `protobuf:"varint,15,opt,name=execution_finished,json=executionFinished,proto3" json:"execution_finished,omitempty"`
- Blocked bool `protobuf:"varint,16,opt,name=blocked,proto3" json:"blocked,omitempty"`
- DatetimeIndex int64 `protobuf:"varint,17,opt,name=datetime_index,json=datetimeIndex,proto3" json:"datetime_index,omitempty"`
- CanKill bool `protobuf:"varint,18,opt,name=can_kill,json=canKill,proto3" json:"can_kill,omitempty"`
- 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"
- 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
- Queued bool `protobuf:"varint,21,opt,name=queued,proto3" json:"queued,omitempty"`
- QueuedForGroup string `protobuf:"bytes,22,opt,name=queued_for_group,json=queuedForGroup,proto3" json:"queued_for_group,omitempty"`
- Justification string `protobuf:"bytes,23,opt,name=justification,proto3" json:"justification,omitempty"`
- unknownFields protoimpl.UnknownFields
- sizeCache protoimpl.SizeCache
- }
- func (x *LogEntry) Reset() {
- *x = LogEntry{}
- mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[21]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- func (x *LogEntry) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*LogEntry) ProtoMessage() {}
- func (x *LogEntry) ProtoReflect() protoreflect.Message {
- mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[21]
- if x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use LogEntry.ProtoReflect.Descriptor instead.
- func (*LogEntry) Descriptor() ([]byte, []int) {
- return file_olivetin_api_v1_olivetin_proto_rawDescGZIP(), []int{21}
- }
- func (x *LogEntry) GetDatetimeStarted() string {
- if x != nil {
- return x.DatetimeStarted
- }
- return ""
- }
- func (x *LogEntry) GetActionTitle() string {
- if x != nil {
- return x.ActionTitle
- }
- return ""
- }
- func (x *LogEntry) GetOutput() string {
- if x != nil {
- return x.Output
- }
- return ""
- }
- func (x *LogEntry) GetTimedOut() bool {
- if x != nil {
- return x.TimedOut
- }
- return false
- }
- func (x *LogEntry) GetExitCode() int32 {
- if x != nil {
- return x.ExitCode
- }
- return 0
- }
- func (x *LogEntry) GetUser() string {
- if x != nil {
- return x.User
- }
- return ""
- }
- func (x *LogEntry) GetUserClass() string {
- if x != nil {
- return x.UserClass
- }
- return ""
- }
- func (x *LogEntry) GetActionIcon() string {
- if x != nil {
- return x.ActionIcon
- }
- return ""
- }
- func (x *LogEntry) GetTags() []string {
- if x != nil {
- return x.Tags
- }
- return nil
- }
- func (x *LogEntry) GetExecutionTrackingId() string {
- if x != nil {
- return x.ExecutionTrackingId
- }
- return ""
- }
- func (x *LogEntry) GetDatetimeFinished() string {
- if x != nil {
- return x.DatetimeFinished
- }
- return ""
- }
- func (x *LogEntry) GetExecutionStarted() bool {
- if x != nil {
- return x.ExecutionStarted
- }
- return false
- }
- func (x *LogEntry) GetExecutionFinished() bool {
- if x != nil {
- return x.ExecutionFinished
- }
- return false
- }
- func (x *LogEntry) GetBlocked() bool {
- if x != nil {
- return x.Blocked
- }
- return false
- }
- func (x *LogEntry) GetDatetimeIndex() int64 {
- if x != nil {
- return x.DatetimeIndex
- }
- return 0
- }
- func (x *LogEntry) GetCanKill() bool {
- if x != nil {
- return x.CanKill
- }
- return false
- }
- func (x *LogEntry) GetDatetimeRateLimitExpires() string {
- if x != nil {
- return x.DatetimeRateLimitExpires
- }
- return ""
- }
- func (x *LogEntry) GetBindingId() string {
- if x != nil {
- return x.BindingId
- }
- return ""
- }
- func (x *LogEntry) GetQueued() bool {
- if x != nil {
- return x.Queued
- }
- return false
- }
- func (x *LogEntry) GetQueuedForGroup() string {
- if x != nil {
- return x.QueuedForGroup
- }
- return ""
- }
- func (x *LogEntry) GetJustification() string {
- if x != nil {
- return x.Justification
- }
- return ""
- }
- type GetLogsResponse struct {
- state protoimpl.MessageState `protogen:"open.v1"`
- Logs []*LogEntry `protobuf:"bytes,1,rep,name=logs,proto3" json:"logs,omitempty"`
- CountRemaining int64 `protobuf:"varint,2,opt,name=count_remaining,json=countRemaining,proto3" json:"count_remaining,omitempty"`
- PageSize int64 `protobuf:"varint,3,opt,name=page_size,json=pageSize,proto3" json:"page_size,omitempty"`
- TotalCount int64 `protobuf:"varint,4,opt,name=total_count,json=totalCount,proto3" json:"total_count,omitempty"`
- StartOffset int64 `protobuf:"varint,5,opt,name=start_offset,json=startOffset,proto3" json:"start_offset,omitempty"`
- unknownFields protoimpl.UnknownFields
- sizeCache protoimpl.SizeCache
- }
- func (x *GetLogsResponse) Reset() {
- *x = GetLogsResponse{}
- mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[22]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- func (x *GetLogsResponse) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*GetLogsResponse) ProtoMessage() {}
- func (x *GetLogsResponse) ProtoReflect() protoreflect.Message {
- mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[22]
- if x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use GetLogsResponse.ProtoReflect.Descriptor instead.
- func (*GetLogsResponse) Descriptor() ([]byte, []int) {
- return file_olivetin_api_v1_olivetin_proto_rawDescGZIP(), []int{22}
- }
- func (x *GetLogsResponse) GetLogs() []*LogEntry {
- if x != nil {
- return x.Logs
- }
- return nil
- }
- func (x *GetLogsResponse) GetCountRemaining() int64 {
- if x != nil {
- return x.CountRemaining
- }
- return 0
- }
- func (x *GetLogsResponse) GetPageSize() int64 {
- if x != nil {
- return x.PageSize
- }
- return 0
- }
- func (x *GetLogsResponse) GetTotalCount() int64 {
- if x != nil {
- return x.TotalCount
- }
- return 0
- }
- func (x *GetLogsResponse) GetStartOffset() int64 {
- if x != nil {
- return x.StartOffset
- }
- return 0
- }
- type GetActionLogsRequest struct {
- state protoimpl.MessageState `protogen:"open.v1"`
- ActionId string `protobuf:"bytes,1,opt,name=action_id,json=actionId,proto3" json:"action_id,omitempty"`
- StartOffset int64 `protobuf:"varint,2,opt,name=start_offset,json=startOffset,proto3" json:"start_offset,omitempty"`
- unknownFields protoimpl.UnknownFields
- sizeCache protoimpl.SizeCache
- }
- func (x *GetActionLogsRequest) Reset() {
- *x = GetActionLogsRequest{}
- mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[23]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- func (x *GetActionLogsRequest) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*GetActionLogsRequest) ProtoMessage() {}
- func (x *GetActionLogsRequest) ProtoReflect() protoreflect.Message {
- mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[23]
- if x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use GetActionLogsRequest.ProtoReflect.Descriptor instead.
- func (*GetActionLogsRequest) Descriptor() ([]byte, []int) {
- return file_olivetin_api_v1_olivetin_proto_rawDescGZIP(), []int{23}
- }
- func (x *GetActionLogsRequest) GetActionId() string {
- if x != nil {
- return x.ActionId
- }
- return ""
- }
- func (x *GetActionLogsRequest) GetStartOffset() int64 {
- if x != nil {
- return x.StartOffset
- }
- return 0
- }
- type GetActionLogsResponse struct {
- state protoimpl.MessageState `protogen:"open.v1"`
- Logs []*LogEntry `protobuf:"bytes,1,rep,name=logs,proto3" json:"logs,omitempty"`
- CountRemaining int64 `protobuf:"varint,2,opt,name=count_remaining,json=countRemaining,proto3" json:"count_remaining,omitempty"`
- PageSize int64 `protobuf:"varint,3,opt,name=page_size,json=pageSize,proto3" json:"page_size,omitempty"`
- TotalCount int64 `protobuf:"varint,4,opt,name=total_count,json=totalCount,proto3" json:"total_count,omitempty"`
- StartOffset int64 `protobuf:"varint,5,opt,name=start_offset,json=startOffset,proto3" json:"start_offset,omitempty"`
- unknownFields protoimpl.UnknownFields
- sizeCache protoimpl.SizeCache
- }
- func (x *GetActionLogsResponse) Reset() {
- *x = GetActionLogsResponse{}
- mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[24]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- func (x *GetActionLogsResponse) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*GetActionLogsResponse) ProtoMessage() {}
- func (x *GetActionLogsResponse) ProtoReflect() protoreflect.Message {
- mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[24]
- if x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use GetActionLogsResponse.ProtoReflect.Descriptor instead.
- func (*GetActionLogsResponse) Descriptor() ([]byte, []int) {
- return file_olivetin_api_v1_olivetin_proto_rawDescGZIP(), []int{24}
- }
- func (x *GetActionLogsResponse) GetLogs() []*LogEntry {
- if x != nil {
- return x.Logs
- }
- return nil
- }
- func (x *GetActionLogsResponse) GetCountRemaining() int64 {
- if x != nil {
- return x.CountRemaining
- }
- return 0
- }
- func (x *GetActionLogsResponse) GetPageSize() int64 {
- if x != nil {
- return x.PageSize
- }
- return 0
- }
- func (x *GetActionLogsResponse) GetTotalCount() int64 {
- if x != nil {
- return x.TotalCount
- }
- return 0
- }
- func (x *GetActionLogsResponse) GetStartOffset() int64 {
- if x != nil {
- return x.StartOffset
- }
- return 0
- }
- type GetExecutionQueueRequest struct {
- state protoimpl.MessageState `protogen:"open.v1"`
- unknownFields protoimpl.UnknownFields
- sizeCache protoimpl.SizeCache
- }
- func (x *GetExecutionQueueRequest) Reset() {
- *x = GetExecutionQueueRequest{}
- mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[25]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- func (x *GetExecutionQueueRequest) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*GetExecutionQueueRequest) ProtoMessage() {}
- func (x *GetExecutionQueueRequest) ProtoReflect() protoreflect.Message {
- mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[25]
- if x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use GetExecutionQueueRequest.ProtoReflect.Descriptor instead.
- func (*GetExecutionQueueRequest) Descriptor() ([]byte, []int) {
- return file_olivetin_api_v1_olivetin_proto_rawDescGZIP(), []int{25}
- }
- type ExecutionQueueAction struct {
- state protoimpl.MessageState `protogen:"open.v1"`
- BindingId string `protobuf:"bytes,1,opt,name=binding_id,json=bindingId,proto3" json:"binding_id,omitempty"`
- ActionTitle string `protobuf:"bytes,2,opt,name=action_title,json=actionTitle,proto3" json:"action_title,omitempty"`
- ActionIcon string `protobuf:"bytes,3,opt,name=action_icon,json=actionIcon,proto3" json:"action_icon,omitempty"`
- MaxConcurrent int32 `protobuf:"varint,4,opt,name=max_concurrent,json=maxConcurrent,proto3" json:"max_concurrent,omitempty"`
- ActiveCount int32 `protobuf:"varint,5,opt,name=active_count,json=activeCount,proto3" json:"active_count,omitempty"`
- EntityPrefix string `protobuf:"bytes,6,opt,name=entity_prefix,json=entityPrefix,proto3" json:"entity_prefix,omitempty"`
- Entries []*LogEntry `protobuf:"bytes,7,rep,name=entries,proto3" json:"entries,omitempty"`
- unknownFields protoimpl.UnknownFields
- sizeCache protoimpl.SizeCache
- }
- func (x *ExecutionQueueAction) Reset() {
- *x = ExecutionQueueAction{}
- mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[26]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- func (x *ExecutionQueueAction) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*ExecutionQueueAction) ProtoMessage() {}
- func (x *ExecutionQueueAction) ProtoReflect() protoreflect.Message {
- mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[26]
- if x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use ExecutionQueueAction.ProtoReflect.Descriptor instead.
- func (*ExecutionQueueAction) Descriptor() ([]byte, []int) {
- return file_olivetin_api_v1_olivetin_proto_rawDescGZIP(), []int{26}
- }
- func (x *ExecutionQueueAction) GetBindingId() string {
- if x != nil {
- return x.BindingId
- }
- return ""
- }
- func (x *ExecutionQueueAction) GetActionTitle() string {
- if x != nil {
- return x.ActionTitle
- }
- return ""
- }
- func (x *ExecutionQueueAction) GetActionIcon() string {
- if x != nil {
- return x.ActionIcon
- }
- return ""
- }
- func (x *ExecutionQueueAction) GetMaxConcurrent() int32 {
- if x != nil {
- return x.MaxConcurrent
- }
- return 0
- }
- func (x *ExecutionQueueAction) GetActiveCount() int32 {
- if x != nil {
- return x.ActiveCount
- }
- return 0
- }
- func (x *ExecutionQueueAction) GetEntityPrefix() string {
- if x != nil {
- return x.EntityPrefix
- }
- return ""
- }
- func (x *ExecutionQueueAction) GetEntries() []*LogEntry {
- if x != nil {
- return x.Entries
- }
- return nil
- }
- type ExecutionQueueGroup struct {
- state protoimpl.MessageState `protogen:"open.v1"`
- Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
- Icon string `protobuf:"bytes,2,opt,name=icon,proto3" json:"icon,omitempty"`
- MaxConcurrent int32 `protobuf:"varint,3,opt,name=max_concurrent,json=maxConcurrent,proto3" json:"max_concurrent,omitempty"`
- ActiveCount int32 `protobuf:"varint,4,opt,name=active_count,json=activeCount,proto3" json:"active_count,omitempty"`
- Actions []*ExecutionQueueAction `protobuf:"bytes,5,rep,name=actions,proto3" json:"actions,omitempty"`
- QueuedCount int32 `protobuf:"varint,6,opt,name=queued_count,json=queuedCount,proto3" json:"queued_count,omitempty"`
- QueueSize int32 `protobuf:"varint,7,opt,name=queue_size,json=queueSize,proto3" json:"queue_size,omitempty"`
- unknownFields protoimpl.UnknownFields
- sizeCache protoimpl.SizeCache
- }
- func (x *ExecutionQueueGroup) Reset() {
- *x = ExecutionQueueGroup{}
- mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[27]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- func (x *ExecutionQueueGroup) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*ExecutionQueueGroup) ProtoMessage() {}
- func (x *ExecutionQueueGroup) ProtoReflect() protoreflect.Message {
- mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[27]
- if x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use ExecutionQueueGroup.ProtoReflect.Descriptor instead.
- func (*ExecutionQueueGroup) Descriptor() ([]byte, []int) {
- return file_olivetin_api_v1_olivetin_proto_rawDescGZIP(), []int{27}
- }
- func (x *ExecutionQueueGroup) GetName() string {
- if x != nil {
- return x.Name
- }
- return ""
- }
- func (x *ExecutionQueueGroup) GetIcon() string {
- if x != nil {
- return x.Icon
- }
- return ""
- }
- func (x *ExecutionQueueGroup) GetMaxConcurrent() int32 {
- if x != nil {
- return x.MaxConcurrent
- }
- return 0
- }
- func (x *ExecutionQueueGroup) GetActiveCount() int32 {
- if x != nil {
- return x.ActiveCount
- }
- return 0
- }
- func (x *ExecutionQueueGroup) GetActions() []*ExecutionQueueAction {
- if x != nil {
- return x.Actions
- }
- return nil
- }
- func (x *ExecutionQueueGroup) GetQueuedCount() int32 {
- if x != nil {
- return x.QueuedCount
- }
- return 0
- }
- func (x *ExecutionQueueGroup) GetQueueSize() int32 {
- if x != nil {
- return x.QueueSize
- }
- return 0
- }
- type GetExecutionQueueResponse struct {
- state protoimpl.MessageState `protogen:"open.v1"`
- Groups []*ExecutionQueueGroup `protobuf:"bytes,1,rep,name=groups,proto3" json:"groups,omitempty"`
- TotalActive int32 `protobuf:"varint,2,opt,name=total_active,json=totalActive,proto3" json:"total_active,omitempty"`
- unknownFields protoimpl.UnknownFields
- sizeCache protoimpl.SizeCache
- }
- func (x *GetExecutionQueueResponse) Reset() {
- *x = GetExecutionQueueResponse{}
- mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[28]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- func (x *GetExecutionQueueResponse) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*GetExecutionQueueResponse) ProtoMessage() {}
- func (x *GetExecutionQueueResponse) ProtoReflect() protoreflect.Message {
- mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[28]
- if x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use GetExecutionQueueResponse.ProtoReflect.Descriptor instead.
- func (*GetExecutionQueueResponse) Descriptor() ([]byte, []int) {
- return file_olivetin_api_v1_olivetin_proto_rawDescGZIP(), []int{28}
- }
- func (x *GetExecutionQueueResponse) GetGroups() []*ExecutionQueueGroup {
- if x != nil {
- return x.Groups
- }
- return nil
- }
- func (x *GetExecutionQueueResponse) GetTotalActive() int32 {
- if x != nil {
- return x.TotalActive
- }
- return 0
- }
- type ValidateArgumentTypeRequest struct {
- state protoimpl.MessageState `protogen:"open.v1"`
- Value string `protobuf:"bytes,1,opt,name=value,proto3" json:"value,omitempty"`
- Type string `protobuf:"bytes,2,opt,name=type,proto3" json:"type,omitempty"`
- BindingId string `protobuf:"bytes,3,opt,name=binding_id,json=bindingId,proto3" json:"binding_id,omitempty"`
- ArgumentName string `protobuf:"bytes,4,opt,name=argument_name,json=argumentName,proto3" json:"argument_name,omitempty"`
- unknownFields protoimpl.UnknownFields
- sizeCache protoimpl.SizeCache
- }
- func (x *ValidateArgumentTypeRequest) Reset() {
- *x = ValidateArgumentTypeRequest{}
- mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[29]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- func (x *ValidateArgumentTypeRequest) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*ValidateArgumentTypeRequest) ProtoMessage() {}
- func (x *ValidateArgumentTypeRequest) ProtoReflect() protoreflect.Message {
- mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[29]
- if x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use ValidateArgumentTypeRequest.ProtoReflect.Descriptor instead.
- func (*ValidateArgumentTypeRequest) Descriptor() ([]byte, []int) {
- return file_olivetin_api_v1_olivetin_proto_rawDescGZIP(), []int{29}
- }
- func (x *ValidateArgumentTypeRequest) GetValue() string {
- if x != nil {
- return x.Value
- }
- return ""
- }
- func (x *ValidateArgumentTypeRequest) GetType() string {
- if x != nil {
- return x.Type
- }
- return ""
- }
- func (x *ValidateArgumentTypeRequest) GetBindingId() string {
- if x != nil {
- return x.BindingId
- }
- return ""
- }
- func (x *ValidateArgumentTypeRequest) GetArgumentName() string {
- if x != nil {
- return x.ArgumentName
- }
- return ""
- }
- type ValidateArgumentTypeResponse struct {
- state protoimpl.MessageState `protogen:"open.v1"`
- Valid bool `protobuf:"varint,1,opt,name=valid,proto3" json:"valid,omitempty"`
- Description string `protobuf:"bytes,2,opt,name=description,proto3" json:"description,omitempty"`
- unknownFields protoimpl.UnknownFields
- sizeCache protoimpl.SizeCache
- }
- func (x *ValidateArgumentTypeResponse) Reset() {
- *x = ValidateArgumentTypeResponse{}
- mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[30]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- func (x *ValidateArgumentTypeResponse) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*ValidateArgumentTypeResponse) ProtoMessage() {}
- func (x *ValidateArgumentTypeResponse) ProtoReflect() protoreflect.Message {
- mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[30]
- if x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use ValidateArgumentTypeResponse.ProtoReflect.Descriptor instead.
- func (*ValidateArgumentTypeResponse) Descriptor() ([]byte, []int) {
- return file_olivetin_api_v1_olivetin_proto_rawDescGZIP(), []int{30}
- }
- func (x *ValidateArgumentTypeResponse) GetValid() bool {
- if x != nil {
- return x.Valid
- }
- return false
- }
- func (x *ValidateArgumentTypeResponse) GetDescription() string {
- if x != nil {
- return x.Description
- }
- return ""
- }
- type WatchExecutionRequest struct {
- state protoimpl.MessageState `protogen:"open.v1"`
- ExecutionTrackingId string `protobuf:"bytes,1,opt,name=execution_tracking_id,json=executionTrackingId,proto3" json:"execution_tracking_id,omitempty"`
- unknownFields protoimpl.UnknownFields
- sizeCache protoimpl.SizeCache
- }
- func (x *WatchExecutionRequest) Reset() {
- *x = WatchExecutionRequest{}
- mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[31]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- func (x *WatchExecutionRequest) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*WatchExecutionRequest) ProtoMessage() {}
- func (x *WatchExecutionRequest) ProtoReflect() protoreflect.Message {
- mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[31]
- if x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use WatchExecutionRequest.ProtoReflect.Descriptor instead.
- func (*WatchExecutionRequest) Descriptor() ([]byte, []int) {
- return file_olivetin_api_v1_olivetin_proto_rawDescGZIP(), []int{31}
- }
- func (x *WatchExecutionRequest) GetExecutionTrackingId() string {
- if x != nil {
- return x.ExecutionTrackingId
- }
- return ""
- }
- type WatchExecutionUpdate struct {
- state protoimpl.MessageState `protogen:"open.v1"`
- Update string `protobuf:"bytes,1,opt,name=update,proto3" json:"update,omitempty"`
- unknownFields protoimpl.UnknownFields
- sizeCache protoimpl.SizeCache
- }
- func (x *WatchExecutionUpdate) Reset() {
- *x = WatchExecutionUpdate{}
- mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[32]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- func (x *WatchExecutionUpdate) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*WatchExecutionUpdate) ProtoMessage() {}
- func (x *WatchExecutionUpdate) ProtoReflect() protoreflect.Message {
- mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[32]
- if x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use WatchExecutionUpdate.ProtoReflect.Descriptor instead.
- func (*WatchExecutionUpdate) Descriptor() ([]byte, []int) {
- return file_olivetin_api_v1_olivetin_proto_rawDescGZIP(), []int{32}
- }
- func (x *WatchExecutionUpdate) GetUpdate() string {
- if x != nil {
- return x.Update
- }
- return ""
- }
- type ExecutionStatusRequest struct {
- state protoimpl.MessageState `protogen:"open.v1"`
- ExecutionTrackingId string `protobuf:"bytes,1,opt,name=execution_tracking_id,json=executionTrackingId,proto3" json:"execution_tracking_id,omitempty"`
- ActionId string `protobuf:"bytes,2,opt,name=action_id,json=actionId,proto3" json:"action_id,omitempty"`
- unknownFields protoimpl.UnknownFields
- sizeCache protoimpl.SizeCache
- }
- func (x *ExecutionStatusRequest) Reset() {
- *x = ExecutionStatusRequest{}
- mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[33]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- func (x *ExecutionStatusRequest) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*ExecutionStatusRequest) ProtoMessage() {}
- func (x *ExecutionStatusRequest) ProtoReflect() protoreflect.Message {
- mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[33]
- if x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use ExecutionStatusRequest.ProtoReflect.Descriptor instead.
- func (*ExecutionStatusRequest) Descriptor() ([]byte, []int) {
- return file_olivetin_api_v1_olivetin_proto_rawDescGZIP(), []int{33}
- }
- func (x *ExecutionStatusRequest) GetExecutionTrackingId() string {
- if x != nil {
- return x.ExecutionTrackingId
- }
- return ""
- }
- func (x *ExecutionStatusRequest) GetActionId() string {
- if x != nil {
- return x.ActionId
- }
- return ""
- }
- type DashboardNavigationTarget struct {
- state protoimpl.MessageState `protogen:"open.v1"`
- Title string `protobuf:"bytes,1,opt,name=title,proto3" json:"title,omitempty"`
- EntityType string `protobuf:"bytes,2,opt,name=entity_type,json=entityType,proto3" json:"entity_type,omitempty"`
- EntityKey string `protobuf:"bytes,3,opt,name=entity_key,json=entityKey,proto3" json:"entity_key,omitempty"`
- Path string `protobuf:"bytes,4,opt,name=path,proto3" json:"path,omitempty"`
- unknownFields protoimpl.UnknownFields
- sizeCache protoimpl.SizeCache
- }
- func (x *DashboardNavigationTarget) Reset() {
- *x = DashboardNavigationTarget{}
- mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[34]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- func (x *DashboardNavigationTarget) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*DashboardNavigationTarget) ProtoMessage() {}
- func (x *DashboardNavigationTarget) ProtoReflect() protoreflect.Message {
- mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[34]
- if x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use DashboardNavigationTarget.ProtoReflect.Descriptor instead.
- func (*DashboardNavigationTarget) Descriptor() ([]byte, []int) {
- return file_olivetin_api_v1_olivetin_proto_rawDescGZIP(), []int{34}
- }
- func (x *DashboardNavigationTarget) GetTitle() string {
- if x != nil {
- return x.Title
- }
- return ""
- }
- func (x *DashboardNavigationTarget) GetEntityType() string {
- if x != nil {
- return x.EntityType
- }
- return ""
- }
- func (x *DashboardNavigationTarget) GetEntityKey() string {
- if x != nil {
- return x.EntityKey
- }
- return ""
- }
- func (x *DashboardNavigationTarget) GetPath() string {
- if x != nil {
- return x.Path
- }
- return ""
- }
- type ExecutionStatusResponse struct {
- state protoimpl.MessageState `protogen:"open.v1"`
- LogEntry *LogEntry `protobuf:"bytes,1,opt,name=log_entry,json=logEntry,proto3" json:"log_entry,omitempty"`
- BackToDashboards []*DashboardNavigationTarget `protobuf:"bytes,2,rep,name=back_to_dashboards,json=backToDashboards,proto3" json:"back_to_dashboards,omitempty"`
- unknownFields protoimpl.UnknownFields
- sizeCache protoimpl.SizeCache
- }
- func (x *ExecutionStatusResponse) Reset() {
- *x = ExecutionStatusResponse{}
- mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[35]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- func (x *ExecutionStatusResponse) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*ExecutionStatusResponse) ProtoMessage() {}
- func (x *ExecutionStatusResponse) ProtoReflect() protoreflect.Message {
- mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[35]
- if x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use ExecutionStatusResponse.ProtoReflect.Descriptor instead.
- func (*ExecutionStatusResponse) Descriptor() ([]byte, []int) {
- return file_olivetin_api_v1_olivetin_proto_rawDescGZIP(), []int{35}
- }
- func (x *ExecutionStatusResponse) GetLogEntry() *LogEntry {
- if x != nil {
- return x.LogEntry
- }
- return nil
- }
- func (x *ExecutionStatusResponse) GetBackToDashboards() []*DashboardNavigationTarget {
- if x != nil {
- return x.BackToDashboards
- }
- return nil
- }
- type WhoAmIRequest struct {
- state protoimpl.MessageState `protogen:"open.v1"`
- unknownFields protoimpl.UnknownFields
- sizeCache protoimpl.SizeCache
- }
- func (x *WhoAmIRequest) Reset() {
- *x = WhoAmIRequest{}
- mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[36]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- func (x *WhoAmIRequest) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*WhoAmIRequest) ProtoMessage() {}
- func (x *WhoAmIRequest) ProtoReflect() protoreflect.Message {
- mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[36]
- if x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use WhoAmIRequest.ProtoReflect.Descriptor instead.
- func (*WhoAmIRequest) Descriptor() ([]byte, []int) {
- return file_olivetin_api_v1_olivetin_proto_rawDescGZIP(), []int{36}
- }
- type WhoAmIResponse struct {
- state protoimpl.MessageState `protogen:"open.v1"`
- AuthenticatedUser string `protobuf:"bytes,1,opt,name=authenticated_user,json=authenticatedUser,proto3" json:"authenticated_user,omitempty"`
- Usergroup string `protobuf:"bytes,2,opt,name=usergroup,proto3" json:"usergroup,omitempty"`
- Provider string `protobuf:"bytes,3,opt,name=provider,proto3" json:"provider,omitempty"`
- Acls []string `protobuf:"bytes,4,rep,name=acls,proto3" json:"acls,omitempty"`
- Sid string `protobuf:"bytes,5,opt,name=sid,proto3" json:"sid,omitempty"`
- unknownFields protoimpl.UnknownFields
- sizeCache protoimpl.SizeCache
- }
- func (x *WhoAmIResponse) Reset() {
- *x = WhoAmIResponse{}
- mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[37]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- func (x *WhoAmIResponse) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*WhoAmIResponse) ProtoMessage() {}
- func (x *WhoAmIResponse) ProtoReflect() protoreflect.Message {
- mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[37]
- if x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use WhoAmIResponse.ProtoReflect.Descriptor instead.
- func (*WhoAmIResponse) Descriptor() ([]byte, []int) {
- return file_olivetin_api_v1_olivetin_proto_rawDescGZIP(), []int{37}
- }
- func (x *WhoAmIResponse) GetAuthenticatedUser() string {
- if x != nil {
- return x.AuthenticatedUser
- }
- return ""
- }
- func (x *WhoAmIResponse) GetUsergroup() string {
- if x != nil {
- return x.Usergroup
- }
- return ""
- }
- func (x *WhoAmIResponse) GetProvider() string {
- if x != nil {
- return x.Provider
- }
- return ""
- }
- func (x *WhoAmIResponse) GetAcls() []string {
- if x != nil {
- return x.Acls
- }
- return nil
- }
- func (x *WhoAmIResponse) GetSid() string {
- if x != nil {
- return x.Sid
- }
- return ""
- }
- type SosReportRequest struct {
- state protoimpl.MessageState `protogen:"open.v1"`
- unknownFields protoimpl.UnknownFields
- sizeCache protoimpl.SizeCache
- }
- func (x *SosReportRequest) Reset() {
- *x = SosReportRequest{}
- mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[38]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- func (x *SosReportRequest) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*SosReportRequest) ProtoMessage() {}
- func (x *SosReportRequest) ProtoReflect() protoreflect.Message {
- mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[38]
- if x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use SosReportRequest.ProtoReflect.Descriptor instead.
- func (*SosReportRequest) Descriptor() ([]byte, []int) {
- return file_olivetin_api_v1_olivetin_proto_rawDescGZIP(), []int{38}
- }
- type SosReportResponse struct {
- state protoimpl.MessageState `protogen:"open.v1"`
- Alert string `protobuf:"bytes,1,opt,name=alert,proto3" json:"alert,omitempty"`
- unknownFields protoimpl.UnknownFields
- sizeCache protoimpl.SizeCache
- }
- func (x *SosReportResponse) Reset() {
- *x = SosReportResponse{}
- mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[39]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- func (x *SosReportResponse) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*SosReportResponse) ProtoMessage() {}
- func (x *SosReportResponse) ProtoReflect() protoreflect.Message {
- mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[39]
- if x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use SosReportResponse.ProtoReflect.Descriptor instead.
- func (*SosReportResponse) Descriptor() ([]byte, []int) {
- return file_olivetin_api_v1_olivetin_proto_rawDescGZIP(), []int{39}
- }
- func (x *SosReportResponse) GetAlert() string {
- if x != nil {
- return x.Alert
- }
- return ""
- }
- type DumpVarsRequest struct {
- state protoimpl.MessageState `protogen:"open.v1"`
- unknownFields protoimpl.UnknownFields
- sizeCache protoimpl.SizeCache
- }
- func (x *DumpVarsRequest) Reset() {
- *x = DumpVarsRequest{}
- mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[40]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- func (x *DumpVarsRequest) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*DumpVarsRequest) ProtoMessage() {}
- func (x *DumpVarsRequest) ProtoReflect() protoreflect.Message {
- mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[40]
- if x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use DumpVarsRequest.ProtoReflect.Descriptor instead.
- func (*DumpVarsRequest) Descriptor() ([]byte, []int) {
- return file_olivetin_api_v1_olivetin_proto_rawDescGZIP(), []int{40}
- }
- type DumpVarsResponse struct {
- state protoimpl.MessageState `protogen:"open.v1"`
- Alert string `protobuf:"bytes,1,opt,name=alert,proto3" json:"alert,omitempty"`
- 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"`
- unknownFields protoimpl.UnknownFields
- sizeCache protoimpl.SizeCache
- }
- func (x *DumpVarsResponse) Reset() {
- *x = DumpVarsResponse{}
- mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[41]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- func (x *DumpVarsResponse) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*DumpVarsResponse) ProtoMessage() {}
- func (x *DumpVarsResponse) ProtoReflect() protoreflect.Message {
- mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[41]
- if x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use DumpVarsResponse.ProtoReflect.Descriptor instead.
- func (*DumpVarsResponse) Descriptor() ([]byte, []int) {
- return file_olivetin_api_v1_olivetin_proto_rawDescGZIP(), []int{41}
- }
- func (x *DumpVarsResponse) GetAlert() string {
- if x != nil {
- return x.Alert
- }
- return ""
- }
- func (x *DumpVarsResponse) GetContents() map[string]string {
- if x != nil {
- return x.Contents
- }
- return nil
- }
- type DebugBinding struct {
- state protoimpl.MessageState `protogen:"open.v1"`
- ActionTitle string `protobuf:"bytes,1,opt,name=action_title,json=actionTitle,proto3" json:"action_title,omitempty"`
- EntityPrefix string `protobuf:"bytes,2,opt,name=entity_prefix,json=entityPrefix,proto3" json:"entity_prefix,omitempty"`
- unknownFields protoimpl.UnknownFields
- sizeCache protoimpl.SizeCache
- }
- func (x *DebugBinding) Reset() {
- *x = DebugBinding{}
- mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[42]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- func (x *DebugBinding) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*DebugBinding) ProtoMessage() {}
- func (x *DebugBinding) ProtoReflect() protoreflect.Message {
- mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[42]
- if x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use DebugBinding.ProtoReflect.Descriptor instead.
- func (*DebugBinding) Descriptor() ([]byte, []int) {
- return file_olivetin_api_v1_olivetin_proto_rawDescGZIP(), []int{42}
- }
- func (x *DebugBinding) GetActionTitle() string {
- if x != nil {
- return x.ActionTitle
- }
- return ""
- }
- func (x *DebugBinding) GetEntityPrefix() string {
- if x != nil {
- return x.EntityPrefix
- }
- return ""
- }
- type DumpPublicIdActionMapRequest struct {
- state protoimpl.MessageState `protogen:"open.v1"`
- unknownFields protoimpl.UnknownFields
- sizeCache protoimpl.SizeCache
- }
- func (x *DumpPublicIdActionMapRequest) Reset() {
- *x = DumpPublicIdActionMapRequest{}
- mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[43]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- func (x *DumpPublicIdActionMapRequest) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*DumpPublicIdActionMapRequest) ProtoMessage() {}
- func (x *DumpPublicIdActionMapRequest) ProtoReflect() protoreflect.Message {
- mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[43]
- if x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use DumpPublicIdActionMapRequest.ProtoReflect.Descriptor instead.
- func (*DumpPublicIdActionMapRequest) Descriptor() ([]byte, []int) {
- return file_olivetin_api_v1_olivetin_proto_rawDescGZIP(), []int{43}
- }
- type DumpPublicIdActionMapResponse struct {
- state protoimpl.MessageState `protogen:"open.v1"`
- Alert string `protobuf:"bytes,1,opt,name=alert,proto3" json:"alert,omitempty"`
- 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"`
- unknownFields protoimpl.UnknownFields
- sizeCache protoimpl.SizeCache
- }
- func (x *DumpPublicIdActionMapResponse) Reset() {
- *x = DumpPublicIdActionMapResponse{}
- mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[44]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- func (x *DumpPublicIdActionMapResponse) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*DumpPublicIdActionMapResponse) ProtoMessage() {}
- func (x *DumpPublicIdActionMapResponse) ProtoReflect() protoreflect.Message {
- mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[44]
- if x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use DumpPublicIdActionMapResponse.ProtoReflect.Descriptor instead.
- func (*DumpPublicIdActionMapResponse) Descriptor() ([]byte, []int) {
- return file_olivetin_api_v1_olivetin_proto_rawDescGZIP(), []int{44}
- }
- func (x *DumpPublicIdActionMapResponse) GetAlert() string {
- if x != nil {
- return x.Alert
- }
- return ""
- }
- func (x *DumpPublicIdActionMapResponse) GetContents() map[string]*DebugBinding {
- if x != nil {
- return x.Contents
- }
- return nil
- }
- type GetReadyzRequest struct {
- state protoimpl.MessageState `protogen:"open.v1"`
- unknownFields protoimpl.UnknownFields
- sizeCache protoimpl.SizeCache
- }
- func (x *GetReadyzRequest) Reset() {
- *x = GetReadyzRequest{}
- mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[45]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- func (x *GetReadyzRequest) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*GetReadyzRequest) ProtoMessage() {}
- func (x *GetReadyzRequest) ProtoReflect() protoreflect.Message {
- mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[45]
- if x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use GetReadyzRequest.ProtoReflect.Descriptor instead.
- func (*GetReadyzRequest) Descriptor() ([]byte, []int) {
- return file_olivetin_api_v1_olivetin_proto_rawDescGZIP(), []int{45}
- }
- type GetReadyzResponse struct {
- state protoimpl.MessageState `protogen:"open.v1"`
- Status string `protobuf:"bytes,1,opt,name=status,proto3" json:"status,omitempty"`
- unknownFields protoimpl.UnknownFields
- sizeCache protoimpl.SizeCache
- }
- func (x *GetReadyzResponse) Reset() {
- *x = GetReadyzResponse{}
- mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[46]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- func (x *GetReadyzResponse) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*GetReadyzResponse) ProtoMessage() {}
- func (x *GetReadyzResponse) ProtoReflect() protoreflect.Message {
- mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[46]
- if x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use GetReadyzResponse.ProtoReflect.Descriptor instead.
- func (*GetReadyzResponse) Descriptor() ([]byte, []int) {
- return file_olivetin_api_v1_olivetin_proto_rawDescGZIP(), []int{46}
- }
- func (x *GetReadyzResponse) GetStatus() string {
- if x != nil {
- return x.Status
- }
- return ""
- }
- type EventStreamRequest struct {
- state protoimpl.MessageState `protogen:"open.v1"`
- unknownFields protoimpl.UnknownFields
- sizeCache protoimpl.SizeCache
- }
- func (x *EventStreamRequest) Reset() {
- *x = EventStreamRequest{}
- mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[47]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- func (x *EventStreamRequest) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*EventStreamRequest) ProtoMessage() {}
- func (x *EventStreamRequest) ProtoReflect() protoreflect.Message {
- mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[47]
- if x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use EventStreamRequest.ProtoReflect.Descriptor instead.
- func (*EventStreamRequest) Descriptor() ([]byte, []int) {
- return file_olivetin_api_v1_olivetin_proto_rawDescGZIP(), []int{47}
- }
- type EventStreamResponse struct {
- state protoimpl.MessageState `protogen:"open.v1"`
- // Types that are valid to be assigned to Event:
- //
- // *EventStreamResponse_EntityChanged
- // *EventStreamResponse_ConfigChanged
- // *EventStreamResponse_ExecutionFinished
- // *EventStreamResponse_ExecutionStarted
- // *EventStreamResponse_OutputChunk
- // *EventStreamResponse_Heartbeat
- Event isEventStreamResponse_Event `protobuf_oneof:"event"`
- unknownFields protoimpl.UnknownFields
- sizeCache protoimpl.SizeCache
- }
- func (x *EventStreamResponse) Reset() {
- *x = EventStreamResponse{}
- mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[48]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- func (x *EventStreamResponse) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*EventStreamResponse) ProtoMessage() {}
- func (x *EventStreamResponse) ProtoReflect() protoreflect.Message {
- mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[48]
- if x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use EventStreamResponse.ProtoReflect.Descriptor instead.
- func (*EventStreamResponse) Descriptor() ([]byte, []int) {
- return file_olivetin_api_v1_olivetin_proto_rawDescGZIP(), []int{48}
- }
- func (x *EventStreamResponse) GetEvent() isEventStreamResponse_Event {
- if x != nil {
- return x.Event
- }
- return nil
- }
- func (x *EventStreamResponse) GetEntityChanged() *EventEntityChanged {
- if x != nil {
- if x, ok := x.Event.(*EventStreamResponse_EntityChanged); ok {
- return x.EntityChanged
- }
- }
- return nil
- }
- func (x *EventStreamResponse) GetConfigChanged() *EventConfigChanged {
- if x != nil {
- if x, ok := x.Event.(*EventStreamResponse_ConfigChanged); ok {
- return x.ConfigChanged
- }
- }
- return nil
- }
- func (x *EventStreamResponse) GetExecutionFinished() *EventExecutionFinished {
- if x != nil {
- if x, ok := x.Event.(*EventStreamResponse_ExecutionFinished); ok {
- return x.ExecutionFinished
- }
- }
- return nil
- }
- func (x *EventStreamResponse) GetExecutionStarted() *EventExecutionStarted {
- if x != nil {
- if x, ok := x.Event.(*EventStreamResponse_ExecutionStarted); ok {
- return x.ExecutionStarted
- }
- }
- return nil
- }
- func (x *EventStreamResponse) GetOutputChunk() *EventOutputChunk {
- if x != nil {
- if x, ok := x.Event.(*EventStreamResponse_OutputChunk); ok {
- return x.OutputChunk
- }
- }
- return nil
- }
- func (x *EventStreamResponse) GetHeartbeat() *EventHeartbeat {
- if x != nil {
- if x, ok := x.Event.(*EventStreamResponse_Heartbeat); ok {
- return x.Heartbeat
- }
- }
- return nil
- }
- type isEventStreamResponse_Event interface {
- isEventStreamResponse_Event()
- }
- type EventStreamResponse_EntityChanged struct {
- EntityChanged *EventEntityChanged `protobuf:"bytes,2,opt,name=entity_changed,json=entityChanged,proto3,oneof"`
- }
- type EventStreamResponse_ConfigChanged struct {
- ConfigChanged *EventConfigChanged `protobuf:"bytes,3,opt,name=config_changed,json=configChanged,proto3,oneof"`
- }
- type EventStreamResponse_ExecutionFinished struct {
- ExecutionFinished *EventExecutionFinished `protobuf:"bytes,4,opt,name=execution_finished,json=executionFinished,proto3,oneof"`
- }
- type EventStreamResponse_ExecutionStarted struct {
- ExecutionStarted *EventExecutionStarted `protobuf:"bytes,5,opt,name=execution_started,json=executionStarted,proto3,oneof"`
- }
- type EventStreamResponse_OutputChunk struct {
- OutputChunk *EventOutputChunk `protobuf:"bytes,6,opt,name=output_chunk,json=outputChunk,proto3,oneof"`
- }
- type EventStreamResponse_Heartbeat struct {
- Heartbeat *EventHeartbeat `protobuf:"bytes,7,opt,name=heartbeat,proto3,oneof"`
- }
- func (*EventStreamResponse_EntityChanged) isEventStreamResponse_Event() {}
- func (*EventStreamResponse_ConfigChanged) isEventStreamResponse_Event() {}
- func (*EventStreamResponse_ExecutionFinished) isEventStreamResponse_Event() {}
- func (*EventStreamResponse_ExecutionStarted) isEventStreamResponse_Event() {}
- func (*EventStreamResponse_OutputChunk) isEventStreamResponse_Event() {}
- func (*EventStreamResponse_Heartbeat) isEventStreamResponse_Event() {}
- type EventOutputChunk struct {
- state protoimpl.MessageState `protogen:"open.v1"`
- ExecutionTrackingId string `protobuf:"bytes,1,opt,name=execution_tracking_id,json=executionTrackingId,proto3" json:"execution_tracking_id,omitempty"`
- Output string `protobuf:"bytes,2,opt,name=output,proto3" json:"output,omitempty"`
- unknownFields protoimpl.UnknownFields
- sizeCache protoimpl.SizeCache
- }
- func (x *EventOutputChunk) Reset() {
- *x = EventOutputChunk{}
- mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[49]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- func (x *EventOutputChunk) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*EventOutputChunk) ProtoMessage() {}
- func (x *EventOutputChunk) ProtoReflect() protoreflect.Message {
- mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[49]
- if x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use EventOutputChunk.ProtoReflect.Descriptor instead.
- func (*EventOutputChunk) Descriptor() ([]byte, []int) {
- return file_olivetin_api_v1_olivetin_proto_rawDescGZIP(), []int{49}
- }
- func (x *EventOutputChunk) GetExecutionTrackingId() string {
- if x != nil {
- return x.ExecutionTrackingId
- }
- return ""
- }
- func (x *EventOutputChunk) GetOutput() string {
- if x != nil {
- return x.Output
- }
- return ""
- }
- type EventEntityChanged struct {
- state protoimpl.MessageState `protogen:"open.v1"`
- unknownFields protoimpl.UnknownFields
- sizeCache protoimpl.SizeCache
- }
- func (x *EventEntityChanged) Reset() {
- *x = EventEntityChanged{}
- mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[50]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- func (x *EventEntityChanged) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*EventEntityChanged) ProtoMessage() {}
- func (x *EventEntityChanged) ProtoReflect() protoreflect.Message {
- mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[50]
- if x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use EventEntityChanged.ProtoReflect.Descriptor instead.
- func (*EventEntityChanged) Descriptor() ([]byte, []int) {
- return file_olivetin_api_v1_olivetin_proto_rawDescGZIP(), []int{50}
- }
- type EventConfigChanged struct {
- state protoimpl.MessageState `protogen:"open.v1"`
- unknownFields protoimpl.UnknownFields
- sizeCache protoimpl.SizeCache
- }
- func (x *EventConfigChanged) Reset() {
- *x = EventConfigChanged{}
- mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[51]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- func (x *EventConfigChanged) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*EventConfigChanged) ProtoMessage() {}
- func (x *EventConfigChanged) ProtoReflect() protoreflect.Message {
- mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[51]
- if x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use EventConfigChanged.ProtoReflect.Descriptor instead.
- func (*EventConfigChanged) Descriptor() ([]byte, []int) {
- return file_olivetin_api_v1_olivetin_proto_rawDescGZIP(), []int{51}
- }
- type EventHeartbeat struct {
- state protoimpl.MessageState `protogen:"open.v1"`
- unknownFields protoimpl.UnknownFields
- sizeCache protoimpl.SizeCache
- }
- func (x *EventHeartbeat) Reset() {
- *x = EventHeartbeat{}
- mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[52]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- func (x *EventHeartbeat) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*EventHeartbeat) ProtoMessage() {}
- func (x *EventHeartbeat) ProtoReflect() protoreflect.Message {
- mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[52]
- if x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use EventHeartbeat.ProtoReflect.Descriptor instead.
- func (*EventHeartbeat) Descriptor() ([]byte, []int) {
- return file_olivetin_api_v1_olivetin_proto_rawDescGZIP(), []int{52}
- }
- type EventExecutionFinished struct {
- state protoimpl.MessageState `protogen:"open.v1"`
- LogEntry *LogEntry `protobuf:"bytes,1,opt,name=log_entry,json=logEntry,proto3" json:"log_entry,omitempty"`
- unknownFields protoimpl.UnknownFields
- sizeCache protoimpl.SizeCache
- }
- func (x *EventExecutionFinished) Reset() {
- *x = EventExecutionFinished{}
- mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[53]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- func (x *EventExecutionFinished) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*EventExecutionFinished) ProtoMessage() {}
- func (x *EventExecutionFinished) ProtoReflect() protoreflect.Message {
- mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[53]
- if x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use EventExecutionFinished.ProtoReflect.Descriptor instead.
- func (*EventExecutionFinished) Descriptor() ([]byte, []int) {
- return file_olivetin_api_v1_olivetin_proto_rawDescGZIP(), []int{53}
- }
- func (x *EventExecutionFinished) GetLogEntry() *LogEntry {
- if x != nil {
- return x.LogEntry
- }
- return nil
- }
- type EventExecutionStarted struct {
- state protoimpl.MessageState `protogen:"open.v1"`
- LogEntry *LogEntry `protobuf:"bytes,1,opt,name=log_entry,json=logEntry,proto3" json:"log_entry,omitempty"`
- unknownFields protoimpl.UnknownFields
- sizeCache protoimpl.SizeCache
- }
- func (x *EventExecutionStarted) Reset() {
- *x = EventExecutionStarted{}
- mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[54]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- func (x *EventExecutionStarted) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*EventExecutionStarted) ProtoMessage() {}
- func (x *EventExecutionStarted) ProtoReflect() protoreflect.Message {
- mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[54]
- if x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use EventExecutionStarted.ProtoReflect.Descriptor instead.
- func (*EventExecutionStarted) Descriptor() ([]byte, []int) {
- return file_olivetin_api_v1_olivetin_proto_rawDescGZIP(), []int{54}
- }
- func (x *EventExecutionStarted) GetLogEntry() *LogEntry {
- if x != nil {
- return x.LogEntry
- }
- return nil
- }
- type KillActionRequest struct {
- state protoimpl.MessageState `protogen:"open.v1"`
- ExecutionTrackingId string `protobuf:"bytes,1,opt,name=execution_tracking_id,json=executionTrackingId,proto3" json:"execution_tracking_id,omitempty"`
- unknownFields protoimpl.UnknownFields
- sizeCache protoimpl.SizeCache
- }
- func (x *KillActionRequest) Reset() {
- *x = KillActionRequest{}
- mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[55]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- func (x *KillActionRequest) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*KillActionRequest) ProtoMessage() {}
- func (x *KillActionRequest) ProtoReflect() protoreflect.Message {
- mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[55]
- if x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use KillActionRequest.ProtoReflect.Descriptor instead.
- func (*KillActionRequest) Descriptor() ([]byte, []int) {
- return file_olivetin_api_v1_olivetin_proto_rawDescGZIP(), []int{55}
- }
- func (x *KillActionRequest) GetExecutionTrackingId() string {
- if x != nil {
- return x.ExecutionTrackingId
- }
- return ""
- }
- type KillActionResponse struct {
- state protoimpl.MessageState `protogen:"open.v1"`
- ExecutionTrackingId string `protobuf:"bytes,1,opt,name=execution_tracking_id,json=executionTrackingId,proto3" json:"execution_tracking_id,omitempty"`
- Killed bool `protobuf:"varint,2,opt,name=killed,proto3" json:"killed,omitempty"`
- AlreadyCompleted bool `protobuf:"varint,3,opt,name=already_completed,json=alreadyCompleted,proto3" json:"already_completed,omitempty"`
- Found bool `protobuf:"varint,4,opt,name=found,proto3" json:"found,omitempty"`
- unknownFields protoimpl.UnknownFields
- sizeCache protoimpl.SizeCache
- }
- func (x *KillActionResponse) Reset() {
- *x = KillActionResponse{}
- mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[56]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- func (x *KillActionResponse) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*KillActionResponse) ProtoMessage() {}
- func (x *KillActionResponse) ProtoReflect() protoreflect.Message {
- mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[56]
- if x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use KillActionResponse.ProtoReflect.Descriptor instead.
- func (*KillActionResponse) Descriptor() ([]byte, []int) {
- return file_olivetin_api_v1_olivetin_proto_rawDescGZIP(), []int{56}
- }
- func (x *KillActionResponse) GetExecutionTrackingId() string {
- if x != nil {
- return x.ExecutionTrackingId
- }
- return ""
- }
- func (x *KillActionResponse) GetKilled() bool {
- if x != nil {
- return x.Killed
- }
- return false
- }
- func (x *KillActionResponse) GetAlreadyCompleted() bool {
- if x != nil {
- return x.AlreadyCompleted
- }
- return false
- }
- func (x *KillActionResponse) GetFound() bool {
- if x != nil {
- return x.Found
- }
- return false
- }
- type LocalUserLoginRequest struct {
- state protoimpl.MessageState `protogen:"open.v1"`
- Username string `protobuf:"bytes,1,opt,name=username,proto3" json:"username,omitempty"`
- Password string `protobuf:"bytes,2,opt,name=password,proto3" json:"password,omitempty"`
- unknownFields protoimpl.UnknownFields
- sizeCache protoimpl.SizeCache
- }
- func (x *LocalUserLoginRequest) Reset() {
- *x = LocalUserLoginRequest{}
- mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[57]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- func (x *LocalUserLoginRequest) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*LocalUserLoginRequest) ProtoMessage() {}
- func (x *LocalUserLoginRequest) ProtoReflect() protoreflect.Message {
- mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[57]
- if x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use LocalUserLoginRequest.ProtoReflect.Descriptor instead.
- func (*LocalUserLoginRequest) Descriptor() ([]byte, []int) {
- return file_olivetin_api_v1_olivetin_proto_rawDescGZIP(), []int{57}
- }
- func (x *LocalUserLoginRequest) GetUsername() string {
- if x != nil {
- return x.Username
- }
- return ""
- }
- func (x *LocalUserLoginRequest) GetPassword() string {
- if x != nil {
- return x.Password
- }
- return ""
- }
- type LocalUserLoginResponse struct {
- state protoimpl.MessageState `protogen:"open.v1"`
- Success bool `protobuf:"varint,1,opt,name=success,proto3" json:"success,omitempty"`
- unknownFields protoimpl.UnknownFields
- sizeCache protoimpl.SizeCache
- }
- func (x *LocalUserLoginResponse) Reset() {
- *x = LocalUserLoginResponse{}
- mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[58]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- func (x *LocalUserLoginResponse) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*LocalUserLoginResponse) ProtoMessage() {}
- func (x *LocalUserLoginResponse) ProtoReflect() protoreflect.Message {
- mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[58]
- if x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use LocalUserLoginResponse.ProtoReflect.Descriptor instead.
- func (*LocalUserLoginResponse) Descriptor() ([]byte, []int) {
- return file_olivetin_api_v1_olivetin_proto_rawDescGZIP(), []int{58}
- }
- func (x *LocalUserLoginResponse) GetSuccess() bool {
- if x != nil {
- return x.Success
- }
- return false
- }
- type PasswordHashRequest struct {
- state protoimpl.MessageState `protogen:"open.v1"`
- Password string `protobuf:"bytes,1,opt,name=password,proto3" json:"password,omitempty"`
- unknownFields protoimpl.UnknownFields
- sizeCache protoimpl.SizeCache
- }
- func (x *PasswordHashRequest) Reset() {
- *x = PasswordHashRequest{}
- mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[59]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- func (x *PasswordHashRequest) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*PasswordHashRequest) ProtoMessage() {}
- func (x *PasswordHashRequest) ProtoReflect() protoreflect.Message {
- mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[59]
- if x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use PasswordHashRequest.ProtoReflect.Descriptor instead.
- func (*PasswordHashRequest) Descriptor() ([]byte, []int) {
- return file_olivetin_api_v1_olivetin_proto_rawDescGZIP(), []int{59}
- }
- func (x *PasswordHashRequest) GetPassword() string {
- if x != nil {
- return x.Password
- }
- return ""
- }
- type PasswordHashResponse struct {
- state protoimpl.MessageState `protogen:"open.v1"`
- Hash string `protobuf:"bytes,1,opt,name=hash,proto3" json:"hash,omitempty"`
- unknownFields protoimpl.UnknownFields
- sizeCache protoimpl.SizeCache
- }
- func (x *PasswordHashResponse) Reset() {
- *x = PasswordHashResponse{}
- mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[60]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- func (x *PasswordHashResponse) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*PasswordHashResponse) ProtoMessage() {}
- func (x *PasswordHashResponse) ProtoReflect() protoreflect.Message {
- mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[60]
- if x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use PasswordHashResponse.ProtoReflect.Descriptor instead.
- func (*PasswordHashResponse) Descriptor() ([]byte, []int) {
- return file_olivetin_api_v1_olivetin_proto_rawDescGZIP(), []int{60}
- }
- func (x *PasswordHashResponse) GetHash() string {
- if x != nil {
- return x.Hash
- }
- return ""
- }
- type LogoutRequest struct {
- state protoimpl.MessageState `protogen:"open.v1"`
- unknownFields protoimpl.UnknownFields
- sizeCache protoimpl.SizeCache
- }
- func (x *LogoutRequest) Reset() {
- *x = LogoutRequest{}
- mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[61]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- func (x *LogoutRequest) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*LogoutRequest) ProtoMessage() {}
- func (x *LogoutRequest) ProtoReflect() protoreflect.Message {
- mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[61]
- if x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use LogoutRequest.ProtoReflect.Descriptor instead.
- func (*LogoutRequest) Descriptor() ([]byte, []int) {
- return file_olivetin_api_v1_olivetin_proto_rawDescGZIP(), []int{61}
- }
- type LogoutResponse struct {
- state protoimpl.MessageState `protogen:"open.v1"`
- unknownFields protoimpl.UnknownFields
- sizeCache protoimpl.SizeCache
- }
- func (x *LogoutResponse) Reset() {
- *x = LogoutResponse{}
- mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[62]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- func (x *LogoutResponse) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*LogoutResponse) ProtoMessage() {}
- func (x *LogoutResponse) ProtoReflect() protoreflect.Message {
- mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[62]
- if x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use LogoutResponse.ProtoReflect.Descriptor instead.
- func (*LogoutResponse) Descriptor() ([]byte, []int) {
- return file_olivetin_api_v1_olivetin_proto_rawDescGZIP(), []int{62}
- }
- type GetDiagnosticsRequest struct {
- state protoimpl.MessageState `protogen:"open.v1"`
- unknownFields protoimpl.UnknownFields
- sizeCache protoimpl.SizeCache
- }
- func (x *GetDiagnosticsRequest) Reset() {
- *x = GetDiagnosticsRequest{}
- mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[63]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- func (x *GetDiagnosticsRequest) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*GetDiagnosticsRequest) ProtoMessage() {}
- func (x *GetDiagnosticsRequest) ProtoReflect() protoreflect.Message {
- mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[63]
- if x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use GetDiagnosticsRequest.ProtoReflect.Descriptor instead.
- func (*GetDiagnosticsRequest) Descriptor() ([]byte, []int) {
- return file_olivetin_api_v1_olivetin_proto_rawDescGZIP(), []int{63}
- }
- type GetDiagnosticsResponse struct {
- state protoimpl.MessageState `protogen:"open.v1"`
- SshFoundKey string `protobuf:"bytes,1,opt,name=SshFoundKey,proto3" json:"SshFoundKey,omitempty"`
- SshFoundConfig string `protobuf:"bytes,2,opt,name=SshFoundConfig,proto3" json:"SshFoundConfig,omitempty"`
- unknownFields protoimpl.UnknownFields
- sizeCache protoimpl.SizeCache
- }
- func (x *GetDiagnosticsResponse) Reset() {
- *x = GetDiagnosticsResponse{}
- mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[64]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- func (x *GetDiagnosticsResponse) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*GetDiagnosticsResponse) ProtoMessage() {}
- func (x *GetDiagnosticsResponse) ProtoReflect() protoreflect.Message {
- mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[64]
- if x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use GetDiagnosticsResponse.ProtoReflect.Descriptor instead.
- func (*GetDiagnosticsResponse) Descriptor() ([]byte, []int) {
- return file_olivetin_api_v1_olivetin_proto_rawDescGZIP(), []int{64}
- }
- func (x *GetDiagnosticsResponse) GetSshFoundKey() string {
- if x != nil {
- return x.SshFoundKey
- }
- return ""
- }
- func (x *GetDiagnosticsResponse) GetSshFoundConfig() string {
- if x != nil {
- return x.SshFoundConfig
- }
- return ""
- }
- type InitRequest struct {
- state protoimpl.MessageState `protogen:"open.v1"`
- unknownFields protoimpl.UnknownFields
- sizeCache protoimpl.SizeCache
- }
- func (x *InitRequest) Reset() {
- *x = InitRequest{}
- mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[65]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- func (x *InitRequest) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*InitRequest) ProtoMessage() {}
- func (x *InitRequest) ProtoReflect() protoreflect.Message {
- mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[65]
- if x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use InitRequest.ProtoReflect.Descriptor instead.
- func (*InitRequest) Descriptor() ([]byte, []int) {
- return file_olivetin_api_v1_olivetin_proto_rawDescGZIP(), []int{65}
- }
- type InitResponse struct {
- state protoimpl.MessageState `protogen:"open.v1"`
- ShowFooter bool `protobuf:"varint,1,opt,name=showFooter,proto3" json:"showFooter,omitempty"`
- ShowNavigation bool `protobuf:"varint,2,opt,name=showNavigation,proto3" json:"showNavigation,omitempty"`
- ShowNewVersions bool `protobuf:"varint,3,opt,name=showNewVersions,proto3" json:"showNewVersions,omitempty"`
- AvailableVersion string `protobuf:"bytes,4,opt,name=availableVersion,proto3" json:"availableVersion,omitempty"`
- CurrentVersion string `protobuf:"bytes,5,opt,name=currentVersion,proto3" json:"currentVersion,omitempty"`
- PageTitle string `protobuf:"bytes,6,opt,name=pageTitle,proto3" json:"pageTitle,omitempty"`
- SectionNavigationStyle string `protobuf:"bytes,7,opt,name=sectionNavigationStyle,proto3" json:"sectionNavigationStyle,omitempty"`
- DefaultIconForBack string `protobuf:"bytes,8,opt,name=defaultIconForBack,proto3" json:"defaultIconForBack,omitempty"`
- EnableCustomJs bool `protobuf:"varint,9,opt,name=enableCustomJs,proto3" json:"enableCustomJs,omitempty"`
- AuthLoginUrl string `protobuf:"bytes,10,opt,name=authLoginUrl,proto3" json:"authLoginUrl,omitempty"`
- AuthLocalLogin bool `protobuf:"varint,11,opt,name=authLocalLogin,proto3" json:"authLocalLogin,omitempty"`
- StyleMods []string `protobuf:"bytes,12,rep,name=styleMods,proto3" json:"styleMods,omitempty"`
- OAuth2Providers []*OAuth2Provider `protobuf:"bytes,13,rep,name=oAuth2Providers,proto3" json:"oAuth2Providers,omitempty"`
- AdditionalLinks []*AdditionalLink `protobuf:"bytes,14,rep,name=additionalLinks,proto3" json:"additionalLinks,omitempty"`
- RootDashboards []string `protobuf:"bytes,15,rep,name=rootDashboards,proto3" json:"rootDashboards,omitempty"`
- AuthenticatedUser string `protobuf:"bytes,16,opt,name=authenticated_user,json=authenticatedUser,proto3" json:"authenticated_user,omitempty"`
- AuthenticatedUserProvider string `protobuf:"bytes,17,opt,name=authenticated_user_provider,json=authenticatedUserProvider,proto3" json:"authenticated_user_provider,omitempty"`
- EffectivePolicy *EffectivePolicy `protobuf:"bytes,18,opt,name=effective_policy,json=effectivePolicy,proto3" json:"effective_policy,omitempty"`
- BannerMessage string `protobuf:"bytes,19,opt,name=banner_message,json=bannerMessage,proto3" json:"banner_message,omitempty"`
- BannerCss string `protobuf:"bytes,20,opt,name=banner_css,json=bannerCss,proto3" json:"banner_css,omitempty"`
- ShowDiagnostics bool `protobuf:"varint,21,opt,name=show_diagnostics,json=showDiagnostics,proto3" json:"show_diagnostics,omitempty"`
- ShowLogList bool `protobuf:"varint,22,opt,name=show_log_list,json=showLogList,proto3" json:"show_log_list,omitempty"`
- LoginRequired bool `protobuf:"varint,23,opt,name=login_required,json=loginRequired,proto3" json:"login_required,omitempty"`
- AvailableThemes []string `protobuf:"bytes,24,rep,name=available_themes,json=availableThemes,proto3" json:"available_themes,omitempty"` // List of available theme names
- ShowNavigateOnStartIcons bool `protobuf:"varint,25,opt,name=show_navigate_on_start_icons,json=showNavigateOnStartIcons,proto3" json:"show_navigate_on_start_icons,omitempty"`
- unknownFields protoimpl.UnknownFields
- sizeCache protoimpl.SizeCache
- }
- func (x *InitResponse) Reset() {
- *x = InitResponse{}
- mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[66]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- func (x *InitResponse) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*InitResponse) ProtoMessage() {}
- func (x *InitResponse) ProtoReflect() protoreflect.Message {
- mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[66]
- if x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use InitResponse.ProtoReflect.Descriptor instead.
- func (*InitResponse) Descriptor() ([]byte, []int) {
- return file_olivetin_api_v1_olivetin_proto_rawDescGZIP(), []int{66}
- }
- func (x *InitResponse) GetShowFooter() bool {
- if x != nil {
- return x.ShowFooter
- }
- return false
- }
- func (x *InitResponse) GetShowNavigation() bool {
- if x != nil {
- return x.ShowNavigation
- }
- return false
- }
- func (x *InitResponse) GetShowNewVersions() bool {
- if x != nil {
- return x.ShowNewVersions
- }
- return false
- }
- func (x *InitResponse) GetAvailableVersion() string {
- if x != nil {
- return x.AvailableVersion
- }
- return ""
- }
- func (x *InitResponse) GetCurrentVersion() string {
- if x != nil {
- return x.CurrentVersion
- }
- return ""
- }
- func (x *InitResponse) GetPageTitle() string {
- if x != nil {
- return x.PageTitle
- }
- return ""
- }
- func (x *InitResponse) GetSectionNavigationStyle() string {
- if x != nil {
- return x.SectionNavigationStyle
- }
- return ""
- }
- func (x *InitResponse) GetDefaultIconForBack() string {
- if x != nil {
- return x.DefaultIconForBack
- }
- return ""
- }
- func (x *InitResponse) GetEnableCustomJs() bool {
- if x != nil {
- return x.EnableCustomJs
- }
- return false
- }
- func (x *InitResponse) GetAuthLoginUrl() string {
- if x != nil {
- return x.AuthLoginUrl
- }
- return ""
- }
- func (x *InitResponse) GetAuthLocalLogin() bool {
- if x != nil {
- return x.AuthLocalLogin
- }
- return false
- }
- func (x *InitResponse) GetStyleMods() []string {
- if x != nil {
- return x.StyleMods
- }
- return nil
- }
- func (x *InitResponse) GetOAuth2Providers() []*OAuth2Provider {
- if x != nil {
- return x.OAuth2Providers
- }
- return nil
- }
- func (x *InitResponse) GetAdditionalLinks() []*AdditionalLink {
- if x != nil {
- return x.AdditionalLinks
- }
- return nil
- }
- func (x *InitResponse) GetRootDashboards() []string {
- if x != nil {
- return x.RootDashboards
- }
- return nil
- }
- func (x *InitResponse) GetAuthenticatedUser() string {
- if x != nil {
- return x.AuthenticatedUser
- }
- return ""
- }
- func (x *InitResponse) GetAuthenticatedUserProvider() string {
- if x != nil {
- return x.AuthenticatedUserProvider
- }
- return ""
- }
- func (x *InitResponse) GetEffectivePolicy() *EffectivePolicy {
- if x != nil {
- return x.EffectivePolicy
- }
- return nil
- }
- func (x *InitResponse) GetBannerMessage() string {
- if x != nil {
- return x.BannerMessage
- }
- return ""
- }
- func (x *InitResponse) GetBannerCss() string {
- if x != nil {
- return x.BannerCss
- }
- return ""
- }
- func (x *InitResponse) GetShowDiagnostics() bool {
- if x != nil {
- return x.ShowDiagnostics
- }
- return false
- }
- func (x *InitResponse) GetShowLogList() bool {
- if x != nil {
- return x.ShowLogList
- }
- return false
- }
- func (x *InitResponse) GetLoginRequired() bool {
- if x != nil {
- return x.LoginRequired
- }
- return false
- }
- func (x *InitResponse) GetAvailableThemes() []string {
- if x != nil {
- return x.AvailableThemes
- }
- return nil
- }
- func (x *InitResponse) GetShowNavigateOnStartIcons() bool {
- if x != nil {
- return x.ShowNavigateOnStartIcons
- }
- return false
- }
- type AdditionalLink struct {
- state protoimpl.MessageState `protogen:"open.v1"`
- Title string `protobuf:"bytes,1,opt,name=title,proto3" json:"title,omitempty"`
- Url string `protobuf:"bytes,2,opt,name=url,proto3" json:"url,omitempty"`
- unknownFields protoimpl.UnknownFields
- sizeCache protoimpl.SizeCache
- }
- func (x *AdditionalLink) Reset() {
- *x = AdditionalLink{}
- mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[67]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- func (x *AdditionalLink) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*AdditionalLink) ProtoMessage() {}
- func (x *AdditionalLink) ProtoReflect() protoreflect.Message {
- mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[67]
- if x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use AdditionalLink.ProtoReflect.Descriptor instead.
- func (*AdditionalLink) Descriptor() ([]byte, []int) {
- return file_olivetin_api_v1_olivetin_proto_rawDescGZIP(), []int{67}
- }
- func (x *AdditionalLink) GetTitle() string {
- if x != nil {
- return x.Title
- }
- return ""
- }
- func (x *AdditionalLink) GetUrl() string {
- if x != nil {
- return x.Url
- }
- return ""
- }
- type OAuth2Provider struct {
- state protoimpl.MessageState `protogen:"open.v1"`
- Title string `protobuf:"bytes,1,opt,name=title,proto3" json:"title,omitempty"`
- Icon string `protobuf:"bytes,3,opt,name=icon,proto3" json:"icon,omitempty"`
- Key string `protobuf:"bytes,4,opt,name=key,proto3" json:"key,omitempty"`
- unknownFields protoimpl.UnknownFields
- sizeCache protoimpl.SizeCache
- }
- func (x *OAuth2Provider) Reset() {
- *x = OAuth2Provider{}
- mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[68]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- func (x *OAuth2Provider) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*OAuth2Provider) ProtoMessage() {}
- func (x *OAuth2Provider) ProtoReflect() protoreflect.Message {
- mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[68]
- if x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use OAuth2Provider.ProtoReflect.Descriptor instead.
- func (*OAuth2Provider) Descriptor() ([]byte, []int) {
- return file_olivetin_api_v1_olivetin_proto_rawDescGZIP(), []int{68}
- }
- func (x *OAuth2Provider) GetTitle() string {
- if x != nil {
- return x.Title
- }
- return ""
- }
- func (x *OAuth2Provider) GetIcon() string {
- if x != nil {
- return x.Icon
- }
- return ""
- }
- func (x *OAuth2Provider) GetKey() string {
- if x != nil {
- return x.Key
- }
- return ""
- }
- type GetActionBindingRequest struct {
- state protoimpl.MessageState `protogen:"open.v1"`
- BindingId string `protobuf:"bytes,1,opt,name=binding_id,json=bindingId,proto3" json:"binding_id,omitempty"`
- unknownFields protoimpl.UnknownFields
- sizeCache protoimpl.SizeCache
- }
- func (x *GetActionBindingRequest) Reset() {
- *x = GetActionBindingRequest{}
- mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[69]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- func (x *GetActionBindingRequest) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*GetActionBindingRequest) ProtoMessage() {}
- func (x *GetActionBindingRequest) ProtoReflect() protoreflect.Message {
- mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[69]
- if x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use GetActionBindingRequest.ProtoReflect.Descriptor instead.
- func (*GetActionBindingRequest) Descriptor() ([]byte, []int) {
- return file_olivetin_api_v1_olivetin_proto_rawDescGZIP(), []int{69}
- }
- func (x *GetActionBindingRequest) GetBindingId() string {
- if x != nil {
- return x.BindingId
- }
- return ""
- }
- type GetActionBindingResponse struct {
- state protoimpl.MessageState `protogen:"open.v1"`
- Action *Action `protobuf:"bytes,1,opt,name=action,proto3" json:"action,omitempty"`
- BackToDashboards []*DashboardNavigationTarget `protobuf:"bytes,2,rep,name=back_to_dashboards,json=backToDashboards,proto3" json:"back_to_dashboards,omitempty"`
- unknownFields protoimpl.UnknownFields
- sizeCache protoimpl.SizeCache
- }
- func (x *GetActionBindingResponse) Reset() {
- *x = GetActionBindingResponse{}
- mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[70]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- func (x *GetActionBindingResponse) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*GetActionBindingResponse) ProtoMessage() {}
- func (x *GetActionBindingResponse) ProtoReflect() protoreflect.Message {
- mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[70]
- if x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use GetActionBindingResponse.ProtoReflect.Descriptor instead.
- func (*GetActionBindingResponse) Descriptor() ([]byte, []int) {
- return file_olivetin_api_v1_olivetin_proto_rawDescGZIP(), []int{70}
- }
- func (x *GetActionBindingResponse) GetAction() *Action {
- if x != nil {
- return x.Action
- }
- return nil
- }
- func (x *GetActionBindingResponse) GetBackToDashboards() []*DashboardNavigationTarget {
- if x != nil {
- return x.BackToDashboards
- }
- return nil
- }
- type GetEntitiesRequest struct {
- state protoimpl.MessageState `protogen:"open.v1"`
- unknownFields protoimpl.UnknownFields
- sizeCache protoimpl.SizeCache
- }
- func (x *GetEntitiesRequest) Reset() {
- *x = GetEntitiesRequest{}
- mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[71]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- func (x *GetEntitiesRequest) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*GetEntitiesRequest) ProtoMessage() {}
- func (x *GetEntitiesRequest) ProtoReflect() protoreflect.Message {
- mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[71]
- if x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use GetEntitiesRequest.ProtoReflect.Descriptor instead.
- func (*GetEntitiesRequest) Descriptor() ([]byte, []int) {
- return file_olivetin_api_v1_olivetin_proto_rawDescGZIP(), []int{71}
- }
- type GetEntitiesResponse struct {
- state protoimpl.MessageState `protogen:"open.v1"`
- EntityDefinitions []*EntityDefinition `protobuf:"bytes,1,rep,name=entity_definitions,json=entityDefinitions,proto3" json:"entity_definitions,omitempty"`
- unknownFields protoimpl.UnknownFields
- sizeCache protoimpl.SizeCache
- }
- func (x *GetEntitiesResponse) Reset() {
- *x = GetEntitiesResponse{}
- mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[72]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- func (x *GetEntitiesResponse) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*GetEntitiesResponse) ProtoMessage() {}
- func (x *GetEntitiesResponse) ProtoReflect() protoreflect.Message {
- mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[72]
- if x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use GetEntitiesResponse.ProtoReflect.Descriptor instead.
- func (*GetEntitiesResponse) Descriptor() ([]byte, []int) {
- return file_olivetin_api_v1_olivetin_proto_rawDescGZIP(), []int{72}
- }
- func (x *GetEntitiesResponse) GetEntityDefinitions() []*EntityDefinition {
- if x != nil {
- return x.EntityDefinitions
- }
- return nil
- }
- type EntityDefinition struct {
- state protoimpl.MessageState `protogen:"open.v1"`
- Title string `protobuf:"bytes,1,opt,name=title,proto3" json:"title,omitempty"`
- Instances []*Entity `protobuf:"bytes,2,rep,name=instances,proto3" json:"instances,omitempty"`
- UsedOnDashboards []string `protobuf:"bytes,3,rep,name=used_on_dashboards,json=usedOnDashboards,proto3" json:"used_on_dashboards,omitempty"`
- unknownFields protoimpl.UnknownFields
- sizeCache protoimpl.SizeCache
- }
- func (x *EntityDefinition) Reset() {
- *x = EntityDefinition{}
- mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[73]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- func (x *EntityDefinition) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*EntityDefinition) ProtoMessage() {}
- func (x *EntityDefinition) ProtoReflect() protoreflect.Message {
- mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[73]
- if x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use EntityDefinition.ProtoReflect.Descriptor instead.
- func (*EntityDefinition) Descriptor() ([]byte, []int) {
- return file_olivetin_api_v1_olivetin_proto_rawDescGZIP(), []int{73}
- }
- func (x *EntityDefinition) GetTitle() string {
- if x != nil {
- return x.Title
- }
- return ""
- }
- func (x *EntityDefinition) GetInstances() []*Entity {
- if x != nil {
- return x.Instances
- }
- return nil
- }
- func (x *EntityDefinition) GetUsedOnDashboards() []string {
- if x != nil {
- return x.UsedOnDashboards
- }
- return nil
- }
- type GetEntityRequest struct {
- state protoimpl.MessageState `protogen:"open.v1"`
- UniqueKey string `protobuf:"bytes,1,opt,name=unique_key,json=uniqueKey,proto3" json:"unique_key,omitempty"`
- Type string `protobuf:"bytes,2,opt,name=type,proto3" json:"type,omitempty"`
- unknownFields protoimpl.UnknownFields
- sizeCache protoimpl.SizeCache
- }
- func (x *GetEntityRequest) Reset() {
- *x = GetEntityRequest{}
- mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[74]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- func (x *GetEntityRequest) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*GetEntityRequest) ProtoMessage() {}
- func (x *GetEntityRequest) ProtoReflect() protoreflect.Message {
- mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[74]
- if x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use GetEntityRequest.ProtoReflect.Descriptor instead.
- func (*GetEntityRequest) Descriptor() ([]byte, []int) {
- return file_olivetin_api_v1_olivetin_proto_rawDescGZIP(), []int{74}
- }
- func (x *GetEntityRequest) GetUniqueKey() string {
- if x != nil {
- return x.UniqueKey
- }
- return ""
- }
- func (x *GetEntityRequest) GetType() string {
- if x != nil {
- return x.Type
- }
- return ""
- }
- type RestartActionRequest struct {
- state protoimpl.MessageState `protogen:"open.v1"`
- ExecutionTrackingId string `protobuf:"bytes,1,opt,name=execution_tracking_id,json=executionTrackingId,proto3" json:"execution_tracking_id,omitempty"`
- unknownFields protoimpl.UnknownFields
- sizeCache protoimpl.SizeCache
- }
- func (x *RestartActionRequest) Reset() {
- *x = RestartActionRequest{}
- mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[75]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- func (x *RestartActionRequest) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*RestartActionRequest) ProtoMessage() {}
- func (x *RestartActionRequest) ProtoReflect() protoreflect.Message {
- mi := &file_olivetin_api_v1_olivetin_proto_msgTypes[75]
- if x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use RestartActionRequest.ProtoReflect.Descriptor instead.
- func (*RestartActionRequest) Descriptor() ([]byte, []int) {
- return file_olivetin_api_v1_olivetin_proto_rawDescGZIP(), []int{75}
- }
- func (x *RestartActionRequest) GetExecutionTrackingId() string {
- if x != nil {
- return x.ExecutionTrackingId
- }
- return ""
- }
- var File_olivetin_api_v1_olivetin_proto protoreflect.FileDescriptor
- const file_olivetin_api_v1_olivetin_proto_rawDesc = "" +
- "\n" +
- "\x1eolivetin/api/v1/olivetin.proto\x12\x0folivetin.api.v1\"\xd1\x06\n" +
- "\x06Action\x12\x1d\n" +
- "\n" +
- "binding_id\x18\x01 \x01(\tR\tbindingId\x12\x14\n" +
- "\x05title\x18\x02 \x01(\tR\x05title\x12\x12\n" +
- "\x04icon\x18\x03 \x01(\tR\x04icon\x12\x19\n" +
- "\bcan_exec\x18\x04 \x01(\bR\acanExec\x12=\n" +
- "\targuments\x18\x05 \x03(\v2\x1f.olivetin.api.v1.ActionArgumentR\targuments\x12$\n" +
- "\x0epopup_on_start\x18\x06 \x01(\tR\fpopupOnStart\x12\x14\n" +
- "\x05order\x18\a \x01(\x05R\x05order\x12\x18\n" +
- "\atimeout\x18\b \x01(\x05R\atimeout\x12=\n" +
- "\x1bdatetime_rate_limit_expires\x18\t \x01(\tR\x18datetimeRateLimitExpires\x12&\n" +
- "\x0fexec_on_startup\x18\n" +
- " \x01(\bR\rexecOnStartup\x12 \n" +
- "\fexec_on_cron\x18\v \x03(\tR\n" +
- "execOnCron\x12;\n" +
- "\x1bexec_on_file_created_in_dir\x18\f \x03(\tR\x16execOnFileCreatedInDir\x12;\n" +
- "\x1bexec_on_file_changed_in_dir\x18\r \x03(\tR\x16execOnFileChangedInDir\x121\n" +
- "\x15exec_on_calendar_file\x18\x0e \x01(\tR\x12execOnCalendarFile\x12P\n" +
- "\x10exec_on_webhooks\x18\x0f \x03(\v2&.olivetin.api.v1.ActionWebhookExecHintR\x0eexecOnWebhooks\x12$\n" +
- "\rjustification\x18\x10 \x01(\bR\rjustification\x120\n" +
- "\x14has_running_instance\x18\x11 \x01(\bR\x12hasRunningInstance\x12.\n" +
- "\x13has_queued_instance\x18\x12 \x01(\bR\x11hasQueuedInstance\x12>\n" +
- "\x06groups\x18\x13 \x03(\v2&.olivetin.api.v1.ActionGroupMembershipR\x06groups\"q\n" +
- "\x15ActionGroupMembership\x12\x12\n" +
- "\x04name\x18\x01 \x01(\tR\x04name\x12%\n" +
- "\x0emax_concurrent\x18\x02 \x01(\x05R\rmaxConcurrent\x12\x1d\n" +
- "\n" +
- "queue_size\x18\x03 \x01(\x05R\tqueueSize\"\x8a\x03\n" +
- "\x15ActionWebhookExecHint\x12\x1a\n" +
- "\btemplate\x18\x01 \x01(\tR\btemplate\x12\x1d\n" +
- "\n" +
- "match_path\x18\x02 \x01(\tR\tmatchPath\x12]\n" +
- "\rmatch_headers\x18\x03 \x03(\v28.olivetin.api.v1.ActionWebhookExecHint.MatchHeadersEntryR\fmatchHeaders\x12W\n" +
- "\vmatch_query\x18\x04 \x03(\v26.olivetin.api.v1.ActionWebhookExecHint.MatchQueryEntryR\n" +
- "matchQuery\x1a?\n" +
- "\x11MatchHeadersEntry\x12\x10\n" +
- "\x03key\x18\x01 \x01(\tR\x03key\x12\x14\n" +
- "\x05value\x18\x02 \x01(\tR\x05value:\x028\x01\x1a=\n" +
- "\x0fMatchQueryEntry\x12\x10\n" +
- "\x03key\x18\x01 \x01(\tR\x03key\x12\x14\n" +
- "\x05value\x18\x02 \x01(\tR\x05value:\x028\x01\"\xa2\x03\n" +
- "\x0eActionArgument\x12\x12\n" +
- "\x04name\x18\x01 \x01(\tR\x04name\x12\x14\n" +
- "\x05title\x18\x02 \x01(\tR\x05title\x12\x12\n" +
- "\x04type\x18\x03 \x01(\tR\x04type\x12#\n" +
- "\rdefault_value\x18\x04 \x01(\tR\fdefaultValue\x12?\n" +
- "\achoices\x18\x05 \x03(\v2%.olivetin.api.v1.ActionArgumentChoiceR\achoices\x12 \n" +
- "\vdescription\x18\x06 \x01(\tR\vdescription\x12R\n" +
- "\vsuggestions\x18\a \x03(\v20.olivetin.api.v1.ActionArgument.SuggestionsEntryR\vsuggestions\x126\n" +
- "\x17suggestions_browser_key\x18\b \x01(\tR\x15suggestionsBrowserKey\x1a>\n" +
- "\x10SuggestionsEntry\x12\x10\n" +
- "\x03key\x18\x01 \x01(\tR\x03key\x12\x14\n" +
- "\x05value\x18\x02 \x01(\tR\x05value:\x028\x01\"B\n" +
- "\x14ActionArgumentChoice\x12\x14\n" +
- "\x05value\x18\x01 \x01(\tR\x05value\x12\x14\n" +
- "\x05title\x18\x02 \x01(\tR\x05title\"\xeb\x01\n" +
- "\x06Entity\x12\x14\n" +
- "\x05title\x18\x01 \x01(\tR\x05title\x12\x1d\n" +
- "\n" +
- "unique_key\x18\x02 \x01(\tR\tuniqueKey\x12\x12\n" +
- "\x04type\x18\x03 \x01(\tR\x04type\x12 \n" +
- "\vdirectories\x18\x04 \x03(\tR\vdirectories\x12;\n" +
- "\x06fields\x18\x05 \x03(\v2#.olivetin.api.v1.Entity.FieldsEntryR\x06fields\x1a9\n" +
- "\vFieldsEntry\x12\x10\n" +
- "\x03key\x18\x01 \x01(\tR\x03key\x12\x14\n" +
- "\x05value\x18\x02 \x01(\tR\x05value:\x028\x01\"f\n" +
- "\x14GetDashboardResponse\x12\x14\n" +
- "\x05title\x18\x01 \x01(\tR\x05title\x128\n" +
- "\tdashboard\x18\x04 \x01(\v2\x1a.olivetin.api.v1.DashboardR\tdashboard\"\x90\x01\n" +
- "\x0fEffectivePolicy\x12)\n" +
- "\x10show_diagnostics\x18\x01 \x01(\bR\x0fshowDiagnostics\x12\"\n" +
- "\rshow_log_list\x18\x02 \x01(\bR\vshowLogList\x12.\n" +
- "\x13show_version_number\x18\x03 \x01(\bR\x11showVersionNumber\"k\n" +
- "\x13GetDashboardRequest\x12\x14\n" +
- "\x05title\x18\x01 \x01(\tR\x05title\x12\x1f\n" +
- "\ventity_type\x18\x02 \x01(\tR\n" +
- "entityType\x12\x1d\n" +
- "\n" +
- "entity_key\x18\x03 \x01(\tR\tentityKey\"b\n" +
- "\tDashboard\x12\x14\n" +
- "\x05title\x18\x01 \x01(\tR\x05title\x12?\n" +
- "\bcontents\x18\x02 \x03(\v2#.olivetin.api.v1.DashboardComponentR\bcontents\"\xa1\x02\n" +
- "\x12DashboardComponent\x12\x14\n" +
- "\x05title\x18\x01 \x01(\tR\x05title\x12\x12\n" +
- "\x04type\x18\x02 \x01(\tR\x04type\x12?\n" +
- "\bcontents\x18\x03 \x03(\v2#.olivetin.api.v1.DashboardComponentR\bcontents\x12\x12\n" +
- "\x04icon\x18\x04 \x01(\tR\x04icon\x12\x1b\n" +
- "\tcss_class\x18\x05 \x01(\tR\bcssClass\x12/\n" +
- "\x06action\x18\x06 \x01(\v2\x17.olivetin.api.v1.ActionR\x06action\x12\x1f\n" +
- "\ventity_type\x18\a \x01(\tR\n" +
- "entityType\x12\x1d\n" +
- "\n" +
- "entity_key\x18\b \x01(\tR\tentityKey\"\xcb\x01\n" +
- "\x12StartActionRequest\x12\x1d\n" +
- "\n" +
- "binding_id\x18\x01 \x01(\tR\tbindingId\x12B\n" +
- "\targuments\x18\x02 \x03(\v2$.olivetin.api.v1.StartActionArgumentR\targuments\x12,\n" +
- "\x12unique_tracking_id\x18\x03 \x01(\tR\x10uniqueTrackingId\x12$\n" +
- "\rjustification\x18\x04 \x01(\tR\rjustification\"?\n" +
- "\x13StartActionArgument\x12\x12\n" +
- "\x04name\x18\x01 \x01(\tR\x04name\x12\x14\n" +
- "\x05value\x18\x02 \x01(\tR\x05value\"I\n" +
- "\x13StartActionResponse\x122\n" +
- "\x15execution_tracking_id\x18\x02 \x01(\tR\x13executionTrackingId\"\xa2\x01\n" +
- "\x19StartActionAndWaitRequest\x12\x1b\n" +
- "\taction_id\x18\x01 \x01(\tR\bactionId\x12B\n" +
- "\targuments\x18\x02 \x03(\v2$.olivetin.api.v1.StartActionArgumentR\targuments\x12$\n" +
- "\rjustification\x18\x03 \x01(\tR\rjustification\"T\n" +
- "\x1aStartActionAndWaitResponse\x126\n" +
- "\tlog_entry\x18\x01 \x01(\v2\x19.olivetin.api.v1.LogEntryR\blogEntry\"6\n" +
- "\x17StartActionByGetRequest\x12\x1b\n" +
- "\taction_id\x18\x01 \x01(\tR\bactionId\"N\n" +
- "\x18StartActionByGetResponse\x122\n" +
- "\x15execution_tracking_id\x18\x02 \x01(\tR\x13executionTrackingId\"=\n" +
- "\x1eStartActionByGetAndWaitRequest\x12\x1b\n" +
- "\taction_id\x18\x01 \x01(\tR\bactionId\"Y\n" +
- "\x1fStartActionByGetAndWaitResponse\x126\n" +
- "\tlog_entry\x18\x01 \x01(\v2\x19.olivetin.api.v1.LogEntryR\blogEntry\"\x89\x01\n" +
- "\x0eGetLogsRequest\x12!\n" +
- "\fstart_offset\x18\x01 \x01(\x03R\vstartOffset\x12\x1f\n" +
- "\vdate_filter\x18\x02 \x01(\tR\n" +
- "dateFilter\x12\x1b\n" +
- "\tpage_size\x18\x03 \x01(\x03R\bpageSize\x12\x16\n" +
- "\x06filter\x18\x04 \x01(\tR\x06filter\"\xf1\x05\n" +
- "\bLogEntry\x12)\n" +
- "\x10datetime_started\x18\x01 \x01(\tR\x0fdatetimeStarted\x12!\n" +
- "\faction_title\x18\x02 \x01(\tR\vactionTitle\x12\x16\n" +
- "\x06output\x18\x03 \x01(\tR\x06output\x12\x1b\n" +
- "\ttimed_out\x18\x05 \x01(\bR\btimedOut\x12\x1b\n" +
- "\texit_code\x18\x06 \x01(\x05R\bexitCode\x12\x12\n" +
- "\x04user\x18\a \x01(\tR\x04user\x12\x1d\n" +
- "\n" +
- "user_class\x18\b \x01(\tR\tuserClass\x12\x1f\n" +
- "\vaction_icon\x18\t \x01(\tR\n" +
- "actionIcon\x12\x12\n" +
- "\x04tags\x18\n" +
- " \x03(\tR\x04tags\x122\n" +
- "\x15execution_tracking_id\x18\v \x01(\tR\x13executionTrackingId\x12+\n" +
- "\x11datetime_finished\x18\f \x01(\tR\x10datetimeFinished\x12+\n" +
- "\x11execution_started\x18\x0e \x01(\bR\x10executionStarted\x12-\n" +
- "\x12execution_finished\x18\x0f \x01(\bR\x11executionFinished\x12\x18\n" +
- "\ablocked\x18\x10 \x01(\bR\ablocked\x12%\n" +
- "\x0edatetime_index\x18\x11 \x01(\x03R\rdatetimeIndex\x12\x19\n" +
- "\bcan_kill\x18\x12 \x01(\bR\acanKill\x12=\n" +
- "\x1bdatetime_rate_limit_expires\x18\x13 \x01(\tR\x18datetimeRateLimitExpires\x12\x1d\n" +
- "\n" +
- "binding_id\x18\x14 \x01(\tR\tbindingId\x12\x16\n" +
- "\x06queued\x18\x15 \x01(\bR\x06queued\x12(\n" +
- "\x10queued_for_group\x18\x16 \x01(\tR\x0equeuedForGroup\x12$\n" +
- "\rjustification\x18\x17 \x01(\tR\rjustification\"\xca\x01\n" +
- "\x0fGetLogsResponse\x12-\n" +
- "\x04logs\x18\x01 \x03(\v2\x19.olivetin.api.v1.LogEntryR\x04logs\x12'\n" +
- "\x0fcount_remaining\x18\x02 \x01(\x03R\x0ecountRemaining\x12\x1b\n" +
- "\tpage_size\x18\x03 \x01(\x03R\bpageSize\x12\x1f\n" +
- "\vtotal_count\x18\x04 \x01(\x03R\n" +
- "totalCount\x12!\n" +
- "\fstart_offset\x18\x05 \x01(\x03R\vstartOffset\"V\n" +
- "\x14GetActionLogsRequest\x12\x1b\n" +
- "\taction_id\x18\x01 \x01(\tR\bactionId\x12!\n" +
- "\fstart_offset\x18\x02 \x01(\x03R\vstartOffset\"\xd0\x01\n" +
- "\x15GetActionLogsResponse\x12-\n" +
- "\x04logs\x18\x01 \x03(\v2\x19.olivetin.api.v1.LogEntryR\x04logs\x12'\n" +
- "\x0fcount_remaining\x18\x02 \x01(\x03R\x0ecountRemaining\x12\x1b\n" +
- "\tpage_size\x18\x03 \x01(\x03R\bpageSize\x12\x1f\n" +
- "\vtotal_count\x18\x04 \x01(\x03R\n" +
- "totalCount\x12!\n" +
- "\fstart_offset\x18\x05 \x01(\x03R\vstartOffset\"\x1a\n" +
- "\x18GetExecutionQueueRequest\"\x9d\x02\n" +
- "\x14ExecutionQueueAction\x12\x1d\n" +
- "\n" +
- "binding_id\x18\x01 \x01(\tR\tbindingId\x12!\n" +
- "\faction_title\x18\x02 \x01(\tR\vactionTitle\x12\x1f\n" +
- "\vaction_icon\x18\x03 \x01(\tR\n" +
- "actionIcon\x12%\n" +
- "\x0emax_concurrent\x18\x04 \x01(\x05R\rmaxConcurrent\x12!\n" +
- "\factive_count\x18\x05 \x01(\x05R\vactiveCount\x12#\n" +
- "\rentity_prefix\x18\x06 \x01(\tR\fentityPrefix\x123\n" +
- "\aentries\x18\a \x03(\v2\x19.olivetin.api.v1.LogEntryR\aentries\"\x8a\x02\n" +
- "\x13ExecutionQueueGroup\x12\x12\n" +
- "\x04name\x18\x01 \x01(\tR\x04name\x12\x12\n" +
- "\x04icon\x18\x02 \x01(\tR\x04icon\x12%\n" +
- "\x0emax_concurrent\x18\x03 \x01(\x05R\rmaxConcurrent\x12!\n" +
- "\factive_count\x18\x04 \x01(\x05R\vactiveCount\x12?\n" +
- "\aactions\x18\x05 \x03(\v2%.olivetin.api.v1.ExecutionQueueActionR\aactions\x12!\n" +
- "\fqueued_count\x18\x06 \x01(\x05R\vqueuedCount\x12\x1d\n" +
- "\n" +
- "queue_size\x18\a \x01(\x05R\tqueueSize\"|\n" +
- "\x19GetExecutionQueueResponse\x12<\n" +
- "\x06groups\x18\x01 \x03(\v2$.olivetin.api.v1.ExecutionQueueGroupR\x06groups\x12!\n" +
- "\ftotal_active\x18\x02 \x01(\x05R\vtotalActive\"\x8b\x01\n" +
- "\x1bValidateArgumentTypeRequest\x12\x14\n" +
- "\x05value\x18\x01 \x01(\tR\x05value\x12\x12\n" +
- "\x04type\x18\x02 \x01(\tR\x04type\x12\x1d\n" +
- "\n" +
- "binding_id\x18\x03 \x01(\tR\tbindingId\x12#\n" +
- "\rargument_name\x18\x04 \x01(\tR\fargumentName\"V\n" +
- "\x1cValidateArgumentTypeResponse\x12\x14\n" +
- "\x05valid\x18\x01 \x01(\bR\x05valid\x12 \n" +
- "\vdescription\x18\x02 \x01(\tR\vdescription\"K\n" +
- "\x15WatchExecutionRequest\x122\n" +
- "\x15execution_tracking_id\x18\x01 \x01(\tR\x13executionTrackingId\".\n" +
- "\x14WatchExecutionUpdate\x12\x16\n" +
- "\x06update\x18\x01 \x01(\tR\x06update\"i\n" +
- "\x16ExecutionStatusRequest\x122\n" +
- "\x15execution_tracking_id\x18\x01 \x01(\tR\x13executionTrackingId\x12\x1b\n" +
- "\taction_id\x18\x02 \x01(\tR\bactionId\"\x85\x01\n" +
- "\x19DashboardNavigationTarget\x12\x14\n" +
- "\x05title\x18\x01 \x01(\tR\x05title\x12\x1f\n" +
- "\ventity_type\x18\x02 \x01(\tR\n" +
- "entityType\x12\x1d\n" +
- "\n" +
- "entity_key\x18\x03 \x01(\tR\tentityKey\x12\x12\n" +
- "\x04path\x18\x04 \x01(\tR\x04path\"\xab\x01\n" +
- "\x17ExecutionStatusResponse\x126\n" +
- "\tlog_entry\x18\x01 \x01(\v2\x19.olivetin.api.v1.LogEntryR\blogEntry\x12X\n" +
- "\x12back_to_dashboards\x18\x02 \x03(\v2*.olivetin.api.v1.DashboardNavigationTargetR\x10backToDashboards\"\x0f\n" +
- "\rWhoAmIRequest\"\x9f\x01\n" +
- "\x0eWhoAmIResponse\x12-\n" +
- "\x12authenticated_user\x18\x01 \x01(\tR\x11authenticatedUser\x12\x1c\n" +
- "\tusergroup\x18\x02 \x01(\tR\tusergroup\x12\x1a\n" +
- "\bprovider\x18\x03 \x01(\tR\bprovider\x12\x12\n" +
- "\x04acls\x18\x04 \x03(\tR\x04acls\x12\x10\n" +
- "\x03sid\x18\x05 \x01(\tR\x03sid\"\x12\n" +
- "\x10SosReportRequest\")\n" +
- "\x11SosReportResponse\x12\x14\n" +
- "\x05alert\x18\x01 \x01(\tR\x05alert\"\x11\n" +
- "\x0fDumpVarsRequest\"\xb2\x01\n" +
- "\x10DumpVarsResponse\x12\x14\n" +
- "\x05alert\x18\x01 \x01(\tR\x05alert\x12K\n" +
- "\bcontents\x18\x02 \x03(\v2/.olivetin.api.v1.DumpVarsResponse.ContentsEntryR\bcontents\x1a;\n" +
- "\rContentsEntry\x12\x10\n" +
- "\x03key\x18\x01 \x01(\tR\x03key\x12\x14\n" +
- "\x05value\x18\x02 \x01(\tR\x05value:\x028\x01\"V\n" +
- "\fDebugBinding\x12!\n" +
- "\faction_title\x18\x01 \x01(\tR\vactionTitle\x12#\n" +
- "\rentity_prefix\x18\x02 \x01(\tR\fentityPrefix\"\x1e\n" +
- "\x1cDumpPublicIdActionMapRequest\"\xeb\x01\n" +
- "\x1dDumpPublicIdActionMapResponse\x12\x14\n" +
- "\x05alert\x18\x01 \x01(\tR\x05alert\x12X\n" +
- "\bcontents\x18\x02 \x03(\v2<.olivetin.api.v1.DumpPublicIdActionMapResponse.ContentsEntryR\bcontents\x1aZ\n" +
- "\rContentsEntry\x12\x10\n" +
- "\x03key\x18\x01 \x01(\tR\x03key\x123\n" +
- "\x05value\x18\x02 \x01(\v2\x1d.olivetin.api.v1.DebugBindingR\x05value:\x028\x01\"\x12\n" +
- "\x10GetReadyzRequest\"+\n" +
- "\x11GetReadyzResponse\x12\x16\n" +
- "\x06status\x18\x01 \x01(\tR\x06status\"\x14\n" +
- "\x12EventStreamRequest\"\xf4\x03\n" +
- "\x13EventStreamResponse\x12L\n" +
- "\x0eentity_changed\x18\x02 \x01(\v2#.olivetin.api.v1.EventEntityChangedH\x00R\rentityChanged\x12L\n" +
- "\x0econfig_changed\x18\x03 \x01(\v2#.olivetin.api.v1.EventConfigChangedH\x00R\rconfigChanged\x12X\n" +
- "\x12execution_finished\x18\x04 \x01(\v2'.olivetin.api.v1.EventExecutionFinishedH\x00R\x11executionFinished\x12U\n" +
- "\x11execution_started\x18\x05 \x01(\v2&.olivetin.api.v1.EventExecutionStartedH\x00R\x10executionStarted\x12F\n" +
- "\foutput_chunk\x18\x06 \x01(\v2!.olivetin.api.v1.EventOutputChunkH\x00R\voutputChunk\x12?\n" +
- "\theartbeat\x18\a \x01(\v2\x1f.olivetin.api.v1.EventHeartbeatH\x00R\theartbeatB\a\n" +
- "\x05event\"^\n" +
- "\x10EventOutputChunk\x122\n" +
- "\x15execution_tracking_id\x18\x01 \x01(\tR\x13executionTrackingId\x12\x16\n" +
- "\x06output\x18\x02 \x01(\tR\x06output\"\x14\n" +
- "\x12EventEntityChanged\"\x14\n" +
- "\x12EventConfigChanged\"\x10\n" +
- "\x0eEventHeartbeat\"P\n" +
- "\x16EventExecutionFinished\x126\n" +
- "\tlog_entry\x18\x01 \x01(\v2\x19.olivetin.api.v1.LogEntryR\blogEntry\"O\n" +
- "\x15EventExecutionStarted\x126\n" +
- "\tlog_entry\x18\x01 \x01(\v2\x19.olivetin.api.v1.LogEntryR\blogEntry\"G\n" +
- "\x11KillActionRequest\x122\n" +
- "\x15execution_tracking_id\x18\x01 \x01(\tR\x13executionTrackingId\"\xa3\x01\n" +
- "\x12KillActionResponse\x122\n" +
- "\x15execution_tracking_id\x18\x01 \x01(\tR\x13executionTrackingId\x12\x16\n" +
- "\x06killed\x18\x02 \x01(\bR\x06killed\x12+\n" +
- "\x11already_completed\x18\x03 \x01(\bR\x10alreadyCompleted\x12\x14\n" +
- "\x05found\x18\x04 \x01(\bR\x05found\"O\n" +
- "\x15LocalUserLoginRequest\x12\x1a\n" +
- "\busername\x18\x01 \x01(\tR\busername\x12\x1a\n" +
- "\bpassword\x18\x02 \x01(\tR\bpassword\"2\n" +
- "\x16LocalUserLoginResponse\x12\x18\n" +
- "\asuccess\x18\x01 \x01(\bR\asuccess\"1\n" +
- "\x13PasswordHashRequest\x12\x1a\n" +
- "\bpassword\x18\x01 \x01(\tR\bpassword\"*\n" +
- "\x14PasswordHashResponse\x12\x12\n" +
- "\x04hash\x18\x01 \x01(\tR\x04hash\"\x0f\n" +
- "\rLogoutRequest\"\x10\n" +
- "\x0eLogoutResponse\"\x17\n" +
- "\x15GetDiagnosticsRequest\"b\n" +
- "\x16GetDiagnosticsResponse\x12 \n" +
- "\vSshFoundKey\x18\x01 \x01(\tR\vSshFoundKey\x12&\n" +
- "\x0eSshFoundConfig\x18\x02 \x01(\tR\x0eSshFoundConfig\"\r\n" +
- "\vInitRequest\"\x8d\t\n" +
- "\fInitResponse\x12\x1e\n" +
- "\n" +
- "showFooter\x18\x01 \x01(\bR\n" +
- "showFooter\x12&\n" +
- "\x0eshowNavigation\x18\x02 \x01(\bR\x0eshowNavigation\x12(\n" +
- "\x0fshowNewVersions\x18\x03 \x01(\bR\x0fshowNewVersions\x12*\n" +
- "\x10availableVersion\x18\x04 \x01(\tR\x10availableVersion\x12&\n" +
- "\x0ecurrentVersion\x18\x05 \x01(\tR\x0ecurrentVersion\x12\x1c\n" +
- "\tpageTitle\x18\x06 \x01(\tR\tpageTitle\x126\n" +
- "\x16sectionNavigationStyle\x18\a \x01(\tR\x16sectionNavigationStyle\x12.\n" +
- "\x12defaultIconForBack\x18\b \x01(\tR\x12defaultIconForBack\x12&\n" +
- "\x0eenableCustomJs\x18\t \x01(\bR\x0eenableCustomJs\x12\"\n" +
- "\fauthLoginUrl\x18\n" +
- " \x01(\tR\fauthLoginUrl\x12&\n" +
- "\x0eauthLocalLogin\x18\v \x01(\bR\x0eauthLocalLogin\x12\x1c\n" +
- "\tstyleMods\x18\f \x03(\tR\tstyleMods\x12I\n" +
- "\x0foAuth2Providers\x18\r \x03(\v2\x1f.olivetin.api.v1.OAuth2ProviderR\x0foAuth2Providers\x12I\n" +
- "\x0fadditionalLinks\x18\x0e \x03(\v2\x1f.olivetin.api.v1.AdditionalLinkR\x0fadditionalLinks\x12&\n" +
- "\x0erootDashboards\x18\x0f \x03(\tR\x0erootDashboards\x12-\n" +
- "\x12authenticated_user\x18\x10 \x01(\tR\x11authenticatedUser\x12>\n" +
- "\x1bauthenticated_user_provider\x18\x11 \x01(\tR\x19authenticatedUserProvider\x12K\n" +
- "\x10effective_policy\x18\x12 \x01(\v2 .olivetin.api.v1.EffectivePolicyR\x0feffectivePolicy\x12%\n" +
- "\x0ebanner_message\x18\x13 \x01(\tR\rbannerMessage\x12\x1d\n" +
- "\n" +
- "banner_css\x18\x14 \x01(\tR\tbannerCss\x12)\n" +
- "\x10show_diagnostics\x18\x15 \x01(\bR\x0fshowDiagnostics\x12\"\n" +
- "\rshow_log_list\x18\x16 \x01(\bR\vshowLogList\x12%\n" +
- "\x0elogin_required\x18\x17 \x01(\bR\rloginRequired\x12)\n" +
- "\x10available_themes\x18\x18 \x03(\tR\x0favailableThemes\x12>\n" +
- "\x1cshow_navigate_on_start_icons\x18\x19 \x01(\bR\x18showNavigateOnStartIcons\"8\n" +
- "\x0eAdditionalLink\x12\x14\n" +
- "\x05title\x18\x01 \x01(\tR\x05title\x12\x10\n" +
- "\x03url\x18\x02 \x01(\tR\x03url\"L\n" +
- "\x0eOAuth2Provider\x12\x14\n" +
- "\x05title\x18\x01 \x01(\tR\x05title\x12\x12\n" +
- "\x04icon\x18\x03 \x01(\tR\x04icon\x12\x10\n" +
- "\x03key\x18\x04 \x01(\tR\x03key\"8\n" +
- "\x17GetActionBindingRequest\x12\x1d\n" +
- "\n" +
- "binding_id\x18\x01 \x01(\tR\tbindingId\"\xa5\x01\n" +
- "\x18GetActionBindingResponse\x12/\n" +
- "\x06action\x18\x01 \x01(\v2\x17.olivetin.api.v1.ActionR\x06action\x12X\n" +
- "\x12back_to_dashboards\x18\x02 \x03(\v2*.olivetin.api.v1.DashboardNavigationTargetR\x10backToDashboards\"\x14\n" +
- "\x12GetEntitiesRequest\"g\n" +
- "\x13GetEntitiesResponse\x12P\n" +
- "\x12entity_definitions\x18\x01 \x03(\v2!.olivetin.api.v1.EntityDefinitionR\x11entityDefinitions\"\x8d\x01\n" +
- "\x10EntityDefinition\x12\x14\n" +
- "\x05title\x18\x01 \x01(\tR\x05title\x125\n" +
- "\tinstances\x18\x02 \x03(\v2\x17.olivetin.api.v1.EntityR\tinstances\x12,\n" +
- "\x12used_on_dashboards\x18\x03 \x03(\tR\x10usedOnDashboards\"E\n" +
- "\x10GetEntityRequest\x12\x1d\n" +
- "\n" +
- "unique_key\x18\x01 \x01(\tR\tuniqueKey\x12\x12\n" +
- "\x04type\x18\x02 \x01(\tR\x04type\"J\n" +
- "\x14RestartActionRequest\x122\n" +
- "\x15execution_tracking_id\x18\x01 \x01(\tR\x13executionTrackingId2\xd6\x13\n" +
- "\x12OliveTinApiService\x12]\n" +
- "\fGetDashboard\x12$.olivetin.api.v1.GetDashboardRequest\x1a%.olivetin.api.v1.GetDashboardResponse\"\x00\x12Z\n" +
- "\vStartAction\x12#.olivetin.api.v1.StartActionRequest\x1a$.olivetin.api.v1.StartActionResponse\"\x00\x12o\n" +
- "\x12StartActionAndWait\x12*.olivetin.api.v1.StartActionAndWaitRequest\x1a+.olivetin.api.v1.StartActionAndWaitResponse\"\x00\x12i\n" +
- "\x10StartActionByGet\x12(.olivetin.api.v1.StartActionByGetRequest\x1a).olivetin.api.v1.StartActionByGetResponse\"\x00\x12~\n" +
- "\x17StartActionByGetAndWait\x12/.olivetin.api.v1.StartActionByGetAndWaitRequest\x1a0.olivetin.api.v1.StartActionByGetAndWaitResponse\"\x00\x12^\n" +
- "\rRestartAction\x12%.olivetin.api.v1.RestartActionRequest\x1a$.olivetin.api.v1.StartActionResponse\"\x00\x12W\n" +
- "\n" +
- "KillAction\x12\".olivetin.api.v1.KillActionRequest\x1a#.olivetin.api.v1.KillActionResponse\"\x00\x12f\n" +
- "\x0fExecutionStatus\x12'.olivetin.api.v1.ExecutionStatusRequest\x1a(.olivetin.api.v1.ExecutionStatusResponse\"\x00\x12N\n" +
- "\aGetLogs\x12\x1f.olivetin.api.v1.GetLogsRequest\x1a .olivetin.api.v1.GetLogsResponse\"\x00\x12`\n" +
- "\rGetActionLogs\x12%.olivetin.api.v1.GetActionLogsRequest\x1a&.olivetin.api.v1.GetActionLogsResponse\"\x00\x12l\n" +
- "\x11GetExecutionQueue\x12).olivetin.api.v1.GetExecutionQueueRequest\x1a*.olivetin.api.v1.GetExecutionQueueResponse\"\x00\x12u\n" +
- "\x14ValidateArgumentType\x12,.olivetin.api.v1.ValidateArgumentTypeRequest\x1a-.olivetin.api.v1.ValidateArgumentTypeResponse\"\x00\x12K\n" +
- "\x06WhoAmI\x12\x1e.olivetin.api.v1.WhoAmIRequest\x1a\x1f.olivetin.api.v1.WhoAmIResponse\"\x00\x12T\n" +
- "\tSosReport\x12!.olivetin.api.v1.SosReportRequest\x1a\".olivetin.api.v1.SosReportResponse\"\x00\x12Q\n" +
- "\bDumpVars\x12 .olivetin.api.v1.DumpVarsRequest\x1a!.olivetin.api.v1.DumpVarsResponse\"\x00\x12x\n" +
- "\x15DumpPublicIdActionMap\x12-.olivetin.api.v1.DumpPublicIdActionMapRequest\x1a..olivetin.api.v1.DumpPublicIdActionMapResponse\"\x00\x12T\n" +
- "\tGetReadyz\x12!.olivetin.api.v1.GetReadyzRequest\x1a\".olivetin.api.v1.GetReadyzResponse\"\x00\x12c\n" +
- "\x0eLocalUserLogin\x12&.olivetin.api.v1.LocalUserLoginRequest\x1a'.olivetin.api.v1.LocalUserLoginResponse\"\x00\x12]\n" +
- "\fPasswordHash\x12$.olivetin.api.v1.PasswordHashRequest\x1a%.olivetin.api.v1.PasswordHashResponse\"\x00\x12K\n" +
- "\x06Logout\x12\x1e.olivetin.api.v1.LogoutRequest\x1a\x1f.olivetin.api.v1.LogoutResponse\"\x00\x12\\\n" +
- "\vEventStream\x12#.olivetin.api.v1.EventStreamRequest\x1a$.olivetin.api.v1.EventStreamResponse\"\x000\x01\x12c\n" +
- "\x0eGetDiagnostics\x12&.olivetin.api.v1.GetDiagnosticsRequest\x1a'.olivetin.api.v1.GetDiagnosticsResponse\"\x00\x12E\n" +
- "\x04Init\x12\x1c.olivetin.api.v1.InitRequest\x1a\x1d.olivetin.api.v1.InitResponse\"\x00\x12i\n" +
- "\x10GetActionBinding\x12(.olivetin.api.v1.GetActionBindingRequest\x1a).olivetin.api.v1.GetActionBindingResponse\"\x00\x12Z\n" +
- "\vGetEntities\x12#.olivetin.api.v1.GetEntitiesRequest\x1a$.olivetin.api.v1.GetEntitiesResponse\"\x00\x12I\n" +
- "\tGetEntity\x12!.olivetin.api.v1.GetEntityRequest\x1a\x17.olivetin.api.v1.Entity\"\x00B8Z6github.com/OliveTin/OliveTin/gen/olivetin/api/v1;apiv1b\x06proto3"
- var (
- file_olivetin_api_v1_olivetin_proto_rawDescOnce sync.Once
- file_olivetin_api_v1_olivetin_proto_rawDescData []byte
- )
- func file_olivetin_api_v1_olivetin_proto_rawDescGZIP() []byte {
- file_olivetin_api_v1_olivetin_proto_rawDescOnce.Do(func() {
- 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)))
- })
- return file_olivetin_api_v1_olivetin_proto_rawDescData
- }
- var file_olivetin_api_v1_olivetin_proto_msgTypes = make([]protoimpl.MessageInfo, 82)
- var file_olivetin_api_v1_olivetin_proto_goTypes = []any{
- (*Action)(nil), // 0: olivetin.api.v1.Action
- (*ActionGroupMembership)(nil), // 1: olivetin.api.v1.ActionGroupMembership
- (*ActionWebhookExecHint)(nil), // 2: olivetin.api.v1.ActionWebhookExecHint
- (*ActionArgument)(nil), // 3: olivetin.api.v1.ActionArgument
- (*ActionArgumentChoice)(nil), // 4: olivetin.api.v1.ActionArgumentChoice
- (*Entity)(nil), // 5: olivetin.api.v1.Entity
- (*GetDashboardResponse)(nil), // 6: olivetin.api.v1.GetDashboardResponse
- (*EffectivePolicy)(nil), // 7: olivetin.api.v1.EffectivePolicy
- (*GetDashboardRequest)(nil), // 8: olivetin.api.v1.GetDashboardRequest
- (*Dashboard)(nil), // 9: olivetin.api.v1.Dashboard
- (*DashboardComponent)(nil), // 10: olivetin.api.v1.DashboardComponent
- (*StartActionRequest)(nil), // 11: olivetin.api.v1.StartActionRequest
- (*StartActionArgument)(nil), // 12: olivetin.api.v1.StartActionArgument
- (*StartActionResponse)(nil), // 13: olivetin.api.v1.StartActionResponse
- (*StartActionAndWaitRequest)(nil), // 14: olivetin.api.v1.StartActionAndWaitRequest
- (*StartActionAndWaitResponse)(nil), // 15: olivetin.api.v1.StartActionAndWaitResponse
- (*StartActionByGetRequest)(nil), // 16: olivetin.api.v1.StartActionByGetRequest
- (*StartActionByGetResponse)(nil), // 17: olivetin.api.v1.StartActionByGetResponse
- (*StartActionByGetAndWaitRequest)(nil), // 18: olivetin.api.v1.StartActionByGetAndWaitRequest
- (*StartActionByGetAndWaitResponse)(nil), // 19: olivetin.api.v1.StartActionByGetAndWaitResponse
- (*GetLogsRequest)(nil), // 20: olivetin.api.v1.GetLogsRequest
- (*LogEntry)(nil), // 21: olivetin.api.v1.LogEntry
- (*GetLogsResponse)(nil), // 22: olivetin.api.v1.GetLogsResponse
- (*GetActionLogsRequest)(nil), // 23: olivetin.api.v1.GetActionLogsRequest
- (*GetActionLogsResponse)(nil), // 24: olivetin.api.v1.GetActionLogsResponse
- (*GetExecutionQueueRequest)(nil), // 25: olivetin.api.v1.GetExecutionQueueRequest
- (*ExecutionQueueAction)(nil), // 26: olivetin.api.v1.ExecutionQueueAction
- (*ExecutionQueueGroup)(nil), // 27: olivetin.api.v1.ExecutionQueueGroup
- (*GetExecutionQueueResponse)(nil), // 28: olivetin.api.v1.GetExecutionQueueResponse
- (*ValidateArgumentTypeRequest)(nil), // 29: olivetin.api.v1.ValidateArgumentTypeRequest
- (*ValidateArgumentTypeResponse)(nil), // 30: olivetin.api.v1.ValidateArgumentTypeResponse
- (*WatchExecutionRequest)(nil), // 31: olivetin.api.v1.WatchExecutionRequest
- (*WatchExecutionUpdate)(nil), // 32: olivetin.api.v1.WatchExecutionUpdate
- (*ExecutionStatusRequest)(nil), // 33: olivetin.api.v1.ExecutionStatusRequest
- (*DashboardNavigationTarget)(nil), // 34: olivetin.api.v1.DashboardNavigationTarget
- (*ExecutionStatusResponse)(nil), // 35: olivetin.api.v1.ExecutionStatusResponse
- (*WhoAmIRequest)(nil), // 36: olivetin.api.v1.WhoAmIRequest
- (*WhoAmIResponse)(nil), // 37: olivetin.api.v1.WhoAmIResponse
- (*SosReportRequest)(nil), // 38: olivetin.api.v1.SosReportRequest
- (*SosReportResponse)(nil), // 39: olivetin.api.v1.SosReportResponse
- (*DumpVarsRequest)(nil), // 40: olivetin.api.v1.DumpVarsRequest
- (*DumpVarsResponse)(nil), // 41: olivetin.api.v1.DumpVarsResponse
- (*DebugBinding)(nil), // 42: olivetin.api.v1.DebugBinding
- (*DumpPublicIdActionMapRequest)(nil), // 43: olivetin.api.v1.DumpPublicIdActionMapRequest
- (*DumpPublicIdActionMapResponse)(nil), // 44: olivetin.api.v1.DumpPublicIdActionMapResponse
- (*GetReadyzRequest)(nil), // 45: olivetin.api.v1.GetReadyzRequest
- (*GetReadyzResponse)(nil), // 46: olivetin.api.v1.GetReadyzResponse
- (*EventStreamRequest)(nil), // 47: olivetin.api.v1.EventStreamRequest
- (*EventStreamResponse)(nil), // 48: olivetin.api.v1.EventStreamResponse
- (*EventOutputChunk)(nil), // 49: olivetin.api.v1.EventOutputChunk
- (*EventEntityChanged)(nil), // 50: olivetin.api.v1.EventEntityChanged
- (*EventConfigChanged)(nil), // 51: olivetin.api.v1.EventConfigChanged
- (*EventHeartbeat)(nil), // 52: olivetin.api.v1.EventHeartbeat
- (*EventExecutionFinished)(nil), // 53: olivetin.api.v1.EventExecutionFinished
- (*EventExecutionStarted)(nil), // 54: olivetin.api.v1.EventExecutionStarted
- (*KillActionRequest)(nil), // 55: olivetin.api.v1.KillActionRequest
- (*KillActionResponse)(nil), // 56: olivetin.api.v1.KillActionResponse
- (*LocalUserLoginRequest)(nil), // 57: olivetin.api.v1.LocalUserLoginRequest
- (*LocalUserLoginResponse)(nil), // 58: olivetin.api.v1.LocalUserLoginResponse
- (*PasswordHashRequest)(nil), // 59: olivetin.api.v1.PasswordHashRequest
- (*PasswordHashResponse)(nil), // 60: olivetin.api.v1.PasswordHashResponse
- (*LogoutRequest)(nil), // 61: olivetin.api.v1.LogoutRequest
- (*LogoutResponse)(nil), // 62: olivetin.api.v1.LogoutResponse
- (*GetDiagnosticsRequest)(nil), // 63: olivetin.api.v1.GetDiagnosticsRequest
- (*GetDiagnosticsResponse)(nil), // 64: olivetin.api.v1.GetDiagnosticsResponse
- (*InitRequest)(nil), // 65: olivetin.api.v1.InitRequest
- (*InitResponse)(nil), // 66: olivetin.api.v1.InitResponse
- (*AdditionalLink)(nil), // 67: olivetin.api.v1.AdditionalLink
- (*OAuth2Provider)(nil), // 68: olivetin.api.v1.OAuth2Provider
- (*GetActionBindingRequest)(nil), // 69: olivetin.api.v1.GetActionBindingRequest
- (*GetActionBindingResponse)(nil), // 70: olivetin.api.v1.GetActionBindingResponse
- (*GetEntitiesRequest)(nil), // 71: olivetin.api.v1.GetEntitiesRequest
- (*GetEntitiesResponse)(nil), // 72: olivetin.api.v1.GetEntitiesResponse
- (*EntityDefinition)(nil), // 73: olivetin.api.v1.EntityDefinition
- (*GetEntityRequest)(nil), // 74: olivetin.api.v1.GetEntityRequest
- (*RestartActionRequest)(nil), // 75: olivetin.api.v1.RestartActionRequest
- nil, // 76: olivetin.api.v1.ActionWebhookExecHint.MatchHeadersEntry
- nil, // 77: olivetin.api.v1.ActionWebhookExecHint.MatchQueryEntry
- nil, // 78: olivetin.api.v1.ActionArgument.SuggestionsEntry
- nil, // 79: olivetin.api.v1.Entity.FieldsEntry
- nil, // 80: olivetin.api.v1.DumpVarsResponse.ContentsEntry
- nil, // 81: olivetin.api.v1.DumpPublicIdActionMapResponse.ContentsEntry
- }
- var file_olivetin_api_v1_olivetin_proto_depIdxs = []int32{
- 3, // 0: olivetin.api.v1.Action.arguments:type_name -> olivetin.api.v1.ActionArgument
- 2, // 1: olivetin.api.v1.Action.exec_on_webhooks:type_name -> olivetin.api.v1.ActionWebhookExecHint
- 1, // 2: olivetin.api.v1.Action.groups:type_name -> olivetin.api.v1.ActionGroupMembership
- 76, // 3: olivetin.api.v1.ActionWebhookExecHint.match_headers:type_name -> olivetin.api.v1.ActionWebhookExecHint.MatchHeadersEntry
- 77, // 4: olivetin.api.v1.ActionWebhookExecHint.match_query:type_name -> olivetin.api.v1.ActionWebhookExecHint.MatchQueryEntry
- 4, // 5: olivetin.api.v1.ActionArgument.choices:type_name -> olivetin.api.v1.ActionArgumentChoice
- 78, // 6: olivetin.api.v1.ActionArgument.suggestions:type_name -> olivetin.api.v1.ActionArgument.SuggestionsEntry
- 79, // 7: olivetin.api.v1.Entity.fields:type_name -> olivetin.api.v1.Entity.FieldsEntry
- 9, // 8: olivetin.api.v1.GetDashboardResponse.dashboard:type_name -> olivetin.api.v1.Dashboard
- 10, // 9: olivetin.api.v1.Dashboard.contents:type_name -> olivetin.api.v1.DashboardComponent
- 10, // 10: olivetin.api.v1.DashboardComponent.contents:type_name -> olivetin.api.v1.DashboardComponent
- 0, // 11: olivetin.api.v1.DashboardComponent.action:type_name -> olivetin.api.v1.Action
- 12, // 12: olivetin.api.v1.StartActionRequest.arguments:type_name -> olivetin.api.v1.StartActionArgument
- 12, // 13: olivetin.api.v1.StartActionAndWaitRequest.arguments:type_name -> olivetin.api.v1.StartActionArgument
- 21, // 14: olivetin.api.v1.StartActionAndWaitResponse.log_entry:type_name -> olivetin.api.v1.LogEntry
- 21, // 15: olivetin.api.v1.StartActionByGetAndWaitResponse.log_entry:type_name -> olivetin.api.v1.LogEntry
- 21, // 16: olivetin.api.v1.GetLogsResponse.logs:type_name -> olivetin.api.v1.LogEntry
- 21, // 17: olivetin.api.v1.GetActionLogsResponse.logs:type_name -> olivetin.api.v1.LogEntry
- 21, // 18: olivetin.api.v1.ExecutionQueueAction.entries:type_name -> olivetin.api.v1.LogEntry
- 26, // 19: olivetin.api.v1.ExecutionQueueGroup.actions:type_name -> olivetin.api.v1.ExecutionQueueAction
- 27, // 20: olivetin.api.v1.GetExecutionQueueResponse.groups:type_name -> olivetin.api.v1.ExecutionQueueGroup
- 21, // 21: olivetin.api.v1.ExecutionStatusResponse.log_entry:type_name -> olivetin.api.v1.LogEntry
- 34, // 22: olivetin.api.v1.ExecutionStatusResponse.back_to_dashboards:type_name -> olivetin.api.v1.DashboardNavigationTarget
- 80, // 23: olivetin.api.v1.DumpVarsResponse.contents:type_name -> olivetin.api.v1.DumpVarsResponse.ContentsEntry
- 81, // 24: olivetin.api.v1.DumpPublicIdActionMapResponse.contents:type_name -> olivetin.api.v1.DumpPublicIdActionMapResponse.ContentsEntry
- 50, // 25: olivetin.api.v1.EventStreamResponse.entity_changed:type_name -> olivetin.api.v1.EventEntityChanged
- 51, // 26: olivetin.api.v1.EventStreamResponse.config_changed:type_name -> olivetin.api.v1.EventConfigChanged
- 53, // 27: olivetin.api.v1.EventStreamResponse.execution_finished:type_name -> olivetin.api.v1.EventExecutionFinished
- 54, // 28: olivetin.api.v1.EventStreamResponse.execution_started:type_name -> olivetin.api.v1.EventExecutionStarted
- 49, // 29: olivetin.api.v1.EventStreamResponse.output_chunk:type_name -> olivetin.api.v1.EventOutputChunk
- 52, // 30: olivetin.api.v1.EventStreamResponse.heartbeat:type_name -> olivetin.api.v1.EventHeartbeat
- 21, // 31: olivetin.api.v1.EventExecutionFinished.log_entry:type_name -> olivetin.api.v1.LogEntry
- 21, // 32: olivetin.api.v1.EventExecutionStarted.log_entry:type_name -> olivetin.api.v1.LogEntry
- 68, // 33: olivetin.api.v1.InitResponse.oAuth2Providers:type_name -> olivetin.api.v1.OAuth2Provider
- 67, // 34: olivetin.api.v1.InitResponse.additionalLinks:type_name -> olivetin.api.v1.AdditionalLink
- 7, // 35: olivetin.api.v1.InitResponse.effective_policy:type_name -> olivetin.api.v1.EffectivePolicy
- 0, // 36: olivetin.api.v1.GetActionBindingResponse.action:type_name -> olivetin.api.v1.Action
- 34, // 37: olivetin.api.v1.GetActionBindingResponse.back_to_dashboards:type_name -> olivetin.api.v1.DashboardNavigationTarget
- 73, // 38: olivetin.api.v1.GetEntitiesResponse.entity_definitions:type_name -> olivetin.api.v1.EntityDefinition
- 5, // 39: olivetin.api.v1.EntityDefinition.instances:type_name -> olivetin.api.v1.Entity
- 42, // 40: olivetin.api.v1.DumpPublicIdActionMapResponse.ContentsEntry.value:type_name -> olivetin.api.v1.DebugBinding
- 8, // 41: olivetin.api.v1.OliveTinApiService.GetDashboard:input_type -> olivetin.api.v1.GetDashboardRequest
- 11, // 42: olivetin.api.v1.OliveTinApiService.StartAction:input_type -> olivetin.api.v1.StartActionRequest
- 14, // 43: olivetin.api.v1.OliveTinApiService.StartActionAndWait:input_type -> olivetin.api.v1.StartActionAndWaitRequest
- 16, // 44: olivetin.api.v1.OliveTinApiService.StartActionByGet:input_type -> olivetin.api.v1.StartActionByGetRequest
- 18, // 45: olivetin.api.v1.OliveTinApiService.StartActionByGetAndWait:input_type -> olivetin.api.v1.StartActionByGetAndWaitRequest
- 75, // 46: olivetin.api.v1.OliveTinApiService.RestartAction:input_type -> olivetin.api.v1.RestartActionRequest
- 55, // 47: olivetin.api.v1.OliveTinApiService.KillAction:input_type -> olivetin.api.v1.KillActionRequest
- 33, // 48: olivetin.api.v1.OliveTinApiService.ExecutionStatus:input_type -> olivetin.api.v1.ExecutionStatusRequest
- 20, // 49: olivetin.api.v1.OliveTinApiService.GetLogs:input_type -> olivetin.api.v1.GetLogsRequest
- 23, // 50: olivetin.api.v1.OliveTinApiService.GetActionLogs:input_type -> olivetin.api.v1.GetActionLogsRequest
- 25, // 51: olivetin.api.v1.OliveTinApiService.GetExecutionQueue:input_type -> olivetin.api.v1.GetExecutionQueueRequest
- 29, // 52: olivetin.api.v1.OliveTinApiService.ValidateArgumentType:input_type -> olivetin.api.v1.ValidateArgumentTypeRequest
- 36, // 53: olivetin.api.v1.OliveTinApiService.WhoAmI:input_type -> olivetin.api.v1.WhoAmIRequest
- 38, // 54: olivetin.api.v1.OliveTinApiService.SosReport:input_type -> olivetin.api.v1.SosReportRequest
- 40, // 55: olivetin.api.v1.OliveTinApiService.DumpVars:input_type -> olivetin.api.v1.DumpVarsRequest
- 43, // 56: olivetin.api.v1.OliveTinApiService.DumpPublicIdActionMap:input_type -> olivetin.api.v1.DumpPublicIdActionMapRequest
- 45, // 57: olivetin.api.v1.OliveTinApiService.GetReadyz:input_type -> olivetin.api.v1.GetReadyzRequest
- 57, // 58: olivetin.api.v1.OliveTinApiService.LocalUserLogin:input_type -> olivetin.api.v1.LocalUserLoginRequest
- 59, // 59: olivetin.api.v1.OliveTinApiService.PasswordHash:input_type -> olivetin.api.v1.PasswordHashRequest
- 61, // 60: olivetin.api.v1.OliveTinApiService.Logout:input_type -> olivetin.api.v1.LogoutRequest
- 47, // 61: olivetin.api.v1.OliveTinApiService.EventStream:input_type -> olivetin.api.v1.EventStreamRequest
- 63, // 62: olivetin.api.v1.OliveTinApiService.GetDiagnostics:input_type -> olivetin.api.v1.GetDiagnosticsRequest
- 65, // 63: olivetin.api.v1.OliveTinApiService.Init:input_type -> olivetin.api.v1.InitRequest
- 69, // 64: olivetin.api.v1.OliveTinApiService.GetActionBinding:input_type -> olivetin.api.v1.GetActionBindingRequest
- 71, // 65: olivetin.api.v1.OliveTinApiService.GetEntities:input_type -> olivetin.api.v1.GetEntitiesRequest
- 74, // 66: olivetin.api.v1.OliveTinApiService.GetEntity:input_type -> olivetin.api.v1.GetEntityRequest
- 6, // 67: olivetin.api.v1.OliveTinApiService.GetDashboard:output_type -> olivetin.api.v1.GetDashboardResponse
- 13, // 68: olivetin.api.v1.OliveTinApiService.StartAction:output_type -> olivetin.api.v1.StartActionResponse
- 15, // 69: olivetin.api.v1.OliveTinApiService.StartActionAndWait:output_type -> olivetin.api.v1.StartActionAndWaitResponse
- 17, // 70: olivetin.api.v1.OliveTinApiService.StartActionByGet:output_type -> olivetin.api.v1.StartActionByGetResponse
- 19, // 71: olivetin.api.v1.OliveTinApiService.StartActionByGetAndWait:output_type -> olivetin.api.v1.StartActionByGetAndWaitResponse
- 13, // 72: olivetin.api.v1.OliveTinApiService.RestartAction:output_type -> olivetin.api.v1.StartActionResponse
- 56, // 73: olivetin.api.v1.OliveTinApiService.KillAction:output_type -> olivetin.api.v1.KillActionResponse
- 35, // 74: olivetin.api.v1.OliveTinApiService.ExecutionStatus:output_type -> olivetin.api.v1.ExecutionStatusResponse
- 22, // 75: olivetin.api.v1.OliveTinApiService.GetLogs:output_type -> olivetin.api.v1.GetLogsResponse
- 24, // 76: olivetin.api.v1.OliveTinApiService.GetActionLogs:output_type -> olivetin.api.v1.GetActionLogsResponse
- 28, // 77: olivetin.api.v1.OliveTinApiService.GetExecutionQueue:output_type -> olivetin.api.v1.GetExecutionQueueResponse
- 30, // 78: olivetin.api.v1.OliveTinApiService.ValidateArgumentType:output_type -> olivetin.api.v1.ValidateArgumentTypeResponse
- 37, // 79: olivetin.api.v1.OliveTinApiService.WhoAmI:output_type -> olivetin.api.v1.WhoAmIResponse
- 39, // 80: olivetin.api.v1.OliveTinApiService.SosReport:output_type -> olivetin.api.v1.SosReportResponse
- 41, // 81: olivetin.api.v1.OliveTinApiService.DumpVars:output_type -> olivetin.api.v1.DumpVarsResponse
- 44, // 82: olivetin.api.v1.OliveTinApiService.DumpPublicIdActionMap:output_type -> olivetin.api.v1.DumpPublicIdActionMapResponse
- 46, // 83: olivetin.api.v1.OliveTinApiService.GetReadyz:output_type -> olivetin.api.v1.GetReadyzResponse
- 58, // 84: olivetin.api.v1.OliveTinApiService.LocalUserLogin:output_type -> olivetin.api.v1.LocalUserLoginResponse
- 60, // 85: olivetin.api.v1.OliveTinApiService.PasswordHash:output_type -> olivetin.api.v1.PasswordHashResponse
- 62, // 86: olivetin.api.v1.OliveTinApiService.Logout:output_type -> olivetin.api.v1.LogoutResponse
- 48, // 87: olivetin.api.v1.OliveTinApiService.EventStream:output_type -> olivetin.api.v1.EventStreamResponse
- 64, // 88: olivetin.api.v1.OliveTinApiService.GetDiagnostics:output_type -> olivetin.api.v1.GetDiagnosticsResponse
- 66, // 89: olivetin.api.v1.OliveTinApiService.Init:output_type -> olivetin.api.v1.InitResponse
- 70, // 90: olivetin.api.v1.OliveTinApiService.GetActionBinding:output_type -> olivetin.api.v1.GetActionBindingResponse
- 72, // 91: olivetin.api.v1.OliveTinApiService.GetEntities:output_type -> olivetin.api.v1.GetEntitiesResponse
- 5, // 92: olivetin.api.v1.OliveTinApiService.GetEntity:output_type -> olivetin.api.v1.Entity
- 67, // [67:93] is the sub-list for method output_type
- 41, // [41:67] is the sub-list for method input_type
- 41, // [41:41] is the sub-list for extension type_name
- 41, // [41:41] is the sub-list for extension extendee
- 0, // [0:41] is the sub-list for field type_name
- }
- func init() { file_olivetin_api_v1_olivetin_proto_init() }
- func file_olivetin_api_v1_olivetin_proto_init() {
- if File_olivetin_api_v1_olivetin_proto != nil {
- return
- }
- file_olivetin_api_v1_olivetin_proto_msgTypes[48].OneofWrappers = []any{
- (*EventStreamResponse_EntityChanged)(nil),
- (*EventStreamResponse_ConfigChanged)(nil),
- (*EventStreamResponse_ExecutionFinished)(nil),
- (*EventStreamResponse_ExecutionStarted)(nil),
- (*EventStreamResponse_OutputChunk)(nil),
- (*EventStreamResponse_Heartbeat)(nil),
- }
- type x struct{}
- out := protoimpl.TypeBuilder{
- File: protoimpl.DescBuilder{
- GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: unsafe.Slice(unsafe.StringData(file_olivetin_api_v1_olivetin_proto_rawDesc), len(file_olivetin_api_v1_olivetin_proto_rawDesc)),
- NumEnums: 0,
- NumMessages: 82,
- NumExtensions: 0,
- NumServices: 1,
- },
- GoTypes: file_olivetin_api_v1_olivetin_proto_goTypes,
- DependencyIndexes: file_olivetin_api_v1_olivetin_proto_depIdxs,
- MessageInfos: file_olivetin_api_v1_olivetin_proto_msgTypes,
- }.Build()
- File_olivetin_api_v1_olivetin_proto = out.File
- file_olivetin_api_v1_olivetin_proto_goTypes = nil
- file_olivetin_api_v1_olivetin_proto_depIdxs = nil
- }
|