@tailor-platform/sdk 1.71.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 +46 -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 +801 -206
- 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 +124 -25
- 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/cli/setup.md +129 -19
- package/docs/cli-reference.md +9 -4
- 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,2070 @@
|
|
|
1
|
+
import { PageDirection } from "./resource_pb.mjs";
|
|
2
|
+
import { AuthConnection, AuthHook, AuthHookPoint, AuthIDPConfig, AuthOAuth2Client, AuthSCIMConfig, AuthSCIMResource, AuthService, ControlplaneMachineUser, MachineUser, PATScope, PersonalAccessToken, TenantProviderConfig, UserProfileProviderConfig } from "./auth_resource_pb.mjs";
|
|
3
|
+
import { Message } from "@bufbuild/protobuf";
|
|
4
|
+
import { GenMessage } from "@bufbuild/protobuf/codegenv2";
|
|
5
|
+
import { FieldMask, Timestamp, Value } from "@bufbuild/protobuf/wkt";
|
|
6
|
+
|
|
7
|
+
//#region ../tailor-proto/src/tailor/v1/auth_pb.d.ts
|
|
8
|
+
/**
|
|
9
|
+
* @generated from message tailor.v1.CreateAuthServiceRequest
|
|
10
|
+
*/
|
|
11
|
+
declare type CreateAuthServiceRequest = Message<"tailor.v1.CreateAuthServiceRequest"> & {
|
|
12
|
+
/**
|
|
13
|
+
* @generated from field: string workspace_id = 1;
|
|
14
|
+
*/
|
|
15
|
+
workspaceId: string;
|
|
16
|
+
/**
|
|
17
|
+
* @generated from field: string namespace_name = 2;
|
|
18
|
+
*/
|
|
19
|
+
namespaceName: string;
|
|
20
|
+
/**
|
|
21
|
+
* Enable publishing session lifecycle events (issued, revoked, refreshed).
|
|
22
|
+
*
|
|
23
|
+
* @generated from field: bool publish_session_events = 3;
|
|
24
|
+
*/
|
|
25
|
+
publishSessionEvents: boolean;
|
|
26
|
+
};
|
|
27
|
+
/**
|
|
28
|
+
* Describes the message tailor.v1.CreateAuthServiceRequest.
|
|
29
|
+
* Use `create(CreateAuthServiceRequestSchema)` to create a new message.
|
|
30
|
+
*/
|
|
31
|
+
declare const CreateAuthServiceRequestSchema: GenMessage<CreateAuthServiceRequest>;
|
|
32
|
+
/**
|
|
33
|
+
* @generated from message tailor.v1.CreateAuthServiceResponse
|
|
34
|
+
*/
|
|
35
|
+
declare type CreateAuthServiceResponse = Message<"tailor.v1.CreateAuthServiceResponse"> & {
|
|
36
|
+
/**
|
|
37
|
+
* @generated from field: tailor.v1.AuthService auth_service = 1;
|
|
38
|
+
*/
|
|
39
|
+
authService?: AuthService;
|
|
40
|
+
};
|
|
41
|
+
/**
|
|
42
|
+
* Describes the message tailor.v1.CreateAuthServiceResponse.
|
|
43
|
+
* Use `create(CreateAuthServiceResponseSchema)` to create a new message.
|
|
44
|
+
*/
|
|
45
|
+
declare const CreateAuthServiceResponseSchema: GenMessage<CreateAuthServiceResponse>;
|
|
46
|
+
/**
|
|
47
|
+
* @generated from message tailor.v1.UpdateAuthServiceRequest
|
|
48
|
+
*/
|
|
49
|
+
declare type UpdateAuthServiceRequest = Message<"tailor.v1.UpdateAuthServiceRequest"> & {
|
|
50
|
+
/**
|
|
51
|
+
* @generated from field: string workspace_id = 1;
|
|
52
|
+
*/
|
|
53
|
+
workspaceId: string;
|
|
54
|
+
/**
|
|
55
|
+
* @generated from field: string namespace_name = 2;
|
|
56
|
+
*/
|
|
57
|
+
namespaceName: string;
|
|
58
|
+
/**
|
|
59
|
+
* Enable publishing session lifecycle events (issued, revoked, refreshed).
|
|
60
|
+
*
|
|
61
|
+
* @generated from field: bool publish_session_events = 3;
|
|
62
|
+
*/
|
|
63
|
+
publishSessionEvents: boolean;
|
|
64
|
+
};
|
|
65
|
+
/**
|
|
66
|
+
* Describes the message tailor.v1.UpdateAuthServiceRequest.
|
|
67
|
+
* Use `create(UpdateAuthServiceRequestSchema)` to create a new message.
|
|
68
|
+
*/
|
|
69
|
+
declare const UpdateAuthServiceRequestSchema: GenMessage<UpdateAuthServiceRequest>;
|
|
70
|
+
/**
|
|
71
|
+
* @generated from message tailor.v1.UpdateAuthServiceResponse
|
|
72
|
+
*/
|
|
73
|
+
declare type UpdateAuthServiceResponse = Message<"tailor.v1.UpdateAuthServiceResponse"> & {
|
|
74
|
+
/**
|
|
75
|
+
* @generated from field: tailor.v1.AuthService auth_service = 1;
|
|
76
|
+
*/
|
|
77
|
+
authService?: AuthService;
|
|
78
|
+
};
|
|
79
|
+
/**
|
|
80
|
+
* Describes the message tailor.v1.UpdateAuthServiceResponse.
|
|
81
|
+
* Use `create(UpdateAuthServiceResponseSchema)` to create a new message.
|
|
82
|
+
*/
|
|
83
|
+
declare const UpdateAuthServiceResponseSchema: GenMessage<UpdateAuthServiceResponse>;
|
|
84
|
+
/**
|
|
85
|
+
* @generated from message tailor.v1.DeleteAuthServiceRequest
|
|
86
|
+
*/
|
|
87
|
+
declare type DeleteAuthServiceRequest = Message<"tailor.v1.DeleteAuthServiceRequest"> & {
|
|
88
|
+
/**
|
|
89
|
+
* @generated from field: string workspace_id = 1;
|
|
90
|
+
*/
|
|
91
|
+
workspaceId: string;
|
|
92
|
+
/**
|
|
93
|
+
* @generated from field: string namespace_name = 2;
|
|
94
|
+
*/
|
|
95
|
+
namespaceName: string;
|
|
96
|
+
};
|
|
97
|
+
/**
|
|
98
|
+
* Describes the message tailor.v1.DeleteAuthServiceRequest.
|
|
99
|
+
* Use `create(DeleteAuthServiceRequestSchema)` to create a new message.
|
|
100
|
+
*/
|
|
101
|
+
declare const DeleteAuthServiceRequestSchema: GenMessage<DeleteAuthServiceRequest>;
|
|
102
|
+
/**
|
|
103
|
+
* @generated from message tailor.v1.DeleteAuthServiceResponse
|
|
104
|
+
*/
|
|
105
|
+
declare type DeleteAuthServiceResponse = Message<"tailor.v1.DeleteAuthServiceResponse"> & {};
|
|
106
|
+
/**
|
|
107
|
+
* Describes the message tailor.v1.DeleteAuthServiceResponse.
|
|
108
|
+
* Use `create(DeleteAuthServiceResponseSchema)` to create a new message.
|
|
109
|
+
*/
|
|
110
|
+
declare const DeleteAuthServiceResponseSchema: GenMessage<DeleteAuthServiceResponse>;
|
|
111
|
+
/**
|
|
112
|
+
* @generated from message tailor.v1.GetAuthServiceRequest
|
|
113
|
+
*/
|
|
114
|
+
declare type GetAuthServiceRequest = Message<"tailor.v1.GetAuthServiceRequest"> & {
|
|
115
|
+
/**
|
|
116
|
+
* @generated from field: string workspace_id = 1;
|
|
117
|
+
*/
|
|
118
|
+
workspaceId: string;
|
|
119
|
+
/**
|
|
120
|
+
* @generated from field: string namespace_name = 2;
|
|
121
|
+
*/
|
|
122
|
+
namespaceName: string;
|
|
123
|
+
};
|
|
124
|
+
/**
|
|
125
|
+
* Describes the message tailor.v1.GetAuthServiceRequest.
|
|
126
|
+
* Use `create(GetAuthServiceRequestSchema)` to create a new message.
|
|
127
|
+
*/
|
|
128
|
+
declare const GetAuthServiceRequestSchema: GenMessage<GetAuthServiceRequest>;
|
|
129
|
+
/**
|
|
130
|
+
* @generated from message tailor.v1.GetAuthServiceResponse
|
|
131
|
+
*/
|
|
132
|
+
declare type GetAuthServiceResponse = Message<"tailor.v1.GetAuthServiceResponse"> & {
|
|
133
|
+
/**
|
|
134
|
+
* @generated from field: tailor.v1.AuthService auth_service = 1;
|
|
135
|
+
*/
|
|
136
|
+
authService?: AuthService;
|
|
137
|
+
};
|
|
138
|
+
/**
|
|
139
|
+
* Describes the message tailor.v1.GetAuthServiceResponse.
|
|
140
|
+
* Use `create(GetAuthServiceResponseSchema)` to create a new message.
|
|
141
|
+
*/
|
|
142
|
+
declare const GetAuthServiceResponseSchema: GenMessage<GetAuthServiceResponse>;
|
|
143
|
+
/**
|
|
144
|
+
* @generated from message tailor.v1.ListAuthServicesRequest
|
|
145
|
+
*/
|
|
146
|
+
declare type ListAuthServicesRequest = Message<"tailor.v1.ListAuthServicesRequest"> & {
|
|
147
|
+
/**
|
|
148
|
+
* @generated from field: string workspace_id = 1;
|
|
149
|
+
*/
|
|
150
|
+
workspaceId: string;
|
|
151
|
+
/**
|
|
152
|
+
* @generated from field: string page_token = 2;
|
|
153
|
+
*/
|
|
154
|
+
pageToken: string;
|
|
155
|
+
/**
|
|
156
|
+
* @generated from field: uint32 page_size = 3;
|
|
157
|
+
*/
|
|
158
|
+
pageSize: number;
|
|
159
|
+
/**
|
|
160
|
+
* @generated from field: tailor.v1.PageDirection page_direction = 4;
|
|
161
|
+
*/
|
|
162
|
+
pageDirection: PageDirection;
|
|
163
|
+
};
|
|
164
|
+
/**
|
|
165
|
+
* Describes the message tailor.v1.ListAuthServicesRequest.
|
|
166
|
+
* Use `create(ListAuthServicesRequestSchema)` to create a new message.
|
|
167
|
+
*/
|
|
168
|
+
declare const ListAuthServicesRequestSchema: GenMessage<ListAuthServicesRequest>;
|
|
169
|
+
/**
|
|
170
|
+
* @generated from message tailor.v1.ListAuthServicesResponse
|
|
171
|
+
*/
|
|
172
|
+
declare type ListAuthServicesResponse = Message<"tailor.v1.ListAuthServicesResponse"> & {
|
|
173
|
+
/**
|
|
174
|
+
* @generated from field: repeated tailor.v1.AuthService auth_services = 1;
|
|
175
|
+
*/
|
|
176
|
+
authServices: AuthService[];
|
|
177
|
+
/**
|
|
178
|
+
* @generated from field: string next_page_token = 2;
|
|
179
|
+
*/
|
|
180
|
+
nextPageToken: string;
|
|
181
|
+
/**
|
|
182
|
+
* @generated from field: int64 total_count = 3;
|
|
183
|
+
*/
|
|
184
|
+
totalCount: bigint;
|
|
185
|
+
};
|
|
186
|
+
/**
|
|
187
|
+
* Describes the message tailor.v1.ListAuthServicesResponse.
|
|
188
|
+
* Use `create(ListAuthServicesResponseSchema)` to create a new message.
|
|
189
|
+
*/
|
|
190
|
+
declare const ListAuthServicesResponseSchema: GenMessage<ListAuthServicesResponse>;
|
|
191
|
+
/**
|
|
192
|
+
* @generated from message tailor.v1.CreateAuthIDPConfigRequest
|
|
193
|
+
*/
|
|
194
|
+
declare type CreateAuthIDPConfigRequest = Message<"tailor.v1.CreateAuthIDPConfigRequest"> & {
|
|
195
|
+
/**
|
|
196
|
+
* @generated from field: string workspace_id = 1;
|
|
197
|
+
*/
|
|
198
|
+
workspaceId: string;
|
|
199
|
+
/**
|
|
200
|
+
* @generated from field: string namespace_name = 2;
|
|
201
|
+
*/
|
|
202
|
+
namespaceName: string;
|
|
203
|
+
/**
|
|
204
|
+
* @generated from field: tailor.v1.AuthIDPConfig idp_config = 3;
|
|
205
|
+
*/
|
|
206
|
+
idpConfig?: AuthIDPConfig;
|
|
207
|
+
};
|
|
208
|
+
/**
|
|
209
|
+
* Describes the message tailor.v1.CreateAuthIDPConfigRequest.
|
|
210
|
+
* Use `create(CreateAuthIDPConfigRequestSchema)` to create a new message.
|
|
211
|
+
*/
|
|
212
|
+
declare const CreateAuthIDPConfigRequestSchema: GenMessage<CreateAuthIDPConfigRequest>;
|
|
213
|
+
/**
|
|
214
|
+
* @generated from message tailor.v1.CreateAuthIDPConfigResponse
|
|
215
|
+
*/
|
|
216
|
+
declare type CreateAuthIDPConfigResponse = Message<"tailor.v1.CreateAuthIDPConfigResponse"> & {
|
|
217
|
+
/**
|
|
218
|
+
* @generated from field: tailor.v1.AuthIDPConfig idp_config = 1;
|
|
219
|
+
*/
|
|
220
|
+
idpConfig?: AuthIDPConfig;
|
|
221
|
+
};
|
|
222
|
+
/**
|
|
223
|
+
* Describes the message tailor.v1.CreateAuthIDPConfigResponse.
|
|
224
|
+
* Use `create(CreateAuthIDPConfigResponseSchema)` to create a new message.
|
|
225
|
+
*/
|
|
226
|
+
declare const CreateAuthIDPConfigResponseSchema: GenMessage<CreateAuthIDPConfigResponse>;
|
|
227
|
+
/**
|
|
228
|
+
* @generated from message tailor.v1.UpdateAuthIDPConfigRequest
|
|
229
|
+
*/
|
|
230
|
+
declare type UpdateAuthIDPConfigRequest = Message<"tailor.v1.UpdateAuthIDPConfigRequest"> & {
|
|
231
|
+
/**
|
|
232
|
+
* @generated from field: string workspace_id = 1;
|
|
233
|
+
*/
|
|
234
|
+
workspaceId: string;
|
|
235
|
+
/**
|
|
236
|
+
* @generated from field: string namespace_name = 2;
|
|
237
|
+
*/
|
|
238
|
+
namespaceName: string;
|
|
239
|
+
/**
|
|
240
|
+
* @generated from field: tailor.v1.AuthIDPConfig idp_config = 3;
|
|
241
|
+
*/
|
|
242
|
+
idpConfig?: AuthIDPConfig;
|
|
243
|
+
};
|
|
244
|
+
/**
|
|
245
|
+
* Describes the message tailor.v1.UpdateAuthIDPConfigRequest.
|
|
246
|
+
* Use `create(UpdateAuthIDPConfigRequestSchema)` to create a new message.
|
|
247
|
+
*/
|
|
248
|
+
declare const UpdateAuthIDPConfigRequestSchema: GenMessage<UpdateAuthIDPConfigRequest>;
|
|
249
|
+
/**
|
|
250
|
+
* @generated from message tailor.v1.UpdateAuthIDPConfigResponse
|
|
251
|
+
*/
|
|
252
|
+
declare type UpdateAuthIDPConfigResponse = Message<"tailor.v1.UpdateAuthIDPConfigResponse"> & {
|
|
253
|
+
/**
|
|
254
|
+
* @generated from field: tailor.v1.AuthIDPConfig idp_config = 1;
|
|
255
|
+
*/
|
|
256
|
+
idpConfig?: AuthIDPConfig;
|
|
257
|
+
};
|
|
258
|
+
/**
|
|
259
|
+
* Describes the message tailor.v1.UpdateAuthIDPConfigResponse.
|
|
260
|
+
* Use `create(UpdateAuthIDPConfigResponseSchema)` to create a new message.
|
|
261
|
+
*/
|
|
262
|
+
declare const UpdateAuthIDPConfigResponseSchema: GenMessage<UpdateAuthIDPConfigResponse>;
|
|
263
|
+
/**
|
|
264
|
+
* @generated from message tailor.v1.DeleteAuthIDPConfigRequest
|
|
265
|
+
*/
|
|
266
|
+
declare type DeleteAuthIDPConfigRequest = Message<"tailor.v1.DeleteAuthIDPConfigRequest"> & {
|
|
267
|
+
/**
|
|
268
|
+
* @generated from field: string workspace_id = 1;
|
|
269
|
+
*/
|
|
270
|
+
workspaceId: string;
|
|
271
|
+
/**
|
|
272
|
+
* @generated from field: string namespace_name = 2;
|
|
273
|
+
*/
|
|
274
|
+
namespaceName: string;
|
|
275
|
+
/**
|
|
276
|
+
* @generated from field: string name = 3;
|
|
277
|
+
*/
|
|
278
|
+
name: string;
|
|
279
|
+
};
|
|
280
|
+
/**
|
|
281
|
+
* Describes the message tailor.v1.DeleteAuthIDPConfigRequest.
|
|
282
|
+
* Use `create(DeleteAuthIDPConfigRequestSchema)` to create a new message.
|
|
283
|
+
*/
|
|
284
|
+
declare const DeleteAuthIDPConfigRequestSchema: GenMessage<DeleteAuthIDPConfigRequest>;
|
|
285
|
+
/**
|
|
286
|
+
* @generated from message tailor.v1.DeleteAuthIDPConfigResponse
|
|
287
|
+
*/
|
|
288
|
+
declare type DeleteAuthIDPConfigResponse = Message<"tailor.v1.DeleteAuthIDPConfigResponse"> & {};
|
|
289
|
+
/**
|
|
290
|
+
* Describes the message tailor.v1.DeleteAuthIDPConfigResponse.
|
|
291
|
+
* Use `create(DeleteAuthIDPConfigResponseSchema)` to create a new message.
|
|
292
|
+
*/
|
|
293
|
+
declare const DeleteAuthIDPConfigResponseSchema: GenMessage<DeleteAuthIDPConfigResponse>;
|
|
294
|
+
/**
|
|
295
|
+
* @generated from message tailor.v1.GetAuthIDPConfigRequest
|
|
296
|
+
*/
|
|
297
|
+
declare type GetAuthIDPConfigRequest = Message<"tailor.v1.GetAuthIDPConfigRequest"> & {
|
|
298
|
+
/**
|
|
299
|
+
* @generated from field: string workspace_id = 1;
|
|
300
|
+
*/
|
|
301
|
+
workspaceId: string;
|
|
302
|
+
/**
|
|
303
|
+
* @generated from field: string namespace_name = 2;
|
|
304
|
+
*/
|
|
305
|
+
namespaceName: string;
|
|
306
|
+
/**
|
|
307
|
+
* @generated from field: string name = 3;
|
|
308
|
+
*/
|
|
309
|
+
name: string;
|
|
310
|
+
};
|
|
311
|
+
/**
|
|
312
|
+
* Describes the message tailor.v1.GetAuthIDPConfigRequest.
|
|
313
|
+
* Use `create(GetAuthIDPConfigRequestSchema)` to create a new message.
|
|
314
|
+
*/
|
|
315
|
+
declare const GetAuthIDPConfigRequestSchema: GenMessage<GetAuthIDPConfigRequest>;
|
|
316
|
+
/**
|
|
317
|
+
* @generated from message tailor.v1.GetAuthIDPConfigResponse
|
|
318
|
+
*/
|
|
319
|
+
declare type GetAuthIDPConfigResponse = Message<"tailor.v1.GetAuthIDPConfigResponse"> & {
|
|
320
|
+
/**
|
|
321
|
+
* @generated from field: tailor.v1.AuthIDPConfig idp_config = 1;
|
|
322
|
+
*/
|
|
323
|
+
idpConfig?: AuthIDPConfig;
|
|
324
|
+
};
|
|
325
|
+
/**
|
|
326
|
+
* Describes the message tailor.v1.GetAuthIDPConfigResponse.
|
|
327
|
+
* Use `create(GetAuthIDPConfigResponseSchema)` to create a new message.
|
|
328
|
+
*/
|
|
329
|
+
declare const GetAuthIDPConfigResponseSchema: GenMessage<GetAuthIDPConfigResponse>;
|
|
330
|
+
/**
|
|
331
|
+
* @generated from message tailor.v1.ListAuthIDPConfigsRequest
|
|
332
|
+
*/
|
|
333
|
+
declare type ListAuthIDPConfigsRequest = Message<"tailor.v1.ListAuthIDPConfigsRequest"> & {
|
|
334
|
+
/**
|
|
335
|
+
* @generated from field: string workspace_id = 1;
|
|
336
|
+
*/
|
|
337
|
+
workspaceId: string;
|
|
338
|
+
/**
|
|
339
|
+
* @generated from field: string namespace_name = 2;
|
|
340
|
+
*/
|
|
341
|
+
namespaceName: string;
|
|
342
|
+
/**
|
|
343
|
+
* @generated from field: string page_token = 3;
|
|
344
|
+
*/
|
|
345
|
+
pageToken: string;
|
|
346
|
+
/**
|
|
347
|
+
* @generated from field: uint32 page_size = 4;
|
|
348
|
+
*/
|
|
349
|
+
pageSize: number;
|
|
350
|
+
/**
|
|
351
|
+
* @generated from field: tailor.v1.PageDirection page_direction = 5;
|
|
352
|
+
*/
|
|
353
|
+
pageDirection: PageDirection;
|
|
354
|
+
};
|
|
355
|
+
/**
|
|
356
|
+
* Describes the message tailor.v1.ListAuthIDPConfigsRequest.
|
|
357
|
+
* Use `create(ListAuthIDPConfigsRequestSchema)` to create a new message.
|
|
358
|
+
*/
|
|
359
|
+
declare const ListAuthIDPConfigsRequestSchema: GenMessage<ListAuthIDPConfigsRequest>;
|
|
360
|
+
/**
|
|
361
|
+
* @generated from message tailor.v1.ListAuthIDPConfigsResponse
|
|
362
|
+
*/
|
|
363
|
+
declare type ListAuthIDPConfigsResponse = Message<"tailor.v1.ListAuthIDPConfigsResponse"> & {
|
|
364
|
+
/**
|
|
365
|
+
* @generated from field: repeated tailor.v1.AuthIDPConfig idp_configs = 1;
|
|
366
|
+
*/
|
|
367
|
+
idpConfigs: AuthIDPConfig[];
|
|
368
|
+
/**
|
|
369
|
+
* @generated from field: string next_page_token = 2;
|
|
370
|
+
*/
|
|
371
|
+
nextPageToken: string;
|
|
372
|
+
/**
|
|
373
|
+
* @generated from field: int64 total_count = 3;
|
|
374
|
+
*/
|
|
375
|
+
totalCount: bigint;
|
|
376
|
+
};
|
|
377
|
+
/**
|
|
378
|
+
* Describes the message tailor.v1.ListAuthIDPConfigsResponse.
|
|
379
|
+
* Use `create(ListAuthIDPConfigsResponseSchema)` to create a new message.
|
|
380
|
+
*/
|
|
381
|
+
declare const ListAuthIDPConfigsResponseSchema: GenMessage<ListAuthIDPConfigsResponse>;
|
|
382
|
+
/**
|
|
383
|
+
* @generated from message tailor.v1.CreateUserProfileConfigRequest
|
|
384
|
+
*/
|
|
385
|
+
declare type CreateUserProfileConfigRequest = Message<"tailor.v1.CreateUserProfileConfigRequest"> & {
|
|
386
|
+
/**
|
|
387
|
+
* @generated from field: string workspace_id = 1;
|
|
388
|
+
*/
|
|
389
|
+
workspaceId: string;
|
|
390
|
+
/**
|
|
391
|
+
* @generated from field: string namespace_name = 2;
|
|
392
|
+
*/
|
|
393
|
+
namespaceName: string;
|
|
394
|
+
/**
|
|
395
|
+
* @generated from field: tailor.v1.UserProfileProviderConfig user_profile_provider_config = 3;
|
|
396
|
+
*/
|
|
397
|
+
userProfileProviderConfig?: UserProfileProviderConfig;
|
|
398
|
+
};
|
|
399
|
+
/**
|
|
400
|
+
* Describes the message tailor.v1.CreateUserProfileConfigRequest.
|
|
401
|
+
* Use `create(CreateUserProfileConfigRequestSchema)` to create a new message.
|
|
402
|
+
*/
|
|
403
|
+
declare const CreateUserProfileConfigRequestSchema: GenMessage<CreateUserProfileConfigRequest>;
|
|
404
|
+
/**
|
|
405
|
+
* @generated from message tailor.v1.CreateUserProfileConfigResponse
|
|
406
|
+
*/
|
|
407
|
+
declare type CreateUserProfileConfigResponse = Message<"tailor.v1.CreateUserProfileConfigResponse"> & {
|
|
408
|
+
/**
|
|
409
|
+
* @generated from field: tailor.v1.UserProfileProviderConfig user_profile_provider_config = 1;
|
|
410
|
+
*/
|
|
411
|
+
userProfileProviderConfig?: UserProfileProviderConfig;
|
|
412
|
+
};
|
|
413
|
+
/**
|
|
414
|
+
* Describes the message tailor.v1.CreateUserProfileConfigResponse.
|
|
415
|
+
* Use `create(CreateUserProfileConfigResponseSchema)` to create a new message.
|
|
416
|
+
*/
|
|
417
|
+
declare const CreateUserProfileConfigResponseSchema: GenMessage<CreateUserProfileConfigResponse>;
|
|
418
|
+
/**
|
|
419
|
+
* @generated from message tailor.v1.UpdateUserProfileConfigRequest
|
|
420
|
+
*/
|
|
421
|
+
declare type UpdateUserProfileConfigRequest = Message<"tailor.v1.UpdateUserProfileConfigRequest"> & {
|
|
422
|
+
/**
|
|
423
|
+
* @generated from field: string workspace_id = 1;
|
|
424
|
+
*/
|
|
425
|
+
workspaceId: string;
|
|
426
|
+
/**
|
|
427
|
+
* @generated from field: string namespace_name = 2;
|
|
428
|
+
*/
|
|
429
|
+
namespaceName: string;
|
|
430
|
+
/**
|
|
431
|
+
* @generated from field: tailor.v1.UserProfileProviderConfig user_profile_provider_config = 3;
|
|
432
|
+
*/
|
|
433
|
+
userProfileProviderConfig?: UserProfileProviderConfig;
|
|
434
|
+
};
|
|
435
|
+
/**
|
|
436
|
+
* Describes the message tailor.v1.UpdateUserProfileConfigRequest.
|
|
437
|
+
* Use `create(UpdateUserProfileConfigRequestSchema)` to create a new message.
|
|
438
|
+
*/
|
|
439
|
+
declare const UpdateUserProfileConfigRequestSchema: GenMessage<UpdateUserProfileConfigRequest>;
|
|
440
|
+
/**
|
|
441
|
+
* @generated from message tailor.v1.UpdateUserProfileConfigResponse
|
|
442
|
+
*/
|
|
443
|
+
declare type UpdateUserProfileConfigResponse = Message<"tailor.v1.UpdateUserProfileConfigResponse"> & {
|
|
444
|
+
/**
|
|
445
|
+
* @generated from field: tailor.v1.UserProfileProviderConfig user_profile_provider_config = 1;
|
|
446
|
+
*/
|
|
447
|
+
userProfileProviderConfig?: UserProfileProviderConfig;
|
|
448
|
+
};
|
|
449
|
+
/**
|
|
450
|
+
* Describes the message tailor.v1.UpdateUserProfileConfigResponse.
|
|
451
|
+
* Use `create(UpdateUserProfileConfigResponseSchema)` to create a new message.
|
|
452
|
+
*/
|
|
453
|
+
declare const UpdateUserProfileConfigResponseSchema: GenMessage<UpdateUserProfileConfigResponse>;
|
|
454
|
+
/**
|
|
455
|
+
* @generated from message tailor.v1.DeleteUserProfileConfigRequest
|
|
456
|
+
*/
|
|
457
|
+
declare type DeleteUserProfileConfigRequest = Message<"tailor.v1.DeleteUserProfileConfigRequest"> & {
|
|
458
|
+
/**
|
|
459
|
+
* @generated from field: string workspace_id = 1;
|
|
460
|
+
*/
|
|
461
|
+
workspaceId: string;
|
|
462
|
+
/**
|
|
463
|
+
* @generated from field: string namespace_name = 2;
|
|
464
|
+
*/
|
|
465
|
+
namespaceName: string;
|
|
466
|
+
};
|
|
467
|
+
/**
|
|
468
|
+
* Describes the message tailor.v1.DeleteUserProfileConfigRequest.
|
|
469
|
+
* Use `create(DeleteUserProfileConfigRequestSchema)` to create a new message.
|
|
470
|
+
*/
|
|
471
|
+
declare const DeleteUserProfileConfigRequestSchema: GenMessage<DeleteUserProfileConfigRequest>;
|
|
472
|
+
/**
|
|
473
|
+
* @generated from message tailor.v1.DeleteUserProfileConfigResponse
|
|
474
|
+
*/
|
|
475
|
+
declare type DeleteUserProfileConfigResponse = Message<"tailor.v1.DeleteUserProfileConfigResponse"> & {};
|
|
476
|
+
/**
|
|
477
|
+
* Describes the message tailor.v1.DeleteUserProfileConfigResponse.
|
|
478
|
+
* Use `create(DeleteUserProfileConfigResponseSchema)` to create a new message.
|
|
479
|
+
*/
|
|
480
|
+
declare const DeleteUserProfileConfigResponseSchema: GenMessage<DeleteUserProfileConfigResponse>;
|
|
481
|
+
/**
|
|
482
|
+
* @generated from message tailor.v1.GetUserProfileConfigRequest
|
|
483
|
+
*/
|
|
484
|
+
declare type GetUserProfileConfigRequest = Message<"tailor.v1.GetUserProfileConfigRequest"> & {
|
|
485
|
+
/**
|
|
486
|
+
* @generated from field: string workspace_id = 1;
|
|
487
|
+
*/
|
|
488
|
+
workspaceId: string;
|
|
489
|
+
/**
|
|
490
|
+
* @generated from field: string namespace_name = 2;
|
|
491
|
+
*/
|
|
492
|
+
namespaceName: string;
|
|
493
|
+
};
|
|
494
|
+
/**
|
|
495
|
+
* Describes the message tailor.v1.GetUserProfileConfigRequest.
|
|
496
|
+
* Use `create(GetUserProfileConfigRequestSchema)` to create a new message.
|
|
497
|
+
*/
|
|
498
|
+
declare const GetUserProfileConfigRequestSchema: GenMessage<GetUserProfileConfigRequest>;
|
|
499
|
+
/**
|
|
500
|
+
* @generated from message tailor.v1.GetUserProfileConfigResponse
|
|
501
|
+
*/
|
|
502
|
+
declare type GetUserProfileConfigResponse = Message<"tailor.v1.GetUserProfileConfigResponse"> & {
|
|
503
|
+
/**
|
|
504
|
+
* @generated from field: tailor.v1.UserProfileProviderConfig user_profile_provider_config = 1;
|
|
505
|
+
*/
|
|
506
|
+
userProfileProviderConfig?: UserProfileProviderConfig;
|
|
507
|
+
};
|
|
508
|
+
/**
|
|
509
|
+
* Describes the message tailor.v1.GetUserProfileConfigResponse.
|
|
510
|
+
* Use `create(GetUserProfileConfigResponseSchema)` to create a new message.
|
|
511
|
+
*/
|
|
512
|
+
declare const GetUserProfileConfigResponseSchema: GenMessage<GetUserProfileConfigResponse>;
|
|
513
|
+
/**
|
|
514
|
+
* @generated from message tailor.v1.CreateTenantConfigRequest
|
|
515
|
+
*/
|
|
516
|
+
declare type CreateTenantConfigRequest = Message<"tailor.v1.CreateTenantConfigRequest"> & {
|
|
517
|
+
/**
|
|
518
|
+
* @generated from field: string workspace_id = 1;
|
|
519
|
+
*/
|
|
520
|
+
workspaceId: string;
|
|
521
|
+
/**
|
|
522
|
+
* @generated from field: string namespace_name = 2;
|
|
523
|
+
*/
|
|
524
|
+
namespaceName: string;
|
|
525
|
+
/**
|
|
526
|
+
* @generated from field: tailor.v1.TenantProviderConfig tenant_provider_config = 3;
|
|
527
|
+
*/
|
|
528
|
+
tenantProviderConfig?: TenantProviderConfig;
|
|
529
|
+
};
|
|
530
|
+
/**
|
|
531
|
+
* Describes the message tailor.v1.CreateTenantConfigRequest.
|
|
532
|
+
* Use `create(CreateTenantConfigRequestSchema)` to create a new message.
|
|
533
|
+
*/
|
|
534
|
+
declare const CreateTenantConfigRequestSchema: GenMessage<CreateTenantConfigRequest>;
|
|
535
|
+
/**
|
|
536
|
+
* @generated from message tailor.v1.CreateTenantConfigResponse
|
|
537
|
+
*/
|
|
538
|
+
declare type CreateTenantConfigResponse = Message<"tailor.v1.CreateTenantConfigResponse"> & {
|
|
539
|
+
/**
|
|
540
|
+
* @generated from field: tailor.v1.TenantProviderConfig tenant_provider_config = 1;
|
|
541
|
+
*/
|
|
542
|
+
tenantProviderConfig?: TenantProviderConfig;
|
|
543
|
+
};
|
|
544
|
+
/**
|
|
545
|
+
* Describes the message tailor.v1.CreateTenantConfigResponse.
|
|
546
|
+
* Use `create(CreateTenantConfigResponseSchema)` to create a new message.
|
|
547
|
+
*/
|
|
548
|
+
declare const CreateTenantConfigResponseSchema: GenMessage<CreateTenantConfigResponse>;
|
|
549
|
+
/**
|
|
550
|
+
* @generated from message tailor.v1.UpdateTenantConfigRequest
|
|
551
|
+
*/
|
|
552
|
+
declare type UpdateTenantConfigRequest = Message<"tailor.v1.UpdateTenantConfigRequest"> & {
|
|
553
|
+
/**
|
|
554
|
+
* @generated from field: string workspace_id = 1;
|
|
555
|
+
*/
|
|
556
|
+
workspaceId: string;
|
|
557
|
+
/**
|
|
558
|
+
* @generated from field: string namespace_name = 2;
|
|
559
|
+
*/
|
|
560
|
+
namespaceName: string;
|
|
561
|
+
/**
|
|
562
|
+
* @generated from field: tailor.v1.TenantProviderConfig tenant_provider_config = 3;
|
|
563
|
+
*/
|
|
564
|
+
tenantProviderConfig?: TenantProviderConfig;
|
|
565
|
+
};
|
|
566
|
+
/**
|
|
567
|
+
* Describes the message tailor.v1.UpdateTenantConfigRequest.
|
|
568
|
+
* Use `create(UpdateTenantConfigRequestSchema)` to create a new message.
|
|
569
|
+
*/
|
|
570
|
+
declare const UpdateTenantConfigRequestSchema: GenMessage<UpdateTenantConfigRequest>;
|
|
571
|
+
/**
|
|
572
|
+
* @generated from message tailor.v1.UpdateTenantConfigResponse
|
|
573
|
+
*/
|
|
574
|
+
declare type UpdateTenantConfigResponse = Message<"tailor.v1.UpdateTenantConfigResponse"> & {
|
|
575
|
+
/**
|
|
576
|
+
* @generated from field: tailor.v1.TenantProviderConfig tenant_provider_config = 1;
|
|
577
|
+
*/
|
|
578
|
+
tenantProviderConfig?: TenantProviderConfig;
|
|
579
|
+
};
|
|
580
|
+
/**
|
|
581
|
+
* Describes the message tailor.v1.UpdateTenantConfigResponse.
|
|
582
|
+
* Use `create(UpdateTenantConfigResponseSchema)` to create a new message.
|
|
583
|
+
*/
|
|
584
|
+
declare const UpdateTenantConfigResponseSchema: GenMessage<UpdateTenantConfigResponse>;
|
|
585
|
+
/**
|
|
586
|
+
* @generated from message tailor.v1.DeleteTenantConfigRequest
|
|
587
|
+
*/
|
|
588
|
+
declare type DeleteTenantConfigRequest = Message<"tailor.v1.DeleteTenantConfigRequest"> & {
|
|
589
|
+
/**
|
|
590
|
+
* @generated from field: string workspace_id = 1;
|
|
591
|
+
*/
|
|
592
|
+
workspaceId: string;
|
|
593
|
+
/**
|
|
594
|
+
* @generated from field: string namespace_name = 2;
|
|
595
|
+
*/
|
|
596
|
+
namespaceName: string;
|
|
597
|
+
};
|
|
598
|
+
/**
|
|
599
|
+
* Describes the message tailor.v1.DeleteTenantConfigRequest.
|
|
600
|
+
* Use `create(DeleteTenantConfigRequestSchema)` to create a new message.
|
|
601
|
+
*/
|
|
602
|
+
declare const DeleteTenantConfigRequestSchema: GenMessage<DeleteTenantConfigRequest>;
|
|
603
|
+
/**
|
|
604
|
+
* @generated from message tailor.v1.DeleteTenantConfigResponse
|
|
605
|
+
*/
|
|
606
|
+
declare type DeleteTenantConfigResponse = Message<"tailor.v1.DeleteTenantConfigResponse"> & {};
|
|
607
|
+
/**
|
|
608
|
+
* Describes the message tailor.v1.DeleteTenantConfigResponse.
|
|
609
|
+
* Use `create(DeleteTenantConfigResponseSchema)` to create a new message.
|
|
610
|
+
*/
|
|
611
|
+
declare const DeleteTenantConfigResponseSchema: GenMessage<DeleteTenantConfigResponse>;
|
|
612
|
+
/**
|
|
613
|
+
* @generated from message tailor.v1.GetTenantConfigRequest
|
|
614
|
+
*/
|
|
615
|
+
declare type GetTenantConfigRequest = Message<"tailor.v1.GetTenantConfigRequest"> & {
|
|
616
|
+
/**
|
|
617
|
+
* @generated from field: string workspace_id = 1;
|
|
618
|
+
*/
|
|
619
|
+
workspaceId: string;
|
|
620
|
+
/**
|
|
621
|
+
* @generated from field: string namespace_name = 2;
|
|
622
|
+
*/
|
|
623
|
+
namespaceName: string;
|
|
624
|
+
};
|
|
625
|
+
/**
|
|
626
|
+
* Describes the message tailor.v1.GetTenantConfigRequest.
|
|
627
|
+
* Use `create(GetTenantConfigRequestSchema)` to create a new message.
|
|
628
|
+
*/
|
|
629
|
+
declare const GetTenantConfigRequestSchema: GenMessage<GetTenantConfigRequest>;
|
|
630
|
+
/**
|
|
631
|
+
* @generated from message tailor.v1.GetTenantConfigResponse
|
|
632
|
+
*/
|
|
633
|
+
declare type GetTenantConfigResponse = Message<"tailor.v1.GetTenantConfigResponse"> & {
|
|
634
|
+
/**
|
|
635
|
+
* @generated from field: tailor.v1.TenantProviderConfig tenant_provider_config = 1;
|
|
636
|
+
*/
|
|
637
|
+
tenantProviderConfig?: TenantProviderConfig;
|
|
638
|
+
};
|
|
639
|
+
/**
|
|
640
|
+
* Describes the message tailor.v1.GetTenantConfigResponse.
|
|
641
|
+
* Use `create(GetTenantConfigResponseSchema)` to create a new message.
|
|
642
|
+
*/
|
|
643
|
+
declare const GetTenantConfigResponseSchema: GenMessage<GetTenantConfigResponse>;
|
|
644
|
+
/**
|
|
645
|
+
* @generated from message tailor.v1.CreatePersonalAccessTokenRequest
|
|
646
|
+
*/
|
|
647
|
+
declare type CreatePersonalAccessTokenRequest = Message<"tailor.v1.CreatePersonalAccessTokenRequest"> & {
|
|
648
|
+
/**
|
|
649
|
+
* @generated from field: string name = 1;
|
|
650
|
+
*/
|
|
651
|
+
name: string;
|
|
652
|
+
/**
|
|
653
|
+
* @generated from field: repeated tailor.v1.PATScope scopes = 2;
|
|
654
|
+
*/
|
|
655
|
+
scopes: PATScope[];
|
|
656
|
+
};
|
|
657
|
+
/**
|
|
658
|
+
* Describes the message tailor.v1.CreatePersonalAccessTokenRequest.
|
|
659
|
+
* Use `create(CreatePersonalAccessTokenRequestSchema)` to create a new message.
|
|
660
|
+
*/
|
|
661
|
+
declare const CreatePersonalAccessTokenRequestSchema: GenMessage<CreatePersonalAccessTokenRequest>;
|
|
662
|
+
/**
|
|
663
|
+
* @generated from message tailor.v1.CreatePersonalAccessTokenResponse
|
|
664
|
+
*/
|
|
665
|
+
declare type CreatePersonalAccessTokenResponse = Message<"tailor.v1.CreatePersonalAccessTokenResponse"> & {
|
|
666
|
+
/**
|
|
667
|
+
* @generated from field: string access_token = 1;
|
|
668
|
+
*/
|
|
669
|
+
accessToken: string;
|
|
670
|
+
};
|
|
671
|
+
/**
|
|
672
|
+
* Describes the message tailor.v1.CreatePersonalAccessTokenResponse.
|
|
673
|
+
* Use `create(CreatePersonalAccessTokenResponseSchema)` to create a new message.
|
|
674
|
+
*/
|
|
675
|
+
declare const CreatePersonalAccessTokenResponseSchema: GenMessage<CreatePersonalAccessTokenResponse>;
|
|
676
|
+
/**
|
|
677
|
+
* @generated from message tailor.v1.DeletePersonalAccessTokenRequest
|
|
678
|
+
*/
|
|
679
|
+
declare type DeletePersonalAccessTokenRequest = Message<"tailor.v1.DeletePersonalAccessTokenRequest"> & {
|
|
680
|
+
/**
|
|
681
|
+
* @generated from field: string name = 1;
|
|
682
|
+
*/
|
|
683
|
+
name: string;
|
|
684
|
+
};
|
|
685
|
+
/**
|
|
686
|
+
* Describes the message tailor.v1.DeletePersonalAccessTokenRequest.
|
|
687
|
+
* Use `create(DeletePersonalAccessTokenRequestSchema)` to create a new message.
|
|
688
|
+
*/
|
|
689
|
+
declare const DeletePersonalAccessTokenRequestSchema: GenMessage<DeletePersonalAccessTokenRequest>;
|
|
690
|
+
/**
|
|
691
|
+
* @generated from message tailor.v1.DeletePersonalAccessTokenResponse
|
|
692
|
+
*/
|
|
693
|
+
declare type DeletePersonalAccessTokenResponse = Message<"tailor.v1.DeletePersonalAccessTokenResponse"> & {};
|
|
694
|
+
/**
|
|
695
|
+
* Describes the message tailor.v1.DeletePersonalAccessTokenResponse.
|
|
696
|
+
* Use `create(DeletePersonalAccessTokenResponseSchema)` to create a new message.
|
|
697
|
+
*/
|
|
698
|
+
declare const DeletePersonalAccessTokenResponseSchema: GenMessage<DeletePersonalAccessTokenResponse>;
|
|
699
|
+
/**
|
|
700
|
+
* @generated from message tailor.v1.ListPersonalAccessTokensRequest
|
|
701
|
+
*/
|
|
702
|
+
declare type ListPersonalAccessTokensRequest = Message<"tailor.v1.ListPersonalAccessTokensRequest"> & {
|
|
703
|
+
/**
|
|
704
|
+
* @generated from field: string page_token = 1;
|
|
705
|
+
*/
|
|
706
|
+
pageToken: string;
|
|
707
|
+
/**
|
|
708
|
+
* @generated from field: uint32 page_size = 2;
|
|
709
|
+
*/
|
|
710
|
+
pageSize: number;
|
|
711
|
+
/**
|
|
712
|
+
* @generated from field: tailor.v1.PageDirection page_direction = 3;
|
|
713
|
+
*/
|
|
714
|
+
pageDirection: PageDirection;
|
|
715
|
+
};
|
|
716
|
+
/**
|
|
717
|
+
* Describes the message tailor.v1.ListPersonalAccessTokensRequest.
|
|
718
|
+
* Use `create(ListPersonalAccessTokensRequestSchema)` to create a new message.
|
|
719
|
+
*/
|
|
720
|
+
declare const ListPersonalAccessTokensRequestSchema: GenMessage<ListPersonalAccessTokensRequest>;
|
|
721
|
+
/**
|
|
722
|
+
* @generated from message tailor.v1.ListPersonalAccessTokensResponse
|
|
723
|
+
*/
|
|
724
|
+
declare type ListPersonalAccessTokensResponse = Message<"tailor.v1.ListPersonalAccessTokensResponse"> & {
|
|
725
|
+
/**
|
|
726
|
+
* @generated from field: repeated tailor.v1.PersonalAccessToken personal_access_tokens = 1;
|
|
727
|
+
*/
|
|
728
|
+
personalAccessTokens: PersonalAccessToken[];
|
|
729
|
+
/**
|
|
730
|
+
* @generated from field: string next_page_token = 2;
|
|
731
|
+
*/
|
|
732
|
+
nextPageToken: string;
|
|
733
|
+
/**
|
|
734
|
+
* @generated from field: int64 total_count = 3;
|
|
735
|
+
*/
|
|
736
|
+
totalCount: bigint;
|
|
737
|
+
};
|
|
738
|
+
/**
|
|
739
|
+
* Describes the message tailor.v1.ListPersonalAccessTokensResponse.
|
|
740
|
+
* Use `create(ListPersonalAccessTokensResponseSchema)` to create a new message.
|
|
741
|
+
*/
|
|
742
|
+
declare const ListPersonalAccessTokensResponseSchema: GenMessage<ListPersonalAccessTokensResponse>;
|
|
743
|
+
/**
|
|
744
|
+
* @generated from message tailor.v1.CreateAuthMachineUserRequest
|
|
745
|
+
*/
|
|
746
|
+
declare type CreateAuthMachineUserRequest = Message<"tailor.v1.CreateAuthMachineUserRequest"> & {
|
|
747
|
+
/**
|
|
748
|
+
* @generated from field: string workspace_id = 1;
|
|
749
|
+
*/
|
|
750
|
+
workspaceId: string;
|
|
751
|
+
/**
|
|
752
|
+
* @generated from field: string auth_namespace = 2;
|
|
753
|
+
*/
|
|
754
|
+
authNamespace: string;
|
|
755
|
+
/**
|
|
756
|
+
* @generated from field: string name = 3;
|
|
757
|
+
*/
|
|
758
|
+
name: string;
|
|
759
|
+
/**
|
|
760
|
+
* @generated from field: repeated string attributes = 4;
|
|
761
|
+
*/
|
|
762
|
+
attributes: string[];
|
|
763
|
+
/**
|
|
764
|
+
* @generated from field: map<string, google.protobuf.Value> attribute_map = 5;
|
|
765
|
+
*/
|
|
766
|
+
attributeMap: {
|
|
767
|
+
[key: string]: Value;
|
|
768
|
+
};
|
|
769
|
+
};
|
|
770
|
+
/**
|
|
771
|
+
* Describes the message tailor.v1.CreateAuthMachineUserRequest.
|
|
772
|
+
* Use `create(CreateAuthMachineUserRequestSchema)` to create a new message.
|
|
773
|
+
*/
|
|
774
|
+
declare const CreateAuthMachineUserRequestSchema: GenMessage<CreateAuthMachineUserRequest>;
|
|
775
|
+
/**
|
|
776
|
+
* @generated from message tailor.v1.CreateAuthMachineUserResponse
|
|
777
|
+
*/
|
|
778
|
+
declare type CreateAuthMachineUserResponse = Message<"tailor.v1.CreateAuthMachineUserResponse"> & {
|
|
779
|
+
/**
|
|
780
|
+
* @generated from field: tailor.v1.MachineUser machine_user = 1;
|
|
781
|
+
*/
|
|
782
|
+
machineUser?: MachineUser;
|
|
783
|
+
};
|
|
784
|
+
/**
|
|
785
|
+
* Describes the message tailor.v1.CreateAuthMachineUserResponse.
|
|
786
|
+
* Use `create(CreateAuthMachineUserResponseSchema)` to create a new message.
|
|
787
|
+
*/
|
|
788
|
+
declare const CreateAuthMachineUserResponseSchema: GenMessage<CreateAuthMachineUserResponse>;
|
|
789
|
+
/**
|
|
790
|
+
* @generated from message tailor.v1.UpdateAuthMachineUserRequest
|
|
791
|
+
*/
|
|
792
|
+
declare type UpdateAuthMachineUserRequest = Message<"tailor.v1.UpdateAuthMachineUserRequest"> & {
|
|
793
|
+
/**
|
|
794
|
+
* @generated from field: string workspace_id = 1;
|
|
795
|
+
*/
|
|
796
|
+
workspaceId: string;
|
|
797
|
+
/**
|
|
798
|
+
* @generated from field: string auth_namespace = 2;
|
|
799
|
+
*/
|
|
800
|
+
authNamespace: string;
|
|
801
|
+
/**
|
|
802
|
+
* @generated from field: string name = 3;
|
|
803
|
+
*/
|
|
804
|
+
name: string;
|
|
805
|
+
/**
|
|
806
|
+
* @generated from field: repeated string attributes = 4;
|
|
807
|
+
*/
|
|
808
|
+
attributes: string[];
|
|
809
|
+
/**
|
|
810
|
+
* @generated from field: map<string, google.protobuf.Value> attribute_map = 5;
|
|
811
|
+
*/
|
|
812
|
+
attributeMap: {
|
|
813
|
+
[key: string]: Value;
|
|
814
|
+
};
|
|
815
|
+
};
|
|
816
|
+
/**
|
|
817
|
+
* Describes the message tailor.v1.UpdateAuthMachineUserRequest.
|
|
818
|
+
* Use `create(UpdateAuthMachineUserRequestSchema)` to create a new message.
|
|
819
|
+
*/
|
|
820
|
+
declare const UpdateAuthMachineUserRequestSchema: GenMessage<UpdateAuthMachineUserRequest>;
|
|
821
|
+
/**
|
|
822
|
+
* @generated from message tailor.v1.UpdateAuthMachineUserResponse
|
|
823
|
+
*/
|
|
824
|
+
declare type UpdateAuthMachineUserResponse = Message<"tailor.v1.UpdateAuthMachineUserResponse"> & {
|
|
825
|
+
/**
|
|
826
|
+
* @generated from field: tailor.v1.MachineUser machine_user = 1;
|
|
827
|
+
*/
|
|
828
|
+
machineUser?: MachineUser;
|
|
829
|
+
};
|
|
830
|
+
/**
|
|
831
|
+
* Describes the message tailor.v1.UpdateAuthMachineUserResponse.
|
|
832
|
+
* Use `create(UpdateAuthMachineUserResponseSchema)` to create a new message.
|
|
833
|
+
*/
|
|
834
|
+
declare const UpdateAuthMachineUserResponseSchema: GenMessage<UpdateAuthMachineUserResponse>;
|
|
835
|
+
/**
|
|
836
|
+
* @generated from message tailor.v1.DeleteAuthMachineUserRequest
|
|
837
|
+
*/
|
|
838
|
+
declare type DeleteAuthMachineUserRequest = Message<"tailor.v1.DeleteAuthMachineUserRequest"> & {
|
|
839
|
+
/**
|
|
840
|
+
* @generated from field: string workspace_id = 1;
|
|
841
|
+
*/
|
|
842
|
+
workspaceId: string;
|
|
843
|
+
/**
|
|
844
|
+
* @generated from field: string auth_namespace = 2;
|
|
845
|
+
*/
|
|
846
|
+
authNamespace: string;
|
|
847
|
+
/**
|
|
848
|
+
* @generated from field: string name = 3;
|
|
849
|
+
*/
|
|
850
|
+
name: string;
|
|
851
|
+
};
|
|
852
|
+
/**
|
|
853
|
+
* Describes the message tailor.v1.DeleteAuthMachineUserRequest.
|
|
854
|
+
* Use `create(DeleteAuthMachineUserRequestSchema)` to create a new message.
|
|
855
|
+
*/
|
|
856
|
+
declare const DeleteAuthMachineUserRequestSchema: GenMessage<DeleteAuthMachineUserRequest>;
|
|
857
|
+
/**
|
|
858
|
+
* @generated from message tailor.v1.DeleteAuthMachineUserResponse
|
|
859
|
+
*/
|
|
860
|
+
declare type DeleteAuthMachineUserResponse = Message<"tailor.v1.DeleteAuthMachineUserResponse"> & {};
|
|
861
|
+
/**
|
|
862
|
+
* Describes the message tailor.v1.DeleteAuthMachineUserResponse.
|
|
863
|
+
* Use `create(DeleteAuthMachineUserResponseSchema)` to create a new message.
|
|
864
|
+
*/
|
|
865
|
+
declare const DeleteAuthMachineUserResponseSchema: GenMessage<DeleteAuthMachineUserResponse>;
|
|
866
|
+
/**
|
|
867
|
+
* @generated from message tailor.v1.GetAuthMachineUserRequest
|
|
868
|
+
*/
|
|
869
|
+
declare type GetAuthMachineUserRequest = Message<"tailor.v1.GetAuthMachineUserRequest"> & {
|
|
870
|
+
/**
|
|
871
|
+
* @generated from field: string workspace_id = 1;
|
|
872
|
+
*/
|
|
873
|
+
workspaceId: string;
|
|
874
|
+
/**
|
|
875
|
+
* @generated from field: string auth_namespace = 2;
|
|
876
|
+
*/
|
|
877
|
+
authNamespace: string;
|
|
878
|
+
/**
|
|
879
|
+
* @generated from field: string name = 3;
|
|
880
|
+
*/
|
|
881
|
+
name: string;
|
|
882
|
+
};
|
|
883
|
+
/**
|
|
884
|
+
* Describes the message tailor.v1.GetAuthMachineUserRequest.
|
|
885
|
+
* Use `create(GetAuthMachineUserRequestSchema)` to create a new message.
|
|
886
|
+
*/
|
|
887
|
+
declare const GetAuthMachineUserRequestSchema: GenMessage<GetAuthMachineUserRequest>;
|
|
888
|
+
/**
|
|
889
|
+
* @generated from message tailor.v1.GetAuthMachineUserResponse
|
|
890
|
+
*/
|
|
891
|
+
declare type GetAuthMachineUserResponse = Message<"tailor.v1.GetAuthMachineUserResponse"> & {
|
|
892
|
+
/**
|
|
893
|
+
* @generated from field: tailor.v1.MachineUser machine_user = 1;
|
|
894
|
+
*/
|
|
895
|
+
machineUser?: MachineUser;
|
|
896
|
+
};
|
|
897
|
+
/**
|
|
898
|
+
* Describes the message tailor.v1.GetAuthMachineUserResponse.
|
|
899
|
+
* Use `create(GetAuthMachineUserResponseSchema)` to create a new message.
|
|
900
|
+
*/
|
|
901
|
+
declare const GetAuthMachineUserResponseSchema: GenMessage<GetAuthMachineUserResponse>;
|
|
902
|
+
/**
|
|
903
|
+
* @generated from message tailor.v1.ListAuthMachineUsersRequest
|
|
904
|
+
*/
|
|
905
|
+
declare type ListAuthMachineUsersRequest = Message<"tailor.v1.ListAuthMachineUsersRequest"> & {
|
|
906
|
+
/**
|
|
907
|
+
* @generated from field: string workspace_id = 1;
|
|
908
|
+
*/
|
|
909
|
+
workspaceId: string;
|
|
910
|
+
/**
|
|
911
|
+
* @generated from field: string auth_namespace = 2;
|
|
912
|
+
*/
|
|
913
|
+
authNamespace: string;
|
|
914
|
+
/**
|
|
915
|
+
* @generated from field: string page_token = 3;
|
|
916
|
+
*/
|
|
917
|
+
pageToken: string;
|
|
918
|
+
/**
|
|
919
|
+
* @generated from field: uint32 page_size = 4;
|
|
920
|
+
*/
|
|
921
|
+
pageSize: number;
|
|
922
|
+
/**
|
|
923
|
+
* @generated from field: tailor.v1.PageDirection page_direction = 5;
|
|
924
|
+
*/
|
|
925
|
+
pageDirection: PageDirection;
|
|
926
|
+
};
|
|
927
|
+
/**
|
|
928
|
+
* Describes the message tailor.v1.ListAuthMachineUsersRequest.
|
|
929
|
+
* Use `create(ListAuthMachineUsersRequestSchema)` to create a new message.
|
|
930
|
+
*/
|
|
931
|
+
declare const ListAuthMachineUsersRequestSchema: GenMessage<ListAuthMachineUsersRequest>;
|
|
932
|
+
/**
|
|
933
|
+
* @generated from message tailor.v1.ListAuthMachineUsersResponse
|
|
934
|
+
*/
|
|
935
|
+
declare type ListAuthMachineUsersResponse = Message<"tailor.v1.ListAuthMachineUsersResponse"> & {
|
|
936
|
+
/**
|
|
937
|
+
* @generated from field: repeated tailor.v1.MachineUser machine_users = 1;
|
|
938
|
+
*/
|
|
939
|
+
machineUsers: MachineUser[];
|
|
940
|
+
/**
|
|
941
|
+
* @generated from field: string next_page_token = 2;
|
|
942
|
+
*/
|
|
943
|
+
nextPageToken: string;
|
|
944
|
+
/**
|
|
945
|
+
* @generated from field: int64 total_count = 3;
|
|
946
|
+
*/
|
|
947
|
+
totalCount: bigint;
|
|
948
|
+
};
|
|
949
|
+
/**
|
|
950
|
+
* Describes the message tailor.v1.ListAuthMachineUsersResponse.
|
|
951
|
+
* Use `create(ListAuthMachineUsersResponseSchema)` to create a new message.
|
|
952
|
+
*/
|
|
953
|
+
declare const ListAuthMachineUsersResponseSchema: GenMessage<ListAuthMachineUsersResponse>;
|
|
954
|
+
/**
|
|
955
|
+
* @generated from message tailor.v1.CreateAuthSCIMConfigRequest
|
|
956
|
+
*/
|
|
957
|
+
declare type CreateAuthSCIMConfigRequest = Message<"tailor.v1.CreateAuthSCIMConfigRequest"> & {
|
|
958
|
+
/**
|
|
959
|
+
* @generated from field: string workspace_id = 1;
|
|
960
|
+
*/
|
|
961
|
+
workspaceId: string;
|
|
962
|
+
/**
|
|
963
|
+
* @generated from field: string namespace_name = 2;
|
|
964
|
+
*/
|
|
965
|
+
namespaceName: string;
|
|
966
|
+
/**
|
|
967
|
+
* @generated from field: tailor.v1.AuthSCIMConfig scim_config = 3;
|
|
968
|
+
*/
|
|
969
|
+
scimConfig?: AuthSCIMConfig;
|
|
970
|
+
};
|
|
971
|
+
/**
|
|
972
|
+
* Describes the message tailor.v1.CreateAuthSCIMConfigRequest.
|
|
973
|
+
* Use `create(CreateAuthSCIMConfigRequestSchema)` to create a new message.
|
|
974
|
+
*/
|
|
975
|
+
declare const CreateAuthSCIMConfigRequestSchema: GenMessage<CreateAuthSCIMConfigRequest>;
|
|
976
|
+
/**
|
|
977
|
+
* @generated from message tailor.v1.CreateAuthSCIMConfigResponse
|
|
978
|
+
*/
|
|
979
|
+
declare type CreateAuthSCIMConfigResponse = Message<"tailor.v1.CreateAuthSCIMConfigResponse"> & {
|
|
980
|
+
/**
|
|
981
|
+
* @generated from field: tailor.v1.AuthSCIMConfig scim_config = 1;
|
|
982
|
+
*/
|
|
983
|
+
scimConfig?: AuthSCIMConfig;
|
|
984
|
+
};
|
|
985
|
+
/**
|
|
986
|
+
* Describes the message tailor.v1.CreateAuthSCIMConfigResponse.
|
|
987
|
+
* Use `create(CreateAuthSCIMConfigResponseSchema)` to create a new message.
|
|
988
|
+
*/
|
|
989
|
+
declare const CreateAuthSCIMConfigResponseSchema: GenMessage<CreateAuthSCIMConfigResponse>;
|
|
990
|
+
/**
|
|
991
|
+
* @generated from message tailor.v1.UpdateAuthSCIMConfigRequest
|
|
992
|
+
*/
|
|
993
|
+
declare type UpdateAuthSCIMConfigRequest = Message<"tailor.v1.UpdateAuthSCIMConfigRequest"> & {
|
|
994
|
+
/**
|
|
995
|
+
* @generated from field: string workspace_id = 1;
|
|
996
|
+
*/
|
|
997
|
+
workspaceId: string;
|
|
998
|
+
/**
|
|
999
|
+
* @generated from field: string namespace_name = 2;
|
|
1000
|
+
*/
|
|
1001
|
+
namespaceName: string;
|
|
1002
|
+
/**
|
|
1003
|
+
* @generated from field: tailor.v1.AuthSCIMConfig scim_config = 3;
|
|
1004
|
+
*/
|
|
1005
|
+
scimConfig?: AuthSCIMConfig;
|
|
1006
|
+
};
|
|
1007
|
+
/**
|
|
1008
|
+
* Describes the message tailor.v1.UpdateAuthSCIMConfigRequest.
|
|
1009
|
+
* Use `create(UpdateAuthSCIMConfigRequestSchema)` to create a new message.
|
|
1010
|
+
*/
|
|
1011
|
+
declare const UpdateAuthSCIMConfigRequestSchema: GenMessage<UpdateAuthSCIMConfigRequest>;
|
|
1012
|
+
/**
|
|
1013
|
+
* @generated from message tailor.v1.UpdateAuthSCIMConfigResponse
|
|
1014
|
+
*/
|
|
1015
|
+
declare type UpdateAuthSCIMConfigResponse = Message<"tailor.v1.UpdateAuthSCIMConfigResponse"> & {
|
|
1016
|
+
/**
|
|
1017
|
+
* @generated from field: tailor.v1.AuthSCIMConfig scim_config = 1;
|
|
1018
|
+
*/
|
|
1019
|
+
scimConfig?: AuthSCIMConfig;
|
|
1020
|
+
};
|
|
1021
|
+
/**
|
|
1022
|
+
* Describes the message tailor.v1.UpdateAuthSCIMConfigResponse.
|
|
1023
|
+
* Use `create(UpdateAuthSCIMConfigResponseSchema)` to create a new message.
|
|
1024
|
+
*/
|
|
1025
|
+
declare const UpdateAuthSCIMConfigResponseSchema: GenMessage<UpdateAuthSCIMConfigResponse>;
|
|
1026
|
+
/**
|
|
1027
|
+
* @generated from message tailor.v1.GetAuthSCIMConfigRequest
|
|
1028
|
+
*/
|
|
1029
|
+
declare type GetAuthSCIMConfigRequest = Message<"tailor.v1.GetAuthSCIMConfigRequest"> & {
|
|
1030
|
+
/**
|
|
1031
|
+
* @generated from field: string workspace_id = 1;
|
|
1032
|
+
*/
|
|
1033
|
+
workspaceId: string;
|
|
1034
|
+
/**
|
|
1035
|
+
* @generated from field: string namespace_name = 2;
|
|
1036
|
+
*/
|
|
1037
|
+
namespaceName: string;
|
|
1038
|
+
};
|
|
1039
|
+
/**
|
|
1040
|
+
* Describes the message tailor.v1.GetAuthSCIMConfigRequest.
|
|
1041
|
+
* Use `create(GetAuthSCIMConfigRequestSchema)` to create a new message.
|
|
1042
|
+
*/
|
|
1043
|
+
declare const GetAuthSCIMConfigRequestSchema: GenMessage<GetAuthSCIMConfigRequest>;
|
|
1044
|
+
/**
|
|
1045
|
+
* @generated from message tailor.v1.GetAuthSCIMConfigResponse
|
|
1046
|
+
*/
|
|
1047
|
+
declare type GetAuthSCIMConfigResponse = Message<"tailor.v1.GetAuthSCIMConfigResponse"> & {
|
|
1048
|
+
/**
|
|
1049
|
+
* @generated from field: tailor.v1.AuthSCIMConfig scim_config = 1;
|
|
1050
|
+
*/
|
|
1051
|
+
scimConfig?: AuthSCIMConfig;
|
|
1052
|
+
};
|
|
1053
|
+
/**
|
|
1054
|
+
* Describes the message tailor.v1.GetAuthSCIMConfigResponse.
|
|
1055
|
+
* Use `create(GetAuthSCIMConfigResponseSchema)` to create a new message.
|
|
1056
|
+
*/
|
|
1057
|
+
declare const GetAuthSCIMConfigResponseSchema: GenMessage<GetAuthSCIMConfigResponse>;
|
|
1058
|
+
/**
|
|
1059
|
+
* @generated from message tailor.v1.DeleteAuthSCIMConfigRequest
|
|
1060
|
+
*/
|
|
1061
|
+
declare type DeleteAuthSCIMConfigRequest = Message<"tailor.v1.DeleteAuthSCIMConfigRequest"> & {
|
|
1062
|
+
/**
|
|
1063
|
+
* @generated from field: string workspace_id = 1;
|
|
1064
|
+
*/
|
|
1065
|
+
workspaceId: string;
|
|
1066
|
+
/**
|
|
1067
|
+
* @generated from field: string namespace_name = 2;
|
|
1068
|
+
*/
|
|
1069
|
+
namespaceName: string;
|
|
1070
|
+
};
|
|
1071
|
+
/**
|
|
1072
|
+
* Describes the message tailor.v1.DeleteAuthSCIMConfigRequest.
|
|
1073
|
+
* Use `create(DeleteAuthSCIMConfigRequestSchema)` to create a new message.
|
|
1074
|
+
*/
|
|
1075
|
+
declare const DeleteAuthSCIMConfigRequestSchema: GenMessage<DeleteAuthSCIMConfigRequest>;
|
|
1076
|
+
/**
|
|
1077
|
+
* @generated from message tailor.v1.DeleteAuthSCIMConfigResponse
|
|
1078
|
+
*/
|
|
1079
|
+
declare type DeleteAuthSCIMConfigResponse = Message<"tailor.v1.DeleteAuthSCIMConfigResponse"> & {};
|
|
1080
|
+
/**
|
|
1081
|
+
* Describes the message tailor.v1.DeleteAuthSCIMConfigResponse.
|
|
1082
|
+
* Use `create(DeleteAuthSCIMConfigResponseSchema)` to create a new message.
|
|
1083
|
+
*/
|
|
1084
|
+
declare const DeleteAuthSCIMConfigResponseSchema: GenMessage<DeleteAuthSCIMConfigResponse>;
|
|
1085
|
+
/**
|
|
1086
|
+
* @generated from message tailor.v1.CreateAuthSCIMResourceRequest
|
|
1087
|
+
*/
|
|
1088
|
+
declare type CreateAuthSCIMResourceRequest = Message<"tailor.v1.CreateAuthSCIMResourceRequest"> & {
|
|
1089
|
+
/**
|
|
1090
|
+
* @generated from field: string workspace_id = 1;
|
|
1091
|
+
*/
|
|
1092
|
+
workspaceId: string;
|
|
1093
|
+
/**
|
|
1094
|
+
* @generated from field: string namespace_name = 2;
|
|
1095
|
+
*/
|
|
1096
|
+
namespaceName: string;
|
|
1097
|
+
/**
|
|
1098
|
+
* @generated from field: tailor.v1.AuthSCIMResource scim_resource = 3;
|
|
1099
|
+
*/
|
|
1100
|
+
scimResource?: AuthSCIMResource;
|
|
1101
|
+
};
|
|
1102
|
+
/**
|
|
1103
|
+
* Describes the message tailor.v1.CreateAuthSCIMResourceRequest.
|
|
1104
|
+
* Use `create(CreateAuthSCIMResourceRequestSchema)` to create a new message.
|
|
1105
|
+
*/
|
|
1106
|
+
declare const CreateAuthSCIMResourceRequestSchema: GenMessage<CreateAuthSCIMResourceRequest>;
|
|
1107
|
+
/**
|
|
1108
|
+
* @generated from message tailor.v1.CreateAuthSCIMResourceResponse
|
|
1109
|
+
*/
|
|
1110
|
+
declare type CreateAuthSCIMResourceResponse = Message<"tailor.v1.CreateAuthSCIMResourceResponse"> & {
|
|
1111
|
+
/**
|
|
1112
|
+
* @generated from field: tailor.v1.AuthSCIMResource scim_resource = 1;
|
|
1113
|
+
*/
|
|
1114
|
+
scimResource?: AuthSCIMResource;
|
|
1115
|
+
};
|
|
1116
|
+
/**
|
|
1117
|
+
* Describes the message tailor.v1.CreateAuthSCIMResourceResponse.
|
|
1118
|
+
* Use `create(CreateAuthSCIMResourceResponseSchema)` to create a new message.
|
|
1119
|
+
*/
|
|
1120
|
+
declare const CreateAuthSCIMResourceResponseSchema: GenMessage<CreateAuthSCIMResourceResponse>;
|
|
1121
|
+
/**
|
|
1122
|
+
* @generated from message tailor.v1.UpdateAuthSCIMResourceRequest
|
|
1123
|
+
*/
|
|
1124
|
+
declare type UpdateAuthSCIMResourceRequest = Message<"tailor.v1.UpdateAuthSCIMResourceRequest"> & {
|
|
1125
|
+
/**
|
|
1126
|
+
* @generated from field: string workspace_id = 1;
|
|
1127
|
+
*/
|
|
1128
|
+
workspaceId: string;
|
|
1129
|
+
/**
|
|
1130
|
+
* @generated from field: string namespace_name = 2;
|
|
1131
|
+
*/
|
|
1132
|
+
namespaceName: string;
|
|
1133
|
+
/**
|
|
1134
|
+
* @generated from field: tailor.v1.AuthSCIMResource scim_resource = 3;
|
|
1135
|
+
*/
|
|
1136
|
+
scimResource?: AuthSCIMResource;
|
|
1137
|
+
};
|
|
1138
|
+
/**
|
|
1139
|
+
* Describes the message tailor.v1.UpdateAuthSCIMResourceRequest.
|
|
1140
|
+
* Use `create(UpdateAuthSCIMResourceRequestSchema)` to create a new message.
|
|
1141
|
+
*/
|
|
1142
|
+
declare const UpdateAuthSCIMResourceRequestSchema: GenMessage<UpdateAuthSCIMResourceRequest>;
|
|
1143
|
+
/**
|
|
1144
|
+
* @generated from message tailor.v1.UpdateAuthSCIMResourceResponse
|
|
1145
|
+
*/
|
|
1146
|
+
declare type UpdateAuthSCIMResourceResponse = Message<"tailor.v1.UpdateAuthSCIMResourceResponse"> & {
|
|
1147
|
+
/**
|
|
1148
|
+
* @generated from field: tailor.v1.AuthSCIMResource scim_resource = 1;
|
|
1149
|
+
*/
|
|
1150
|
+
scimResource?: AuthSCIMResource;
|
|
1151
|
+
};
|
|
1152
|
+
/**
|
|
1153
|
+
* Describes the message tailor.v1.UpdateAuthSCIMResourceResponse.
|
|
1154
|
+
* Use `create(UpdateAuthSCIMResourceResponseSchema)` to create a new message.
|
|
1155
|
+
*/
|
|
1156
|
+
declare const UpdateAuthSCIMResourceResponseSchema: GenMessage<UpdateAuthSCIMResourceResponse>;
|
|
1157
|
+
/**
|
|
1158
|
+
* @generated from message tailor.v1.DeleteAuthSCIMResourceRequest
|
|
1159
|
+
*/
|
|
1160
|
+
declare type DeleteAuthSCIMResourceRequest = Message<"tailor.v1.DeleteAuthSCIMResourceRequest"> & {
|
|
1161
|
+
/**
|
|
1162
|
+
* @generated from field: string workspace_id = 1;
|
|
1163
|
+
*/
|
|
1164
|
+
workspaceId: string;
|
|
1165
|
+
/**
|
|
1166
|
+
* @generated from field: string namespace_name = 2;
|
|
1167
|
+
*/
|
|
1168
|
+
namespaceName: string;
|
|
1169
|
+
/**
|
|
1170
|
+
* @generated from field: string name = 3;
|
|
1171
|
+
*/
|
|
1172
|
+
name: string;
|
|
1173
|
+
};
|
|
1174
|
+
/**
|
|
1175
|
+
* Describes the message tailor.v1.DeleteAuthSCIMResourceRequest.
|
|
1176
|
+
* Use `create(DeleteAuthSCIMResourceRequestSchema)` to create a new message.
|
|
1177
|
+
*/
|
|
1178
|
+
declare const DeleteAuthSCIMResourceRequestSchema: GenMessage<DeleteAuthSCIMResourceRequest>;
|
|
1179
|
+
/**
|
|
1180
|
+
* @generated from message tailor.v1.DeleteAuthSCIMResourceResponse
|
|
1181
|
+
*/
|
|
1182
|
+
declare type DeleteAuthSCIMResourceResponse = Message<"tailor.v1.DeleteAuthSCIMResourceResponse"> & {};
|
|
1183
|
+
/**
|
|
1184
|
+
* Describes the message tailor.v1.DeleteAuthSCIMResourceResponse.
|
|
1185
|
+
* Use `create(DeleteAuthSCIMResourceResponseSchema)` to create a new message.
|
|
1186
|
+
*/
|
|
1187
|
+
declare const DeleteAuthSCIMResourceResponseSchema: GenMessage<DeleteAuthSCIMResourceResponse>;
|
|
1188
|
+
/**
|
|
1189
|
+
* @generated from message tailor.v1.GetAuthSCIMResourceRequest
|
|
1190
|
+
*/
|
|
1191
|
+
declare type GetAuthSCIMResourceRequest = Message<"tailor.v1.GetAuthSCIMResourceRequest"> & {
|
|
1192
|
+
/**
|
|
1193
|
+
* @generated from field: string workspace_id = 1;
|
|
1194
|
+
*/
|
|
1195
|
+
workspaceId: string;
|
|
1196
|
+
/**
|
|
1197
|
+
* @generated from field: string namespace_name = 2;
|
|
1198
|
+
*/
|
|
1199
|
+
namespaceName: string;
|
|
1200
|
+
/**
|
|
1201
|
+
* @generated from field: string name = 3;
|
|
1202
|
+
*/
|
|
1203
|
+
name: string;
|
|
1204
|
+
};
|
|
1205
|
+
/**
|
|
1206
|
+
* Describes the message tailor.v1.GetAuthSCIMResourceRequest.
|
|
1207
|
+
* Use `create(GetAuthSCIMResourceRequestSchema)` to create a new message.
|
|
1208
|
+
*/
|
|
1209
|
+
declare const GetAuthSCIMResourceRequestSchema: GenMessage<GetAuthSCIMResourceRequest>;
|
|
1210
|
+
/**
|
|
1211
|
+
* @generated from message tailor.v1.GetAuthSCIMResourceResponse
|
|
1212
|
+
*/
|
|
1213
|
+
declare type GetAuthSCIMResourceResponse = Message<"tailor.v1.GetAuthSCIMResourceResponse"> & {
|
|
1214
|
+
/**
|
|
1215
|
+
* @generated from field: tailor.v1.AuthSCIMResource scim_resource = 1;
|
|
1216
|
+
*/
|
|
1217
|
+
scimResource?: AuthSCIMResource;
|
|
1218
|
+
};
|
|
1219
|
+
/**
|
|
1220
|
+
* Describes the message tailor.v1.GetAuthSCIMResourceResponse.
|
|
1221
|
+
* Use `create(GetAuthSCIMResourceResponseSchema)` to create a new message.
|
|
1222
|
+
*/
|
|
1223
|
+
declare const GetAuthSCIMResourceResponseSchema: GenMessage<GetAuthSCIMResourceResponse>;
|
|
1224
|
+
/**
|
|
1225
|
+
* @generated from message tailor.v1.GetAuthSCIMResourcesRequest
|
|
1226
|
+
*/
|
|
1227
|
+
declare type GetAuthSCIMResourcesRequest = Message<"tailor.v1.GetAuthSCIMResourcesRequest"> & {
|
|
1228
|
+
/**
|
|
1229
|
+
* @generated from field: string workspace_id = 1;
|
|
1230
|
+
*/
|
|
1231
|
+
workspaceId: string;
|
|
1232
|
+
/**
|
|
1233
|
+
* @generated from field: string namespace_name = 2;
|
|
1234
|
+
*/
|
|
1235
|
+
namespaceName: string;
|
|
1236
|
+
};
|
|
1237
|
+
/**
|
|
1238
|
+
* Describes the message tailor.v1.GetAuthSCIMResourcesRequest.
|
|
1239
|
+
* Use `create(GetAuthSCIMResourcesRequestSchema)` to create a new message.
|
|
1240
|
+
*/
|
|
1241
|
+
declare const GetAuthSCIMResourcesRequestSchema: GenMessage<GetAuthSCIMResourcesRequest>;
|
|
1242
|
+
/**
|
|
1243
|
+
* @generated from message tailor.v1.GetAuthSCIMResourcesResponse
|
|
1244
|
+
*/
|
|
1245
|
+
declare type GetAuthSCIMResourcesResponse = Message<"tailor.v1.GetAuthSCIMResourcesResponse"> & {
|
|
1246
|
+
/**
|
|
1247
|
+
* @generated from field: repeated tailor.v1.AuthSCIMResource scim_resources = 1;
|
|
1248
|
+
*/
|
|
1249
|
+
scimResources: AuthSCIMResource[];
|
|
1250
|
+
};
|
|
1251
|
+
/**
|
|
1252
|
+
* Describes the message tailor.v1.GetAuthSCIMResourcesResponse.
|
|
1253
|
+
* Use `create(GetAuthSCIMResourcesResponseSchema)` to create a new message.
|
|
1254
|
+
*/
|
|
1255
|
+
declare const GetAuthSCIMResourcesResponseSchema: GenMessage<GetAuthSCIMResourcesResponse>;
|
|
1256
|
+
/**
|
|
1257
|
+
* Auth Hook --------------------------------------------------------
|
|
1258
|
+
*
|
|
1259
|
+
* @generated from message tailor.v1.CreateAuthHookRequest
|
|
1260
|
+
*/
|
|
1261
|
+
declare type CreateAuthHookRequest = Message<"tailor.v1.CreateAuthHookRequest"> & {
|
|
1262
|
+
/**
|
|
1263
|
+
* @generated from field: string workspace_id = 1;
|
|
1264
|
+
*/
|
|
1265
|
+
workspaceId: string;
|
|
1266
|
+
/**
|
|
1267
|
+
* @generated from field: string namespace_name = 2;
|
|
1268
|
+
*/
|
|
1269
|
+
namespaceName: string;
|
|
1270
|
+
/**
|
|
1271
|
+
* @generated from field: tailor.v1.AuthHook hook = 3;
|
|
1272
|
+
*/
|
|
1273
|
+
hook?: AuthHook;
|
|
1274
|
+
};
|
|
1275
|
+
/**
|
|
1276
|
+
* Describes the message tailor.v1.CreateAuthHookRequest.
|
|
1277
|
+
* Use `create(CreateAuthHookRequestSchema)` to create a new message.
|
|
1278
|
+
*/
|
|
1279
|
+
declare const CreateAuthHookRequestSchema: GenMessage<CreateAuthHookRequest>;
|
|
1280
|
+
/**
|
|
1281
|
+
* @generated from message tailor.v1.CreateAuthHookResponse
|
|
1282
|
+
*/
|
|
1283
|
+
declare type CreateAuthHookResponse = Message<"tailor.v1.CreateAuthHookResponse"> & {
|
|
1284
|
+
/**
|
|
1285
|
+
* @generated from field: tailor.v1.AuthHook hook = 1;
|
|
1286
|
+
*/
|
|
1287
|
+
hook?: AuthHook;
|
|
1288
|
+
};
|
|
1289
|
+
/**
|
|
1290
|
+
* Describes the message tailor.v1.CreateAuthHookResponse.
|
|
1291
|
+
* Use `create(CreateAuthHookResponseSchema)` to create a new message.
|
|
1292
|
+
*/
|
|
1293
|
+
declare const CreateAuthHookResponseSchema: GenMessage<CreateAuthHookResponse>;
|
|
1294
|
+
/**
|
|
1295
|
+
* @generated from message tailor.v1.UpdateAuthHookRequest
|
|
1296
|
+
*/
|
|
1297
|
+
declare type UpdateAuthHookRequest = Message<"tailor.v1.UpdateAuthHookRequest"> & {
|
|
1298
|
+
/**
|
|
1299
|
+
* @generated from field: string workspace_id = 1;
|
|
1300
|
+
*/
|
|
1301
|
+
workspaceId: string;
|
|
1302
|
+
/**
|
|
1303
|
+
* @generated from field: string namespace_name = 2;
|
|
1304
|
+
*/
|
|
1305
|
+
namespaceName: string;
|
|
1306
|
+
/**
|
|
1307
|
+
* @generated from field: tailor.v1.AuthHook hook = 3;
|
|
1308
|
+
*/
|
|
1309
|
+
hook?: AuthHook;
|
|
1310
|
+
};
|
|
1311
|
+
/**
|
|
1312
|
+
* Describes the message tailor.v1.UpdateAuthHookRequest.
|
|
1313
|
+
* Use `create(UpdateAuthHookRequestSchema)` to create a new message.
|
|
1314
|
+
*/
|
|
1315
|
+
declare const UpdateAuthHookRequestSchema: GenMessage<UpdateAuthHookRequest>;
|
|
1316
|
+
/**
|
|
1317
|
+
* @generated from message tailor.v1.UpdateAuthHookResponse
|
|
1318
|
+
*/
|
|
1319
|
+
declare type UpdateAuthHookResponse = Message<"tailor.v1.UpdateAuthHookResponse"> & {
|
|
1320
|
+
/**
|
|
1321
|
+
* @generated from field: tailor.v1.AuthHook hook = 1;
|
|
1322
|
+
*/
|
|
1323
|
+
hook?: AuthHook;
|
|
1324
|
+
};
|
|
1325
|
+
/**
|
|
1326
|
+
* Describes the message tailor.v1.UpdateAuthHookResponse.
|
|
1327
|
+
* Use `create(UpdateAuthHookResponseSchema)` to create a new message.
|
|
1328
|
+
*/
|
|
1329
|
+
declare const UpdateAuthHookResponseSchema: GenMessage<UpdateAuthHookResponse>;
|
|
1330
|
+
/**
|
|
1331
|
+
* @generated from message tailor.v1.DeleteAuthHookRequest
|
|
1332
|
+
*/
|
|
1333
|
+
declare type DeleteAuthHookRequest = Message<"tailor.v1.DeleteAuthHookRequest"> & {
|
|
1334
|
+
/**
|
|
1335
|
+
* @generated from field: string workspace_id = 1;
|
|
1336
|
+
*/
|
|
1337
|
+
workspaceId: string;
|
|
1338
|
+
/**
|
|
1339
|
+
* @generated from field: string namespace_name = 2;
|
|
1340
|
+
*/
|
|
1341
|
+
namespaceName: string;
|
|
1342
|
+
/**
|
|
1343
|
+
* @generated from field: tailor.v1.AuthHookPoint hook_point = 3;
|
|
1344
|
+
*/
|
|
1345
|
+
hookPoint: AuthHookPoint;
|
|
1346
|
+
};
|
|
1347
|
+
/**
|
|
1348
|
+
* Describes the message tailor.v1.DeleteAuthHookRequest.
|
|
1349
|
+
* Use `create(DeleteAuthHookRequestSchema)` to create a new message.
|
|
1350
|
+
*/
|
|
1351
|
+
declare const DeleteAuthHookRequestSchema: GenMessage<DeleteAuthHookRequest>;
|
|
1352
|
+
/**
|
|
1353
|
+
* @generated from message tailor.v1.DeleteAuthHookResponse
|
|
1354
|
+
*/
|
|
1355
|
+
declare type DeleteAuthHookResponse = Message<"tailor.v1.DeleteAuthHookResponse"> & {};
|
|
1356
|
+
/**
|
|
1357
|
+
* Describes the message tailor.v1.DeleteAuthHookResponse.
|
|
1358
|
+
* Use `create(DeleteAuthHookResponseSchema)` to create a new message.
|
|
1359
|
+
*/
|
|
1360
|
+
declare const DeleteAuthHookResponseSchema: GenMessage<DeleteAuthHookResponse>;
|
|
1361
|
+
/**
|
|
1362
|
+
* @generated from message tailor.v1.GetAuthHookRequest
|
|
1363
|
+
*/
|
|
1364
|
+
declare type GetAuthHookRequest = Message<"tailor.v1.GetAuthHookRequest"> & {
|
|
1365
|
+
/**
|
|
1366
|
+
* @generated from field: string workspace_id = 1;
|
|
1367
|
+
*/
|
|
1368
|
+
workspaceId: string;
|
|
1369
|
+
/**
|
|
1370
|
+
* @generated from field: string namespace_name = 2;
|
|
1371
|
+
*/
|
|
1372
|
+
namespaceName: string;
|
|
1373
|
+
/**
|
|
1374
|
+
* @generated from field: tailor.v1.AuthHookPoint hook_point = 3;
|
|
1375
|
+
*/
|
|
1376
|
+
hookPoint: AuthHookPoint;
|
|
1377
|
+
};
|
|
1378
|
+
/**
|
|
1379
|
+
* Describes the message tailor.v1.GetAuthHookRequest.
|
|
1380
|
+
* Use `create(GetAuthHookRequestSchema)` to create a new message.
|
|
1381
|
+
*/
|
|
1382
|
+
declare const GetAuthHookRequestSchema: GenMessage<GetAuthHookRequest>;
|
|
1383
|
+
/**
|
|
1384
|
+
* @generated from message tailor.v1.GetAuthHookResponse
|
|
1385
|
+
*/
|
|
1386
|
+
declare type GetAuthHookResponse = Message<"tailor.v1.GetAuthHookResponse"> & {
|
|
1387
|
+
/**
|
|
1388
|
+
* @generated from field: tailor.v1.AuthHook hook = 1;
|
|
1389
|
+
*/
|
|
1390
|
+
hook?: AuthHook;
|
|
1391
|
+
};
|
|
1392
|
+
/**
|
|
1393
|
+
* Describes the message tailor.v1.GetAuthHookResponse.
|
|
1394
|
+
* Use `create(GetAuthHookResponseSchema)` to create a new message.
|
|
1395
|
+
*/
|
|
1396
|
+
declare const GetAuthHookResponseSchema: GenMessage<GetAuthHookResponse>;
|
|
1397
|
+
/**
|
|
1398
|
+
* @generated from message tailor.v1.CreateAuthConnectionRequest
|
|
1399
|
+
*/
|
|
1400
|
+
declare type CreateAuthConnectionRequest = Message<"tailor.v1.CreateAuthConnectionRequest"> & {
|
|
1401
|
+
/**
|
|
1402
|
+
* @generated from field: string workspace_id = 1;
|
|
1403
|
+
*/
|
|
1404
|
+
workspaceId: string;
|
|
1405
|
+
/**
|
|
1406
|
+
* @generated from field: tailor.v1.AuthConnection connection = 2;
|
|
1407
|
+
*/
|
|
1408
|
+
connection?: AuthConnection;
|
|
1409
|
+
};
|
|
1410
|
+
/**
|
|
1411
|
+
* Describes the message tailor.v1.CreateAuthConnectionRequest.
|
|
1412
|
+
* Use `create(CreateAuthConnectionRequestSchema)` to create a new message.
|
|
1413
|
+
*/
|
|
1414
|
+
declare const CreateAuthConnectionRequestSchema: GenMessage<CreateAuthConnectionRequest>;
|
|
1415
|
+
/**
|
|
1416
|
+
* @generated from message tailor.v1.CreateAuthConnectionResponse
|
|
1417
|
+
*/
|
|
1418
|
+
declare type CreateAuthConnectionResponse = Message<"tailor.v1.CreateAuthConnectionResponse"> & {};
|
|
1419
|
+
/**
|
|
1420
|
+
* Describes the message tailor.v1.CreateAuthConnectionResponse.
|
|
1421
|
+
* Use `create(CreateAuthConnectionResponseSchema)` to create a new message.
|
|
1422
|
+
*/
|
|
1423
|
+
declare const CreateAuthConnectionResponseSchema: GenMessage<CreateAuthConnectionResponse>;
|
|
1424
|
+
/**
|
|
1425
|
+
* @generated from message tailor.v1.UpdateAuthConnectionRequest
|
|
1426
|
+
*/
|
|
1427
|
+
declare type UpdateAuthConnectionRequest = Message<"tailor.v1.UpdateAuthConnectionRequest"> & {
|
|
1428
|
+
/**
|
|
1429
|
+
* @generated from field: string workspace_id = 1;
|
|
1430
|
+
*/
|
|
1431
|
+
workspaceId: string;
|
|
1432
|
+
/**
|
|
1433
|
+
* @generated from field: tailor.v1.AuthConnection connection = 2;
|
|
1434
|
+
*/
|
|
1435
|
+
connection?: AuthConnection;
|
|
1436
|
+
/**
|
|
1437
|
+
* @generated from field: google.protobuf.FieldMask update_mask = 100;
|
|
1438
|
+
*/
|
|
1439
|
+
updateMask?: FieldMask;
|
|
1440
|
+
};
|
|
1441
|
+
/**
|
|
1442
|
+
* Describes the message tailor.v1.UpdateAuthConnectionRequest.
|
|
1443
|
+
* Use `create(UpdateAuthConnectionRequestSchema)` to create a new message.
|
|
1444
|
+
*/
|
|
1445
|
+
declare const UpdateAuthConnectionRequestSchema: GenMessage<UpdateAuthConnectionRequest>;
|
|
1446
|
+
/**
|
|
1447
|
+
* @generated from message tailor.v1.UpdateAuthConnectionResponse
|
|
1448
|
+
*/
|
|
1449
|
+
declare type UpdateAuthConnectionResponse = Message<"tailor.v1.UpdateAuthConnectionResponse"> & {
|
|
1450
|
+
/**
|
|
1451
|
+
* The updated connection. Its status reflects whether the change revoked the
|
|
1452
|
+
* session (STATUS_UNAUTHORIZED) or left it intact (STATUS_AUTHORIZED).
|
|
1453
|
+
*
|
|
1454
|
+
* @generated from field: tailor.v1.AuthConnection connection = 1;
|
|
1455
|
+
*/
|
|
1456
|
+
connection?: AuthConnection;
|
|
1457
|
+
};
|
|
1458
|
+
/**
|
|
1459
|
+
* Describes the message tailor.v1.UpdateAuthConnectionResponse.
|
|
1460
|
+
* Use `create(UpdateAuthConnectionResponseSchema)` to create a new message.
|
|
1461
|
+
*/
|
|
1462
|
+
declare const UpdateAuthConnectionResponseSchema: GenMessage<UpdateAuthConnectionResponse>;
|
|
1463
|
+
/**
|
|
1464
|
+
* @generated from message tailor.v1.ListAuthConnectionsRequest
|
|
1465
|
+
*/
|
|
1466
|
+
declare type ListAuthConnectionsRequest = Message<"tailor.v1.ListAuthConnectionsRequest"> & {
|
|
1467
|
+
/**
|
|
1468
|
+
* @generated from field: string workspace_id = 1;
|
|
1469
|
+
*/
|
|
1470
|
+
workspaceId: string;
|
|
1471
|
+
/**
|
|
1472
|
+
* @generated from field: string page_token = 2;
|
|
1473
|
+
*/
|
|
1474
|
+
pageToken: string;
|
|
1475
|
+
/**
|
|
1476
|
+
* @generated from field: uint32 page_size = 3;
|
|
1477
|
+
*/
|
|
1478
|
+
pageSize: number;
|
|
1479
|
+
/**
|
|
1480
|
+
* @generated from field: tailor.v1.PageDirection page_direction = 4;
|
|
1481
|
+
*/
|
|
1482
|
+
pageDirection: PageDirection;
|
|
1483
|
+
};
|
|
1484
|
+
/**
|
|
1485
|
+
* Describes the message tailor.v1.ListAuthConnectionsRequest.
|
|
1486
|
+
* Use `create(ListAuthConnectionsRequestSchema)` to create a new message.
|
|
1487
|
+
*/
|
|
1488
|
+
declare const ListAuthConnectionsRequestSchema: GenMessage<ListAuthConnectionsRequest>;
|
|
1489
|
+
/**
|
|
1490
|
+
* @generated from message tailor.v1.ListAuthConnectionsResponse
|
|
1491
|
+
*/
|
|
1492
|
+
declare type ListAuthConnectionsResponse = Message<"tailor.v1.ListAuthConnectionsResponse"> & {
|
|
1493
|
+
/**
|
|
1494
|
+
* @generated from field: repeated tailor.v1.AuthConnection connections = 1;
|
|
1495
|
+
*/
|
|
1496
|
+
connections: AuthConnection[];
|
|
1497
|
+
/**
|
|
1498
|
+
* @generated from field: string next_page_token = 2;
|
|
1499
|
+
*/
|
|
1500
|
+
nextPageToken: string;
|
|
1501
|
+
/**
|
|
1502
|
+
* @generated from field: int64 total_count = 3;
|
|
1503
|
+
*/
|
|
1504
|
+
totalCount: bigint;
|
|
1505
|
+
};
|
|
1506
|
+
/**
|
|
1507
|
+
* Describes the message tailor.v1.ListAuthConnectionsResponse.
|
|
1508
|
+
* Use `create(ListAuthConnectionsResponseSchema)` to create a new message.
|
|
1509
|
+
*/
|
|
1510
|
+
declare const ListAuthConnectionsResponseSchema: GenMessage<ListAuthConnectionsResponse>;
|
|
1511
|
+
/**
|
|
1512
|
+
* @generated from message tailor.v1.RevokeAuthConnectionRequest
|
|
1513
|
+
*/
|
|
1514
|
+
declare type RevokeAuthConnectionRequest = Message<"tailor.v1.RevokeAuthConnectionRequest"> & {
|
|
1515
|
+
/**
|
|
1516
|
+
* @generated from field: string workspace_id = 1;
|
|
1517
|
+
*/
|
|
1518
|
+
workspaceId: string;
|
|
1519
|
+
/**
|
|
1520
|
+
* @generated from field: string connection_name = 2;
|
|
1521
|
+
*/
|
|
1522
|
+
connectionName: string;
|
|
1523
|
+
};
|
|
1524
|
+
/**
|
|
1525
|
+
* Describes the message tailor.v1.RevokeAuthConnectionRequest.
|
|
1526
|
+
* Use `create(RevokeAuthConnectionRequestSchema)` to create a new message.
|
|
1527
|
+
*/
|
|
1528
|
+
declare const RevokeAuthConnectionRequestSchema: GenMessage<RevokeAuthConnectionRequest>;
|
|
1529
|
+
/**
|
|
1530
|
+
* @generated from message tailor.v1.RevokeAuthConnectionResponse
|
|
1531
|
+
*/
|
|
1532
|
+
declare type RevokeAuthConnectionResponse = Message<"tailor.v1.RevokeAuthConnectionResponse"> & {};
|
|
1533
|
+
/**
|
|
1534
|
+
* Describes the message tailor.v1.RevokeAuthConnectionResponse.
|
|
1535
|
+
* Use `create(RevokeAuthConnectionResponseSchema)` to create a new message.
|
|
1536
|
+
*/
|
|
1537
|
+
declare const RevokeAuthConnectionResponseSchema: GenMessage<RevokeAuthConnectionResponse>;
|
|
1538
|
+
/**
|
|
1539
|
+
* @generated from message tailor.v1.DeleteAuthConnectionRequest
|
|
1540
|
+
*/
|
|
1541
|
+
declare type DeleteAuthConnectionRequest = Message<"tailor.v1.DeleteAuthConnectionRequest"> & {
|
|
1542
|
+
/**
|
|
1543
|
+
* @generated from field: string workspace_id = 1;
|
|
1544
|
+
*/
|
|
1545
|
+
workspaceId: string;
|
|
1546
|
+
/**
|
|
1547
|
+
* @generated from field: string connection_name = 2;
|
|
1548
|
+
*/
|
|
1549
|
+
connectionName: string;
|
|
1550
|
+
};
|
|
1551
|
+
/**
|
|
1552
|
+
* Describes the message tailor.v1.DeleteAuthConnectionRequest.
|
|
1553
|
+
* Use `create(DeleteAuthConnectionRequestSchema)` to create a new message.
|
|
1554
|
+
*/
|
|
1555
|
+
declare const DeleteAuthConnectionRequestSchema: GenMessage<DeleteAuthConnectionRequest>;
|
|
1556
|
+
/**
|
|
1557
|
+
* @generated from message tailor.v1.DeleteAuthConnectionResponse
|
|
1558
|
+
*/
|
|
1559
|
+
declare type DeleteAuthConnectionResponse = Message<"tailor.v1.DeleteAuthConnectionResponse"> & {};
|
|
1560
|
+
/**
|
|
1561
|
+
* Describes the message tailor.v1.DeleteAuthConnectionResponse.
|
|
1562
|
+
* Use `create(DeleteAuthConnectionResponseSchema)` to create a new message.
|
|
1563
|
+
*/
|
|
1564
|
+
declare const DeleteAuthConnectionResponseSchema: GenMessage<DeleteAuthConnectionResponse>;
|
|
1565
|
+
/**
|
|
1566
|
+
* @generated from message tailor.v1.RegisterAuthConnectionSessionRequest
|
|
1567
|
+
*/
|
|
1568
|
+
declare type RegisterAuthConnectionSessionRequest = Message<"tailor.v1.RegisterAuthConnectionSessionRequest"> & {
|
|
1569
|
+
/**
|
|
1570
|
+
* @generated from field: string workspace_id = 1;
|
|
1571
|
+
*/
|
|
1572
|
+
workspaceId: string;
|
|
1573
|
+
/**
|
|
1574
|
+
* @generated from field: string connection_name = 2;
|
|
1575
|
+
*/
|
|
1576
|
+
connectionName: string;
|
|
1577
|
+
/**
|
|
1578
|
+
* @generated from field: string access_token = 3;
|
|
1579
|
+
*/
|
|
1580
|
+
accessToken: string;
|
|
1581
|
+
/**
|
|
1582
|
+
* @generated from field: string refresh_token = 4;
|
|
1583
|
+
*/
|
|
1584
|
+
refreshToken: string;
|
|
1585
|
+
/**
|
|
1586
|
+
* @generated from field: google.protobuf.Timestamp expires_at = 5;
|
|
1587
|
+
*/
|
|
1588
|
+
expiresAt?: Timestamp;
|
|
1589
|
+
};
|
|
1590
|
+
/**
|
|
1591
|
+
* Describes the message tailor.v1.RegisterAuthConnectionSessionRequest.
|
|
1592
|
+
* Use `create(RegisterAuthConnectionSessionRequestSchema)` to create a new message.
|
|
1593
|
+
*/
|
|
1594
|
+
declare const RegisterAuthConnectionSessionRequestSchema: GenMessage<RegisterAuthConnectionSessionRequest>;
|
|
1595
|
+
/**
|
|
1596
|
+
* @generated from message tailor.v1.RegisterAuthConnectionSessionResponse
|
|
1597
|
+
*/
|
|
1598
|
+
declare type RegisterAuthConnectionSessionResponse = Message<"tailor.v1.RegisterAuthConnectionSessionResponse"> & {};
|
|
1599
|
+
/**
|
|
1600
|
+
* Describes the message tailor.v1.RegisterAuthConnectionSessionResponse.
|
|
1601
|
+
* Use `create(RegisterAuthConnectionSessionResponseSchema)` to create a new message.
|
|
1602
|
+
*/
|
|
1603
|
+
declare const RegisterAuthConnectionSessionResponseSchema: GenMessage<RegisterAuthConnectionSessionResponse>;
|
|
1604
|
+
/**
|
|
1605
|
+
* @generated from message tailor.v1.ExchangeAuthConnectionAuthorizationCodeRequest
|
|
1606
|
+
*/
|
|
1607
|
+
declare type ExchangeAuthConnectionAuthorizationCodeRequest = Message<"tailor.v1.ExchangeAuthConnectionAuthorizationCodeRequest"> & {
|
|
1608
|
+
/**
|
|
1609
|
+
* @generated from field: string workspace_id = 1;
|
|
1610
|
+
*/
|
|
1611
|
+
workspaceId: string;
|
|
1612
|
+
/**
|
|
1613
|
+
* @generated from field: string connection_name = 2;
|
|
1614
|
+
*/
|
|
1615
|
+
connectionName: string;
|
|
1616
|
+
/**
|
|
1617
|
+
* @generated from field: string authorization_code = 3;
|
|
1618
|
+
*/
|
|
1619
|
+
authorizationCode: string;
|
|
1620
|
+
/**
|
|
1621
|
+
* @generated from field: string redirect_uri = 4;
|
|
1622
|
+
*/
|
|
1623
|
+
redirectUri: string;
|
|
1624
|
+
};
|
|
1625
|
+
/**
|
|
1626
|
+
* Describes the message tailor.v1.ExchangeAuthConnectionAuthorizationCodeRequest.
|
|
1627
|
+
* Use `create(ExchangeAuthConnectionAuthorizationCodeRequestSchema)` to create a new message.
|
|
1628
|
+
*/
|
|
1629
|
+
declare const ExchangeAuthConnectionAuthorizationCodeRequestSchema: GenMessage<ExchangeAuthConnectionAuthorizationCodeRequest>;
|
|
1630
|
+
/**
|
|
1631
|
+
* @generated from message tailor.v1.ExchangeAuthConnectionAuthorizationCodeResponse
|
|
1632
|
+
*/
|
|
1633
|
+
declare type ExchangeAuthConnectionAuthorizationCodeResponse = Message<"tailor.v1.ExchangeAuthConnectionAuthorizationCodeResponse"> & {};
|
|
1634
|
+
/**
|
|
1635
|
+
* Describes the message tailor.v1.ExchangeAuthConnectionAuthorizationCodeResponse.
|
|
1636
|
+
* Use `create(ExchangeAuthConnectionAuthorizationCodeResponseSchema)` to create a new message.
|
|
1637
|
+
*/
|
|
1638
|
+
declare const ExchangeAuthConnectionAuthorizationCodeResponseSchema: GenMessage<ExchangeAuthConnectionAuthorizationCodeResponse>;
|
|
1639
|
+
/**
|
|
1640
|
+
* @generated from message tailor.v1.CreateAuthOAuth2ClientRequest
|
|
1641
|
+
*/
|
|
1642
|
+
declare type CreateAuthOAuth2ClientRequest = Message<"tailor.v1.CreateAuthOAuth2ClientRequest"> & {
|
|
1643
|
+
/**
|
|
1644
|
+
* @generated from field: string workspace_id = 1;
|
|
1645
|
+
*/
|
|
1646
|
+
workspaceId: string;
|
|
1647
|
+
/**
|
|
1648
|
+
* @generated from field: string namespace_name = 2;
|
|
1649
|
+
*/
|
|
1650
|
+
namespaceName: string;
|
|
1651
|
+
/**
|
|
1652
|
+
* @generated from field: tailor.v1.AuthOAuth2Client oauth2_client = 3;
|
|
1653
|
+
*/
|
|
1654
|
+
oauth2Client?: AuthOAuth2Client;
|
|
1655
|
+
};
|
|
1656
|
+
/**
|
|
1657
|
+
* Describes the message tailor.v1.CreateAuthOAuth2ClientRequest.
|
|
1658
|
+
* Use `create(CreateAuthOAuth2ClientRequestSchema)` to create a new message.
|
|
1659
|
+
*/
|
|
1660
|
+
declare const CreateAuthOAuth2ClientRequestSchema: GenMessage<CreateAuthOAuth2ClientRequest>;
|
|
1661
|
+
/**
|
|
1662
|
+
* @generated from message tailor.v1.CreateAuthOAuth2ClientResponse
|
|
1663
|
+
*/
|
|
1664
|
+
declare type CreateAuthOAuth2ClientResponse = Message<"tailor.v1.CreateAuthOAuth2ClientResponse"> & {
|
|
1665
|
+
/**
|
|
1666
|
+
* @generated from field: tailor.v1.AuthOAuth2Client oauth2_client = 1;
|
|
1667
|
+
*/
|
|
1668
|
+
oauth2Client?: AuthOAuth2Client;
|
|
1669
|
+
};
|
|
1670
|
+
/**
|
|
1671
|
+
* Describes the message tailor.v1.CreateAuthOAuth2ClientResponse.
|
|
1672
|
+
* Use `create(CreateAuthOAuth2ClientResponseSchema)` to create a new message.
|
|
1673
|
+
*/
|
|
1674
|
+
declare const CreateAuthOAuth2ClientResponseSchema: GenMessage<CreateAuthOAuth2ClientResponse>;
|
|
1675
|
+
/**
|
|
1676
|
+
* @generated from message tailor.v1.UpdateAuthOAuth2ClientRequest
|
|
1677
|
+
*/
|
|
1678
|
+
declare type UpdateAuthOAuth2ClientRequest = Message<"tailor.v1.UpdateAuthOAuth2ClientRequest"> & {
|
|
1679
|
+
/**
|
|
1680
|
+
* @generated from field: string workspace_id = 1;
|
|
1681
|
+
*/
|
|
1682
|
+
workspaceId: string;
|
|
1683
|
+
/**
|
|
1684
|
+
* @generated from field: string namespace_name = 2;
|
|
1685
|
+
*/
|
|
1686
|
+
namespaceName: string;
|
|
1687
|
+
/**
|
|
1688
|
+
* @generated from field: tailor.v1.AuthOAuth2Client oauth2_client = 3;
|
|
1689
|
+
*/
|
|
1690
|
+
oauth2Client?: AuthOAuth2Client;
|
|
1691
|
+
};
|
|
1692
|
+
/**
|
|
1693
|
+
* Describes the message tailor.v1.UpdateAuthOAuth2ClientRequest.
|
|
1694
|
+
* Use `create(UpdateAuthOAuth2ClientRequestSchema)` to create a new message.
|
|
1695
|
+
*/
|
|
1696
|
+
declare const UpdateAuthOAuth2ClientRequestSchema: GenMessage<UpdateAuthOAuth2ClientRequest>;
|
|
1697
|
+
/**
|
|
1698
|
+
* @generated from message tailor.v1.UpdateAuthOAuth2ClientResponse
|
|
1699
|
+
*/
|
|
1700
|
+
declare type UpdateAuthOAuth2ClientResponse = Message<"tailor.v1.UpdateAuthOAuth2ClientResponse"> & {
|
|
1701
|
+
/**
|
|
1702
|
+
* @generated from field: tailor.v1.AuthOAuth2Client oauth2_client = 1;
|
|
1703
|
+
*/
|
|
1704
|
+
oauth2Client?: AuthOAuth2Client;
|
|
1705
|
+
};
|
|
1706
|
+
/**
|
|
1707
|
+
* Describes the message tailor.v1.UpdateAuthOAuth2ClientResponse.
|
|
1708
|
+
* Use `create(UpdateAuthOAuth2ClientResponseSchema)` to create a new message.
|
|
1709
|
+
*/
|
|
1710
|
+
declare const UpdateAuthOAuth2ClientResponseSchema: GenMessage<UpdateAuthOAuth2ClientResponse>;
|
|
1711
|
+
/**
|
|
1712
|
+
* @generated from message tailor.v1.DeleteAuthOAuth2ClientRequest
|
|
1713
|
+
*/
|
|
1714
|
+
declare type DeleteAuthOAuth2ClientRequest = Message<"tailor.v1.DeleteAuthOAuth2ClientRequest"> & {
|
|
1715
|
+
/**
|
|
1716
|
+
* @generated from field: string workspace_id = 1;
|
|
1717
|
+
*/
|
|
1718
|
+
workspaceId: string;
|
|
1719
|
+
/**
|
|
1720
|
+
* @generated from field: string namespace_name = 2;
|
|
1721
|
+
*/
|
|
1722
|
+
namespaceName: string;
|
|
1723
|
+
/**
|
|
1724
|
+
* @generated from field: string name = 3;
|
|
1725
|
+
*/
|
|
1726
|
+
name: string;
|
|
1727
|
+
};
|
|
1728
|
+
/**
|
|
1729
|
+
* Describes the message tailor.v1.DeleteAuthOAuth2ClientRequest.
|
|
1730
|
+
* Use `create(DeleteAuthOAuth2ClientRequestSchema)` to create a new message.
|
|
1731
|
+
*/
|
|
1732
|
+
declare const DeleteAuthOAuth2ClientRequestSchema: GenMessage<DeleteAuthOAuth2ClientRequest>;
|
|
1733
|
+
/**
|
|
1734
|
+
* @generated from message tailor.v1.DeleteAuthOAuth2ClientResponse
|
|
1735
|
+
*/
|
|
1736
|
+
declare type DeleteAuthOAuth2ClientResponse = Message<"tailor.v1.DeleteAuthOAuth2ClientResponse"> & {};
|
|
1737
|
+
/**
|
|
1738
|
+
* Describes the message tailor.v1.DeleteAuthOAuth2ClientResponse.
|
|
1739
|
+
* Use `create(DeleteAuthOAuth2ClientResponseSchema)` to create a new message.
|
|
1740
|
+
*/
|
|
1741
|
+
declare const DeleteAuthOAuth2ClientResponseSchema: GenMessage<DeleteAuthOAuth2ClientResponse>;
|
|
1742
|
+
/**
|
|
1743
|
+
* @generated from message tailor.v1.GetAuthOAuth2ClientRequest
|
|
1744
|
+
*/
|
|
1745
|
+
declare type GetAuthOAuth2ClientRequest = Message<"tailor.v1.GetAuthOAuth2ClientRequest"> & {
|
|
1746
|
+
/**
|
|
1747
|
+
* @generated from field: string workspace_id = 1;
|
|
1748
|
+
*/
|
|
1749
|
+
workspaceId: string;
|
|
1750
|
+
/**
|
|
1751
|
+
* @generated from field: string namespace_name = 2;
|
|
1752
|
+
*/
|
|
1753
|
+
namespaceName: string;
|
|
1754
|
+
/**
|
|
1755
|
+
* @generated from field: string name = 3;
|
|
1756
|
+
*/
|
|
1757
|
+
name: string;
|
|
1758
|
+
};
|
|
1759
|
+
/**
|
|
1760
|
+
* Describes the message tailor.v1.GetAuthOAuth2ClientRequest.
|
|
1761
|
+
* Use `create(GetAuthOAuth2ClientRequestSchema)` to create a new message.
|
|
1762
|
+
*/
|
|
1763
|
+
declare const GetAuthOAuth2ClientRequestSchema: GenMessage<GetAuthOAuth2ClientRequest>;
|
|
1764
|
+
/**
|
|
1765
|
+
* @generated from message tailor.v1.GetAuthOAuth2ClientResponse
|
|
1766
|
+
*/
|
|
1767
|
+
declare type GetAuthOAuth2ClientResponse = Message<"tailor.v1.GetAuthOAuth2ClientResponse"> & {
|
|
1768
|
+
/**
|
|
1769
|
+
* @generated from field: tailor.v1.AuthOAuth2Client oauth2_client = 1;
|
|
1770
|
+
*/
|
|
1771
|
+
oauth2Client?: AuthOAuth2Client;
|
|
1772
|
+
};
|
|
1773
|
+
/**
|
|
1774
|
+
* Describes the message tailor.v1.GetAuthOAuth2ClientResponse.
|
|
1775
|
+
* Use `create(GetAuthOAuth2ClientResponseSchema)` to create a new message.
|
|
1776
|
+
*/
|
|
1777
|
+
declare const GetAuthOAuth2ClientResponseSchema: GenMessage<GetAuthOAuth2ClientResponse>;
|
|
1778
|
+
/**
|
|
1779
|
+
* @generated from message tailor.v1.ListAuthOAuth2ClientsRequest
|
|
1780
|
+
*/
|
|
1781
|
+
declare type ListAuthOAuth2ClientsRequest = Message<"tailor.v1.ListAuthOAuth2ClientsRequest"> & {
|
|
1782
|
+
/**
|
|
1783
|
+
* @generated from field: string workspace_id = 1;
|
|
1784
|
+
*/
|
|
1785
|
+
workspaceId: string;
|
|
1786
|
+
/**
|
|
1787
|
+
* @generated from field: string namespace_name = 2;
|
|
1788
|
+
*/
|
|
1789
|
+
namespaceName: string;
|
|
1790
|
+
/**
|
|
1791
|
+
* @generated from field: string page_token = 3;
|
|
1792
|
+
*/
|
|
1793
|
+
pageToken: string;
|
|
1794
|
+
/**
|
|
1795
|
+
* @generated from field: uint32 page_size = 4;
|
|
1796
|
+
*/
|
|
1797
|
+
pageSize: number;
|
|
1798
|
+
/**
|
|
1799
|
+
* @generated from field: tailor.v1.PageDirection page_direction = 5;
|
|
1800
|
+
*/
|
|
1801
|
+
pageDirection: PageDirection;
|
|
1802
|
+
};
|
|
1803
|
+
/**
|
|
1804
|
+
* Describes the message tailor.v1.ListAuthOAuth2ClientsRequest.
|
|
1805
|
+
* Use `create(ListAuthOAuth2ClientsRequestSchema)` to create a new message.
|
|
1806
|
+
*/
|
|
1807
|
+
declare const ListAuthOAuth2ClientsRequestSchema: GenMessage<ListAuthOAuth2ClientsRequest>;
|
|
1808
|
+
/**
|
|
1809
|
+
* @generated from message tailor.v1.ListAuthOAuth2ClientsResponse
|
|
1810
|
+
*/
|
|
1811
|
+
declare type ListAuthOAuth2ClientsResponse = Message<"tailor.v1.ListAuthOAuth2ClientsResponse"> & {
|
|
1812
|
+
/**
|
|
1813
|
+
* @generated from field: repeated tailor.v1.AuthOAuth2Client oauth2_clients = 1;
|
|
1814
|
+
*/
|
|
1815
|
+
oauth2Clients: AuthOAuth2Client[];
|
|
1816
|
+
/**
|
|
1817
|
+
* @generated from field: string next_page_token = 2;
|
|
1818
|
+
*/
|
|
1819
|
+
nextPageToken: string;
|
|
1820
|
+
/**
|
|
1821
|
+
* @generated from field: int64 total_count = 3;
|
|
1822
|
+
*/
|
|
1823
|
+
totalCount: bigint;
|
|
1824
|
+
};
|
|
1825
|
+
/**
|
|
1826
|
+
* Describes the message tailor.v1.ListAuthOAuth2ClientsResponse.
|
|
1827
|
+
* Use `create(ListAuthOAuth2ClientsResponseSchema)` to create a new message.
|
|
1828
|
+
*/
|
|
1829
|
+
declare const ListAuthOAuth2ClientsResponseSchema: GenMessage<ListAuthOAuth2ClientsResponse>;
|
|
1830
|
+
/**
|
|
1831
|
+
* @generated from message tailor.v1.CreateControlplaneMachineUserRequest
|
|
1832
|
+
*/
|
|
1833
|
+
declare type CreateControlplaneMachineUserRequest = Message<"tailor.v1.CreateControlplaneMachineUserRequest"> & {
|
|
1834
|
+
/**
|
|
1835
|
+
* @generated from field: string organization_id = 1;
|
|
1836
|
+
*/
|
|
1837
|
+
organizationId: string;
|
|
1838
|
+
/**
|
|
1839
|
+
* @generated from field: string folder_id = 2;
|
|
1840
|
+
*/
|
|
1841
|
+
folderId: string;
|
|
1842
|
+
/**
|
|
1843
|
+
* @generated from field: string name = 3;
|
|
1844
|
+
*/
|
|
1845
|
+
name: string;
|
|
1846
|
+
/**
|
|
1847
|
+
* @generated from field: string description = 4;
|
|
1848
|
+
*/
|
|
1849
|
+
description: string;
|
|
1850
|
+
};
|
|
1851
|
+
/**
|
|
1852
|
+
* Describes the message tailor.v1.CreateControlplaneMachineUserRequest.
|
|
1853
|
+
* Use `create(CreateControlplaneMachineUserRequestSchema)` to create a new message.
|
|
1854
|
+
*/
|
|
1855
|
+
declare const CreateControlplaneMachineUserRequestSchema: GenMessage<CreateControlplaneMachineUserRequest>;
|
|
1856
|
+
/**
|
|
1857
|
+
* @generated from message tailor.v1.CreateControlplaneMachineUserResponse
|
|
1858
|
+
*/
|
|
1859
|
+
declare type CreateControlplaneMachineUserResponse = Message<"tailor.v1.CreateControlplaneMachineUserResponse"> & {
|
|
1860
|
+
/**
|
|
1861
|
+
* @generated from field: tailor.v1.ControlplaneMachineUser machine_user = 1;
|
|
1862
|
+
*/
|
|
1863
|
+
machineUser?: ControlplaneMachineUser;
|
|
1864
|
+
};
|
|
1865
|
+
/**
|
|
1866
|
+
* Describes the message tailor.v1.CreateControlplaneMachineUserResponse.
|
|
1867
|
+
* Use `create(CreateControlplaneMachineUserResponseSchema)` to create a new message.
|
|
1868
|
+
*/
|
|
1869
|
+
declare const CreateControlplaneMachineUserResponseSchema: GenMessage<CreateControlplaneMachineUserResponse>;
|
|
1870
|
+
/**
|
|
1871
|
+
* @generated from message tailor.v1.UpdateControlplaneMachineUserRequest
|
|
1872
|
+
*/
|
|
1873
|
+
declare type UpdateControlplaneMachineUserRequest = Message<"tailor.v1.UpdateControlplaneMachineUserRequest"> & {
|
|
1874
|
+
/**
|
|
1875
|
+
* @generated from field: string organization_id = 1;
|
|
1876
|
+
*/
|
|
1877
|
+
organizationId: string;
|
|
1878
|
+
/**
|
|
1879
|
+
* @generated from field: string folder_id = 2;
|
|
1880
|
+
*/
|
|
1881
|
+
folderId: string;
|
|
1882
|
+
/**
|
|
1883
|
+
* @generated from field: string machine_user_id = 3;
|
|
1884
|
+
*/
|
|
1885
|
+
machineUserId: string;
|
|
1886
|
+
/**
|
|
1887
|
+
* @generated from field: optional string name = 4;
|
|
1888
|
+
*/
|
|
1889
|
+
name?: string;
|
|
1890
|
+
/**
|
|
1891
|
+
* @generated from field: optional string description = 5;
|
|
1892
|
+
*/
|
|
1893
|
+
description?: string;
|
|
1894
|
+
};
|
|
1895
|
+
/**
|
|
1896
|
+
* Describes the message tailor.v1.UpdateControlplaneMachineUserRequest.
|
|
1897
|
+
* Use `create(UpdateControlplaneMachineUserRequestSchema)` to create a new message.
|
|
1898
|
+
*/
|
|
1899
|
+
declare const UpdateControlplaneMachineUserRequestSchema: GenMessage<UpdateControlplaneMachineUserRequest>;
|
|
1900
|
+
/**
|
|
1901
|
+
* @generated from message tailor.v1.UpdateControlplaneMachineUserResponse
|
|
1902
|
+
*/
|
|
1903
|
+
declare type UpdateControlplaneMachineUserResponse = Message<"tailor.v1.UpdateControlplaneMachineUserResponse"> & {
|
|
1904
|
+
/**
|
|
1905
|
+
* @generated from field: tailor.v1.ControlplaneMachineUser machine_user = 1;
|
|
1906
|
+
*/
|
|
1907
|
+
machineUser?: ControlplaneMachineUser;
|
|
1908
|
+
};
|
|
1909
|
+
/**
|
|
1910
|
+
* Describes the message tailor.v1.UpdateControlplaneMachineUserResponse.
|
|
1911
|
+
* Use `create(UpdateControlplaneMachineUserResponseSchema)` to create a new message.
|
|
1912
|
+
*/
|
|
1913
|
+
declare const UpdateControlplaneMachineUserResponseSchema: GenMessage<UpdateControlplaneMachineUserResponse>;
|
|
1914
|
+
/**
|
|
1915
|
+
* @generated from message tailor.v1.GetControlplaneMachineUserRequest
|
|
1916
|
+
*/
|
|
1917
|
+
declare type GetControlplaneMachineUserRequest = Message<"tailor.v1.GetControlplaneMachineUserRequest"> & {
|
|
1918
|
+
/**
|
|
1919
|
+
* @generated from field: string organization_id = 1;
|
|
1920
|
+
*/
|
|
1921
|
+
organizationId: string;
|
|
1922
|
+
/**
|
|
1923
|
+
* @generated from field: string folder_id = 2;
|
|
1924
|
+
*/
|
|
1925
|
+
folderId: string;
|
|
1926
|
+
/**
|
|
1927
|
+
* @generated from field: string machine_user_id = 3;
|
|
1928
|
+
*/
|
|
1929
|
+
machineUserId: string;
|
|
1930
|
+
};
|
|
1931
|
+
/**
|
|
1932
|
+
* Describes the message tailor.v1.GetControlplaneMachineUserRequest.
|
|
1933
|
+
* Use `create(GetControlplaneMachineUserRequestSchema)` to create a new message.
|
|
1934
|
+
*/
|
|
1935
|
+
declare const GetControlplaneMachineUserRequestSchema: GenMessage<GetControlplaneMachineUserRequest>;
|
|
1936
|
+
/**
|
|
1937
|
+
* @generated from message tailor.v1.GetControlplaneMachineUserResponse
|
|
1938
|
+
*/
|
|
1939
|
+
declare type GetControlplaneMachineUserResponse = Message<"tailor.v1.GetControlplaneMachineUserResponse"> & {
|
|
1940
|
+
/**
|
|
1941
|
+
* @generated from field: tailor.v1.ControlplaneMachineUser machine_user = 1;
|
|
1942
|
+
*/
|
|
1943
|
+
machineUser?: ControlplaneMachineUser;
|
|
1944
|
+
};
|
|
1945
|
+
/**
|
|
1946
|
+
* Describes the message tailor.v1.GetControlplaneMachineUserResponse.
|
|
1947
|
+
* Use `create(GetControlplaneMachineUserResponseSchema)` to create a new message.
|
|
1948
|
+
*/
|
|
1949
|
+
declare const GetControlplaneMachineUserResponseSchema: GenMessage<GetControlplaneMachineUserResponse>;
|
|
1950
|
+
/**
|
|
1951
|
+
* @generated from message tailor.v1.GetControlplaneMachineUserByNameRequest
|
|
1952
|
+
*/
|
|
1953
|
+
declare type GetControlplaneMachineUserByNameRequest = Message<"tailor.v1.GetControlplaneMachineUserByNameRequest"> & {
|
|
1954
|
+
/**
|
|
1955
|
+
* @generated from field: string organization_id = 1;
|
|
1956
|
+
*/
|
|
1957
|
+
organizationId: string;
|
|
1958
|
+
/**
|
|
1959
|
+
* @generated from field: string folder_id = 2;
|
|
1960
|
+
*/
|
|
1961
|
+
folderId: string;
|
|
1962
|
+
/**
|
|
1963
|
+
* @generated from field: string name = 3;
|
|
1964
|
+
*/
|
|
1965
|
+
name: string;
|
|
1966
|
+
};
|
|
1967
|
+
/**
|
|
1968
|
+
* Describes the message tailor.v1.GetControlplaneMachineUserByNameRequest.
|
|
1969
|
+
* Use `create(GetControlplaneMachineUserByNameRequestSchema)` to create a new message.
|
|
1970
|
+
*/
|
|
1971
|
+
declare const GetControlplaneMachineUserByNameRequestSchema: GenMessage<GetControlplaneMachineUserByNameRequest>;
|
|
1972
|
+
/**
|
|
1973
|
+
* @generated from message tailor.v1.GetControlplaneMachineUserByNameResponse
|
|
1974
|
+
*/
|
|
1975
|
+
declare type GetControlplaneMachineUserByNameResponse = Message<"tailor.v1.GetControlplaneMachineUserByNameResponse"> & {
|
|
1976
|
+
/**
|
|
1977
|
+
* @generated from field: tailor.v1.ControlplaneMachineUser machine_user = 1;
|
|
1978
|
+
*/
|
|
1979
|
+
machineUser?: ControlplaneMachineUser;
|
|
1980
|
+
};
|
|
1981
|
+
/**
|
|
1982
|
+
* Describes the message tailor.v1.GetControlplaneMachineUserByNameResponse.
|
|
1983
|
+
* Use `create(GetControlplaneMachineUserByNameResponseSchema)` to create a new message.
|
|
1984
|
+
*/
|
|
1985
|
+
declare const GetControlplaneMachineUserByNameResponseSchema: GenMessage<GetControlplaneMachineUserByNameResponse>;
|
|
1986
|
+
/**
|
|
1987
|
+
* @generated from message tailor.v1.ListControlplaneMachineUsersRequest
|
|
1988
|
+
*/
|
|
1989
|
+
declare type ListControlplaneMachineUsersRequest = Message<"tailor.v1.ListControlplaneMachineUsersRequest"> & {
|
|
1990
|
+
/**
|
|
1991
|
+
* @generated from field: string organization_id = 1;
|
|
1992
|
+
*/
|
|
1993
|
+
organizationId: string;
|
|
1994
|
+
/**
|
|
1995
|
+
* @generated from field: string folder_id = 2;
|
|
1996
|
+
*/
|
|
1997
|
+
folderId: string;
|
|
1998
|
+
/**
|
|
1999
|
+
* @generated from field: string page_token = 3;
|
|
2000
|
+
*/
|
|
2001
|
+
pageToken: string;
|
|
2002
|
+
/**
|
|
2003
|
+
* @generated from field: uint32 page_size = 4;
|
|
2004
|
+
*/
|
|
2005
|
+
pageSize: number;
|
|
2006
|
+
/**
|
|
2007
|
+
* @generated from field: tailor.v1.PageDirection page_direction = 5;
|
|
2008
|
+
*/
|
|
2009
|
+
pageDirection: PageDirection;
|
|
2010
|
+
};
|
|
2011
|
+
/**
|
|
2012
|
+
* Describes the message tailor.v1.ListControlplaneMachineUsersRequest.
|
|
2013
|
+
* Use `create(ListControlplaneMachineUsersRequestSchema)` to create a new message.
|
|
2014
|
+
*/
|
|
2015
|
+
declare const ListControlplaneMachineUsersRequestSchema: GenMessage<ListControlplaneMachineUsersRequest>;
|
|
2016
|
+
/**
|
|
2017
|
+
* @generated from message tailor.v1.ListControlplaneMachineUsersResponse
|
|
2018
|
+
*/
|
|
2019
|
+
declare type ListControlplaneMachineUsersResponse = Message<"tailor.v1.ListControlplaneMachineUsersResponse"> & {
|
|
2020
|
+
/**
|
|
2021
|
+
* @generated from field: repeated tailor.v1.ControlplaneMachineUser machine_users = 1;
|
|
2022
|
+
*/
|
|
2023
|
+
machineUsers: ControlplaneMachineUser[];
|
|
2024
|
+
/**
|
|
2025
|
+
* @generated from field: string next_page_token = 2;
|
|
2026
|
+
*/
|
|
2027
|
+
nextPageToken: string;
|
|
2028
|
+
/**
|
|
2029
|
+
* @generated from field: int64 total_count = 3;
|
|
2030
|
+
*/
|
|
2031
|
+
totalCount: bigint;
|
|
2032
|
+
};
|
|
2033
|
+
/**
|
|
2034
|
+
* Describes the message tailor.v1.ListControlplaneMachineUsersResponse.
|
|
2035
|
+
* Use `create(ListControlplaneMachineUsersResponseSchema)` to create a new message.
|
|
2036
|
+
*/
|
|
2037
|
+
declare const ListControlplaneMachineUsersResponseSchema: GenMessage<ListControlplaneMachineUsersResponse>;
|
|
2038
|
+
/**
|
|
2039
|
+
* @generated from message tailor.v1.DeleteControlplaneMachineUserRequest
|
|
2040
|
+
*/
|
|
2041
|
+
declare type DeleteControlplaneMachineUserRequest = Message<"tailor.v1.DeleteControlplaneMachineUserRequest"> & {
|
|
2042
|
+
/**
|
|
2043
|
+
* @generated from field: string organization_id = 1;
|
|
2044
|
+
*/
|
|
2045
|
+
organizationId: string;
|
|
2046
|
+
/**
|
|
2047
|
+
* @generated from field: string folder_id = 2;
|
|
2048
|
+
*/
|
|
2049
|
+
folderId: string;
|
|
2050
|
+
/**
|
|
2051
|
+
* @generated from field: string machine_user_id = 3;
|
|
2052
|
+
*/
|
|
2053
|
+
machineUserId: string;
|
|
2054
|
+
};
|
|
2055
|
+
/**
|
|
2056
|
+
* Describes the message tailor.v1.DeleteControlplaneMachineUserRequest.
|
|
2057
|
+
* Use `create(DeleteControlplaneMachineUserRequestSchema)` to create a new message.
|
|
2058
|
+
*/
|
|
2059
|
+
declare const DeleteControlplaneMachineUserRequestSchema: GenMessage<DeleteControlplaneMachineUserRequest>;
|
|
2060
|
+
/**
|
|
2061
|
+
* @generated from message tailor.v1.DeleteControlplaneMachineUserResponse
|
|
2062
|
+
*/
|
|
2063
|
+
declare type DeleteControlplaneMachineUserResponse = Message<"tailor.v1.DeleteControlplaneMachineUserResponse"> & {};
|
|
2064
|
+
/**
|
|
2065
|
+
* Describes the message tailor.v1.DeleteControlplaneMachineUserResponse.
|
|
2066
|
+
* Use `create(DeleteControlplaneMachineUserResponseSchema)` to create a new message.
|
|
2067
|
+
*/
|
|
2068
|
+
declare const DeleteControlplaneMachineUserResponseSchema: GenMessage<DeleteControlplaneMachineUserResponse>;
|
|
2069
|
+
//#endregion
|
|
2070
|
+
export { CreateAuthConnectionRequest, CreateAuthConnectionRequestSchema, CreateAuthConnectionResponse, CreateAuthConnectionResponseSchema, CreateAuthHookRequest, CreateAuthHookRequestSchema, CreateAuthHookResponse, CreateAuthHookResponseSchema, CreateAuthIDPConfigRequest, CreateAuthIDPConfigRequestSchema, CreateAuthIDPConfigResponse, CreateAuthIDPConfigResponseSchema, CreateAuthMachineUserRequest, CreateAuthMachineUserRequestSchema, CreateAuthMachineUserResponse, CreateAuthMachineUserResponseSchema, CreateAuthOAuth2ClientRequest, CreateAuthOAuth2ClientRequestSchema, CreateAuthOAuth2ClientResponse, CreateAuthOAuth2ClientResponseSchema, CreateAuthSCIMConfigRequest, CreateAuthSCIMConfigRequestSchema, CreateAuthSCIMConfigResponse, CreateAuthSCIMConfigResponseSchema, CreateAuthSCIMResourceRequest, CreateAuthSCIMResourceRequestSchema, CreateAuthSCIMResourceResponse, CreateAuthSCIMResourceResponseSchema, CreateAuthServiceRequest, CreateAuthServiceRequestSchema, CreateAuthServiceResponse, CreateAuthServiceResponseSchema, CreateControlplaneMachineUserRequest, CreateControlplaneMachineUserRequestSchema, CreateControlplaneMachineUserResponse, CreateControlplaneMachineUserResponseSchema, CreatePersonalAccessTokenRequest, CreatePersonalAccessTokenRequestSchema, CreatePersonalAccessTokenResponse, CreatePersonalAccessTokenResponseSchema, CreateTenantConfigRequest, CreateTenantConfigRequestSchema, CreateTenantConfigResponse, CreateTenantConfigResponseSchema, CreateUserProfileConfigRequest, CreateUserProfileConfigRequestSchema, CreateUserProfileConfigResponse, CreateUserProfileConfigResponseSchema, DeleteAuthConnectionRequest, DeleteAuthConnectionRequestSchema, DeleteAuthConnectionResponse, DeleteAuthConnectionResponseSchema, DeleteAuthHookRequest, DeleteAuthHookRequestSchema, DeleteAuthHookResponse, DeleteAuthHookResponseSchema, DeleteAuthIDPConfigRequest, DeleteAuthIDPConfigRequestSchema, DeleteAuthIDPConfigResponse, DeleteAuthIDPConfigResponseSchema, DeleteAuthMachineUserRequest, DeleteAuthMachineUserRequestSchema, DeleteAuthMachineUserResponse, DeleteAuthMachineUserResponseSchema, DeleteAuthOAuth2ClientRequest, DeleteAuthOAuth2ClientRequestSchema, DeleteAuthOAuth2ClientResponse, DeleteAuthOAuth2ClientResponseSchema, DeleteAuthSCIMConfigRequest, DeleteAuthSCIMConfigRequestSchema, DeleteAuthSCIMConfigResponse, DeleteAuthSCIMConfigResponseSchema, DeleteAuthSCIMResourceRequest, DeleteAuthSCIMResourceRequestSchema, DeleteAuthSCIMResourceResponse, DeleteAuthSCIMResourceResponseSchema, DeleteAuthServiceRequest, DeleteAuthServiceRequestSchema, DeleteAuthServiceResponse, DeleteAuthServiceResponseSchema, DeleteControlplaneMachineUserRequest, DeleteControlplaneMachineUserRequestSchema, DeleteControlplaneMachineUserResponse, DeleteControlplaneMachineUserResponseSchema, DeletePersonalAccessTokenRequest, DeletePersonalAccessTokenRequestSchema, DeletePersonalAccessTokenResponse, DeletePersonalAccessTokenResponseSchema, DeleteTenantConfigRequest, DeleteTenantConfigRequestSchema, DeleteTenantConfigResponse, DeleteTenantConfigResponseSchema, DeleteUserProfileConfigRequest, DeleteUserProfileConfigRequestSchema, DeleteUserProfileConfigResponse, DeleteUserProfileConfigResponseSchema, ExchangeAuthConnectionAuthorizationCodeRequest, ExchangeAuthConnectionAuthorizationCodeRequestSchema, ExchangeAuthConnectionAuthorizationCodeResponse, ExchangeAuthConnectionAuthorizationCodeResponseSchema, GetAuthHookRequest, GetAuthHookRequestSchema, GetAuthHookResponse, GetAuthHookResponseSchema, GetAuthIDPConfigRequest, GetAuthIDPConfigRequestSchema, GetAuthIDPConfigResponse, GetAuthIDPConfigResponseSchema, GetAuthMachineUserRequest, GetAuthMachineUserRequestSchema, GetAuthMachineUserResponse, GetAuthMachineUserResponseSchema, GetAuthOAuth2ClientRequest, GetAuthOAuth2ClientRequestSchema, GetAuthOAuth2ClientResponse, GetAuthOAuth2ClientResponseSchema, GetAuthSCIMConfigRequest, GetAuthSCIMConfigRequestSchema, GetAuthSCIMConfigResponse, GetAuthSCIMConfigResponseSchema, GetAuthSCIMResourceRequest, GetAuthSCIMResourceRequestSchema, GetAuthSCIMResourceResponse, GetAuthSCIMResourceResponseSchema, GetAuthSCIMResourcesRequest, GetAuthSCIMResourcesRequestSchema, GetAuthSCIMResourcesResponse, GetAuthSCIMResourcesResponseSchema, GetAuthServiceRequest, GetAuthServiceRequestSchema, GetAuthServiceResponse, GetAuthServiceResponseSchema, GetControlplaneMachineUserByNameRequest, GetControlplaneMachineUserByNameRequestSchema, GetControlplaneMachineUserByNameResponse, GetControlplaneMachineUserByNameResponseSchema, GetControlplaneMachineUserRequest, GetControlplaneMachineUserRequestSchema, GetControlplaneMachineUserResponse, GetControlplaneMachineUserResponseSchema, GetTenantConfigRequest, GetTenantConfigRequestSchema, GetTenantConfigResponse, GetTenantConfigResponseSchema, GetUserProfileConfigRequest, GetUserProfileConfigRequestSchema, GetUserProfileConfigResponse, GetUserProfileConfigResponseSchema, ListAuthConnectionsRequest, ListAuthConnectionsRequestSchema, ListAuthConnectionsResponse, ListAuthConnectionsResponseSchema, ListAuthIDPConfigsRequest, ListAuthIDPConfigsRequestSchema, ListAuthIDPConfigsResponse, ListAuthIDPConfigsResponseSchema, ListAuthMachineUsersRequest, ListAuthMachineUsersRequestSchema, ListAuthMachineUsersResponse, ListAuthMachineUsersResponseSchema, ListAuthOAuth2ClientsRequest, ListAuthOAuth2ClientsRequestSchema, ListAuthOAuth2ClientsResponse, ListAuthOAuth2ClientsResponseSchema, ListAuthServicesRequest, ListAuthServicesRequestSchema, ListAuthServicesResponse, ListAuthServicesResponseSchema, ListControlplaneMachineUsersRequest, ListControlplaneMachineUsersRequestSchema, ListControlplaneMachineUsersResponse, ListControlplaneMachineUsersResponseSchema, ListPersonalAccessTokensRequest, ListPersonalAccessTokensRequestSchema, ListPersonalAccessTokensResponse, ListPersonalAccessTokensResponseSchema, RegisterAuthConnectionSessionRequest, RegisterAuthConnectionSessionRequestSchema, RegisterAuthConnectionSessionResponse, RegisterAuthConnectionSessionResponseSchema, RevokeAuthConnectionRequest, RevokeAuthConnectionRequestSchema, RevokeAuthConnectionResponse, RevokeAuthConnectionResponseSchema, UpdateAuthConnectionRequest, UpdateAuthConnectionRequestSchema, UpdateAuthConnectionResponse, UpdateAuthConnectionResponseSchema, UpdateAuthHookRequest, UpdateAuthHookRequestSchema, UpdateAuthHookResponse, UpdateAuthHookResponseSchema, UpdateAuthIDPConfigRequest, UpdateAuthIDPConfigRequestSchema, UpdateAuthIDPConfigResponse, UpdateAuthIDPConfigResponseSchema, UpdateAuthMachineUserRequest, UpdateAuthMachineUserRequestSchema, UpdateAuthMachineUserResponse, UpdateAuthMachineUserResponseSchema, UpdateAuthOAuth2ClientRequest, UpdateAuthOAuth2ClientRequestSchema, UpdateAuthOAuth2ClientResponse, UpdateAuthOAuth2ClientResponseSchema, UpdateAuthSCIMConfigRequest, UpdateAuthSCIMConfigRequestSchema, UpdateAuthSCIMConfigResponse, UpdateAuthSCIMConfigResponseSchema, UpdateAuthSCIMResourceRequest, UpdateAuthSCIMResourceRequestSchema, UpdateAuthSCIMResourceResponse, UpdateAuthSCIMResourceResponseSchema, UpdateAuthServiceRequest, UpdateAuthServiceRequestSchema, UpdateAuthServiceResponse, UpdateAuthServiceResponseSchema, UpdateControlplaneMachineUserRequest, UpdateControlplaneMachineUserRequestSchema, UpdateControlplaneMachineUserResponse, UpdateControlplaneMachineUserResponseSchema, UpdateTenantConfigRequest, UpdateTenantConfigRequestSchema, UpdateTenantConfigResponse, UpdateTenantConfigResponseSchema, UpdateUserProfileConfigRequest, UpdateUserProfileConfigRequestSchema, UpdateUserProfileConfigResponse, UpdateUserProfileConfigResponseSchema };
|