olivetin_pb.d.ts 48 KB

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