@tailor-platform/sdk 2.0.0-next.1 → 2.0.0-next.10

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (471) hide show
  1. package/CHANGELOG.md +869 -2
  2. package/README.md +9 -9
  3. package/agent-skills/{tailor-sdk → tailor}/SKILL.md +3 -1
  4. package/dist/aigateway-DR4Kwuik.mjs +9 -0
  5. package/dist/aigateway-DR4Kwuik.mjs.map +1 -0
  6. package/dist/application-DArFTTJ9.mjs +3 -0
  7. package/dist/{application-DqS1yBg3.mjs → application-miwiXtB4.mjs} +1892 -1968
  8. package/dist/application-miwiXtB4.mjs.map +1 -0
  9. package/dist/authconnection-CZvi9ANm.mjs +9 -0
  10. package/dist/authconnection-CZvi9ANm.mjs.map +1 -0
  11. package/dist/brand-Eo4pLXPJ.mjs.map +1 -1
  12. package/dist/cli/cache/bundle-cache.d.mts +2 -0
  13. package/dist/cli/cache/store.d.mts +1 -0
  14. package/dist/cli/cache/types.d.mts +1 -0
  15. package/dist/cli/commands/api/api-call.d.mts +19 -0
  16. package/dist/cli/commands/api/index.d.mts +4 -0
  17. package/dist/cli/commands/deploy/aigateway.d.mts +5 -0
  18. package/dist/cli/commands/deploy/application.d.mts +7 -0
  19. package/dist/cli/commands/deploy/apply-phases.d.mts +14 -0
  20. package/dist/cli/commands/deploy/auth.d.mts +5 -0
  21. package/dist/cli/commands/deploy/deploy.d.mts +34 -0
  22. package/dist/cli/commands/deploy/executor.d.mts +7 -0
  23. package/dist/cli/commands/deploy/function-registry-types.d.mts +12 -0
  24. package/dist/cli/commands/deploy/function-registry.d.mts +7 -0
  25. package/dist/cli/commands/deploy/idp.d.mts +5 -0
  26. package/dist/cli/commands/deploy/resolver.d.mts +5 -0
  27. package/dist/cli/commands/deploy/secret-manager.d.mts +5 -0
  28. package/dist/cli/commands/deploy/staticwebsite.d.mts +5 -0
  29. package/dist/cli/commands/deploy/tailordb/index.d.mts +9 -0
  30. package/dist/cli/commands/deploy/types.d.mts +3 -0
  31. package/dist/cli/commands/deploy/workflow-execution-policy.d.mts +3 -0
  32. package/dist/cli/commands/deploy/workflow.d.mts +4 -0
  33. package/dist/cli/commands/executor/get.d.mts +28 -0
  34. package/dist/cli/commands/executor/jobs.d.mts +122 -0
  35. package/dist/cli/commands/executor/list.d.mts +18 -0
  36. package/dist/cli/commands/executor/transform.d.mts +42 -0
  37. package/dist/cli/commands/executor/trigger.d.mts +40 -0
  38. package/dist/cli/commands/executor/webhook.d.mts +21 -0
  39. package/dist/cli/commands/function/get.d.mts +17 -0
  40. package/dist/cli/commands/function/list.d.mts +21 -0
  41. package/dist/cli/commands/function/transform.d.mts +12 -0
  42. package/dist/cli/commands/generate/options.d.mts +6 -0
  43. package/dist/cli/commands/generate/seed/bundler.d.mts +26 -0
  44. package/dist/cli/commands/generate/service.d.mts +15 -0
  45. package/dist/cli/commands/machineuser/list.d.mts +26 -0
  46. package/dist/cli/commands/machineuser/token.d.mts +21 -0
  47. package/dist/cli/commands/oauth2client/get.d.mts +17 -0
  48. package/dist/cli/commands/oauth2client/list.d.mts +19 -0
  49. package/dist/cli/commands/oauth2client/transform.d.mts +21 -0
  50. package/dist/cli/commands/organization/folder/create.d.mts +17 -0
  51. package/dist/cli/commands/organization/folder/delete.d.mts +15 -0
  52. package/dist/cli/commands/organization/folder/get.d.mts +16 -0
  53. package/dist/cli/commands/organization/folder/list.d.mts +21 -0
  54. package/dist/cli/commands/organization/folder/update.d.mts +17 -0
  55. package/dist/cli/commands/organization/get.d.mts +15 -0
  56. package/dist/cli/commands/organization/list.d.mts +14 -0
  57. package/dist/cli/commands/organization/transform.d.mts +29 -0
  58. package/dist/cli/commands/organization/tree.d.mts +24 -0
  59. package/dist/cli/commands/organization/update.d.mts +16 -0
  60. package/dist/cli/commands/remove.d.mts +15 -0
  61. package/dist/cli/commands/show.d.mts +39 -0
  62. package/dist/cli/commands/staticwebsite/deploy.d.mts +19 -0
  63. package/dist/cli/commands/tailordb/migrate/bundler.d.mts +29 -0
  64. package/dist/cli/commands/tailordb/migrate/config.d.mts +18 -0
  65. package/dist/cli/commands/tailordb/migrate/diff-calculator.d.mts +246 -0
  66. package/dist/cli/commands/tailordb/migrate/generate.d.mts +16 -0
  67. package/dist/cli/commands/tailordb/migrate/snapshot-types.d.mts +208 -0
  68. package/dist/cli/commands/tailordb/migrate/snapshot.d.mts +98 -0
  69. package/dist/cli/commands/tailordb/migrate/types.d.mts +7 -0
  70. package/dist/cli/commands/tailordb/truncate.d.mts +18 -0
  71. package/dist/cli/commands/workflow/executions.d.mts +74 -0
  72. package/dist/cli/commands/workflow/get.d.mts +30 -0
  73. package/dist/cli/commands/workflow/list.d.mts +18 -0
  74. package/dist/cli/commands/workflow/resume.d.mts +22 -0
  75. package/dist/cli/commands/workflow/start.d.mts +60 -0
  76. package/dist/cli/commands/workflow/status.d.mts +6 -0
  77. package/dist/cli/commands/workflow/transform.d.mts +34 -0
  78. package/dist/cli/commands/workflow/wait.d.mts +15 -0
  79. package/dist/cli/commands/workflow/waiter.d.mts +23 -0
  80. package/dist/cli/commands/workspace/app/health.d.mts +17 -0
  81. package/dist/cli/commands/workspace/app/list.d.mts +21 -0
  82. package/dist/cli/commands/workspace/app/transform.d.mts +20 -0
  83. package/dist/cli/commands/workspace/create.d.mts +27 -0
  84. package/dist/cli/commands/workspace/delete.d.mts +14 -0
  85. package/dist/cli/commands/workspace/get.d.mts +16 -0
  86. package/dist/cli/commands/workspace/list.d.mts +17 -0
  87. package/dist/cli/commands/workspace/restore.d.mts +14 -0
  88. package/dist/cli/commands/workspace/transform.d.mts +20 -0
  89. package/dist/cli/commands/workspace/user/invite.d.mts +21 -0
  90. package/dist/cli/commands/workspace/user/list.d.mts +21 -0
  91. package/dist/cli/commands/workspace/user/remove.d.mts +16 -0
  92. package/dist/cli/commands/workspace/user/transform.d.mts +9 -0
  93. package/dist/cli/commands/workspace/user/update.d.mts +21 -0
  94. package/dist/cli/index.mjs +12 -5481
  95. package/dist/cli/lib.d.mts +90 -21048
  96. package/dist/cli/lib.mjs +154 -12
  97. package/dist/cli/lib.mjs.map +1 -1
  98. package/dist/cli/main.d.mts +23 -0
  99. package/dist/cli/main.mjs +6583 -0
  100. package/dist/cli/main.mjs.map +1 -0
  101. package/dist/cli/query/index.d.mts +38 -0
  102. package/dist/cli/services/application.d.mts +12 -0
  103. package/dist/cli/services/auth/service.d.mts +3 -0
  104. package/dist/cli/services/executor/service.d.mts +1 -0
  105. package/dist/cli/services/http-adapter/bundler.d.mts +3 -0
  106. package/dist/cli/services/http-adapter/service.d.mts +2 -0
  107. package/dist/cli/services/resolver/service.d.mts +1 -0
  108. package/dist/cli/services/tailordb/service.d.mts +3 -0
  109. package/dist/cli/services/workflow/bundler.d.mts +2 -0
  110. package/dist/cli/services/workflow/service.d.mts +1 -0
  111. package/dist/cli/shared/args.d.mts +13 -0
  112. package/dist/cli/shared/client.d.mts +1273 -0
  113. package/dist/cli/shared/config-loader.d.mts +25 -0
  114. package/dist/cli/shared/context.d.mts +29 -0
  115. package/dist/cli/shared/error-json.d.mts +23 -0
  116. package/dist/cli/shared/readonly-guard.d.mts +25 -0
  117. package/dist/cli/shared/script-executor.d.mts +77 -0
  118. package/dist/cli/shared/seed-chunker.d.mts +45 -0
  119. package/dist/cli/shared/seed-context.d.mts +49 -0
  120. package/dist/cli/shared/tailordb-namespaces.d.mts +40 -0
  121. package/dist/cli/shared/type-generator.d.mts +19 -0
  122. package/dist/cli/shared/workspace-name.d.mts +1 -0
  123. package/dist/cli/ts-hook.d.mts +4 -0
  124. package/dist/cli/ts-hook.mjs +333 -0
  125. package/dist/completion/zsh-worker.zsh +1433 -1239
  126. package/dist/configure/config/index.d.mts +20 -0
  127. package/dist/configure/config/types.d.mts +111 -0
  128. package/dist/configure/index.d.mts +135 -8
  129. package/dist/configure/index.mjs +390 -36
  130. package/dist/configure/index.mjs.map +1 -1
  131. package/dist/configure/services/aigateway/index.d.mts +16 -0
  132. package/dist/configure/services/aigateway/types.d.mts +10 -0
  133. package/dist/configure/services/auth/index.d.mts +33 -0
  134. package/dist/configure/services/auth/types.d.mts +168 -0
  135. package/dist/configure/services/executor/executor.d.mts +70 -0
  136. package/dist/configure/services/executor/index.d.mts +9 -0
  137. package/dist/configure/services/executor/operation.d.mts +50 -0
  138. package/dist/configure/services/executor/trigger/event.d.mts +271 -0
  139. package/dist/configure/services/executor/trigger/index.d.mts +7 -0
  140. package/dist/configure/services/executor/trigger/schedule.d.mts +24 -0
  141. package/dist/configure/services/executor/trigger/webhook.d.mts +43 -0
  142. package/dist/configure/services/executor/types.d.mts +2 -0
  143. package/dist/configure/services/http-adapter/http-adapter.d.mts +124 -0
  144. package/dist/configure/services/http-adapter/index.d.mts +2 -0
  145. package/dist/configure/services/idp/index.d.mts +60 -0
  146. package/dist/configure/services/idp/permission.d.mts +64 -0
  147. package/dist/configure/services/idp/types.d.mts +23 -0
  148. package/dist/configure/services/index.d.mts +40 -0
  149. package/dist/configure/services/resolver/index.d.mts +6 -0
  150. package/dist/configure/services/resolver/permission.d.mts +64 -0
  151. package/dist/configure/services/resolver/resolver.d.mts +88 -0
  152. package/dist/configure/services/resolver/types.d.mts +5 -0
  153. package/dist/configure/services/secrets/index.d.mts +37 -0
  154. package/dist/configure/services/secrets/types.d.mts +10 -0
  155. package/dist/configure/services/staticwebsite/index.d.mts +18 -0
  156. package/dist/configure/services/staticwebsite/types.d.mts +10 -0
  157. package/dist/configure/services/tailordb/index.d.mts +4 -0
  158. package/dist/configure/services/tailordb/permission.d.mts +103 -0
  159. package/dist/configure/services/tailordb/schema.d.mts +486 -0
  160. package/dist/configure/services/tailordb/types.d.mts +198 -0
  161. package/dist/configure/services/workflow/execution-policy.d.mts +70 -0
  162. package/dist/configure/services/workflow/execution-policy.types.d.mts +103 -0
  163. package/dist/configure/services/workflow/index.d.mts +9 -0
  164. package/dist/configure/services/workflow/job.d.mts +83 -0
  165. package/dist/configure/services/workflow/types.d.mts +2 -0
  166. package/dist/configure/services/workflow/wait-point.d.mts +72 -0
  167. package/dist/configure/services/workflow/workflow.d.mts +56 -0
  168. package/dist/configure/types/aigateway-name.d.mts +12 -0
  169. package/dist/configure/types/connection-name.d.mts +12 -0
  170. package/dist/configure/types/field.d.mts +8 -0
  171. package/dist/configure/types/field.types.d.mts +70 -0
  172. package/dist/configure/types/idp-name.d.mts +12 -0
  173. package/dist/configure/types/index.d.mts +5 -0
  174. package/dist/configure/types/machine-user.d.mts +2 -0
  175. package/dist/configure/types/permission-operand.types.d.mts +20 -0
  176. package/dist/configure/types/type.d.mts +73 -0
  177. package/dist/{context-Bd266-ru.mjs → context-DYQVYWqZ.mjs} +4 -5
  178. package/dist/context-DYQVYWqZ.mjs.map +1 -0
  179. package/dist/{crashreport-BsjAkFWw.mjs → crashreport-B5LqCTfF.mjs} +10 -11
  180. package/dist/{crashreport-BsjAkFWw.mjs.map → crashreport-B5LqCTfF.mjs.map} +1 -1
  181. package/dist/{crashreport-pr6Rhvza.mjs → crashreport-eI7ty7ok.mjs} +1 -1
  182. package/dist/enum-constants-j9QBF0cB.mjs.map +1 -1
  183. package/dist/{errors-Dtf2WPaW.mjs → errors-D7583Zz7.mjs} +18 -2
  184. package/dist/errors-D7583Zz7.mjs.map +1 -0
  185. package/dist/{file-_oUZo76X.mjs → file-BUcmVIH2.mjs} +12 -22
  186. package/dist/file-BUcmVIH2.mjs.map +1 -0
  187. package/dist/{file-utils-DcyIPFQh.mjs → file-utils-yEiIS4nJ.mjs} +6 -6
  188. package/dist/file-utils-yEiIS4nJ.mjs.map +1 -0
  189. package/dist/{globals-Crz8o65k.mjs → globals-DQotNuwK.mjs} +33 -55
  190. package/dist/globals-DQotNuwK.mjs.map +1 -0
  191. package/dist/iconv-QWaZh0TT.mjs +38 -0
  192. package/dist/iconv-QWaZh0TT.mjs.map +1 -0
  193. package/dist/{idp-BDbK5gjm.mjs → idp-RA_swu-h.mjs} +12 -5
  194. package/dist/idp-RA_swu-h.mjs.map +1 -0
  195. package/dist/{interceptor-D-q1rvRl.mjs → interceptor-e33JtsC-.mjs} +2 -2
  196. package/dist/interceptor-e33JtsC-.mjs.map +1 -0
  197. package/dist/kysely/index.d.mts +5 -7
  198. package/dist/{kysely-type-DR8uzZTA.mjs → kysely-type-DqIRgDYR.mjs} +5 -4
  199. package/dist/kysely-type-DqIRgDYR.mjs.map +1 -0
  200. package/dist/logger-BtX0suGY.mjs +48 -0
  201. package/dist/logger-BtX0suGY.mjs.map +1 -0
  202. package/dist/logger-CXQq9YIp.mjs +317 -0
  203. package/dist/logger-CXQq9YIp.mjs.map +1 -0
  204. package/dist/parser/service/auth/index.d.mts +1 -0
  205. package/dist/parser/service/auth/schema.d.mts +3 -0
  206. package/dist/parser/service/http-adapter/index.d.mts +1 -0
  207. package/dist/parser/service/http-adapter/schema.d.mts +1 -0
  208. package/dist/parser/service/idp/types.d.mts +5 -0
  209. package/dist/parser/service/tailordb/type-source.d.mts +10 -0
  210. package/dist/parser/service/tailordb/types.d.mts +131 -0
  211. package/dist/platform-serialize-RoRtBS0v.mjs +46 -0
  212. package/dist/platform-serialize-RoRtBS0v.mjs.map +1 -0
  213. package/dist/plugin/builtin/enum-constants/index.d.mts +15 -1
  214. package/dist/plugin/builtin/file-utils/index.d.mts +15 -1
  215. package/dist/plugin/builtin/file-utils/index.mjs +1 -1
  216. package/dist/plugin/builtin/kysely-type/index.d.mts +15 -1
  217. package/dist/plugin/builtin/kysely-type/index.mjs +1 -1
  218. package/dist/plugin/builtin/seed/index.d.mts +46 -2
  219. package/dist/plugin/builtin/seed/index.mjs +1 -1
  220. package/dist/plugin/builtin/seed/seed-type-processor.d.mts +19 -0
  221. package/dist/plugin/builtin/seed/types.d.mts +2 -0
  222. package/dist/plugin/get-generated-type.d.mts +16 -0
  223. package/dist/plugin/index.d.mts +3 -117
  224. package/dist/plugin/index.mjs +1 -1
  225. package/dist/plugin/index.mjs.map +1 -1
  226. package/dist/plugin/manager.d.mts +2 -0
  227. package/dist/plugin/types.d.mts +242 -0
  228. package/dist/plugin/with-context.d.mts +101 -0
  229. package/dist/{runtime-n9NCkjee.mjs → register-ts-hook-BAHMwxfG.mjs} +7812 -4094
  230. package/dist/register-ts-hook-BAHMwxfG.mjs.map +1 -0
  231. package/dist/{registry-DdsYlL_P.mjs → registry-BIGVUrMB.mjs} +12 -9
  232. package/dist/registry-BIGVUrMB.mjs.map +1 -0
  233. package/dist/{repl-editor-DmGr9zMw.mjs → repl-editor-BCozyiNq.mjs} +6 -5
  234. package/dist/{repl-editor-DmGr9zMw.mjs.map → repl-editor-BCozyiNq.mjs.map} +1 -1
  235. package/dist/runtime/aigateway.d.mts +25 -0
  236. package/dist/runtime/aigateway.mjs +3 -0
  237. package/dist/runtime/authconnection.d.mts +21 -2
  238. package/dist/runtime/authconnection.mjs +2 -2
  239. package/dist/runtime/context.d.mts +54 -2
  240. package/dist/runtime/context.mjs +2 -2
  241. package/dist/runtime/field-parse.d.mts +10 -0
  242. package/dist/runtime/file.d.mts +170 -2
  243. package/dist/runtime/file.mjs +2 -2
  244. package/dist/runtime/globals.d.mts +38 -20
  245. package/dist/runtime/iconv.d.mts +73 -2
  246. package/dist/runtime/iconv.mjs +2 -2
  247. package/dist/runtime/idp.d.mts +129 -2
  248. package/dist/runtime/idp.mjs +2 -2
  249. package/dist/runtime/index.d.mts +48 -9
  250. package/dist/runtime/index.mjs +10 -8
  251. package/dist/runtime/logger.d.mts +98 -0
  252. package/dist/runtime/logger.mjs +3 -0
  253. package/dist/runtime/secretmanager.d.mts +41 -2
  254. package/dist/runtime/secretmanager.mjs +2 -2
  255. package/dist/runtime/types.d.mts +25 -0
  256. package/dist/runtime/workflow.d.mts +124 -2
  257. package/dist/runtime/workflow.mjs +2 -2
  258. package/dist/{schema-BhkpP5Hw.mjs → schema--xYWRGfe.mjs} +288 -229
  259. package/dist/schema--xYWRGfe.mjs.map +1 -0
  260. package/dist/{secret-file-DBqZhjFQ.mjs → secret-file-C3J4Gy8r.mjs} +2 -2
  261. package/dist/{secret-file-DBqZhjFQ.mjs.map → secret-file-C3J4Gy8r.mjs.map} +1 -1
  262. package/dist/secretmanager-CYlpffsz.mjs +13 -0
  263. package/dist/secretmanager-CYlpffsz.mjs.map +1 -0
  264. package/dist/secretmanager-IY4UvinW.mjs +131 -0
  265. package/dist/secretmanager-IY4UvinW.mjs.map +1 -0
  266. package/dist/seed/index.d.mts +4 -4
  267. package/dist/seed-LUVr7jHL.mjs +444 -0
  268. package/dist/seed-LUVr7jHL.mjs.map +1 -0
  269. package/dist/{service-DU1mVzri.mjs → service-B5WynBHQ.mjs} +3 -3
  270. package/dist/{service-DU1mVzri.mjs.map → service-B5WynBHQ.mjs.map} +1 -1
  271. package/dist/service-BNtPsK9Q.mjs +837 -0
  272. package/dist/service-BNtPsK9Q.mjs.map +1 -0
  273. package/dist/service-D5jn05ZI.mjs +3 -0
  274. package/dist/service_pb-BwZRiNug.mjs +167 -0
  275. package/dist/service_pb-BwZRiNug.mjs.map +1 -0
  276. package/dist/service_pb-wRkxUta6.mjs +3 -0
  277. package/dist/tailor-proto/src/tailor/v1/aigateway_pb.d.mts +203 -0
  278. package/dist/tailor-proto/src/tailor/v1/aigateway_resource_pb.d.mts +57 -0
  279. package/dist/tailor-proto/src/tailor/v1/application_pb.d.mts +315 -0
  280. package/dist/tailor-proto/src/tailor/v1/application_resource_pb.d.mts +160 -0
  281. package/dist/tailor-proto/src/tailor/v1/auth_pb.d.mts +2069 -0
  282. package/dist/tailor-proto/src/tailor/v1/auth_resource_pb.d.mts +865 -0
  283. package/dist/tailor-proto/src/tailor/v1/events_pb.d.mts +111 -0
  284. package/dist/tailor-proto/src/tailor/v1/events_resource_pb.d.mts +68 -0
  285. package/dist/tailor-proto/src/tailor/v1/executor_pb.d.mts +438 -0
  286. package/dist/tailor-proto/src/tailor/v1/executor_resource_pb.d.mts +563 -0
  287. package/dist/tailor-proto/src/tailor/v1/function_pb.d.mts +144 -0
  288. package/dist/tailor-proto/src/tailor/v1/function_registry_pb.d.mts +450 -0
  289. package/dist/tailor-proto/src/tailor/v1/function_resource_pb.d.mts +191 -0
  290. package/dist/tailor-proto/src/tailor/v1/http_adapter_resource_pb.d.mts +49 -0
  291. package/dist/tailor-proto/src/tailor/v1/idp_pb.d.mts +406 -0
  292. package/dist/tailor-proto/src/tailor/v1/idp_resource_pb.d.mts +429 -0
  293. package/dist/tailor-proto/src/tailor/v1/metadata_pb.d.mts +72 -0
  294. package/dist/tailor-proto/src/tailor/v1/metadata_resource_pb.d.mts +16 -0
  295. package/dist/tailor-proto/src/tailor/v1/meter_pb.d.mts +308 -0
  296. package/dist/tailor-proto/src/tailor/v1/pipeline_pb.d.mts +590 -0
  297. package/dist/tailor-proto/src/tailor/v1/pipeline_resource_pb.d.mts +329 -0
  298. package/dist/tailor-proto/src/tailor/v1/resource_pb.d.mts +112 -0
  299. package/dist/tailor-proto/src/tailor/v1/secret_manager_pb.d.mts +345 -0
  300. package/dist/tailor-proto/src/tailor/v1/secret_manager_resource_pb.d.mts +53 -0
  301. package/dist/tailor-proto/src/tailor/v1/service_pb.d.mts +3575 -0
  302. package/dist/tailor-proto/src/tailor/v1/stateflow_pb.d.mts +186 -0
  303. package/dist/tailor-proto/src/tailor/v1/stateflow_resource_pb.d.mts +28 -0
  304. package/dist/tailor-proto/src/tailor/v1/staticwebsite_pb.d.mts +428 -0
  305. package/dist/tailor-proto/src/tailor/v1/staticwebsite_resource_pb.d.mts +89 -0
  306. package/dist/tailor-proto/src/tailor/v1/tailordb_pb.d.mts +683 -0
  307. package/dist/tailor-proto/src/tailor/v1/tailordb_resource_pb.d.mts +796 -0
  308. package/dist/tailor-proto/src/tailor/v1/telemetryrouter_pb.d.mts +329 -0
  309. package/dist/tailor-proto/src/tailor/v1/telemetryrouter_resource_pb.d.mts +182 -0
  310. package/dist/tailor-proto/src/tailor/v1/workflow_pb.d.mts +861 -0
  311. package/dist/tailor-proto/src/tailor/v1/workflow_resource_pb.d.mts +309 -0
  312. package/dist/tailor-proto/src/tailor/v1/workspace_pb.d.mts +2014 -0
  313. package/dist/tailor-proto/src/tailor/v1/workspace_resource_pb.d.mts +482 -0
  314. package/dist/{telemetry-CdqJEzkj.mjs → telemetry-BRVdwh14.mjs} +3 -3
  315. package/dist/telemetry-BRVdwh14.mjs.map +1 -0
  316. package/dist/telemetry-CkbkeJxl.mjs +3 -0
  317. package/dist/test-env-key-D7UkZp99.mjs +75 -0
  318. package/dist/test-env-key-D7UkZp99.mjs.map +1 -0
  319. package/dist/types/aigateway.generated.d.mts +12 -0
  320. package/dist/types/app-config.generated.d.mts +4 -0
  321. package/dist/types/auth-connection.generated.d.mts +33 -0
  322. package/dist/types/auth.generated.d.mts +188 -0
  323. package/dist/types/executor.generated.d.mts +209 -0
  324. package/dist/types/helpers.d.mts +40 -0
  325. package/dist/types/http-adapter.generated.d.mts +28 -0
  326. package/dist/types/idp.generated.d.mts +626 -0
  327. package/dist/types/resolver.generated.d.mts +82 -0
  328. package/dist/types/secrets.generated.d.mts +14 -0
  329. package/dist/types/staticwebsite.generated.d.mts +14 -0
  330. package/dist/types/tailordb.generated.d.mts +468 -0
  331. package/dist/types/workflow.generated.d.mts +17 -0
  332. package/dist/user-agent-Bgsszb5I.mjs +28 -0
  333. package/dist/user-agent-Bgsszb5I.mjs.map +1 -0
  334. package/dist/utils/test/index.d.mts +6 -100
  335. package/dist/utils/test/index.mjs +60 -39
  336. package/dist/utils/test/index.mjs.map +1 -1
  337. package/dist/utils/test/mock.d.mts +86 -0
  338. package/dist/vitest/environment.d.mts +1 -2
  339. package/dist/vitest/environment.mjs +2 -2
  340. package/dist/vitest/environment.mjs.map +1 -1
  341. package/dist/vitest/index.d.mts +15 -429
  342. package/dist/vitest/index.mjs +1240 -31
  343. package/dist/vitest/index.mjs.map +1 -1
  344. package/dist/vitest/mock-kysely.d.mts +61 -0
  345. package/dist/vitest/mock.d.mts +10 -0
  346. package/dist/vitest/mocks/aigateway.d.mts +40 -0
  347. package/dist/vitest/mocks/authconnection.d.mts +38 -0
  348. package/dist/vitest/mocks/file.d.mts +58 -0
  349. package/dist/vitest/mocks/iconv.d.mts +51 -0
  350. package/dist/vitest/mocks/idp.d.mts +60 -0
  351. package/dist/vitest/mocks/logger.d.mts +45 -0
  352. package/dist/vitest/mocks/secretmanager.d.mts +44 -0
  353. package/dist/vitest/mocks/tailordb.d.mts +115 -0
  354. package/dist/vitest/mocks/workflow.d.mts +157 -0
  355. package/dist/vitest/setup.d.mts +1 -2
  356. package/dist/vitest/setup.mjs +2 -2
  357. package/dist/vitest/workflow-local.d.mts +41 -0
  358. package/dist/workflow-CsaQ9qK-.mjs +42 -0
  359. package/dist/workflow-CsaQ9qK-.mjs.map +1 -0
  360. package/dist/{client-z_oHGVNy.mjs → workspace_resource_pb-UGK1SSn_.mjs} +55 -619
  361. package/dist/workspace_resource_pb-UGK1SSn_.mjs.map +1 -0
  362. package/docs/cli/application.md +150 -250
  363. package/docs/cli/auth.md +51 -295
  364. package/docs/cli/completion.md +1 -25
  365. package/docs/cli/crashreport.md +3 -61
  366. package/docs/cli/executor.md +72 -183
  367. package/docs/cli/function.md +16 -132
  368. package/docs/cli/organization.md +11 -221
  369. package/docs/cli/plugin.md +29 -0
  370. package/docs/cli/query.md +2 -22
  371. package/docs/cli/secret.md +71 -251
  372. package/docs/cli/setup.md +138 -40
  373. package/docs/cli/skills.md +50 -39
  374. package/docs/cli/staticwebsite.md +32 -180
  375. package/docs/cli/tailordb.md +71 -427
  376. package/docs/cli/upgrade.md +2 -22
  377. package/docs/cli/user.md +78 -247
  378. package/docs/cli/workflow.md +150 -172
  379. package/docs/cli/workspace.md +167 -538
  380. package/docs/cli-reference.md +213 -96
  381. package/docs/configuration.md +40 -6
  382. package/docs/github-actions.md +72 -24
  383. package/docs/migration/v2.md +1316 -0
  384. package/docs/multi-environment.md +29 -7
  385. package/docs/plugin/custom.md +4 -4
  386. package/docs/plugin/index.md +8 -8
  387. package/docs/quickstart.md +8 -7
  388. package/docs/runtime.md +18 -9
  389. package/docs/services/aigateway.md +20 -2
  390. package/docs/services/auth.md +51 -59
  391. package/docs/services/executor.md +8 -3
  392. package/docs/services/http-adapter.md +16 -1
  393. package/docs/services/idp.md +55 -2
  394. package/docs/services/resolver.md +62 -8
  395. package/docs/services/secret.md +11 -11
  396. package/docs/services/staticwebsite.md +8 -2
  397. package/docs/services/tailordb-migration.md +43 -28
  398. package/docs/services/tailordb.md +200 -99
  399. package/docs/services/workflow.md +133 -55
  400. package/docs/testing.md +244 -143
  401. package/package.json +59 -46
  402. package/postinstall.mjs +4 -6
  403. package/dist/application-DB2r36Et.mjs +0 -3
  404. package/dist/application-DqS1yBg3.mjs.map +0 -1
  405. package/dist/authconnection-D2MhtTN5.mjs +0 -15
  406. package/dist/authconnection-D2MhtTN5.mjs.map +0 -1
  407. package/dist/authconnection-DvUQAjQS.d.mts +0 -39
  408. package/dist/cli/erd-viewer-assets/app.js +0 -1181
  409. package/dist/cli/erd-viewer-assets/index.html +0 -73
  410. package/dist/cli/erd-viewer-assets/serve.json +0 -13
  411. package/dist/cli/erd-viewer-assets/styles.css +0 -789
  412. package/dist/cli/index.d.mts +0 -5
  413. package/dist/cli/index.mjs.map +0 -1
  414. package/dist/client-Dbohmtkv.mjs +0 -3
  415. package/dist/client-z_oHGVNy.mjs.map +0 -1
  416. package/dist/context-Bd266-ru.mjs.map +0 -1
  417. package/dist/context-BuuIb8CC.d.mts +0 -68
  418. package/dist/errors-Dtf2WPaW.mjs.map +0 -1
  419. package/dist/field-DOsJCPFa.mjs +0 -22
  420. package/dist/field-DOsJCPFa.mjs.map +0 -1
  421. package/dist/file-BB8Vs9O_.d.mts +0 -250
  422. package/dist/file-_oUZo76X.mjs.map +0 -1
  423. package/dist/file-utils-DcyIPFQh.mjs.map +0 -1
  424. package/dist/globals-Crz8o65k.mjs.map +0 -1
  425. package/dist/http-adapter.generated-WgMnb7Sb.d.mts +0 -580
  426. package/dist/iconv-Co-TOPuH.d.mts +0 -122
  427. package/dist/iconv-D2vi8G36.mjs +0 -63
  428. package/dist/iconv-D2vi8G36.mjs.map +0 -1
  429. package/dist/idp-BDbK5gjm.mjs.map +0 -1
  430. package/dist/idp-DrhVrLmV.d.mts +0 -160
  431. package/dist/index-5vPyRu1y.d.mts +0 -18
  432. package/dist/index-B7AKc18V.d.mts +0 -47
  433. package/dist/index-BlpzXncY.d.mts +0 -1016
  434. package/dist/index-CK7u9isy.d.mts +0 -46
  435. package/dist/index-CNYe5lnW.d.mts +0 -18
  436. package/dist/index-DjUdWlzf.d.mts +0 -18
  437. package/dist/index-ZePLwxw7.d.mts +0 -208
  438. package/dist/interceptor-D-q1rvRl.mjs.map +0 -1
  439. package/dist/job-fuc3j1Ma.mjs +0 -53
  440. package/dist/job-fuc3j1Ma.mjs.map +0 -1
  441. package/dist/kysely-type-DR8uzZTA.mjs.map +0 -1
  442. package/dist/logger-CxF-Ex5d.mjs +0 -220
  443. package/dist/logger-CxF-Ex5d.mjs.map +0 -1
  444. package/dist/mock-BjFj5o1I.mjs +0 -804
  445. package/dist/mock-BjFj5o1I.mjs.map +0 -1
  446. package/dist/registry-DdsYlL_P.mjs.map +0 -1
  447. package/dist/rolldown-runtime-DXywRVcq.mjs +0 -20
  448. package/dist/runtime-n9NCkjee.mjs.map +0 -1
  449. package/dist/schema-BhkpP5Hw.mjs.map +0 -1
  450. package/dist/secretmanager-B3n4KHfm.d.mts +0 -55
  451. package/dist/secretmanager-BVxw3ih_.mjs +0 -24
  452. package/dist/secretmanager-BVxw3ih_.mjs.map +0 -1
  453. package/dist/seed-jf3008-h.mjs +0 -1160
  454. package/dist/seed-jf3008-h.mjs.map +0 -1
  455. package/dist/service-CCL8ruDf.mjs +0 -459
  456. package/dist/service-CCL8ruDf.mjs.map +0 -1
  457. package/dist/service-D6yonf2I.mjs +0 -3
  458. package/dist/telemetry-CdqJEzkj.mjs.map +0 -1
  459. package/dist/telemetry-ClwW5ohF.mjs +0 -3
  460. package/dist/test-env-key-D9kM6ETE.mjs +0 -49
  461. package/dist/test-env-key-D9kM6ETE.mjs.map +0 -1
  462. package/dist/types-B2RpYyA_.mjs +0 -371
  463. package/dist/types-B2RpYyA_.mjs.map +0 -1
  464. package/dist/types-ClhIrW_C.mjs +0 -4
  465. package/dist/types-DCUhgpyI.d.mts +0 -784
  466. package/dist/types-DhO_VEZd.d.mts +0 -574
  467. package/dist/types-DwDgacni.d.mts +0 -338
  468. package/dist/workflow-BbKvGLQg.d.mts +0 -96
  469. package/dist/workflow-DgemCAz3.mjs +0 -38
  470. package/dist/workflow-DgemCAz3.mjs.map +0 -1
  471. package/dist/workflow.generated-DtQwEo-x.d.mts +0 -671
