olivetin_pb.d.ts 48 KB

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