olivetin_pb.d.ts 58 KB

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