olivetin_pb.d.ts 56 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196
  1. // @generated by protoc-gen-es v2.12.1
  2. // @generated from file olivetin/api/v1/olivetin.proto (package olivetin.api.v1, syntax proto3)
  3. /* eslint-disable */
  4. import type { GenFile, GenMessage, GenService } from "@bufbuild/protobuf/codegenv2";
  5. import type { Message } from "@bufbuild/protobuf";
  6. /**
  7. * Describes the file olivetin/api/v1/olivetin.proto.
  8. */
  9. export declare const file_olivetin_api_v1_olivetin: GenFile;
  10. /**
  11. * @generated from message olivetin.api.v1.Action
  12. */
  13. export declare type Action = Message<"olivetin.api.v1.Action"> & {
  14. /**
  15. * @generated from field: string binding_id = 1;
  16. */
  17. bindingId: string;
  18. /**
  19. * @generated from field: string title = 2;
  20. */
  21. title: string;
  22. /**
  23. * @generated from field: string icon = 3;
  24. */
  25. icon: string;
  26. /**
  27. * @generated from field: bool can_exec = 4;
  28. */
  29. canExec: boolean;
  30. /**
  31. * @generated from field: repeated olivetin.api.v1.ActionArgument arguments = 5;
  32. */
  33. arguments: ActionArgument[];
  34. /**
  35. * @generated from field: string popup_on_start = 6;
  36. */
  37. popupOnStart: string;
  38. /**
  39. * @generated from field: int32 order = 7;
  40. */
  41. order: number;
  42. /**
  43. * @generated from field: int32 timeout = 8;
  44. */
  45. timeout: number;
  46. /**
  47. * Datetime when rate limit expires (empty string if not rate limited), format: "2006-01-02 15:04:05"
  48. *
  49. * @generated from field: string datetime_rate_limit_expires = 9;
  50. */
  51. datetimeRateLimitExpires: string;
  52. /**
  53. * @generated from field: bool exec_on_startup = 10;
  54. */
  55. execOnStartup: boolean;
  56. /**
  57. * @generated from field: repeated string exec_on_cron = 11;
  58. */
  59. execOnCron: string[];
  60. /**
  61. * @generated from field: repeated string exec_on_file_created_in_dir = 12;
  62. */
  63. execOnFileCreatedInDir: string[];
  64. /**
  65. * @generated from field: repeated string exec_on_file_changed_in_dir = 13;
  66. */
  67. execOnFileChangedInDir: string[];
  68. /**
  69. * @generated from field: string exec_on_calendar_file = 14;
  70. */
  71. execOnCalendarFile: string;
  72. /**
  73. * @generated from field: repeated olivetin.api.v1.ActionWebhookExecHint exec_on_webhooks = 15;
  74. */
  75. execOnWebhooks: ActionWebhookExecHint[];
  76. /**
  77. * @generated from field: bool justification = 16;
  78. */
  79. justification: boolean;
  80. /**
  81. * @generated from field: bool has_running_instance = 17;
  82. */
  83. hasRunningInstance: boolean;
  84. /**
  85. * @generated from field: bool has_queued_instance = 18;
  86. */
  87. hasQueuedInstance: boolean;
  88. /**
  89. * @generated from field: repeated olivetin.api.v1.ActionGroupMembership groups = 19;
  90. */
  91. groups: ActionGroupMembership[];
  92. };
  93. /**
  94. * Describes the message olivetin.api.v1.Action.
  95. * Use `create(ActionSchema)` to create a new message.
  96. */
  97. export declare const ActionSchema: GenMessage<Action>;
  98. /**
  99. * @generated from message olivetin.api.v1.ActionGroupMembership
  100. */
  101. export declare type ActionGroupMembership = Message<"olivetin.api.v1.ActionGroupMembership"> & {
  102. /**
  103. * @generated from field: string name = 1;
  104. */
  105. name: string;
  106. /**
  107. * @generated from field: int32 max_concurrent = 2;
  108. */
  109. maxConcurrent: number;
  110. /**
  111. * @generated from field: int32 queue_size = 3;
  112. */
  113. queueSize: number;
  114. };
  115. /**
  116. * Describes the message olivetin.api.v1.ActionGroupMembership.
  117. * Use `create(ActionGroupMembershipSchema)` to create a new message.
  118. */
  119. export declare const ActionGroupMembershipSchema: GenMessage<ActionGroupMembership>;
  120. /**
  121. * @generated from message olivetin.api.v1.ActionWebhookExecHint
  122. */
  123. export declare type ActionWebhookExecHint = Message<"olivetin.api.v1.ActionWebhookExecHint"> & {
  124. /**
  125. * @generated from field: string template = 1;
  126. */
  127. template: string;
  128. /**
  129. * @generated from field: string match_path = 2;
  130. */
  131. matchPath: string;
  132. /**
  133. * @generated from field: map<string, string> match_headers = 3;
  134. */
  135. matchHeaders: { [key: string]: string };
  136. /**
  137. * @generated from field: map<string, string> match_query = 4;
  138. */
  139. matchQuery: { [key: string]: string };
  140. };
  141. /**
  142. * Describes the message olivetin.api.v1.ActionWebhookExecHint.
  143. * Use `create(ActionWebhookExecHintSchema)` to create a new message.
  144. */
  145. export declare const ActionWebhookExecHintSchema: GenMessage<ActionWebhookExecHint>;
  146. /**
  147. * @generated from message olivetin.api.v1.ActionArgument
  148. */
  149. export declare type ActionArgument = Message<"olivetin.api.v1.ActionArgument"> & {
  150. /**
  151. * @generated from field: string name = 1;
  152. */
  153. name: string;
  154. /**
  155. * @generated from field: string title = 2;
  156. */
  157. title: string;
  158. /**
  159. * @generated from field: string type = 3;
  160. */
  161. type: string;
  162. /**
  163. * @generated from field: string default_value = 4;
  164. */
  165. defaultValue: string;
  166. /**
  167. * @generated from field: repeated olivetin.api.v1.ActionArgumentChoice choices = 5;
  168. */
  169. choices: ActionArgumentChoice[];
  170. /**
  171. * @generated from field: string description = 6;
  172. */
  173. description: string;
  174. /**
  175. * @generated from field: map<string, string> suggestions = 7;
  176. */
  177. suggestions: { [key: string]: string };
  178. /**
  179. * @generated from field: string suggestions_browser_key = 8;
  180. */
  181. suggestionsBrowserKey: string;
  182. };
  183. /**
  184. * Describes the message olivetin.api.v1.ActionArgument.
  185. * Use `create(ActionArgumentSchema)` to create a new message.
  186. */
  187. export declare const ActionArgumentSchema: GenMessage<ActionArgument>;
  188. /**
  189. * @generated from message olivetin.api.v1.ActionArgumentChoice
  190. */
  191. export declare type ActionArgumentChoice = Message<"olivetin.api.v1.ActionArgumentChoice"> & {
  192. /**
  193. * @generated from field: string value = 1;
  194. */
  195. value: string;
  196. /**
  197. * @generated from field: string title = 2;
  198. */
  199. title: string;
  200. };
  201. /**
  202. * Describes the message olivetin.api.v1.ActionArgumentChoice.
  203. * Use `create(ActionArgumentChoiceSchema)` to create a new message.
  204. */
  205. export declare const ActionArgumentChoiceSchema: GenMessage<ActionArgumentChoice>;
  206. /**
  207. * @generated from message olivetin.api.v1.Entity
  208. */
  209. export declare type Entity = Message<"olivetin.api.v1.Entity"> & {
  210. /**
  211. * @generated from field: string title = 1;
  212. */
  213. title: string;
  214. /**
  215. * @generated from field: string unique_key = 2;
  216. */
  217. uniqueKey: string;
  218. /**
  219. * @generated from field: string type = 3;
  220. */
  221. type: string;
  222. /**
  223. * @generated from field: repeated string directories = 4;
  224. */
  225. directories: string[];
  226. /**
  227. * @generated from field: map<string, string> fields = 5;
  228. */
  229. fields: { [key: string]: string };
  230. };
  231. /**
  232. * Describes the message olivetin.api.v1.Entity.
  233. * Use `create(EntitySchema)` to create a new message.
  234. */
  235. export declare const EntitySchema: GenMessage<Entity>;
  236. /**
  237. * @generated from message olivetin.api.v1.GetDashboardResponse
  238. */
  239. export declare type GetDashboardResponse = Message<"olivetin.api.v1.GetDashboardResponse"> & {
  240. /**
  241. * @generated from field: string title = 1;
  242. */
  243. title: string;
  244. /**
  245. * @generated from field: olivetin.api.v1.Dashboard dashboard = 4;
  246. */
  247. dashboard?: Dashboard | undefined;
  248. };
  249. /**
  250. * Describes the message olivetin.api.v1.GetDashboardResponse.
  251. * Use `create(GetDashboardResponseSchema)` to create a new message.
  252. */
  253. export declare const GetDashboardResponseSchema: GenMessage<GetDashboardResponse>;
  254. /**
  255. * @generated from message olivetin.api.v1.EffectivePolicy
  256. */
  257. export declare type EffectivePolicy = Message<"olivetin.api.v1.EffectivePolicy"> & {
  258. /**
  259. * @generated from field: bool show_diagnostics = 1;
  260. */
  261. showDiagnostics: boolean;
  262. /**
  263. * @generated from field: bool show_log_list = 2;
  264. */
  265. showLogList: boolean;
  266. /**
  267. * @generated from field: bool show_version_number = 3;
  268. */
  269. showVersionNumber: boolean;
  270. };
  271. /**
  272. * Describes the message olivetin.api.v1.EffectivePolicy.
  273. * Use `create(EffectivePolicySchema)` to create a new message.
  274. */
  275. export declare const EffectivePolicySchema: GenMessage<EffectivePolicy>;
  276. /**
  277. * @generated from message olivetin.api.v1.GetDashboardRequest
  278. */
  279. export declare type GetDashboardRequest = Message<"olivetin.api.v1.GetDashboardRequest"> & {
  280. /**
  281. * @generated from field: string title = 1;
  282. */
  283. title: string;
  284. /**
  285. * @generated from field: string entity_type = 2;
  286. */
  287. entityType: string;
  288. /**
  289. * @generated from field: string entity_key = 3;
  290. */
  291. entityKey: string;
  292. };
  293. /**
  294. * Describes the message olivetin.api.v1.GetDashboardRequest.
  295. * Use `create(GetDashboardRequestSchema)` to create a new message.
  296. */
  297. export declare const GetDashboardRequestSchema: GenMessage<GetDashboardRequest>;
  298. /**
  299. * @generated from message olivetin.api.v1.Dashboard
  300. */
  301. export declare type Dashboard = Message<"olivetin.api.v1.Dashboard"> & {
  302. /**
  303. * @generated from field: string title = 1;
  304. */
  305. title: string;
  306. /**
  307. * @generated from field: repeated olivetin.api.v1.DashboardComponent contents = 2;
  308. */
  309. contents: DashboardComponent[];
  310. };
  311. /**
  312. * Describes the message olivetin.api.v1.Dashboard.
  313. * Use `create(DashboardSchema)` to create a new message.
  314. */
  315. export declare const DashboardSchema: GenMessage<Dashboard>;
  316. /**
  317. * @generated from message olivetin.api.v1.DashboardComponent
  318. */
  319. export declare type DashboardComponent = Message<"olivetin.api.v1.DashboardComponent"> & {
  320. /**
  321. * @generated from field: string title = 1;
  322. */
  323. title: string;
  324. /**
  325. * @generated from field: string type = 2;
  326. */
  327. type: string;
  328. /**
  329. * @generated from field: repeated olivetin.api.v1.DashboardComponent contents = 3;
  330. */
  331. contents: DashboardComponent[];
  332. /**
  333. * @generated from field: string icon = 4;
  334. */
  335. icon: string;
  336. /**
  337. * @generated from field: string css_class = 5;
  338. */
  339. cssClass: string;
  340. /**
  341. * @generated from field: olivetin.api.v1.Action action = 6;
  342. */
  343. action?: Action | undefined;
  344. /**
  345. * @generated from field: string entity_type = 7;
  346. */
  347. entityType: string;
  348. /**
  349. * @generated from field: string entity_key = 8;
  350. */
  351. entityKey: string;
  352. };
  353. /**
  354. * Describes the message olivetin.api.v1.DashboardComponent.
  355. * Use `create(DashboardComponentSchema)` to create a new message.
  356. */
  357. export declare const DashboardComponentSchema: GenMessage<DashboardComponent>;
  358. /**
  359. * @generated from message olivetin.api.v1.StartActionRequest
  360. */
  361. export declare type StartActionRequest = Message<"olivetin.api.v1.StartActionRequest"> & {
  362. /**
  363. * @generated from field: string binding_id = 1;
  364. */
  365. bindingId: string;
  366. /**
  367. * @generated from field: repeated olivetin.api.v1.StartActionArgument arguments = 2;
  368. */
  369. arguments: StartActionArgument[];
  370. /**
  371. * @generated from field: string unique_tracking_id = 3;
  372. */
  373. uniqueTrackingId: string;
  374. /**
  375. * @generated from field: string justification = 4;
  376. */
  377. justification: string;
  378. };
  379. /**
  380. * Describes the message olivetin.api.v1.StartActionRequest.
  381. * Use `create(StartActionRequestSchema)` to create a new message.
  382. */
  383. export declare const StartActionRequestSchema: GenMessage<StartActionRequest>;
  384. /**
  385. * @generated from message olivetin.api.v1.StartActionArgument
  386. */
  387. export declare type StartActionArgument = Message<"olivetin.api.v1.StartActionArgument"> & {
  388. /**
  389. * @generated from field: string name = 1;
  390. */
  391. name: string;
  392. /**
  393. * @generated from field: string value = 2;
  394. */
  395. value: string;
  396. };
  397. /**
  398. * Describes the message olivetin.api.v1.StartActionArgument.
  399. * Use `create(StartActionArgumentSchema)` to create a new message.
  400. */
  401. export declare const StartActionArgumentSchema: GenMessage<StartActionArgument>;
  402. /**
  403. * @generated from message olivetin.api.v1.StartActionResponse
  404. */
  405. export declare type StartActionResponse = Message<"olivetin.api.v1.StartActionResponse"> & {
  406. /**
  407. * @generated from field: string execution_tracking_id = 2;
  408. */
  409. executionTrackingId: string;
  410. };
  411. /**
  412. * Describes the message olivetin.api.v1.StartActionResponse.
  413. * Use `create(StartActionResponseSchema)` to create a new message.
  414. */
  415. export declare const StartActionResponseSchema: GenMessage<StartActionResponse>;
  416. /**
  417. * @generated from message olivetin.api.v1.StartActionAndWaitRequest
  418. */
  419. export declare type StartActionAndWaitRequest = Message<"olivetin.api.v1.StartActionAndWaitRequest"> & {
  420. /**
  421. * @generated from field: string action_id = 1;
  422. */
  423. actionId: string;
  424. /**
  425. * @generated from field: repeated olivetin.api.v1.StartActionArgument arguments = 2;
  426. */
  427. arguments: StartActionArgument[];
  428. /**
  429. * @generated from field: string justification = 3;
  430. */
  431. justification: string;
  432. };
  433. /**
  434. * Describes the message olivetin.api.v1.StartActionAndWaitRequest.
  435. * Use `create(StartActionAndWaitRequestSchema)` to create a new message.
  436. */
  437. export declare const StartActionAndWaitRequestSchema: GenMessage<StartActionAndWaitRequest>;
  438. /**
  439. * @generated from message olivetin.api.v1.StartActionAndWaitResponse
  440. */
  441. export declare type StartActionAndWaitResponse = Message<"olivetin.api.v1.StartActionAndWaitResponse"> & {
  442. /**
  443. * @generated from field: olivetin.api.v1.LogEntry log_entry = 1;
  444. */
  445. logEntry?: LogEntry | undefined;
  446. };
  447. /**
  448. * Describes the message olivetin.api.v1.StartActionAndWaitResponse.
  449. * Use `create(StartActionAndWaitResponseSchema)` to create a new message.
  450. */
  451. export declare const StartActionAndWaitResponseSchema: GenMessage<StartActionAndWaitResponse>;
  452. /**
  453. * @generated from message olivetin.api.v1.StartActionByGetRequest
  454. */
  455. export declare type StartActionByGetRequest = Message<"olivetin.api.v1.StartActionByGetRequest"> & {
  456. /**
  457. * @generated from field: string action_id = 1;
  458. */
  459. actionId: string;
  460. };
  461. /**
  462. * Describes the message olivetin.api.v1.StartActionByGetRequest.
  463. * Use `create(StartActionByGetRequestSchema)` to create a new message.
  464. */
  465. export declare const StartActionByGetRequestSchema: GenMessage<StartActionByGetRequest>;
  466. /**
  467. * @generated from message olivetin.api.v1.StartActionByGetResponse
  468. */
  469. export declare type StartActionByGetResponse = Message<"olivetin.api.v1.StartActionByGetResponse"> & {
  470. /**
  471. * @generated from field: string execution_tracking_id = 2;
  472. */
  473. executionTrackingId: string;
  474. };
  475. /**
  476. * Describes the message olivetin.api.v1.StartActionByGetResponse.
  477. * Use `create(StartActionByGetResponseSchema)` to create a new message.
  478. */
  479. export declare const StartActionByGetResponseSchema: GenMessage<StartActionByGetResponse>;
  480. /**
  481. * @generated from message olivetin.api.v1.StartActionByGetAndWaitRequest
  482. */
  483. export declare type StartActionByGetAndWaitRequest = Message<"olivetin.api.v1.StartActionByGetAndWaitRequest"> & {
  484. /**
  485. * @generated from field: string action_id = 1;
  486. */
  487. actionId: string;
  488. };
  489. /**
  490. * Describes the message olivetin.api.v1.StartActionByGetAndWaitRequest.
  491. * Use `create(StartActionByGetAndWaitRequestSchema)` to create a new message.
  492. */
  493. export declare const StartActionByGetAndWaitRequestSchema: GenMessage<StartActionByGetAndWaitRequest>;
  494. /**
  495. * @generated from message olivetin.api.v1.StartActionByGetAndWaitResponse
  496. */
  497. export declare type StartActionByGetAndWaitResponse = Message<"olivetin.api.v1.StartActionByGetAndWaitResponse"> & {
  498. /**
  499. * @generated from field: olivetin.api.v1.LogEntry log_entry = 1;
  500. */
  501. logEntry?: LogEntry | undefined;
  502. };
  503. /**
  504. * Describes the message olivetin.api.v1.StartActionByGetAndWaitResponse.
  505. * Use `create(StartActionByGetAndWaitResponseSchema)` to create a new message.
  506. */
  507. export declare const StartActionByGetAndWaitResponseSchema: GenMessage<StartActionByGetAndWaitResponse>;
  508. /**
  509. * @generated from message olivetin.api.v1.GetLogsRequest
  510. */
  511. export declare type GetLogsRequest = Message<"olivetin.api.v1.GetLogsRequest"> & {
  512. /**
  513. * @generated from field: int64 start_offset = 1;
  514. */
  515. startOffset: bigint;
  516. /**
  517. * Optional date filter in YYYY-MM-DD format
  518. *
  519. * @generated from field: string date_filter = 2;
  520. */
  521. dateFilter: string;
  522. /**
  523. * Number of logs per page (optional; server default used if 0 or unset)
  524. *
  525. * @generated from field: int64 page_size = 3;
  526. */
  527. pageSize: bigint;
  528. /**
  529. * Optional filter expression (see logs UI syntax help)
  530. *
  531. * @generated from field: string filter = 4;
  532. */
  533. filter: string;
  534. };
  535. /**
  536. * Describes the message olivetin.api.v1.GetLogsRequest.
  537. * Use `create(GetLogsRequestSchema)` to create a new message.
  538. */
  539. export declare const GetLogsRequestSchema: GenMessage<GetLogsRequest>;
  540. /**
  541. * @generated from message olivetin.api.v1.LogEntry
  542. */
  543. export declare type LogEntry = Message<"olivetin.api.v1.LogEntry"> & {
  544. /**
  545. * @generated from field: string datetime_started = 1;
  546. */
  547. datetimeStarted: string;
  548. /**
  549. * @generated from field: string action_title = 2;
  550. */
  551. actionTitle: string;
  552. /**
  553. * @generated from field: string output = 3;
  554. */
  555. output: string;
  556. /**
  557. * @generated from field: bool timed_out = 5;
  558. */
  559. timedOut: boolean;
  560. /**
  561. * @generated from field: int32 exit_code = 6;
  562. */
  563. exitCode: number;
  564. /**
  565. * @generated from field: string user = 7;
  566. */
  567. user: string;
  568. /**
  569. * @generated from field: string user_class = 8;
  570. */
  571. userClass: string;
  572. /**
  573. * @generated from field: string action_icon = 9;
  574. */
  575. actionIcon: string;
  576. /**
  577. * @generated from field: repeated string tags = 10;
  578. */
  579. tags: string[];
  580. /**
  581. * @generated from field: string execution_tracking_id = 11;
  582. */
  583. executionTrackingId: string;
  584. /**
  585. * @generated from field: string datetime_finished = 12;
  586. */
  587. datetimeFinished: string;
  588. /**
  589. * @generated from field: bool execution_started = 14;
  590. */
  591. executionStarted: boolean;
  592. /**
  593. * @generated from field: bool execution_finished = 15;
  594. */
  595. executionFinished: boolean;
  596. /**
  597. * @generated from field: bool blocked = 16;
  598. */
  599. blocked: boolean;
  600. /**
  601. * @generated from field: int64 datetime_index = 17;
  602. */
  603. datetimeIndex: bigint;
  604. /**
  605. * @generated from field: bool can_kill = 18;
  606. */
  607. canKill: boolean;
  608. /**
  609. * Datetime when rate limit expires (empty string if not rate limited), format: "2006-01-02 15:04:05"
  610. *
  611. * @generated from field: string datetime_rate_limit_expires = 19;
  612. */
  613. datetimeRateLimitExpires: string;
  614. /**
  615. * Binding ID for matching rate limits to action buttons
  616. *
  617. * @generated from field: string binding_id = 20;
  618. */
  619. bindingId: string;
  620. /**
  621. * @generated from field: bool queued = 21;
  622. */
  623. queued: boolean;
  624. /**
  625. * @generated from field: string queued_for_group = 22;
  626. */
  627. queuedForGroup: string;
  628. /**
  629. * @generated from field: string justification = 23;
  630. */
  631. justification: string;
  632. /**
  633. * @generated from field: repeated olivetin.api.v1.StartActionArgument arguments = 24;
  634. */
  635. arguments: StartActionArgument[];
  636. };
  637. /**
  638. * Describes the message olivetin.api.v1.LogEntry.
  639. * Use `create(LogEntrySchema)` to create a new message.
  640. */
  641. export declare const LogEntrySchema: GenMessage<LogEntry>;
  642. /**
  643. * @generated from message olivetin.api.v1.GetLogsResponse
  644. */
  645. export declare type GetLogsResponse = Message<"olivetin.api.v1.GetLogsResponse"> & {
  646. /**
  647. * @generated from field: repeated olivetin.api.v1.LogEntry logs = 1;
  648. */
  649. logs: LogEntry[];
  650. /**
  651. * @generated from field: int64 count_remaining = 2;
  652. */
  653. countRemaining: bigint;
  654. /**
  655. * @generated from field: int64 page_size = 3;
  656. */
  657. pageSize: bigint;
  658. /**
  659. * @generated from field: int64 total_count = 4;
  660. */
  661. totalCount: bigint;
  662. /**
  663. * @generated from field: int64 start_offset = 5;
  664. */
  665. startOffset: bigint;
  666. };
  667. /**
  668. * Describes the message olivetin.api.v1.GetLogsResponse.
  669. * Use `create(GetLogsResponseSchema)` to create a new message.
  670. */
  671. export declare const GetLogsResponseSchema: GenMessage<GetLogsResponse>;
  672. /**
  673. * @generated from message olivetin.api.v1.GetActionLogsRequest
  674. */
  675. export declare type GetActionLogsRequest = Message<"olivetin.api.v1.GetActionLogsRequest"> & {
  676. /**
  677. * @generated from field: string action_id = 1;
  678. */
  679. actionId: string;
  680. /**
  681. * @generated from field: int64 start_offset = 2;
  682. */
  683. startOffset: bigint;
  684. };
  685. /**
  686. * Describes the message olivetin.api.v1.GetActionLogsRequest.
  687. * Use `create(GetActionLogsRequestSchema)` to create a new message.
  688. */
  689. export declare const GetActionLogsRequestSchema: GenMessage<GetActionLogsRequest>;
  690. /**
  691. * @generated from message olivetin.api.v1.GetActionLogsResponse
  692. */
  693. export declare type GetActionLogsResponse = Message<"olivetin.api.v1.GetActionLogsResponse"> & {
  694. /**
  695. * @generated from field: repeated olivetin.api.v1.LogEntry logs = 1;
  696. */
  697. logs: LogEntry[];
  698. /**
  699. * @generated from field: int64 count_remaining = 2;
  700. */
  701. countRemaining: bigint;
  702. /**
  703. * @generated from field: int64 page_size = 3;
  704. */
  705. pageSize: bigint;
  706. /**
  707. * @generated from field: int64 total_count = 4;
  708. */
  709. totalCount: bigint;
  710. /**
  711. * @generated from field: int64 start_offset = 5;
  712. */
  713. startOffset: bigint;
  714. };
  715. /**
  716. * Describes the message olivetin.api.v1.GetActionLogsResponse.
  717. * Use `create(GetActionLogsResponseSchema)` to create a new message.
  718. */
  719. export declare const GetActionLogsResponseSchema: GenMessage<GetActionLogsResponse>;
  720. /**
  721. * @generated from message olivetin.api.v1.GetExecutionQueueRequest
  722. */
  723. export declare type GetExecutionQueueRequest = Message<"olivetin.api.v1.GetExecutionQueueRequest"> & {
  724. };
  725. /**
  726. * Describes the message olivetin.api.v1.GetExecutionQueueRequest.
  727. * Use `create(GetExecutionQueueRequestSchema)` to create a new message.
  728. */
  729. export declare const GetExecutionQueueRequestSchema: GenMessage<GetExecutionQueueRequest>;
  730. /**
  731. * @generated from message olivetin.api.v1.ExecutionQueueAction
  732. */
  733. export declare type ExecutionQueueAction = Message<"olivetin.api.v1.ExecutionQueueAction"> & {
  734. /**
  735. * @generated from field: string binding_id = 1;
  736. */
  737. bindingId: string;
  738. /**
  739. * @generated from field: string action_title = 2;
  740. */
  741. actionTitle: string;
  742. /**
  743. * @generated from field: string action_icon = 3;
  744. */
  745. actionIcon: string;
  746. /**
  747. * @generated from field: int32 max_concurrent = 4;
  748. */
  749. maxConcurrent: number;
  750. /**
  751. * @generated from field: int32 active_count = 5;
  752. */
  753. activeCount: number;
  754. /**
  755. * @generated from field: string entity_prefix = 6;
  756. */
  757. entityPrefix: string;
  758. /**
  759. * @generated from field: repeated olivetin.api.v1.LogEntry entries = 7;
  760. */
  761. entries: LogEntry[];
  762. };
  763. /**
  764. * Describes the message olivetin.api.v1.ExecutionQueueAction.
  765. * Use `create(ExecutionQueueActionSchema)` to create a new message.
  766. */
  767. export declare const ExecutionQueueActionSchema: GenMessage<ExecutionQueueAction>;
  768. /**
  769. * @generated from message olivetin.api.v1.ExecutionQueueGroup
  770. */
  771. export declare type ExecutionQueueGroup = Message<"olivetin.api.v1.ExecutionQueueGroup"> & {
  772. /**
  773. * @generated from field: string name = 1;
  774. */
  775. name: string;
  776. /**
  777. * @generated from field: string icon = 2;
  778. */
  779. icon: string;
  780. /**
  781. * @generated from field: int32 max_concurrent = 3;
  782. */
  783. maxConcurrent: number;
  784. /**
  785. * @generated from field: int32 active_count = 4;
  786. */
  787. activeCount: number;
  788. /**
  789. * @generated from field: repeated olivetin.api.v1.ExecutionQueueAction actions = 5;
  790. */
  791. actions: ExecutionQueueAction[];
  792. /**
  793. * @generated from field: int32 queued_count = 6;
  794. */
  795. queuedCount: number;
  796. /**
  797. * @generated from field: int32 queue_size = 7;
  798. */
  799. queueSize: number;
  800. };
  801. /**
  802. * Describes the message olivetin.api.v1.ExecutionQueueGroup.
  803. * Use `create(ExecutionQueueGroupSchema)` to create a new message.
  804. */
  805. export declare const ExecutionQueueGroupSchema: GenMessage<ExecutionQueueGroup>;
  806. /**
  807. * @generated from message olivetin.api.v1.GetExecutionQueueResponse
  808. */
  809. export declare type GetExecutionQueueResponse = Message<"olivetin.api.v1.GetExecutionQueueResponse"> & {
  810. /**
  811. * @generated from field: repeated olivetin.api.v1.ExecutionQueueGroup groups = 1;
  812. */
  813. groups: ExecutionQueueGroup[];
  814. /**
  815. * @generated from field: int32 total_active = 2;
  816. */
  817. totalActive: number;
  818. };
  819. /**
  820. * Describes the message olivetin.api.v1.GetExecutionQueueResponse.
  821. * Use `create(GetExecutionQueueResponseSchema)` to create a new message.
  822. */
  823. export declare const GetExecutionQueueResponseSchema: GenMessage<GetExecutionQueueResponse>;
  824. /**
  825. * @generated from message olivetin.api.v1.ValidateArgumentTypeRequest
  826. */
  827. export declare type ValidateArgumentTypeRequest = Message<"olivetin.api.v1.ValidateArgumentTypeRequest"> & {
  828. /**
  829. * @generated from field: string value = 1;
  830. */
  831. value: string;
  832. /**
  833. * @generated from field: string type = 2;
  834. */
  835. type: string;
  836. /**
  837. * @generated from field: string binding_id = 3;
  838. */
  839. bindingId: string;
  840. /**
  841. * @generated from field: string argument_name = 4;
  842. */
  843. argumentName: string;
  844. };
  845. /**
  846. * Describes the message olivetin.api.v1.ValidateArgumentTypeRequest.
  847. * Use `create(ValidateArgumentTypeRequestSchema)` to create a new message.
  848. */
  849. export declare const ValidateArgumentTypeRequestSchema: GenMessage<ValidateArgumentTypeRequest>;
  850. /**
  851. * @generated from message olivetin.api.v1.ValidateArgumentTypeResponse
  852. */
  853. export declare type ValidateArgumentTypeResponse = Message<"olivetin.api.v1.ValidateArgumentTypeResponse"> & {
  854. /**
  855. * @generated from field: bool valid = 1;
  856. */
  857. valid: boolean;
  858. /**
  859. * @generated from field: string description = 2;
  860. */
  861. description: string;
  862. };
  863. /**
  864. * Describes the message olivetin.api.v1.ValidateArgumentTypeResponse.
  865. * Use `create(ValidateArgumentTypeResponseSchema)` to create a new message.
  866. */
  867. export declare const ValidateArgumentTypeResponseSchema: GenMessage<ValidateArgumentTypeResponse>;
  868. /**
  869. * @generated from message olivetin.api.v1.WatchExecutionRequest
  870. */
  871. export declare type WatchExecutionRequest = Message<"olivetin.api.v1.WatchExecutionRequest"> & {
  872. /**
  873. * @generated from field: string execution_tracking_id = 1;
  874. */
  875. executionTrackingId: string;
  876. };
  877. /**
  878. * Describes the message olivetin.api.v1.WatchExecutionRequest.
  879. * Use `create(WatchExecutionRequestSchema)` to create a new message.
  880. */
  881. export declare const WatchExecutionRequestSchema: GenMessage<WatchExecutionRequest>;
  882. /**
  883. * @generated from message olivetin.api.v1.WatchExecutionUpdate
  884. */
  885. export declare type WatchExecutionUpdate = Message<"olivetin.api.v1.WatchExecutionUpdate"> & {
  886. /**
  887. * @generated from field: string update = 1;
  888. */
  889. update: string;
  890. };
  891. /**
  892. * Describes the message olivetin.api.v1.WatchExecutionUpdate.
  893. * Use `create(WatchExecutionUpdateSchema)` to create a new message.
  894. */
  895. export declare const WatchExecutionUpdateSchema: GenMessage<WatchExecutionUpdate>;
  896. /**
  897. * @generated from message olivetin.api.v1.ExecutionStatusRequest
  898. */
  899. export declare type ExecutionStatusRequest = Message<"olivetin.api.v1.ExecutionStatusRequest"> & {
  900. /**
  901. * @generated from field: string execution_tracking_id = 1;
  902. */
  903. executionTrackingId: string;
  904. /**
  905. * @generated from field: string action_id = 2;
  906. */
  907. actionId: string;
  908. };
  909. /**
  910. * Describes the message olivetin.api.v1.ExecutionStatusRequest.
  911. * Use `create(ExecutionStatusRequestSchema)` to create a new message.
  912. */
  913. export declare const ExecutionStatusRequestSchema: GenMessage<ExecutionStatusRequest>;
  914. /**
  915. * @generated from message olivetin.api.v1.DashboardNavigationTarget
  916. */
  917. export declare type DashboardNavigationTarget = Message<"olivetin.api.v1.DashboardNavigationTarget"> & {
  918. /**
  919. * @generated from field: string title = 1;
  920. */
  921. title: string;
  922. /**
  923. * @generated from field: string entity_type = 2;
  924. */
  925. entityType: string;
  926. /**
  927. * @generated from field: string entity_key = 3;
  928. */
  929. entityKey: string;
  930. /**
  931. * @generated from field: string path = 4;
  932. */
  933. path: string;
  934. };
  935. /**
  936. * Describes the message olivetin.api.v1.DashboardNavigationTarget.
  937. * Use `create(DashboardNavigationTargetSchema)` to create a new message.
  938. */
  939. export declare const DashboardNavigationTargetSchema: GenMessage<DashboardNavigationTarget>;
  940. /**
  941. * @generated from message olivetin.api.v1.ExecutionStatusResponse
  942. */
  943. export declare type ExecutionStatusResponse = Message<"olivetin.api.v1.ExecutionStatusResponse"> & {
  944. /**
  945. * @generated from field: olivetin.api.v1.LogEntry log_entry = 1;
  946. */
  947. logEntry?: LogEntry | undefined;
  948. /**
  949. * @generated from field: repeated olivetin.api.v1.DashboardNavigationTarget back_to_dashboards = 2;
  950. */
  951. backToDashboards: DashboardNavigationTarget[];
  952. };
  953. /**
  954. * Describes the message olivetin.api.v1.ExecutionStatusResponse.
  955. * Use `create(ExecutionStatusResponseSchema)` to create a new message.
  956. */
  957. export declare const ExecutionStatusResponseSchema: GenMessage<ExecutionStatusResponse>;
  958. /**
  959. * @generated from message olivetin.api.v1.WhoAmIRequest
  960. */
  961. export declare type WhoAmIRequest = Message<"olivetin.api.v1.WhoAmIRequest"> & {
  962. };
  963. /**
  964. * Describes the message olivetin.api.v1.WhoAmIRequest.
  965. * Use `create(WhoAmIRequestSchema)` to create a new message.
  966. */
  967. export declare const WhoAmIRequestSchema: GenMessage<WhoAmIRequest>;
  968. /**
  969. * @generated from message olivetin.api.v1.WhoAmIResponse
  970. */
  971. export declare type WhoAmIResponse = Message<"olivetin.api.v1.WhoAmIResponse"> & {
  972. /**
  973. * @generated from field: string authenticated_user = 1;
  974. */
  975. authenticatedUser: string;
  976. /**
  977. * @generated from field: string usergroup = 2;
  978. */
  979. usergroup: string;
  980. /**
  981. * @generated from field: string provider = 3;
  982. */
  983. provider: string;
  984. /**
  985. * @generated from field: repeated string acls = 4;
  986. */
  987. acls: string[];
  988. /**
  989. * @generated from field: string sid = 5;
  990. */
  991. sid: string;
  992. };
  993. /**
  994. * Describes the message olivetin.api.v1.WhoAmIResponse.
  995. * Use `create(WhoAmIResponseSchema)` to create a new message.
  996. */
  997. export declare const WhoAmIResponseSchema: GenMessage<WhoAmIResponse>;
  998. /**
  999. * @generated from message olivetin.api.v1.SosReportRequest
  1000. */
  1001. export declare type SosReportRequest = Message<"olivetin.api.v1.SosReportRequest"> & {
  1002. };
  1003. /**
  1004. * Describes the message olivetin.api.v1.SosReportRequest.
  1005. * Use `create(SosReportRequestSchema)` to create a new message.
  1006. */
  1007. export declare const SosReportRequestSchema: GenMessage<SosReportRequest>;
  1008. /**
  1009. * @generated from message olivetin.api.v1.SosReportResponse
  1010. */
  1011. export declare type SosReportResponse = Message<"olivetin.api.v1.SosReportResponse"> & {
  1012. /**
  1013. * @generated from field: string alert = 1;
  1014. */
  1015. alert: string;
  1016. };
  1017. /**
  1018. * Describes the message olivetin.api.v1.SosReportResponse.
  1019. * Use `create(SosReportResponseSchema)` to create a new message.
  1020. */
  1021. export declare const SosReportResponseSchema: GenMessage<SosReportResponse>;
  1022. /**
  1023. * @generated from message olivetin.api.v1.DumpVarsRequest
  1024. */
  1025. export declare type DumpVarsRequest = Message<"olivetin.api.v1.DumpVarsRequest"> & {
  1026. };
  1027. /**
  1028. * Describes the message olivetin.api.v1.DumpVarsRequest.
  1029. * Use `create(DumpVarsRequestSchema)` to create a new message.
  1030. */
  1031. export declare const DumpVarsRequestSchema: GenMessage<DumpVarsRequest>;
  1032. /**
  1033. * @generated from message olivetin.api.v1.DumpVarsResponse
  1034. */
  1035. export declare type DumpVarsResponse = Message<"olivetin.api.v1.DumpVarsResponse"> & {
  1036. /**
  1037. * @generated from field: string alert = 1;
  1038. */
  1039. alert: string;
  1040. /**
  1041. * @generated from field: map<string, string> contents = 2;
  1042. */
  1043. contents: { [key: string]: string };
  1044. };
  1045. /**
  1046. * Describes the message olivetin.api.v1.DumpVarsResponse.
  1047. * Use `create(DumpVarsResponseSchema)` to create a new message.
  1048. */
  1049. export declare const DumpVarsResponseSchema: GenMessage<DumpVarsResponse>;
  1050. /**
  1051. * @generated from message olivetin.api.v1.DebugBinding
  1052. */
  1053. export declare type DebugBinding = Message<"olivetin.api.v1.DebugBinding"> & {
  1054. /**
  1055. * @generated from field: string action_title = 1;
  1056. */
  1057. actionTitle: string;
  1058. /**
  1059. * @generated from field: string entity_prefix = 2;
  1060. */
  1061. entityPrefix: string;
  1062. };
  1063. /**
  1064. * Describes the message olivetin.api.v1.DebugBinding.
  1065. * Use `create(DebugBindingSchema)` to create a new message.
  1066. */
  1067. export declare const DebugBindingSchema: GenMessage<DebugBinding>;
  1068. /**
  1069. * @generated from message olivetin.api.v1.DumpPublicIdActionMapRequest
  1070. */
  1071. export declare type DumpPublicIdActionMapRequest = Message<"olivetin.api.v1.DumpPublicIdActionMapRequest"> & {
  1072. };
  1073. /**
  1074. * Describes the message olivetin.api.v1.DumpPublicIdActionMapRequest.
  1075. * Use `create(DumpPublicIdActionMapRequestSchema)` to create a new message.
  1076. */
  1077. export declare const DumpPublicIdActionMapRequestSchema: GenMessage<DumpPublicIdActionMapRequest>;
  1078. /**
  1079. * @generated from message olivetin.api.v1.DumpPublicIdActionMapResponse
  1080. */
  1081. export declare type DumpPublicIdActionMapResponse = Message<"olivetin.api.v1.DumpPublicIdActionMapResponse"> & {
  1082. /**
  1083. * @generated from field: string alert = 1;
  1084. */
  1085. alert: string;
  1086. /**
  1087. * @generated from field: map<string, olivetin.api.v1.DebugBinding> contents = 2;
  1088. */
  1089. contents: { [key: string]: DebugBinding };
  1090. };
  1091. /**
  1092. * Describes the message olivetin.api.v1.DumpPublicIdActionMapResponse.
  1093. * Use `create(DumpPublicIdActionMapResponseSchema)` to create a new message.
  1094. */
  1095. export declare const DumpPublicIdActionMapResponseSchema: GenMessage<DumpPublicIdActionMapResponse>;
  1096. /**
  1097. * @generated from message olivetin.api.v1.GetReadyzRequest
  1098. */
  1099. export declare type GetReadyzRequest = Message<"olivetin.api.v1.GetReadyzRequest"> & {
  1100. };
  1101. /**
  1102. * Describes the message olivetin.api.v1.GetReadyzRequest.
  1103. * Use `create(GetReadyzRequestSchema)` to create a new message.
  1104. */
  1105. export declare const GetReadyzRequestSchema: GenMessage<GetReadyzRequest>;
  1106. /**
  1107. * @generated from message olivetin.api.v1.GetReadyzResponse
  1108. */
  1109. export declare type GetReadyzResponse = Message<"olivetin.api.v1.GetReadyzResponse"> & {
  1110. /**
  1111. * @generated from field: string status = 1;
  1112. */
  1113. status: string;
  1114. };
  1115. /**
  1116. * Describes the message olivetin.api.v1.GetReadyzResponse.
  1117. * Use `create(GetReadyzResponseSchema)` to create a new message.
  1118. */
  1119. export declare const GetReadyzResponseSchema: GenMessage<GetReadyzResponse>;
  1120. /**
  1121. * @generated from message olivetin.api.v1.EventStreamRequest
  1122. */
  1123. export declare type EventStreamRequest = Message<"olivetin.api.v1.EventStreamRequest"> & {
  1124. };
  1125. /**
  1126. * Describes the message olivetin.api.v1.EventStreamRequest.
  1127. * Use `create(EventStreamRequestSchema)` to create a new message.
  1128. */
  1129. export declare const EventStreamRequestSchema: GenMessage<EventStreamRequest>;
  1130. /**
  1131. * @generated from message olivetin.api.v1.EventStreamResponse
  1132. */
  1133. export declare type EventStreamResponse = Message<"olivetin.api.v1.EventStreamResponse"> & {
  1134. /**
  1135. * @generated from oneof olivetin.api.v1.EventStreamResponse.event
  1136. */
  1137. event: {
  1138. /**
  1139. * @generated from field: olivetin.api.v1.EventEntityChanged entity_changed = 2;
  1140. */
  1141. value: EventEntityChanged;
  1142. case: "entityChanged";
  1143. } | {
  1144. /**
  1145. * @generated from field: olivetin.api.v1.EventConfigChanged config_changed = 3;
  1146. */
  1147. value: EventConfigChanged;
  1148. case: "configChanged";
  1149. } | {
  1150. /**
  1151. * @generated from field: olivetin.api.v1.EventExecutionFinished execution_finished = 4;
  1152. */
  1153. value: EventExecutionFinished;
  1154. case: "executionFinished";
  1155. } | {
  1156. /**
  1157. * @generated from field: olivetin.api.v1.EventExecutionStarted execution_started = 5;
  1158. */
  1159. value: EventExecutionStarted;
  1160. case: "executionStarted";
  1161. } | {
  1162. /**
  1163. * @generated from field: olivetin.api.v1.EventOutputChunk output_chunk = 6;
  1164. */
  1165. value: EventOutputChunk;
  1166. case: "outputChunk";
  1167. } | {
  1168. /**
  1169. * @generated from field: olivetin.api.v1.EventHeartbeat heartbeat = 7;
  1170. */
  1171. value: EventHeartbeat;
  1172. case: "heartbeat";
  1173. } | { case: undefined; value?: undefined };
  1174. };
  1175. /**
  1176. * Describes the message olivetin.api.v1.EventStreamResponse.
  1177. * Use `create(EventStreamResponseSchema)` to create a new message.
  1178. */
  1179. export declare const EventStreamResponseSchema: GenMessage<EventStreamResponse>;
  1180. /**
  1181. * @generated from message olivetin.api.v1.EventOutputChunk
  1182. */
  1183. export declare type EventOutputChunk = Message<"olivetin.api.v1.EventOutputChunk"> & {
  1184. /**
  1185. * @generated from field: string execution_tracking_id = 1;
  1186. */
  1187. executionTrackingId: string;
  1188. /**
  1189. * @generated from field: string output = 2;
  1190. */
  1191. output: string;
  1192. };
  1193. /**
  1194. * Describes the message olivetin.api.v1.EventOutputChunk.
  1195. * Use `create(EventOutputChunkSchema)` to create a new message.
  1196. */
  1197. export declare const EventOutputChunkSchema: GenMessage<EventOutputChunk>;
  1198. /**
  1199. * @generated from message olivetin.api.v1.EventEntityChanged
  1200. */
  1201. export declare type EventEntityChanged = Message<"olivetin.api.v1.EventEntityChanged"> & {
  1202. };
  1203. /**
  1204. * Describes the message olivetin.api.v1.EventEntityChanged.
  1205. * Use `create(EventEntityChangedSchema)` to create a new message.
  1206. */
  1207. export declare const EventEntityChangedSchema: GenMessage<EventEntityChanged>;
  1208. /**
  1209. * @generated from message olivetin.api.v1.EventConfigChanged
  1210. */
  1211. export declare type EventConfigChanged = Message<"olivetin.api.v1.EventConfigChanged"> & {
  1212. };
  1213. /**
  1214. * Describes the message olivetin.api.v1.EventConfigChanged.
  1215. * Use `create(EventConfigChangedSchema)` to create a new message.
  1216. */
  1217. export declare const EventConfigChangedSchema: GenMessage<EventConfigChanged>;
  1218. /**
  1219. * @generated from message olivetin.api.v1.EventHeartbeat
  1220. */
  1221. export declare type EventHeartbeat = Message<"olivetin.api.v1.EventHeartbeat"> & {
  1222. };
  1223. /**
  1224. * Describes the message olivetin.api.v1.EventHeartbeat.
  1225. * Use `create(EventHeartbeatSchema)` to create a new message.
  1226. */
  1227. export declare const EventHeartbeatSchema: GenMessage<EventHeartbeat>;
  1228. /**
  1229. * @generated from message olivetin.api.v1.EventExecutionFinished
  1230. */
  1231. export declare type EventExecutionFinished = Message<"olivetin.api.v1.EventExecutionFinished"> & {
  1232. /**
  1233. * @generated from field: olivetin.api.v1.LogEntry log_entry = 1;
  1234. */
  1235. logEntry?: LogEntry | undefined;
  1236. };
  1237. /**
  1238. * Describes the message olivetin.api.v1.EventExecutionFinished.
  1239. * Use `create(EventExecutionFinishedSchema)` to create a new message.
  1240. */
  1241. export declare const EventExecutionFinishedSchema: GenMessage<EventExecutionFinished>;
  1242. /**
  1243. * @generated from message olivetin.api.v1.EventExecutionStarted
  1244. */
  1245. export declare type EventExecutionStarted = Message<"olivetin.api.v1.EventExecutionStarted"> & {
  1246. /**
  1247. * @generated from field: olivetin.api.v1.LogEntry log_entry = 1;
  1248. */
  1249. logEntry?: LogEntry | undefined;
  1250. };
  1251. /**
  1252. * Describes the message olivetin.api.v1.EventExecutionStarted.
  1253. * Use `create(EventExecutionStartedSchema)` to create a new message.
  1254. */
  1255. export declare const EventExecutionStartedSchema: GenMessage<EventExecutionStarted>;
  1256. /**
  1257. * @generated from message olivetin.api.v1.KillActionRequest
  1258. */
  1259. export declare type KillActionRequest = Message<"olivetin.api.v1.KillActionRequest"> & {
  1260. /**
  1261. * @generated from field: string execution_tracking_id = 1;
  1262. */
  1263. executionTrackingId: string;
  1264. };
  1265. /**
  1266. * Describes the message olivetin.api.v1.KillActionRequest.
  1267. * Use `create(KillActionRequestSchema)` to create a new message.
  1268. */
  1269. export declare const KillActionRequestSchema: GenMessage<KillActionRequest>;
  1270. /**
  1271. * @generated from message olivetin.api.v1.KillActionResponse
  1272. */
  1273. export declare type KillActionResponse = Message<"olivetin.api.v1.KillActionResponse"> & {
  1274. /**
  1275. * @generated from field: string execution_tracking_id = 1;
  1276. */
  1277. executionTrackingId: string;
  1278. /**
  1279. * @generated from field: bool killed = 2;
  1280. */
  1281. killed: boolean;
  1282. /**
  1283. * @generated from field: bool already_completed = 3;
  1284. */
  1285. alreadyCompleted: boolean;
  1286. /**
  1287. * @generated from field: bool found = 4;
  1288. */
  1289. found: boolean;
  1290. };
  1291. /**
  1292. * Describes the message olivetin.api.v1.KillActionResponse.
  1293. * Use `create(KillActionResponseSchema)` to create a new message.
  1294. */
  1295. export declare const KillActionResponseSchema: GenMessage<KillActionResponse>;
  1296. /**
  1297. * @generated from message olivetin.api.v1.LocalUserLoginRequest
  1298. */
  1299. export declare type LocalUserLoginRequest = Message<"olivetin.api.v1.LocalUserLoginRequest"> & {
  1300. /**
  1301. * @generated from field: string username = 1;
  1302. */
  1303. username: string;
  1304. /**
  1305. * @generated from field: string password = 2;
  1306. */
  1307. password: string;
  1308. };
  1309. /**
  1310. * Describes the message olivetin.api.v1.LocalUserLoginRequest.
  1311. * Use `create(LocalUserLoginRequestSchema)` to create a new message.
  1312. */
  1313. export declare const LocalUserLoginRequestSchema: GenMessage<LocalUserLoginRequest>;
  1314. /**
  1315. * @generated from message olivetin.api.v1.LocalUserLoginResponse
  1316. */
  1317. export declare type LocalUserLoginResponse = Message<"olivetin.api.v1.LocalUserLoginResponse"> & {
  1318. /**
  1319. * @generated from field: bool success = 1;
  1320. */
  1321. success: boolean;
  1322. };
  1323. /**
  1324. * Describes the message olivetin.api.v1.LocalUserLoginResponse.
  1325. * Use `create(LocalUserLoginResponseSchema)` to create a new message.
  1326. */
  1327. export declare const LocalUserLoginResponseSchema: GenMessage<LocalUserLoginResponse>;
  1328. /**
  1329. * @generated from message olivetin.api.v1.PasswordHashRequest
  1330. */
  1331. export declare type PasswordHashRequest = Message<"olivetin.api.v1.PasswordHashRequest"> & {
  1332. /**
  1333. * @generated from field: string password = 1;
  1334. */
  1335. password: string;
  1336. };
  1337. /**
  1338. * Describes the message olivetin.api.v1.PasswordHashRequest.
  1339. * Use `create(PasswordHashRequestSchema)` to create a new message.
  1340. */
  1341. export declare const PasswordHashRequestSchema: GenMessage<PasswordHashRequest>;
  1342. /**
  1343. * @generated from message olivetin.api.v1.PasswordHashResponse
  1344. */
  1345. export declare type PasswordHashResponse = Message<"olivetin.api.v1.PasswordHashResponse"> & {
  1346. /**
  1347. * @generated from field: string hash = 1;
  1348. */
  1349. hash: string;
  1350. };
  1351. /**
  1352. * Describes the message olivetin.api.v1.PasswordHashResponse.
  1353. * Use `create(PasswordHashResponseSchema)` to create a new message.
  1354. */
  1355. export declare const PasswordHashResponseSchema: GenMessage<PasswordHashResponse>;
  1356. /**
  1357. * @generated from message olivetin.api.v1.LogoutRequest
  1358. */
  1359. export declare type LogoutRequest = Message<"olivetin.api.v1.LogoutRequest"> & {
  1360. };
  1361. /**
  1362. * Describes the message olivetin.api.v1.LogoutRequest.
  1363. * Use `create(LogoutRequestSchema)` to create a new message.
  1364. */
  1365. export declare const LogoutRequestSchema: GenMessage<LogoutRequest>;
  1366. /**
  1367. * @generated from message olivetin.api.v1.LogoutResponse
  1368. */
  1369. export declare type LogoutResponse = Message<"olivetin.api.v1.LogoutResponse"> & {
  1370. };
  1371. /**
  1372. * Describes the message olivetin.api.v1.LogoutResponse.
  1373. * Use `create(LogoutResponseSchema)` to create a new message.
  1374. */
  1375. export declare const LogoutResponseSchema: GenMessage<LogoutResponse>;
  1376. /**
  1377. * @generated from message olivetin.api.v1.GetDiagnosticsRequest
  1378. */
  1379. export declare type GetDiagnosticsRequest = Message<"olivetin.api.v1.GetDiagnosticsRequest"> & {
  1380. };
  1381. /**
  1382. * Describes the message olivetin.api.v1.GetDiagnosticsRequest.
  1383. * Use `create(GetDiagnosticsRequestSchema)` to create a new message.
  1384. */
  1385. export declare const GetDiagnosticsRequestSchema: GenMessage<GetDiagnosticsRequest>;
  1386. /**
  1387. * @generated from message olivetin.api.v1.GetDiagnosticsResponse
  1388. */
  1389. export declare type GetDiagnosticsResponse = Message<"olivetin.api.v1.GetDiagnosticsResponse"> & {
  1390. /**
  1391. * @generated from field: string SshFoundKey = 1;
  1392. */
  1393. SshFoundKey: string;
  1394. /**
  1395. * @generated from field: string SshFoundConfig = 2;
  1396. */
  1397. SshFoundConfig: string;
  1398. };
  1399. /**
  1400. * Describes the message olivetin.api.v1.GetDiagnosticsResponse.
  1401. * Use `create(GetDiagnosticsResponseSchema)` to create a new message.
  1402. */
  1403. export declare const GetDiagnosticsResponseSchema: GenMessage<GetDiagnosticsResponse>;
  1404. /**
  1405. * @generated from message olivetin.api.v1.InitRequest
  1406. */
  1407. export declare type InitRequest = Message<"olivetin.api.v1.InitRequest"> & {
  1408. };
  1409. /**
  1410. * Describes the message olivetin.api.v1.InitRequest.
  1411. * Use `create(InitRequestSchema)` to create a new message.
  1412. */
  1413. export declare const InitRequestSchema: GenMessage<InitRequest>;
  1414. /**
  1415. * @generated from message olivetin.api.v1.InitResponse
  1416. */
  1417. export declare type InitResponse = Message<"olivetin.api.v1.InitResponse"> & {
  1418. /**
  1419. * @generated from field: bool showFooter = 1;
  1420. */
  1421. showFooter: boolean;
  1422. /**
  1423. * @generated from field: bool showNavigation = 2;
  1424. */
  1425. showNavigation: boolean;
  1426. /**
  1427. * @generated from field: bool showNewVersions = 3;
  1428. */
  1429. showNewVersions: boolean;
  1430. /**
  1431. * @generated from field: string availableVersion = 4;
  1432. */
  1433. availableVersion: string;
  1434. /**
  1435. * @generated from field: string currentVersion = 5;
  1436. */
  1437. currentVersion: string;
  1438. /**
  1439. * @generated from field: string pageTitle = 6;
  1440. */
  1441. pageTitle: string;
  1442. /**
  1443. * @generated from field: string sectionNavigationStyle = 7;
  1444. */
  1445. sectionNavigationStyle: string;
  1446. /**
  1447. * @generated from field: string defaultIconForBack = 8;
  1448. */
  1449. defaultIconForBack: string;
  1450. /**
  1451. * @generated from field: bool enableCustomJs = 9;
  1452. */
  1453. enableCustomJs: boolean;
  1454. /**
  1455. * @generated from field: string authLoginUrl = 10;
  1456. */
  1457. authLoginUrl: string;
  1458. /**
  1459. * @generated from field: bool authLocalLogin = 11;
  1460. */
  1461. authLocalLogin: boolean;
  1462. /**
  1463. * @generated from field: repeated string styleMods = 12;
  1464. */
  1465. styleMods: string[];
  1466. /**
  1467. * @generated from field: repeated olivetin.api.v1.OAuth2Provider oAuth2Providers = 13;
  1468. */
  1469. oAuth2Providers: OAuth2Provider[];
  1470. /**
  1471. * @generated from field: repeated olivetin.api.v1.AdditionalLink additionalLinks = 14;
  1472. */
  1473. additionalLinks: AdditionalLink[];
  1474. /**
  1475. * @generated from field: repeated string rootDashboards = 15;
  1476. */
  1477. rootDashboards: string[];
  1478. /**
  1479. * @generated from field: string authenticated_user = 16;
  1480. */
  1481. authenticatedUser: string;
  1482. /**
  1483. * @generated from field: string authenticated_user_provider = 17;
  1484. */
  1485. authenticatedUserProvider: string;
  1486. /**
  1487. * @generated from field: olivetin.api.v1.EffectivePolicy effective_policy = 18;
  1488. */
  1489. effectivePolicy?: EffectivePolicy | undefined;
  1490. /**
  1491. * @generated from field: string banner_message = 19;
  1492. */
  1493. bannerMessage: string;
  1494. /**
  1495. * @generated from field: string banner_css = 20;
  1496. */
  1497. bannerCss: string;
  1498. /**
  1499. * @generated from field: bool show_diagnostics = 21;
  1500. */
  1501. showDiagnostics: boolean;
  1502. /**
  1503. * @generated from field: bool show_log_list = 22;
  1504. */
  1505. showLogList: boolean;
  1506. /**
  1507. * @generated from field: bool login_required = 23;
  1508. */
  1509. loginRequired: boolean;
  1510. /**
  1511. * List of available theme names
  1512. *
  1513. * @generated from field: repeated string available_themes = 24;
  1514. */
  1515. availableThemes: string[];
  1516. /**
  1517. * @generated from field: bool show_navigate_on_start_icons = 25;
  1518. */
  1519. showNavigateOnStartIcons: boolean;
  1520. };
  1521. /**
  1522. * Describes the message olivetin.api.v1.InitResponse.
  1523. * Use `create(InitResponseSchema)` to create a new message.
  1524. */
  1525. export declare const InitResponseSchema: GenMessage<InitResponse>;
  1526. /**
  1527. * @generated from message olivetin.api.v1.AdditionalLink
  1528. */
  1529. export declare type AdditionalLink = Message<"olivetin.api.v1.AdditionalLink"> & {
  1530. /**
  1531. * @generated from field: string title = 1;
  1532. */
  1533. title: string;
  1534. /**
  1535. * @generated from field: string url = 2;
  1536. */
  1537. url: string;
  1538. };
  1539. /**
  1540. * Describes the message olivetin.api.v1.AdditionalLink.
  1541. * Use `create(AdditionalLinkSchema)` to create a new message.
  1542. */
  1543. export declare const AdditionalLinkSchema: GenMessage<AdditionalLink>;
  1544. /**
  1545. * @generated from message olivetin.api.v1.OAuth2Provider
  1546. */
  1547. export declare type OAuth2Provider = Message<"olivetin.api.v1.OAuth2Provider"> & {
  1548. /**
  1549. * @generated from field: string title = 1;
  1550. */
  1551. title: string;
  1552. /**
  1553. * @generated from field: string icon = 3;
  1554. */
  1555. icon: string;
  1556. /**
  1557. * @generated from field: string key = 4;
  1558. */
  1559. key: string;
  1560. };
  1561. /**
  1562. * Describes the message olivetin.api.v1.OAuth2Provider.
  1563. * Use `create(OAuth2ProviderSchema)` to create a new message.
  1564. */
  1565. export declare const OAuth2ProviderSchema: GenMessage<OAuth2Provider>;
  1566. /**
  1567. * @generated from message olivetin.api.v1.GetActionBindingRequest
  1568. */
  1569. export declare type GetActionBindingRequest = Message<"olivetin.api.v1.GetActionBindingRequest"> & {
  1570. /**
  1571. * @generated from field: string binding_id = 1;
  1572. */
  1573. bindingId: string;
  1574. };
  1575. /**
  1576. * Describes the message olivetin.api.v1.GetActionBindingRequest.
  1577. * Use `create(GetActionBindingRequestSchema)` to create a new message.
  1578. */
  1579. export declare const GetActionBindingRequestSchema: GenMessage<GetActionBindingRequest>;
  1580. /**
  1581. * @generated from message olivetin.api.v1.GetActionBindingResponse
  1582. */
  1583. export declare type GetActionBindingResponse = Message<"olivetin.api.v1.GetActionBindingResponse"> & {
  1584. /**
  1585. * @generated from field: olivetin.api.v1.Action action = 1;
  1586. */
  1587. action?: Action | undefined;
  1588. /**
  1589. * @generated from field: repeated olivetin.api.v1.DashboardNavigationTarget back_to_dashboards = 2;
  1590. */
  1591. backToDashboards: DashboardNavigationTarget[];
  1592. };
  1593. /**
  1594. * Describes the message olivetin.api.v1.GetActionBindingResponse.
  1595. * Use `create(GetActionBindingResponseSchema)` to create a new message.
  1596. */
  1597. export declare const GetActionBindingResponseSchema: GenMessage<GetActionBindingResponse>;
  1598. /**
  1599. * @generated from message olivetin.api.v1.GetEntitiesRequest
  1600. */
  1601. export declare type GetEntitiesRequest = Message<"olivetin.api.v1.GetEntitiesRequest"> & {
  1602. };
  1603. /**
  1604. * Describes the message olivetin.api.v1.GetEntitiesRequest.
  1605. * Use `create(GetEntitiesRequestSchema)` to create a new message.
  1606. */
  1607. export declare const GetEntitiesRequestSchema: GenMessage<GetEntitiesRequest>;
  1608. /**
  1609. * @generated from message olivetin.api.v1.GetEntitiesResponse
  1610. */
  1611. export declare type GetEntitiesResponse = Message<"olivetin.api.v1.GetEntitiesResponse"> & {
  1612. /**
  1613. * @generated from field: repeated olivetin.api.v1.EntityDefinition entity_definitions = 1;
  1614. */
  1615. entityDefinitions: EntityDefinition[];
  1616. };
  1617. /**
  1618. * Describes the message olivetin.api.v1.GetEntitiesResponse.
  1619. * Use `create(GetEntitiesResponseSchema)` to create a new message.
  1620. */
  1621. export declare const GetEntitiesResponseSchema: GenMessage<GetEntitiesResponse>;
  1622. /**
  1623. * @generated from message olivetin.api.v1.EntityDefinition
  1624. */
  1625. export declare type EntityDefinition = Message<"olivetin.api.v1.EntityDefinition"> & {
  1626. /**
  1627. * @generated from field: string title = 1;
  1628. */
  1629. title: string;
  1630. /**
  1631. * @generated from field: repeated olivetin.api.v1.Entity instances = 2;
  1632. */
  1633. instances: Entity[];
  1634. /**
  1635. * @generated from field: repeated string used_on_dashboards = 3;
  1636. */
  1637. usedOnDashboards: string[];
  1638. };
  1639. /**
  1640. * Describes the message olivetin.api.v1.EntityDefinition.
  1641. * Use `create(EntityDefinitionSchema)` to create a new message.
  1642. */
  1643. export declare const EntityDefinitionSchema: GenMessage<EntityDefinition>;
  1644. /**
  1645. * @generated from message olivetin.api.v1.GetEntityRequest
  1646. */
  1647. export declare type GetEntityRequest = Message<"olivetin.api.v1.GetEntityRequest"> & {
  1648. /**
  1649. * @generated from field: string unique_key = 1;
  1650. */
  1651. uniqueKey: string;
  1652. /**
  1653. * @generated from field: string type = 2;
  1654. */
  1655. type: string;
  1656. };
  1657. /**
  1658. * Describes the message olivetin.api.v1.GetEntityRequest.
  1659. * Use `create(GetEntityRequestSchema)` to create a new message.
  1660. */
  1661. export declare const GetEntityRequestSchema: GenMessage<GetEntityRequest>;
  1662. /**
  1663. * @generated from message olivetin.api.v1.RestartActionRequest
  1664. */
  1665. export declare type RestartActionRequest = Message<"olivetin.api.v1.RestartActionRequest"> & {
  1666. /**
  1667. * @generated from field: string execution_tracking_id = 1;
  1668. */
  1669. executionTrackingId: string;
  1670. };
  1671. /**
  1672. * Describes the message olivetin.api.v1.RestartActionRequest.
  1673. * Use `create(RestartActionRequestSchema)` to create a new message.
  1674. */
  1675. export declare const RestartActionRequestSchema: GenMessage<RestartActionRequest>;
  1676. /**
  1677. * @generated from service olivetin.api.v1.OliveTinApiService
  1678. */
  1679. export declare const OliveTinApiService: GenService<{
  1680. /**
  1681. * @generated from rpc olivetin.api.v1.OliveTinApiService.GetDashboard
  1682. */
  1683. getDashboard: {
  1684. methodKind: "unary";
  1685. input: typeof GetDashboardRequestSchema;
  1686. output: typeof GetDashboardResponseSchema;
  1687. },
  1688. /**
  1689. * @generated from rpc olivetin.api.v1.OliveTinApiService.StartAction
  1690. */
  1691. startAction: {
  1692. methodKind: "unary";
  1693. input: typeof StartActionRequestSchema;
  1694. output: typeof StartActionResponseSchema;
  1695. },
  1696. /**
  1697. * @generated from rpc olivetin.api.v1.OliveTinApiService.StartActionAndWait
  1698. */
  1699. startActionAndWait: {
  1700. methodKind: "unary";
  1701. input: typeof StartActionAndWaitRequestSchema;
  1702. output: typeof StartActionAndWaitResponseSchema;
  1703. },
  1704. /**
  1705. * @generated from rpc olivetin.api.v1.OliveTinApiService.StartActionByGet
  1706. */
  1707. startActionByGet: {
  1708. methodKind: "unary";
  1709. input: typeof StartActionByGetRequestSchema;
  1710. output: typeof StartActionByGetResponseSchema;
  1711. },
  1712. /**
  1713. * @generated from rpc olivetin.api.v1.OliveTinApiService.StartActionByGetAndWait
  1714. */
  1715. startActionByGetAndWait: {
  1716. methodKind: "unary";
  1717. input: typeof StartActionByGetAndWaitRequestSchema;
  1718. output: typeof StartActionByGetAndWaitResponseSchema;
  1719. },
  1720. /**
  1721. * @generated from rpc olivetin.api.v1.OliveTinApiService.RestartAction
  1722. */
  1723. restartAction: {
  1724. methodKind: "unary";
  1725. input: typeof RestartActionRequestSchema;
  1726. output: typeof StartActionResponseSchema;
  1727. },
  1728. /**
  1729. * @generated from rpc olivetin.api.v1.OliveTinApiService.KillAction
  1730. */
  1731. killAction: {
  1732. methodKind: "unary";
  1733. input: typeof KillActionRequestSchema;
  1734. output: typeof KillActionResponseSchema;
  1735. },
  1736. /**
  1737. * @generated from rpc olivetin.api.v1.OliveTinApiService.ExecutionStatus
  1738. */
  1739. executionStatus: {
  1740. methodKind: "unary";
  1741. input: typeof ExecutionStatusRequestSchema;
  1742. output: typeof ExecutionStatusResponseSchema;
  1743. },
  1744. /**
  1745. * @generated from rpc olivetin.api.v1.OliveTinApiService.GetLogs
  1746. */
  1747. getLogs: {
  1748. methodKind: "unary";
  1749. input: typeof GetLogsRequestSchema;
  1750. output: typeof GetLogsResponseSchema;
  1751. },
  1752. /**
  1753. * @generated from rpc olivetin.api.v1.OliveTinApiService.GetActionLogs
  1754. */
  1755. getActionLogs: {
  1756. methodKind: "unary";
  1757. input: typeof GetActionLogsRequestSchema;
  1758. output: typeof GetActionLogsResponseSchema;
  1759. },
  1760. /**
  1761. * @generated from rpc olivetin.api.v1.OliveTinApiService.GetExecutionQueue
  1762. */
  1763. getExecutionQueue: {
  1764. methodKind: "unary";
  1765. input: typeof GetExecutionQueueRequestSchema;
  1766. output: typeof GetExecutionQueueResponseSchema;
  1767. },
  1768. /**
  1769. * @generated from rpc olivetin.api.v1.OliveTinApiService.ValidateArgumentType
  1770. */
  1771. validateArgumentType: {
  1772. methodKind: "unary";
  1773. input: typeof ValidateArgumentTypeRequestSchema;
  1774. output: typeof ValidateArgumentTypeResponseSchema;
  1775. },
  1776. /**
  1777. * @generated from rpc olivetin.api.v1.OliveTinApiService.WhoAmI
  1778. */
  1779. whoAmI: {
  1780. methodKind: "unary";
  1781. input: typeof WhoAmIRequestSchema;
  1782. output: typeof WhoAmIResponseSchema;
  1783. },
  1784. /**
  1785. * @generated from rpc olivetin.api.v1.OliveTinApiService.SosReport
  1786. */
  1787. sosReport: {
  1788. methodKind: "unary";
  1789. input: typeof SosReportRequestSchema;
  1790. output: typeof SosReportResponseSchema;
  1791. },
  1792. /**
  1793. * @generated from rpc olivetin.api.v1.OliveTinApiService.DumpVars
  1794. */
  1795. dumpVars: {
  1796. methodKind: "unary";
  1797. input: typeof DumpVarsRequestSchema;
  1798. output: typeof DumpVarsResponseSchema;
  1799. },
  1800. /**
  1801. * @generated from rpc olivetin.api.v1.OliveTinApiService.DumpPublicIdActionMap
  1802. */
  1803. dumpPublicIdActionMap: {
  1804. methodKind: "unary";
  1805. input: typeof DumpPublicIdActionMapRequestSchema;
  1806. output: typeof DumpPublicIdActionMapResponseSchema;
  1807. },
  1808. /**
  1809. * @generated from rpc olivetin.api.v1.OliveTinApiService.GetReadyz
  1810. */
  1811. getReadyz: {
  1812. methodKind: "unary";
  1813. input: typeof GetReadyzRequestSchema;
  1814. output: typeof GetReadyzResponseSchema;
  1815. },
  1816. /**
  1817. * @generated from rpc olivetin.api.v1.OliveTinApiService.LocalUserLogin
  1818. */
  1819. localUserLogin: {
  1820. methodKind: "unary";
  1821. input: typeof LocalUserLoginRequestSchema;
  1822. output: typeof LocalUserLoginResponseSchema;
  1823. },
  1824. /**
  1825. * @generated from rpc olivetin.api.v1.OliveTinApiService.PasswordHash
  1826. */
  1827. passwordHash: {
  1828. methodKind: "unary";
  1829. input: typeof PasswordHashRequestSchema;
  1830. output: typeof PasswordHashResponseSchema;
  1831. },
  1832. /**
  1833. * @generated from rpc olivetin.api.v1.OliveTinApiService.Logout
  1834. */
  1835. logout: {
  1836. methodKind: "unary";
  1837. input: typeof LogoutRequestSchema;
  1838. output: typeof LogoutResponseSchema;
  1839. },
  1840. /**
  1841. * @generated from rpc olivetin.api.v1.OliveTinApiService.EventStream
  1842. */
  1843. eventStream: {
  1844. methodKind: "server_streaming";
  1845. input: typeof EventStreamRequestSchema;
  1846. output: typeof EventStreamResponseSchema;
  1847. },
  1848. /**
  1849. * @generated from rpc olivetin.api.v1.OliveTinApiService.GetDiagnostics
  1850. */
  1851. getDiagnostics: {
  1852. methodKind: "unary";
  1853. input: typeof GetDiagnosticsRequestSchema;
  1854. output: typeof GetDiagnosticsResponseSchema;
  1855. },
  1856. /**
  1857. * @generated from rpc olivetin.api.v1.OliveTinApiService.Init
  1858. */
  1859. init: {
  1860. methodKind: "unary";
  1861. input: typeof InitRequestSchema;
  1862. output: typeof InitResponseSchema;
  1863. },
  1864. /**
  1865. * @generated from rpc olivetin.api.v1.OliveTinApiService.GetActionBinding
  1866. */
  1867. getActionBinding: {
  1868. methodKind: "unary";
  1869. input: typeof GetActionBindingRequestSchema;
  1870. output: typeof GetActionBindingResponseSchema;
  1871. },
  1872. /**
  1873. * @generated from rpc olivetin.api.v1.OliveTinApiService.GetEntities
  1874. */
  1875. getEntities: {
  1876. methodKind: "unary";
  1877. input: typeof GetEntitiesRequestSchema;
  1878. output: typeof GetEntitiesResponseSchema;
  1879. },
  1880. /**
  1881. * @generated from rpc olivetin.api.v1.OliveTinApiService.GetEntity
  1882. */
  1883. getEntity: {
  1884. methodKind: "unary";
  1885. input: typeof GetEntityRequestSchema;
  1886. output: typeof EntitySchema;
  1887. },
  1888. }>;