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

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