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