@@ -0,0 +1,3575 @@
1
+ import { AddOrganizationTeamMemberRequestSchema, AddOrganizationTeamMemberResponseSchema, CreateOrganizationFolderRequestSchema, CreateOrganizationFolderResponseSchema, CreateOrganizationTeamRequestSchema, CreateOrganizationTeamResponseSchema, CreateWorkspaceRequestSchema, CreateWorkspaceResponseSchema, DeleteOrganizationFolderIPRestrictionRequestSchema, DeleteOrganizationFolderIPRestrictionResponseSchema, DeleteOrganizationFolderRequestSchema, DeleteOrganizationFolderResponseSchema, DeleteOrganizationIPRestrictionRequestSchema, DeleteOrganizationIPRestrictionResponseSchema, DeleteOrganizationTeamRequestSchema, DeleteOrganizationTeamResponseSchema, DeleteWorkspaceRequestSchema, DeleteWorkspaceResponseSchema, GetOrganizationAccessRequestSchema, GetOrganizationAccessResponseSchema, GetOrganizationFolderAccessRequestSchema, GetOrganizationFolderAccessResponseSchema, GetOrganizationFolderIPRestrictionRequestSchema, GetOrganizationFolderIPRestrictionResponseSchema, GetOrganizationFolderRequestSchema, GetOrganizationFolderResponseSchema, GetOrganizationIPRestrictionRequestSchema, GetOrganizationIPRestrictionResponseSchema, GetOrganizationRequestSchema, GetOrganizationResponseSchema, GetOrganizationTeamMemberRequestSchema, GetOrganizationTeamMemberResponseSchema, GetOrganizationTeamRequestSchema, GetOrganizationTeamResponseSchema, GetPlatformAccountPlanRequestSchema, GetPlatformAccountPlanResponseSchema, GetWorkspacePlatformUserRequestSchema, GetWorkspacePlatformUserResponseSchema, GetWorkspaceRequestSchema, GetWorkspaceResponseSchema, GetWorkspaceRoleRequestSchema, GetWorkspaceRoleResponseSchema, GrantOrganizationAccessRequestSchema, GrantOrganizationAccessResponseSchema, GrantOrganizationFolderAccessRequestSchema, GrantOrganizationFolderAccessResponseSchema, InviteWorkspacePlatformUserRequestSchema, InviteWorkspacePlatformUserResponseSchema, ListAvailableWorkspacePlatformUserRolesRequestSchema, ListAvailableWorkspacePlatformUserRolesResponseSchema, ListAvailableWorkspaceRegionsRequestSchema, ListAvailableWorkspaceRegionsResponseSchema, ListOrganizationAccessesRequestSchema, ListOrganizationAccessesResponseSchema, ListOrganizationFolderAccessesRequestSchema, ListOrganizationFolderAccessesResponseSchema, ListOrganizationFoldersRequestSchema, ListOrganizationFoldersResponseSchema, ListOrganizationTeamMembersRequestSchema, ListOrganizationTeamMembersResponseSchema, ListOrganizationTeamsRequestSchema, ListOrganizationTeamsResponseSchema, ListOrganizationWorkspacesRequestSchema, ListOrganizationWorkspacesResponseSchema, ListOrganizationsRequestSchema, ListOrganizationsResponseSchema, ListUserOrganizationsRequestSchema, ListUserOrganizationsResponseSchema, ListWorkspacePlatformUsersRequestSchema, ListWorkspacePlatformUsersResponseSchema, ListWorkspacesRequestSchema, ListWorkspacesResponseSchema, RemoveOrganizationTeamMemberRequestSchema, RemoveOrganizationTeamMemberResponseSchema, RemoveWorkspacePlatformUserRequestSchema, RemoveWorkspacePlatformUserResponseSchema, RestoreWorkspaceRequestSchema, RestoreWorkspaceResponseSchema, RevokeOrganizationAccessRequestSchema, RevokeOrganizationAccessResponseSchema, RevokeOrganizationFolderAccessRequestSchema, RevokeOrganizationFolderAccessResponseSchema, UpdateOrganizationAccessRequestSchema, UpdateOrganizationAccessResponseSchema, UpdateOrganizationFolderAccessRequestSchema, UpdateOrganizationFolderAccessResponseSchema, UpdateOrganizationFolderRequestSchema, UpdateOrganizationFolderResponseSchema, UpdateOrganizationRequestSchema, UpdateOrganizationResponseSchema, UpdateOrganizationTeamMemberRequestSchema, UpdateOrganizationTeamMemberResponseSchema, UpdateOrganizationTeamRequestSchema, UpdateOrganizationTeamResponseSchema, UpdateWorkspacePlatformUserRequestSchema, UpdateWorkspacePlatformUserResponseSchema, UpdateWorkspaceRequestSchema, UpdateWorkspaceResponseSchema, UpsertOrganizationFolderIPRestrictionRequestSchema, UpsertOrganizationFolderIPRestrictionResponseSchema, UpsertOrganizationIPRestrictionRequestSchema, UpsertOrganizationIPRestrictionResponseSchema } from "./workspace_pb.mjs";
2
+ import { CreateApplicationRequestSchema, CreateApplicationResponseSchema, DeleteApplicationRequestSchema, DeleteApplicationResponseSchema, GetApplicationRequestSchema, GetApplicationResponseSchema, GetApplicationSchemaHealthRequestSchema, GetApplicationSchemaHealthResponseSchema, ListApplicationsRequestSchema, ListApplicationsResponseSchema, UpdateApplicationRequestSchema, UpdateApplicationResponseSchema } from "./application_pb.mjs";
3
+ import { CreateAIGatewayRequestSchema, CreateAIGatewayResponseSchema, DeleteAIGatewayRequestSchema, DeleteAIGatewayResponseSchema, GetAIGatewayRequestSchema, GetAIGatewayResponseSchema, ListAIGatewaysRequestSchema, ListAIGatewaysResponseSchema, UpdateAIGatewayRequestSchema, UpdateAIGatewayResponseSchema } from "./aigateway_pb.mjs";
4
+ import { ComposeTailorDBSDLRequestSchema, ComposeTailorDBSDLResponseSchema, CreateTailorDBGQLPermissionRequestSchema, CreateTailorDBGQLPermissionResponseSchema, CreateTailorDBServiceRequestSchema, CreateTailorDBServiceResponseSchema, CreateTailorDBTypeRequestSchema, CreateTailorDBTypeResponseSchema, DeleteTailorDBGQLPermissionRequestSchema, DeleteTailorDBGQLPermissionResponseSchema, DeleteTailorDBServiceRequestSchema, DeleteTailorDBServiceResponseSchema, DeleteTailorDBTypeRequestSchema, DeleteTailorDBTypeResponseSchema, GetTailorDBGQLPermissionRequestSchema, GetTailorDBGQLPermissionResponseSchema, GetTailorDBServiceRequestSchema, GetTailorDBServiceResponseSchema, GetTailorDBTypeRequestSchema, GetTailorDBTypeResponseSchema, ListTailorDBGQLPermissionsRequestSchema, ListTailorDBGQLPermissionsResponseSchema, ListTailorDBServicesRequestSchema, ListTailorDBServicesResponseSchema, ListTailorDBTypesRequestSchema, ListTailorDBTypesResponseSchema, TruncateTailorDBTypeRequestSchema, TruncateTailorDBTypeResponseSchema, TruncateTailorDBTypesRequestSchema, TruncateTailorDBTypesResponseSchema, UpdateTailorDBGQLPermissionRequestSchema, UpdateTailorDBGQLPermissionResponseSchema, UpdateTailorDBServiceRequestSchema, UpdateTailorDBServiceResponseSchema, UpdateTailorDBTypeRequestSchema, UpdateTailorDBTypeResponseSchema } from "./tailordb_pb.mjs";
5
+ import { ComposePipelineSDLRequestSchema, ComposePipelineSDLResponseSchema, CreatePipelineResolverRequestSchema, CreatePipelineResolverResponseSchema, CreatePipelineServiceRequestSchema, CreatePipelineServiceResponseSchema, DeletePipelineResolverRequestSchema, DeletePipelineResolverResponseSchema, DeletePipelineServiceRequestSchema, DeletePipelineServiceResponseSchema, GetPipelineResolverExecutionResultRequestSchema, GetPipelineResolverExecutionResultResponseSchema, GetPipelineResolverRequestSchema, GetPipelineResolverResponseSchema, GetPipelineServiceRequestSchema, GetPipelineServiceResponseSchema, ListPipelineResolverExecutionResultsRequestSchema, ListPipelineResolverExecutionResultsResponseSchema, ListPipelineResolversRequestSchema, ListPipelineResolversResponseSchema, ListPipelineServicesRequestSchema, ListPipelineServicesResponseSchema, RestartPipelineResolverRequestSchema, RestartPipelineResolverResponseSchema, UpdatePipelineResolverRequestSchema, UpdatePipelineResolverResponseSchema, UpdatePipelineServiceRequestSchema, UpdatePipelineServiceResponseSchema } from "./pipeline_pb.mjs";
6
+ import { CreateStateflowServiceRequestSchema, CreateStateflowServiceResponseSchema, DeleteStateflowServiceRequestSchema, DeleteStateflowServiceResponseSchema, GetStateflowServiceRequestSchema, GetStateflowServiceResponseSchema, ListStateflowServicesRequestSchema, ListStateflowServicesResponseSchema, UpdateStateflowServiceRequestSchema, UpdateStateflowServiceResponseSchema } from "./stateflow_pb.mjs";
7
+ import { CreateExecutorExecutorRequestSchema, CreateExecutorExecutorResponseSchema, DeleteExecutorExecutorRequestSchema, DeleteExecutorExecutorResponseSchema, GetExecutorExecutorRequestSchema, GetExecutorExecutorResponseSchema, GetExecutorIncomingWebhookRequestSchema, GetExecutorIncomingWebhookResponseSchema, GetExecutorJobRequestSchema, GetExecutorJobResponseSchema, ListExecutorExecutorsRequestSchema, ListExecutorExecutorsResponseSchema, ListExecutorIncomingWebhooksRequestSchema, ListExecutorIncomingWebhooksResponseSchema, ListExecutorJobAttemptsRequestSchema, ListExecutorJobAttemptsResponseSchema, ListExecutorJobsRequestSchema, ListExecutorJobsResponseSchema, TriggerExecutorRequestSchema, TriggerExecutorResponseSchema, UpdateExecutorExecutorRequestSchema, UpdateExecutorExecutorResponseSchema } from "./executor_pb.mjs";
8
+ import { CreateSecretManagerSecretRequestSchema, CreateSecretManagerSecretResponseSchema, CreateSecretManagerVaultRequestSchema, CreateSecretManagerVaultResponseSchema, DeleteSecretManagerSecretRequestSchema, DeleteSecretManagerSecretResponseSchema, DeleteSecretManagerVaultRequestSchema, DeleteSecretManagerVaultResponseSchema, GetSecretManagerSecretRequestSchema, GetSecretManagerSecretResponseSchema, GetSecretManagerVaultRequestSchema, GetSecretManagerVaultResponseSchema, ListSecretManagerSecretsRequestSchema, ListSecretManagerSecretsResponseSchema, ListSecretManagerVaultsRequestSchema, ListSecretManagerVaultsResponseSchema, UpdateSecretManagerSecretRequestSchema, UpdateSecretManagerSecretResponseSchema } from "./secret_manager_pb.mjs";
9
+ import { CreateAuthConnectionRequestSchema, CreateAuthConnectionResponseSchema, CreateAuthHookRequestSchema, CreateAuthHookResponseSchema, CreateAuthIDPConfigRequestSchema, CreateAuthIDPConfigResponseSchema, CreateAuthMachineUserRequestSchema, CreateAuthMachineUserResponseSchema, CreateAuthOAuth2ClientRequestSchema, CreateAuthOAuth2ClientResponseSchema, CreateAuthSCIMConfigRequestSchema, CreateAuthSCIMConfigResponseSchema, CreateAuthSCIMResourceRequestSchema, CreateAuthSCIMResourceResponseSchema, CreateAuthServiceRequestSchema, CreateAuthServiceResponseSchema, CreateControlplaneMachineUserRequestSchema, CreateControlplaneMachineUserResponseSchema, CreatePersonalAccessTokenRequestSchema, CreatePersonalAccessTokenResponseSchema, CreateTenantConfigRequestSchema, CreateTenantConfigResponseSchema, CreateUserProfileConfigRequestSchema, CreateUserProfileConfigResponseSchema, DeleteAuthConnectionRequestSchema, DeleteAuthConnectionResponseSchema, DeleteAuthHookRequestSchema, DeleteAuthHookResponseSchema, DeleteAuthIDPConfigRequestSchema, DeleteAuthIDPConfigResponseSchema, DeleteAuthMachineUserRequestSchema, DeleteAuthMachineUserResponseSchema, DeleteAuthOAuth2ClientRequestSchema, DeleteAuthOAuth2ClientResponseSchema, DeleteAuthSCIMConfigRequestSchema, DeleteAuthSCIMConfigResponseSchema, DeleteAuthSCIMResourceRequestSchema, DeleteAuthSCIMResourceResponseSchema, DeleteAuthServiceRequestSchema, DeleteAuthServiceResponseSchema, DeleteControlplaneMachineUserRequestSchema, DeleteControlplaneMachineUserResponseSchema, DeletePersonalAccessTokenRequestSchema, DeletePersonalAccessTokenResponseSchema, DeleteTenantConfigRequestSchema, DeleteTenantConfigResponseSchema, DeleteUserProfileConfigRequestSchema, DeleteUserProfileConfigResponseSchema, ExchangeAuthConnectionAuthorizationCodeRequestSchema, ExchangeAuthConnectionAuthorizationCodeResponseSchema, GetAuthHookRequestSchema, GetAuthHookResponseSchema, GetAuthIDPConfigRequestSchema, GetAuthIDPConfigResponseSchema, GetAuthMachineUserRequestSchema, GetAuthMachineUserResponseSchema, GetAuthOAuth2ClientRequestSchema, GetAuthOAuth2ClientResponseSchema, GetAuthSCIMConfigRequestSchema, GetAuthSCIMConfigResponseSchema, GetAuthSCIMResourceRequestSchema, GetAuthSCIMResourceResponseSchema, GetAuthSCIMResourcesRequestSchema, GetAuthSCIMResourcesResponseSchema, GetAuthServiceRequestSchema, GetAuthServiceResponseSchema, GetControlplaneMachineUserByNameRequestSchema, GetControlplaneMachineUserByNameResponseSchema, GetControlplaneMachineUserRequestSchema, GetControlplaneMachineUserResponseSchema, GetTenantConfigRequestSchema, GetTenantConfigResponseSchema, GetUserProfileConfigRequestSchema, GetUserProfileConfigResponseSchema, ListAuthConnectionsRequestSchema, ListAuthConnectionsResponseSchema, ListAuthIDPConfigsRequestSchema, ListAuthIDPConfigsResponseSchema, ListAuthMachineUsersRequestSchema, ListAuthMachineUsersResponseSchema, ListAuthOAuth2ClientsRequestSchema, ListAuthOAuth2ClientsResponseSchema, ListAuthServicesRequestSchema, ListAuthServicesResponseSchema, ListControlplaneMachineUsersRequestSchema, ListControlplaneMachineUsersResponseSchema, ListPersonalAccessTokensRequestSchema, ListPersonalAccessTokensResponseSchema, RegisterAuthConnectionSessionRequestSchema, RegisterAuthConnectionSessionResponseSchema, RevokeAuthConnectionRequestSchema, RevokeAuthConnectionResponseSchema, UpdateAuthConnectionRequestSchema, UpdateAuthConnectionResponseSchema, UpdateAuthHookRequestSchema, UpdateAuthHookResponseSchema, UpdateAuthIDPConfigRequestSchema, UpdateAuthIDPConfigResponseSchema, UpdateAuthMachineUserRequestSchema, UpdateAuthMachineUserResponseSchema, UpdateAuthOAuth2ClientRequestSchema, UpdateAuthOAuth2ClientResponseSchema, UpdateAuthSCIMConfigRequestSchema, UpdateAuthSCIMConfigResponseSchema, UpdateAuthSCIMResourceRequestSchema, UpdateAuthSCIMResourceResponseSchema, UpdateAuthServiceRequestSchema, UpdateAuthServiceResponseSchema, UpdateControlplaneMachineUserRequestSchema, UpdateControlplaneMachineUserResponseSchema, UpdateTenantConfigRequestSchema, UpdateTenantConfigResponseSchema, UpdateUserProfileConfigRequestSchema, UpdateUserProfileConfigResponseSchema } from "./auth_pb.mjs";
10
+ import { ListControlplaneActivityLogsRequestSchema, ListControlplaneActivityLogsResponseSchema, ListDataplaneEventsRequestSchema, ListDataplaneEventsResponseSchema } from "./events_pb.mjs";
11
+ import { GetFunctionExecutionRequestSchema, GetFunctionExecutionResponseSchema, ListFunctionExecutionsRequestSchema, ListFunctionExecutionsResponseSchema, TestExecScriptRequestSchema, TestExecScriptResponseSchema } from "./function_pb.mjs";
12
+ import { CreateFunctionRegistryRequestSchema, CreateFunctionRegistryResponseSchema, DeleteFunctionRegistryRequestSchema, DeleteFunctionRegistryResponseSchema, DownloadFunctionRegistryScriptRequestSchema, DownloadFunctionRegistryScriptResponseSchema, GetFunctionRegistryRequestSchema, GetFunctionRegistryResponseSchema, ListFunctionRegistriesRequestSchema, ListFunctionRegistriesResponseSchema, UpdateFunctionRegistryRequestSchema, UpdateFunctionRegistryResponseSchema } from "./function_registry_pb.mjs";
13
+ import { ListMeterAITokenUsagesRequestSchema, ListMeterAITokenUsagesResponseSchema, ListMeterEventCountsRequestSchema, ListMeterEventCountsResponseSchema, ListMeterExecutionCountsRequestSchema, ListMeterExecutionCountsResponseSchema, ListMeterRequestCountsRequestSchema, ListMeterRequestCountsResponseSchema } from "./meter_pb.mjs";
14
+ import { CreateIdPClientRequestSchema, CreateIdPClientResponseSchema, CreateIdPServiceRequestSchema, CreateIdPServiceResponseSchema, DeleteIdPClientRequestSchema, DeleteIdPClientResponseSchema, DeleteIdPServiceRequestSchema, DeleteIdPServiceResponseSchema, GetIdPClientRequestSchema, GetIdPClientResponseSchema, GetIdPServiceRequestSchema, GetIdPServiceResponseSchema, ListIdPClientsRequestSchema, ListIdPClientsResponseSchema, ListIdPServicesRequestSchema, ListIdPServicesResponseSchema, UpdateIdPServiceRequestSchema, UpdateIdPServiceResponseSchema } from "./idp_pb.mjs";
15
+ import { AddCustomDomainRequestSchema, AddCustomDomainResponseSchema, CreateDeploymentRequestSchema, CreateDeploymentResponseSchema, CreateStaticWebsiteRequestSchema, CreateStaticWebsiteResponseSchema, DeleteStaticWebsiteRequestSchema, DeleteStaticWebsiteResponseSchema, GetCustomDomainRequestSchema, GetCustomDomainResponseSchema, GetStaticWebsiteRequestSchema, GetStaticWebsiteResponseSchema, ListCustomDomainsRequestSchema, ListCustomDomainsResponseSchema, ListStaticWebsitesRequestSchema, ListStaticWebsitesResponseSchema, PublishDeploymentRequestSchema, PublishDeploymentResponseSchema, RemoveCustomDomainRequestSchema, RemoveCustomDomainResponseSchema, UpdateStaticWebsiteRequestSchema, UpdateStaticWebsiteResponseSchema, UploadFileRequestSchema, UploadFileResponseSchema } from "./staticwebsite_pb.mjs";
16
+ import { CreateWorkflowJobFunctionExecutionPolicyRequestSchema, CreateWorkflowJobFunctionExecutionPolicyResponseSchema, CreateWorkflowJobFunctionRequestSchema, CreateWorkflowJobFunctionResponseSchema, CreateWorkflowRequestSchema, CreateWorkflowResponseSchema, DeleteWorkflowJobFunctionExecutionPolicyRequestSchema, DeleteWorkflowJobFunctionExecutionPolicyResponseSchema, DeleteWorkflowJobFunctionRequestSchema, DeleteWorkflowJobFunctionResponseSchema, DeleteWorkflowRequestSchema, DeleteWorkflowResponseSchema, GetWorkflowByNameRequestSchema, GetWorkflowByNameResponseSchema, GetWorkflowExecutionRequestSchema, GetWorkflowExecutionResponseSchema, GetWorkflowJobFunctionByNameRequestSchema, GetWorkflowJobFunctionByNameResponseSchema, GetWorkflowJobFunctionExecutionPolicyByKeyRequestSchema, GetWorkflowJobFunctionExecutionPolicyByKeyResponseSchema, GetWorkflowJobFunctionExecutionPolicyRequestSchema, GetWorkflowJobFunctionExecutionPolicyResponseSchema, GetWorkflowJobFunctionRequestSchema, GetWorkflowJobFunctionResponseSchema, GetWorkflowRequestSchema, GetWorkflowResponseSchema, ListWorkflowExecutionsRequestSchema, ListWorkflowExecutionsResponseSchema, ListWorkflowJobFunctionExecutionPoliciesRequestSchema, ListWorkflowJobFunctionExecutionPoliciesResponseSchema, ListWorkflowJobFunctionsRequestSchema, ListWorkflowJobFunctionsResponseSchema, ListWorkflowsRequestSchema, ListWorkflowsResponseSchema, TestResumeWorkflowRequestSchema, TestResumeWorkflowResponseSchema, TestStartWorkflowRequestSchema, TestStartWorkflowResponseSchema, UpdateWorkflowJobFunctionExecutionPolicyRequestSchema, UpdateWorkflowJobFunctionExecutionPolicyResponseSchema, UpdateWorkflowJobFunctionRequestSchema, UpdateWorkflowJobFunctionResponseSchema, UpdateWorkflowRequestSchema, UpdateWorkflowResponseSchema } from "./workflow_pb.mjs";
17
+ import { GetMetadataRequestSchema, GetMetadataResponseSchema, SetMetadataRequestSchema, SetMetadataResponseSchema } from "./metadata_pb.mjs";
18
+ import { CreateOTLPExporterRequestSchema, CreateOTLPExporterResponseSchema, CreateResourceAttributesConfigRequestSchema, CreateResourceAttributesConfigResponseSchema, DeleteOTLPExporterRequestSchema, DeleteOTLPExporterResponseSchema, DeleteResourceAttributesConfigRequestSchema, DeleteResourceAttributesConfigResponseSchema, GetOTLPExporterRequestSchema, GetOTLPExporterResponseSchema, GetResourceAttributesConfigRequestSchema, GetResourceAttributesConfigResponseSchema, ListOTLPExportersRequestSchema, ListOTLPExportersResponseSchema, TestOTLPExporterRequestSchema, TestOTLPExporterResponseSchema, UpdateOTLPExporterRequestSchema, UpdateOTLPExporterResponseSchema, UpdateResourceAttributesConfigRequestSchema, UpdateResourceAttributesConfigResponseSchema } from "./telemetryrouter_pb.mjs";
19
+ import { GenMessage, GenService } from "@bufbuild/protobuf/codegenv2";
20
+ import { Message } from "@bufbuild/protobuf";
21
+ //#region ../tailor-proto/src/tailor/v1/service_pb.d.ts
22
+ /**
23
+ * @generated from message tailor.v1.PingRequest
24
+ */
25
+ declare type PingRequest = Message<"tailor.v1.PingRequest"> & {};
26
+ /**
27
+ * Describes the message tailor.v1.PingRequest.
28
+ * Use `create(PingRequestSchema)` to create a new message.
29
+ */
30
+ declare const PingRequestSchema: GenMessage<PingRequest>;
31
+ /**
32
+ * @generated from message tailor.v1.PingResponse
33
+ */
34
+ declare type PingResponse = Message<"tailor.v1.PingResponse"> & {};
35
+ /**
36
+ * Describes the message tailor.v1.PingResponse.
37
+ * Use `create(PingResponseSchema)` to create a new message.
38
+ */
39
+ declare const PingResponseSchema: GenMessage<PingResponse>;
40
+ /**
41
+ * @generated from service tailor.v1.OperatorService
42
+ */
43
+ declare const OperatorService: GenService<{
44
+ /**
45
+ * Ping does nothing but for checking OperatorService is available.
46
+ *
47
+ * @generated from rpc tailor.v1.OperatorService.Ping
48
+ */
49
+ ping: {
50
+ methodKind: "unary";
51
+ input: typeof PingRequestSchema;
52
+ output: typeof PingResponseSchema;
53
+ };
54
+ /**
55
+ * ListAvailableWorkspaceRegions returns available regions for workspace creation.
56
+ *
57
+ * [Errors]
58
+ * - Unauthenticated: token is missing, expired, or invalid
59
+ *
60
+ * @generated from rpc tailor.v1.OperatorService.ListAvailableWorkspaceRegions
61
+ */
62
+ listAvailableWorkspaceRegions: {
63
+ methodKind: "unary";
64
+ input: typeof ListAvailableWorkspaceRegionsRequestSchema;
65
+ output: typeof ListAvailableWorkspaceRegionsResponseSchema;
66
+ };
67
+ /**
68
+ * CreateWorkspace creates a new workspace.
69
+ *
70
+ * [Errors]
71
+ * - Unauthenticated: token is missing, expired, or invalid
72
+ * - InvalidArgument: request is invalid
73
+ *
74
+ * @generated from rpc tailor.v1.OperatorService.CreateWorkspace
75
+ */
76
+ createWorkspace: {
77
+ methodKind: "unary";
78
+ input: typeof CreateWorkspaceRequestSchema;
79
+ output: typeof CreateWorkspaceResponseSchema;
80
+ };
81
+ /**
82
+ * UpdateWorkspace updates a workspace.
83
+ *
84
+ * [Errors]
85
+ * - Unauthenticated: token is missing, expired, or invalid
86
+ * - InvalidArgument: request is invalid
87
+ * - PermissionDenied: can view workspace but no permission to update
88
+ * - NotFound: workspace does not exist or can not be accessed
89
+ *
90
+ * @generated from rpc tailor.v1.OperatorService.UpdateWorkspace
91
+ */
92
+ updateWorkspace: {
93
+ methodKind: "unary";
94
+ input: typeof UpdateWorkspaceRequestSchema;
95
+ output: typeof UpdateWorkspaceResponseSchema;
96
+ };
97
+ /**
98
+ * DeleteWorkspace deletes a workspace.
99
+ *
100
+ * [Errors]
101
+ * - Unauthenticated: token is missing, expired, or invalid
102
+ * - InvalidArgument: request is invalid
103
+ * - PermissionDenied: can view workspace but no permission to delete
104
+ * - NotFound: workspace does not exist or can not be accessed
105
+ *
106
+ * @generated from rpc tailor.v1.OperatorService.DeleteWorkspace
107
+ */
108
+ deleteWorkspace: {
109
+ methodKind: "unary";
110
+ input: typeof DeleteWorkspaceRequestSchema;
111
+ output: typeof DeleteWorkspaceResponseSchema;
112
+ };
113
+ /**
114
+ * ListWorkspaces returns workspaces that the current platform user has
115
+ * access.
116
+ *
117
+ * [Errors]
118
+ * - Unauthenticated: token is missing, expired, or invalid
119
+ *
120
+ * @generated from rpc tailor.v1.OperatorService.ListWorkspaces
121
+ */
122
+ listWorkspaces: {
123
+ methodKind: "unary";
124
+ input: typeof ListWorkspacesRequestSchema;
125
+ output: typeof ListWorkspacesResponseSchema;
126
+ };
127
+ /**
128
+ * ListOrganizationWorkspaces returns workspaces in an organization.
129
+ *
130
+ * [Errors]
131
+ * - Unauthenticated: token is missing, expired, or invalid
132
+ * - InvalidArgument: request is invalid
133
+ *
134
+ * @generated from rpc tailor.v1.OperatorService.ListOrganizationWorkspaces
135
+ */
136
+ listOrganizationWorkspaces: {
137
+ methodKind: "unary";
138
+ input: typeof ListOrganizationWorkspacesRequestSchema;
139
+ output: typeof ListOrganizationWorkspacesResponseSchema;
140
+ };
141
+ /**
142
+ * RestoreWorkspace restores a workspace.
143
+ *
144
+ * [Errors]
145
+ * - Unauthenticated: token is missing, expired, or invalid
146
+ * - InvalidArgument: request is invalid
147
+ * - PermissionDenied: no permission to restore
148
+ * - NotFound: workspace does not exist or can not be accessed
149
+ *
150
+ * @generated from rpc tailor.v1.OperatorService.RestoreWorkspace
151
+ */
152
+ restoreWorkspace: {
153
+ methodKind: "unary";
154
+ input: typeof RestoreWorkspaceRequestSchema;
155
+ output: typeof RestoreWorkspaceResponseSchema;
156
+ };
157
+ /**
158
+ * GetWorkspace returns a workspace.
159
+ *
160
+ * [Errors]
161
+ * - Unauthenticated: token is missing, expired, or invalid
162
+ * - InvalidArgument: request is invalid
163
+ * - NotFound: workspace does not exist or can not be accessed
164
+ *
165
+ * @generated from rpc tailor.v1.OperatorService.GetWorkspace
166
+ */
167
+ getWorkspace: {
168
+ methodKind: "unary";
169
+ input: typeof GetWorkspaceRequestSchema;
170
+ output: typeof GetWorkspaceResponseSchema;
171
+ };
172
+ /**
173
+ * ListWorkspacePlatformUsers lists platform users to the workspace.
174
+ *
175
+ * [Errors]
176
+ * - Unauthenticated: token is missing, expired, or invalid
177
+ * - InvalidArgument: request is invalid
178
+ * - NotFound: workspace does not exist or can not be accessed
179
+ *
180
+ * @generated from rpc tailor.v1.OperatorService.ListWorkspacePlatformUsers
181
+ */
182
+ listWorkspacePlatformUsers: {
183
+ methodKind: "unary";
184
+ input: typeof ListWorkspacePlatformUsersRequestSchema;
185
+ output: typeof ListWorkspacePlatformUsersResponseSchema;
186
+ };
187
+ /**
188
+ * ListAvailableWorkspacePlatformUserRoles lists available roles.
189
+ *
190
+ * @generated from rpc tailor.v1.OperatorService.ListAvailableWorkspacePlatformUserRoles
191
+ */
192
+ listAvailableWorkspacePlatformUserRoles: {
193
+ methodKind: "unary";
194
+ input: typeof ListAvailableWorkspacePlatformUserRolesRequestSchema;
195
+ output: typeof ListAvailableWorkspacePlatformUserRolesResponseSchema;
196
+ };
197
+ /**
198
+ * InviteWorkspacePlatformUser invites a platform user to the workspace.
199
+ *
200
+ * [Errors]
201
+ * - Unauthenticated: token is missing, expired, or invalid
202
+ * - InvalidArgument: request is invalid
203
+ * - PermissionDenied: can view workspace but no permission to invite a
204
+ * - NotFound: workspace does not exist or can not be accessed
205
+ *
206
+ * @generated from rpc tailor.v1.OperatorService.InviteWorkspacePlatformUser
207
+ */
208
+ inviteWorkspacePlatformUser: {
209
+ methodKind: "unary";
210
+ input: typeof InviteWorkspacePlatformUserRequestSchema;
211
+ output: typeof InviteWorkspacePlatformUserResponseSchema;
212
+ };
213
+ /**
214
+ * RemoveWorkspacePlatformUser removes a platform user from the workspace.
215
+ *
216
+ * [Errors]
217
+ * - Unauthenticated: token is missing, expired, or invalid
218
+ * - InvalidArgument: request is invalid
219
+ * - PermissionDenied: can view workspace but no permission to remove
220
+ * - NotFound: workspace does not exist or can not be accessed, or user does
221
+ * not exist in the workspace
222
+ *
223
+ * @generated from rpc tailor.v1.OperatorService.RemoveWorkspacePlatformUser
224
+ */
225
+ removeWorkspacePlatformUser: {
226
+ methodKind: "unary";
227
+ input: typeof RemoveWorkspacePlatformUserRequestSchema;
228
+ output: typeof RemoveWorkspacePlatformUserResponseSchema;
229
+ };
230
+ /**
231
+ * UpdateWorkspacePlatformUser update workspace platform user.
232
+ *
233
+ * [Errors]
234
+ * - Unauthenticated: token is missing, expired, or invalid
235
+ * - InvalidArgument: request is invalid
236
+ * - PermissionDenied: can view workspace but no permission to update
237
+ * - NotFound: workspace does not exist or can not be accessed
238
+ *
239
+ * @generated from rpc tailor.v1.OperatorService.UpdateWorkspacePlatformUser
240
+ */
241
+ updateWorkspacePlatformUser: {
242
+ methodKind: "unary";
243
+ input: typeof UpdateWorkspacePlatformUserRequestSchema;
244
+ output: typeof UpdateWorkspacePlatformUserResponseSchema;
245
+ };
246
+ /**
247
+ * GetWorkspacePlatformUser returns a workspace platform user.
248
+ *
249
+ * [Errors]
250
+ * - Unauthenticated: token is missing, expired, or invalid
251
+ * - InvalidArgument: request is invalid
252
+ * - NotFound: workspace does not exist or can not be accessed
253
+ *
254
+ * @generated from rpc tailor.v1.OperatorService.GetWorkspacePlatformUser
255
+ */
256
+ getWorkspacePlatformUser: {
257
+ methodKind: "unary";
258
+ input: typeof GetWorkspacePlatformUserRequestSchema;
259
+ output: typeof GetWorkspacePlatformUserResponseSchema;
260
+ };
261
+ /**
262
+ * GetWorkspaceRole returns a workspace role of the platform user.
263
+ *
264
+ * [Errors]
265
+ * - Unauthenticated: token is missing, expired, or invalid
266
+ * - InvalidArgument: request is invalid
267
+ * - NotFound: workspace does not exist or can not be accessed
268
+ *
269
+ * @generated from rpc tailor.v1.OperatorService.GetWorkspaceRole
270
+ */
271
+ getWorkspaceRole: {
272
+ methodKind: "unary";
273
+ input: typeof GetWorkspaceRoleRequestSchema;
274
+ output: typeof GetWorkspaceRoleResponseSchema;
275
+ };
276
+ /**
277
+ * UpdateOrganization updates an organization.
278
+ *
279
+ * [Errors]
280
+ * - Unauthenticated: token is missing, expired, or invalid
281
+ * - InvalidArgument: request is invalid
282
+ * - PermissionDenied: can view organization but no permission to update
283
+ * - NotFound: organization does not exist or can not be accessed
284
+ *
285
+ * @generated from rpc tailor.v1.OperatorService.UpdateOrganization
286
+ */
287
+ updateOrganization: {
288
+ methodKind: "unary";
289
+ input: typeof UpdateOrganizationRequestSchema;
290
+ output: typeof UpdateOrganizationResponseSchema;
291
+ };
292
+ /**
293
+ * GetOrganization returns an organization.
294
+ *
295
+ * [Errors]
296
+ * - Unauthenticated: token is missing, expired, or invalid
297
+ * - InvalidArgument: request is invalid
298
+ * - NotFound: organization does not exist or can not be accessed
299
+ *
300
+ * @generated from rpc tailor.v1.OperatorService.GetOrganization
301
+ */
302
+ getOrganization: {
303
+ methodKind: "unary";
304
+ input: typeof GetOrganizationRequestSchema;
305
+ output: typeof GetOrganizationResponseSchema;
306
+ };
307
+ /**
308
+ * ListOrganizations returns organizations that the current platform user has
309
+ * access.
310
+ *
311
+ * [Errors]
312
+ * - Unauthenticated: token is missing, expired, or invalid
313
+ *
314
+ * @generated from rpc tailor.v1.OperatorService.ListOrganizations
315
+ */
316
+ listOrganizations: {
317
+ methodKind: "unary";
318
+ input: typeof ListOrganizationsRequestSchema;
319
+ output: typeof ListOrganizationsResponseSchema;
320
+ };
321
+ /**
322
+ * ListUserOrganizations returns organizations and guest organizations that a current platform user has access.
323
+ *
324
+ *
325
+ * @generated from rpc tailor.v1.OperatorService.ListUserOrganizations
326
+ */
327
+ listUserOrganizations: {
328
+ methodKind: "unary";
329
+ input: typeof ListUserOrganizationsRequestSchema;
330
+ output: typeof ListUserOrganizationsResponseSchema;
331
+ };
332
+ /**
333
+ * GrantOrganizationAccess grants access to an organization.
334
+ *
335
+ * [Errors]
336
+ * - Unauthenticated: token is missing, expired, or invalid
337
+ * - InvalidArgument: request is invalid
338
+ * - PermissionDenied: can view organization but no permission to grant access
339
+ * - NotFound: organization does not exist or can not be accessed
340
+ *
341
+ * @generated from rpc tailor.v1.OperatorService.GrantOrganizationAccess
342
+ */
343
+ grantOrganizationAccess: {
344
+ methodKind: "unary";
345
+ input: typeof GrantOrganizationAccessRequestSchema;
346
+ output: typeof GrantOrganizationAccessResponseSchema;
347
+ };
348
+ /**
349
+ * UpdateOrganizationAccess updates access to an organization.
350
+ *
351
+ * [Errors]
352
+ * - Unauthenticated: token is missing, expired, or invalid
353
+ * - InvalidArgument: request is invalid
354
+ * - PermissionDenied: can view organization but no permission to update access
355
+ * - NotFound: organization does not exist or can not be accessed
356
+ *
357
+ * @generated from rpc tailor.v1.OperatorService.UpdateOrganizationAccess
358
+ */
359
+ updateOrganizationAccess: {
360
+ methodKind: "unary";
361
+ input: typeof UpdateOrganizationAccessRequestSchema;
362
+ output: typeof UpdateOrganizationAccessResponseSchema;
363
+ };
364
+ /**
365
+ * RevokeOrganizationAccess revokes access to an organization.
366
+ *
367
+ * [Errors]
368
+ * - Unauthenticated: token is missing, expired, or invalid
369
+ * - InvalidArgument: request is invalid
370
+ * - PermissionDenied: can view organization but no permission to revoke access
371
+ * - NotFound: organization does not exist or can not be accessed
372
+ *
373
+ * @generated from rpc tailor.v1.OperatorService.RevokeOrganizationAccess
374
+ */
375
+ revokeOrganizationAccess: {
376
+ methodKind: "unary";
377
+ input: typeof RevokeOrganizationAccessRequestSchema;
378
+ output: typeof RevokeOrganizationAccessResponseSchema;
379
+ };
380
+ /**
381
+ * ListOrganizationAccesses returns list of access to an organization.
382
+ *
383
+ * [Errors]
384
+ * - Unauthenticated: token is missing, expired, or invalid
385
+ * - InvalidArgument: request is invalid
386
+ * - NotFound: organization does not exist or can not be accessed
387
+ *
388
+ * @generated from rpc tailor.v1.OperatorService.ListOrganizationAccesses
389
+ */
390
+ listOrganizationAccesses: {
391
+ methodKind: "unary";
392
+ input: typeof ListOrganizationAccessesRequestSchema;
393
+ output: typeof ListOrganizationAccessesResponseSchema;
394
+ };
395
+ /**
396
+ * GetOrganizationAccess returns access to an organization.
397
+ *
398
+ * [Errors]
399
+ * - Unauthenticated: token is missing, expired, or invalid
400
+ * - InvalidArgument: request is invalid
401
+ * - NotFound: organization does not exist or can not be accessed
402
+ *
403
+ * @generated from rpc tailor.v1.OperatorService.GetOrganizationAccess
404
+ */
405
+ getOrganizationAccess: {
406
+ methodKind: "unary";
407
+ input: typeof GetOrganizationAccessRequestSchema;
408
+ output: typeof GetOrganizationAccessResponseSchema;
409
+ };
410
+ /**
411
+ * CreateOrganizationFolder creates a folder in an organization.
412
+ *
413
+ * [Errors]
414
+ * - Unauthenticated: token is missing, expired, or invalid
415
+ * - InvalidArgument: request is invalid
416
+ * - PermissionDenied: can view organization but no permission to create
417
+ * - NotFound: organization does not exist or can not be accessed
418
+ *
419
+ * @generated from rpc tailor.v1.OperatorService.CreateOrganizationFolder
420
+ */
421
+ createOrganizationFolder: {
422
+ methodKind: "unary";
423
+ input: typeof CreateOrganizationFolderRequestSchema;
424
+ output: typeof CreateOrganizationFolderResponseSchema;
425
+ };
426
+ /**
427
+ * UpdateOrganizationFolder updates a folder in an organization.
428
+ *
429
+ * [Errors]
430
+ * - Unauthenticated: token is missing, expired, or invalid
431
+ * - InvalidArgument: request is invalid
432
+ * - PermissionDenied: can view organization but no permission to update
433
+ * - NotFound: organization does not exist or can not be accessed
434
+ *
435
+ * @generated from rpc tailor.v1.OperatorService.UpdateOrganizationFolder
436
+ */
437
+ updateOrganizationFolder: {
438
+ methodKind: "unary";
439
+ input: typeof UpdateOrganizationFolderRequestSchema;
440
+ output: typeof UpdateOrganizationFolderResponseSchema;
441
+ };
442
+ /**
443
+ * DeleteOrganizationFolder deletes a folder in an organization.
444
+ *
445
+ * [Errors]
446
+ * - Unauthenticated: token is missing, expired, or invalid
447
+ * - InvalidArgument: request is invalid
448
+ * - PermissionDenied: can view organization but no permission to delete
449
+ * - NotFound: organization does not exist or can not be accessed
450
+ *
451
+ * @generated from rpc tailor.v1.OperatorService.DeleteOrganizationFolder
452
+ */
453
+ deleteOrganizationFolder: {
454
+ methodKind: "unary";
455
+ input: typeof DeleteOrganizationFolderRequestSchema;
456
+ output: typeof DeleteOrganizationFolderResponseSchema;
457
+ };
458
+ /**
459
+ * GetOrganizationFolder returns a folder in an organization.
460
+ *
461
+ * [Errors]
462
+ * - Unauthenticated: token is missing, expired, or invalid
463
+ * - InvalidArgument: request is invalid
464
+ * - NotFound: organization does not exist or can not be accessed
465
+ *
466
+ * @generated from rpc tailor.v1.OperatorService.GetOrganizationFolder
467
+ */
468
+ getOrganizationFolder: {
469
+ methodKind: "unary";
470
+ input: typeof GetOrganizationFolderRequestSchema;
471
+ output: typeof GetOrganizationFolderResponseSchema;
472
+ };
473
+ /**
474
+ * ListOrganizationFolders returns folders in an organization.
475
+ *
476
+ * [Errors]
477
+ * - Unauthenticated: token is missing, expired, or invalid
478
+ * - InvalidArgument: request is invalid
479
+ *
480
+ * @generated from rpc tailor.v1.OperatorService.ListOrganizationFolders
481
+ */
482
+ listOrganizationFolders: {
483
+ methodKind: "unary";
484
+ input: typeof ListOrganizationFoldersRequestSchema;
485
+ output: typeof ListOrganizationFoldersResponseSchema;
486
+ };
487
+ /**
488
+ * GrantOrganizationFolderAccess grants access to a folder in an organization.
489
+ *
490
+ * [Errors]
491
+ * - Unauthenticated: token is missing, expired, or invalid
492
+ * - InvalidArgument: request is invalid
493
+ * - PermissionDenied: can view organization but no permission to grant access
494
+ * - NotFound: organization does not exist or can not be accessed
495
+ *
496
+ * @generated from rpc tailor.v1.OperatorService.GrantOrganizationFolderAccess
497
+ */
498
+ grantOrganizationFolderAccess: {
499
+ methodKind: "unary";
500
+ input: typeof GrantOrganizationFolderAccessRequestSchema;
501
+ output: typeof GrantOrganizationFolderAccessResponseSchema;
502
+ };
503
+ /**
504
+ * UpdateOrganizationFolderAccess updates access to a folder in an organization.
505
+ *
506
+ * [Errors]
507
+ * - Unauthenticated: token is missing, expired, or invalid
508
+ * - InvalidArgument: request is invalid
509
+ * - PermissionDenied: can view organization but no permission to update access
510
+ * - NotFound: organization does not exist or can not be accessed
511
+ *
512
+ * @generated from rpc tailor.v1.OperatorService.UpdateOrganizationFolderAccess
513
+ */
514
+ updateOrganizationFolderAccess: {
515
+ methodKind: "unary";
516
+ input: typeof UpdateOrganizationFolderAccessRequestSchema;
517
+ output: typeof UpdateOrganizationFolderAccessResponseSchema;
518
+ };
519
+ /**
520
+ * RevokeOrganizationFolderAccess revokes access to a folder in an organization.
521
+ *
522
+ * [Errors]
523
+ * - Unauthenticated: token is missing, expired, or invalid
524
+ * - InvalidArgument: request is invalid
525
+ * - PermissionDenied: can view organization but no permission to revoke access
526
+ * - NotFound: organization does not exist or can not be accessed
527
+ *
528
+ * @generated from rpc tailor.v1.OperatorService.RevokeOrganizationFolderAccess
529
+ */
530
+ revokeOrganizationFolderAccess: {
531
+ methodKind: "unary";
532
+ input: typeof RevokeOrganizationFolderAccessRequestSchema;
533
+ output: typeof RevokeOrganizationFolderAccessResponseSchema;
534
+ };
535
+ /**
536
+ * ListOrganizationFolderAccesses returns list of access to a folder in an organization.
537
+ *
538
+ * [Errors]
539
+ * - Unauthenticated: token is missing, expired, or invalid
540
+ * - InvalidArgument: request is invalid
541
+ * - NotFound: organization does not exist or can not be accessed
542
+ *
543
+ * @generated from rpc tailor.v1.OperatorService.ListOrganizationFolderAccesses
544
+ */
545
+ listOrganizationFolderAccesses: {
546
+ methodKind: "unary";
547
+ input: typeof ListOrganizationFolderAccessesRequestSchema;
548
+ output: typeof ListOrganizationFolderAccessesResponseSchema;
549
+ };
550
+ /**
551
+ * GetOrganizationFolderAccess returns access to a folder in an organization.
552
+ *
553
+ * [Errors]
554
+ * - Unauthenticated: token is missing, expired, or invalid
555
+ * - InvalidArgument: request is invalid
556
+ * - NotFound: organization does not exist or can not be accessed
557
+ *
558
+ * @generated from rpc tailor.v1.OperatorService.GetOrganizationFolderAccess
559
+ */
560
+ getOrganizationFolderAccess: {
561
+ methodKind: "unary";
562
+ input: typeof GetOrganizationFolderAccessRequestSchema;
563
+ output: typeof GetOrganizationFolderAccessResponseSchema;
564
+ };
565
+ /**
566
+ * UpsertOrganizationIPRestriction creates or replaces the IP allowlist
567
+ * applied to all inbound dataplane traffic for an organization.
568
+ *
569
+ * [Errors]
570
+ * - Unauthenticated: token is missing, expired, or invalid
571
+ * - InvalidArgument: request is invalid (malformed CIDR, private /
572
+ * loopback / multicast address, etc.)
573
+ * - PermissionDenied: caller does not have permission on the organization
574
+ * - NotFound: organization does not exist or can not be accessed
575
+ *
576
+ * @generated from rpc tailor.v1.OperatorService.UpsertOrganizationIPRestriction
577
+ */
578
+ upsertOrganizationIPRestriction: {
579
+ methodKind: "unary";
580
+ input: typeof UpsertOrganizationIPRestrictionRequestSchema;
581
+ output: typeof UpsertOrganizationIPRestrictionResponseSchema;
582
+ };
583
+ /**
584
+ * GetOrganizationIPRestriction returns the current IP allowlist for an
585
+ * organization, or NotFound if no rule is configured.
586
+ *
587
+ * [Errors]
588
+ * - Unauthenticated: token is missing, expired, or invalid
589
+ * - InvalidArgument: request is invalid
590
+ * - PermissionDenied: caller does not have permission on the organization
591
+ * - NotFound: no IP restriction is configured for the organization
592
+ *
593
+ * @generated from rpc tailor.v1.OperatorService.GetOrganizationIPRestriction
594
+ */
595
+ getOrganizationIPRestriction: {
596
+ methodKind: "unary";
597
+ input: typeof GetOrganizationIPRestrictionRequestSchema;
598
+ output: typeof GetOrganizationIPRestrictionResponseSchema;
599
+ };
600
+ /**
601
+ * DeleteOrganizationIPRestriction removes the IP allowlist for an
602
+ * organization. NotFound is returned if no rule is configured.
603
+ *
604
+ * [Errors]
605
+ * - Unauthenticated: token is missing, expired, or invalid
606
+ * - InvalidArgument: request is invalid
607
+ * - PermissionDenied: caller does not have permission on the organization
608
+ * - NotFound: no IP restriction is configured for the organization
609
+ *
610
+ * @generated from rpc tailor.v1.OperatorService.DeleteOrganizationIPRestriction
611
+ */
612
+ deleteOrganizationIPRestriction: {
613
+ methodKind: "unary";
614
+ input: typeof DeleteOrganizationIPRestrictionRequestSchema;
615
+ output: typeof DeleteOrganizationIPRestrictionResponseSchema;
616
+ };
617
+ /**
618
+ * UpsertOrganizationFolderIPRestriction creates or replaces the IP
619
+ * allowlist applied to all inbound dataplane traffic for a folder.
620
+ *
621
+ * [Errors]
622
+ * - Unauthenticated: token is missing, expired, or invalid
623
+ * - InvalidArgument: request is invalid
624
+ * - PermissionDenied: caller does not have permission on the folder
625
+ * - NotFound: folder does not exist or can not be accessed
626
+ *
627
+ * @generated from rpc tailor.v1.OperatorService.UpsertOrganizationFolderIPRestriction
628
+ */
629
+ upsertOrganizationFolderIPRestriction: {
630
+ methodKind: "unary";
631
+ input: typeof UpsertOrganizationFolderIPRestrictionRequestSchema;
632
+ output: typeof UpsertOrganizationFolderIPRestrictionResponseSchema;
633
+ };
634
+ /**
635
+ * GetOrganizationFolderIPRestriction returns the current IP allowlist
636
+ * for a folder, or NotFound if no rule is configured.
637
+ *
638
+ * [Errors]
639
+ * - Unauthenticated: token is missing, expired, or invalid
640
+ * - InvalidArgument: request is invalid
641
+ * - PermissionDenied: caller does not have permission on the folder
642
+ * - NotFound: no IP restriction is configured for the folder
643
+ *
644
+ * @generated from rpc tailor.v1.OperatorService.GetOrganizationFolderIPRestriction
645
+ */
646
+ getOrganizationFolderIPRestriction: {
647
+ methodKind: "unary";
648
+ input: typeof GetOrganizationFolderIPRestrictionRequestSchema;
649
+ output: typeof GetOrganizationFolderIPRestrictionResponseSchema;
650
+ };
651
+ /**
652
+ * DeleteOrganizationFolderIPRestriction removes the IP allowlist for a
653
+ * folder. NotFound is returned if no rule is configured.
654
+ *
655
+ * [Errors]
656
+ * - Unauthenticated: token is missing, expired, or invalid
657
+ * - InvalidArgument: request is invalid
658
+ * - PermissionDenied: caller does not have permission on the folder
659
+ * - NotFound: no IP restriction is configured for the folder
660
+ *
661
+ * @generated from rpc tailor.v1.OperatorService.DeleteOrganizationFolderIPRestriction
662
+ */
663
+ deleteOrganizationFolderIPRestriction: {
664
+ methodKind: "unary";
665
+ input: typeof DeleteOrganizationFolderIPRestrictionRequestSchema;
666
+ output: typeof DeleteOrganizationFolderIPRestrictionResponseSchema;
667
+ };
668
+ /**
669
+ * CreateOrganizationTeam creates a team in an organization.
670
+ *
671
+ * [Errors]
672
+ * - Unauthenticated: token is missing, expired, or invalid
673
+ * - InvalidArgument: request is invalid
674
+ * - PermissionDenied: can view organization but no permission to create
675
+ * - NotFound: organization does not exist or can not be accessed
676
+ *
677
+ * @generated from rpc tailor.v1.OperatorService.CreateOrganizationTeam
678
+ */
679
+ createOrganizationTeam: {
680
+ methodKind: "unary";
681
+ input: typeof CreateOrganizationTeamRequestSchema;
682
+ output: typeof CreateOrganizationTeamResponseSchema;
683
+ };
684
+ /**
685
+ * UpdateOrganizationTeam updates a team in an organization.
686
+ *
687
+ * [Errors]
688
+ * - Unauthenticated: token is missing, expired, or invalid
689
+ * - InvalidArgument: request is invalid
690
+ * - PermissionDenied: can view organization but no permission to update
691
+ * - NotFound: organization does not exist or can not be accessed
692
+ *
693
+ * @generated from rpc tailor.v1.OperatorService.UpdateOrganizationTeam
694
+ */
695
+ updateOrganizationTeam: {
696
+ methodKind: "unary";
697
+ input: typeof UpdateOrganizationTeamRequestSchema;
698
+ output: typeof UpdateOrganizationTeamResponseSchema;
699
+ };
700
+ /**
701
+ * DeleteOrganizationTeam deletes a team in an organization.
702
+ *
703
+ * [Errors]
704
+ * - Unauthenticated: token is missing, expired, or invalid
705
+ * - InvalidArgument: request is invalid
706
+ * - PermissionDenied: can view organization but no permission to delete
707
+ * - NotFound: organization does not exist or can not be accessed
708
+ *
709
+ * @generated from rpc tailor.v1.OperatorService.DeleteOrganizationTeam
710
+ */
711
+ deleteOrganizationTeam: {
712
+ methodKind: "unary";
713
+ input: typeof DeleteOrganizationTeamRequestSchema;
714
+ output: typeof DeleteOrganizationTeamResponseSchema;
715
+ };
716
+ /**
717
+ * GetOrganizationTeam returns a team in an organization.
718
+ *
719
+ * [Errors]
720
+ * - Unauthenticated: token is missing, expired, or invalid
721
+ * - InvalidArgument: request is invalid
722
+ * - NotFound: organization does not exist or can not be accessed
723
+ *
724
+ * @generated from rpc tailor.v1.OperatorService.GetOrganizationTeam
725
+ */
726
+ getOrganizationTeam: {
727
+ methodKind: "unary";
728
+ input: typeof GetOrganizationTeamRequestSchema;
729
+ output: typeof GetOrganizationTeamResponseSchema;
730
+ };
731
+ /**
732
+ * ListOrganizationTeams returns teams in an organization.
733
+ *
734
+ * [Errors]
735
+ * - Unauthenticated: token is missing, expired, or invalid
736
+ * - InvalidArgument: request is invalid
737
+ * - NotFound: organization does not exist or can not be accessed
738
+ *
739
+ * @generated from rpc tailor.v1.OperatorService.ListOrganizationTeams
740
+ */
741
+ listOrganizationTeams: {
742
+ methodKind: "unary";
743
+ input: typeof ListOrganizationTeamsRequestSchema;
744
+ output: typeof ListOrganizationTeamsResponseSchema;
745
+ };
746
+ /**
747
+ * AddOrganizationTeamMember adds a member to a team in an organization.
748
+ *
749
+ * [Errors]
750
+ * - Unauthenticated: token is missing, expired, or invalid
751
+ * - InvalidArgument: request is invalid
752
+ * - PermissionDenied: can view organization but no permission to add
753
+ * - NotFound: organization does not exist or can not be accessed
754
+ *
755
+ * @generated from rpc tailor.v1.OperatorService.AddOrganizationTeamMember
756
+ */
757
+ addOrganizationTeamMember: {
758
+ methodKind: "unary";
759
+ input: typeof AddOrganizationTeamMemberRequestSchema;
760
+ output: typeof AddOrganizationTeamMemberResponseSchema;
761
+ };
762
+ /**
763
+ * UpdateOrganizationTeamMember updates a member in a team in an organization.
764
+ *
765
+ * [Errors]
766
+ * - Unauthenticated: token is missing, expired, or invalid
767
+ * - InvalidArgument: request is invalid
768
+ * - PermissionDenied: can view organization but no permission to update
769
+ * - NotFound: organization does not exist or can not be accessed
770
+ *
771
+ * @generated from rpc tailor.v1.OperatorService.UpdateOrganizationTeamMember
772
+ */
773
+ updateOrganizationTeamMember: {
774
+ methodKind: "unary";
775
+ input: typeof UpdateOrganizationTeamMemberRequestSchema;
776
+ output: typeof UpdateOrganizationTeamMemberResponseSchema;
777
+ };
778
+ /**
779
+ * RemoveOrganizationTeamMember removes a member from a team in an organization.
780
+ *
781
+ * [Errors]
782
+ * - Unauthenticated: token is missing, expired, or invalid
783
+ * - InvalidArgument: request is invalid
784
+ * - PermissionDenied: can view organization but no permission to remove
785
+ * - NotFound: organization does not exist or can not be accessed
786
+ *
787
+ * @generated from rpc tailor.v1.OperatorService.RemoveOrganizationTeamMember
788
+ */
789
+ removeOrganizationTeamMember: {
790
+ methodKind: "unary";
791
+ input: typeof RemoveOrganizationTeamMemberRequestSchema;
792
+ output: typeof RemoveOrganizationTeamMemberResponseSchema;
793
+ };
794
+ /**
795
+ * ListOrganizationTeamMembers lists members in a team in an organization.
796
+ *
797
+ * [Errors]
798
+ * - Unauthenticated: token is missing, expired, or invalid
799
+ * - InvalidArgument: request is invalid
800
+ * - NotFound: organization does not exist or can not be accessed
801
+ *
802
+ * @generated from rpc tailor.v1.OperatorService.ListOrganizationTeamMembers
803
+ */
804
+ listOrganizationTeamMembers: {
805
+ methodKind: "unary";
806
+ input: typeof ListOrganizationTeamMembersRequestSchema;
807
+ output: typeof ListOrganizationTeamMembersResponseSchema;
808
+ };
809
+ /**
810
+ * GetOrganizationTeamMember returns a member in a team in an organization.
811
+ *
812
+ * [Errors]
813
+ * - Unauthenticated: token is missing, expired, or invalid
814
+ * - InvalidArgument: request is invalid
815
+ * - NotFound: organization does not exist or can not be accessed
816
+ *
817
+ * @generated from rpc tailor.v1.OperatorService.GetOrganizationTeamMember
818
+ */
819
+ getOrganizationTeamMember: {
820
+ methodKind: "unary";
821
+ input: typeof GetOrganizationTeamMemberRequestSchema;
822
+ output: typeof GetOrganizationTeamMemberResponseSchema;
823
+ };
824
+ /**
825
+ * GetPlatformAccountPlan returns the platform account plan.
826
+ *
827
+ * [Errors]
828
+ * - Unauthenticated: token is missing, expired, or invalid
829
+ * - InvalidArgument: request is invalid
830
+ *
831
+ * @generated from rpc tailor.v1.OperatorService.GetPlatformAccountPlan
832
+ */
833
+ getPlatformAccountPlan: {
834
+ methodKind: "unary";
835
+ input: typeof GetPlatformAccountPlanRequestSchema;
836
+ output: typeof GetPlatformAccountPlanResponseSchema;
837
+ };
838
+ /**
839
+ * CreateApplication creates a new application in a given workspace.
840
+ *
841
+ * [Errors]
842
+ * - Unauthenticated: token is missing, expired, or invalid
843
+ * - PermissionDenied: can view workspace but no permission to remove
844
+ * - InvalidArgument: request is invalid
845
+ *
846
+ * @generated from rpc tailor.v1.OperatorService.CreateApplication
847
+ */
848
+ createApplication: {
849
+ methodKind: "unary";
850
+ input: typeof CreateApplicationRequestSchema;
851
+ output: typeof CreateApplicationResponseSchema;
852
+ };
853
+ /**
854
+ * UpdateApplication updates an application.
855
+ *
856
+ * [Errors]
857
+ * - Unauthenticated: token is missing, expired, or invalid
858
+ * - InvalidArgument: request is invalid
859
+ * - PermissionDenied: can view application but no permission to remove
860
+ * - NotFound: application does not exist or can not be accessed
861
+ *
862
+ * @generated from rpc tailor.v1.OperatorService.UpdateApplication
863
+ */
864
+ updateApplication: {
865
+ methodKind: "unary";
866
+ input: typeof UpdateApplicationRequestSchema;
867
+ output: typeof UpdateApplicationResponseSchema;
868
+ };
869
+ /**
870
+ * DeleteApplication deletes an application.
871
+ *
872
+ * [Errors]
873
+ * - Unauthenticated: token is missing, expired, or invalid
874
+ * - InvalidArgument: request is invalid
875
+ * - PermissionDenied: can view application but no permission to remove
876
+ * - NotFound: application does not exist or can not be accessed
877
+ *
878
+ * @generated from rpc tailor.v1.OperatorService.DeleteApplication
879
+ */
880
+ deleteApplication: {
881
+ methodKind: "unary";
882
+ input: typeof DeleteApplicationRequestSchema;
883
+ output: typeof DeleteApplicationResponseSchema;
884
+ };
885
+ /**
886
+ * ListApplications returns applications in a given workspace.
887
+ *
888
+ * [Errors]
889
+ * - Unauthenticated: token is missing, expired, or invalid
890
+ *
891
+ * @generated from rpc tailor.v1.OperatorService.ListApplications
892
+ */
893
+ listApplications: {
894
+ methodKind: "unary";
895
+ input: typeof ListApplicationsRequestSchema;
896
+ output: typeof ListApplicationsResponseSchema;
897
+ };
898
+ /**
899
+ * GetApplication returns a application.
900
+ *
901
+ * [Errors]
902
+ * - Unauthenticated: token is missing, expired, or invalid
903
+ * - InvalidArgument: request is invalid
904
+ * - NotFound: application does not exist or can not be accessed
905
+ *
906
+ * @generated from rpc tailor.v1.OperatorService.GetApplication
907
+ */
908
+ getApplication: {
909
+ methodKind: "unary";
910
+ input: typeof GetApplicationRequestSchema;
911
+ output: typeof GetApplicationResponseSchema;
912
+ };
913
+ /**
914
+ * GetApplicationSchemaHealth returns the application's schema health
915
+ *
916
+ * [Errors]
917
+ * - Unauthenticated: token is missing, expired, or invalid
918
+ * - InvalidArgument: request is invalid
919
+ * - NotFound: application does not exist or can not be accessed
920
+ *
921
+ * @generated from rpc tailor.v1.OperatorService.GetApplicationSchemaHealth
922
+ */
923
+ getApplicationSchemaHealth: {
924
+ methodKind: "unary";
925
+ input: typeof GetApplicationSchemaHealthRequestSchema;
926
+ output: typeof GetApplicationSchemaHealthResponseSchema;
927
+ };
928
+ /**
929
+ * CreateAIGateway creates a new AI Gateway in a given workspace.
930
+ *
931
+ * [Errors]
932
+ * - Unauthenticated: token is missing, expired, or invalid
933
+ * - PermissionDenied: can view workspace but no permission to create
934
+ * - InvalidArgument: request is invalid
935
+ * - AlreadyExists: an AI Gateway with the same name already exists
936
+ *
937
+ * @generated from rpc tailor.v1.OperatorService.CreateAIGateway
938
+ */
939
+ createAIGateway: {
940
+ methodKind: "unary";
941
+ input: typeof CreateAIGatewayRequestSchema;
942
+ output: typeof CreateAIGatewayResponseSchema;
943
+ };
944
+ /**
945
+ * UpdateAIGateway updates an AI Gateway. The mutable fields are
946
+ * `auth_namespace`, `cors`, and `disabled`.
947
+ *
948
+ * [Errors]
949
+ * - Unauthenticated: token is missing, expired, or invalid
950
+ * - InvalidArgument: request is invalid
951
+ * - PermissionDenied: can view AI Gateway but no permission to update
952
+ * - NotFound: AI Gateway does not exist or can not be accessed
953
+ *
954
+ * @generated from rpc tailor.v1.OperatorService.UpdateAIGateway
955
+ */
956
+ updateAIGateway: {
957
+ methodKind: "unary";
958
+ input: typeof UpdateAIGatewayRequestSchema;
959
+ output: typeof UpdateAIGatewayResponseSchema;
960
+ };
961
+ /**
962
+ * DeleteAIGateway deletes an AI Gateway.
963
+ *
964
+ * [Errors]
965
+ * - Unauthenticated: token is missing, expired, or invalid
966
+ * - InvalidArgument: request is invalid
967
+ * - PermissionDenied: can view AI Gateway but no permission to delete
968
+ * - NotFound: AI Gateway does not exist or can not be accessed
969
+ *
970
+ * @generated from rpc tailor.v1.OperatorService.DeleteAIGateway
971
+ */
972
+ deleteAIGateway: {
973
+ methodKind: "unary";
974
+ input: typeof DeleteAIGatewayRequestSchema;
975
+ output: typeof DeleteAIGatewayResponseSchema;
976
+ };
977
+ /**
978
+ * GetAIGateway returns an AI Gateway.
979
+ *
980
+ * [Errors]
981
+ * - Unauthenticated: token is missing, expired, or invalid
982
+ * - InvalidArgument: request is invalid
983
+ * - NotFound: AI Gateway does not exist or can not be accessed
984
+ *
985
+ * @generated from rpc tailor.v1.OperatorService.GetAIGateway
986
+ */
987
+ getAIGateway: {
988
+ methodKind: "unary";
989
+ input: typeof GetAIGatewayRequestSchema;
990
+ output: typeof GetAIGatewayResponseSchema;
991
+ };
992
+ /**
993
+ * ListAIGateways returns AI Gateways in a given workspace.
994
+ *
995
+ * [Errors]
996
+ * - Unauthenticated: token is missing, expired, or invalid
997
+ * - InvalidArgument: request is invalid
998
+ * - NotFound: workspace does not exist or can not be accessed
999
+ *
1000
+ * @generated from rpc tailor.v1.OperatorService.ListAIGateways
1001
+ */
1002
+ listAIGateways: {
1003
+ methodKind: "unary";
1004
+ input: typeof ListAIGatewaysRequestSchema;
1005
+ output: typeof ListAIGatewaysResponseSchema;
1006
+ };
1007
+ /**
1008
+ * ComposeTailorDBSDL returns the GraphQL schema of a TailorDB service.
1009
+ *
1010
+ * [Errors]
1011
+ * - Unauthenticated: token is missing, expired, or invalid
1012
+ * - InvalidArgument: request is invalid
1013
+ * - NotFound: application does not exist or can not be accessed
1014
+ *
1015
+ * @generated from rpc tailor.v1.OperatorService.ComposeTailorDBSDL
1016
+ */
1017
+ composeTailorDBSDL: {
1018
+ methodKind: "unary";
1019
+ input: typeof ComposeTailorDBSDLRequestSchema;
1020
+ output: typeof ComposeTailorDBSDLResponseSchema;
1021
+ };
1022
+ /**
1023
+ * CreateTailorDBService creates a new TailorDB service in a given workspace.
1024
+ *
1025
+ * [Errors]
1026
+ * - Unauthenticated: token is missing, expired, or invalid
1027
+ * - InvalidArgument: request is invalid
1028
+ * - AlreadyExists: TailorDB with the namespace already exists
1029
+ * - NotFound: workspace does not exist or can not be accessed
1030
+ *
1031
+ * @generated from rpc tailor.v1.OperatorService.CreateTailorDBService
1032
+ */
1033
+ createTailorDBService: {
1034
+ methodKind: "unary";
1035
+ input: typeof CreateTailorDBServiceRequestSchema;
1036
+ output: typeof CreateTailorDBServiceResponseSchema;
1037
+ };
1038
+ /**
1039
+ * UpdateTailorDBService updates a TailorDB service.
1040
+ *
1041
+ * [Errors]
1042
+ * - Unauthenticated: token is missing, expired, or invalid
1043
+ * - InvalidArgument: request is invalid
1044
+ * - NotFound: TailorDB service does not exist or can not be accessed
1045
+ *
1046
+ * @generated from rpc tailor.v1.OperatorService.UpdateTailorDBService
1047
+ */
1048
+ updateTailorDBService: {
1049
+ methodKind: "unary";
1050
+ input: typeof UpdateTailorDBServiceRequestSchema;
1051
+ output: typeof UpdateTailorDBServiceResponseSchema;
1052
+ };
1053
+ /**
1054
+ * DeleteTailorDBService deletes an TailorDB service.
1055
+ *
1056
+ * [Errors]
1057
+ * - Unauthenticated: token is missing, expired, or invalid
1058
+ * - InvalidArgument: request is invalid
1059
+ * - NotFound: TailorDB service does not exist or can not be accessed
1060
+ *
1061
+ * @generated from rpc tailor.v1.OperatorService.DeleteTailorDBService
1062
+ */
1063
+ deleteTailorDBService: {
1064
+ methodKind: "unary";
1065
+ input: typeof DeleteTailorDBServiceRequestSchema;
1066
+ output: typeof DeleteTailorDBServiceResponseSchema;
1067
+ };
1068
+ /**
1069
+ * GetTailorDBService get a TailorDB service.
1070
+ *
1071
+ * [Errors]
1072
+ * - Unauthenticated: token is missing, expired, or invalid
1073
+ * - InvalidArgument: request is invalid
1074
+ * - NotFound: TailorDB service does not exist or can not be accessed
1075
+ *
1076
+ * @generated from rpc tailor.v1.OperatorService.GetTailorDBService
1077
+ */
1078
+ getTailorDBService: {
1079
+ methodKind: "unary";
1080
+ input: typeof GetTailorDBServiceRequestSchema;
1081
+ output: typeof GetTailorDBServiceResponseSchema;
1082
+ };
1083
+ /**
1084
+ * ListTailorDBServices lists TailorDB services in a given workspace.
1085
+ *
1086
+ * [Errors]
1087
+ * - Unauthenticated: token is missing, expired, or invalid
1088
+ * - InvalidArgument: request is invalid
1089
+ *
1090
+ * @generated from rpc tailor.v1.OperatorService.ListTailorDBServices
1091
+ */
1092
+ listTailorDBServices: {
1093
+ methodKind: "unary";
1094
+ input: typeof ListTailorDBServicesRequestSchema;
1095
+ output: typeof ListTailorDBServicesResponseSchema;
1096
+ };
1097
+ /**
1098
+ * CreateTailorDBType creates a TailorDB type in a given TailorDB service.
1099
+ *
1100
+ * [Errors]
1101
+ * - Unauthenticated: token is missing, expired, or invalid
1102
+ * - InvalidArgument: request is invalid
1103
+ * - NotFound: TailorDB service does not exist or can not be accessed
1104
+ *
1105
+ * @generated from rpc tailor.v1.OperatorService.CreateTailorDBType
1106
+ */
1107
+ createTailorDBType: {
1108
+ methodKind: "unary";
1109
+ input: typeof CreateTailorDBTypeRequestSchema;
1110
+ output: typeof CreateTailorDBTypeResponseSchema;
1111
+ };
1112
+ /**
1113
+ * UpdateTailorDBType updates a TailorDB type in a given TailorDB service.
1114
+ *
1115
+ * [Errors]
1116
+ * - Unauthenticated: token is missing, expired, or invalid
1117
+ * - InvalidArgument: request is invalid
1118
+ * - NotFound: TailorDB type does not exist or can not be accessed
1119
+ *
1120
+ * @generated from rpc tailor.v1.OperatorService.UpdateTailorDBType
1121
+ */
1122
+ updateTailorDBType: {
1123
+ methodKind: "unary";
1124
+ input: typeof UpdateTailorDBTypeRequestSchema;
1125
+ output: typeof UpdateTailorDBTypeResponseSchema;
1126
+ };
1127
+ /**
1128
+ * DeleteTailorDBType deletes a TailorDB type.
1129
+ *
1130
+ * [Errors]
1131
+ * - Unauthenticated: token is missing, expired, or invalid
1132
+ * - InvalidArgument: request is invalid
1133
+ * - NotFound: TailorDB service does not exist or can not be accessed
1134
+ *
1135
+ * @generated from rpc tailor.v1.OperatorService.DeleteTailorDBType
1136
+ */
1137
+ deleteTailorDBType: {
1138
+ methodKind: "unary";
1139
+ input: typeof DeleteTailorDBTypeRequestSchema;
1140
+ output: typeof DeleteTailorDBTypeResponseSchema;
1141
+ };
1142
+ /**
1143
+ * TruncateTailorDBTypes truncates all TailorDB types in a namespace.
1144
+ *
1145
+ * [Errors]
1146
+ * - Unauthenticated: token is missing, expired, or invalid
1147
+ * - InvalidArgument: request is invalid
1148
+ * - NotFound: TailorDB service does not exist or can not be accessed
1149
+ *
1150
+ * @generated from rpc tailor.v1.OperatorService.TruncateTailorDBTypes
1151
+ */
1152
+ truncateTailorDBTypes: {
1153
+ methodKind: "unary";
1154
+ input: typeof TruncateTailorDBTypesRequestSchema;
1155
+ output: typeof TruncateTailorDBTypesResponseSchema;
1156
+ };
1157
+ /**
1158
+ * TruncateTailorDBType truncates a TailorDB type.
1159
+ *
1160
+ * [Errors]
1161
+ * - Unauthenticated: token is missing, expired, or invalid
1162
+ * - InvalidArgument: request is invalid
1163
+ * - NotFound: TailorDB type does not exist or can not be accessed
1164
+ *
1165
+ * @generated from rpc tailor.v1.OperatorService.TruncateTailorDBType
1166
+ */
1167
+ truncateTailorDBType: {
1168
+ methodKind: "unary";
1169
+ input: typeof TruncateTailorDBTypeRequestSchema;
1170
+ output: typeof TruncateTailorDBTypeResponseSchema;
1171
+ };
1172
+ /**
1173
+ * ListTailorDBTypes returns TailorDB types in a given TailorDB service.
1174
+ *
1175
+ * [Errors]
1176
+ * - Unauthenticated: token is missing, expired, or invalid
1177
+ * - InvalidArgument: request is invalid
1178
+ * - NotFound: TailorDB service does not exist or can not be accessed
1179
+ *
1180
+ * @generated from rpc tailor.v1.OperatorService.ListTailorDBTypes
1181
+ */
1182
+ listTailorDBTypes: {
1183
+ methodKind: "unary";
1184
+ input: typeof ListTailorDBTypesRequestSchema;
1185
+ output: typeof ListTailorDBTypesResponseSchema;
1186
+ };
1187
+ /**
1188
+ * GetTailorDBType returns a TailorDB type.
1189
+ *
1190
+ * [Errors]
1191
+ * - Unauthenticated: token is missing, expired, or invalid
1192
+ * - InvalidArgument: request is invalid
1193
+ * - NotFound: TailorDB type does not exist or can not be accessed
1194
+ *
1195
+ * @generated from rpc tailor.v1.OperatorService.GetTailorDBType
1196
+ */
1197
+ getTailorDBType: {
1198
+ methodKind: "unary";
1199
+ input: typeof GetTailorDBTypeRequestSchema;
1200
+ output: typeof GetTailorDBTypeResponseSchema;
1201
+ };
1202
+ /**
1203
+ * CreateTailorDBGQLPermission creates the permission configuration for the type.
1204
+ *
1205
+ * [Errors]
1206
+ * - InvalidArgument: request is invalid
1207
+ * - NotFound: type does not exist
1208
+ *
1209
+ * @generated from rpc tailor.v1.OperatorService.CreateTailorDBGQLPermission
1210
+ */
1211
+ createTailorDBGQLPermission: {
1212
+ methodKind: "unary";
1213
+ input: typeof CreateTailorDBGQLPermissionRequestSchema;
1214
+ output: typeof CreateTailorDBGQLPermissionResponseSchema;
1215
+ };
1216
+ /**
1217
+ * GetTailorDBGQLPermission returns the permission configuration for the type.
1218
+ *
1219
+ * [Errors]
1220
+ * - InvalidArgument: request is invalid
1221
+ * - NotFound: type does not exist
1222
+ *
1223
+ * @generated from rpc tailor.v1.OperatorService.GetTailorDBGQLPermission
1224
+ */
1225
+ getTailorDBGQLPermission: {
1226
+ methodKind: "unary";
1227
+ input: typeof GetTailorDBGQLPermissionRequestSchema;
1228
+ output: typeof GetTailorDBGQLPermissionResponseSchema;
1229
+ };
1230
+ /**
1231
+ * ListTailorDBGQLPermissions lists the permission configurations in a given TailorDB service.
1232
+ *
1233
+ * [Errors]
1234
+ * - InvalidArgument: request is invalid
1235
+ * - NotFound: TailorDB service does not exist or can not be accessed
1236
+ *
1237
+ * @generated from rpc tailor.v1.OperatorService.ListTailorDBGQLPermissions
1238
+ */
1239
+ listTailorDBGQLPermissions: {
1240
+ methodKind: "unary";
1241
+ input: typeof ListTailorDBGQLPermissionsRequestSchema;
1242
+ output: typeof ListTailorDBGQLPermissionsResponseSchema;
1243
+ };
1244
+ /**
1245
+ * UpdateTailorDBGQLPermission updates the permission configuration for the type.
1246
+ *
1247
+ * [Errors]
1248
+ * - InvalidArgument: request is invalid
1249
+ * - NotFound: type does not exist
1250
+ *
1251
+ * @generated from rpc tailor.v1.OperatorService.UpdateTailorDBGQLPermission
1252
+ */
1253
+ updateTailorDBGQLPermission: {
1254
+ methodKind: "unary";
1255
+ input: typeof UpdateTailorDBGQLPermissionRequestSchema;
1256
+ output: typeof UpdateTailorDBGQLPermissionResponseSchema;
1257
+ };
1258
+ /**
1259
+ * DeleteTailorDBGQLPermission deletes the permission configuration for the type.
1260
+ *
1261
+ * [Errors]
1262
+ * - InvalidArgument: request is invalid
1263
+ * - NotFound: type does not exist
1264
+ *
1265
+ * @generated from rpc tailor.v1.OperatorService.DeleteTailorDBGQLPermission
1266
+ */
1267
+ deleteTailorDBGQLPermission: {
1268
+ methodKind: "unary";
1269
+ input: typeof DeleteTailorDBGQLPermissionRequestSchema;
1270
+ output: typeof DeleteTailorDBGQLPermissionResponseSchema;
1271
+ };
1272
+ /**
1273
+ * CreatePipelineService creates a new pipeline service in a given workspace.
1274
+ *
1275
+ * [Errors]
1276
+ * - Unauthenticated: token is missing, expired, or invalid
1277
+ * - InvalidArgument: request is invalid
1278
+ * - AlreadyExists: pipeline with the namespace already exists
1279
+ * - NotFound: workspace does not exist or can not be accessed
1280
+ *
1281
+ * @generated from rpc tailor.v1.OperatorService.CreatePipelineService
1282
+ */
1283
+ createPipelineService: {
1284
+ methodKind: "unary";
1285
+ input: typeof CreatePipelineServiceRequestSchema;
1286
+ output: typeof CreatePipelineServiceResponseSchema;
1287
+ };
1288
+ /**
1289
+ * UpdatePipelineService updates a pipeline service.
1290
+ *
1291
+ * [Errors]
1292
+ * - Unauthenticated: token is missing, expired, or invalid
1293
+ * - InvalidArgument: request is invalid
1294
+ * - NotFound: pipeline service does not exist or can not be accessed
1295
+ *
1296
+ * @generated from rpc tailor.v1.OperatorService.UpdatePipelineService
1297
+ */
1298
+ updatePipelineService: {
1299
+ methodKind: "unary";
1300
+ input: typeof UpdatePipelineServiceRequestSchema;
1301
+ output: typeof UpdatePipelineServiceResponseSchema;
1302
+ };
1303
+ /**
1304
+ * DeletePipelineService deletes a pipeline service.
1305
+ *
1306
+ * [Errors]
1307
+ * - Unauthenticated: token is missing, expired, or invalid
1308
+ * - InvalidArgument: request is invalid
1309
+ * - NotFound: pipeline service does not exist or can not be accessed
1310
+ *
1311
+ * @generated from rpc tailor.v1.OperatorService.DeletePipelineService
1312
+ */
1313
+ deletePipelineService: {
1314
+ methodKind: "unary";
1315
+ input: typeof DeletePipelineServiceRequestSchema;
1316
+ output: typeof DeletePipelineServiceResponseSchema;
1317
+ };
1318
+ /**
1319
+ * GetPipelineService gets a pipeline service.
1320
+ *
1321
+ * [Errors]
1322
+ * - Unauthenticated: token is missing, expired, or invalid
1323
+ * - InvalidArgument: request is invalid
1324
+ * - NotFound: pipeline service does not exist or can not be accessed
1325
+ *
1326
+ * @generated from rpc tailor.v1.OperatorService.GetPipelineService
1327
+ */
1328
+ getPipelineService: {
1329
+ methodKind: "unary";
1330
+ input: typeof GetPipelineServiceRequestSchema;
1331
+ output: typeof GetPipelineServiceResponseSchema;
1332
+ };
1333
+ /**
1334
+ * ListPipelineServices lists pipeline services in a given workspace.
1335
+ *
1336
+ * [Errors]
1337
+ * - Unauthenticated: token is missing, expired, or invalid
1338
+ * - InvalidArgument: request is invalid
1339
+ *
1340
+ * @generated from rpc tailor.v1.OperatorService.ListPipelineServices
1341
+ */
1342
+ listPipelineServices: {
1343
+ methodKind: "unary";
1344
+ input: typeof ListPipelineServicesRequestSchema;
1345
+ output: typeof ListPipelineServicesResponseSchema;
1346
+ };
1347
+ /**
1348
+ * GetPipelineResolver returns a pipeline resolver in a given pipeline
1349
+ * service.
1350
+ *
1351
+ * [Errors]
1352
+ * - Unauthenticated: token is missing, expired, or invalid
1353
+ * - InvalidArgument: request is invalid
1354
+ * - NotFound: pipeline resolver does not exist or can not be accessed
1355
+ *
1356
+ * @generated from rpc tailor.v1.OperatorService.GetPipelineResolver
1357
+ */
1358
+ getPipelineResolver: {
1359
+ methodKind: "unary";
1360
+ input: typeof GetPipelineResolverRequestSchema;
1361
+ output: typeof GetPipelineResolverResponseSchema;
1362
+ };
1363
+ /**
1364
+ * ListPipelineResolvers returns pipeline resolvers in a given pipeline
1365
+ * service.
1366
+ *
1367
+ * [Errors]
1368
+ * - Unauthenticated: token is missing, expired, or invalid
1369
+ * - InvalidArgument: request is invalid
1370
+ * - NotFound: pipeline service does not exist or can not be accessed
1371
+ *
1372
+ * @generated from rpc tailor.v1.OperatorService.ListPipelineResolvers
1373
+ */
1374
+ listPipelineResolvers: {
1375
+ methodKind: "unary";
1376
+ input: typeof ListPipelineResolversRequestSchema;
1377
+ output: typeof ListPipelineResolversResponseSchema;
1378
+ };
1379
+ /**
1380
+ * CreatePipelineResolver create pipeline resolvers in a given pipeline
1381
+ * service.
1382
+ *
1383
+ * [Errors]
1384
+ * - Unauthenticated: token is missing, expired, or invalid
1385
+ * - InvalidArgument: request is invalid
1386
+ * - NotFound: pipeline service does not exist or can not be accessed
1387
+ *
1388
+ * @generated from rpc tailor.v1.OperatorService.CreatePipelineResolver
1389
+ */
1390
+ createPipelineResolver: {
1391
+ methodKind: "unary";
1392
+ input: typeof CreatePipelineResolverRequestSchema;
1393
+ output: typeof CreatePipelineResolverResponseSchema;
1394
+ };
1395
+ /**
1396
+ * UpdatePipelineResolver update pipeline resolvers.
1397
+ *
1398
+ * [Errors]
1399
+ * - Unauthenticated: token is missing, expired, or invalid
1400
+ * - InvalidArgument: request is invalid
1401
+ * - NotFound: pipeline service does not exist or can not be accessed
1402
+ *
1403
+ * @generated from rpc tailor.v1.OperatorService.UpdatePipelineResolver
1404
+ */
1405
+ updatePipelineResolver: {
1406
+ methodKind: "unary";
1407
+ input: typeof UpdatePipelineResolverRequestSchema;
1408
+ output: typeof UpdatePipelineResolverResponseSchema;
1409
+ };
1410
+ /**
1411
+ * DeletePipelineResolver delete pipeline resolvers.
1412
+ *
1413
+ * [Errors]
1414
+ * - Unauthenticated: token is missing, expired, or invalid
1415
+ * - InvalidArgument: request is invalid
1416
+ * - NotFound: pipeline service does not exist or can not be accessed
1417
+ *
1418
+ * @generated from rpc tailor.v1.OperatorService.DeletePipelineResolver
1419
+ */
1420
+ deletePipelineResolver: {
1421
+ methodKind: "unary";
1422
+ input: typeof DeletePipelineResolverRequestSchema;
1423
+ output: typeof DeletePipelineResolverResponseSchema;
1424
+ };
1425
+ /**
1426
+ * ComposePipelineSDL composes the pipeline SDL.
1427
+ *
1428
+ * [Errors]
1429
+ * - Unauthenticated: token is missing, expired, or invalid
1430
+ * - InvalidArgument: request is invalid
1431
+ * - NotFound: pipeline service does not exist or can not be accessed
1432
+ *
1433
+ * @generated from rpc tailor.v1.OperatorService.ComposePipelineSDL
1434
+ */
1435
+ composePipelineSDL: {
1436
+ methodKind: "unary";
1437
+ input: typeof ComposePipelineSDLRequestSchema;
1438
+ output: typeof ComposePipelineSDLResponseSchema;
1439
+ };
1440
+ /**
1441
+ * ListPipelineResolverExecutionResults list all resolver execution results.
1442
+ *
1443
+ * [Errors]
1444
+ * - Unauthenticated: token is missing, expired, or invalid
1445
+ * - InvalidArgument: request is invalid
1446
+ *
1447
+ * @generated from rpc tailor.v1.OperatorService.ListPipelineResolverExecutionResults
1448
+ */
1449
+ listPipelineResolverExecutionResults: {
1450
+ methodKind: "unary";
1451
+ input: typeof ListPipelineResolverExecutionResultsRequestSchema;
1452
+ output: typeof ListPipelineResolverExecutionResultsResponseSchema;
1453
+ };
1454
+ /**
1455
+ * GetPipelineResolverExecutionResult gets a resolver execution result.
1456
+ *
1457
+ * [Errors]
1458
+ * - Unauthenticated: token is missing, expired, or invalid
1459
+ * - InvalidArgument: request is invalid
1460
+ *
1461
+ * @generated from rpc tailor.v1.OperatorService.GetPipelineResolverExecutionResult
1462
+ */
1463
+ getPipelineResolverExecutionResult: {
1464
+ methodKind: "unary";
1465
+ input: typeof GetPipelineResolverExecutionResultRequestSchema;
1466
+ output: typeof GetPipelineResolverExecutionResultResponseSchema;
1467
+ };
1468
+ /**
1469
+ * RestartPipelineResolver restarts a pipeline resolver.
1470
+ *
1471
+ * [Errors]
1472
+ * - Unauthenticated: token is missing, expired, or invalid
1473
+ * - InvalidArgument: request is invalid
1474
+ * - NotFound: pipeline resolver does not exist or can not be accessed
1475
+ *
1476
+ * @generated from rpc tailor.v1.OperatorService.RestartPipelineResolver
1477
+ */
1478
+ restartPipelineResolver: {
1479
+ methodKind: "unary";
1480
+ input: typeof RestartPipelineResolverRequestSchema;
1481
+ output: typeof RestartPipelineResolverResponseSchema;
1482
+ };
1483
+ /**
1484
+ * CreateStateflowService creates a new stateflow service in a given
1485
+ * workspace.
1486
+ *
1487
+ * [Errors]
1488
+ * - Unauthenticated: token is missing, expired, or invalid
1489
+ * - InvalidArgument: request is invalid
1490
+ * - AlreadyExists: stateflow with the namespace already exists
1491
+ * - NotFound: workspace does not exist or can not be accessed
1492
+ *
1493
+ * @generated from rpc tailor.v1.OperatorService.CreateStateflowService
1494
+ */
1495
+ createStateflowService: {
1496
+ methodKind: "unary";
1497
+ input: typeof CreateStateflowServiceRequestSchema;
1498
+ output: typeof CreateStateflowServiceResponseSchema;
1499
+ };
1500
+ /**
1501
+ * UpdateStateflowService updates a stateflow service.
1502
+ *
1503
+ * [Errors]
1504
+ * - Unauthenticated: token is missing, expired, or invalid
1505
+ * - InvalidArgument: request is invalid
1506
+ * - NotFound: stateflow service does not exist or can not be accessed
1507
+ *
1508
+ * @generated from rpc tailor.v1.OperatorService.UpdateStateflowService
1509
+ */
1510
+ updateStateflowService: {
1511
+ methodKind: "unary";
1512
+ input: typeof UpdateStateflowServiceRequestSchema;
1513
+ output: typeof UpdateStateflowServiceResponseSchema;
1514
+ };
1515
+ /**
1516
+ * DeleteStateflowService deletes a stateflow service.
1517
+ *
1518
+ * [Errors]
1519
+ * - Unauthenticated: token is missing, expired, or invalid
1520
+ * - InvalidArgument: request is invalid
1521
+ * - NotFound: stateflow service does not exist or can not be accessed
1522
+ *
1523
+ * @generated from rpc tailor.v1.OperatorService.DeleteStateflowService
1524
+ */
1525
+ deleteStateflowService: {
1526
+ methodKind: "unary";
1527
+ input: typeof DeleteStateflowServiceRequestSchema;
1528
+ output: typeof DeleteStateflowServiceResponseSchema;
1529
+ };
1530
+ /**
1531
+ * GetStateflowService get a stateflow service.
1532
+ *
1533
+ * [Errors]
1534
+ * - Unauthenticated: token is missing, expired, or invalid
1535
+ * - InvalidArgument: request is invalid
1536
+ * - NotFound: stateflow service does not exist or can not be accessed
1537
+ *
1538
+ * @generated from rpc tailor.v1.OperatorService.GetStateflowService
1539
+ */
1540
+ getStateflowService: {
1541
+ methodKind: "unary";
1542
+ input: typeof GetStateflowServiceRequestSchema;
1543
+ output: typeof GetStateflowServiceResponseSchema;
1544
+ };
1545
+ /**
1546
+ * ListStateflowServices get stateflow services.
1547
+ *
1548
+ * [Errors]
1549
+ * - Unauthenticated: token is missing, expired, or invalid
1550
+ * - InvalidArgument: request is invalid
1551
+ *
1552
+ * @generated from rpc tailor.v1.OperatorService.ListStateflowServices
1553
+ */
1554
+ listStateflowServices: {
1555
+ methodKind: "unary";
1556
+ input: typeof ListStateflowServicesRequestSchema;
1557
+ output: typeof ListStateflowServicesResponseSchema;
1558
+ };
1559
+ /**
1560
+ * CreateExecutorExecutor creates a new executor executor.
1561
+ *
1562
+ * [Errors]
1563
+ * - Unauthenticated: token is missing, expired, or invalid
1564
+ * - InvalidArgument: request is invalid
1565
+ * - NotFound: executor service does not exist or can not be accessed
1566
+ *
1567
+ * @generated from rpc tailor.v1.OperatorService.CreateExecutorExecutor
1568
+ */
1569
+ createExecutorExecutor: {
1570
+ methodKind: "unary";
1571
+ input: typeof CreateExecutorExecutorRequestSchema;
1572
+ output: typeof CreateExecutorExecutorResponseSchema;
1573
+ };
1574
+ /**
1575
+ * UpdateExecutorExecutor updates a executor executor.
1576
+ *
1577
+ * [Errors]
1578
+ * - Unauthenticated: token is missing, expired, or invalid
1579
+ * - InvalidArgument: request is invalid
1580
+ * - NotFound: executor executor does not exist or can not be accessed
1581
+ *
1582
+ * @generated from rpc tailor.v1.OperatorService.UpdateExecutorExecutor
1583
+ */
1584
+ updateExecutorExecutor: {
1585
+ methodKind: "unary";
1586
+ input: typeof UpdateExecutorExecutorRequestSchema;
1587
+ output: typeof UpdateExecutorExecutorResponseSchema;
1588
+ };
1589
+ /**
1590
+ * GetExecutorExecutor gets a executor executor.
1591
+ *
1592
+ * [Errors]
1593
+ * - Unauthenticated: token is missing, expired, or invalid
1594
+ * - InvalidArgument: request is invalid
1595
+ * - NotFound: executor executor does not exist or can not be accessed
1596
+ *
1597
+ * @generated from rpc tailor.v1.OperatorService.GetExecutorExecutor
1598
+ */
1599
+ getExecutorExecutor: {
1600
+ methodKind: "unary";
1601
+ input: typeof GetExecutorExecutorRequestSchema;
1602
+ output: typeof GetExecutorExecutorResponseSchema;
1603
+ };
1604
+ /**
1605
+ * DeleteExecutorExecutor deletes a executor executor.
1606
+ *
1607
+ * [Errors]
1608
+ * - Unauthenticated: token is missing, expired, or invalid
1609
+ * - InvalidArgument: request is invalid
1610
+ * - NotFound: executor executor does not exist or can not be accessed
1611
+ *
1612
+ * @generated from rpc tailor.v1.OperatorService.DeleteExecutorExecutor
1613
+ */
1614
+ deleteExecutorExecutor: {
1615
+ methodKind: "unary";
1616
+ input: typeof DeleteExecutorExecutorRequestSchema;
1617
+ output: typeof DeleteExecutorExecutorResponseSchema;
1618
+ };
1619
+ /**
1620
+ * ListExecutorExecutors returns executor executors.
1621
+ *
1622
+ * [Errors]
1623
+ * - Unauthenticated: token is missing, expired, or invalid
1624
+ * - InvalidArgument: request is invalid
1625
+ * - NotFound: executor service does not exist or can not be accessed
1626
+ *
1627
+ * @generated from rpc tailor.v1.OperatorService.ListExecutorExecutors
1628
+ */
1629
+ listExecutorExecutors: {
1630
+ methodKind: "unary";
1631
+ input: typeof ListExecutorExecutorsRequestSchema;
1632
+ output: typeof ListExecutorExecutorsResponseSchema;
1633
+ };
1634
+ /**
1635
+ * GetExecutorJob gets executor job.
1636
+ *
1637
+ * [Errors]
1638
+ * - Unauthenticated: token is missing, expired, or invalid
1639
+ * - InvalidArgument: request is invalid
1640
+ * - NotFound: executor job does not exist or can not be accessed
1641
+ *
1642
+ * @generated from rpc tailor.v1.OperatorService.GetExecutorJob
1643
+ */
1644
+ getExecutorJob: {
1645
+ methodKind: "unary";
1646
+ input: typeof GetExecutorJobRequestSchema;
1647
+ output: typeof GetExecutorJobResponseSchema;
1648
+ };
1649
+ /**
1650
+ * ListExecutorJobs returns executor jobs.
1651
+ *
1652
+ * [Errors]
1653
+ * - Unauthenticated: token is missing, expired, or invalid
1654
+ * - InvalidArgument: request is invalid
1655
+ *
1656
+ * @generated from rpc tailor.v1.OperatorService.ListExecutorJobs
1657
+ */
1658
+ listExecutorJobs: {
1659
+ methodKind: "unary";
1660
+ input: typeof ListExecutorJobsRequestSchema;
1661
+ output: typeof ListExecutorJobsResponseSchema;
1662
+ };
1663
+ /**
1664
+ * ListExecutorJobAttempts returns executor job attempts.
1665
+ *
1666
+ * [Errors]
1667
+ * - Unauthenticated: token is missing, expired, or invalid
1668
+ * - InvalidArgument: request is invalid
1669
+ *
1670
+ * @generated from rpc tailor.v1.OperatorService.ListExecutorJobAttempts
1671
+ */
1672
+ listExecutorJobAttempts: {
1673
+ methodKind: "unary";
1674
+ input: typeof ListExecutorJobAttemptsRequestSchema;
1675
+ output: typeof ListExecutorJobAttemptsResponseSchema;
1676
+ };
1677
+ /**
1678
+ * ListExecutorIncomingWebhooks lists incoming webhooks for the workspace.
1679
+ *
1680
+ * [Errors]
1681
+ * - Unauthenticated: token is missing, expired, or invalid
1682
+ * - InvalidArgument: request is invalid
1683
+ *
1684
+ * @generated from rpc tailor.v1.OperatorService.ListExecutorIncomingWebhooks
1685
+ */
1686
+ listExecutorIncomingWebhooks: {
1687
+ methodKind: "unary";
1688
+ input: typeof ListExecutorIncomingWebhooksRequestSchema;
1689
+ output: typeof ListExecutorIncomingWebhooksResponseSchema;
1690
+ };
1691
+ /**
1692
+ * GetExecutorIncomingWebhook gets an incoming webhook.
1693
+ *
1694
+ * [Errors]
1695
+ * - Unauthenticated: token is missing, expired, or invalid
1696
+ * - InvalidArgument: request is invalid
1697
+ *
1698
+ * @generated from rpc tailor.v1.OperatorService.GetExecutorIncomingWebhook
1699
+ */
1700
+ getExecutorIncomingWebhook: {
1701
+ methodKind: "unary";
1702
+ input: typeof GetExecutorIncomingWebhookRequestSchema;
1703
+ output: typeof GetExecutorIncomingWebhookResponseSchema;
1704
+ };
1705
+ /**
1706
+ * TriggerExecutor triggers an executor.
1707
+ *
1708
+ * [Errors]
1709
+ * - Unauthenticated: token is missing, expired, or invalid
1710
+ * - InvalidArgument: request is invalid
1711
+ *
1712
+ * @generated from rpc tailor.v1.OperatorService.TriggerExecutor
1713
+ */
1714
+ triggerExecutor: {
1715
+ methodKind: "unary";
1716
+ input: typeof TriggerExecutorRequestSchema;
1717
+ output: typeof TriggerExecutorResponseSchema;
1718
+ };
1719
+ /**
1720
+ * CreateSecretManagerVault creates a vault in a given workspace.
1721
+ *
1722
+ * [Errors]
1723
+ * - Unauthenticated: token is missing, expired, or invalid
1724
+ * - InvalidArgument: request is invalid
1725
+ *
1726
+ * @generated from rpc tailor.v1.OperatorService.CreateSecretManagerVault
1727
+ */
1728
+ createSecretManagerVault: {
1729
+ methodKind: "unary";
1730
+ input: typeof CreateSecretManagerVaultRequestSchema;
1731
+ output: typeof CreateSecretManagerVaultResponseSchema;
1732
+ };
1733
+ /**
1734
+ * GetSecretManagerVault gets a vault.
1735
+ *
1736
+ * [Errors]
1737
+ * - Unauthenticated: token is missing, expired, or invalid
1738
+ * - InvalidArgument: request is invalid
1739
+ * - NotFound: vault does not exist or can not be accessed
1740
+ *
1741
+ * @generated from rpc tailor.v1.OperatorService.GetSecretManagerVault
1742
+ */
1743
+ getSecretManagerVault: {
1744
+ methodKind: "unary";
1745
+ input: typeof GetSecretManagerVaultRequestSchema;
1746
+ output: typeof GetSecretManagerVaultResponseSchema;
1747
+ };
1748
+ /**
1749
+ * DeleteSecretManagerVault deletes a vault in SecretManagerService.
1750
+ *
1751
+ * [Errors]
1752
+ * - Unauthenticated: token is missing, expired, or invalid
1753
+ * - InvalidArgument: request is invalid
1754
+ *
1755
+ * @generated from rpc tailor.v1.OperatorService.DeleteSecretManagerVault
1756
+ */
1757
+ deleteSecretManagerVault: {
1758
+ methodKind: "unary";
1759
+ input: typeof DeleteSecretManagerVaultRequestSchema;
1760
+ output: typeof DeleteSecretManagerVaultResponseSchema;
1761
+ };
1762
+ /**
1763
+ * ListSecretManagerVaults lists vaults in SecretManagerService.
1764
+ *
1765
+ * [Errors]
1766
+ * - Unauthenticated: token is missing, expired, or invalid
1767
+ * - InvalidArgument: request is invalid
1768
+ *
1769
+ * @generated from rpc tailor.v1.OperatorService.ListSecretManagerVaults
1770
+ */
1771
+ listSecretManagerVaults: {
1772
+ methodKind: "unary";
1773
+ input: typeof ListSecretManagerVaultsRequestSchema;
1774
+ output: typeof ListSecretManagerVaultsResponseSchema;
1775
+ };
1776
+ /**
1777
+ * CreateSecretManagerSecret creates a secret in SecretManagerService.
1778
+ *
1779
+ * [Errors]
1780
+ * - Unauthenticated: token is missing, expired, or invalid
1781
+ * - InvalidArgument: request is invalid
1782
+ *
1783
+ * @generated from rpc tailor.v1.OperatorService.CreateSecretManagerSecret
1784
+ */
1785
+ createSecretManagerSecret: {
1786
+ methodKind: "unary";
1787
+ input: typeof CreateSecretManagerSecretRequestSchema;
1788
+ output: typeof CreateSecretManagerSecretResponseSchema;
1789
+ };
1790
+ /**
1791
+ * UpdateSecretManagerSecret updates a secret in SecretManagerService.
1792
+ *
1793
+ * [Errors]
1794
+ * - Unauthenticated: token is missing, expired, or invalid
1795
+ * - InvalidArgument: request is invalid
1796
+ *
1797
+ * @generated from rpc tailor.v1.OperatorService.UpdateSecretManagerSecret
1798
+ */
1799
+ updateSecretManagerSecret: {
1800
+ methodKind: "unary";
1801
+ input: typeof UpdateSecretManagerSecretRequestSchema;
1802
+ output: typeof UpdateSecretManagerSecretResponseSchema;
1803
+ };
1804
+ /**
1805
+ * GetSecretManagerSecret gets a secret in SecretManagerService.
1806
+ *
1807
+ * [Errors]
1808
+ * - Unauthenticated: token is missing, expired, or invalid
1809
+ * - InvalidArgument: request is invalid
1810
+ * - NotFound: secret does not exist or can not be accessed
1811
+ *
1812
+ * @generated from rpc tailor.v1.OperatorService.GetSecretManagerSecret
1813
+ */
1814
+ getSecretManagerSecret: {
1815
+ methodKind: "unary";
1816
+ input: typeof GetSecretManagerSecretRequestSchema;
1817
+ output: typeof GetSecretManagerSecretResponseSchema;
1818
+ };
1819
+ /**
1820
+ * DeleteSecretManagerSecret deletes a secret in SecretManagerService.
1821
+ *
1822
+ * [Errors]
1823
+ * - Unauthenticated: token is missing, expired, or invalid
1824
+ * - InvalidArgument: request is invalid
1825
+ *
1826
+ * @generated from rpc tailor.v1.OperatorService.DeleteSecretManagerSecret
1827
+ */
1828
+ deleteSecretManagerSecret: {
1829
+ methodKind: "unary";
1830
+ input: typeof DeleteSecretManagerSecretRequestSchema;
1831
+ output: typeof DeleteSecretManagerSecretResponseSchema;
1832
+ };
1833
+ /**
1834
+ * ListSecretManagerSecrets lists secrets in SecretManagerService.
1835
+ *
1836
+ * [Errors]
1837
+ * - Unauthenticated: token is missing, expired, or invalid
1838
+ * - InvalidArgument: request is invalid
1839
+ *
1840
+ * @generated from rpc tailor.v1.OperatorService.ListSecretManagerSecrets
1841
+ */
1842
+ listSecretManagerSecrets: {
1843
+ methodKind: "unary";
1844
+ input: typeof ListSecretManagerSecretsRequestSchema;
1845
+ output: typeof ListSecretManagerSecretsResponseSchema;
1846
+ };
1847
+ /**
1848
+ * CreateAuthService creates a new auth service in a given workspace.
1849
+ *
1850
+ * [Errors]
1851
+ * - Unauthenticated: token is missing, expired, or invalid
1852
+ * - InvalidArgument: request is invalid
1853
+ * - AlreadyExists: auth service with the namespace already exists
1854
+ * - NotFound: workspace does not exist or can not be accessed
1855
+ *
1856
+ * @generated from rpc tailor.v1.OperatorService.CreateAuthService
1857
+ */
1858
+ createAuthService: {
1859
+ methodKind: "unary";
1860
+ input: typeof CreateAuthServiceRequestSchema;
1861
+ output: typeof CreateAuthServiceResponseSchema;
1862
+ };
1863
+ /**
1864
+ * UpdateAuthService updates an auth service.
1865
+ *
1866
+ * [Errors]
1867
+ * - Unauthenticated: token is missing, expired, or invalid
1868
+ * - InvalidArgument: request is invalid
1869
+ * - NotFound: auth service does not exist or can not be accessed
1870
+ *
1871
+ * @generated from rpc tailor.v1.OperatorService.UpdateAuthService
1872
+ */
1873
+ updateAuthService: {
1874
+ methodKind: "unary";
1875
+ input: typeof UpdateAuthServiceRequestSchema;
1876
+ output: typeof UpdateAuthServiceResponseSchema;
1877
+ };
1878
+ /**
1879
+ * DeleteAuthService deletes an auth service.
1880
+ *
1881
+ * [Errors]
1882
+ * - Unauthenticated: token is missing, expired, or invalid
1883
+ * - InvalidArgument: request is invalid
1884
+ * - NotFound: auth service does not exist or can not be accessed
1885
+ *
1886
+ * @generated from rpc tailor.v1.OperatorService.DeleteAuthService
1887
+ */
1888
+ deleteAuthService: {
1889
+ methodKind: "unary";
1890
+ input: typeof DeleteAuthServiceRequestSchema;
1891
+ output: typeof DeleteAuthServiceResponseSchema;
1892
+ };
1893
+ /**
1894
+ * GetAuthService returns an auth service.
1895
+ *
1896
+ * [Errors]
1897
+ * - Unauthenticated: token is missing, expired, or invalid
1898
+ * - InvalidArgument: request is invalid
1899
+ * - NotFound: auth service does not exist or can not be accessed
1900
+ *
1901
+ * @generated from rpc tailor.v1.OperatorService.GetAuthService
1902
+ */
1903
+ getAuthService: {
1904
+ methodKind: "unary";
1905
+ input: typeof GetAuthServiceRequestSchema;
1906
+ output: typeof GetAuthServiceResponseSchema;
1907
+ };
1908
+ /**
1909
+ * ListAuthServices returns auth services in a given workspace.
1910
+ *
1911
+ * [Errors]
1912
+ * - Unauthenticated: token is missing, expired, or invalid
1913
+ * - InvalidArgument: request is invalid
1914
+ *
1915
+ * @generated from rpc tailor.v1.OperatorService.ListAuthServices
1916
+ */
1917
+ listAuthServices: {
1918
+ methodKind: "unary";
1919
+ input: typeof ListAuthServicesRequestSchema;
1920
+ output: typeof ListAuthServicesResponseSchema;
1921
+ };
1922
+ /**
1923
+ * CreateAuthIDPConfig creates an IDP config in a given auth service.
1924
+ *
1925
+ * [Errors]
1926
+ * - Unauthenticated: token is missing, expired, or invalid
1927
+ * - InvalidArgument: request is invalid
1928
+ * - NotFound: auth service does not exist or can not be accessed
1929
+ *
1930
+ * @generated from rpc tailor.v1.OperatorService.CreateAuthIDPConfig
1931
+ */
1932
+ createAuthIDPConfig: {
1933
+ methodKind: "unary";
1934
+ input: typeof CreateAuthIDPConfigRequestSchema;
1935
+ output: typeof CreateAuthIDPConfigResponseSchema;
1936
+ };
1937
+ /**
1938
+ * UpdateAuthIDPConfig updates an IDP config.
1939
+ *
1940
+ * [Errors]
1941
+ * - Unauthenticated: token is missing, expired, or invalid
1942
+ * - InvalidArgument: request is invalid
1943
+ * - NotFound: IDP config does not exist or can not be accessed
1944
+ *
1945
+ * @generated from rpc tailor.v1.OperatorService.UpdateAuthIDPConfig
1946
+ */
1947
+ updateAuthIDPConfig: {
1948
+ methodKind: "unary";
1949
+ input: typeof UpdateAuthIDPConfigRequestSchema;
1950
+ output: typeof UpdateAuthIDPConfigResponseSchema;
1951
+ };
1952
+ /**
1953
+ * DeleteAuthIDPConfig deletes an IDP config.
1954
+ *
1955
+ * [Errors]
1956
+ * - Unauthenticated: token is missing, expired, or invalid
1957
+ * - InvalidArgument: request is invalid
1958
+ * - NotFound: IDP config does not exist or can not be accessed
1959
+ *
1960
+ * @generated from rpc tailor.v1.OperatorService.DeleteAuthIDPConfig
1961
+ */
1962
+ deleteAuthIDPConfig: {
1963
+ methodKind: "unary";
1964
+ input: typeof DeleteAuthIDPConfigRequestSchema;
1965
+ output: typeof DeleteAuthIDPConfigResponseSchema;
1966
+ };
1967
+ /**
1968
+ * GetAuthIDPConfig gets an IDP config.
1969
+ *
1970
+ * [Errors]
1971
+ * - Unauthenticated: token is missing, expired, or invalid
1972
+ * - InvalidArgument: request is invalid
1973
+ * - NotFound: IDP config does not exist or can not be accessed
1974
+ *
1975
+ * @generated from rpc tailor.v1.OperatorService.GetAuthIDPConfig
1976
+ */
1977
+ getAuthIDPConfig: {
1978
+ methodKind: "unary";
1979
+ input: typeof GetAuthIDPConfigRequestSchema;
1980
+ output: typeof GetAuthIDPConfigResponseSchema;
1981
+ };
1982
+ /**
1983
+ * ListAuthIDPConfigs lists IDP configs in a given auth service.
1984
+ *
1985
+ * [Errors]
1986
+ * - Unauthenticated: token is missing, expired, or invalid
1987
+ * - InvalidArgument: request is invalid
1988
+ *
1989
+ * @generated from rpc tailor.v1.OperatorService.ListAuthIDPConfigs
1990
+ */
1991
+ listAuthIDPConfigs: {
1992
+ methodKind: "unary";
1993
+ input: typeof ListAuthIDPConfigsRequestSchema;
1994
+ output: typeof ListAuthIDPConfigsResponseSchema;
1995
+ };
1996
+ /**
1997
+ * CreateUserProfileConfig creates a user profile config in a given auth
1998
+ * service.
1999
+ *
2000
+ * [Errors]
2001
+ * - Unauthenticated: token is missing, expired, or invalid
2002
+ * - InvalidArgument: request is invalid
2003
+ * - NotFound: auth service does not exist or can not be accessed
2004
+ *
2005
+ * @generated from rpc tailor.v1.OperatorService.CreateUserProfileConfig
2006
+ */
2007
+ createUserProfileConfig: {
2008
+ methodKind: "unary";
2009
+ input: typeof CreateUserProfileConfigRequestSchema;
2010
+ output: typeof CreateUserProfileConfigResponseSchema;
2011
+ };
2012
+ /**
2013
+ * UpdateUserProfileConfig updates a user profile config.
2014
+ *
2015
+ * [Errors]
2016
+ * - Unauthenticated: token is missing, expired, or invalid
2017
+ * - InvalidArgument: request is invalid
2018
+ * - NotFound: user profile config does not exist or can not be accessed
2019
+ *
2020
+ * @generated from rpc tailor.v1.OperatorService.UpdateUserProfileConfig
2021
+ */
2022
+ updateUserProfileConfig: {
2023
+ methodKind: "unary";
2024
+ input: typeof UpdateUserProfileConfigRequestSchema;
2025
+ output: typeof UpdateUserProfileConfigResponseSchema;
2026
+ };
2027
+ /**
2028
+ * DeleteUserProfileConfig deletes a user profile config.
2029
+ *
2030
+ * [Errors]
2031
+ * - Unauthenticated: token is missing, expired, or invalid
2032
+ * - InvalidArgument: request is invalid
2033
+ * - NotFound: user profile config does not exist or can not be accessed
2034
+ *
2035
+ * @generated from rpc tailor.v1.OperatorService.DeleteUserProfileConfig
2036
+ */
2037
+ deleteUserProfileConfig: {
2038
+ methodKind: "unary";
2039
+ input: typeof DeleteUserProfileConfigRequestSchema;
2040
+ output: typeof DeleteUserProfileConfigResponseSchema;
2041
+ };
2042
+ /**
2043
+ * GetUserProfileConfig deletes a user profile config.
2044
+ *
2045
+ * [Errors]
2046
+ * - Unauthenticated: token is missing, expired, or invalid
2047
+ * - InvalidArgument: request is invalid
2048
+ * - NotFound: user profile config does not exist or can not be accessed
2049
+ *
2050
+ * @generated from rpc tailor.v1.OperatorService.GetUserProfileConfig
2051
+ */
2052
+ getUserProfileConfig: {
2053
+ methodKind: "unary";
2054
+ input: typeof GetUserProfileConfigRequestSchema;
2055
+ output: typeof GetUserProfileConfigResponseSchema;
2056
+ };
2057
+ /**
2058
+ * CreateUserProfileConfig creates a user profile config in a given auth
2059
+ * service.
2060
+ *
2061
+ * [Errors]
2062
+ * - Unauthenticated: token is missing, expired, or invalid
2063
+ * - InvalidArgument: request is invalid
2064
+ * - NotFound: auth service does not exist or can not be accessed
2065
+ *
2066
+ * @generated from rpc tailor.v1.OperatorService.CreateTenantConfig
2067
+ */
2068
+ createTenantConfig: {
2069
+ methodKind: "unary";
2070
+ input: typeof CreateTenantConfigRequestSchema;
2071
+ output: typeof CreateTenantConfigResponseSchema;
2072
+ };
2073
+ /**
2074
+ * UpdateUserProfileConfig updates a user profile config.
2075
+ *
2076
+ * [Errors]
2077
+ * - Unauthenticated: token is missing, expired, or invalid
2078
+ * - InvalidArgument: request is invalid
2079
+ * - NotFound: user profile config does not exist or can not be accessed
2080
+ *
2081
+ * @generated from rpc tailor.v1.OperatorService.UpdateTenantConfig
2082
+ */
2083
+ updateTenantConfig: {
2084
+ methodKind: "unary";
2085
+ input: typeof UpdateTenantConfigRequestSchema;
2086
+ output: typeof UpdateTenantConfigResponseSchema;
2087
+ };
2088
+ /**
2089
+ * DeleteUserProfileConfig deletes a user profile config.
2090
+ *
2091
+ * [Errors]
2092
+ * - Unauthenticated: token is missing, expired, or invalid
2093
+ * - InvalidArgument: request is invalid
2094
+ * - NotFound: user profile config does not exist or can not be accessed
2095
+ *
2096
+ * @generated from rpc tailor.v1.OperatorService.DeleteTenantConfig
2097
+ */
2098
+ deleteTenantConfig: {
2099
+ methodKind: "unary";
2100
+ input: typeof DeleteTenantConfigRequestSchema;
2101
+ output: typeof DeleteTenantConfigResponseSchema;
2102
+ };
2103
+ /**
2104
+ * GetUserProfileConfig deletes a user profile config.
2105
+ *
2106
+ * [Errors]
2107
+ * - Unauthenticated: token is missing, expired, or invalid
2108
+ * - InvalidArgument: request is invalid
2109
+ * - NotFound: user profile config does not exist or can not be accessed
2110
+ *
2111
+ * @generated from rpc tailor.v1.OperatorService.GetTenantConfig
2112
+ */
2113
+ getTenantConfig: {
2114
+ methodKind: "unary";
2115
+ input: typeof GetTenantConfigRequestSchema;
2116
+ output: typeof GetTenantConfigResponseSchema;
2117
+ };
2118
+ /**
2119
+ * Auth -- Personal Access Token
2120
+ * CreatePersonalAccessToken creates a new personal access token.
2121
+ *
2122
+ * @generated from rpc tailor.v1.OperatorService.CreatePersonalAccessToken
2123
+ */
2124
+ createPersonalAccessToken: {
2125
+ methodKind: "unary";
2126
+ input: typeof CreatePersonalAccessTokenRequestSchema;
2127
+ output: typeof CreatePersonalAccessTokenResponseSchema;
2128
+ };
2129
+ /**
2130
+ * DeletePersonalAccessToken deletes a personal access token.
2131
+ *
2132
+ * @generated from rpc tailor.v1.OperatorService.DeletePersonalAccessToken
2133
+ */
2134
+ deletePersonalAccessToken: {
2135
+ methodKind: "unary";
2136
+ input: typeof DeletePersonalAccessTokenRequestSchema;
2137
+ output: typeof DeletePersonalAccessTokenResponseSchema;
2138
+ };
2139
+ /**
2140
+ * ListPersonalAccessTokens lists all personal access tokens.
2141
+ *
2142
+ * @generated from rpc tailor.v1.OperatorService.ListPersonalAccessTokens
2143
+ */
2144
+ listPersonalAccessTokens: {
2145
+ methodKind: "unary";
2146
+ input: typeof ListPersonalAccessTokensRequestSchema;
2147
+ output: typeof ListPersonalAccessTokensResponseSchema;
2148
+ };
2149
+ /**
2150
+ * Auth -- MachineUser
2151
+ * CreateAuthMachineUser creates a new machine user.
2152
+ *
2153
+ * @generated from rpc tailor.v1.OperatorService.CreateAuthMachineUser
2154
+ */
2155
+ createAuthMachineUser: {
2156
+ methodKind: "unary";
2157
+ input: typeof CreateAuthMachineUserRequestSchema;
2158
+ output: typeof CreateAuthMachineUserResponseSchema;
2159
+ };
2160
+ /**
2161
+ * UpdateAuthMachineUser updates a machine user.
2162
+ *
2163
+ * @generated from rpc tailor.v1.OperatorService.UpdateAuthMachineUser
2164
+ */
2165
+ updateAuthMachineUser: {
2166
+ methodKind: "unary";
2167
+ input: typeof UpdateAuthMachineUserRequestSchema;
2168
+ output: typeof UpdateAuthMachineUserResponseSchema;
2169
+ };
2170
+ /**
2171
+ * DeleteAuthMachineUser deletes a machine user.
2172
+ *
2173
+ * @generated from rpc tailor.v1.OperatorService.DeleteAuthMachineUser
2174
+ */
2175
+ deleteAuthMachineUser: {
2176
+ methodKind: "unary";
2177
+ input: typeof DeleteAuthMachineUserRequestSchema;
2178
+ output: typeof DeleteAuthMachineUserResponseSchema;
2179
+ };
2180
+ /**
2181
+ * GetAuthMachineUser gets a machine user.
2182
+ *
2183
+ * @generated from rpc tailor.v1.OperatorService.GetAuthMachineUser
2184
+ */
2185
+ getAuthMachineUser: {
2186
+ methodKind: "unary";
2187
+ input: typeof GetAuthMachineUserRequestSchema;
2188
+ output: typeof GetAuthMachineUserResponseSchema;
2189
+ };
2190
+ /**
2191
+ * ListAuthMachineUsers lists all machine users.
2192
+ *
2193
+ * @generated from rpc tailor.v1.OperatorService.ListAuthMachineUsers
2194
+ */
2195
+ listAuthMachineUsers: {
2196
+ methodKind: "unary";
2197
+ input: typeof ListAuthMachineUsersRequestSchema;
2198
+ output: typeof ListAuthMachineUsersResponseSchema;
2199
+ };
2200
+ /**
2201
+ * CreateAuthSCIMConfig creates SCIM config for the auth namespace.
2202
+ *
2203
+ * @generated from rpc tailor.v1.OperatorService.CreateAuthSCIMConfig
2204
+ */
2205
+ createAuthSCIMConfig: {
2206
+ methodKind: "unary";
2207
+ input: typeof CreateAuthSCIMConfigRequestSchema;
2208
+ output: typeof CreateAuthSCIMConfigResponseSchema;
2209
+ };
2210
+ /**
2211
+ * UpdateAuthSCIMConfig updates the SCIM config for the auth namespace.
2212
+ *
2213
+ * @generated from rpc tailor.v1.OperatorService.UpdateAuthSCIMConfig
2214
+ */
2215
+ updateAuthSCIMConfig: {
2216
+ methodKind: "unary";
2217
+ input: typeof UpdateAuthSCIMConfigRequestSchema;
2218
+ output: typeof UpdateAuthSCIMConfigResponseSchema;
2219
+ };
2220
+ /**
2221
+ * DeleteAuthSCIMConfig deletes the SCIM config for the auth namespace.
2222
+ *
2223
+ * @generated from rpc tailor.v1.OperatorService.DeleteAuthSCIMConfig
2224
+ */
2225
+ deleteAuthSCIMConfig: {
2226
+ methodKind: "unary";
2227
+ input: typeof DeleteAuthSCIMConfigRequestSchema;
2228
+ output: typeof DeleteAuthSCIMConfigResponseSchema;
2229
+ };
2230
+ /**
2231
+ * GetAuthSCIMConfig gets the SCIM config for the auth namespace.
2232
+ *
2233
+ * @generated from rpc tailor.v1.OperatorService.GetAuthSCIMConfig
2234
+ */
2235
+ getAuthSCIMConfig: {
2236
+ methodKind: "unary";
2237
+ input: typeof GetAuthSCIMConfigRequestSchema;
2238
+ output: typeof GetAuthSCIMConfigResponseSchema;
2239
+ };
2240
+ /**
2241
+ * CreateAuthSCIMResource creates a SCIM Resource in a given auth service.
2242
+ *
2243
+ * @generated from rpc tailor.v1.OperatorService.CreateAuthSCIMResource
2244
+ */
2245
+ createAuthSCIMResource: {
2246
+ methodKind: "unary";
2247
+ input: typeof CreateAuthSCIMResourceRequestSchema;
2248
+ output: typeof CreateAuthSCIMResourceResponseSchema;
2249
+ };
2250
+ /**
2251
+ * UpdateAuthSCIMResource updates a SCIM Resource.
2252
+ *
2253
+ * @generated from rpc tailor.v1.OperatorService.UpdateAuthSCIMResource
2254
+ */
2255
+ updateAuthSCIMResource: {
2256
+ methodKind: "unary";
2257
+ input: typeof UpdateAuthSCIMResourceRequestSchema;
2258
+ output: typeof UpdateAuthSCIMResourceResponseSchema;
2259
+ };
2260
+ /**
2261
+ * DeleteAuthSCIMResource deletes a SCIM Resource.
2262
+ *
2263
+ * @generated from rpc tailor.v1.OperatorService.DeleteAuthSCIMResource
2264
+ */
2265
+ deleteAuthSCIMResource: {
2266
+ methodKind: "unary";
2267
+ input: typeof DeleteAuthSCIMResourceRequestSchema;
2268
+ output: typeof DeleteAuthSCIMResourceResponseSchema;
2269
+ };
2270
+ /**
2271
+ * GetAuthSCIMResource gets a SCIM Resource.
2272
+ *
2273
+ * @generated from rpc tailor.v1.OperatorService.GetAuthSCIMResource
2274
+ */
2275
+ getAuthSCIMResource: {
2276
+ methodKind: "unary";
2277
+ input: typeof GetAuthSCIMResourceRequestSchema;
2278
+ output: typeof GetAuthSCIMResourceResponseSchema;
2279
+ };
2280
+ /**
2281
+ * GetAuthSCIMResources get SCIM Resources.
2282
+ *
2283
+ * @generated from rpc tailor.v1.OperatorService.GetAuthSCIMResources
2284
+ */
2285
+ getAuthSCIMResources: {
2286
+ methodKind: "unary";
2287
+ input: typeof GetAuthSCIMResourcesRequestSchema;
2288
+ output: typeof GetAuthSCIMResourcesResponseSchema;
2289
+ };
2290
+ /**
2291
+ * CreateAuthHook creates a hook for the auth namespace.
2292
+ *
2293
+ * @generated from rpc tailor.v1.OperatorService.CreateAuthHook
2294
+ */
2295
+ createAuthHook: {
2296
+ methodKind: "unary";
2297
+ input: typeof CreateAuthHookRequestSchema;
2298
+ output: typeof CreateAuthHookResponseSchema;
2299
+ };
2300
+ /**
2301
+ * UpdateAuthHook updates a hook for the auth namespace.
2302
+ *
2303
+ * @generated from rpc tailor.v1.OperatorService.UpdateAuthHook
2304
+ */
2305
+ updateAuthHook: {
2306
+ methodKind: "unary";
2307
+ input: typeof UpdateAuthHookRequestSchema;
2308
+ output: typeof UpdateAuthHookResponseSchema;
2309
+ };
2310
+ /**
2311
+ * DeleteAuthHook deletes a hook for the auth namespace.
2312
+ *
2313
+ * @generated from rpc tailor.v1.OperatorService.DeleteAuthHook
2314
+ */
2315
+ deleteAuthHook: {
2316
+ methodKind: "unary";
2317
+ input: typeof DeleteAuthHookRequestSchema;
2318
+ output: typeof DeleteAuthHookResponseSchema;
2319
+ };
2320
+ /**
2321
+ * GetAuthHook gets a hook for the auth namespace.
2322
+ *
2323
+ * @generated from rpc tailor.v1.OperatorService.GetAuthHook
2324
+ */
2325
+ getAuthHook: {
2326
+ methodKind: "unary";
2327
+ input: typeof GetAuthHookRequestSchema;
2328
+ output: typeof GetAuthHookResponseSchema;
2329
+ };
2330
+ /**
2331
+ * CreateAuthConnection creates a new auth connection.
2332
+ *
2333
+ * @generated from rpc tailor.v1.OperatorService.CreateAuthConnection
2334
+ */
2335
+ createAuthConnection: {
2336
+ methodKind: "unary";
2337
+ input: typeof CreateAuthConnectionRequestSchema;
2338
+ output: typeof CreateAuthConnectionResponseSchema;
2339
+ };
2340
+ /**
2341
+ * UpdateAuthConnection updates an auth connection.
2342
+ *
2343
+ * @generated from rpc tailor.v1.OperatorService.UpdateAuthConnection
2344
+ */
2345
+ updateAuthConnection: {
2346
+ methodKind: "unary";
2347
+ input: typeof UpdateAuthConnectionRequestSchema;
2348
+ output: typeof UpdateAuthConnectionResponseSchema;
2349
+ };
2350
+ /**
2351
+ * ListAuthConnections lists all auth connections.
2352
+ *
2353
+ * @generated from rpc tailor.v1.OperatorService.ListAuthConnections
2354
+ */
2355
+ listAuthConnections: {
2356
+ methodKind: "unary";
2357
+ input: typeof ListAuthConnectionsRequestSchema;
2358
+ output: typeof ListAuthConnectionsResponseSchema;
2359
+ };
2360
+ /**
2361
+ * RevokeAuthConnection revokes an auth connection's active session.
2362
+ *
2363
+ * @generated from rpc tailor.v1.OperatorService.RevokeAuthConnection
2364
+ */
2365
+ revokeAuthConnection: {
2366
+ methodKind: "unary";
2367
+ input: typeof RevokeAuthConnectionRequestSchema;
2368
+ output: typeof RevokeAuthConnectionResponseSchema;
2369
+ };
2370
+ /**
2371
+ * DeleteAuthConnection deletes an auth connection.
2372
+ *
2373
+ * @generated from rpc tailor.v1.OperatorService.DeleteAuthConnection
2374
+ */
2375
+ deleteAuthConnection: {
2376
+ methodKind: "unary";
2377
+ input: typeof DeleteAuthConnectionRequestSchema;
2378
+ output: typeof DeleteAuthConnectionResponseSchema;
2379
+ };
2380
+ /**
2381
+ * RegisterAuthConnectionSession creates a new auth connection.
2382
+ *
2383
+ * @generated from rpc tailor.v1.OperatorService.RegisterAuthConnectionSession
2384
+ */
2385
+ registerAuthConnectionSession: {
2386
+ methodKind: "unary";
2387
+ input: typeof RegisterAuthConnectionSessionRequestSchema;
2388
+ output: typeof RegisterAuthConnectionSessionResponseSchema;
2389
+ };
2390
+ /**
2391
+ * ExchangeAuthConnectionAuthorizationCode exchanges OAuth2 authorization code for tokens and stores them.
2392
+ *
2393
+ * @generated from rpc tailor.v1.OperatorService.ExchangeAuthConnectionAuthorizationCode
2394
+ */
2395
+ exchangeAuthConnectionAuthorizationCode: {
2396
+ methodKind: "unary";
2397
+ input: typeof ExchangeAuthConnectionAuthorizationCodeRequestSchema;
2398
+ output: typeof ExchangeAuthConnectionAuthorizationCodeResponseSchema;
2399
+ };
2400
+ /**
2401
+ * CreateAuthOAuth2Client creates a new auth OAuth2 client.
2402
+ *
2403
+ * @generated from rpc tailor.v1.OperatorService.CreateAuthOAuth2Client
2404
+ */
2405
+ createAuthOAuth2Client: {
2406
+ methodKind: "unary";
2407
+ input: typeof CreateAuthOAuth2ClientRequestSchema;
2408
+ output: typeof CreateAuthOAuth2ClientResponseSchema;
2409
+ };
2410
+ /**
2411
+ * UpdateAuthOAuth2Client updates a auth OAuth2 client.
2412
+ *
2413
+ * @generated from rpc tailor.v1.OperatorService.UpdateAuthOAuth2Client
2414
+ */
2415
+ updateAuthOAuth2Client: {
2416
+ methodKind: "unary";
2417
+ input: typeof UpdateAuthOAuth2ClientRequestSchema;
2418
+ output: typeof UpdateAuthOAuth2ClientResponseSchema;
2419
+ };
2420
+ /**
2421
+ * DeleteAuthOAuth2Client deletes a auth OAuth2 client.
2422
+ *
2423
+ * @generated from rpc tailor.v1.OperatorService.DeleteAuthOAuth2Client
2424
+ */
2425
+ deleteAuthOAuth2Client: {
2426
+ methodKind: "unary";
2427
+ input: typeof DeleteAuthOAuth2ClientRequestSchema;
2428
+ output: typeof DeleteAuthOAuth2ClientResponseSchema;
2429
+ };
2430
+ /**
2431
+ * GetAuthOAuth2Client gets a auth OAuth2 client.
2432
+ *
2433
+ * @generated from rpc tailor.v1.OperatorService.GetAuthOAuth2Client
2434
+ */
2435
+ getAuthOAuth2Client: {
2436
+ methodKind: "unary";
2437
+ input: typeof GetAuthOAuth2ClientRequestSchema;
2438
+ output: typeof GetAuthOAuth2ClientResponseSchema;
2439
+ };
2440
+ /**
2441
+ * ListAuthOAuth2Client lists auth OAuth2 clients.
2442
+ *
2443
+ * @generated from rpc tailor.v1.OperatorService.ListAuthOAuth2Clients
2444
+ */
2445
+ listAuthOAuth2Clients: {
2446
+ methodKind: "unary";
2447
+ input: typeof ListAuthOAuth2ClientsRequestSchema;
2448
+ output: typeof ListAuthOAuth2ClientsResponseSchema;
2449
+ };
2450
+ /**
2451
+ * Events ---------------------------------------------------------
2452
+ * ListDataplaneEvents lists dataplane events in a given workspace.
2453
+ *
2454
+ * @generated from rpc tailor.v1.OperatorService.ListDataplaneEvents
2455
+ */
2456
+ listDataplaneEvents: {
2457
+ methodKind: "unary";
2458
+ input: typeof ListDataplaneEventsRequestSchema;
2459
+ output: typeof ListDataplaneEventsResponseSchema;
2460
+ };
2461
+ /**
2462
+ * ListControlplaneActivityLogs lists controlplane activity logs in a given workspace.
2463
+ *
2464
+ * @generated from rpc tailor.v1.OperatorService.ListControlplaneActivityLogs
2465
+ */
2466
+ listControlplaneActivityLogs: {
2467
+ methodKind: "unary";
2468
+ input: typeof ListControlplaneActivityLogsRequestSchema;
2469
+ output: typeof ListControlplaneActivityLogsResponseSchema;
2470
+ };
2471
+ /**
2472
+ * Function ---------------------------------------------------------
2473
+ * TestExecScript executes specified JavaScript code in which I/O operations are allowed and returns the result.
2474
+ *
2475
+ * @generated from rpc tailor.v1.OperatorService.TestExecScript
2476
+ */
2477
+ testExecScript: {
2478
+ methodKind: "unary";
2479
+ input: typeof TestExecScriptRequestSchema;
2480
+ output: typeof TestExecScriptResponseSchema;
2481
+ };
2482
+ /**
2483
+ * GetFunctionExecution gets function execution.
2484
+ *
2485
+ * @generated from rpc tailor.v1.OperatorService.GetFunctionExecution
2486
+ */
2487
+ getFunctionExecution: {
2488
+ methodKind: "unary";
2489
+ input: typeof GetFunctionExecutionRequestSchema;
2490
+ output: typeof GetFunctionExecutionResponseSchema;
2491
+ };
2492
+ /**
2493
+ * ListFunctionExecutions lists function executions.
2494
+ *
2495
+ * @generated from rpc tailor.v1.OperatorService.ListFunctionExecutions
2496
+ */
2497
+ listFunctionExecutions: {
2498
+ methodKind: "unary";
2499
+ input: typeof ListFunctionExecutionsRequestSchema;
2500
+ output: typeof ListFunctionExecutionsResponseSchema;
2501
+ };
2502
+ /**
2503
+ * CreateFunctionRegistry creates a new function using client streaming.
2504
+ * Supports scripts up to 20MB. Returns ALREADY_EXISTS error if name already exists.
2505
+ *
2506
+ * [Errors]
2507
+ * - Unauthenticated: token is missing, expired, or invalid
2508
+ * - InvalidArgument: request is invalid
2509
+ * - NotFound: workspace does not exist or can not be accessed
2510
+ * - AlreadyExists: function with the same name already exists
2511
+ *
2512
+ * @generated from rpc tailor.v1.OperatorService.CreateFunctionRegistry
2513
+ */
2514
+ createFunctionRegistry: {
2515
+ methodKind: "client_streaming";
2516
+ input: typeof CreateFunctionRegistryRequestSchema;
2517
+ output: typeof CreateFunctionRegistryResponseSchema;
2518
+ };
2519
+ /**
2520
+ * UpdateFunctionRegistry updates an existing function using client streaming.
2521
+ * Supports scripts up to 20MB. Returns NOT_FOUND error if name does not exist.
2522
+ *
2523
+ * [Errors]
2524
+ * - Unauthenticated: token is missing, expired, or invalid
2525
+ * - InvalidArgument: request is invalid
2526
+ * - NotFound: function or workspace does not exist or can not be accessed
2527
+ *
2528
+ * @generated from rpc tailor.v1.OperatorService.UpdateFunctionRegistry
2529
+ */
2530
+ updateFunctionRegistry: {
2531
+ methodKind: "client_streaming";
2532
+ input: typeof UpdateFunctionRegistryRequestSchema;
2533
+ output: typeof UpdateFunctionRegistryResponseSchema;
2534
+ };
2535
+ /**
2536
+ * GetFunctionRegistry retrieves a function by name.
2537
+ *
2538
+ * [Errors]
2539
+ * - Unauthenticated: token is missing, expired, or invalid
2540
+ * - InvalidArgument: request is invalid
2541
+ * - NotFound: function does not exist or can not be accessed
2542
+ *
2543
+ * @generated from rpc tailor.v1.OperatorService.GetFunctionRegistry
2544
+ */
2545
+ getFunctionRegistry: {
2546
+ methodKind: "unary";
2547
+ input: typeof GetFunctionRegistryRequestSchema;
2548
+ output: typeof GetFunctionRegistryResponseSchema;
2549
+ };
2550
+ /**
2551
+ * ListFunctionRegistries lists functions in the registry with pagination and filtering.
2552
+ *
2553
+ * [Errors]
2554
+ * - Unauthenticated: token is missing, expired, or invalid
2555
+ * - InvalidArgument: request is invalid
2556
+ *
2557
+ * @generated from rpc tailor.v1.OperatorService.ListFunctionRegistries
2558
+ */
2559
+ listFunctionRegistries: {
2560
+ methodKind: "unary";
2561
+ input: typeof ListFunctionRegistriesRequestSchema;
2562
+ output: typeof ListFunctionRegistriesResponseSchema;
2563
+ };
2564
+ /**
2565
+ * DeleteFunctionRegistry deletes a function by name.
2566
+ *
2567
+ * [Errors]
2568
+ * - Unauthenticated: token is missing, expired, or invalid
2569
+ * - InvalidArgument: request is invalid
2570
+ * - NotFound: function does not exist or can not be accessed
2571
+ *
2572
+ * @generated from rpc tailor.v1.OperatorService.DeleteFunctionRegistry
2573
+ */
2574
+ deleteFunctionRegistry: {
2575
+ methodKind: "unary";
2576
+ input: typeof DeleteFunctionRegistryRequestSchema;
2577
+ output: typeof DeleteFunctionRegistryResponseSchema;
2578
+ };
2579
+ /**
2580
+ * DownloadFunctionRegistryScript downloads a script using server streaming.
2581
+ * Supports scripts up to 20MB. First message contains metadata, subsequent messages contain chunks.
2582
+ *
2583
+ * [Errors]
2584
+ * - Unauthenticated: token is missing, expired, or invalid
2585
+ * - InvalidArgument: request is invalid
2586
+ * - NotFound: function does not exist or can not be accessed
2587
+ *
2588
+ * @generated from rpc tailor.v1.OperatorService.DownloadFunctionRegistryScript
2589
+ */
2590
+ downloadFunctionRegistryScript: {
2591
+ methodKind: "server_streaming";
2592
+ input: typeof DownloadFunctionRegistryScriptRequestSchema;
2593
+ output: typeof DownloadFunctionRegistryScriptResponseSchema;
2594
+ };
2595
+ /**
2596
+ * ListMeterRequestCounts returns request counts per application in a workspace.
2597
+ *
2598
+ * @generated from rpc tailor.v1.OperatorService.ListMeterRequestCounts
2599
+ */
2600
+ listMeterRequestCounts: {
2601
+ methodKind: "unary";
2602
+ input: typeof ListMeterRequestCountsRequestSchema;
2603
+ output: typeof ListMeterRequestCountsResponseSchema;
2604
+ };
2605
+ /**
2606
+ * ListMeterExecutionCounts returns execution counts per service in a workspace.
2607
+ *
2608
+ * @generated from rpc tailor.v1.OperatorService.ListMeterExecutionCounts
2609
+ */
2610
+ listMeterExecutionCounts: {
2611
+ methodKind: "unary";
2612
+ input: typeof ListMeterExecutionCountsRequestSchema;
2613
+ output: typeof ListMeterExecutionCountsResponseSchema;
2614
+ };
2615
+ /**
2616
+ * ListMeterEventCounts returns event counts per service in a workspace.
2617
+ *
2618
+ * @generated from rpc tailor.v1.OperatorService.ListMeterEventCounts
2619
+ */
2620
+ listMeterEventCounts: {
2621
+ methodKind: "unary";
2622
+ input: typeof ListMeterEventCountsRequestSchema;
2623
+ output: typeof ListMeterEventCountsResponseSchema;
2624
+ };
2625
+ /**
2626
+ * ListMeterAITokenUsages returns AI Gateway token usage in a workspace,
2627
+ * with one row per (aigateway_name, model, token_type) combination.
2628
+ *
2629
+ * @generated from rpc tailor.v1.OperatorService.ListMeterAITokenUsages
2630
+ */
2631
+ listMeterAITokenUsages: {
2632
+ methodKind: "unary";
2633
+ input: typeof ListMeterAITokenUsagesRequestSchema;
2634
+ output: typeof ListMeterAITokenUsagesResponseSchema;
2635
+ };
2636
+ /**
2637
+ * ListIdPServices list all namespaces under a workspace.
2638
+ *
2639
+ * [Errors]
2640
+ * - Unauthenticated: token is missing, expired, or invalid
2641
+ * - InvalidArgument: request is invalid
2642
+ * - NotFound: workspace does not exist or can not be accessed
2643
+ *
2644
+ * @generated from rpc tailor.v1.OperatorService.ListIdPServices
2645
+ */
2646
+ listIdPServices: {
2647
+ methodKind: "unary";
2648
+ input: typeof ListIdPServicesRequestSchema;
2649
+ output: typeof ListIdPServicesResponseSchema;
2650
+ };
2651
+ /**
2652
+ * CreateIdPService creates a new idp namespace.
2653
+ *
2654
+ * [Errors]
2655
+ * - Unauthenticated: token is missing, expired, or invalid
2656
+ * - InvalidArgument: request is invalid
2657
+ * - NotFound: workspace does not exist or can not be accessed
2658
+ *
2659
+ * @generated from rpc tailor.v1.OperatorService.CreateIdPService
2660
+ */
2661
+ createIdPService: {
2662
+ methodKind: "unary";
2663
+ input: typeof CreateIdPServiceRequestSchema;
2664
+ output: typeof CreateIdPServiceResponseSchema;
2665
+ };
2666
+ /**
2667
+ * UpdateIdPService updates the idp namespace.
2668
+ *
2669
+ * [Errors]
2670
+ * - Unauthenticated: token is missing, expired, or invalid
2671
+ * - InvalidArgument: request is invalid
2672
+ * - NotFound: workspace does not exist or can not be accessed
2673
+ *
2674
+ * @generated from rpc tailor.v1.OperatorService.UpdateIdPService
2675
+ */
2676
+ updateIdPService: {
2677
+ methodKind: "unary";
2678
+ input: typeof UpdateIdPServiceRequestSchema;
2679
+ output: typeof UpdateIdPServiceResponseSchema;
2680
+ };
2681
+ /**
2682
+ * DeleteIdPService deletes the idp namespace.
2683
+ *
2684
+ * [Errors]
2685
+ * - Unauthenticated: token is missing, expired, or invalid
2686
+ * - InvalidArgument: request is invalid
2687
+ * - NotFound: namespace does not exist or can not be accessed
2688
+ *
2689
+ * @generated from rpc tailor.v1.OperatorService.DeleteIdPService
2690
+ */
2691
+ deleteIdPService: {
2692
+ methodKind: "unary";
2693
+ input: typeof DeleteIdPServiceRequestSchema;
2694
+ output: typeof DeleteIdPServiceResponseSchema;
2695
+ };
2696
+ /**
2697
+ * GetIdPService returns an idp namespace.
2698
+ *
2699
+ * [Errors]
2700
+ * - Unauthenticated: token is expired, or invalid
2701
+ * - InvalidArgument: request is invalid
2702
+ * - NotFound: idp namespace does not exist or can not be accessed
2703
+ *
2704
+ * @generated from rpc tailor.v1.OperatorService.GetIdPService
2705
+ */
2706
+ getIdPService: {
2707
+ methodKind: "unary";
2708
+ input: typeof GetIdPServiceRequestSchema;
2709
+ output: typeof GetIdPServiceResponseSchema;
2710
+ };
2711
+ /**
2712
+ * ListIdPClients lists all clients for the idp namespace.
2713
+ *
2714
+ * [Errors]
2715
+ * - Unauthenticated: token is missing, expired, or invalid
2716
+ * - InvalidArgument: request is invalid
2717
+ * - NotFound: idp namespace does not exist or can not be accessed
2718
+ *
2719
+ * @generated from rpc tailor.v1.OperatorService.ListIdPClients
2720
+ */
2721
+ listIdPClients: {
2722
+ methodKind: "unary";
2723
+ input: typeof ListIdPClientsRequestSchema;
2724
+ output: typeof ListIdPClientsResponseSchema;
2725
+ };
2726
+ /**
2727
+ * CreateIdPClient creates client for the idp namespace.
2728
+ *
2729
+ * [Errors]
2730
+ * - Unauthenticated: token is missing, expired, or invalid
2731
+ * - InvalidArgument: request is invalid
2732
+ * - NotFound: idp namespace does not exist or can not be accessed
2733
+ *
2734
+ * @generated from rpc tailor.v1.OperatorService.CreateIdPClient
2735
+ */
2736
+ createIdPClient: {
2737
+ methodKind: "unary";
2738
+ input: typeof CreateIdPClientRequestSchema;
2739
+ output: typeof CreateIdPClientResponseSchema;
2740
+ };
2741
+ /**
2742
+ * DeleteIdPClient deletes the client for the idp namespace.
2743
+ *
2744
+ * [Errors]
2745
+ * - Unauthenticated: token is missing, expired, or invalid
2746
+ * - InvalidArgument: request is invalid
2747
+ * - NotFound: client does not exist or can not be accessed
2748
+ *
2749
+ * @generated from rpc tailor.v1.OperatorService.DeleteIdPClient
2750
+ */
2751
+ deleteIdPClient: {
2752
+ methodKind: "unary";
2753
+ input: typeof DeleteIdPClientRequestSchema;
2754
+ output: typeof DeleteIdPClientResponseSchema;
2755
+ };
2756
+ /**
2757
+ * GetIdPClient gets the client for the idp namespace.
2758
+ *
2759
+ * [Errors]
2760
+ * - Unauthenticated: token is missing, expired, or invalid
2761
+ * - InvalidArgument: request is invalid
2762
+ * - NotFound: client does not exist or can not be accessed
2763
+ *
2764
+ * @generated from rpc tailor.v1.OperatorService.GetIdPClient
2765
+ */
2766
+ getIdPClient: {
2767
+ methodKind: "unary";
2768
+ input: typeof GetIdPClientRequestSchema;
2769
+ output: typeof GetIdPClientResponseSchema;
2770
+ };
2771
+ /**
2772
+ * CreateStaticWebsite creates a new staticwebsite.
2773
+ *
2774
+ * [Errors]
2775
+ * - Unauthenticated: token is missing, expired, or invalid
2776
+ * - InvalidArgument: request is invalid
2777
+ * - NotFound: workspace does not exist or can not be accessed
2778
+ *
2779
+ * @generated from rpc tailor.v1.OperatorService.CreateStaticWebsite
2780
+ */
2781
+ createStaticWebsite: {
2782
+ methodKind: "unary";
2783
+ input: typeof CreateStaticWebsiteRequestSchema;
2784
+ output: typeof CreateStaticWebsiteResponseSchema;
2785
+ };
2786
+ /**
2787
+ * UpdateStaticWebsite updates the staticwebsite.
2788
+ *
2789
+ * [Errors]
2790
+ * - Unauthenticated: token is missing, expired, or invalid
2791
+ * - InvalidArgument: request is invalid
2792
+ * - NotFound: staticwebsite does not exist or can not be accessed
2793
+ *
2794
+ * @generated from rpc tailor.v1.OperatorService.UpdateStaticWebsite
2795
+ */
2796
+ updateStaticWebsite: {
2797
+ methodKind: "unary";
2798
+ input: typeof UpdateStaticWebsiteRequestSchema;
2799
+ output: typeof UpdateStaticWebsiteResponseSchema;
2800
+ };
2801
+ /**
2802
+ * DeleteStaticWebsite deletes the staticwebsite.
2803
+ *
2804
+ * [Errors]
2805
+ * - Unauthenticated: token is missing, expired, or invalid
2806
+ * - InvalidArgument: request is invalid
2807
+ * - NotFound: staticwebsite does not exist or can not be accessed
2808
+ *
2809
+ * @generated from rpc tailor.v1.OperatorService.DeleteStaticWebsite
2810
+ */
2811
+ deleteStaticWebsite: {
2812
+ methodKind: "unary";
2813
+ input: typeof DeleteStaticWebsiteRequestSchema;
2814
+ output: typeof DeleteStaticWebsiteResponseSchema;
2815
+ };
2816
+ /**
2817
+ * GetStaticWebsite returns an staticwebsite.
2818
+ *
2819
+ * [Errors]
2820
+ * - Unauthenticated: token is expired, or invalid
2821
+ * - InvalidArgument: request is invalid
2822
+ * - NotFound: staticwebsite does not exist or can not be accessed
2823
+ *
2824
+ * @generated from rpc tailor.v1.OperatorService.GetStaticWebsite
2825
+ */
2826
+ getStaticWebsite: {
2827
+ methodKind: "unary";
2828
+ input: typeof GetStaticWebsiteRequestSchema;
2829
+ output: typeof GetStaticWebsiteResponseSchema;
2830
+ };
2831
+ /**
2832
+ * ListStaticWebsites returns staticwebsites.
2833
+ *
2834
+ * [Errors]
2835
+ * - Unauthenticated: token is missing, expired, or invalid
2836
+ * - InvalidArgument: request is invalid
2837
+ * - NotFound: workspace does not exist or can not be accessed
2838
+ *
2839
+ * @generated from rpc tailor.v1.OperatorService.ListStaticWebsites
2840
+ */
2841
+ listStaticWebsites: {
2842
+ methodKind: "unary";
2843
+ input: typeof ListStaticWebsitesRequestSchema;
2844
+ output: typeof ListStaticWebsitesResponseSchema;
2845
+ };
2846
+ /**
2847
+ * AddCustomDomain registers a custom domain for a static website.
2848
+ *
2849
+ * [Errors]
2850
+ * - Unauthenticated: token is missing, expired, or invalid
2851
+ * - InvalidArgument: request is invalid or domain format is rejected
2852
+ * - NotFound: static website does not exist
2853
+ * - AlreadyExists: domain is already registered
2854
+ * - ResourceExhausted: maximum number of custom domains reached
2855
+ * - FailedPrecondition: domain already has an active TLS subscription
2856
+ *
2857
+ * @generated from rpc tailor.v1.OperatorService.AddCustomDomain
2858
+ */
2859
+ addCustomDomain: {
2860
+ methodKind: "unary";
2861
+ input: typeof AddCustomDomainRequestSchema;
2862
+ output: typeof AddCustomDomainResponseSchema;
2863
+ };
2864
+ /**
2865
+ * GetCustomDomain gets a custom domain.
2866
+ *
2867
+ * [Errors]
2868
+ * - Unauthenticated: token is missing, expired, or invalid
2869
+ * - InvalidArgument: request is invalid
2870
+ * - NotFound: custom domain does not exist
2871
+ *
2872
+ * @generated from rpc tailor.v1.OperatorService.GetCustomDomain
2873
+ */
2874
+ getCustomDomain: {
2875
+ methodKind: "unary";
2876
+ input: typeof GetCustomDomainRequestSchema;
2877
+ output: typeof GetCustomDomainResponseSchema;
2878
+ };
2879
+ /**
2880
+ * ListCustomDomains lists custom domains for a static website.
2881
+ *
2882
+ * [Errors]
2883
+ * - Unauthenticated: token is missing, expired, or invalid
2884
+ * - InvalidArgument: request is invalid
2885
+ * - NotFound: static website does not exist
2886
+ *
2887
+ * @generated from rpc tailor.v1.OperatorService.ListCustomDomains
2888
+ */
2889
+ listCustomDomains: {
2890
+ methodKind: "unary";
2891
+ input: typeof ListCustomDomainsRequestSchema;
2892
+ output: typeof ListCustomDomainsResponseSchema;
2893
+ };
2894
+ /**
2895
+ * RemoveCustomDomain removes a custom domain.
2896
+ *
2897
+ * [Errors]
2898
+ * - Unauthenticated: token is missing, expired, or invalid
2899
+ * - InvalidArgument: request is invalid
2900
+ * - NotFound: custom domain does not exist
2901
+ * - FailedPrecondition: domain DNS is still active, remove DNS record before deleting
2902
+ *
2903
+ * @generated from rpc tailor.v1.OperatorService.RemoveCustomDomain
2904
+ */
2905
+ removeCustomDomain: {
2906
+ methodKind: "unary";
2907
+ input: typeof RemoveCustomDomainRequestSchema;
2908
+ output: typeof RemoveCustomDomainResponseSchema;
2909
+ };
2910
+ /**
2911
+ * CreateDeployment creates a new deployment.
2912
+ *
2913
+ * [Errors]
2914
+ * - Unauthenticated: token is missing, expired, or invalid
2915
+ * - InvalidArgument: request is invalid
2916
+ * - NotFound: workspace does not exist or can not be accessed
2917
+ *
2918
+ * @generated from rpc tailor.v1.OperatorService.CreateDeployment
2919
+ */
2920
+ createDeployment: {
2921
+ methodKind: "unary";
2922
+ input: typeof CreateDeploymentRequestSchema;
2923
+ output: typeof CreateDeploymentResponseSchema;
2924
+ };
2925
+ /**
2926
+ * UploadFile uploads a file to a deployment.
2927
+ *
2928
+ * [Errors]
2929
+ * - Unauthenticated: token is missing, expired, or invalid
2930
+ * - InvalidArgument: request is invalid
2931
+ * - NotFound: deployment does not exist or can not be accessed
2932
+ *
2933
+ * @generated from rpc tailor.v1.OperatorService.UploadFile
2934
+ */
2935
+ uploadFile: {
2936
+ methodKind: "client_streaming";
2937
+ input: typeof UploadFileRequestSchema;
2938
+ output: typeof UploadFileResponseSchema;
2939
+ };
2940
+ /**
2941
+ * PublishDeployment publishes a deployment.
2942
+ *
2943
+ * [Errors]
2944
+ * - Unauthenticated: token is missing, expired, or invalid
2945
+ * - InvalidArgument: request is invalid
2946
+ * - NotFound: deployment does not exist or can not be accessed
2947
+ *
2948
+ * @generated from rpc tailor.v1.OperatorService.PublishDeployment
2949
+ */
2950
+ publishDeployment: {
2951
+ methodKind: "unary";
2952
+ input: typeof PublishDeploymentRequestSchema;
2953
+ output: typeof PublishDeploymentResponseSchema;
2954
+ };
2955
+ /**
2956
+ * CreateWorkflow creates a new workflow.
2957
+ *
2958
+ * [Errors]
2959
+ * - Unauthenticated: token is missing, expired, or invalid
2960
+ * - InvalidArgument: request is invalid
2961
+ * - NotFound: workspace does not exist or can not be accessed
2962
+ *
2963
+ * @generated from rpc tailor.v1.OperatorService.CreateWorkflow
2964
+ */
2965
+ createWorkflow: {
2966
+ methodKind: "unary";
2967
+ input: typeof CreateWorkflowRequestSchema;
2968
+ output: typeof CreateWorkflowResponseSchema;
2969
+ };
2970
+ /**
2971
+ * UpdateWorkflow updates a workflow.
2972
+ *
2973
+ * [Errors]
2974
+ * - Unauthenticated: token is missing, expired, or invalid
2975
+ * - InvalidArgument: request is invalid
2976
+ * - NotFound: workflow does not exist or can not be accessed
2977
+ *
2978
+ * @generated from rpc tailor.v1.OperatorService.UpdateWorkflow
2979
+ */
2980
+ updateWorkflow: {
2981
+ methodKind: "unary";
2982
+ input: typeof UpdateWorkflowRequestSchema;
2983
+ output: typeof UpdateWorkflowResponseSchema;
2984
+ };
2985
+ /**
2986
+ * DeleteWorkflow deletes a workflow.
2987
+ *
2988
+ * [Errors]
2989
+ * - Unauthenticated: token is missing, expired, or invalid
2990
+ * - InvalidArgument: request is invalid
2991
+ * - NotFound: workflow does not exist or can not be accessed
2992
+ *
2993
+ * @generated from rpc tailor.v1.OperatorService.DeleteWorkflow
2994
+ */
2995
+ deleteWorkflow: {
2996
+ methodKind: "unary";
2997
+ input: typeof DeleteWorkflowRequestSchema;
2998
+ output: typeof DeleteWorkflowResponseSchema;
2999
+ };
3000
+ /**
3001
+ * GetWorkflow returns a workflow.
3002
+ *
3003
+ * [Errors]
3004
+ * - Unauthenticated: token is missing, expired, or invalid
3005
+ * - InvalidArgument: request is invalid
3006
+ * - NotFound: workflow does not exist or can not be accessed
3007
+ *
3008
+ * @generated from rpc tailor.v1.OperatorService.GetWorkflow
3009
+ */
3010
+ getWorkflow: {
3011
+ methodKind: "unary";
3012
+ input: typeof GetWorkflowRequestSchema;
3013
+ output: typeof GetWorkflowResponseSchema;
3014
+ };
3015
+ /**
3016
+ * GetWorkflowByName returns a workflow by name.
3017
+ *
3018
+ * [Errors]
3019
+ * - Unauthenticated: token is missing, expired, or invalid
3020
+ * - InvalidArgument: request is invalid
3021
+ * - NotFound: workflow does not exist or can not be accessed
3022
+ *
3023
+ * @generated from rpc tailor.v1.OperatorService.GetWorkflowByName
3024
+ */
3025
+ getWorkflowByName: {
3026
+ methodKind: "unary";
3027
+ input: typeof GetWorkflowByNameRequestSchema;
3028
+ output: typeof GetWorkflowByNameResponseSchema;
3029
+ };
3030
+ /**
3031
+ * ListWorkflows returns workflows in a given workspace.
3032
+ *
3033
+ * [Errors]
3034
+ * - Unauthenticated: token is missing, expired, or invalid
3035
+ * - InvalidArgument: request is invalid
3036
+ *
3037
+ * @generated from rpc tailor.v1.OperatorService.ListWorkflows
3038
+ */
3039
+ listWorkflows: {
3040
+ methodKind: "unary";
3041
+ input: typeof ListWorkflowsRequestSchema;
3042
+ output: typeof ListWorkflowsResponseSchema;
3043
+ };
3044
+ /**
3045
+ * CreateWorkflowJobFunction creates a new workflow job function.
3046
+ *
3047
+ * [Errors]
3048
+ * - Unauthenticated: token is missing, expired, or invalid
3049
+ * - InvalidArgument: request is invalid
3050
+ * - NotFound: workspace does not exist or can not be accessed
3051
+ *
3052
+ * @generated from rpc tailor.v1.OperatorService.CreateWorkflowJobFunction
3053
+ */
3054
+ createWorkflowJobFunction: {
3055
+ methodKind: "unary";
3056
+ input: typeof CreateWorkflowJobFunctionRequestSchema;
3057
+ output: typeof CreateWorkflowJobFunctionResponseSchema;
3058
+ };
3059
+ /**
3060
+ * UpdateWorkflowJobFunction updates a workflow job function.
3061
+ *
3062
+ * [Errors]
3063
+ * - Unauthenticated: token is missing, expired, or invalid
3064
+ * - InvalidArgument: request is invalid
3065
+ * - NotFound: job function does not exist or can not be accessed
3066
+ *
3067
+ * @generated from rpc tailor.v1.OperatorService.UpdateWorkflowJobFunction
3068
+ */
3069
+ updateWorkflowJobFunction: {
3070
+ methodKind: "unary";
3071
+ input: typeof UpdateWorkflowJobFunctionRequestSchema;
3072
+ output: typeof UpdateWorkflowJobFunctionResponseSchema;
3073
+ };
3074
+ /**
3075
+ * DeleteWorkflowJobFunction deletes a workflow job function (all versions) by name.
3076
+ *
3077
+ * [Errors]
3078
+ * - Unauthenticated: token is missing, expired, or invalid
3079
+ * - InvalidArgument: request is invalid
3080
+ * - NotFound: job function does not exist or can not be accessed
3081
+ * - FailedPrecondition: job function is still referenced by one or more workflows
3082
+ *
3083
+ * @generated from rpc tailor.v1.OperatorService.DeleteWorkflowJobFunction
3084
+ */
3085
+ deleteWorkflowJobFunction: {
3086
+ methodKind: "unary";
3087
+ input: typeof DeleteWorkflowJobFunctionRequestSchema;
3088
+ output: typeof DeleteWorkflowJobFunctionResponseSchema;
3089
+ };
3090
+ /**
3091
+ * GetWorkflowJobFunction returns a workflow job function.
3092
+ *
3093
+ * [Errors]
3094
+ * - Unauthenticated: token is missing, expired, or invalid
3095
+ * - InvalidArgument: request is invalid
3096
+ * - NotFound: job function does not exist or can not be accessed
3097
+ *
3098
+ * @generated from rpc tailor.v1.OperatorService.GetWorkflowJobFunction
3099
+ */
3100
+ getWorkflowJobFunction: {
3101
+ methodKind: "unary";
3102
+ input: typeof GetWorkflowJobFunctionRequestSchema;
3103
+ output: typeof GetWorkflowJobFunctionResponseSchema;
3104
+ };
3105
+ /**
3106
+ * GetWorkflowJobFunctionByName returns a workflow job function by name.
3107
+ *
3108
+ * [Errors]
3109
+ * - Unauthenticated: token is missing, expired, or invalid
3110
+ * - InvalidArgument: request is invalid
3111
+ * - NotFound: job function does not exist or can not be accessed
3112
+ *
3113
+ * @generated from rpc tailor.v1.OperatorService.GetWorkflowJobFunctionByName
3114
+ */
3115
+ getWorkflowJobFunctionByName: {
3116
+ methodKind: "unary";
3117
+ input: typeof GetWorkflowJobFunctionByNameRequestSchema;
3118
+ output: typeof GetWorkflowJobFunctionByNameResponseSchema;
3119
+ };
3120
+ /**
3121
+ * ListWorkflowJobFunctions returns workflow job functions in a given workspace.
3122
+ *
3123
+ * [Errors]
3124
+ * - Unauthenticated: token is missing, expired, or invalid
3125
+ * - InvalidArgument: request is invalid
3126
+ *
3127
+ * @generated from rpc tailor.v1.OperatorService.ListWorkflowJobFunctions
3128
+ */
3129
+ listWorkflowJobFunctions: {
3130
+ methodKind: "unary";
3131
+ input: typeof ListWorkflowJobFunctionsRequestSchema;
3132
+ output: typeof ListWorkflowJobFunctionsResponseSchema;
3133
+ };
3134
+ /**
3135
+ * GetWorkflowExecution returns a workflow execution.
3136
+ *
3137
+ * [Errors]
3138
+ * - Unauthenticated: token is missing, expired, or invalid
3139
+ * - InvalidArgument: request is invalid
3140
+ * - NotFound: execution does not exist or can not be accessed
3141
+ *
3142
+ * @generated from rpc tailor.v1.OperatorService.GetWorkflowExecution
3143
+ */
3144
+ getWorkflowExecution: {
3145
+ methodKind: "unary";
3146
+ input: typeof GetWorkflowExecutionRequestSchema;
3147
+ output: typeof GetWorkflowExecutionResponseSchema;
3148
+ };
3149
+ /**
3150
+ * ListWorkflowExecutions returns workflow executions in a given workspace.
3151
+ *
3152
+ * [Errors]
3153
+ * - Unauthenticated: token is missing, expired, or invalid
3154
+ * - InvalidArgument: request is invalid
3155
+ *
3156
+ * @generated from rpc tailor.v1.OperatorService.ListWorkflowExecutions
3157
+ */
3158
+ listWorkflowExecutions: {
3159
+ methodKind: "unary";
3160
+ input: typeof ListWorkflowExecutionsRequestSchema;
3161
+ output: typeof ListWorkflowExecutionsResponseSchema;
3162
+ };
3163
+ /**
3164
+ * TestStartWorkflow starts a workflow execution for testing purposes.
3165
+ *
3166
+ * [Errors]
3167
+ * - Unauthenticated: token is missing, expired, or invalid
3168
+ * - InvalidArgument: request is invalid
3169
+ * - NotFound: workflow does not exist or can not be accessed
3170
+ *
3171
+ * @generated from rpc tailor.v1.OperatorService.TestStartWorkflow
3172
+ */
3173
+ testStartWorkflow: {
3174
+ methodKind: "unary";
3175
+ input: typeof TestStartWorkflowRequestSchema;
3176
+ output: typeof TestStartWorkflowResponseSchema;
3177
+ };
3178
+ /**
3179
+ * TestResumeWorkflow resumes a failed workflow execution for testing purposes.
3180
+ *
3181
+ * [Errors]
3182
+ * - Unauthenticated: token is missing, expired, or invalid
3183
+ * - InvalidArgument: request is invalid
3184
+ * - NotFound: execution does not exist or can not be accessed
3185
+ * - FailedPrecondition: execution is not in a resumable state
3186
+ *
3187
+ * @generated from rpc tailor.v1.OperatorService.TestResumeWorkflow
3188
+ */
3189
+ testResumeWorkflow: {
3190
+ methodKind: "unary";
3191
+ input: typeof TestResumeWorkflowRequestSchema;
3192
+ output: typeof TestResumeWorkflowResponseSchema;
3193
+ };
3194
+ /**
3195
+ * CreateWorkflowJobFunctionExecutionPolicy creates a new workflow job function execution policy.
3196
+ *
3197
+ * [Errors]
3198
+ * - Unauthenticated: token is missing, expired, or invalid
3199
+ * - InvalidArgument: request is invalid
3200
+ * - AlreadyExists: policy already exists with the given execution_policy_key
3201
+ *
3202
+ * @generated from rpc tailor.v1.OperatorService.CreateWorkflowJobFunctionExecutionPolicy
3203
+ */
3204
+ createWorkflowJobFunctionExecutionPolicy: {
3205
+ methodKind: "unary";
3206
+ input: typeof CreateWorkflowJobFunctionExecutionPolicyRequestSchema;
3207
+ output: typeof CreateWorkflowJobFunctionExecutionPolicyResponseSchema;
3208
+ };
3209
+ /**
3210
+ * UpdateWorkflowJobFunctionExecutionPolicy updates a workflow job function execution policy.
3211
+ *
3212
+ * [Errors]
3213
+ * - Unauthenticated: token is missing, expired, or invalid
3214
+ * - InvalidArgument: request is invalid
3215
+ * - NotFound: policy does not exist or can not be accessed
3216
+ *
3217
+ * @generated from rpc tailor.v1.OperatorService.UpdateWorkflowJobFunctionExecutionPolicy
3218
+ */
3219
+ updateWorkflowJobFunctionExecutionPolicy: {
3220
+ methodKind: "unary";
3221
+ input: typeof UpdateWorkflowJobFunctionExecutionPolicyRequestSchema;
3222
+ output: typeof UpdateWorkflowJobFunctionExecutionPolicyResponseSchema;
3223
+ };
3224
+ /**
3225
+ * DeleteWorkflowJobFunctionExecutionPolicy deletes a workflow job function execution policy.
3226
+ *
3227
+ * [Errors]
3228
+ * - Unauthenticated: token is missing, expired, or invalid
3229
+ * - InvalidArgument: request is invalid
3230
+ * - NotFound: policy does not exist or can not be accessed
3231
+ *
3232
+ * @generated from rpc tailor.v1.OperatorService.DeleteWorkflowJobFunctionExecutionPolicy
3233
+ */
3234
+ deleteWorkflowJobFunctionExecutionPolicy: {
3235
+ methodKind: "unary";
3236
+ input: typeof DeleteWorkflowJobFunctionExecutionPolicyRequestSchema;
3237
+ output: typeof DeleteWorkflowJobFunctionExecutionPolicyResponseSchema;
3238
+ };
3239
+ /**
3240
+ * GetWorkflowJobFunctionExecutionPolicy returns a workflow job function execution policy by name.
3241
+ *
3242
+ * [Errors]
3243
+ * - Unauthenticated: token is missing, expired, or invalid
3244
+ * - InvalidArgument: request is invalid
3245
+ * - NotFound: policy does not exist or can not be accessed
3246
+ *
3247
+ * @generated from rpc tailor.v1.OperatorService.GetWorkflowJobFunctionExecutionPolicy
3248
+ */
3249
+ getWorkflowJobFunctionExecutionPolicy: {
3250
+ methodKind: "unary";
3251
+ input: typeof GetWorkflowJobFunctionExecutionPolicyRequestSchema;
3252
+ output: typeof GetWorkflowJobFunctionExecutionPolicyResponseSchema;
3253
+ };
3254
+ /**
3255
+ * GetWorkflowJobFunctionExecutionPolicyByKey returns a workflow job function execution policy by its key.
3256
+ *
3257
+ * [Errors]
3258
+ * - Unauthenticated: token is missing, expired, or invalid
3259
+ * - InvalidArgument: request is invalid
3260
+ * - NotFound: policy does not exist or can not be accessed
3261
+ *
3262
+ * @generated from rpc tailor.v1.OperatorService.GetWorkflowJobFunctionExecutionPolicyByKey
3263
+ */
3264
+ getWorkflowJobFunctionExecutionPolicyByKey: {
3265
+ methodKind: "unary";
3266
+ input: typeof GetWorkflowJobFunctionExecutionPolicyByKeyRequestSchema;
3267
+ output: typeof GetWorkflowJobFunctionExecutionPolicyByKeyResponseSchema;
3268
+ };
3269
+ /**
3270
+ * ListWorkflowJobFunctionExecutionPolicies returns workflow job function execution policies in a given workspace.
3271
+ *
3272
+ * [Errors]
3273
+ * - Unauthenticated: token is missing, expired, or invalid
3274
+ * - InvalidArgument: request is invalid
3275
+ *
3276
+ * @generated from rpc tailor.v1.OperatorService.ListWorkflowJobFunctionExecutionPolicies
3277
+ */
3278
+ listWorkflowJobFunctionExecutionPolicies: {
3279
+ methodKind: "unary";
3280
+ input: typeof ListWorkflowJobFunctionExecutionPoliciesRequestSchema;
3281
+ output: typeof ListWorkflowJobFunctionExecutionPoliciesResponseSchema;
3282
+ };
3283
+ /**
3284
+ * SetMetadata sets metadata labels for a resource.
3285
+ *
3286
+ * [Errors]
3287
+ * - Unauthenticated: token is missing, expired, or invalid
3288
+ * - InvalidArgument: request is invalid or TRN format is incorrect
3289
+ * - NotFound: resource does not exist or can not be accessed
3290
+ *
3291
+ * @generated from rpc tailor.v1.OperatorService.SetMetadata
3292
+ */
3293
+ setMetadata: {
3294
+ methodKind: "unary";
3295
+ input: typeof SetMetadataRequestSchema;
3296
+ output: typeof SetMetadataResponseSchema;
3297
+ };
3298
+ /**
3299
+ * GetMetadata retrieves metadata labels for a resource.
3300
+ *
3301
+ * [Errors]
3302
+ * - Unauthenticated: token is missing, expired, or invalid
3303
+ * - InvalidArgument: request is invalid or TRN format is incorrect
3304
+ * - NotFound: resource does not exist or can not be accessed
3305
+ *
3306
+ * @generated from rpc tailor.v1.OperatorService.GetMetadata
3307
+ */
3308
+ getMetadata: {
3309
+ methodKind: "unary";
3310
+ input: typeof GetMetadataRequestSchema;
3311
+ output: typeof GetMetadataResponseSchema;
3312
+ };
3313
+ /**
3314
+ * CreateControlplaneMachineUser creates a Controlplane Machine User for organization or folder.
3315
+ *
3316
+ * [Errors]
3317
+ * - Unauthenticated: token is missing, expired, or invalid
3318
+ * - InvalidArgument: request is invalid
3319
+ * - PermissionDenied: no permission to create machine user on the parent resource
3320
+ * - NotFound: parent resource (organization or folder) does not exist
3321
+ * - AlreadyExists: machine user with the same name already exists in the parent
3322
+ *
3323
+ * @generated from rpc tailor.v1.OperatorService.CreateControlplaneMachineUser
3324
+ */
3325
+ createControlplaneMachineUser: {
3326
+ methodKind: "unary";
3327
+ input: typeof CreateControlplaneMachineUserRequestSchema;
3328
+ output: typeof CreateControlplaneMachineUserResponseSchema;
3329
+ };
3330
+ /**
3331
+ * UpdateControlplaneMachineUser updates a Controlplane Machine User.
3332
+ *
3333
+ * [Errors]
3334
+ * - Unauthenticated: token is missing, expired, or invalid
3335
+ * - InvalidArgument: request is invalid
3336
+ * - PermissionDenied: no permission to update machine user on the parent resource
3337
+ * - NotFound: machine user does not exist
3338
+ *
3339
+ * @generated from rpc tailor.v1.OperatorService.UpdateControlplaneMachineUser
3340
+ */
3341
+ updateControlplaneMachineUser: {
3342
+ methodKind: "unary";
3343
+ input: typeof UpdateControlplaneMachineUserRequestSchema;
3344
+ output: typeof UpdateControlplaneMachineUserResponseSchema;
3345
+ };
3346
+ /**
3347
+ * GetControlplaneMachineUser returns a Controlplane Machine User.
3348
+ *
3349
+ * [Errors]
3350
+ * - Unauthenticated: token is missing, expired, or invalid
3351
+ * - InvalidArgument: request is invalid
3352
+ * - PermissionDenied: no permission to view machine user on the parent resource
3353
+ * - NotFound: machine user does not exist
3354
+ *
3355
+ * @generated from rpc tailor.v1.OperatorService.GetControlplaneMachineUser
3356
+ */
3357
+ getControlplaneMachineUser: {
3358
+ methodKind: "unary";
3359
+ input: typeof GetControlplaneMachineUserRequestSchema;
3360
+ output: typeof GetControlplaneMachineUserResponseSchema;
3361
+ };
3362
+ /**
3363
+ * GetControlplaneMachineUserByName returns a Controlplane Machine User by name.
3364
+ *
3365
+ * [Errors]
3366
+ * - Unauthenticated: token is missing, expired, or invalid
3367
+ * - InvalidArgument: request is invalid
3368
+ * - PermissionDenied: no permission to view machine user on the parent resource
3369
+ * - NotFound: machine user does not exist
3370
+ *
3371
+ * @generated from rpc tailor.v1.OperatorService.GetControlplaneMachineUserByName
3372
+ */
3373
+ getControlplaneMachineUserByName: {
3374
+ methodKind: "unary";
3375
+ input: typeof GetControlplaneMachineUserByNameRequestSchema;
3376
+ output: typeof GetControlplaneMachineUserByNameResponseSchema;
3377
+ };
3378
+ /**
3379
+ * ListControlplaneMachineUsers lists Controlplane Machine Users in organization or folder.
3380
+ *
3381
+ * [Errors]
3382
+ * - Unauthenticated: token is missing, expired, or invalid
3383
+ * - InvalidArgument: request is invalid
3384
+ * - PermissionDenied: no permission to list machine users on the parent resource
3385
+ * - NotFound: parent resource does not exist
3386
+ *
3387
+ * @generated from rpc tailor.v1.OperatorService.ListControlplaneMachineUsers
3388
+ */
3389
+ listControlplaneMachineUsers: {
3390
+ methodKind: "unary";
3391
+ input: typeof ListControlplaneMachineUsersRequestSchema;
3392
+ output: typeof ListControlplaneMachineUsersResponseSchema;
3393
+ };
3394
+ /**
3395
+ * DeleteControlplaneMachineUser deletes a Controlplane Machine User.
3396
+ *
3397
+ * [Errors]
3398
+ * - Unauthenticated: token is missing, expired, or invalid
3399
+ * - InvalidArgument: request is invalid
3400
+ * - PermissionDenied: no permission to delete machine user on the parent resource
3401
+ * - NotFound: machine user does not exist
3402
+ *
3403
+ * @generated from rpc tailor.v1.OperatorService.DeleteControlplaneMachineUser
3404
+ */
3405
+ deleteControlplaneMachineUser: {
3406
+ methodKind: "unary";
3407
+ input: typeof DeleteControlplaneMachineUserRequestSchema;
3408
+ output: typeof DeleteControlplaneMachineUserResponseSchema;
3409
+ };
3410
+ /**
3411
+ * CreateOTLPExporter creates a new OTLP exporter configuration.
3412
+ *
3413
+ * [Errors]
3414
+ * - Unauthenticated: token is missing, expired, or invalid
3415
+ * - InvalidArgument: request is invalid
3416
+ * - PermissionDenied: can view workspace but no permission to update
3417
+ * - NotFound: workspace does not exist or can not be accessed
3418
+ * - AlreadyExists: OTLP exporter with the same name already exists
3419
+ *
3420
+ * @generated from rpc tailor.v1.OperatorService.CreateOTLPExporter
3421
+ */
3422
+ createOTLPExporter: {
3423
+ methodKind: "unary";
3424
+ input: typeof CreateOTLPExporterRequestSchema;
3425
+ output: typeof CreateOTLPExporterResponseSchema;
3426
+ };
3427
+ /**
3428
+ * UpdateOTLPExporter updates an existing OTLP exporter configuration.
3429
+ *
3430
+ * [Errors]
3431
+ * - Unauthenticated: token is missing, expired, or invalid
3432
+ * - InvalidArgument: request is invalid
3433
+ * - PermissionDenied: can view workspace but no permission to update
3434
+ * - NotFound: workspace or OTLP exporter does not exist or can not be accessed
3435
+ *
3436
+ * @generated from rpc tailor.v1.OperatorService.UpdateOTLPExporter
3437
+ */
3438
+ updateOTLPExporter: {
3439
+ methodKind: "unary";
3440
+ input: typeof UpdateOTLPExporterRequestSchema;
3441
+ output: typeof UpdateOTLPExporterResponseSchema;
3442
+ };
3443
+ /**
3444
+ * GetOTLPExporter returns an OTLP exporter configuration.
3445
+ *
3446
+ * [Errors]
3447
+ * - Unauthenticated: token is missing, expired, or invalid
3448
+ * - InvalidArgument: request is invalid
3449
+ * - NotFound: workspace or OTLP exporter does not exist or can not be accessed
3450
+ *
3451
+ * @generated from rpc tailor.v1.OperatorService.GetOTLPExporter
3452
+ */
3453
+ getOTLPExporter: {
3454
+ methodKind: "unary";
3455
+ input: typeof GetOTLPExporterRequestSchema;
3456
+ output: typeof GetOTLPExporterResponseSchema;
3457
+ };
3458
+ /**
3459
+ * ListOTLPExporters returns OTLP exporter configurations in a workspace.
3460
+ *
3461
+ * [Errors]
3462
+ * - Unauthenticated: token is missing, expired, or invalid
3463
+ * - InvalidArgument: request is invalid
3464
+ * - NotFound: workspace does not exist or can not be accessed
3465
+ *
3466
+ * @generated from rpc tailor.v1.OperatorService.ListOTLPExporters
3467
+ */
3468
+ listOTLPExporters: {
3469
+ methodKind: "unary";
3470
+ input: typeof ListOTLPExportersRequestSchema;
3471
+ output: typeof ListOTLPExportersResponseSchema;
3472
+ };
3473
+ /**
3474
+ * DeleteOTLPExporter deletes an OTLP exporter configuration.
3475
+ *
3476
+ * [Errors]
3477
+ * - Unauthenticated: token is missing, expired, or invalid
3478
+ * - InvalidArgument: request is invalid
3479
+ * - PermissionDenied: can view workspace but no permission to delete
3480
+ * - NotFound: workspace or OTLP exporter does not exist or can not be accessed
3481
+ *
3482
+ * @generated from rpc tailor.v1.OperatorService.DeleteOTLPExporter
3483
+ */
3484
+ deleteOTLPExporter: {
3485
+ methodKind: "unary";
3486
+ input: typeof DeleteOTLPExporterRequestSchema;
3487
+ output: typeof DeleteOTLPExporterResponseSchema;
3488
+ };
3489
+ /**
3490
+ * TestOTLPExporter sends a test span to validate endpoint reachability.
3491
+ *
3492
+ * [Errors]
3493
+ * - Unauthenticated: token is missing, expired, or invalid
3494
+ * - InvalidArgument: request is invalid
3495
+ * - PermissionDenied: can view workspace but no permission to update
3496
+ * - NotFound: workspace or OTLP exporter does not exist or can not be accessed
3497
+ *
3498
+ * @generated from rpc tailor.v1.OperatorService.TestOTLPExporter
3499
+ */
3500
+ testOTLPExporter: {
3501
+ methodKind: "unary";
3502
+ input: typeof TestOTLPExporterRequestSchema;
3503
+ output: typeof TestOTLPExporterResponseSchema;
3504
+ };
3505
+ /**
3506
+ * CreateResourceAttributesConfig creates the workspace-level resource
3507
+ * attributes enrichment configuration (singleton per workspace).
3508
+ *
3509
+ * [Errors]
3510
+ * - Unauthenticated: token is missing, expired, or invalid
3511
+ * - InvalidArgument: request is invalid
3512
+ * - PermissionDenied: can view workspace but no permission to create
3513
+ * - AlreadyExists: config already exists for this workspace
3514
+ *
3515
+ * @generated from rpc tailor.v1.OperatorService.CreateResourceAttributesConfig
3516
+ */
3517
+ createResourceAttributesConfig: {
3518
+ methodKind: "unary";
3519
+ input: typeof CreateResourceAttributesConfigRequestSchema;
3520
+ output: typeof CreateResourceAttributesConfigResponseSchema;
3521
+ };
3522
+ /**
3523
+ * GetResourceAttributesConfig returns the workspace-level resource
3524
+ * attributes enrichment configuration.
3525
+ *
3526
+ * [Errors]
3527
+ * - Unauthenticated: token is missing, expired, or invalid
3528
+ * - InvalidArgument: request is invalid
3529
+ * - PermissionDenied: can view workspace but no permission to read
3530
+ * - NotFound: config does not exist for this workspace
3531
+ *
3532
+ * @generated from rpc tailor.v1.OperatorService.GetResourceAttributesConfig
3533
+ */
3534
+ getResourceAttributesConfig: {
3535
+ methodKind: "unary";
3536
+ input: typeof GetResourceAttributesConfigRequestSchema;
3537
+ output: typeof GetResourceAttributesConfigResponseSchema;
3538
+ };
3539
+ /**
3540
+ * UpdateResourceAttributesConfig updates the workspace-level resource
3541
+ * attributes enrichment configuration.
3542
+ *
3543
+ * [Errors]
3544
+ * - Unauthenticated: token is missing, expired, or invalid
3545
+ * - InvalidArgument: request is invalid
3546
+ * - PermissionDenied: can view workspace but no permission to update
3547
+ * - NotFound: config does not exist for this workspace
3548
+ *
3549
+ * @generated from rpc tailor.v1.OperatorService.UpdateResourceAttributesConfig
3550
+ */
3551
+ updateResourceAttributesConfig: {
3552
+ methodKind: "unary";
3553
+ input: typeof UpdateResourceAttributesConfigRequestSchema;
3554
+ output: typeof UpdateResourceAttributesConfigResponseSchema;
3555
+ };
3556
+ /**
3557
+ * DeleteResourceAttributesConfig deletes the workspace-level resource
3558
+ * attributes enrichment configuration.
3559
+ *
3560
+ * [Errors]
3561
+ * - Unauthenticated: token is missing, expired, or invalid
3562
+ * - InvalidArgument: request is invalid
3563
+ * - PermissionDenied: can view workspace but no permission to delete
3564
+ * - NotFound: config does not exist for this workspace
3565
+ *
3566
+ * @generated from rpc tailor.v1.OperatorService.DeleteResourceAttributesConfig
3567
+ */
3568
+ deleteResourceAttributesConfig: {
3569
+ methodKind: "unary";
3570
+ input: typeof DeleteResourceAttributesConfigRequestSchema;
3571
+ output: typeof DeleteResourceAttributesConfigResponseSchema;
3572
+ };
3573
+ }>;
3574
+ //#endregion
3575
+ export { OperatorService, PingRequest, PingRequestSchema, PingResponse, PingResponseSchema };