@camunda8/orchestration-cluster-api 10.0.0-alpha.31 → 10.0.0-alpha.32

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 CHANGED
@@ -1,3 +1,10 @@
1
+ # [10.0.0-alpha.32](https://github.com/camunda/orchestration-cluster-api-js/compare/v10.0.0-alpha.31...v10.0.0-alpha.32) (2026-08-20)
2
+
3
+
4
+ ### Features
5
+
6
+ * **effect:** Effect-native job-worker surface ([#444](https://github.com/camunda/orchestration-cluster-api-js/issues/444)) ([754c096](https://github.com/camunda/orchestration-cluster-api-js/commit/754c09625a930ff6507e7a5f0e6f0a050f80175e)), closes [#437](https://github.com/camunda/orchestration-cluster-api-js/issues/437) [#438](https://github.com/camunda/orchestration-cluster-api-js/issues/438)
7
+
1
8
  # [10.0.0-alpha.31](https://github.com/camunda/orchestration-cluster-api-js/compare/v10.0.0-alpha.30...v10.0.0-alpha.31) (2026-08-20)
2
9
 
3
10
 
package/README.md CHANGED
@@ -1330,6 +1330,78 @@ Exports available from `.../effect`:
1330
1330
  **Clock-class win:** `eventually` / `withTimeout` run on the Effect `Clock`, so `TestClock.adjust`
1331
1331
  advances eventual/timeout deterministically in tests — no real-clock burn.
1332
1332
 
1333
+ ### Effect Job Workers
1334
+
1335
+ The same subpath also exposes an **Effect-native job worker** — the long-running
1336
+ `activateJobs` → handle → `completeJob`/`failJob` loop, modelled as Effect. A handler is
1337
+ `(job) => Effect.Effect<CompleteVars, JobError, R>` with a **typed failure channel**: a
1338
+ `RetryableJobError` becomes `failJob` with `retries - 1` (plus an optional server-side backoff),
1339
+ and a `TerminalJobError` becomes `throwJobError` (caught by a BPMN error boundary, or an incident if
1340
+ uncaught). Success completes the job with the returned variables. It composes over the same
1341
+ activation/backpressure runtime the Promise worker uses — it does not reimplement activation.
1342
+
1343
+ <!-- snippet-exempt: uses SDK /effect subpath + optional effect peer not available in examples project -->
1344
+ ```ts
1345
+ import { Effect, Schedule } from 'effect';
1346
+ import {
1347
+ createCamundaEffectWorker,
1348
+ layer,
1349
+ RetryableJobError,
1350
+ TerminalJobError,
1351
+ } from '@camunda8/orchestration-cluster-api/effect';
1352
+
1353
+ const program = Effect.gen(function* () {
1354
+ // Forked into the current Scope: interrupted (with a best-effort lease release) when
1355
+ // the scope closes.
1356
+ yield* createCamundaEffectWorker<{ ok: boolean }>({
1357
+ type: 'payment-processing',
1358
+ maxJobsToActivate: 10, // activation batch size
1359
+ concurrency: 10, // max jobs handled in parallel (backpressure)
1360
+ pollInterval: '1 second', // between empty polls, on the Effect Clock
1361
+ // Optional: retry the handler in-process on a RetryableJobError before failing the job.
1362
+ handlerRetrySchedule: Schedule.spaced('2 seconds'),
1363
+ handler: (job) =>
1364
+ Effect.gen(function* () {
1365
+ if (!job.variables.amount) {
1366
+ // Terminal → raise a BPMN error / incident.
1367
+ return yield* Effect.fail(
1368
+ new TerminalJobError({ code: 'INVALID_INPUT', message: 'amount is required' })
1369
+ );
1370
+ }
1371
+ if (yield* isServiceDown()) {
1372
+ // Retryable → failJob(retries - 1) with a re-activation backoff.
1373
+ return yield* Effect.fail(
1374
+ new RetryableJobError({ message: 'downstream unavailable', retryBackoff: '5 seconds' })
1375
+ );
1376
+ }
1377
+ return { ok: true }; // success → completeJob(variables)
1378
+ }),
1379
+ });
1380
+
1381
+ // ... the worker runs for the lifetime of this scope.
1382
+ yield* Effect.never;
1383
+ }).pipe(
1384
+ Effect.scoped,
1385
+ Effect.provide(layer()) // provides the `/effect` client the worker depends on
1386
+ );
1387
+
1388
+ void program;
1389
+ ```
1390
+
1391
+ Worker exports from `.../effect`:
1392
+
1393
+ - `createCamundaEffectWorker(config)` – forks the worker into the current `Scope` and returns a
1394
+ handle (`{ type, join, interrupt }`); provide the client `layer()` as its dependency.
1395
+ - `activateJobsStream(type, options)` – the lower-level `Stream.Stream<Job, DomainError, …>` of
1396
+ activated jobs, polling on the Effect `Clock`.
1397
+ - `workerLayer(config)` – a `Layer` that runs a worker for the layer's lifetime.
1398
+ - Tagged job failures: `RetryableJobError` (→ `failJob`), `TerminalJobError` (→ `throwJobError`),
1399
+ together the `JobError` channel.
1400
+
1401
+ **Clock-class win:** the activation poll interval and the handler-retry `Schedule` run on the Effect
1402
+ `Clock`, so `TestClock.adjust` bounds activation/retry timing in virtual time — the whole loop is
1403
+ deterministic in tests, with no real-clock burn.
1404
+
1333
1405
  ## Eventual Consistency Polling
1334
1406
 
1335
1407
  Some endpoints accept consistency management options. Pass a `consistency` block (where supported) with `waitUpToMs` and optional `pollIntervalMs` (default 500). If the condition is not met within timeout an `EventualConsistencyTimeoutError` is thrown.
@@ -23950,9 +23950,14 @@ declare const resolveSecrets: <ThrowOnError extends boolean = true>(options: Opt
23950
23950
  * returns secret values, only the reference names.
23951
23951
  *
23952
23952
  * The references are read from the secret stores configured for the caller's physical tenant.
23953
- * Secret names that cannot form a valid `camunda.secrets.<name>` reference (for example names
23954
- * containing a dot or a dash) are omitted, since they could neither be resolved nor be used in
23955
- * a BPMN expression.
23953
+ * A store may hold names outside the reference name charset (for example one containing a
23954
+ * dot); those are omitted, since `/secrets/resolve` would reject them and no permission can
23955
+ * be granted on them.
23956
+ *
23957
+ * A returned reference is usable verbatim with `/secrets/resolve`. In a FEEL expression,
23958
+ * however, a name that is not a bare identifier has to be backtick-escaped, since FEEL reads
23959
+ * a bare dash as the minus operator: a listed `camunda.secrets.db-password` is written
23960
+ * `` =camunda.secrets.`db-password` `` in a BPMN input mapping.
23956
23961
  *
23957
23962
  * This endpoint is an alpha feature and may be subject to change in future releases.
23958
23963
  *
@@ -30458,9 +30463,14 @@ declare class CamundaClient {
30458
30463
  * returns secret values, only the reference names.
30459
30464
  *
30460
30465
  * The references are read from the secret stores configured for the caller's physical tenant.
30461
- * Secret names that cannot form a valid `camunda.secrets.<name>` reference (for example names
30462
- * containing a dot or a dash) are omitted, since they could neither be resolved nor be used in
30463
- * a BPMN expression.
30466
+ * A store may hold names outside the reference name charset (for example one containing a
30467
+ * dot); those are omitted, since `/secrets/resolve` would reject them and no permission can
30468
+ * be granted on them.
30469
+ *
30470
+ * A returned reference is usable verbatim with `/secrets/resolve`. In a FEEL expression,
30471
+ * however, a name that is not a bare identifier has to be backtick-escaped, since FEEL reads
30472
+ * a bare dash as the minus operator: a listed `camunda.secrets.db-password` is written
30473
+ * `` =camunda.secrets.`db-password` `` in a BPMN input mapping.
30464
30474
  *
30465
30475
  * This endpoint is an alpha feature and may be subject to change in future releases.
30466
30476
  *
@@ -33327,4 +33337,4 @@ declare class CamundaClient {
33327
33337
  }): CancelablePromise<VariableMap<TSchema>>;
33328
33338
  }
33329
33339
 
33330
- export { type AdvancedJobStateFilter as $, type ActivateAdHocSubProcessActivitiesData as A, type TenantFilter as A$, SignalKey as A0, type SignalKeyWritable as A1, type SignalWaitStateDetails as A2, SortOrderEnum as A3, type SourceElementIdInstruction as A4, type SourceElementInstanceKeyInstruction as A5, type SourceElementInstruction as A6, StartCursor as A7, type StateCode as A8, type StatusMetric as A9, type TagSetWritable as AA, type TakeHistoryBackupAsClusterAdminData as AB, type TakeHistoryBackupAsClusterAdminError as AC, type TakeHistoryBackupAsClusterAdminErrors as AD, type TakeHistoryBackupAsClusterAdminResponse as AE, type TakeHistoryBackupAsClusterAdminResponses as AF, type TakeHistoryBackupData as AG, type TakeHistoryBackupError as AH, type TakeHistoryBackupErrors as AI, type TakeHistoryBackupRequest as AJ, type TakeHistoryBackupResponse as AK, type TakeHistoryBackupResponse2 as AL, type TakeHistoryBackupResponses as AM, type TakeRuntimeBackupData as AN, type TakeRuntimeBackupError as AO, type TakeRuntimeBackupErrors as AP, type TakeRuntimeBackupRequest as AQ, type TakeRuntimeBackupResponse as AR, type TakeRuntimeBackupResponse2 as AS, type TakeRuntimeBackupResponses as AT, type TelemetryHooks as AU, type TenantClientResult as AV, type TenantClientSearchQueryRequest as AW, type TenantClientSearchQuerySortRequest as AX, type TenantClientSearchResult as AY, type TenantCreateRequest as AZ, type TenantCreateResult as A_, type StringFilterProperty as Aa, type SupportLogger as Ab, type SuspendBatchOperationData as Ac, type SuspendBatchOperationError as Ad, type SuspendBatchOperationErrors as Ae, type SuspendBatchOperationResponse as Af, type SuspendBatchOperationResponses as Ag, type SuspendProcessInstanceData as Ah, type SuspendProcessInstanceError as Ai, type SuspendProcessInstanceErrors as Aj, type SuspendProcessInstanceRequest as Ak, type SuspendProcessInstanceResponse as Al, type SuspendProcessInstanceResponses as Am, type SuspendProcessInstancesBatchOperationData as An, type SuspendProcessInstancesBatchOperationError as Ao, type SuspendProcessInstancesBatchOperationErrors as Ap, type SuspendProcessInstancesBatchOperationResponse as Aq, type SuspendProcessInstancesBatchOperationResponses as Ar, type SyncRuntimeBackupStateData as As, type SyncRuntimeBackupStateError as At, type SyncRuntimeBackupStateErrors as Au, type SyncRuntimeBackupStateResponse as Av, type SyncRuntimeBackupStateResponses as Aw, type SystemConfigurationResponse as Ax, Tag as Ay, type TagSet as Az, type AdvancedBatchOperationStateFilter as B, type UnassignRoleFromGroupData as B$, TenantFilterEnum as B0, type TenantGroupResult as B1, type TenantGroupSearchQueryRequest as B2, type TenantGroupSearchQuerySortRequest as B3, type TenantGroupSearchResult as B4, TenantId as B5, type TenantMappingRuleSearchResult as B6, type TenantResult as B7, type TenantRoleSearchResult as B8, type TenantSearchQueryRequest as B9, type UnassignClientFromGroupResponse as BA, type UnassignClientFromGroupResponses as BB, type UnassignClientFromTenantData as BC, type UnassignClientFromTenantError as BD, type UnassignClientFromTenantErrors as BE, type UnassignClientFromTenantResponse as BF, type UnassignClientFromTenantResponses as BG, type UnassignGroupFromTenantData as BH, type UnassignGroupFromTenantError as BI, type UnassignGroupFromTenantErrors as BJ, type UnassignGroupFromTenantResponse as BK, type UnassignGroupFromTenantResponses as BL, type UnassignMappingRuleFromGroupData as BM, type UnassignMappingRuleFromGroupError as BN, type UnassignMappingRuleFromGroupErrors as BO, type UnassignMappingRuleFromGroupResponse as BP, type UnassignMappingRuleFromGroupResponses as BQ, type UnassignMappingRuleFromTenantData as BR, type UnassignMappingRuleFromTenantError as BS, type UnassignMappingRuleFromTenantErrors as BT, type UnassignMappingRuleFromTenantResponse as BU, type UnassignMappingRuleFromTenantResponses as BV, type UnassignRoleFromClientData as BW, type UnassignRoleFromClientError as BX, type UnassignRoleFromClientErrors as BY, type UnassignRoleFromClientResponse as BZ, type UnassignRoleFromClientResponses as B_, type TenantSearchQueryResult as Ba, type TenantSearchQuerySortRequest as Bb, type TenantUpdateRequest as Bc, type TenantUpdateResult as Bd, type TenantUserResult as Be, type TenantUserSearchQueryRequest as Bf, type TenantUserSearchQuerySortRequest as Bg, type TenantUserSearchResult as Bh, ThreadPool as Bi, type ThreadedJob as Bj, type ThreadedJobHandler as Bk, ThreadedJobWorker as Bl, type ThreadedJobWorkerConfig as Bm, type ThrowJobErrorData as Bn, type ThrowJobErrorError as Bo, type ThrowJobErrorErrors as Bp, type ThrowJobErrorResponse as Bq, type ThrowJobErrorResponses as Br, type TimerWaitStateDetails as Bs, type TopologyResponse as Bt, type TypedVariableItem as Bu, type TypedVariablePage as Bv, TypedVariablesError as Bw, type UnassignClientFromGroupData as Bx, type UnassignClientFromGroupError as By, type UnassignClientFromGroupErrors as Bz, CamundaClient as C, type UpdateJobErrors as C$, type UnassignRoleFromGroupError as C0, type UnassignRoleFromGroupErrors as C1, type UnassignRoleFromGroupResponse as C2, type UnassignRoleFromGroupResponses as C3, type UnassignRoleFromMappingRuleData as C4, type UnassignRoleFromMappingRuleError as C5, type UnassignRoleFromMappingRuleErrors as C6, type UnassignRoleFromMappingRuleResponse as C7, type UnassignRoleFromMappingRuleResponses as C8, type UnassignRoleFromTenantData as C9, type UpdateAgentInstanceErrors as CA, type UpdateAgentInstanceResponse as CB, type UpdateAgentInstanceResponses as CC, type UpdateAuthorizationData as CD, type UpdateAuthorizationError as CE, type UpdateAuthorizationErrors as CF, type UpdateAuthorizationResponse as CG, type UpdateAuthorizationResponses as CH, type UpdateClusterVariableRequest as CI, type UpdateGlobalClusterVariableData as CJ, type UpdateGlobalClusterVariableError as CK, type UpdateGlobalClusterVariableErrors as CL, type UpdateGlobalClusterVariableResponse as CM, type UpdateGlobalClusterVariableResponses as CN, type UpdateGlobalTaskListenerData as CO, type UpdateGlobalTaskListenerError as CP, type UpdateGlobalTaskListenerErrors as CQ, type UpdateGlobalTaskListenerRequest as CR, type UpdateGlobalTaskListenerResponse as CS, type UpdateGlobalTaskListenerResponses as CT, type UpdateGroupData as CU, type UpdateGroupError as CV, type UpdateGroupErrors as CW, type UpdateGroupResponse as CX, type UpdateGroupResponses as CY, type UpdateJobData as CZ, type UpdateJobError as C_, type UnassignRoleFromTenantError as Ca, type UnassignRoleFromTenantErrors as Cb, type UnassignRoleFromTenantResponse as Cc, type UnassignRoleFromTenantResponses as Cd, type UnassignRoleFromUserData as Ce, type UnassignRoleFromUserError as Cf, type UnassignRoleFromUserErrors as Cg, type UnassignRoleFromUserResponse as Ch, type UnassignRoleFromUserResponses as Ci, type UnassignUserFromGroupData as Cj, type UnassignUserFromGroupError as Ck, type UnassignUserFromGroupErrors as Cl, type UnassignUserFromGroupResponse as Cm, type UnassignUserFromGroupResponses as Cn, type UnassignUserFromTenantData as Co, type UnassignUserFromTenantError as Cp, type UnassignUserFromTenantErrors as Cq, type UnassignUserFromTenantResponse as Cr, type UnassignUserFromTenantResponses as Cs, type UnassignUserTaskData as Ct, type UnassignUserTaskError as Cu, type UnassignUserTaskErrors as Cv, type UnassignUserTaskResponse as Cw, type UnassignUserTaskResponses as Cx, type UpdateAgentInstanceData as Cy, type UpdateAgentInstanceError as Cz, type AdvancedBatchOperationTypeFilter as D, type UserTaskStateFilterProperty as D$, type UpdateJobResponse as D0, type UpdateJobResponses as D1, type UpdateJobsBatchOperationData as D2, type UpdateJobsBatchOperationError as D3, type UpdateJobsBatchOperationErrors as D4, type UpdateJobsBatchOperationResponse as D5, type UpdateJobsBatchOperationResponses as D6, type UpdateMappingRuleData as D7, type UpdateMappingRuleError as D8, type UpdateMappingRuleErrors as D9, type UpdateUserTaskResponses as DA, type UsageMetricsResponse as DB, type UsageMetricsResponseItem as DC, type UseSourceParentKeyInstruction as DD, type UserCreateResult as DE, type UserFilter as DF, type UserRequest as DG, type UserResult as DH, type UserSearchQueryRequest as DI, type UserSearchQuerySortRequest as DJ, type UserSearchResult as DK, type UserTaskAssignmentRequest as DL, type UserTaskAuditLogFilter as DM, type UserTaskAuditLogSearchQueryRequest as DN, type UserTaskCompletionRequest as DO, type UserTaskEffectiveVariableSearchQueryRequest as DP, type UserTaskFilter as DQ, UserTaskKey as DR, type UserTaskKeyWritable as DS, type UserTaskProperties as DT, type UserTaskResult as DU, type UserTaskSearchQuery as DV, type UserTaskSearchQueryResult as DW, type UserTaskSearchQuerySortRequest as DX, UserTaskStateEnum as DY, type UserTaskStateExactMatch as DZ, type UserTaskStateExactMatchWritable as D_, type UpdateMappingRuleResponse as Da, type UpdateMappingRuleResponses as Db, type UpdateRoleData as Dc, type UpdateRoleError as Dd, type UpdateRoleErrors as De, type UpdateRoleResponse as Df, type UpdateRoleResponses as Dg, type UpdateTenantClusterVariableData as Dh, type UpdateTenantClusterVariableError as Di, type UpdateTenantClusterVariableErrors as Dj, type UpdateTenantClusterVariableResponse as Dk, type UpdateTenantClusterVariableResponses as Dl, type UpdateTenantData as Dm, type UpdateTenantError as Dn, type UpdateTenantErrors as Do, type UpdateTenantResponse as Dp, type UpdateTenantResponses as Dq, type UpdateUserData as Dr, type UpdateUserError as Ds, type UpdateUserErrors as Dt, type UpdateUserResponse as Du, type UpdateUserResponses as Dv, type UpdateUserTaskData as Dw, type UpdateUserTaskError as Dx, type UpdateUserTaskErrors as Dy, type UpdateUserTaskResponse as Dz, type AdvancedCategoryFilter as E, type createAdminUserInput as E$, type UserTaskUpdateRequest as E0, type UserTaskVariableFilter as E1, type UserTaskVariableSearchQueryRequest as E2, type UserTaskVariableSearchQuerySortRequest as E3, type UserTaskWaitStateDetails as E4, type UserUpdateRequest as E5, type UserUpdateResult as E6, Username as E7, type ValidationMode as E8, VariableCollector as E9, type activateAdHocSubProcessActivitiesInput as EA, type activateJobsInput as EB, assertConstraint as EC, type assignClientToGroupInput as ED, type assignClientToTenantInput as EE, type assignGroupToTenantInput as EF, type assignMappingRuleToGroupInput as EG, type assignMappingRuleToTenantInput as EH, type assignProcessInstanceBusinessIdInput as EI, type assignRoleToClientInput as EJ, type assignRoleToGroupInput as EK, type assignRoleToMappingRuleInput as EL, type assignRoleToTenantInput as EM, type assignRoleToUserInput as EN, type assignUserTaskInput as EO, type assignUserToGroupInput as EP, type assignUserToTenantInput as EQ, type broadcastSignalInput as ER, type cancelBatchOperationInput as ES, type cancelProcessInstanceInput as ET, type cancelProcessInstancesBatchOperationInput as EU, type changeClusterModeAsClusterAdminInput as EV, type changeClusterModeInput as EW, collectTypedVariables as EX, type completeJobInput as EY, type completeUserTaskInput as EZ, type correlateMessageInput as E_, VariableDeserializationError as Ea, type VariableFilter as Eb, VariableKey as Ec, type VariableKeyExactMatch as Ed, type VariableKeyExactMatchWritable as Ee, type VariableKeyFilterProperty as Ef, type VariableKeyWritable as Eg, VariableMap as Eh, type VariableResult as Ei, type VariableResultBase as Ej, VariableScopeCollisionError as Ek, type VariableSearchQuery as El, type VariableSearchQueryResult as Em, type VariableSearchQuerySortRequest as En, type VariableSearchResult as Eo, type VariableValueFilterProperty as Ep, type WaitStateDetails as Eq, WaitStateElementTypeEnum as Er, type WaitStateElementTypeExactMatch as Es, type WaitStateElementTypeExactMatchWritable as Et, type WaitStateElementTypeFilterProperty as Eu, WaitStateTypeEnum as Ev, type WaitStateTypeExactMatch as Ew, type WaitStateTypeExactMatchWritable as Ex, type WaitStateTypeFilterProperty as Ey, type WebappComponent as Ez, type AdvancedClusterVariableKindFilter as F, type getDecisionRequirementsXmlInput as F$, type createAgentInstanceHistoryItemInput as F0, type createAgentInstanceInput as F1, type createAuthorizationInput as F2, type createDeploymentInput as F3, type createDocumentInput as F4, type createDocumentLinkInput as F5, type createDocumentsInput as F6, type createElementInstanceVariablesInput as F7, type createGlobalClusterVariableInput as F8, type createGlobalTaskListenerInput as F9, type evaluateConditionalsInput as FA, type evaluateDecisionInput as FB, type evaluateExpressionInput as FC, type failJobInput as FD, type getAgentDefinitionConsistency as FE, type getAgentDefinitionInput as FF, type getAgentInstanceConsistency as FG, type getAgentInstanceInput as FH, type getAuditLogConsistency as FI, type getAuditLogInput as FJ, type getAuthenticationInput as FK, type getAuthorizationConsistency as FL, type getAuthorizationInput as FM, type getBatchOperationConsistency as FN, type getBatchOperationInput as FO, type getClusterExportingStatusInput as FP, type getClusterStatusInput as FQ, type getClusterTopologyInput as FR, type getDecisionDefinitionConsistency as FS, type getDecisionDefinitionInput as FT, type getDecisionDefinitionXmlConsistency as FU, type getDecisionDefinitionXmlInput as FV, type getDecisionInstanceConsistency as FW, type getDecisionInstanceInput as FX, type getDecisionRequirementsConsistency as FY, type getDecisionRequirementsInput as FZ, type getDecisionRequirementsXmlConsistency as F_, type createGroupInput as Fa, type createMappingRuleInput as Fb, type createProcessInstanceInput as Fc, type createRoleInput as Fd, type createTenantClusterVariableInput as Fe, type createTenantInput as Ff, type createUserInput as Fg, type deleteAuthorizationInput as Fh, type deleteDecisionInstanceInput as Fi, type deleteDecisionInstancesBatchOperationInput as Fj, type deleteDocumentInput as Fk, type deleteGlobalClusterVariableInput as Fl, type deleteGlobalTaskListenerInput as Fm, type deleteGroupInput as Fn, type deleteHistoryBackupAsClusterAdminInput as Fo, type deleteHistoryBackupInput as Fp, type deleteMappingRuleInput as Fq, type deleteProcessInstanceInput as Fr, type deleteProcessInstancesBatchOperationInput as Fs, type deleteResourceInput as Ft, type deleteRoleInput as Fu, type deleteRuntimeBackupInput as Fv, type deleteRuntimeBackupStateInput as Fw, type deleteTenantClusterVariableInput as Fx, type deleteTenantInput as Fy, type deleteUserInput as Fz, type AdvancedClusterVariableScopeFilter as G, type getRoleInput as G$, type getDocumentInput as G0, type getElementInstanceConsistency as G1, type getElementInstanceInput as G2, type getExportingStatusInput as G3, type getFormByKeyConsistency as G4, type getFormByKeyInput as G5, type getGlobalClusterVariableConsistency as G6, type getGlobalClusterVariableInput as G7, type getGlobalJobStatisticsConsistency as G8, type getGlobalJobStatisticsInput as G9, type getProcessDefinitionMessageSubscriptionStatisticsInput as GA, type getProcessDefinitionStatisticsConsistency as GB, type getProcessDefinitionStatisticsInput as GC, type getProcessDefinitionXmlConsistency as GD, type getProcessDefinitionXmlInput as GE, type getProcessInstanceCallHierarchyConsistency as GF, type getProcessInstanceCallHierarchyInput as GG, type getProcessInstanceConsistency as GH, type getProcessInstanceInput as GI, type getProcessInstanceSequenceFlowsConsistency as GJ, type getProcessInstanceSequenceFlowsInput as GK, type getProcessInstanceStatisticsByDefinitionConsistency as GL, type getProcessInstanceStatisticsByDefinitionInput as GM, type getProcessInstanceStatisticsByErrorConsistency as GN, type getProcessInstanceStatisticsByErrorInput as GO, type getProcessInstanceStatisticsConsistency as GP, type getProcessInstanceStatisticsInput as GQ, type getProcessInstanceWaitStateStatisticsConsistency as GR, type getProcessInstanceWaitStateStatisticsInput as GS, type getResourceConsistency as GT, type getResourceContentBinaryConsistency as GU, type getResourceContentBinaryInput as GV, type getResourceContentConsistency as GW, type getResourceContentInput as GX, type getResourceInput as GY, type getRestoreStatusInput as GZ, type getRoleConsistency as G_, type getGlobalTaskListenerConsistency as Ga, type getGlobalTaskListenerInput as Gb, type getGroupConsistency as Gc, type getGroupInput as Gd, type getHistoryBackupAsClusterAdminInput as Ge, type getHistoryBackupInput as Gf, type getIncidentConsistency as Gg, type getIncidentInput as Gh, type getJobErrorStatisticsConsistency as Gi, type getJobErrorStatisticsInput as Gj, type getJobTimeSeriesStatisticsConsistency as Gk, type getJobTimeSeriesStatisticsInput as Gl, type getJobTypeStatisticsConsistency as Gm, type getJobTypeStatisticsInput as Gn, type getJobWorkerStatisticsConsistency as Go, type getJobWorkerStatisticsInput as Gp, type getLicenseInput as Gq, type getMappingRuleConsistency as Gr, type getMappingRuleInput as Gs, type getProcessDefinitionConsistency as Gt, type getProcessDefinitionInput as Gu, type getProcessDefinitionInstanceStatisticsConsistency as Gv, type getProcessDefinitionInstanceStatisticsInput as Gw, type getProcessDefinitionInstanceVersionStatisticsConsistency as Gx, type getProcessDefinitionInstanceVersionStatisticsInput as Gy, type getProcessDefinitionMessageSubscriptionStatisticsConsistency as Gz, type AdvancedDateTimeFilter as H, type searchClientsForTenantConsistency as H$, type getRuntimeBackupInput as H0, type getRuntimeBackupStateInput as H1, type getStartProcessFormConsistency as H2, type getStartProcessFormInput as H3, type getStatusInput as H4, type getSystemConfigurationInput as H5, type getTenantClusterVariableConsistency as H6, type getTenantClusterVariableInput as H7, type getTenantConsistency as H8, type getTenantInput as H9, type resolveProcessInstanceIncidentsInput as HA, type resolveSecretsInput as HB, type restoreAsClusterAdminInput as HC, type restoreInput as HD, type resumeBatchOperationInput as HE, type resumeClusterExportingInput as HF, type resumeExportingInput as HG, type resumeProcessInstanceInput as HH, type resumeProcessInstancesBatchOperationInput as HI, type searchAgentDefinitionsConsistency as HJ, type searchAgentDefinitionsInput as HK, type searchAgentInstanceHistoryConsistency as HL, type searchAgentInstanceHistoryInput as HM, type searchAgentInstancesConsistency as HN, type searchAgentInstancesInput as HO, type searchAuditLogsConsistency as HP, type searchAuditLogsInput as HQ, type searchAuthorizationsConsistency as HR, type searchAuthorizationsInput as HS, type searchBatchOperationItemsConsistency as HT, type searchBatchOperationItemsInput as HU, type searchBatchOperationsConsistency as HV, type searchBatchOperationsInput as HW, type searchClientsForGroupConsistency as HX, type searchClientsForGroupInput as HY, type searchClientsForRoleConsistency as HZ, type searchClientsForRoleInput as H_, type getTopologyInput as Ha, type getUsageMetricsConsistency as Hb, type getUsageMetricsInput as Hc, type getUserConsistency as Hd, type getUserInput as He, type getUserTaskConsistency as Hf, type getUserTaskFormConsistency as Hg, type getUserTaskFormInput as Hh, type getUserTaskInput as Hi, type getVariableConsistency as Hj, type getVariableInput as Hk, type listHistoryBackupsAsClusterAdminInput as Hl, type listHistoryBackupsInput as Hm, type listRuntimeBackupsInput as Hn, type listSecretsInput as Ho, type migrateProcessInstanceInput as Hp, type migrateProcessInstancesBatchOperationInput as Hq, type modifyProcessInstanceInput as Hr, type modifyProcessInstancesBatchOperationInput as Hs, type pauseClusterExportingInput as Ht, type pauseExportingInput as Hu, type pinClockInput as Hv, type publishMessageInput as Hw, type resetClockInput as Hx, type resolveIncidentInput as Hy, type resolveIncidentsBatchOperationInput as Hz, type AdvancedDecisionDefinitionKeyFilter as I, type searchUserTaskVariablesConsistency as I$, type searchClientsForTenantInput as I0, type searchClusterVariablesConsistency as I1, type searchClusterVariablesInput as I2, type searchCorrelatedMessageSubscriptionsConsistency as I3, type searchCorrelatedMessageSubscriptionsInput as I4, type searchDecisionDefinitionsConsistency as I5, type searchDecisionDefinitionsInput as I6, type searchDecisionInstancesConsistency as I7, type searchDecisionInstancesInput as I8, type searchDecisionRequirementsConsistency as I9, type searchMappingRulesForTenantInput as IA, type searchMessageSubscriptionsConsistency as IB, type searchMessageSubscriptionsInput as IC, type searchOwnAuthorizationsConsistency as ID, type searchOwnAuthorizationsInput as IE, type searchProcessDefinitionVariableNamesConsistency as IF, type searchProcessDefinitionVariableNamesInput as IG, type searchProcessDefinitionsConsistency as IH, type searchProcessDefinitionsInput as II, type searchProcessInstanceIncidentsConsistency as IJ, type searchProcessInstanceIncidentsInput as IK, type searchProcessInstancesConsistency as IL, type searchProcessInstancesInput as IM, type searchResourcesConsistency as IN, type searchResourcesInput as IO, type searchRolesConsistency as IP, type searchRolesForGroupConsistency as IQ, type searchRolesForGroupInput as IR, type searchRolesForTenantConsistency as IS, type searchRolesForTenantInput as IT, type searchRolesInput as IU, type searchTenantsConsistency as IV, type searchTenantsInput as IW, type searchUserTaskAuditLogsConsistency as IX, type searchUserTaskAuditLogsInput as IY, type searchUserTaskEffectiveVariablesConsistency as IZ, type searchUserTaskEffectiveVariablesInput as I_, type searchDecisionRequirementsInput as Ia, type searchElementInstanceIncidentsConsistency as Ib, type searchElementInstanceIncidentsInput as Ic, type searchElementInstanceWaitStatesConsistency as Id, type searchElementInstanceWaitStatesInput as Ie, type searchElementInstancesConsistency as If, type searchElementInstancesInput as Ig, type searchGlobalTaskListenersConsistency as Ih, type searchGlobalTaskListenersInput as Ii, type searchGroupIdsForTenantConsistency as Ij, type searchGroupIdsForTenantInput as Ik, type searchGroupsConsistency as Il, type searchGroupsForRoleConsistency as Im, type searchGroupsForRoleInput as In, type searchGroupsInput as Io, type searchIncidentsConsistency as Ip, type searchIncidentsInput as Iq, type searchJobsConsistency as Ir, type searchJobsInput as Is, type searchMappingRuleConsistency as It, type searchMappingRuleInput as Iu, type searchMappingRulesForGroupConsistency as Iv, type searchMappingRulesForGroupInput as Iw, type searchMappingRulesForRoleConsistency as Ix, type searchMappingRulesForRoleInput as Iy, type searchMappingRulesForTenantConsistency as Iz, type AdvancedDecisionEvaluationInstanceKeyFilter as J, type searchUserTaskVariablesInput as J0, type searchUserTasksConsistency as J1, type searchUserTasksInput as J2, type searchUsersConsistency as J3, type searchUsersForGroupConsistency as J4, type searchUsersForGroupInput as J5, type searchUsersForRoleConsistency as J6, type searchUsersForRoleInput as J7, type searchUsersForTenantConsistency as J8, type searchUsersForTenantInput as J9, type updateGlobalClusterVariableInput as JA, type updateGlobalTaskListenerInput as JB, type updateGroupInput as JC, type updateJobInput as JD, type updateJobsBatchOperationInput as JE, type updateMappingRuleInput as JF, type updateRoleInput as JG, type updateTenantClusterVariableInput as JH, type updateTenantInput as JI, type updateUserInput as JJ, type updateUserTaskInput as JK, variableNamesFromSchema as JL, type searchUsersInput as Ja, type searchVariablesConsistency as Jb, type searchVariablesInput as Jc, type suspendBatchOperationInput as Jd, type suspendProcessInstanceInput as Je, type suspendProcessInstancesBatchOperationInput as Jf, type syncRuntimeBackupStateInput as Jg, type takeHistoryBackupAsClusterAdminInput as Jh, type takeHistoryBackupInput as Ji, type takeRuntimeBackupInput as Jj, type throwJobErrorInput as Jk, type unassignClientFromGroupInput as Jl, type unassignClientFromTenantInput as Jm, type unassignGroupFromTenantInput as Jn, type unassignMappingRuleFromGroupInput as Jo, type unassignMappingRuleFromTenantInput as Jp, type unassignRoleFromClientInput as Jq, type unassignRoleFromGroupInput as Jr, type unassignRoleFromMappingRuleInput as Js, type unassignRoleFromTenantInput as Jt, type unassignRoleFromUserInput as Ju, type unassignUserFromGroupInput as Jv, type unassignUserFromTenantInput as Jw, type unassignUserTaskInput as Jx, type updateAgentInstanceInput as Jy, type updateAuthorizationInput as Jz, type AdvancedDecisionEvaluationKeyFilter as K, type AdvancedDecisionInstanceStateFilter as L, type AdvancedDecisionRequirementsKeyFilter as M, type AdvancedDeploymentKeyFilter as N, type AdvancedElementIdFilter as O, type AdvancedElementInstanceKeyFilter as P, type AdvancedElementInstanceStateFilter as Q, type AdvancedEntityTypeFilter as R, type AdvancedFormKeyFilter as S, type AdvancedGlobalListenerSourceFilter as T, type AdvancedGlobalTaskListenerEventTypeFilter as U, type AdvancedIncidentErrorTypeFilter as V, type AdvancedIncidentStateFilter as W, type AdvancedIntegerFilter as X, type AdvancedJobKeyFilter as Y, type AdvancedJobKindFilter as Z, type AdvancedJobListenerEventTypeFilter as _, type CamundaOptions as a, type AgentInstanceKeyWritable as a$, type AdvancedMessageSubscriptionKeyFilter as a0, type AdvancedMessageSubscriptionStateFilter as a1, type AdvancedMessageSubscriptionTypeFilter as a2, type AdvancedMetadataValueFilter as a3, type AdvancedOperationTypeFilter as a4, type AdvancedProcessDefinitionIdFilter as a5, type AdvancedProcessDefinitionKeyFilter as a6, type AdvancedProcessInstanceKeyFilter as a7, type AdvancedProcessInstanceStateFilter as a8, type AdvancedResourceKeyFilter as a9, type AgentInstanceCreatedHistoryItem as aA, type AgentInstanceCreationRequest as aB, type AgentInstanceCreationResult as aC, type AgentInstanceDefinition as aD, type AgentInstanceDocumentContent as aE, type AgentInstanceFilter as aF, AgentInstanceHistoryCommitStatusEnum as aG, type AgentInstanceHistoryCommitStatusExactMatch as aH, type AgentInstanceHistoryCommitStatusExactMatchWritable as aI, type AgentInstanceHistoryCommitStatusFilterProperty as aJ, type AgentInstanceHistoryFilter as aK, type AgentInstanceHistoryItem as aL, type AgentInstanceHistoryItemCreationResult as aM, type AgentInstanceHistoryItemMetrics as aN, type AgentInstanceHistoryItemRequest as aO, type AgentInstanceHistoryItemResult as aP, AgentInstanceHistoryRoleEnum as aQ, type AgentInstanceHistoryRoleExactMatch as aR, type AgentInstanceHistoryRoleExactMatchWritable as aS, type AgentInstanceHistoryRoleFilterProperty as aT, type AgentInstanceHistorySearchQuery as aU, type AgentInstanceHistorySearchQueryResult as aV, type AgentInstanceHistorySearchQuerySortRequest as aW, AgentInstanceKey as aX, type AgentInstanceKeyExactMatch as aY, type AgentInstanceKeyExactMatchWritable as aZ, type AgentInstanceKeyFilterProperty as a_, type AdvancedResultFilter as aa, type AdvancedScopeKeyFilter as ab, type AdvancedStringFilter as ac, type AdvancedUserTaskStateFilter as ad, type AdvancedVariableKeyFilter as ae, type AdvancedWaitStateElementTypeFilter as af, type AdvancedWaitStateTypeFilter as ag, type AgentDefinitionFilter as ah, AgentDefinitionKey as ai, type AgentDefinitionKeyExactMatch as aj, type AgentDefinitionKeyExactMatchWritable as ak, type AgentDefinitionKeyFilterProperty as al, type AgentDefinitionKeyWritable as am, type AgentDefinitionResult as an, type AgentDefinitionSearchQuery as ao, type AgentDefinitionSearchQueryResult as ap, type AgentDefinitionSearchQuerySortRequest as aq, AgentDefinitionTypeEnum as ar, type AgentDefinitionTypeExactMatch as as, type AgentDefinitionTypeExactMatchWritable as at, type AgentDefinitionTypeFilterProperty as au, AgentHistoryItemKey as av, type AgentHistoryItemKeyExactMatch as aw, type AgentHistoryItemKeyExactMatchWritable as ax, type AgentHistoryItemKeyFilterProperty as ay, type AgentHistoryItemKeyWritable as az, type CancelablePromise as b, type AssignRoleToMappingRuleError as b$, type AgentInstanceLimits as b0, type AgentInstanceMessageContent as b1, AgentInstanceMessageContentTypeEnum as b2, type AgentInstanceMetrics as b3, type AgentInstanceMetricsDelta as b4, type AgentInstanceObjectContent as b5, type AgentInstanceResult as b6, type AgentInstanceSearchQuery as b7, type AgentInstanceSearchQueryResult as b8, type AgentInstanceSearchQuerySortRequest as b9, type AssignGroupToTenantResponses as bA, type AssignMappingRuleToGroupData as bB, type AssignMappingRuleToGroupError as bC, type AssignMappingRuleToGroupErrors as bD, type AssignMappingRuleToGroupResponse as bE, type AssignMappingRuleToGroupResponses as bF, type AssignMappingRuleToTenantData as bG, type AssignMappingRuleToTenantError as bH, type AssignMappingRuleToTenantErrors as bI, type AssignMappingRuleToTenantResponse as bJ, type AssignMappingRuleToTenantResponses as bK, type AssignProcessInstanceBusinessIdData as bL, type AssignProcessInstanceBusinessIdError as bM, type AssignProcessInstanceBusinessIdErrors as bN, type AssignProcessInstanceBusinessIdResponse as bO, type AssignProcessInstanceBusinessIdResponses as bP, type AssignRoleToClientData as bQ, type AssignRoleToClientError as bR, type AssignRoleToClientErrors as bS, type AssignRoleToClientResponse as bT, type AssignRoleToClientResponses as bU, type AssignRoleToGroupData as bV, type AssignRoleToGroupError as bW, type AssignRoleToGroupErrors as bX, type AssignRoleToGroupResponse as bY, type AssignRoleToGroupResponses as bZ, type AssignRoleToMappingRuleData as b_, AgentInstanceStatusEnum as ba, type AgentInstanceStatusExactMatch as bb, type AgentInstanceStatusExactMatchWritable as bc, type AgentInstanceStatusFilterProperty as bd, type AgentInstanceTextContent as be, type AgentInstanceToolCall as bf, type AgentInstanceUpdateRequest as bg, type AgentInstanceUpdateResult as bh, AgentInstanceUpdateStatusEnum as bi, type AgentTool as bj, type AncestorScopeInstruction as bk, type AnyVariableSchema as bl, type AssignClientToGroupData as bm, type AssignClientToGroupError as bn, type AssignClientToGroupErrors as bo, type AssignClientToGroupResponse as bp, type AssignClientToGroupResponses as bq, type AssignClientToTenantData as br, type AssignClientToTenantError as bs, type AssignClientToTenantErrors as bt, type AssignClientToTenantResponse as bu, type AssignClientToTenantResponses as bv, type AssignGroupToTenantData as bw, type AssignGroupToTenantError as bx, type AssignGroupToTenantErrors as by, type AssignGroupToTenantResponse as bz, createCamundaClient as c, type AuthorizationSearchQuery as c$, type AssignRoleToMappingRuleErrors as c0, type AssignRoleToMappingRuleResponse as c1, type AssignRoleToMappingRuleResponses as c2, type AssignRoleToTenantData as c3, type AssignRoleToTenantError as c4, type AssignRoleToTenantErrors as c5, type AssignRoleToTenantResponse as c6, type AssignRoleToTenantResponses as c7, type AssignRoleToUserData as c8, type AssignRoleToUserError as c9, type AuditLogEntityKeyFilterProperty as cA, AuditLogEntityTypeEnum as cB, type AuditLogFilter as cC, AuditLogKey as cD, type AuditLogKeyExactMatch as cE, type AuditLogKeyExactMatchWritable as cF, type AuditLogKeyFilterProperty as cG, type AuditLogKeyWritable as cH, AuditLogOperationTypeEnum as cI, type AuditLogResult as cJ, AuditLogResultEnum as cK, type AuditLogResultExactMatch as cL, type AuditLogResultExactMatchWritable as cM, type AuditLogResultFilterProperty as cN, type AuditLogSearchQueryRequest as cO, type AuditLogSearchQueryResult as cP, type AuditLogSearchQuerySortRequest as cQ, type AuthStrategy as cR, type AuthenticationConfigurationResponse as cS, type AuthorizationCreateResult as cT, type AuthorizationFilter as cU, type AuthorizationIdBasedRequest as cV, AuthorizationKey as cW, type AuthorizationKeyWritable as cX, type AuthorizationPropertyBasedRequest as cY, type AuthorizationRequest as cZ, type AuthorizationResult as c_, type AssignRoleToUserErrors as ca, type AssignRoleToUserResponse as cb, type AssignRoleToUserResponses as cc, type AssignUserTaskData as cd, type AssignUserTaskError as ce, type AssignUserTaskErrors as cf, type AssignUserTaskResponse as cg, type AssignUserTaskResponses as ch, type AssignUserToGroupData as ci, type AssignUserToGroupError as cj, type AssignUserToGroupErrors as ck, type AssignUserToGroupResponse as cl, type AssignUserToGroupResponses as cm, type AssignUserToTenantData as cn, type AssignUserToTenantError as co, type AssignUserToTenantErrors as cp, type AssignUserToTenantResponse as cq, type AssignUserToTenantResponses as cr, AuditLogActorTypeEnum as cs, type AuditLogActorTypeExactMatch as ct, type AuditLogActorTypeExactMatchWritable as cu, type AuditLogActorTypeFilterProperty as cv, AuditLogCategoryEnum as cw, AuditLogEntityKey as cx, type AuditLogEntityKeyExactMatch as cy, type AuditLogEntityKeyExactMatchWritable as cz, type ActivateAdHocSubProcessActivitiesError as d, type CancelProcessInstancesBatchOperationResponse as d$, type AuthorizationSearchQuerySortRequest as d0, type AuthorizationSearchResult as d1, type BackpressureSeverity as d2, type BackupId as d3, type BackupIdPrefix as d4, type BackupInfo as d5, type BackupInfoWritable as d6, type BackupType as d7, type BaseProcessInstanceFilterFields as d8, type BaseWaitStateDetails as d9, type BatchOperationTypeExactMatchWritable as dA, type BatchOperationTypeFilterProperty as dB, type BroadcastSignalData as dC, type BroadcastSignalError as dD, type BroadcastSignalErrors as dE, type BroadcastSignalResponse as dF, type BroadcastSignalResponses as dG, type BrokerInfo as dH, BusinessId as dI, type CamundaConfig as dJ, type CamundaKey as dK, type CamundaUserResult as dL, type CancelBatchOperationData as dM, type CancelBatchOperationError as dN, type CancelBatchOperationErrors as dO, type CancelBatchOperationResponse as dP, type CancelBatchOperationResponses as dQ, CancelError as dR, type CancelProcessInstanceData as dS, type CancelProcessInstanceError as dT, type CancelProcessInstanceErrors as dU, type CancelProcessInstanceRequest as dV, type CancelProcessInstanceResponse as dW, type CancelProcessInstanceResponses as dX, type CancelProcessInstancesBatchOperationData as dY, type CancelProcessInstancesBatchOperationError as dZ, type CancelProcessInstancesBatchOperationErrors as d_, type BasicStringFilter as da, type BasicStringFilterProperty as db, type BatchOperationCreatedResult as dc, type BatchOperationError as dd, type BatchOperationFilter as de, type BatchOperationItemFilter as df, type BatchOperationItemResponse as dg, type BatchOperationItemSearchQuery as dh, type BatchOperationItemSearchQueryResult as di, type BatchOperationItemSearchQuerySortRequest as dj, BatchOperationItemStateEnum as dk, type BatchOperationItemStateExactMatch as dl, type BatchOperationItemStateExactMatchWritable as dm, type BatchOperationItemStateFilterProperty as dn, BatchOperationKey as dp, type BatchOperationResponse as dq, type BatchOperationSearchQuery as dr, type BatchOperationSearchQueryResult as ds, type BatchOperationSearchQuerySortRequest as dt, BatchOperationStateEnum as du, type BatchOperationStateExactMatch as dv, type BatchOperationStateExactMatchWritable as dw, type BatchOperationStateFilterProperty as dx, BatchOperationTypeEnum as dy, type BatchOperationTypeExactMatch as dz, type ActivateAdHocSubProcessActivitiesErrors as e, type CompleteJobResponse as e$, type CancelProcessInstancesBatchOperationResponses as e0, type CategoryExactMatch as e1, type CategoryExactMatchWritable as e2, type CategoryFilterProperty as e3, type ChangeClusterModeAsClusterAdminData as e4, type ChangeClusterModeAsClusterAdminError as e5, type ChangeClusterModeAsClusterAdminErrors as e6, type ChangeClusterModeAsClusterAdminResponse as e7, type ChangeClusterModeAsClusterAdminResponses as e8, type ChangeClusterModeData as e9, type ClusterRestorePartitionOperation as eA, type ClusterRestorePartitionRestoreOperation as eB, type ClusterRestorePlannedChange as eC, type ClusterRestoreRequest as eD, type ClusterRestoreResponse as eE, type ClusterStatusResponse as eF, type ClusterTakeHistoryBackupResponse as eG, type ClusterTopologyResponse as eH, ClusterVariableKindEnum as eI, type ClusterVariableKindExactMatch as eJ, type ClusterVariableKindExactMatchWritable as eK, type ClusterVariableKindFilterProperty as eL, ClusterVariableName as eM, type ClusterVariableResult as eN, type ClusterVariableResultBase as eO, ClusterVariableScopeEnum as eP, type ClusterVariableScopeExactMatch as eQ, type ClusterVariableScopeExactMatchWritable as eR, type ClusterVariableScopeFilterProperty as eS, type ClusterVariableSearchQueryFilterRequest as eT, type ClusterVariableSearchQueryRequest as eU, type ClusterVariableSearchQueryResult as eV, type ClusterVariableSearchQuerySortRequest as eW, type ClusterVariableSearchResult as eX, type CompleteJobData as eY, type CompleteJobError as eZ, type CompleteJobErrors as e_, type ChangeClusterModeError as ea, type ChangeClusterModeErrors as eb, type ChangeClusterModeResponse as ec, type ChangeClusterModeResponses as ed, type Changeset as ee, type CheckpointId as ef, type CheckpointType as eg, ClientId as eh, type ClientOptions$1 as ei, type ClockPinRequest as ej, type CloudConfigurationResponse as ek, type CloudStage as el, type ClusterBrokerInfo as em, type ClusterHistoryBackupInfo as en, type ClusterHistoryBackupInfoWritable as eo, type ClusterHistoryBackupTakeResult as ep, type ClusterHistoryBackupTenantInfo as eq, type ClusterHistoryBackupTenantInfoWritable as er, type ClusterHistoryBackupTenantState as es, type ClusterModeChangeOperation as et, type ClusterModeChangePlannedChange as eu, type ClusterModeChangeResponse as ev, type ClusterRestoreAwaitModeChangeOperation as ew, type ClusterRestoreBrokerOperation as ex, type ClusterRestoreModeChangeOperation as ey, type ClusterRestoreOperation as ez, type ActivateAdHocSubProcessActivitiesResponse as f, type CreateElementInstanceVariablesError as f$, type CompleteJobResponses as f0, type CompleteUserTaskData as f1, type CompleteUserTaskError as f2, type CompleteUserTaskErrors as f3, type CompleteUserTaskResponse as f4, type CompleteUserTaskResponses as f5, type ComponentsConfigurationResponse as f6, type ConditionWaitStateDetails as f7, type ConditionalEvaluationInstruction as f8, ConditionalEvaluationKey as f9, type CreateAuthorizationData as fA, type CreateAuthorizationError as fB, type CreateAuthorizationErrors as fC, type CreateAuthorizationResponse as fD, type CreateAuthorizationResponses as fE, type CreateClusterVariableRequest as fF, type CreateDeploymentData as fG, type CreateDeploymentError as fH, type CreateDeploymentErrors as fI, type CreateDeploymentResponse as fJ, type CreateDeploymentResponses as fK, type CreateDocumentData as fL, type CreateDocumentError as fM, type CreateDocumentErrors as fN, type CreateDocumentLinkData as fO, type CreateDocumentLinkError as fP, type CreateDocumentLinkErrors as fQ, type CreateDocumentLinkResponse as fR, type CreateDocumentLinkResponses as fS, type CreateDocumentResponse as fT, type CreateDocumentResponses as fU, type CreateDocumentsData as fV, type CreateDocumentsError as fW, type CreateDocumentsErrors as fX, type CreateDocumentsResponse as fY, type CreateDocumentsResponses as fZ, type CreateElementInstanceVariablesData as f_, type ConditionalEvaluationKeyWritable as fa, type CorrelateMessageData as fb, type CorrelateMessageError as fc, type CorrelateMessageErrors as fd, type CorrelateMessageResponse as fe, type CorrelateMessageResponses as ff, type CorrelatedMessageSubscriptionFilter as fg, type CorrelatedMessageSubscriptionResult as fh, type CorrelatedMessageSubscriptionSearchQuery as fi, type CorrelatedMessageSubscriptionSearchQueryResult as fj, type CorrelatedMessageSubscriptionSearchQuerySortRequest as fk, type CreateAdminUserData as fl, type CreateAdminUserError as fm, type CreateAdminUserErrors as fn, type CreateAdminUserResponse as fo, type CreateAdminUserResponses as fp, type CreateAgentInstanceData as fq, type CreateAgentInstanceError as fr, type CreateAgentInstanceErrors as fs, type CreateAgentInstanceHistoryItemData as ft, type CreateAgentInstanceHistoryItemError as fu, type CreateAgentInstanceHistoryItemErrors as fv, type CreateAgentInstanceHistoryItemResponse as fw, type CreateAgentInstanceHistoryItemResponses as fx, type CreateAgentInstanceResponse as fy, type CreateAgentInstanceResponses as fz, type ActivateAdHocSubProcessActivitiesResponses as g, type DecisionDefinitionSearchQuerySortRequest as g$, type CreateElementInstanceVariablesErrors as g0, type CreateElementInstanceVariablesResponse as g1, type CreateElementInstanceVariablesResponses as g2, type CreateGlobalClusterVariableData as g3, type CreateGlobalClusterVariableError as g4, type CreateGlobalClusterVariableErrors as g5, type CreateGlobalClusterVariableResponse as g6, type CreateGlobalClusterVariableResponses as g7, type CreateGlobalTaskListenerData as g8, type CreateGlobalTaskListenerError as g9, type CreateTenantClusterVariableError as gA, type CreateTenantClusterVariableErrors as gB, type CreateTenantClusterVariableResponse as gC, type CreateTenantClusterVariableResponses as gD, type CreateTenantData as gE, type CreateTenantError as gF, type CreateTenantErrors as gG, type CreateTenantResponse as gH, type CreateTenantResponses as gI, type CreateUserData as gJ, type CreateUserError as gK, type CreateUserErrors as gL, type CreateUserResponse as gM, type CreateUserResponses as gN, type CursorBackwardPagination as gO, type CursorForwardPagination as gP, type DateTimeFilterProperty as gQ, type DecisionDefinitionFilter as gR, DecisionDefinitionId as gS, DecisionDefinitionKey as gT, type DecisionDefinitionKeyExactMatch as gU, type DecisionDefinitionKeyExactMatchWritable as gV, type DecisionDefinitionKeyFilterProperty as gW, type DecisionDefinitionKeyWritable as gX, type DecisionDefinitionResult as gY, type DecisionDefinitionSearchQuery as gZ, type DecisionDefinitionSearchQueryResult as g_, type CreateGlobalTaskListenerErrors as ga, type CreateGlobalTaskListenerRequest as gb, type CreateGlobalTaskListenerResponse as gc, type CreateGlobalTaskListenerResponses as gd, type CreateGroupData as ge, type CreateGroupError as gf, type CreateGroupErrors as gg, type CreateGroupResponse as gh, type CreateGroupResponses as gi, type CreateMappingRuleData as gj, type CreateMappingRuleError as gk, type CreateMappingRuleErrors as gl, type CreateMappingRuleResponse as gm, type CreateMappingRuleResponses as gn, type CreateProcessInstanceData as go, type CreateProcessInstanceError as gp, type CreateProcessInstanceErrors as gq, type CreateProcessInstanceResponse as gr, type CreateProcessInstanceResponses as gs, type CreateProcessInstanceResult as gt, type CreateRoleData as gu, type CreateRoleError as gv, type CreateRoleErrors as gw, type CreateRoleResponse as gx, type CreateRoleResponses as gy, type CreateTenantClusterVariableData as gz, type ActivateJobsData as h, type DeleteGlobalTaskListenerError as h$, DecisionDefinitionTypeEnum as h0, type DecisionEvaluationById as h1, type DecisionEvaluationByKey as h2, DecisionEvaluationInstanceKey as h3, type DecisionEvaluationInstanceKeyExactMatch as h4, type DecisionEvaluationInstanceKeyExactMatchWritable as h5, type DecisionEvaluationInstanceKeyFilterProperty as h6, type DecisionEvaluationInstruction as h7, DecisionEvaluationKey as h8, type DecisionEvaluationKeyExactMatch as h9, type DeleteAuthorizationData as hA, type DeleteAuthorizationError as hB, type DeleteAuthorizationErrors as hC, type DeleteAuthorizationResponse as hD, type DeleteAuthorizationResponses as hE, type DeleteDecisionInstanceData as hF, type DeleteDecisionInstanceError as hG, type DeleteDecisionInstanceErrors as hH, type DeleteDecisionInstanceRequest as hI, type DeleteDecisionInstanceResponse as hJ, type DeleteDecisionInstanceResponses as hK, type DeleteDecisionInstancesBatchOperationData as hL, type DeleteDecisionInstancesBatchOperationError as hM, type DeleteDecisionInstancesBatchOperationErrors as hN, type DeleteDecisionInstancesBatchOperationResponse as hO, type DeleteDecisionInstancesBatchOperationResponses as hP, type DeleteDocumentData as hQ, type DeleteDocumentError as hR, type DeleteDocumentErrors as hS, type DeleteDocumentResponse as hT, type DeleteDocumentResponses as hU, type DeleteGlobalClusterVariableData as hV, type DeleteGlobalClusterVariableError as hW, type DeleteGlobalClusterVariableErrors as hX, type DeleteGlobalClusterVariableResponse as hY, type DeleteGlobalClusterVariableResponses as hZ, type DeleteGlobalTaskListenerData as h_, type DecisionEvaluationKeyExactMatchWritable as ha, type DecisionEvaluationKeyFilterProperty as hb, type DecisionEvaluationKeyWritable as hc, type DecisionInstanceDeletionBatchOperationRequest as hd, type DecisionInstanceFilter as he, type DecisionInstanceGetQueryResult as hf, DecisionInstanceKey as hg, type DecisionInstanceKeyWritable as hh, type DecisionInstanceResult as hi, type DecisionInstanceSearchQuery as hj, type DecisionInstanceSearchQueryResult as hk, type DecisionInstanceSearchQuerySortRequest as hl, DecisionInstanceStateEnum as hm, type DecisionInstanceStateExactMatch as hn, type DecisionInstanceStateExactMatchWritable as ho, type DecisionInstanceStateFilterProperty as hp, type DecisionRequirementsFilter as hq, DecisionRequirementsKey as hr, type DecisionRequirementsKeyExactMatch as hs, type DecisionRequirementsKeyExactMatchWritable as ht, type DecisionRequirementsKeyFilterProperty as hu, type DecisionRequirementsKeyWritable as hv, type DecisionRequirementsResult as hw, type DecisionRequirementsSearchQuery as hx, type DecisionRequirementsSearchQueryResult as hy, type DecisionRequirementsSearchQuerySortRequest as hz, type ActivateJobsError as i, type DeleteTenantData as i$, type DeleteGlobalTaskListenerErrors as i0, type DeleteGlobalTaskListenerResponse as i1, type DeleteGlobalTaskListenerResponses as i2, type DeleteGroupData as i3, type DeleteGroupError as i4, type DeleteGroupErrors as i5, type DeleteGroupResponse as i6, type DeleteGroupResponses as i7, type DeleteHistoryBackupAsClusterAdminData as i8, type DeleteHistoryBackupAsClusterAdminError as i9, type DeleteResourceData as iA, type DeleteResourceError as iB, type DeleteResourceErrors as iC, type DeleteResourceRequest as iD, type DeleteResourceResponse as iE, type DeleteResourceResponse2 as iF, type DeleteResourceResponses as iG, type DeleteRoleData as iH, type DeleteRoleError as iI, type DeleteRoleErrors as iJ, type DeleteRoleResponse as iK, type DeleteRoleResponses as iL, type DeleteRuntimeBackupData as iM, type DeleteRuntimeBackupError as iN, type DeleteRuntimeBackupErrors as iO, type DeleteRuntimeBackupResponse as iP, type DeleteRuntimeBackupResponses as iQ, type DeleteRuntimeBackupStateData as iR, type DeleteRuntimeBackupStateError as iS, type DeleteRuntimeBackupStateErrors as iT, type DeleteRuntimeBackupStateResponse as iU, type DeleteRuntimeBackupStateResponses as iV, type DeleteTenantClusterVariableData as iW, type DeleteTenantClusterVariableError as iX, type DeleteTenantClusterVariableErrors as iY, type DeleteTenantClusterVariableResponse as iZ, type DeleteTenantClusterVariableResponses as i_, type DeleteHistoryBackupAsClusterAdminErrors as ia, type DeleteHistoryBackupAsClusterAdminResponse as ib, type DeleteHistoryBackupAsClusterAdminResponses as ic, type DeleteHistoryBackupData as id, type DeleteHistoryBackupError as ie, type DeleteHistoryBackupErrors as ig, type DeleteHistoryBackupResponse as ih, type DeleteHistoryBackupResponses as ii, type DeleteMappingRuleData as ij, type DeleteMappingRuleError as ik, type DeleteMappingRuleErrors as il, type DeleteMappingRuleResponse as im, type DeleteMappingRuleResponses as io, type DeleteProcessInstanceData as ip, type DeleteProcessInstanceError as iq, type DeleteProcessInstanceErrors as ir, type DeleteProcessInstanceRequest as is, type DeleteProcessInstanceResponse as it, type DeleteProcessInstanceResponses as iu, type DeleteProcessInstancesBatchOperationData as iv, type DeleteProcessInstancesBatchOperationError as iw, type DeleteProcessInstancesBatchOperationErrors as ix, type DeleteProcessInstancesBatchOperationResponse as iy, type DeleteProcessInstancesBatchOperationResponses as iz, type ActivateJobsErrors as j, type EvaluateConditionalsErrors as j$, type DeleteTenantError as j0, type DeleteTenantErrors as j1, type DeleteTenantResponse as j2, type DeleteTenantResponses as j3, type DeleteUserData as j4, type DeleteUserError as j5, type DeleteUserErrors as j6, type DeleteUserResponse as j7, type DeleteUserResponses as j8, type DeploymentConfigurationResponse as j9, type ElementInstanceFilterFields as jA, ElementInstanceKey as jB, type ElementInstanceKeyExactMatch as jC, type ElementInstanceKeyExactMatchWritable as jD, type ElementInstanceKeyFilterProperty as jE, type ElementInstanceKeyWritable as jF, type ElementInstanceResult as jG, type ElementInstanceSearchQuery as jH, type ElementInstanceSearchQueryResult as jI, type ElementInstanceSearchQuerySortRequest as jJ, ElementInstanceStateEnum as jK, type ElementInstanceStateExactMatch as jL, type ElementInstanceStateExactMatchWritable as jM, type ElementInstanceStateFilterProperty as jN, type ElementInstanceWaitStateFilter as jO, type ElementInstanceWaitStateQuery as jP, type ElementInstanceWaitStateQueryResult as jQ, type ElementInstanceWaitStateQuerySortRequest as jR, type ElementInstanceWaitStateResult as jS, EndCursor as jT, type EnrichedActivatedJob as jU, type EntityTypeExactMatch as jV, type EntityTypeExactMatchWritable as jW, type EntityTypeFilterProperty as jX, type EvaluateConditionalResult as jY, type EvaluateConditionalsData as jZ, type EvaluateConditionalsError as j_, type DeploymentDecisionRequirementsResult as ja, type DeploymentDecisionResult as jb, type DeploymentFormResult as jc, DeploymentKey as jd, type DeploymentKeyExactMatch as je, type DeploymentKeyExactMatchWritable as jf, type DeploymentKeyFilterProperty as jg, type DeploymentKeyWritable as jh, type DeploymentMetadataResult as ji, type DeploymentProcessResult as jj, type DeploymentResourceResult as jk, type DeploymentResult as jl, type DirectAncestorKeyInstruction as jm, type DocumentCreationBatchResponse as jn, type DocumentCreationFailureDetail as jo, DocumentId as jp, type DocumentLink as jq, type DocumentLinkRequest as jr, type DocumentMetadata as js, type DocumentMetadataResponse as jt, type DocumentReference as ju, ElementId as jv, type ElementIdExactMatch as jw, type ElementIdExactMatchWritable as jx, type ElementIdFilterProperty as jy, type ElementInstanceFilter as jz, type ActivateJobsResponse as k, type GetBatchOperationResponse as k$, type EvaluateConditionalsResponse as k0, type EvaluateConditionalsResponses as k1, type EvaluateDecisionData as k2, type EvaluateDecisionError as k3, type EvaluateDecisionErrors as k4, type EvaluateDecisionResponse as k5, type EvaluateDecisionResponses as k6, type EvaluateDecisionResult as k7, type EvaluateExpressionData as k8, type EvaluateExpressionError as k9, type GetAgentDefinitionError as kA, type GetAgentDefinitionErrors as kB, type GetAgentDefinitionResponse as kC, type GetAgentDefinitionResponses as kD, type GetAgentInstanceData as kE, type GetAgentInstanceError as kF, type GetAgentInstanceErrors as kG, type GetAgentInstanceResponse as kH, type GetAgentInstanceResponses as kI, type GetAuditLogData as kJ, type GetAuditLogError as kK, type GetAuditLogErrors as kL, type GetAuditLogResponse as kM, type GetAuditLogResponses as kN, type GetAuthenticationData as kO, type GetAuthenticationError as kP, type GetAuthenticationErrors as kQ, type GetAuthenticationResponse as kR, type GetAuthenticationResponses as kS, type GetAuthorizationData as kT, type GetAuthorizationError as kU, type GetAuthorizationErrors as kV, type GetAuthorizationResponse as kW, type GetAuthorizationResponses as kX, type GetBatchOperationData as kY, type GetBatchOperationError as kZ, type GetBatchOperationErrors as k_, type EvaluateExpressionErrors as ka, type EvaluateExpressionResponse as kb, type EvaluateExpressionResponses as kc, type EvaluatedDecisionInputItem as kd, type EvaluatedDecisionOutputItem as ke, type EvaluatedDecisionResult as kf, type ExportingStatusCode as kg, type ExportingStatusResponse as kh, type ExpressionEvaluationRequest as ki, type ExpressionEvaluationResult as kj, type ExpressionEvaluationWarningItem as kk, type ExpressionSecretReferenceItem as kl, type ExtendedDeploymentResult as km, type FailJobData as kn, type FailJobError as ko, type FailJobErrors as kp, type FailJobResponse as kq, type FailJobResponses as kr, FormId as ks, FormKey as kt, type FormKeyExactMatch as ku, type FormKeyExactMatchWritable as kv, type FormKeyFilterProperty as kw, type FormKeyWritable as kx, type FormResult as ky, type GetAgentDefinitionData as kz, type ActivateJobsResponses as l, type GetGlobalClusterVariableErrors as l$, type GetBatchOperationResponses as l0, type GetClusterExportingStatusData as l1, type GetClusterExportingStatusError as l2, type GetClusterExportingStatusErrors as l3, type GetClusterExportingStatusResponse as l4, type GetClusterExportingStatusResponses as l5, type GetClusterStatusData as l6, type GetClusterStatusError as l7, type GetClusterStatusErrors as l8, type GetClusterStatusResponse as l9, type GetDecisionRequirementsXmlData as lA, type GetDecisionRequirementsXmlError as lB, type GetDecisionRequirementsXmlErrors as lC, type GetDecisionRequirementsXmlResponse as lD, type GetDecisionRequirementsXmlResponses as lE, type GetDocumentData as lF, type GetDocumentError as lG, type GetDocumentErrors as lH, type GetDocumentResponse as lI, type GetDocumentResponses as lJ, type GetElementInstanceData as lK, type GetElementInstanceError as lL, type GetElementInstanceErrors as lM, type GetElementInstanceResponse as lN, type GetElementInstanceResponses as lO, type GetExportingStatusData as lP, type GetExportingStatusError as lQ, type GetExportingStatusErrors as lR, type GetExportingStatusResponse as lS, type GetExportingStatusResponses as lT, type GetFormByKeyData as lU, type GetFormByKeyError as lV, type GetFormByKeyErrors as lW, type GetFormByKeyResponse as lX, type GetFormByKeyResponses as lY, type GetGlobalClusterVariableData as lZ, type GetGlobalClusterVariableError as l_, type GetClusterStatusResponses as la, type GetClusterTopologyData as lb, type GetClusterTopologyError as lc, type GetClusterTopologyErrors as ld, type GetClusterTopologyResponse as le, type GetClusterTopologyResponses as lf, type GetDecisionDefinitionData as lg, type GetDecisionDefinitionError as lh, type GetDecisionDefinitionErrors as li, type GetDecisionDefinitionResponse as lj, type GetDecisionDefinitionResponses as lk, type GetDecisionDefinitionXmlData as ll, type GetDecisionDefinitionXmlError as lm, type GetDecisionDefinitionXmlErrors as ln, type GetDecisionDefinitionXmlResponse as lo, type GetDecisionDefinitionXmlResponses as lp, type GetDecisionInstanceData as lq, type GetDecisionInstanceError as lr, type GetDecisionInstanceErrors as ls, type GetDecisionInstanceResponse as lt, type GetDecisionInstanceResponses as lu, type GetDecisionRequirementsData as lv, type GetDecisionRequirementsError as lw, type GetDecisionRequirementsErrors as lx, type GetDecisionRequirementsResponse as ly, type GetDecisionRequirementsResponses as lz, type ActivatedJobResult$1 as m, type GetProcessDefinitionError as m$, type GetGlobalClusterVariableResponse as m0, type GetGlobalClusterVariableResponses as m1, type GetGlobalJobStatisticsData as m2, type GetGlobalJobStatisticsError as m3, type GetGlobalJobStatisticsErrors as m4, type GetGlobalJobStatisticsResponse as m5, type GetGlobalJobStatisticsResponses as m6, type GetGlobalTaskListenerData as m7, type GetGlobalTaskListenerError as m8, type GetGlobalTaskListenerErrors as m9, type GetJobErrorStatisticsResponses as mA, type GetJobTimeSeriesStatisticsData as mB, type GetJobTimeSeriesStatisticsError as mC, type GetJobTimeSeriesStatisticsErrors as mD, type GetJobTimeSeriesStatisticsResponse as mE, type GetJobTimeSeriesStatisticsResponses as mF, type GetJobTypeStatisticsData as mG, type GetJobTypeStatisticsError as mH, type GetJobTypeStatisticsErrors as mI, type GetJobTypeStatisticsResponse as mJ, type GetJobTypeStatisticsResponses as mK, type GetJobWorkerStatisticsData as mL, type GetJobWorkerStatisticsError as mM, type GetJobWorkerStatisticsErrors as mN, type GetJobWorkerStatisticsResponse as mO, type GetJobWorkerStatisticsResponses as mP, type GetLicenseData as mQ, type GetLicenseError as mR, type GetLicenseErrors as mS, type GetLicenseResponse as mT, type GetLicenseResponses as mU, type GetMappingRuleData as mV, type GetMappingRuleError as mW, type GetMappingRuleErrors as mX, type GetMappingRuleResponse as mY, type GetMappingRuleResponses as mZ, type GetProcessDefinitionData as m_, type GetGlobalTaskListenerResponse as ma, type GetGlobalTaskListenerResponses as mb, type GetGroupData as mc, type GetGroupError as md, type GetGroupErrors as me, type GetGroupResponse as mf, type GetGroupResponses as mg, type GetHistoryBackupAsClusterAdminData as mh, type GetHistoryBackupAsClusterAdminError as mi, type GetHistoryBackupAsClusterAdminErrors as mj, type GetHistoryBackupAsClusterAdminResponse as mk, type GetHistoryBackupAsClusterAdminResponses as ml, type GetHistoryBackupData as mm, type GetHistoryBackupError as mn, type GetHistoryBackupErrors as mo, type GetHistoryBackupResponse as mp, type GetHistoryBackupResponses as mq, type GetIncidentData as mr, type GetIncidentError as ms, type GetIncidentErrors as mt, type GetIncidentResponse as mu, type GetIncidentResponses as mv, type GetJobErrorStatisticsData as mw, type GetJobErrorStatisticsError as mx, type GetJobErrorStatisticsErrors as my, type GetJobErrorStatisticsResponse as mz, type AdHocSubProcessActivateActivitiesInstruction as n, type GetResourceContentBinaryData as n$, type GetProcessDefinitionErrors as n0, type GetProcessDefinitionInstanceStatisticsData as n1, type GetProcessDefinitionInstanceStatisticsError as n2, type GetProcessDefinitionInstanceStatisticsErrors as n3, type GetProcessDefinitionInstanceStatisticsResponse as n4, type GetProcessDefinitionInstanceStatisticsResponses as n5, type GetProcessDefinitionInstanceVersionStatisticsData as n6, type GetProcessDefinitionInstanceVersionStatisticsError as n7, type GetProcessDefinitionInstanceVersionStatisticsErrors as n8, type GetProcessDefinitionInstanceVersionStatisticsResponse as n9, type GetProcessInstanceResponse as nA, type GetProcessInstanceResponses as nB, type GetProcessInstanceSequenceFlowsData as nC, type GetProcessInstanceSequenceFlowsError as nD, type GetProcessInstanceSequenceFlowsErrors as nE, type GetProcessInstanceSequenceFlowsResponse as nF, type GetProcessInstanceSequenceFlowsResponses as nG, type GetProcessInstanceStatisticsByDefinitionData as nH, type GetProcessInstanceStatisticsByDefinitionError as nI, type GetProcessInstanceStatisticsByDefinitionErrors as nJ, type GetProcessInstanceStatisticsByDefinitionResponse as nK, type GetProcessInstanceStatisticsByDefinitionResponses as nL, type GetProcessInstanceStatisticsByErrorData as nM, type GetProcessInstanceStatisticsByErrorError as nN, type GetProcessInstanceStatisticsByErrorErrors as nO, type GetProcessInstanceStatisticsByErrorResponse as nP, type GetProcessInstanceStatisticsByErrorResponses as nQ, type GetProcessInstanceStatisticsData as nR, type GetProcessInstanceStatisticsError as nS, type GetProcessInstanceStatisticsErrors as nT, type GetProcessInstanceStatisticsResponse as nU, type GetProcessInstanceStatisticsResponses as nV, type GetProcessInstanceWaitStateStatisticsData as nW, type GetProcessInstanceWaitStateStatisticsError as nX, type GetProcessInstanceWaitStateStatisticsErrors as nY, type GetProcessInstanceWaitStateStatisticsResponse as nZ, type GetProcessInstanceWaitStateStatisticsResponses as n_, type GetProcessDefinitionInstanceVersionStatisticsResponses as na, type GetProcessDefinitionMessageSubscriptionStatisticsData as nb, type GetProcessDefinitionMessageSubscriptionStatisticsError as nc, type GetProcessDefinitionMessageSubscriptionStatisticsErrors as nd, type GetProcessDefinitionMessageSubscriptionStatisticsResponse as ne, type GetProcessDefinitionMessageSubscriptionStatisticsResponses as nf, type GetProcessDefinitionResponse as ng, type GetProcessDefinitionResponses as nh, type GetProcessDefinitionStatisticsData as ni, type GetProcessDefinitionStatisticsError as nj, type GetProcessDefinitionStatisticsErrors as nk, type GetProcessDefinitionStatisticsResponse as nl, type GetProcessDefinitionStatisticsResponses as nm, type GetProcessDefinitionXmlData as nn, type GetProcessDefinitionXmlError as no, type GetProcessDefinitionXmlErrors as np, type GetProcessDefinitionXmlResponse as nq, type GetProcessDefinitionXmlResponses as nr, type GetProcessInstanceCallHierarchyData as ns, type GetProcessInstanceCallHierarchyError as nt, type GetProcessInstanceCallHierarchyErrors as nu, type GetProcessInstanceCallHierarchyResponse as nv, type GetProcessInstanceCallHierarchyResponses as nw, type GetProcessInstanceData as nx, type GetProcessInstanceError as ny, type GetProcessInstanceErrors as nz, type AdHocSubProcessActivateActivityReference as o, type GetUsageMetricsData as o$, type GetResourceContentBinaryError as o0, type GetResourceContentBinaryErrors as o1, type GetResourceContentBinaryResponse as o2, type GetResourceContentBinaryResponses as o3, type GetResourceContentData as o4, type GetResourceContentError as o5, type GetResourceContentErrors as o6, type GetResourceContentResponse as o7, type GetResourceContentResponses as o8, type GetResourceData as o9, type GetStartProcessFormErrors as oA, type GetStartProcessFormResponse as oB, type GetStartProcessFormResponses as oC, type GetStatusData as oD, type GetStatusErrors as oE, type GetStatusResponse as oF, type GetStatusResponses as oG, type GetSystemConfigurationData as oH, type GetSystemConfigurationError as oI, type GetSystemConfigurationErrors as oJ, type GetSystemConfigurationResponse as oK, type GetSystemConfigurationResponses as oL, type GetTenantClusterVariableData as oM, type GetTenantClusterVariableError as oN, type GetTenantClusterVariableErrors as oO, type GetTenantClusterVariableResponse as oP, type GetTenantClusterVariableResponses as oQ, type GetTenantData as oR, type GetTenantError as oS, type GetTenantErrors as oT, type GetTenantResponse as oU, type GetTenantResponses as oV, type GetTopologyData as oW, type GetTopologyError as oX, type GetTopologyErrors as oY, type GetTopologyResponse as oZ, type GetTopologyResponses as o_, type GetResourceError as oa, type GetResourceErrors as ob, type GetResourceResponse as oc, type GetResourceResponses as od, type GetRestoreStatusData as oe, type GetRestoreStatusError as of, type GetRestoreStatusErrors as og, type GetRestoreStatusResponse as oh, type GetRestoreStatusResponses as oi, type GetRoleData as oj, type GetRoleError as ok, type GetRoleErrors as ol, type GetRoleResponse as om, type GetRoleResponses as on, type GetRuntimeBackupData as oo, type GetRuntimeBackupError as op, type GetRuntimeBackupErrors as oq, type GetRuntimeBackupResponse as or, type GetRuntimeBackupResponses as os, type GetRuntimeBackupStateData as ot, type GetRuntimeBackupStateError as ou, type GetRuntimeBackupStateErrors as ov, type GetRuntimeBackupStateResponse as ow, type GetRuntimeBackupStateResponses as ox, type GetStartProcessFormData as oy, type GetStartProcessFormError as oz, type AdvancedActorTypeFilter as p, type HistoryBackupInfo as p$, type GetUsageMetricsError as p0, type GetUsageMetricsErrors as p1, type GetUsageMetricsResponse as p2, type GetUsageMetricsResponses as p3, type GetUserData as p4, type GetUserError as p5, type GetUserErrors as p6, type GetUserResponse as p7, type GetUserResponses as p8, type GetUserTaskData as p9, type GlobalTaskListenerEventTypes as pA, type GlobalTaskListenerEventTypesWritable as pB, type GlobalTaskListenerResult as pC, type GlobalTaskListenerSearchQueryFilterRequest as pD, type GlobalTaskListenerSearchQueryRequest as pE, type GlobalTaskListenerSearchQueryResult as pF, type GlobalTaskListenerSearchQuerySortRequest as pG, type GroupClientResult as pH, type GroupClientSearchQueryRequest as pI, type GroupClientSearchQuerySortRequest as pJ, type GroupClientSearchResult as pK, type GroupCreateRequest as pL, type GroupCreateResult as pM, type GroupFilter as pN, GroupId as pO, type GroupMappingRuleSearchResult as pP, type GroupResult as pQ, type GroupRoleSearchResult as pR, type GroupSearchQueryRequest as pS, type GroupSearchQueryResult as pT, type GroupSearchQuerySortRequest as pU, type GroupUpdateRequest as pV, type GroupUpdateResult as pW, type GroupUserResult as pX, type GroupUserSearchQueryRequest as pY, type GroupUserSearchQuerySortRequest as pZ, type GroupUserSearchResult as p_, type GetUserTaskError as pa, type GetUserTaskErrors as pb, type GetUserTaskFormData as pc, type GetUserTaskFormError as pd, type GetUserTaskFormErrors as pe, type GetUserTaskFormResponse as pf, type GetUserTaskFormResponses as pg, type GetUserTaskResponse as ph, type GetUserTaskResponses as pi, type GetVariableData as pj, type GetVariableError as pk, type GetVariableErrors as pl, type GetVariableResponse as pm, type GetVariableResponses as pn, type GlobalJobStatisticsQueryResult as po, type GlobalListenerBase as pp, GlobalListenerId as pq, GlobalListenerSourceEnum as pr, type GlobalListenerSourceExactMatch as ps, type GlobalListenerSourceExactMatchWritable as pt, type GlobalListenerSourceFilterProperty as pu, type GlobalTaskListenerBase as pv, GlobalTaskListenerEventTypeEnum as pw, type GlobalTaskListenerEventTypeExactMatch as px, type GlobalTaskListenerEventTypeExactMatchWritable as py, type GlobalTaskListenerEventTypeFilterProperty as pz, type AdvancedAgentDefinitionKeyFilter as q, type JobResultUserTask as q$, type HistoryBackupInfoWritable as q0, type HistoryBackupSnapshotInfo as q1, type HistoryBackupStateCode as q2, type HttpRetryPolicy as q3, IncidentErrorTypeEnum as q4, type IncidentErrorTypeExactMatch as q5, type IncidentErrorTypeExactMatchWritable as q6, type IncidentErrorTypeFilterProperty as q7, type IncidentFilter as q8, IncidentKey as q9, type JobChangeset as qA, type JobCompletionRequest as qB, type JobErrorRequest$1 as qC, type JobErrorStatisticsFilter as qD, type JobErrorStatisticsItem as qE, type JobErrorStatisticsQuery as qF, type JobErrorStatisticsQueryResult as qG, type JobFailRequest as qH, type JobFilter as qI, JobKey as qJ, type JobKeyExactMatch as qK, type JobKeyExactMatchWritable as qL, type JobKeyFilterProperty as qM, type JobKeyWritable as qN, JobKindEnum as qO, type JobKindExactMatch as qP, type JobKindExactMatchWritable as qQ, type JobKindFilterProperty as qR, JobListenerEventTypeEnum as qS, type JobListenerEventTypeExactMatch as qT, type JobListenerEventTypeExactMatchWritable as qU, type JobListenerEventTypeFilterProperty as qV, type JobMetricsConfigurationResponse as qW, type JobResult as qX, type JobResultActivateElement as qY, type JobResultAdHocSubProcess as qZ, type JobResultCorrections as q_, type IncidentKeyWritable as qa, type IncidentProcessInstanceStatisticsByDefinitionFilter as qb, type IncidentProcessInstanceStatisticsByDefinitionQuery as qc, type IncidentProcessInstanceStatisticsByDefinitionQueryResult as qd, type IncidentProcessInstanceStatisticsByDefinitionQuerySortRequest as qe, type IncidentProcessInstanceStatisticsByDefinitionResult as qf, type IncidentProcessInstanceStatisticsByErrorQuery as qg, type IncidentProcessInstanceStatisticsByErrorQueryResult as qh, type IncidentProcessInstanceStatisticsByErrorQuerySortRequest as qi, type IncidentProcessInstanceStatisticsByErrorResult as qj, type IncidentResolutionRequest as qk, type IncidentResult as ql, type IncidentSearchQuery as qm, type IncidentSearchQueryResult as qn, type IncidentSearchQuerySortRequest as qo, IncidentStateEnum as qp, type IncidentStateExactMatch as qq, type IncidentStateExactMatchWritable as qr, type IncidentStateFilterProperty as qs, type InferredAncestorKeyInstruction as qt, type IntegerFilterProperty as qu, type Job as qv, JobActionReceipt as qw, type JobActivationRequest as qx, type JobActivationResult as qy, type JobBatchUpdateRequest as qz, type AdvancedAgentDefinitionTypeFilter as r, type MessageCorrelationResult as r$, type JobSearchQuery as r0, type JobSearchQueryResult as r1, type JobSearchQuerySortRequest as r2, type JobSearchResult as r3, JobStateEnum as r4, type JobStateExactMatch as r5, type JobStateExactMatchWritable as r6, type JobStateFilterProperty as r7, type JobTimeSeriesStatisticsFilter as r8, type JobTimeSeriesStatisticsItem as r9, type ListHistoryBackupsResponses as rA, type ListRuntimeBackupsData as rB, type ListRuntimeBackupsError as rC, type ListRuntimeBackupsErrors as rD, type ListRuntimeBackupsResponse as rE, type ListRuntimeBackupsResponses as rF, type ListSecretsData as rG, type ListSecretsError as rH, type ListSecretsErrors as rI, type ListSecretsResponse as rJ, type ListSecretsResponses as rK, type LongKey as rL, type LoopIterationId as rM, type MappingRuleCreateRequest as rN, type MappingRuleCreateResult as rO, type MappingRuleCreateUpdateRequest as rP, type MappingRuleCreateUpdateResult as rQ, type MappingRuleFilter as rR, MappingRuleId as rS, type MappingRuleResult as rT, type MappingRuleSearchQueryRequest as rU, type MappingRuleSearchQueryResult as rV, type MappingRuleSearchQuerySortRequest as rW, type MappingRuleUpdateRequest as rX, type MappingRuleUpdateResult as rY, type MatchedDecisionRuleItem as rZ, type MessageCorrelationRequest as r_, type JobTimeSeriesStatisticsQuery as ra, type JobTimeSeriesStatisticsQueryResult as rb, type JobTypeStatisticsFilter as rc, type JobTypeStatisticsItem as rd, type JobTypeStatisticsQuery as re, type JobTypeStatisticsQueryResult as rf, type JobUpdateRequest as rg, type JobWaitStateDetails as rh, JobWorker as ri, type JobWorkerConfig as rj, type JobWorkerStatisticsFilter as rk, type JobWorkerStatisticsItem as rl, type JobWorkerStatisticsQuery as rm, type JobWorkerStatisticsQueryResult as rn, type LicenseResponse as ro, type LikeFilter as rp, type LimitPagination as rq, type ListHistoryBackupsAsClusterAdminData as rr, type ListHistoryBackupsAsClusterAdminError as rs, type ListHistoryBackupsAsClusterAdminErrors as rt, type ListHistoryBackupsAsClusterAdminResponse as ru, type ListHistoryBackupsAsClusterAdminResponses as rv, type ListHistoryBackupsData as rw, type ListHistoryBackupsError as rx, type ListHistoryBackupsErrors as ry, type ListHistoryBackupsResponse as rz, type AdvancedAgentHistoryItemKeyFilter as s, type PauseClusterExportingResponse as s$, MessageKey as s0, type MessageKeyWritable as s1, type MessagePublicationRequest as s2, type MessagePublicationResult as s3, type MessageSubscriptionFilter as s4, MessageSubscriptionKey as s5, type MessageSubscriptionKeyExactMatch as s6, type MessageSubscriptionKeyExactMatchWritable as s7, type MessageSubscriptionKeyFilterProperty as s8, type MessageSubscriptionKeyWritable as s9, type ModifyProcessInstanceError as sA, type ModifyProcessInstanceErrors as sB, type ModifyProcessInstanceResponse as sC, type ModifyProcessInstanceResponses as sD, type ModifyProcessInstanceVariableInstruction as sE, type ModifyProcessInstancesBatchOperationData as sF, type ModifyProcessInstancesBatchOperationError as sG, type ModifyProcessInstancesBatchOperationErrors as sH, type ModifyProcessInstancesBatchOperationResponse as sI, type ModifyProcessInstancesBatchOperationResponses as sJ, type OffsetPagination as sK, type OperationOptions as sL, type OperationReference as sM, type OperationTypeExactMatch as sN, type OperationTypeExactMatchWritable as sO, type OperationTypeFilterProperty as sP, OwnerTypeEnum as sQ, type Partition as sR, type PartitionBackupInfo as sS, type PartitionBackupInfoWritable as sT, type PartitionBackupRange as sU, type PartitionBackupState as sV, type PartitionCheckpointState as sW, type PartitionId as sX, type PauseClusterExportingData as sY, type PauseClusterExportingError as sZ, type PauseClusterExportingErrors as s_, type MessageSubscriptionResult as sa, type MessageSubscriptionSearchQuery as sb, type MessageSubscriptionSearchQueryResult as sc, type MessageSubscriptionSearchQuerySortRequest as sd, MessageSubscriptionStateEnum as se, type MessageSubscriptionStateExactMatch as sf, type MessageSubscriptionStateExactMatchWritable as sg, type MessageSubscriptionStateFilterProperty as sh, MessageSubscriptionTypeEnum as si, type MessageSubscriptionTypeExactMatch as sj, type MessageSubscriptionTypeExactMatchWritable as sk, type MessageSubscriptionTypeFilterProperty as sl, type MessageWaitStateDetails as sm, type MigrateProcessInstanceData as sn, type MigrateProcessInstanceError as so, type MigrateProcessInstanceErrors as sp, type MigrateProcessInstanceMappingInstruction as sq, type MigrateProcessInstanceResponse as sr, type MigrateProcessInstanceResponses as ss, type MigrateProcessInstancesBatchOperationData as st, type MigrateProcessInstancesBatchOperationError as su, type MigrateProcessInstancesBatchOperationErrors as sv, type MigrateProcessInstancesBatchOperationResponse as sw, type MigrateProcessInstancesBatchOperationResponses as sx, type Mode as sy, type ModifyProcessInstanceData as sz, type AdvancedAgentInstanceHistoryCommitStatusFilter as t, ProcessInstanceKey as t$, type PauseClusterExportingResponses as t0, type PauseExportingData as t1, type PauseExportingError as t2, type PauseExportingErrors as t3, type PauseExportingResponse as t4, type PauseExportingResponses as t5, PermissionTypeEnum as t6, type PhysicalTenantBrokerTopology as t7, type PhysicalTenantTopology as t8, type PinClockData as t9, type ProcessDefinitionMessageSubscriptionStatisticsQuery as tA, type ProcessDefinitionMessageSubscriptionStatisticsQueryResult as tB, type ProcessDefinitionMessageSubscriptionStatisticsResult as tC, type ProcessDefinitionResult as tD, type ProcessDefinitionSearchQuery as tE, type ProcessDefinitionSearchQueryResult as tF, type ProcessDefinitionSearchQuerySortRequest as tG, type ProcessDefinitionStatisticsFilter as tH, type ProcessDefinitionVariableNameFilter as tI, type ProcessDefinitionVariableNameSearchQuery as tJ, type ProcessDefinitionVariableNameSearchQueryResult as tK, type ProcessDefinitionVariableNameSearchResult as tL, type ProcessElementStatisticsResult as tM, type ProcessInstanceBusinessIdAssignmentInstruction as tN, type ProcessInstanceCallHierarchyEntry as tO, type ProcessInstanceCancellationBatchOperationRequest as tP, type ProcessInstanceCreationInstruction as tQ, type ProcessInstanceCreationInstructionById as tR, type ProcessInstanceCreationInstructionByKey as tS, type ProcessInstanceCreationRuntimeInstruction as tT, type ProcessInstanceCreationStartInstruction as tU, type ProcessInstanceCreationTerminateInstruction as tV, type ProcessInstanceDeletionBatchOperationRequest as tW, type ProcessInstanceElementStatisticsQueryResult as tX, type ProcessInstanceFilter as tY, type ProcessInstanceFilterFields as tZ, type ProcessInstanceIncidentResolutionBatchOperationRequest as t_, type PinClockError as ta, type PinClockErrors as tb, type PinClockResponse as tc, type PinClockResponses as td, type ProblemDetail as te, type ProcessDefinitionElementStatisticsQuery as tf, type ProcessDefinitionElementStatisticsQueryResult as tg, type ProcessDefinitionFilter as th, ProcessDefinitionId as ti, type ProcessDefinitionIdExactMatch as tj, type ProcessDefinitionIdExactMatchWritable as tk, type ProcessDefinitionIdFilterProperty as tl, type ProcessDefinitionInstanceStatisticsQuery as tm, type ProcessDefinitionInstanceStatisticsQueryResult as tn, type ProcessDefinitionInstanceStatisticsQuerySortRequest as to, type ProcessDefinitionInstanceStatisticsResult as tp, type ProcessDefinitionInstanceVersionStatisticsFilter as tq, type ProcessDefinitionInstanceVersionStatisticsQuery as tr, type ProcessDefinitionInstanceVersionStatisticsQueryResult as ts, type ProcessDefinitionInstanceVersionStatisticsQuerySortRequest as tt, type ProcessDefinitionInstanceVersionStatisticsResult as tu, ProcessDefinitionKey as tv, type ProcessDefinitionKeyExactMatch as tw, type ProcessDefinitionKeyExactMatchWritable as tx, type ProcessDefinitionKeyFilterProperty as ty, type ProcessDefinitionKeyWritable as tz, type AdvancedAgentInstanceHistoryRoleFilter as u, type ResourceKeyExactMatch as u$, type ProcessInstanceKeyExactMatch as u0, type ProcessInstanceKeyExactMatchWritable as u1, type ProcessInstanceKeyFilterProperty as u2, type ProcessInstanceKeyWritable as u3, type ProcessInstanceMigrationBatchOperationPlan as u4, type ProcessInstanceMigrationBatchOperationRequest as u5, type ProcessInstanceMigrationInstruction as u6, type ProcessInstanceModificationActivateInstruction as u7, type ProcessInstanceModificationBatchOperationRequest as u8, type ProcessInstanceModificationInstruction as u9, type ResetClockError as uA, type ResetClockErrors as uB, type ResetClockResponse as uC, type ResetClockResponses as uD, type ResolveIncidentData as uE, type ResolveIncidentError as uF, type ResolveIncidentErrors as uG, type ResolveIncidentResponse as uH, type ResolveIncidentResponses as uI, type ResolveIncidentsBatchOperationData as uJ, type ResolveIncidentsBatchOperationError as uK, type ResolveIncidentsBatchOperationErrors as uL, type ResolveIncidentsBatchOperationResponse as uM, type ResolveIncidentsBatchOperationResponses as uN, type ResolveProcessInstanceIncidentsData as uO, type ResolveProcessInstanceIncidentsError as uP, type ResolveProcessInstanceIncidentsErrors as uQ, type ResolveProcessInstanceIncidentsResponse as uR, type ResolveProcessInstanceIncidentsResponses as uS, type ResolveSecretsData as uT, type ResolveSecretsError as uU, type ResolveSecretsErrors as uV, type ResolveSecretsResponse as uW, type ResolveSecretsResponses as uX, type ResolvedSecret as uY, type ResourceFilter as uZ, type ResourceKey as u_, type ProcessInstanceModificationMoveBatchOperationInstruction as ua, type ProcessInstanceModificationMoveInstruction as ub, type ProcessInstanceModificationTerminateByIdInstruction as uc, type ProcessInstanceModificationTerminateByKeyInstruction as ud, type ProcessInstanceModificationTerminateInstruction as ue, type ProcessInstanceReference as uf, type ProcessInstanceResult as ug, type ProcessInstanceResumptionBatchOperationRequest as uh, type ProcessInstanceSearchQuery as ui, type ProcessInstanceSearchQueryResult as uj, type ProcessInstanceSearchQuerySortRequest as uk, type ProcessInstanceSequenceFlowResult as ul, type ProcessInstanceSequenceFlowsQueryResult as um, ProcessInstanceStateEnum as un, type ProcessInstanceStateExactMatch as uo, type ProcessInstanceStateExactMatchWritable as up, type ProcessInstanceStateFilterProperty as uq, type ProcessInstanceSuspensionBatchOperationRequest as ur, type ProcessInstanceWaitStateStatisticsQueryResult as us, type ProcessInstanceWaitStateStatisticsResult as ut, type PublishMessageData as uu, type PublishMessageError as uv, type PublishMessageErrors as uw, type PublishMessageResponse as ux, type PublishMessageResponses as uy, type ResetClockData as uz, type AdvancedAgentInstanceKeyFilter as v, type RoleSearchQueryResult as v$, type ResourceKeyExactMatchWritable as v0, type ResourceKeyFilterProperty as v1, type ResourceKeyWritable as v2, type ResourceResult as v3, type ResourceSearchQuery as v4, type ResourceSearchQueryResult as v5, type ResourceSearchQuerySortRequest as v6, ResourceTypeEnum as v7, type RestoreAsClusterAdminData as v8, type RestoreAsClusterAdminError as v9, type ResumeExportingResponses as vA, type ResumeProcessInstanceData as vB, type ResumeProcessInstanceError as vC, type ResumeProcessInstanceErrors as vD, type ResumeProcessInstanceRequest as vE, type ResumeProcessInstanceResponse as vF, type ResumeProcessInstanceResponses as vG, type ResumeProcessInstancesBatchOperationData as vH, type ResumeProcessInstancesBatchOperationError as vI, type ResumeProcessInstancesBatchOperationErrors as vJ, type ResumeProcessInstancesBatchOperationResponse as vK, type ResumeProcessInstancesBatchOperationResponses as vL, type RoleClientResult as vM, type RoleClientSearchQueryRequest as vN, type RoleClientSearchQuerySortRequest as vO, type RoleClientSearchResult as vP, type RoleCreateRequest as vQ, type RoleCreateResult as vR, type RoleFilter as vS, type RoleGroupResult as vT, type RoleGroupSearchQueryRequest as vU, type RoleGroupSearchQuerySortRequest as vV, type RoleGroupSearchResult as vW, RoleId as vX, type RoleMappingRuleSearchResult as vY, type RoleResult as vZ, type RoleSearchQueryRequest as v_, type RestoreAsClusterAdminErrors as va, type RestoreAsClusterAdminResponse as vb, type RestoreAsClusterAdminResponses as vc, type RestoreBrokerStatus as vd, type RestoreData as ve, type RestoreError as vf, type RestoreErrors as vg, type RestorePartitionStatus as vh, type RestoreRequest as vi, type RestoreResponse as vj, type RestoreResponses as vk, type RestoreStatusResponse as vl, type ResumeBatchOperationData as vm, type ResumeBatchOperationError as vn, type ResumeBatchOperationErrors as vo, type ResumeBatchOperationResponse as vp, type ResumeBatchOperationResponses as vq, type ResumeClusterExportingData as vr, type ResumeClusterExportingError as vs, type ResumeClusterExportingErrors as vt, type ResumeClusterExportingResponse as vu, type ResumeClusterExportingResponses as vv, type ResumeExportingData as vw, type ResumeExportingError as vx, type ResumeExportingErrors as vy, type ResumeExportingResponse as vz, type AdvancedAgentInstanceStatusFilter as w, type SearchClusterVariablesErrors as w$, type RoleSearchQuerySortRequest as w0, type RoleUpdateRequest as w1, type RoleUpdateResult as w2, type RoleUserResult as w3, type RoleUserSearchQueryRequest as w4, type RoleUserSearchQuerySortRequest as w5, type RoleUserSearchResult as w6, type RuntimeBackupState as w7, type ScopeKey as w8, type ScopeKeyExactMatch as w9, type SearchAuthorizationsResponse as wA, type SearchAuthorizationsResponses as wB, type SearchBatchOperationItemsData as wC, type SearchBatchOperationItemsError as wD, type SearchBatchOperationItemsErrors as wE, type SearchBatchOperationItemsResponse as wF, type SearchBatchOperationItemsResponses as wG, type SearchBatchOperationsData as wH, type SearchBatchOperationsError as wI, type SearchBatchOperationsErrors as wJ, type SearchBatchOperationsResponse as wK, type SearchBatchOperationsResponses as wL, type SearchClientsForGroupData as wM, type SearchClientsForGroupError as wN, type SearchClientsForGroupErrors as wO, type SearchClientsForGroupResponse as wP, type SearchClientsForGroupResponses as wQ, type SearchClientsForRoleData as wR, type SearchClientsForRoleError as wS, type SearchClientsForRoleErrors as wT, type SearchClientsForRoleResponse as wU, type SearchClientsForRoleResponses as wV, type SearchClientsForTenantData as wW, type SearchClientsForTenantResponse as wX, type SearchClientsForTenantResponses as wY, type SearchClusterVariablesData as wZ, type SearchClusterVariablesError as w_, type ScopeKeyExactMatchWritable as wa, type ScopeKeyFilterProperty as wb, type ScopeKeyWritable as wc, type SearchAgentDefinitionsData as wd, type SearchAgentDefinitionsError as we, type SearchAgentDefinitionsErrors as wf, type SearchAgentDefinitionsResponse as wg, type SearchAgentDefinitionsResponses as wh, type SearchAgentInstanceHistoryData as wi, type SearchAgentInstanceHistoryError as wj, type SearchAgentInstanceHistoryErrors as wk, type SearchAgentInstanceHistoryResponse as wl, type SearchAgentInstanceHistoryResponses as wm, type SearchAgentInstancesData as wn, type SearchAgentInstancesError as wo, type SearchAgentInstancesErrors as wp, type SearchAgentInstancesResponse as wq, type SearchAgentInstancesResponses as wr, type SearchAuditLogsData as ws, type SearchAuditLogsError as wt, type SearchAuditLogsErrors as wu, type SearchAuditLogsResponse as wv, type SearchAuditLogsResponses as ww, type SearchAuthorizationsData as wx, type SearchAuthorizationsError as wy, type SearchAuthorizationsErrors as wz, type AdvancedAuditLogEntityKeyFilter as x, type SearchJobsResponse as x$, type SearchClusterVariablesResponse as x0, type SearchClusterVariablesResponses as x1, type SearchCorrelatedMessageSubscriptionsData as x2, type SearchCorrelatedMessageSubscriptionsError as x3, type SearchCorrelatedMessageSubscriptionsErrors as x4, type SearchCorrelatedMessageSubscriptionsResponse as x5, type SearchCorrelatedMessageSubscriptionsResponses as x6, type SearchDecisionDefinitionsData as x7, type SearchDecisionDefinitionsError as x8, type SearchDecisionDefinitionsErrors as x9, type SearchElementInstancesResponses as xA, type SearchGlobalTaskListenersData as xB, type SearchGlobalTaskListenersError as xC, type SearchGlobalTaskListenersErrors as xD, type SearchGlobalTaskListenersResponse as xE, type SearchGlobalTaskListenersResponses as xF, type SearchGroupIdsForTenantData as xG, type SearchGroupIdsForTenantResponse as xH, type SearchGroupIdsForTenantResponses as xI, type SearchGroupsData as xJ, type SearchGroupsError as xK, type SearchGroupsErrors as xL, type SearchGroupsForRoleData as xM, type SearchGroupsForRoleError as xN, type SearchGroupsForRoleErrors as xO, type SearchGroupsForRoleResponse as xP, type SearchGroupsForRoleResponses as xQ, type SearchGroupsResponse as xR, type SearchGroupsResponses as xS, type SearchIncidentsData as xT, type SearchIncidentsError as xU, type SearchIncidentsErrors as xV, type SearchIncidentsResponse as xW, type SearchIncidentsResponses as xX, type SearchJobsData as xY, type SearchJobsError as xZ, type SearchJobsErrors as x_, type SearchDecisionDefinitionsResponse as xa, type SearchDecisionDefinitionsResponses as xb, type SearchDecisionInstancesData as xc, type SearchDecisionInstancesError as xd, type SearchDecisionInstancesErrors as xe, type SearchDecisionInstancesResponse as xf, type SearchDecisionInstancesResponses as xg, type SearchDecisionRequirementsData as xh, type SearchDecisionRequirementsError as xi, type SearchDecisionRequirementsErrors as xj, type SearchDecisionRequirementsResponse as xk, type SearchDecisionRequirementsResponses as xl, type SearchElementInstanceIncidentsData as xm, type SearchElementInstanceIncidentsError as xn, type SearchElementInstanceIncidentsErrors as xo, type SearchElementInstanceIncidentsResponse as xp, type SearchElementInstanceIncidentsResponses as xq, type SearchElementInstanceWaitStatesData as xr, type SearchElementInstanceWaitStatesError as xs, type SearchElementInstanceWaitStatesErrors as xt, type SearchElementInstanceWaitStatesResponse as xu, type SearchElementInstanceWaitStatesResponses as xv, type SearchElementInstancesData as xw, type SearchElementInstancesError as xx, type SearchElementInstancesErrors as xy, type SearchElementInstancesResponse as xz, type AdvancedAuditLogKeyFilter as y, type SearchRolesForGroupErrors as y$, type SearchJobsResponses as y0, type SearchMappingRuleData as y1, type SearchMappingRuleError as y2, type SearchMappingRuleErrors as y3, type SearchMappingRuleResponse as y4, type SearchMappingRuleResponses as y5, type SearchMappingRulesForGroupData as y6, type SearchMappingRulesForGroupError as y7, type SearchMappingRulesForGroupErrors as y8, type SearchMappingRulesForGroupResponse as y9, type SearchProcessDefinitionsErrors as yA, type SearchProcessDefinitionsResponse as yB, type SearchProcessDefinitionsResponses as yC, type SearchProcessInstanceIncidentsData as yD, type SearchProcessInstanceIncidentsError as yE, type SearchProcessInstanceIncidentsErrors as yF, type SearchProcessInstanceIncidentsResponse as yG, type SearchProcessInstanceIncidentsResponses as yH, type SearchProcessInstancesData as yI, type SearchProcessInstancesError as yJ, type SearchProcessInstancesErrors as yK, type SearchProcessInstancesResponse as yL, type SearchProcessInstancesResponses as yM, type SearchQueryPageRequest as yN, type SearchQueryPageResponse as yO, type SearchQueryRequest as yP, type SearchQueryResponse as yQ, type SearchResourcesData as yR, type SearchResourcesError as yS, type SearchResourcesErrors as yT, type SearchResourcesResponse as yU, type SearchResourcesResponses as yV, type SearchRolesData as yW, type SearchRolesError as yX, type SearchRolesErrors as yY, type SearchRolesForGroupData as yZ, type SearchRolesForGroupError as y_, type SearchMappingRulesForGroupResponses as ya, type SearchMappingRulesForRoleData as yb, type SearchMappingRulesForRoleError as yc, type SearchMappingRulesForRoleErrors as yd, type SearchMappingRulesForRoleResponse as ye, type SearchMappingRulesForRoleResponses as yf, type SearchMappingRulesForTenantData as yg, type SearchMappingRulesForTenantResponse as yh, type SearchMappingRulesForTenantResponses as yi, type SearchMessageSubscriptionsData as yj, type SearchMessageSubscriptionsError as yk, type SearchMessageSubscriptionsErrors as yl, type SearchMessageSubscriptionsResponse as ym, type SearchMessageSubscriptionsResponses as yn, type SearchOwnAuthorizationsData as yo, type SearchOwnAuthorizationsError as yp, type SearchOwnAuthorizationsErrors as yq, type SearchOwnAuthorizationsResponse as yr, type SearchOwnAuthorizationsResponses as ys, type SearchProcessDefinitionVariableNamesData as yt, type SearchProcessDefinitionVariableNamesError as yu, type SearchProcessDefinitionVariableNamesErrors as yv, type SearchProcessDefinitionVariableNamesResponse as yw, type SearchProcessDefinitionVariableNamesResponses as yx, type SearchProcessDefinitionsData as yy, type SearchProcessDefinitionsError as yz, type AdvancedBatchOperationItemStateFilter as z, type SignalBroadcastResult as z$, type SearchRolesForGroupResponse as z0, type SearchRolesForGroupResponses as z1, type SearchRolesForTenantData as z2, type SearchRolesForTenantResponse as z3, type SearchRolesForTenantResponses as z4, type SearchRolesResponse as z5, type SearchRolesResponses as z6, type SearchTenantsData as z7, type SearchTenantsError as z8, type SearchTenantsErrors as z9, type SearchUsersForGroupError as zA, type SearchUsersForGroupErrors as zB, type SearchUsersForGroupResponse as zC, type SearchUsersForGroupResponses as zD, type SearchUsersForRoleData as zE, type SearchUsersForRoleError as zF, type SearchUsersForRoleErrors as zG, type SearchUsersForRoleResponse as zH, type SearchUsersForRoleResponses as zI, type SearchUsersForTenantData as zJ, type SearchUsersForTenantResponse as zK, type SearchUsersForTenantResponses as zL, type SearchUsersResponse as zM, type SearchUsersResponses as zN, type SearchVariablesData as zO, type SearchVariablesError as zP, type SearchVariablesErrors as zQ, type SearchVariablesResponse as zR, type SearchVariablesResponses as zS, type SecretErrorCode as zT, type SecretListRequest as zU, type SecretListResult as zV, type SecretResolutionError as zW, type SecretResolveRequest as zX, type SecretResolveResult as zY, type SetVariableRequest as zZ, type SignalBroadcastRequest as z_, type SearchTenantsResponse as za, type SearchTenantsResponses as zb, type SearchUserTaskAuditLogsData as zc, type SearchUserTaskAuditLogsError as zd, type SearchUserTaskAuditLogsErrors as ze, type SearchUserTaskAuditLogsResponse as zf, type SearchUserTaskAuditLogsResponses as zg, type SearchUserTaskEffectiveVariablesData as zh, type SearchUserTaskEffectiveVariablesError as zi, type SearchUserTaskEffectiveVariablesErrors as zj, type SearchUserTaskEffectiveVariablesResponse as zk, type SearchUserTaskEffectiveVariablesResponses as zl, type SearchUserTaskVariablesData as zm, type SearchUserTaskVariablesError as zn, type SearchUserTaskVariablesErrors as zo, type SearchUserTaskVariablesResponse as zp, type SearchUserTaskVariablesResponses as zq, type SearchUserTasksData as zr, type SearchUserTasksError as zs, type SearchUserTasksErrors as zt, type SearchUserTasksResponse as zu, type SearchUserTasksResponses as zv, type SearchUsersData as zw, type SearchUsersError as zx, type SearchUsersErrors as zy, type SearchUsersForGroupData as zz };
33340
+ export { type AdvancedJobStateFilter as $, type ActivatedJobResult$1 as A, type TenantFilter as A$, SignalKey as A0, type SignalKeyWritable as A1, type SignalWaitStateDetails as A2, SortOrderEnum as A3, type SourceElementIdInstruction as A4, type SourceElementInstanceKeyInstruction as A5, type SourceElementInstruction as A6, StartCursor as A7, type StateCode as A8, type StatusMetric as A9, type TagSetWritable as AA, type TakeHistoryBackupAsClusterAdminData as AB, type TakeHistoryBackupAsClusterAdminError as AC, type TakeHistoryBackupAsClusterAdminErrors as AD, type TakeHistoryBackupAsClusterAdminResponse as AE, type TakeHistoryBackupAsClusterAdminResponses as AF, type TakeHistoryBackupData as AG, type TakeHistoryBackupError as AH, type TakeHistoryBackupErrors as AI, type TakeHistoryBackupRequest as AJ, type TakeHistoryBackupResponse as AK, type TakeHistoryBackupResponse2 as AL, type TakeHistoryBackupResponses as AM, type TakeRuntimeBackupData as AN, type TakeRuntimeBackupError as AO, type TakeRuntimeBackupErrors as AP, type TakeRuntimeBackupRequest as AQ, type TakeRuntimeBackupResponse as AR, type TakeRuntimeBackupResponse2 as AS, type TakeRuntimeBackupResponses as AT, type TelemetryHooks as AU, type TenantClientResult as AV, type TenantClientSearchQueryRequest as AW, type TenantClientSearchQuerySortRequest as AX, type TenantClientSearchResult as AY, type TenantCreateRequest as AZ, type TenantCreateResult as A_, type StringFilterProperty as Aa, type SupportLogger as Ab, type SuspendBatchOperationData as Ac, type SuspendBatchOperationError as Ad, type SuspendBatchOperationErrors as Ae, type SuspendBatchOperationResponse as Af, type SuspendBatchOperationResponses as Ag, type SuspendProcessInstanceData as Ah, type SuspendProcessInstanceError as Ai, type SuspendProcessInstanceErrors as Aj, type SuspendProcessInstanceRequest as Ak, type SuspendProcessInstanceResponse as Al, type SuspendProcessInstanceResponses as Am, type SuspendProcessInstancesBatchOperationData as An, type SuspendProcessInstancesBatchOperationError as Ao, type SuspendProcessInstancesBatchOperationErrors as Ap, type SuspendProcessInstancesBatchOperationResponse as Aq, type SuspendProcessInstancesBatchOperationResponses as Ar, type SyncRuntimeBackupStateData as As, type SyncRuntimeBackupStateError as At, type SyncRuntimeBackupStateErrors as Au, type SyncRuntimeBackupStateResponse as Av, type SyncRuntimeBackupStateResponses as Aw, type SystemConfigurationResponse as Ax, Tag as Ay, type TagSet as Az, type AdvancedBatchOperationStateFilter as B, type UnassignRoleFromGroupData as B$, TenantFilterEnum as B0, type TenantGroupResult as B1, type TenantGroupSearchQueryRequest as B2, type TenantGroupSearchQuerySortRequest as B3, type TenantGroupSearchResult as B4, TenantId as B5, type TenantMappingRuleSearchResult as B6, type TenantResult as B7, type TenantRoleSearchResult as B8, type TenantSearchQueryRequest as B9, type UnassignClientFromGroupResponse as BA, type UnassignClientFromGroupResponses as BB, type UnassignClientFromTenantData as BC, type UnassignClientFromTenantError as BD, type UnassignClientFromTenantErrors as BE, type UnassignClientFromTenantResponse as BF, type UnassignClientFromTenantResponses as BG, type UnassignGroupFromTenantData as BH, type UnassignGroupFromTenantError as BI, type UnassignGroupFromTenantErrors as BJ, type UnassignGroupFromTenantResponse as BK, type UnassignGroupFromTenantResponses as BL, type UnassignMappingRuleFromGroupData as BM, type UnassignMappingRuleFromGroupError as BN, type UnassignMappingRuleFromGroupErrors as BO, type UnassignMappingRuleFromGroupResponse as BP, type UnassignMappingRuleFromGroupResponses as BQ, type UnassignMappingRuleFromTenantData as BR, type UnassignMappingRuleFromTenantError as BS, type UnassignMappingRuleFromTenantErrors as BT, type UnassignMappingRuleFromTenantResponse as BU, type UnassignMappingRuleFromTenantResponses as BV, type UnassignRoleFromClientData as BW, type UnassignRoleFromClientError as BX, type UnassignRoleFromClientErrors as BY, type UnassignRoleFromClientResponse as BZ, type UnassignRoleFromClientResponses as B_, type TenantSearchQueryResult as Ba, type TenantSearchQuerySortRequest as Bb, type TenantUpdateRequest as Bc, type TenantUpdateResult as Bd, type TenantUserResult as Be, type TenantUserSearchQueryRequest as Bf, type TenantUserSearchQuerySortRequest as Bg, type TenantUserSearchResult as Bh, ThreadPool as Bi, type ThreadedJob as Bj, type ThreadedJobHandler as Bk, ThreadedJobWorker as Bl, type ThreadedJobWorkerConfig as Bm, type ThrowJobErrorData as Bn, type ThrowJobErrorError as Bo, type ThrowJobErrorErrors as Bp, type ThrowJobErrorResponse as Bq, type ThrowJobErrorResponses as Br, type TimerWaitStateDetails as Bs, type TopologyResponse as Bt, type TypedVariableItem as Bu, type TypedVariablePage as Bv, TypedVariablesError as Bw, type UnassignClientFromGroupData as Bx, type UnassignClientFromGroupError as By, type UnassignClientFromGroupErrors as Bz, CamundaClient as C, type UpdateJobErrors as C$, type UnassignRoleFromGroupError as C0, type UnassignRoleFromGroupErrors as C1, type UnassignRoleFromGroupResponse as C2, type UnassignRoleFromGroupResponses as C3, type UnassignRoleFromMappingRuleData as C4, type UnassignRoleFromMappingRuleError as C5, type UnassignRoleFromMappingRuleErrors as C6, type UnassignRoleFromMappingRuleResponse as C7, type UnassignRoleFromMappingRuleResponses as C8, type UnassignRoleFromTenantData as C9, type UpdateAgentInstanceErrors as CA, type UpdateAgentInstanceResponse as CB, type UpdateAgentInstanceResponses as CC, type UpdateAuthorizationData as CD, type UpdateAuthorizationError as CE, type UpdateAuthorizationErrors as CF, type UpdateAuthorizationResponse as CG, type UpdateAuthorizationResponses as CH, type UpdateClusterVariableRequest as CI, type UpdateGlobalClusterVariableData as CJ, type UpdateGlobalClusterVariableError as CK, type UpdateGlobalClusterVariableErrors as CL, type UpdateGlobalClusterVariableResponse as CM, type UpdateGlobalClusterVariableResponses as CN, type UpdateGlobalTaskListenerData as CO, type UpdateGlobalTaskListenerError as CP, type UpdateGlobalTaskListenerErrors as CQ, type UpdateGlobalTaskListenerRequest as CR, type UpdateGlobalTaskListenerResponse as CS, type UpdateGlobalTaskListenerResponses as CT, type UpdateGroupData as CU, type UpdateGroupError as CV, type UpdateGroupErrors as CW, type UpdateGroupResponse as CX, type UpdateGroupResponses as CY, type UpdateJobData as CZ, type UpdateJobError as C_, type UnassignRoleFromTenantError as Ca, type UnassignRoleFromTenantErrors as Cb, type UnassignRoleFromTenantResponse as Cc, type UnassignRoleFromTenantResponses as Cd, type UnassignRoleFromUserData as Ce, type UnassignRoleFromUserError as Cf, type UnassignRoleFromUserErrors as Cg, type UnassignRoleFromUserResponse as Ch, type UnassignRoleFromUserResponses as Ci, type UnassignUserFromGroupData as Cj, type UnassignUserFromGroupError as Ck, type UnassignUserFromGroupErrors as Cl, type UnassignUserFromGroupResponse as Cm, type UnassignUserFromGroupResponses as Cn, type UnassignUserFromTenantData as Co, type UnassignUserFromTenantError as Cp, type UnassignUserFromTenantErrors as Cq, type UnassignUserFromTenantResponse as Cr, type UnassignUserFromTenantResponses as Cs, type UnassignUserTaskData as Ct, type UnassignUserTaskError as Cu, type UnassignUserTaskErrors as Cv, type UnassignUserTaskResponse as Cw, type UnassignUserTaskResponses as Cx, type UpdateAgentInstanceData as Cy, type UpdateAgentInstanceError as Cz, type AdvancedBatchOperationTypeFilter as D, type UserTaskStateFilterProperty as D$, type UpdateJobResponse as D0, type UpdateJobResponses as D1, type UpdateJobsBatchOperationData as D2, type UpdateJobsBatchOperationError as D3, type UpdateJobsBatchOperationErrors as D4, type UpdateJobsBatchOperationResponse as D5, type UpdateJobsBatchOperationResponses as D6, type UpdateMappingRuleData as D7, type UpdateMappingRuleError as D8, type UpdateMappingRuleErrors as D9, type UpdateUserTaskResponses as DA, type UsageMetricsResponse as DB, type UsageMetricsResponseItem as DC, type UseSourceParentKeyInstruction as DD, type UserCreateResult as DE, type UserFilter as DF, type UserRequest as DG, type UserResult as DH, type UserSearchQueryRequest as DI, type UserSearchQuerySortRequest as DJ, type UserSearchResult as DK, type UserTaskAssignmentRequest as DL, type UserTaskAuditLogFilter as DM, type UserTaskAuditLogSearchQueryRequest as DN, type UserTaskCompletionRequest as DO, type UserTaskEffectiveVariableSearchQueryRequest as DP, type UserTaskFilter as DQ, UserTaskKey as DR, type UserTaskKeyWritable as DS, type UserTaskProperties as DT, type UserTaskResult as DU, type UserTaskSearchQuery as DV, type UserTaskSearchQueryResult as DW, type UserTaskSearchQuerySortRequest as DX, UserTaskStateEnum as DY, type UserTaskStateExactMatch as DZ, type UserTaskStateExactMatchWritable as D_, type UpdateMappingRuleResponse as Da, type UpdateMappingRuleResponses as Db, type UpdateRoleData as Dc, type UpdateRoleError as Dd, type UpdateRoleErrors as De, type UpdateRoleResponse as Df, type UpdateRoleResponses as Dg, type UpdateTenantClusterVariableData as Dh, type UpdateTenantClusterVariableError as Di, type UpdateTenantClusterVariableErrors as Dj, type UpdateTenantClusterVariableResponse as Dk, type UpdateTenantClusterVariableResponses as Dl, type UpdateTenantData as Dm, type UpdateTenantError as Dn, type UpdateTenantErrors as Do, type UpdateTenantResponse as Dp, type UpdateTenantResponses as Dq, type UpdateUserData as Dr, type UpdateUserError as Ds, type UpdateUserErrors as Dt, type UpdateUserResponse as Du, type UpdateUserResponses as Dv, type UpdateUserTaskData as Dw, type UpdateUserTaskError as Dx, type UpdateUserTaskErrors as Dy, type UpdateUserTaskResponse as Dz, type AdvancedCategoryFilter as E, type createAdminUserInput as E$, type UserTaskUpdateRequest as E0, type UserTaskVariableFilter as E1, type UserTaskVariableSearchQueryRequest as E2, type UserTaskVariableSearchQuerySortRequest as E3, type UserTaskWaitStateDetails as E4, type UserUpdateRequest as E5, type UserUpdateResult as E6, Username as E7, type ValidationMode as E8, VariableCollector as E9, type activateAdHocSubProcessActivitiesInput as EA, type activateJobsInput as EB, assertConstraint as EC, type assignClientToGroupInput as ED, type assignClientToTenantInput as EE, type assignGroupToTenantInput as EF, type assignMappingRuleToGroupInput as EG, type assignMappingRuleToTenantInput as EH, type assignProcessInstanceBusinessIdInput as EI, type assignRoleToClientInput as EJ, type assignRoleToGroupInput as EK, type assignRoleToMappingRuleInput as EL, type assignRoleToTenantInput as EM, type assignRoleToUserInput as EN, type assignUserTaskInput as EO, type assignUserToGroupInput as EP, type assignUserToTenantInput as EQ, type broadcastSignalInput as ER, type cancelBatchOperationInput as ES, type cancelProcessInstanceInput as ET, type cancelProcessInstancesBatchOperationInput as EU, type changeClusterModeAsClusterAdminInput as EV, type changeClusterModeInput as EW, collectTypedVariables as EX, type completeJobInput as EY, type completeUserTaskInput as EZ, type correlateMessageInput as E_, VariableDeserializationError as Ea, type VariableFilter as Eb, VariableKey as Ec, type VariableKeyExactMatch as Ed, type VariableKeyExactMatchWritable as Ee, type VariableKeyFilterProperty as Ef, type VariableKeyWritable as Eg, VariableMap as Eh, type VariableResult as Ei, type VariableResultBase as Ej, VariableScopeCollisionError as Ek, type VariableSearchQuery as El, type VariableSearchQueryResult as Em, type VariableSearchQuerySortRequest as En, type VariableSearchResult as Eo, type VariableValueFilterProperty as Ep, type WaitStateDetails as Eq, WaitStateElementTypeEnum as Er, type WaitStateElementTypeExactMatch as Es, type WaitStateElementTypeExactMatchWritable as Et, type WaitStateElementTypeFilterProperty as Eu, WaitStateTypeEnum as Ev, type WaitStateTypeExactMatch as Ew, type WaitStateTypeExactMatchWritable as Ex, type WaitStateTypeFilterProperty as Ey, type WebappComponent as Ez, type AdvancedClusterVariableKindFilter as F, type getDecisionRequirementsXmlInput as F$, type createAgentInstanceHistoryItemInput as F0, type createAgentInstanceInput as F1, type createAuthorizationInput as F2, type createDeploymentInput as F3, type createDocumentInput as F4, type createDocumentLinkInput as F5, type createDocumentsInput as F6, type createElementInstanceVariablesInput as F7, type createGlobalClusterVariableInput as F8, type createGlobalTaskListenerInput as F9, type evaluateConditionalsInput as FA, type evaluateDecisionInput as FB, type evaluateExpressionInput as FC, type failJobInput as FD, type getAgentDefinitionConsistency as FE, type getAgentDefinitionInput as FF, type getAgentInstanceConsistency as FG, type getAgentInstanceInput as FH, type getAuditLogConsistency as FI, type getAuditLogInput as FJ, type getAuthenticationInput as FK, type getAuthorizationConsistency as FL, type getAuthorizationInput as FM, type getBatchOperationConsistency as FN, type getBatchOperationInput as FO, type getClusterExportingStatusInput as FP, type getClusterStatusInput as FQ, type getClusterTopologyInput as FR, type getDecisionDefinitionConsistency as FS, type getDecisionDefinitionInput as FT, type getDecisionDefinitionXmlConsistency as FU, type getDecisionDefinitionXmlInput as FV, type getDecisionInstanceConsistency as FW, type getDecisionInstanceInput as FX, type getDecisionRequirementsConsistency as FY, type getDecisionRequirementsInput as FZ, type getDecisionRequirementsXmlConsistency as F_, type createGroupInput as Fa, type createMappingRuleInput as Fb, type createProcessInstanceInput as Fc, type createRoleInput as Fd, type createTenantClusterVariableInput as Fe, type createTenantInput as Ff, type createUserInput as Fg, type deleteAuthorizationInput as Fh, type deleteDecisionInstanceInput as Fi, type deleteDecisionInstancesBatchOperationInput as Fj, type deleteDocumentInput as Fk, type deleteGlobalClusterVariableInput as Fl, type deleteGlobalTaskListenerInput as Fm, type deleteGroupInput as Fn, type deleteHistoryBackupAsClusterAdminInput as Fo, type deleteHistoryBackupInput as Fp, type deleteMappingRuleInput as Fq, type deleteProcessInstanceInput as Fr, type deleteProcessInstancesBatchOperationInput as Fs, type deleteResourceInput as Ft, type deleteRoleInput as Fu, type deleteRuntimeBackupInput as Fv, type deleteRuntimeBackupStateInput as Fw, type deleteTenantClusterVariableInput as Fx, type deleteTenantInput as Fy, type deleteUserInput as Fz, type AdvancedClusterVariableScopeFilter as G, type getRoleInput as G$, type getDocumentInput as G0, type getElementInstanceConsistency as G1, type getElementInstanceInput as G2, type getExportingStatusInput as G3, type getFormByKeyConsistency as G4, type getFormByKeyInput as G5, type getGlobalClusterVariableConsistency as G6, type getGlobalClusterVariableInput as G7, type getGlobalJobStatisticsConsistency as G8, type getGlobalJobStatisticsInput as G9, type getProcessDefinitionMessageSubscriptionStatisticsInput as GA, type getProcessDefinitionStatisticsConsistency as GB, type getProcessDefinitionStatisticsInput as GC, type getProcessDefinitionXmlConsistency as GD, type getProcessDefinitionXmlInput as GE, type getProcessInstanceCallHierarchyConsistency as GF, type getProcessInstanceCallHierarchyInput as GG, type getProcessInstanceConsistency as GH, type getProcessInstanceInput as GI, type getProcessInstanceSequenceFlowsConsistency as GJ, type getProcessInstanceSequenceFlowsInput as GK, type getProcessInstanceStatisticsByDefinitionConsistency as GL, type getProcessInstanceStatisticsByDefinitionInput as GM, type getProcessInstanceStatisticsByErrorConsistency as GN, type getProcessInstanceStatisticsByErrorInput as GO, type getProcessInstanceStatisticsConsistency as GP, type getProcessInstanceStatisticsInput as GQ, type getProcessInstanceWaitStateStatisticsConsistency as GR, type getProcessInstanceWaitStateStatisticsInput as GS, type getResourceConsistency as GT, type getResourceContentBinaryConsistency as GU, type getResourceContentBinaryInput as GV, type getResourceContentConsistency as GW, type getResourceContentInput as GX, type getResourceInput as GY, type getRestoreStatusInput as GZ, type getRoleConsistency as G_, type getGlobalTaskListenerConsistency as Ga, type getGlobalTaskListenerInput as Gb, type getGroupConsistency as Gc, type getGroupInput as Gd, type getHistoryBackupAsClusterAdminInput as Ge, type getHistoryBackupInput as Gf, type getIncidentConsistency as Gg, type getIncidentInput as Gh, type getJobErrorStatisticsConsistency as Gi, type getJobErrorStatisticsInput as Gj, type getJobTimeSeriesStatisticsConsistency as Gk, type getJobTimeSeriesStatisticsInput as Gl, type getJobTypeStatisticsConsistency as Gm, type getJobTypeStatisticsInput as Gn, type getJobWorkerStatisticsConsistency as Go, type getJobWorkerStatisticsInput as Gp, type getLicenseInput as Gq, type getMappingRuleConsistency as Gr, type getMappingRuleInput as Gs, type getProcessDefinitionConsistency as Gt, type getProcessDefinitionInput as Gu, type getProcessDefinitionInstanceStatisticsConsistency as Gv, type getProcessDefinitionInstanceStatisticsInput as Gw, type getProcessDefinitionInstanceVersionStatisticsConsistency as Gx, type getProcessDefinitionInstanceVersionStatisticsInput as Gy, type getProcessDefinitionMessageSubscriptionStatisticsConsistency as Gz, type AdvancedDateTimeFilter as H, type searchClientsForTenantConsistency as H$, type getRuntimeBackupInput as H0, type getRuntimeBackupStateInput as H1, type getStartProcessFormConsistency as H2, type getStartProcessFormInput as H3, type getStatusInput as H4, type getSystemConfigurationInput as H5, type getTenantClusterVariableConsistency as H6, type getTenantClusterVariableInput as H7, type getTenantConsistency as H8, type getTenantInput as H9, type resolveProcessInstanceIncidentsInput as HA, type resolveSecretsInput as HB, type restoreAsClusterAdminInput as HC, type restoreInput as HD, type resumeBatchOperationInput as HE, type resumeClusterExportingInput as HF, type resumeExportingInput as HG, type resumeProcessInstanceInput as HH, type resumeProcessInstancesBatchOperationInput as HI, type searchAgentDefinitionsConsistency as HJ, type searchAgentDefinitionsInput as HK, type searchAgentInstanceHistoryConsistency as HL, type searchAgentInstanceHistoryInput as HM, type searchAgentInstancesConsistency as HN, type searchAgentInstancesInput as HO, type searchAuditLogsConsistency as HP, type searchAuditLogsInput as HQ, type searchAuthorizationsConsistency as HR, type searchAuthorizationsInput as HS, type searchBatchOperationItemsConsistency as HT, type searchBatchOperationItemsInput as HU, type searchBatchOperationsConsistency as HV, type searchBatchOperationsInput as HW, type searchClientsForGroupConsistency as HX, type searchClientsForGroupInput as HY, type searchClientsForRoleConsistency as HZ, type searchClientsForRoleInput as H_, type getTopologyInput as Ha, type getUsageMetricsConsistency as Hb, type getUsageMetricsInput as Hc, type getUserConsistency as Hd, type getUserInput as He, type getUserTaskConsistency as Hf, type getUserTaskFormConsistency as Hg, type getUserTaskFormInput as Hh, type getUserTaskInput as Hi, type getVariableConsistency as Hj, type getVariableInput as Hk, type listHistoryBackupsAsClusterAdminInput as Hl, type listHistoryBackupsInput as Hm, type listRuntimeBackupsInput as Hn, type listSecretsInput as Ho, type migrateProcessInstanceInput as Hp, type migrateProcessInstancesBatchOperationInput as Hq, type modifyProcessInstanceInput as Hr, type modifyProcessInstancesBatchOperationInput as Hs, type pauseClusterExportingInput as Ht, type pauseExportingInput as Hu, type pinClockInput as Hv, type publishMessageInput as Hw, type resetClockInput as Hx, type resolveIncidentInput as Hy, type resolveIncidentsBatchOperationInput as Hz, type AdvancedDecisionDefinitionKeyFilter as I, type searchUserTaskVariablesConsistency as I$, type searchClientsForTenantInput as I0, type searchClusterVariablesConsistency as I1, type searchClusterVariablesInput as I2, type searchCorrelatedMessageSubscriptionsConsistency as I3, type searchCorrelatedMessageSubscriptionsInput as I4, type searchDecisionDefinitionsConsistency as I5, type searchDecisionDefinitionsInput as I6, type searchDecisionInstancesConsistency as I7, type searchDecisionInstancesInput as I8, type searchDecisionRequirementsConsistency as I9, type searchMappingRulesForTenantInput as IA, type searchMessageSubscriptionsConsistency as IB, type searchMessageSubscriptionsInput as IC, type searchOwnAuthorizationsConsistency as ID, type searchOwnAuthorizationsInput as IE, type searchProcessDefinitionVariableNamesConsistency as IF, type searchProcessDefinitionVariableNamesInput as IG, type searchProcessDefinitionsConsistency as IH, type searchProcessDefinitionsInput as II, type searchProcessInstanceIncidentsConsistency as IJ, type searchProcessInstanceIncidentsInput as IK, type searchProcessInstancesConsistency as IL, type searchProcessInstancesInput as IM, type searchResourcesConsistency as IN, type searchResourcesInput as IO, type searchRolesConsistency as IP, type searchRolesForGroupConsistency as IQ, type searchRolesForGroupInput as IR, type searchRolesForTenantConsistency as IS, type searchRolesForTenantInput as IT, type searchRolesInput as IU, type searchTenantsConsistency as IV, type searchTenantsInput as IW, type searchUserTaskAuditLogsConsistency as IX, type searchUserTaskAuditLogsInput as IY, type searchUserTaskEffectiveVariablesConsistency as IZ, type searchUserTaskEffectiveVariablesInput as I_, type searchDecisionRequirementsInput as Ia, type searchElementInstanceIncidentsConsistency as Ib, type searchElementInstanceIncidentsInput as Ic, type searchElementInstanceWaitStatesConsistency as Id, type searchElementInstanceWaitStatesInput as Ie, type searchElementInstancesConsistency as If, type searchElementInstancesInput as Ig, type searchGlobalTaskListenersConsistency as Ih, type searchGlobalTaskListenersInput as Ii, type searchGroupIdsForTenantConsistency as Ij, type searchGroupIdsForTenantInput as Ik, type searchGroupsConsistency as Il, type searchGroupsForRoleConsistency as Im, type searchGroupsForRoleInput as In, type searchGroupsInput as Io, type searchIncidentsConsistency as Ip, type searchIncidentsInput as Iq, type searchJobsConsistency as Ir, type searchJobsInput as Is, type searchMappingRuleConsistency as It, type searchMappingRuleInput as Iu, type searchMappingRulesForGroupConsistency as Iv, type searchMappingRulesForGroupInput as Iw, type searchMappingRulesForRoleConsistency as Ix, type searchMappingRulesForRoleInput as Iy, type searchMappingRulesForTenantConsistency as Iz, type AdvancedDecisionEvaluationInstanceKeyFilter as J, type searchUserTaskVariablesInput as J0, type searchUserTasksConsistency as J1, type searchUserTasksInput as J2, type searchUsersConsistency as J3, type searchUsersForGroupConsistency as J4, type searchUsersForGroupInput as J5, type searchUsersForRoleConsistency as J6, type searchUsersForRoleInput as J7, type searchUsersForTenantConsistency as J8, type searchUsersForTenantInput as J9, type updateGlobalClusterVariableInput as JA, type updateGlobalTaskListenerInput as JB, type updateGroupInput as JC, type updateJobInput as JD, type updateJobsBatchOperationInput as JE, type updateMappingRuleInput as JF, type updateRoleInput as JG, type updateTenantClusterVariableInput as JH, type updateTenantInput as JI, type updateUserInput as JJ, type updateUserTaskInput as JK, variableNamesFromSchema as JL, type searchUsersInput as Ja, type searchVariablesConsistency as Jb, type searchVariablesInput as Jc, type suspendBatchOperationInput as Jd, type suspendProcessInstanceInput as Je, type suspendProcessInstancesBatchOperationInput as Jf, type syncRuntimeBackupStateInput as Jg, type takeHistoryBackupAsClusterAdminInput as Jh, type takeHistoryBackupInput as Ji, type takeRuntimeBackupInput as Jj, type throwJobErrorInput as Jk, type unassignClientFromGroupInput as Jl, type unassignClientFromTenantInput as Jm, type unassignGroupFromTenantInput as Jn, type unassignMappingRuleFromGroupInput as Jo, type unassignMappingRuleFromTenantInput as Jp, type unassignRoleFromClientInput as Jq, type unassignRoleFromGroupInput as Jr, type unassignRoleFromMappingRuleInput as Js, type unassignRoleFromTenantInput as Jt, type unassignRoleFromUserInput as Ju, type unassignUserFromGroupInput as Jv, type unassignUserFromTenantInput as Jw, type unassignUserTaskInput as Jx, type updateAgentInstanceInput as Jy, type updateAuthorizationInput as Jz, type AdvancedDecisionEvaluationKeyFilter as K, type AdvancedDecisionInstanceStateFilter as L, type AdvancedDecisionRequirementsKeyFilter as M, type AdvancedDeploymentKeyFilter as N, type AdvancedElementIdFilter as O, type AdvancedElementInstanceKeyFilter as P, type AdvancedElementInstanceStateFilter as Q, type AdvancedEntityTypeFilter as R, type AdvancedFormKeyFilter as S, type AdvancedGlobalListenerSourceFilter as T, type AdvancedGlobalTaskListenerEventTypeFilter as U, type AdvancedIncidentErrorTypeFilter as V, type AdvancedIncidentStateFilter as W, type AdvancedIntegerFilter as X, type AdvancedJobKeyFilter as Y, type AdvancedJobKindFilter as Z, type AdvancedJobListenerEventTypeFilter as _, type CamundaOptions as a, type AgentInstanceKeyWritable as a$, type AdvancedMessageSubscriptionKeyFilter as a0, type AdvancedMessageSubscriptionStateFilter as a1, type AdvancedMessageSubscriptionTypeFilter as a2, type AdvancedMetadataValueFilter as a3, type AdvancedOperationTypeFilter as a4, type AdvancedProcessDefinitionIdFilter as a5, type AdvancedProcessDefinitionKeyFilter as a6, type AdvancedProcessInstanceKeyFilter as a7, type AdvancedProcessInstanceStateFilter as a8, type AdvancedResourceKeyFilter as a9, type AgentInstanceCreatedHistoryItem as aA, type AgentInstanceCreationRequest as aB, type AgentInstanceCreationResult as aC, type AgentInstanceDefinition as aD, type AgentInstanceDocumentContent as aE, type AgentInstanceFilter as aF, AgentInstanceHistoryCommitStatusEnum as aG, type AgentInstanceHistoryCommitStatusExactMatch as aH, type AgentInstanceHistoryCommitStatusExactMatchWritable as aI, type AgentInstanceHistoryCommitStatusFilterProperty as aJ, type AgentInstanceHistoryFilter as aK, type AgentInstanceHistoryItem as aL, type AgentInstanceHistoryItemCreationResult as aM, type AgentInstanceHistoryItemMetrics as aN, type AgentInstanceHistoryItemRequest as aO, type AgentInstanceHistoryItemResult as aP, AgentInstanceHistoryRoleEnum as aQ, type AgentInstanceHistoryRoleExactMatch as aR, type AgentInstanceHistoryRoleExactMatchWritable as aS, type AgentInstanceHistoryRoleFilterProperty as aT, type AgentInstanceHistorySearchQuery as aU, type AgentInstanceHistorySearchQueryResult as aV, type AgentInstanceHistorySearchQuerySortRequest as aW, AgentInstanceKey as aX, type AgentInstanceKeyExactMatch as aY, type AgentInstanceKeyExactMatchWritable as aZ, type AgentInstanceKeyFilterProperty as a_, type AdvancedResultFilter as aa, type AdvancedScopeKeyFilter as ab, type AdvancedStringFilter as ac, type AdvancedUserTaskStateFilter as ad, type AdvancedVariableKeyFilter as ae, type AdvancedWaitStateElementTypeFilter as af, type AdvancedWaitStateTypeFilter as ag, type AgentDefinitionFilter as ah, AgentDefinitionKey as ai, type AgentDefinitionKeyExactMatch as aj, type AgentDefinitionKeyExactMatchWritable as ak, type AgentDefinitionKeyFilterProperty as al, type AgentDefinitionKeyWritable as am, type AgentDefinitionResult as an, type AgentDefinitionSearchQuery as ao, type AgentDefinitionSearchQueryResult as ap, type AgentDefinitionSearchQuerySortRequest as aq, AgentDefinitionTypeEnum as ar, type AgentDefinitionTypeExactMatch as as, type AgentDefinitionTypeExactMatchWritable as at, type AgentDefinitionTypeFilterProperty as au, AgentHistoryItemKey as av, type AgentHistoryItemKeyExactMatch as aw, type AgentHistoryItemKeyExactMatchWritable as ax, type AgentHistoryItemKeyFilterProperty as ay, type AgentHistoryItemKeyWritable as az, type CancelablePromise as b, type AssignRoleToMappingRuleError as b$, type AgentInstanceLimits as b0, type AgentInstanceMessageContent as b1, AgentInstanceMessageContentTypeEnum as b2, type AgentInstanceMetrics as b3, type AgentInstanceMetricsDelta as b4, type AgentInstanceObjectContent as b5, type AgentInstanceResult as b6, type AgentInstanceSearchQuery as b7, type AgentInstanceSearchQueryResult as b8, type AgentInstanceSearchQuerySortRequest as b9, type AssignGroupToTenantResponses as bA, type AssignMappingRuleToGroupData as bB, type AssignMappingRuleToGroupError as bC, type AssignMappingRuleToGroupErrors as bD, type AssignMappingRuleToGroupResponse as bE, type AssignMappingRuleToGroupResponses as bF, type AssignMappingRuleToTenantData as bG, type AssignMappingRuleToTenantError as bH, type AssignMappingRuleToTenantErrors as bI, type AssignMappingRuleToTenantResponse as bJ, type AssignMappingRuleToTenantResponses as bK, type AssignProcessInstanceBusinessIdData as bL, type AssignProcessInstanceBusinessIdError as bM, type AssignProcessInstanceBusinessIdErrors as bN, type AssignProcessInstanceBusinessIdResponse as bO, type AssignProcessInstanceBusinessIdResponses as bP, type AssignRoleToClientData as bQ, type AssignRoleToClientError as bR, type AssignRoleToClientErrors as bS, type AssignRoleToClientResponse as bT, type AssignRoleToClientResponses as bU, type AssignRoleToGroupData as bV, type AssignRoleToGroupError as bW, type AssignRoleToGroupErrors as bX, type AssignRoleToGroupResponse as bY, type AssignRoleToGroupResponses as bZ, type AssignRoleToMappingRuleData as b_, AgentInstanceStatusEnum as ba, type AgentInstanceStatusExactMatch as bb, type AgentInstanceStatusExactMatchWritable as bc, type AgentInstanceStatusFilterProperty as bd, type AgentInstanceTextContent as be, type AgentInstanceToolCall as bf, type AgentInstanceUpdateRequest as bg, type AgentInstanceUpdateResult as bh, AgentInstanceUpdateStatusEnum as bi, type AgentTool as bj, type AncestorScopeInstruction as bk, type AnyVariableSchema as bl, type AssignClientToGroupData as bm, type AssignClientToGroupError as bn, type AssignClientToGroupErrors as bo, type AssignClientToGroupResponse as bp, type AssignClientToGroupResponses as bq, type AssignClientToTenantData as br, type AssignClientToTenantError as bs, type AssignClientToTenantErrors as bt, type AssignClientToTenantResponse as bu, type AssignClientToTenantResponses as bv, type AssignGroupToTenantData as bw, type AssignGroupToTenantError as bx, type AssignGroupToTenantErrors as by, type AssignGroupToTenantResponse as bz, createCamundaClient as c, type AuthorizationSearchQuery as c$, type AssignRoleToMappingRuleErrors as c0, type AssignRoleToMappingRuleResponse as c1, type AssignRoleToMappingRuleResponses as c2, type AssignRoleToTenantData as c3, type AssignRoleToTenantError as c4, type AssignRoleToTenantErrors as c5, type AssignRoleToTenantResponse as c6, type AssignRoleToTenantResponses as c7, type AssignRoleToUserData as c8, type AssignRoleToUserError as c9, type AuditLogEntityKeyFilterProperty as cA, AuditLogEntityTypeEnum as cB, type AuditLogFilter as cC, AuditLogKey as cD, type AuditLogKeyExactMatch as cE, type AuditLogKeyExactMatchWritable as cF, type AuditLogKeyFilterProperty as cG, type AuditLogKeyWritable as cH, AuditLogOperationTypeEnum as cI, type AuditLogResult as cJ, AuditLogResultEnum as cK, type AuditLogResultExactMatch as cL, type AuditLogResultExactMatchWritable as cM, type AuditLogResultFilterProperty as cN, type AuditLogSearchQueryRequest as cO, type AuditLogSearchQueryResult as cP, type AuditLogSearchQuerySortRequest as cQ, type AuthStrategy as cR, type AuthenticationConfigurationResponse as cS, type AuthorizationCreateResult as cT, type AuthorizationFilter as cU, type AuthorizationIdBasedRequest as cV, AuthorizationKey as cW, type AuthorizationKeyWritable as cX, type AuthorizationPropertyBasedRequest as cY, type AuthorizationRequest as cZ, type AuthorizationResult as c_, type AssignRoleToUserErrors as ca, type AssignRoleToUserResponse as cb, type AssignRoleToUserResponses as cc, type AssignUserTaskData as cd, type AssignUserTaskError as ce, type AssignUserTaskErrors as cf, type AssignUserTaskResponse as cg, type AssignUserTaskResponses as ch, type AssignUserToGroupData as ci, type AssignUserToGroupError as cj, type AssignUserToGroupErrors as ck, type AssignUserToGroupResponse as cl, type AssignUserToGroupResponses as cm, type AssignUserToTenantData as cn, type AssignUserToTenantError as co, type AssignUserToTenantErrors as cp, type AssignUserToTenantResponse as cq, type AssignUserToTenantResponses as cr, AuditLogActorTypeEnum as cs, type AuditLogActorTypeExactMatch as ct, type AuditLogActorTypeExactMatchWritable as cu, type AuditLogActorTypeFilterProperty as cv, AuditLogCategoryEnum as cw, AuditLogEntityKey as cx, type AuditLogEntityKeyExactMatch as cy, type AuditLogEntityKeyExactMatchWritable as cz, type ActivateAdHocSubProcessActivitiesData as d, type CancelProcessInstancesBatchOperationResponse as d$, type AuthorizationSearchQuerySortRequest as d0, type AuthorizationSearchResult as d1, type BackpressureSeverity as d2, type BackupId as d3, type BackupIdPrefix as d4, type BackupInfo as d5, type BackupInfoWritable as d6, type BackupType as d7, type BaseProcessInstanceFilterFields as d8, type BaseWaitStateDetails as d9, type BatchOperationTypeExactMatchWritable as dA, type BatchOperationTypeFilterProperty as dB, type BroadcastSignalData as dC, type BroadcastSignalError as dD, type BroadcastSignalErrors as dE, type BroadcastSignalResponse as dF, type BroadcastSignalResponses as dG, type BrokerInfo as dH, BusinessId as dI, type CamundaConfig as dJ, type CamundaKey as dK, type CamundaUserResult as dL, type CancelBatchOperationData as dM, type CancelBatchOperationError as dN, type CancelBatchOperationErrors as dO, type CancelBatchOperationResponse as dP, type CancelBatchOperationResponses as dQ, CancelError as dR, type CancelProcessInstanceData as dS, type CancelProcessInstanceError as dT, type CancelProcessInstanceErrors as dU, type CancelProcessInstanceRequest as dV, type CancelProcessInstanceResponse as dW, type CancelProcessInstanceResponses as dX, type CancelProcessInstancesBatchOperationData as dY, type CancelProcessInstancesBatchOperationError as dZ, type CancelProcessInstancesBatchOperationErrors as d_, type BasicStringFilter as da, type BasicStringFilterProperty as db, type BatchOperationCreatedResult as dc, type BatchOperationError as dd, type BatchOperationFilter as de, type BatchOperationItemFilter as df, type BatchOperationItemResponse as dg, type BatchOperationItemSearchQuery as dh, type BatchOperationItemSearchQueryResult as di, type BatchOperationItemSearchQuerySortRequest as dj, BatchOperationItemStateEnum as dk, type BatchOperationItemStateExactMatch as dl, type BatchOperationItemStateExactMatchWritable as dm, type BatchOperationItemStateFilterProperty as dn, BatchOperationKey as dp, type BatchOperationResponse as dq, type BatchOperationSearchQuery as dr, type BatchOperationSearchQueryResult as ds, type BatchOperationSearchQuerySortRequest as dt, BatchOperationStateEnum as du, type BatchOperationStateExactMatch as dv, type BatchOperationStateExactMatchWritable as dw, type BatchOperationStateFilterProperty as dx, BatchOperationTypeEnum as dy, type BatchOperationTypeExactMatch as dz, type ActivateAdHocSubProcessActivitiesError as e, type CompleteJobResponse as e$, type CancelProcessInstancesBatchOperationResponses as e0, type CategoryExactMatch as e1, type CategoryExactMatchWritable as e2, type CategoryFilterProperty as e3, type ChangeClusterModeAsClusterAdminData as e4, type ChangeClusterModeAsClusterAdminError as e5, type ChangeClusterModeAsClusterAdminErrors as e6, type ChangeClusterModeAsClusterAdminResponse as e7, type ChangeClusterModeAsClusterAdminResponses as e8, type ChangeClusterModeData as e9, type ClusterRestorePartitionOperation as eA, type ClusterRestorePartitionRestoreOperation as eB, type ClusterRestorePlannedChange as eC, type ClusterRestoreRequest as eD, type ClusterRestoreResponse as eE, type ClusterStatusResponse as eF, type ClusterTakeHistoryBackupResponse as eG, type ClusterTopologyResponse as eH, ClusterVariableKindEnum as eI, type ClusterVariableKindExactMatch as eJ, type ClusterVariableKindExactMatchWritable as eK, type ClusterVariableKindFilterProperty as eL, ClusterVariableName as eM, type ClusterVariableResult as eN, type ClusterVariableResultBase as eO, ClusterVariableScopeEnum as eP, type ClusterVariableScopeExactMatch as eQ, type ClusterVariableScopeExactMatchWritable as eR, type ClusterVariableScopeFilterProperty as eS, type ClusterVariableSearchQueryFilterRequest as eT, type ClusterVariableSearchQueryRequest as eU, type ClusterVariableSearchQueryResult as eV, type ClusterVariableSearchQuerySortRequest as eW, type ClusterVariableSearchResult as eX, type CompleteJobData as eY, type CompleteJobError as eZ, type CompleteJobErrors as e_, type ChangeClusterModeError as ea, type ChangeClusterModeErrors as eb, type ChangeClusterModeResponse as ec, type ChangeClusterModeResponses as ed, type Changeset as ee, type CheckpointId as ef, type CheckpointType as eg, ClientId as eh, type ClientOptions$1 as ei, type ClockPinRequest as ej, type CloudConfigurationResponse as ek, type CloudStage as el, type ClusterBrokerInfo as em, type ClusterHistoryBackupInfo as en, type ClusterHistoryBackupInfoWritable as eo, type ClusterHistoryBackupTakeResult as ep, type ClusterHistoryBackupTenantInfo as eq, type ClusterHistoryBackupTenantInfoWritable as er, type ClusterHistoryBackupTenantState as es, type ClusterModeChangeOperation as et, type ClusterModeChangePlannedChange as eu, type ClusterModeChangeResponse as ev, type ClusterRestoreAwaitModeChangeOperation as ew, type ClusterRestoreBrokerOperation as ex, type ClusterRestoreModeChangeOperation as ey, type ClusterRestoreOperation as ez, type ActivateAdHocSubProcessActivitiesErrors as f, type CreateElementInstanceVariablesError as f$, type CompleteJobResponses as f0, type CompleteUserTaskData as f1, type CompleteUserTaskError as f2, type CompleteUserTaskErrors as f3, type CompleteUserTaskResponse as f4, type CompleteUserTaskResponses as f5, type ComponentsConfigurationResponse as f6, type ConditionWaitStateDetails as f7, type ConditionalEvaluationInstruction as f8, ConditionalEvaluationKey as f9, type CreateAuthorizationData as fA, type CreateAuthorizationError as fB, type CreateAuthorizationErrors as fC, type CreateAuthorizationResponse as fD, type CreateAuthorizationResponses as fE, type CreateClusterVariableRequest as fF, type CreateDeploymentData as fG, type CreateDeploymentError as fH, type CreateDeploymentErrors as fI, type CreateDeploymentResponse as fJ, type CreateDeploymentResponses as fK, type CreateDocumentData as fL, type CreateDocumentError as fM, type CreateDocumentErrors as fN, type CreateDocumentLinkData as fO, type CreateDocumentLinkError as fP, type CreateDocumentLinkErrors as fQ, type CreateDocumentLinkResponse as fR, type CreateDocumentLinkResponses as fS, type CreateDocumentResponse as fT, type CreateDocumentResponses as fU, type CreateDocumentsData as fV, type CreateDocumentsError as fW, type CreateDocumentsErrors as fX, type CreateDocumentsResponse as fY, type CreateDocumentsResponses as fZ, type CreateElementInstanceVariablesData as f_, type ConditionalEvaluationKeyWritable as fa, type CorrelateMessageData as fb, type CorrelateMessageError as fc, type CorrelateMessageErrors as fd, type CorrelateMessageResponse as fe, type CorrelateMessageResponses as ff, type CorrelatedMessageSubscriptionFilter as fg, type CorrelatedMessageSubscriptionResult as fh, type CorrelatedMessageSubscriptionSearchQuery as fi, type CorrelatedMessageSubscriptionSearchQueryResult as fj, type CorrelatedMessageSubscriptionSearchQuerySortRequest as fk, type CreateAdminUserData as fl, type CreateAdminUserError as fm, type CreateAdminUserErrors as fn, type CreateAdminUserResponse as fo, type CreateAdminUserResponses as fp, type CreateAgentInstanceData as fq, type CreateAgentInstanceError as fr, type CreateAgentInstanceErrors as fs, type CreateAgentInstanceHistoryItemData as ft, type CreateAgentInstanceHistoryItemError as fu, type CreateAgentInstanceHistoryItemErrors as fv, type CreateAgentInstanceHistoryItemResponse as fw, type CreateAgentInstanceHistoryItemResponses as fx, type CreateAgentInstanceResponse as fy, type CreateAgentInstanceResponses as fz, type ActivateAdHocSubProcessActivitiesResponse as g, type DecisionDefinitionSearchQuerySortRequest as g$, type CreateElementInstanceVariablesErrors as g0, type CreateElementInstanceVariablesResponse as g1, type CreateElementInstanceVariablesResponses as g2, type CreateGlobalClusterVariableData as g3, type CreateGlobalClusterVariableError as g4, type CreateGlobalClusterVariableErrors as g5, type CreateGlobalClusterVariableResponse as g6, type CreateGlobalClusterVariableResponses as g7, type CreateGlobalTaskListenerData as g8, type CreateGlobalTaskListenerError as g9, type CreateTenantClusterVariableError as gA, type CreateTenantClusterVariableErrors as gB, type CreateTenantClusterVariableResponse as gC, type CreateTenantClusterVariableResponses as gD, type CreateTenantData as gE, type CreateTenantError as gF, type CreateTenantErrors as gG, type CreateTenantResponse as gH, type CreateTenantResponses as gI, type CreateUserData as gJ, type CreateUserError as gK, type CreateUserErrors as gL, type CreateUserResponse as gM, type CreateUserResponses as gN, type CursorBackwardPagination as gO, type CursorForwardPagination as gP, type DateTimeFilterProperty as gQ, type DecisionDefinitionFilter as gR, DecisionDefinitionId as gS, DecisionDefinitionKey as gT, type DecisionDefinitionKeyExactMatch as gU, type DecisionDefinitionKeyExactMatchWritable as gV, type DecisionDefinitionKeyFilterProperty as gW, type DecisionDefinitionKeyWritable as gX, type DecisionDefinitionResult as gY, type DecisionDefinitionSearchQuery as gZ, type DecisionDefinitionSearchQueryResult as g_, type CreateGlobalTaskListenerErrors as ga, type CreateGlobalTaskListenerRequest as gb, type CreateGlobalTaskListenerResponse as gc, type CreateGlobalTaskListenerResponses as gd, type CreateGroupData as ge, type CreateGroupError as gf, type CreateGroupErrors as gg, type CreateGroupResponse as gh, type CreateGroupResponses as gi, type CreateMappingRuleData as gj, type CreateMappingRuleError as gk, type CreateMappingRuleErrors as gl, type CreateMappingRuleResponse as gm, type CreateMappingRuleResponses as gn, type CreateProcessInstanceData as go, type CreateProcessInstanceError as gp, type CreateProcessInstanceErrors as gq, type CreateProcessInstanceResponse as gr, type CreateProcessInstanceResponses as gs, type CreateProcessInstanceResult as gt, type CreateRoleData as gu, type CreateRoleError as gv, type CreateRoleErrors as gw, type CreateRoleResponse as gx, type CreateRoleResponses as gy, type CreateTenantClusterVariableData as gz, type ActivateAdHocSubProcessActivitiesResponses as h, type DeleteGlobalTaskListenerError as h$, DecisionDefinitionTypeEnum as h0, type DecisionEvaluationById as h1, type DecisionEvaluationByKey as h2, DecisionEvaluationInstanceKey as h3, type DecisionEvaluationInstanceKeyExactMatch as h4, type DecisionEvaluationInstanceKeyExactMatchWritable as h5, type DecisionEvaluationInstanceKeyFilterProperty as h6, type DecisionEvaluationInstruction as h7, DecisionEvaluationKey as h8, type DecisionEvaluationKeyExactMatch as h9, type DeleteAuthorizationData as hA, type DeleteAuthorizationError as hB, type DeleteAuthorizationErrors as hC, type DeleteAuthorizationResponse as hD, type DeleteAuthorizationResponses as hE, type DeleteDecisionInstanceData as hF, type DeleteDecisionInstanceError as hG, type DeleteDecisionInstanceErrors as hH, type DeleteDecisionInstanceRequest as hI, type DeleteDecisionInstanceResponse as hJ, type DeleteDecisionInstanceResponses as hK, type DeleteDecisionInstancesBatchOperationData as hL, type DeleteDecisionInstancesBatchOperationError as hM, type DeleteDecisionInstancesBatchOperationErrors as hN, type DeleteDecisionInstancesBatchOperationResponse as hO, type DeleteDecisionInstancesBatchOperationResponses as hP, type DeleteDocumentData as hQ, type DeleteDocumentError as hR, type DeleteDocumentErrors as hS, type DeleteDocumentResponse as hT, type DeleteDocumentResponses as hU, type DeleteGlobalClusterVariableData as hV, type DeleteGlobalClusterVariableError as hW, type DeleteGlobalClusterVariableErrors as hX, type DeleteGlobalClusterVariableResponse as hY, type DeleteGlobalClusterVariableResponses as hZ, type DeleteGlobalTaskListenerData as h_, type DecisionEvaluationKeyExactMatchWritable as ha, type DecisionEvaluationKeyFilterProperty as hb, type DecisionEvaluationKeyWritable as hc, type DecisionInstanceDeletionBatchOperationRequest as hd, type DecisionInstanceFilter as he, type DecisionInstanceGetQueryResult as hf, DecisionInstanceKey as hg, type DecisionInstanceKeyWritable as hh, type DecisionInstanceResult as hi, type DecisionInstanceSearchQuery as hj, type DecisionInstanceSearchQueryResult as hk, type DecisionInstanceSearchQuerySortRequest as hl, DecisionInstanceStateEnum as hm, type DecisionInstanceStateExactMatch as hn, type DecisionInstanceStateExactMatchWritable as ho, type DecisionInstanceStateFilterProperty as hp, type DecisionRequirementsFilter as hq, DecisionRequirementsKey as hr, type DecisionRequirementsKeyExactMatch as hs, type DecisionRequirementsKeyExactMatchWritable as ht, type DecisionRequirementsKeyFilterProperty as hu, type DecisionRequirementsKeyWritable as hv, type DecisionRequirementsResult as hw, type DecisionRequirementsSearchQuery as hx, type DecisionRequirementsSearchQueryResult as hy, type DecisionRequirementsSearchQuerySortRequest as hz, type ActivateJobsData as i, type DeleteTenantData as i$, type DeleteGlobalTaskListenerErrors as i0, type DeleteGlobalTaskListenerResponse as i1, type DeleteGlobalTaskListenerResponses as i2, type DeleteGroupData as i3, type DeleteGroupError as i4, type DeleteGroupErrors as i5, type DeleteGroupResponse as i6, type DeleteGroupResponses as i7, type DeleteHistoryBackupAsClusterAdminData as i8, type DeleteHistoryBackupAsClusterAdminError as i9, type DeleteResourceData as iA, type DeleteResourceError as iB, type DeleteResourceErrors as iC, type DeleteResourceRequest as iD, type DeleteResourceResponse as iE, type DeleteResourceResponse2 as iF, type DeleteResourceResponses as iG, type DeleteRoleData as iH, type DeleteRoleError as iI, type DeleteRoleErrors as iJ, type DeleteRoleResponse as iK, type DeleteRoleResponses as iL, type DeleteRuntimeBackupData as iM, type DeleteRuntimeBackupError as iN, type DeleteRuntimeBackupErrors as iO, type DeleteRuntimeBackupResponse as iP, type DeleteRuntimeBackupResponses as iQ, type DeleteRuntimeBackupStateData as iR, type DeleteRuntimeBackupStateError as iS, type DeleteRuntimeBackupStateErrors as iT, type DeleteRuntimeBackupStateResponse as iU, type DeleteRuntimeBackupStateResponses as iV, type DeleteTenantClusterVariableData as iW, type DeleteTenantClusterVariableError as iX, type DeleteTenantClusterVariableErrors as iY, type DeleteTenantClusterVariableResponse as iZ, type DeleteTenantClusterVariableResponses as i_, type DeleteHistoryBackupAsClusterAdminErrors as ia, type DeleteHistoryBackupAsClusterAdminResponse as ib, type DeleteHistoryBackupAsClusterAdminResponses as ic, type DeleteHistoryBackupData as id, type DeleteHistoryBackupError as ie, type DeleteHistoryBackupErrors as ig, type DeleteHistoryBackupResponse as ih, type DeleteHistoryBackupResponses as ii, type DeleteMappingRuleData as ij, type DeleteMappingRuleError as ik, type DeleteMappingRuleErrors as il, type DeleteMappingRuleResponse as im, type DeleteMappingRuleResponses as io, type DeleteProcessInstanceData as ip, type DeleteProcessInstanceError as iq, type DeleteProcessInstanceErrors as ir, type DeleteProcessInstanceRequest as is, type DeleteProcessInstanceResponse as it, type DeleteProcessInstanceResponses as iu, type DeleteProcessInstancesBatchOperationData as iv, type DeleteProcessInstancesBatchOperationError as iw, type DeleteProcessInstancesBatchOperationErrors as ix, type DeleteProcessInstancesBatchOperationResponse as iy, type DeleteProcessInstancesBatchOperationResponses as iz, type ActivateJobsError as j, type EvaluateConditionalsErrors as j$, type DeleteTenantError as j0, type DeleteTenantErrors as j1, type DeleteTenantResponse as j2, type DeleteTenantResponses as j3, type DeleteUserData as j4, type DeleteUserError as j5, type DeleteUserErrors as j6, type DeleteUserResponse as j7, type DeleteUserResponses as j8, type DeploymentConfigurationResponse as j9, type ElementInstanceFilterFields as jA, ElementInstanceKey as jB, type ElementInstanceKeyExactMatch as jC, type ElementInstanceKeyExactMatchWritable as jD, type ElementInstanceKeyFilterProperty as jE, type ElementInstanceKeyWritable as jF, type ElementInstanceResult as jG, type ElementInstanceSearchQuery as jH, type ElementInstanceSearchQueryResult as jI, type ElementInstanceSearchQuerySortRequest as jJ, ElementInstanceStateEnum as jK, type ElementInstanceStateExactMatch as jL, type ElementInstanceStateExactMatchWritable as jM, type ElementInstanceStateFilterProperty as jN, type ElementInstanceWaitStateFilter as jO, type ElementInstanceWaitStateQuery as jP, type ElementInstanceWaitStateQueryResult as jQ, type ElementInstanceWaitStateQuerySortRequest as jR, type ElementInstanceWaitStateResult as jS, EndCursor as jT, type EnrichedActivatedJob as jU, type EntityTypeExactMatch as jV, type EntityTypeExactMatchWritable as jW, type EntityTypeFilterProperty as jX, type EvaluateConditionalResult as jY, type EvaluateConditionalsData as jZ, type EvaluateConditionalsError as j_, type DeploymentDecisionRequirementsResult as ja, type DeploymentDecisionResult as jb, type DeploymentFormResult as jc, DeploymentKey as jd, type DeploymentKeyExactMatch as je, type DeploymentKeyExactMatchWritable as jf, type DeploymentKeyFilterProperty as jg, type DeploymentKeyWritable as jh, type DeploymentMetadataResult as ji, type DeploymentProcessResult as jj, type DeploymentResourceResult as jk, type DeploymentResult as jl, type DirectAncestorKeyInstruction as jm, type DocumentCreationBatchResponse as jn, type DocumentCreationFailureDetail as jo, DocumentId as jp, type DocumentLink as jq, type DocumentLinkRequest as jr, type DocumentMetadata as js, type DocumentMetadataResponse as jt, type DocumentReference as ju, ElementId as jv, type ElementIdExactMatch as jw, type ElementIdExactMatchWritable as jx, type ElementIdFilterProperty as jy, type ElementInstanceFilter as jz, type ActivateJobsErrors as k, type GetBatchOperationResponse as k$, type EvaluateConditionalsResponse as k0, type EvaluateConditionalsResponses as k1, type EvaluateDecisionData as k2, type EvaluateDecisionError as k3, type EvaluateDecisionErrors as k4, type EvaluateDecisionResponse as k5, type EvaluateDecisionResponses as k6, type EvaluateDecisionResult as k7, type EvaluateExpressionData as k8, type EvaluateExpressionError as k9, type GetAgentDefinitionError as kA, type GetAgentDefinitionErrors as kB, type GetAgentDefinitionResponse as kC, type GetAgentDefinitionResponses as kD, type GetAgentInstanceData as kE, type GetAgentInstanceError as kF, type GetAgentInstanceErrors as kG, type GetAgentInstanceResponse as kH, type GetAgentInstanceResponses as kI, type GetAuditLogData as kJ, type GetAuditLogError as kK, type GetAuditLogErrors as kL, type GetAuditLogResponse as kM, type GetAuditLogResponses as kN, type GetAuthenticationData as kO, type GetAuthenticationError as kP, type GetAuthenticationErrors as kQ, type GetAuthenticationResponse as kR, type GetAuthenticationResponses as kS, type GetAuthorizationData as kT, type GetAuthorizationError as kU, type GetAuthorizationErrors as kV, type GetAuthorizationResponse as kW, type GetAuthorizationResponses as kX, type GetBatchOperationData as kY, type GetBatchOperationError as kZ, type GetBatchOperationErrors as k_, type EvaluateExpressionErrors as ka, type EvaluateExpressionResponse as kb, type EvaluateExpressionResponses as kc, type EvaluatedDecisionInputItem as kd, type EvaluatedDecisionOutputItem as ke, type EvaluatedDecisionResult as kf, type ExportingStatusCode as kg, type ExportingStatusResponse as kh, type ExpressionEvaluationRequest as ki, type ExpressionEvaluationResult as kj, type ExpressionEvaluationWarningItem as kk, type ExpressionSecretReferenceItem as kl, type ExtendedDeploymentResult as km, type FailJobData as kn, type FailJobError as ko, type FailJobErrors as kp, type FailJobResponse as kq, type FailJobResponses as kr, FormId as ks, FormKey as kt, type FormKeyExactMatch as ku, type FormKeyExactMatchWritable as kv, type FormKeyFilterProperty as kw, type FormKeyWritable as kx, type FormResult as ky, type GetAgentDefinitionData as kz, type ActivateJobsResponse as l, type GetGlobalClusterVariableErrors as l$, type GetBatchOperationResponses as l0, type GetClusterExportingStatusData as l1, type GetClusterExportingStatusError as l2, type GetClusterExportingStatusErrors as l3, type GetClusterExportingStatusResponse as l4, type GetClusterExportingStatusResponses as l5, type GetClusterStatusData as l6, type GetClusterStatusError as l7, type GetClusterStatusErrors as l8, type GetClusterStatusResponse as l9, type GetDecisionRequirementsXmlData as lA, type GetDecisionRequirementsXmlError as lB, type GetDecisionRequirementsXmlErrors as lC, type GetDecisionRequirementsXmlResponse as lD, type GetDecisionRequirementsXmlResponses as lE, type GetDocumentData as lF, type GetDocumentError as lG, type GetDocumentErrors as lH, type GetDocumentResponse as lI, type GetDocumentResponses as lJ, type GetElementInstanceData as lK, type GetElementInstanceError as lL, type GetElementInstanceErrors as lM, type GetElementInstanceResponse as lN, type GetElementInstanceResponses as lO, type GetExportingStatusData as lP, type GetExportingStatusError as lQ, type GetExportingStatusErrors as lR, type GetExportingStatusResponse as lS, type GetExportingStatusResponses as lT, type GetFormByKeyData as lU, type GetFormByKeyError as lV, type GetFormByKeyErrors as lW, type GetFormByKeyResponse as lX, type GetFormByKeyResponses as lY, type GetGlobalClusterVariableData as lZ, type GetGlobalClusterVariableError as l_, type GetClusterStatusResponses as la, type GetClusterTopologyData as lb, type GetClusterTopologyError as lc, type GetClusterTopologyErrors as ld, type GetClusterTopologyResponse as le, type GetClusterTopologyResponses as lf, type GetDecisionDefinitionData as lg, type GetDecisionDefinitionError as lh, type GetDecisionDefinitionErrors as li, type GetDecisionDefinitionResponse as lj, type GetDecisionDefinitionResponses as lk, type GetDecisionDefinitionXmlData as ll, type GetDecisionDefinitionXmlError as lm, type GetDecisionDefinitionXmlErrors as ln, type GetDecisionDefinitionXmlResponse as lo, type GetDecisionDefinitionXmlResponses as lp, type GetDecisionInstanceData as lq, type GetDecisionInstanceError as lr, type GetDecisionInstanceErrors as ls, type GetDecisionInstanceResponse as lt, type GetDecisionInstanceResponses as lu, type GetDecisionRequirementsData as lv, type GetDecisionRequirementsError as lw, type GetDecisionRequirementsErrors as lx, type GetDecisionRequirementsResponse as ly, type GetDecisionRequirementsResponses as lz, type ActivateJobsResponses as m, type GetProcessDefinitionError as m$, type GetGlobalClusterVariableResponse as m0, type GetGlobalClusterVariableResponses as m1, type GetGlobalJobStatisticsData as m2, type GetGlobalJobStatisticsError as m3, type GetGlobalJobStatisticsErrors as m4, type GetGlobalJobStatisticsResponse as m5, type GetGlobalJobStatisticsResponses as m6, type GetGlobalTaskListenerData as m7, type GetGlobalTaskListenerError as m8, type GetGlobalTaskListenerErrors as m9, type GetJobErrorStatisticsResponses as mA, type GetJobTimeSeriesStatisticsData as mB, type GetJobTimeSeriesStatisticsError as mC, type GetJobTimeSeriesStatisticsErrors as mD, type GetJobTimeSeriesStatisticsResponse as mE, type GetJobTimeSeriesStatisticsResponses as mF, type GetJobTypeStatisticsData as mG, type GetJobTypeStatisticsError as mH, type GetJobTypeStatisticsErrors as mI, type GetJobTypeStatisticsResponse as mJ, type GetJobTypeStatisticsResponses as mK, type GetJobWorkerStatisticsData as mL, type GetJobWorkerStatisticsError as mM, type GetJobWorkerStatisticsErrors as mN, type GetJobWorkerStatisticsResponse as mO, type GetJobWorkerStatisticsResponses as mP, type GetLicenseData as mQ, type GetLicenseError as mR, type GetLicenseErrors as mS, type GetLicenseResponse as mT, type GetLicenseResponses as mU, type GetMappingRuleData as mV, type GetMappingRuleError as mW, type GetMappingRuleErrors as mX, type GetMappingRuleResponse as mY, type GetMappingRuleResponses as mZ, type GetProcessDefinitionData as m_, type GetGlobalTaskListenerResponse as ma, type GetGlobalTaskListenerResponses as mb, type GetGroupData as mc, type GetGroupError as md, type GetGroupErrors as me, type GetGroupResponse as mf, type GetGroupResponses as mg, type GetHistoryBackupAsClusterAdminData as mh, type GetHistoryBackupAsClusterAdminError as mi, type GetHistoryBackupAsClusterAdminErrors as mj, type GetHistoryBackupAsClusterAdminResponse as mk, type GetHistoryBackupAsClusterAdminResponses as ml, type GetHistoryBackupData as mm, type GetHistoryBackupError as mn, type GetHistoryBackupErrors as mo, type GetHistoryBackupResponse as mp, type GetHistoryBackupResponses as mq, type GetIncidentData as mr, type GetIncidentError as ms, type GetIncidentErrors as mt, type GetIncidentResponse as mu, type GetIncidentResponses as mv, type GetJobErrorStatisticsData as mw, type GetJobErrorStatisticsError as mx, type GetJobErrorStatisticsErrors as my, type GetJobErrorStatisticsResponse as mz, type AdHocSubProcessActivateActivitiesInstruction as n, type GetResourceContentBinaryData as n$, type GetProcessDefinitionErrors as n0, type GetProcessDefinitionInstanceStatisticsData as n1, type GetProcessDefinitionInstanceStatisticsError as n2, type GetProcessDefinitionInstanceStatisticsErrors as n3, type GetProcessDefinitionInstanceStatisticsResponse as n4, type GetProcessDefinitionInstanceStatisticsResponses as n5, type GetProcessDefinitionInstanceVersionStatisticsData as n6, type GetProcessDefinitionInstanceVersionStatisticsError as n7, type GetProcessDefinitionInstanceVersionStatisticsErrors as n8, type GetProcessDefinitionInstanceVersionStatisticsResponse as n9, type GetProcessInstanceResponse as nA, type GetProcessInstanceResponses as nB, type GetProcessInstanceSequenceFlowsData as nC, type GetProcessInstanceSequenceFlowsError as nD, type GetProcessInstanceSequenceFlowsErrors as nE, type GetProcessInstanceSequenceFlowsResponse as nF, type GetProcessInstanceSequenceFlowsResponses as nG, type GetProcessInstanceStatisticsByDefinitionData as nH, type GetProcessInstanceStatisticsByDefinitionError as nI, type GetProcessInstanceStatisticsByDefinitionErrors as nJ, type GetProcessInstanceStatisticsByDefinitionResponse as nK, type GetProcessInstanceStatisticsByDefinitionResponses as nL, type GetProcessInstanceStatisticsByErrorData as nM, type GetProcessInstanceStatisticsByErrorError as nN, type GetProcessInstanceStatisticsByErrorErrors as nO, type GetProcessInstanceStatisticsByErrorResponse as nP, type GetProcessInstanceStatisticsByErrorResponses as nQ, type GetProcessInstanceStatisticsData as nR, type GetProcessInstanceStatisticsError as nS, type GetProcessInstanceStatisticsErrors as nT, type GetProcessInstanceStatisticsResponse as nU, type GetProcessInstanceStatisticsResponses as nV, type GetProcessInstanceWaitStateStatisticsData as nW, type GetProcessInstanceWaitStateStatisticsError as nX, type GetProcessInstanceWaitStateStatisticsErrors as nY, type GetProcessInstanceWaitStateStatisticsResponse as nZ, type GetProcessInstanceWaitStateStatisticsResponses as n_, type GetProcessDefinitionInstanceVersionStatisticsResponses as na, type GetProcessDefinitionMessageSubscriptionStatisticsData as nb, type GetProcessDefinitionMessageSubscriptionStatisticsError as nc, type GetProcessDefinitionMessageSubscriptionStatisticsErrors as nd, type GetProcessDefinitionMessageSubscriptionStatisticsResponse as ne, type GetProcessDefinitionMessageSubscriptionStatisticsResponses as nf, type GetProcessDefinitionResponse as ng, type GetProcessDefinitionResponses as nh, type GetProcessDefinitionStatisticsData as ni, type GetProcessDefinitionStatisticsError as nj, type GetProcessDefinitionStatisticsErrors as nk, type GetProcessDefinitionStatisticsResponse as nl, type GetProcessDefinitionStatisticsResponses as nm, type GetProcessDefinitionXmlData as nn, type GetProcessDefinitionXmlError as no, type GetProcessDefinitionXmlErrors as np, type GetProcessDefinitionXmlResponse as nq, type GetProcessDefinitionXmlResponses as nr, type GetProcessInstanceCallHierarchyData as ns, type GetProcessInstanceCallHierarchyError as nt, type GetProcessInstanceCallHierarchyErrors as nu, type GetProcessInstanceCallHierarchyResponse as nv, type GetProcessInstanceCallHierarchyResponses as nw, type GetProcessInstanceData as nx, type GetProcessInstanceError as ny, type GetProcessInstanceErrors as nz, type AdHocSubProcessActivateActivityReference as o, type GetUsageMetricsData as o$, type GetResourceContentBinaryError as o0, type GetResourceContentBinaryErrors as o1, type GetResourceContentBinaryResponse as o2, type GetResourceContentBinaryResponses as o3, type GetResourceContentData as o4, type GetResourceContentError as o5, type GetResourceContentErrors as o6, type GetResourceContentResponse as o7, type GetResourceContentResponses as o8, type GetResourceData as o9, type GetStartProcessFormErrors as oA, type GetStartProcessFormResponse as oB, type GetStartProcessFormResponses as oC, type GetStatusData as oD, type GetStatusErrors as oE, type GetStatusResponse as oF, type GetStatusResponses as oG, type GetSystemConfigurationData as oH, type GetSystemConfigurationError as oI, type GetSystemConfigurationErrors as oJ, type GetSystemConfigurationResponse as oK, type GetSystemConfigurationResponses as oL, type GetTenantClusterVariableData as oM, type GetTenantClusterVariableError as oN, type GetTenantClusterVariableErrors as oO, type GetTenantClusterVariableResponse as oP, type GetTenantClusterVariableResponses as oQ, type GetTenantData as oR, type GetTenantError as oS, type GetTenantErrors as oT, type GetTenantResponse as oU, type GetTenantResponses as oV, type GetTopologyData as oW, type GetTopologyError as oX, type GetTopologyErrors as oY, type GetTopologyResponse as oZ, type GetTopologyResponses as o_, type GetResourceError as oa, type GetResourceErrors as ob, type GetResourceResponse as oc, type GetResourceResponses as od, type GetRestoreStatusData as oe, type GetRestoreStatusError as of, type GetRestoreStatusErrors as og, type GetRestoreStatusResponse as oh, type GetRestoreStatusResponses as oi, type GetRoleData as oj, type GetRoleError as ok, type GetRoleErrors as ol, type GetRoleResponse as om, type GetRoleResponses as on, type GetRuntimeBackupData as oo, type GetRuntimeBackupError as op, type GetRuntimeBackupErrors as oq, type GetRuntimeBackupResponse as or, type GetRuntimeBackupResponses as os, type GetRuntimeBackupStateData as ot, type GetRuntimeBackupStateError as ou, type GetRuntimeBackupStateErrors as ov, type GetRuntimeBackupStateResponse as ow, type GetRuntimeBackupStateResponses as ox, type GetStartProcessFormData as oy, type GetStartProcessFormError as oz, type AdvancedActorTypeFilter as p, type HistoryBackupInfo as p$, type GetUsageMetricsError as p0, type GetUsageMetricsErrors as p1, type GetUsageMetricsResponse as p2, type GetUsageMetricsResponses as p3, type GetUserData as p4, type GetUserError as p5, type GetUserErrors as p6, type GetUserResponse as p7, type GetUserResponses as p8, type GetUserTaskData as p9, type GlobalTaskListenerEventTypes as pA, type GlobalTaskListenerEventTypesWritable as pB, type GlobalTaskListenerResult as pC, type GlobalTaskListenerSearchQueryFilterRequest as pD, type GlobalTaskListenerSearchQueryRequest as pE, type GlobalTaskListenerSearchQueryResult as pF, type GlobalTaskListenerSearchQuerySortRequest as pG, type GroupClientResult as pH, type GroupClientSearchQueryRequest as pI, type GroupClientSearchQuerySortRequest as pJ, type GroupClientSearchResult as pK, type GroupCreateRequest as pL, type GroupCreateResult as pM, type GroupFilter as pN, GroupId as pO, type GroupMappingRuleSearchResult as pP, type GroupResult as pQ, type GroupRoleSearchResult as pR, type GroupSearchQueryRequest as pS, type GroupSearchQueryResult as pT, type GroupSearchQuerySortRequest as pU, type GroupUpdateRequest as pV, type GroupUpdateResult as pW, type GroupUserResult as pX, type GroupUserSearchQueryRequest as pY, type GroupUserSearchQuerySortRequest as pZ, type GroupUserSearchResult as p_, type GetUserTaskError as pa, type GetUserTaskErrors as pb, type GetUserTaskFormData as pc, type GetUserTaskFormError as pd, type GetUserTaskFormErrors as pe, type GetUserTaskFormResponse as pf, type GetUserTaskFormResponses as pg, type GetUserTaskResponse as ph, type GetUserTaskResponses as pi, type GetVariableData as pj, type GetVariableError as pk, type GetVariableErrors as pl, type GetVariableResponse as pm, type GetVariableResponses as pn, type GlobalJobStatisticsQueryResult as po, type GlobalListenerBase as pp, GlobalListenerId as pq, GlobalListenerSourceEnum as pr, type GlobalListenerSourceExactMatch as ps, type GlobalListenerSourceExactMatchWritable as pt, type GlobalListenerSourceFilterProperty as pu, type GlobalTaskListenerBase as pv, GlobalTaskListenerEventTypeEnum as pw, type GlobalTaskListenerEventTypeExactMatch as px, type GlobalTaskListenerEventTypeExactMatchWritable as py, type GlobalTaskListenerEventTypeFilterProperty as pz, type AdvancedAgentDefinitionKeyFilter as q, type JobResultUserTask as q$, type HistoryBackupInfoWritable as q0, type HistoryBackupSnapshotInfo as q1, type HistoryBackupStateCode as q2, type HttpRetryPolicy as q3, IncidentErrorTypeEnum as q4, type IncidentErrorTypeExactMatch as q5, type IncidentErrorTypeExactMatchWritable as q6, type IncidentErrorTypeFilterProperty as q7, type IncidentFilter as q8, IncidentKey as q9, type JobChangeset as qA, type JobCompletionRequest as qB, type JobErrorRequest$1 as qC, type JobErrorStatisticsFilter as qD, type JobErrorStatisticsItem as qE, type JobErrorStatisticsQuery as qF, type JobErrorStatisticsQueryResult as qG, type JobFailRequest as qH, type JobFilter as qI, JobKey as qJ, type JobKeyExactMatch as qK, type JobKeyExactMatchWritable as qL, type JobKeyFilterProperty as qM, type JobKeyWritable as qN, JobKindEnum as qO, type JobKindExactMatch as qP, type JobKindExactMatchWritable as qQ, type JobKindFilterProperty as qR, JobListenerEventTypeEnum as qS, type JobListenerEventTypeExactMatch as qT, type JobListenerEventTypeExactMatchWritable as qU, type JobListenerEventTypeFilterProperty as qV, type JobMetricsConfigurationResponse as qW, type JobResult as qX, type JobResultActivateElement as qY, type JobResultAdHocSubProcess as qZ, type JobResultCorrections as q_, type IncidentKeyWritable as qa, type IncidentProcessInstanceStatisticsByDefinitionFilter as qb, type IncidentProcessInstanceStatisticsByDefinitionQuery as qc, type IncidentProcessInstanceStatisticsByDefinitionQueryResult as qd, type IncidentProcessInstanceStatisticsByDefinitionQuerySortRequest as qe, type IncidentProcessInstanceStatisticsByDefinitionResult as qf, type IncidentProcessInstanceStatisticsByErrorQuery as qg, type IncidentProcessInstanceStatisticsByErrorQueryResult as qh, type IncidentProcessInstanceStatisticsByErrorQuerySortRequest as qi, type IncidentProcessInstanceStatisticsByErrorResult as qj, type IncidentResolutionRequest as qk, type IncidentResult as ql, type IncidentSearchQuery as qm, type IncidentSearchQueryResult as qn, type IncidentSearchQuerySortRequest as qo, IncidentStateEnum as qp, type IncidentStateExactMatch as qq, type IncidentStateExactMatchWritable as qr, type IncidentStateFilterProperty as qs, type InferredAncestorKeyInstruction as qt, type IntegerFilterProperty as qu, type Job as qv, JobActionReceipt as qw, type JobActivationRequest as qx, type JobActivationResult as qy, type JobBatchUpdateRequest as qz, type AdvancedAgentDefinitionTypeFilter as r, type MessageCorrelationResult as r$, type JobSearchQuery as r0, type JobSearchQueryResult as r1, type JobSearchQuerySortRequest as r2, type JobSearchResult as r3, JobStateEnum as r4, type JobStateExactMatch as r5, type JobStateExactMatchWritable as r6, type JobStateFilterProperty as r7, type JobTimeSeriesStatisticsFilter as r8, type JobTimeSeriesStatisticsItem as r9, type ListHistoryBackupsResponses as rA, type ListRuntimeBackupsData as rB, type ListRuntimeBackupsError as rC, type ListRuntimeBackupsErrors as rD, type ListRuntimeBackupsResponse as rE, type ListRuntimeBackupsResponses as rF, type ListSecretsData as rG, type ListSecretsError as rH, type ListSecretsErrors as rI, type ListSecretsResponse as rJ, type ListSecretsResponses as rK, type LongKey as rL, type LoopIterationId as rM, type MappingRuleCreateRequest as rN, type MappingRuleCreateResult as rO, type MappingRuleCreateUpdateRequest as rP, type MappingRuleCreateUpdateResult as rQ, type MappingRuleFilter as rR, MappingRuleId as rS, type MappingRuleResult as rT, type MappingRuleSearchQueryRequest as rU, type MappingRuleSearchQueryResult as rV, type MappingRuleSearchQuerySortRequest as rW, type MappingRuleUpdateRequest as rX, type MappingRuleUpdateResult as rY, type MatchedDecisionRuleItem as rZ, type MessageCorrelationRequest as r_, type JobTimeSeriesStatisticsQuery as ra, type JobTimeSeriesStatisticsQueryResult as rb, type JobTypeStatisticsFilter as rc, type JobTypeStatisticsItem as rd, type JobTypeStatisticsQuery as re, type JobTypeStatisticsQueryResult as rf, type JobUpdateRequest as rg, type JobWaitStateDetails as rh, JobWorker as ri, type JobWorkerConfig as rj, type JobWorkerStatisticsFilter as rk, type JobWorkerStatisticsItem as rl, type JobWorkerStatisticsQuery as rm, type JobWorkerStatisticsQueryResult as rn, type LicenseResponse as ro, type LikeFilter as rp, type LimitPagination as rq, type ListHistoryBackupsAsClusterAdminData as rr, type ListHistoryBackupsAsClusterAdminError as rs, type ListHistoryBackupsAsClusterAdminErrors as rt, type ListHistoryBackupsAsClusterAdminResponse as ru, type ListHistoryBackupsAsClusterAdminResponses as rv, type ListHistoryBackupsData as rw, type ListHistoryBackupsError as rx, type ListHistoryBackupsErrors as ry, type ListHistoryBackupsResponse as rz, type AdvancedAgentHistoryItemKeyFilter as s, type PauseClusterExportingResponse as s$, MessageKey as s0, type MessageKeyWritable as s1, type MessagePublicationRequest as s2, type MessagePublicationResult as s3, type MessageSubscriptionFilter as s4, MessageSubscriptionKey as s5, type MessageSubscriptionKeyExactMatch as s6, type MessageSubscriptionKeyExactMatchWritable as s7, type MessageSubscriptionKeyFilterProperty as s8, type MessageSubscriptionKeyWritable as s9, type ModifyProcessInstanceError as sA, type ModifyProcessInstanceErrors as sB, type ModifyProcessInstanceResponse as sC, type ModifyProcessInstanceResponses as sD, type ModifyProcessInstanceVariableInstruction as sE, type ModifyProcessInstancesBatchOperationData as sF, type ModifyProcessInstancesBatchOperationError as sG, type ModifyProcessInstancesBatchOperationErrors as sH, type ModifyProcessInstancesBatchOperationResponse as sI, type ModifyProcessInstancesBatchOperationResponses as sJ, type OffsetPagination as sK, type OperationOptions as sL, type OperationReference as sM, type OperationTypeExactMatch as sN, type OperationTypeExactMatchWritable as sO, type OperationTypeFilterProperty as sP, OwnerTypeEnum as sQ, type Partition as sR, type PartitionBackupInfo as sS, type PartitionBackupInfoWritable as sT, type PartitionBackupRange as sU, type PartitionBackupState as sV, type PartitionCheckpointState as sW, type PartitionId as sX, type PauseClusterExportingData as sY, type PauseClusterExportingError as sZ, type PauseClusterExportingErrors as s_, type MessageSubscriptionResult as sa, type MessageSubscriptionSearchQuery as sb, type MessageSubscriptionSearchQueryResult as sc, type MessageSubscriptionSearchQuerySortRequest as sd, MessageSubscriptionStateEnum as se, type MessageSubscriptionStateExactMatch as sf, type MessageSubscriptionStateExactMatchWritable as sg, type MessageSubscriptionStateFilterProperty as sh, MessageSubscriptionTypeEnum as si, type MessageSubscriptionTypeExactMatch as sj, type MessageSubscriptionTypeExactMatchWritable as sk, type MessageSubscriptionTypeFilterProperty as sl, type MessageWaitStateDetails as sm, type MigrateProcessInstanceData as sn, type MigrateProcessInstanceError as so, type MigrateProcessInstanceErrors as sp, type MigrateProcessInstanceMappingInstruction as sq, type MigrateProcessInstanceResponse as sr, type MigrateProcessInstanceResponses as ss, type MigrateProcessInstancesBatchOperationData as st, type MigrateProcessInstancesBatchOperationError as su, type MigrateProcessInstancesBatchOperationErrors as sv, type MigrateProcessInstancesBatchOperationResponse as sw, type MigrateProcessInstancesBatchOperationResponses as sx, type Mode as sy, type ModifyProcessInstanceData as sz, type AdvancedAgentInstanceHistoryCommitStatusFilter as t, ProcessInstanceKey as t$, type PauseClusterExportingResponses as t0, type PauseExportingData as t1, type PauseExportingError as t2, type PauseExportingErrors as t3, type PauseExportingResponse as t4, type PauseExportingResponses as t5, PermissionTypeEnum as t6, type PhysicalTenantBrokerTopology as t7, type PhysicalTenantTopology as t8, type PinClockData as t9, type ProcessDefinitionMessageSubscriptionStatisticsQuery as tA, type ProcessDefinitionMessageSubscriptionStatisticsQueryResult as tB, type ProcessDefinitionMessageSubscriptionStatisticsResult as tC, type ProcessDefinitionResult as tD, type ProcessDefinitionSearchQuery as tE, type ProcessDefinitionSearchQueryResult as tF, type ProcessDefinitionSearchQuerySortRequest as tG, type ProcessDefinitionStatisticsFilter as tH, type ProcessDefinitionVariableNameFilter as tI, type ProcessDefinitionVariableNameSearchQuery as tJ, type ProcessDefinitionVariableNameSearchQueryResult as tK, type ProcessDefinitionVariableNameSearchResult as tL, type ProcessElementStatisticsResult as tM, type ProcessInstanceBusinessIdAssignmentInstruction as tN, type ProcessInstanceCallHierarchyEntry as tO, type ProcessInstanceCancellationBatchOperationRequest as tP, type ProcessInstanceCreationInstruction as tQ, type ProcessInstanceCreationInstructionById as tR, type ProcessInstanceCreationInstructionByKey as tS, type ProcessInstanceCreationRuntimeInstruction as tT, type ProcessInstanceCreationStartInstruction as tU, type ProcessInstanceCreationTerminateInstruction as tV, type ProcessInstanceDeletionBatchOperationRequest as tW, type ProcessInstanceElementStatisticsQueryResult as tX, type ProcessInstanceFilter as tY, type ProcessInstanceFilterFields as tZ, type ProcessInstanceIncidentResolutionBatchOperationRequest as t_, type PinClockError as ta, type PinClockErrors as tb, type PinClockResponse as tc, type PinClockResponses as td, type ProblemDetail as te, type ProcessDefinitionElementStatisticsQuery as tf, type ProcessDefinitionElementStatisticsQueryResult as tg, type ProcessDefinitionFilter as th, ProcessDefinitionId as ti, type ProcessDefinitionIdExactMatch as tj, type ProcessDefinitionIdExactMatchWritable as tk, type ProcessDefinitionIdFilterProperty as tl, type ProcessDefinitionInstanceStatisticsQuery as tm, type ProcessDefinitionInstanceStatisticsQueryResult as tn, type ProcessDefinitionInstanceStatisticsQuerySortRequest as to, type ProcessDefinitionInstanceStatisticsResult as tp, type ProcessDefinitionInstanceVersionStatisticsFilter as tq, type ProcessDefinitionInstanceVersionStatisticsQuery as tr, type ProcessDefinitionInstanceVersionStatisticsQueryResult as ts, type ProcessDefinitionInstanceVersionStatisticsQuerySortRequest as tt, type ProcessDefinitionInstanceVersionStatisticsResult as tu, ProcessDefinitionKey as tv, type ProcessDefinitionKeyExactMatch as tw, type ProcessDefinitionKeyExactMatchWritable as tx, type ProcessDefinitionKeyFilterProperty as ty, type ProcessDefinitionKeyWritable as tz, type AdvancedAgentInstanceHistoryRoleFilter as u, type ResourceKeyExactMatch as u$, type ProcessInstanceKeyExactMatch as u0, type ProcessInstanceKeyExactMatchWritable as u1, type ProcessInstanceKeyFilterProperty as u2, type ProcessInstanceKeyWritable as u3, type ProcessInstanceMigrationBatchOperationPlan as u4, type ProcessInstanceMigrationBatchOperationRequest as u5, type ProcessInstanceMigrationInstruction as u6, type ProcessInstanceModificationActivateInstruction as u7, type ProcessInstanceModificationBatchOperationRequest as u8, type ProcessInstanceModificationInstruction as u9, type ResetClockError as uA, type ResetClockErrors as uB, type ResetClockResponse as uC, type ResetClockResponses as uD, type ResolveIncidentData as uE, type ResolveIncidentError as uF, type ResolveIncidentErrors as uG, type ResolveIncidentResponse as uH, type ResolveIncidentResponses as uI, type ResolveIncidentsBatchOperationData as uJ, type ResolveIncidentsBatchOperationError as uK, type ResolveIncidentsBatchOperationErrors as uL, type ResolveIncidentsBatchOperationResponse as uM, type ResolveIncidentsBatchOperationResponses as uN, type ResolveProcessInstanceIncidentsData as uO, type ResolveProcessInstanceIncidentsError as uP, type ResolveProcessInstanceIncidentsErrors as uQ, type ResolveProcessInstanceIncidentsResponse as uR, type ResolveProcessInstanceIncidentsResponses as uS, type ResolveSecretsData as uT, type ResolveSecretsError as uU, type ResolveSecretsErrors as uV, type ResolveSecretsResponse as uW, type ResolveSecretsResponses as uX, type ResolvedSecret as uY, type ResourceFilter as uZ, type ResourceKey as u_, type ProcessInstanceModificationMoveBatchOperationInstruction as ua, type ProcessInstanceModificationMoveInstruction as ub, type ProcessInstanceModificationTerminateByIdInstruction as uc, type ProcessInstanceModificationTerminateByKeyInstruction as ud, type ProcessInstanceModificationTerminateInstruction as ue, type ProcessInstanceReference as uf, type ProcessInstanceResult as ug, type ProcessInstanceResumptionBatchOperationRequest as uh, type ProcessInstanceSearchQuery as ui, type ProcessInstanceSearchQueryResult as uj, type ProcessInstanceSearchQuerySortRequest as uk, type ProcessInstanceSequenceFlowResult as ul, type ProcessInstanceSequenceFlowsQueryResult as um, ProcessInstanceStateEnum as un, type ProcessInstanceStateExactMatch as uo, type ProcessInstanceStateExactMatchWritable as up, type ProcessInstanceStateFilterProperty as uq, type ProcessInstanceSuspensionBatchOperationRequest as ur, type ProcessInstanceWaitStateStatisticsQueryResult as us, type ProcessInstanceWaitStateStatisticsResult as ut, type PublishMessageData as uu, type PublishMessageError as uv, type PublishMessageErrors as uw, type PublishMessageResponse as ux, type PublishMessageResponses as uy, type ResetClockData as uz, type AdvancedAgentInstanceKeyFilter as v, type RoleSearchQueryResult as v$, type ResourceKeyExactMatchWritable as v0, type ResourceKeyFilterProperty as v1, type ResourceKeyWritable as v2, type ResourceResult as v3, type ResourceSearchQuery as v4, type ResourceSearchQueryResult as v5, type ResourceSearchQuerySortRequest as v6, ResourceTypeEnum as v7, type RestoreAsClusterAdminData as v8, type RestoreAsClusterAdminError as v9, type ResumeExportingResponses as vA, type ResumeProcessInstanceData as vB, type ResumeProcessInstanceError as vC, type ResumeProcessInstanceErrors as vD, type ResumeProcessInstanceRequest as vE, type ResumeProcessInstanceResponse as vF, type ResumeProcessInstanceResponses as vG, type ResumeProcessInstancesBatchOperationData as vH, type ResumeProcessInstancesBatchOperationError as vI, type ResumeProcessInstancesBatchOperationErrors as vJ, type ResumeProcessInstancesBatchOperationResponse as vK, type ResumeProcessInstancesBatchOperationResponses as vL, type RoleClientResult as vM, type RoleClientSearchQueryRequest as vN, type RoleClientSearchQuerySortRequest as vO, type RoleClientSearchResult as vP, type RoleCreateRequest as vQ, type RoleCreateResult as vR, type RoleFilter as vS, type RoleGroupResult as vT, type RoleGroupSearchQueryRequest as vU, type RoleGroupSearchQuerySortRequest as vV, type RoleGroupSearchResult as vW, RoleId as vX, type RoleMappingRuleSearchResult as vY, type RoleResult as vZ, type RoleSearchQueryRequest as v_, type RestoreAsClusterAdminErrors as va, type RestoreAsClusterAdminResponse as vb, type RestoreAsClusterAdminResponses as vc, type RestoreBrokerStatus as vd, type RestoreData as ve, type RestoreError as vf, type RestoreErrors as vg, type RestorePartitionStatus as vh, type RestoreRequest as vi, type RestoreResponse as vj, type RestoreResponses as vk, type RestoreStatusResponse as vl, type ResumeBatchOperationData as vm, type ResumeBatchOperationError as vn, type ResumeBatchOperationErrors as vo, type ResumeBatchOperationResponse as vp, type ResumeBatchOperationResponses as vq, type ResumeClusterExportingData as vr, type ResumeClusterExportingError as vs, type ResumeClusterExportingErrors as vt, type ResumeClusterExportingResponse as vu, type ResumeClusterExportingResponses as vv, type ResumeExportingData as vw, type ResumeExportingError as vx, type ResumeExportingErrors as vy, type ResumeExportingResponse as vz, type AdvancedAgentInstanceStatusFilter as w, type SearchClusterVariablesErrors as w$, type RoleSearchQuerySortRequest as w0, type RoleUpdateRequest as w1, type RoleUpdateResult as w2, type RoleUserResult as w3, type RoleUserSearchQueryRequest as w4, type RoleUserSearchQuerySortRequest as w5, type RoleUserSearchResult as w6, type RuntimeBackupState as w7, type ScopeKey as w8, type ScopeKeyExactMatch as w9, type SearchAuthorizationsResponse as wA, type SearchAuthorizationsResponses as wB, type SearchBatchOperationItemsData as wC, type SearchBatchOperationItemsError as wD, type SearchBatchOperationItemsErrors as wE, type SearchBatchOperationItemsResponse as wF, type SearchBatchOperationItemsResponses as wG, type SearchBatchOperationsData as wH, type SearchBatchOperationsError as wI, type SearchBatchOperationsErrors as wJ, type SearchBatchOperationsResponse as wK, type SearchBatchOperationsResponses as wL, type SearchClientsForGroupData as wM, type SearchClientsForGroupError as wN, type SearchClientsForGroupErrors as wO, type SearchClientsForGroupResponse as wP, type SearchClientsForGroupResponses as wQ, type SearchClientsForRoleData as wR, type SearchClientsForRoleError as wS, type SearchClientsForRoleErrors as wT, type SearchClientsForRoleResponse as wU, type SearchClientsForRoleResponses as wV, type SearchClientsForTenantData as wW, type SearchClientsForTenantResponse as wX, type SearchClientsForTenantResponses as wY, type SearchClusterVariablesData as wZ, type SearchClusterVariablesError as w_, type ScopeKeyExactMatchWritable as wa, type ScopeKeyFilterProperty as wb, type ScopeKeyWritable as wc, type SearchAgentDefinitionsData as wd, type SearchAgentDefinitionsError as we, type SearchAgentDefinitionsErrors as wf, type SearchAgentDefinitionsResponse as wg, type SearchAgentDefinitionsResponses as wh, type SearchAgentInstanceHistoryData as wi, type SearchAgentInstanceHistoryError as wj, type SearchAgentInstanceHistoryErrors as wk, type SearchAgentInstanceHistoryResponse as wl, type SearchAgentInstanceHistoryResponses as wm, type SearchAgentInstancesData as wn, type SearchAgentInstancesError as wo, type SearchAgentInstancesErrors as wp, type SearchAgentInstancesResponse as wq, type SearchAgentInstancesResponses as wr, type SearchAuditLogsData as ws, type SearchAuditLogsError as wt, type SearchAuditLogsErrors as wu, type SearchAuditLogsResponse as wv, type SearchAuditLogsResponses as ww, type SearchAuthorizationsData as wx, type SearchAuthorizationsError as wy, type SearchAuthorizationsErrors as wz, type AdvancedAuditLogEntityKeyFilter as x, type SearchJobsResponse as x$, type SearchClusterVariablesResponse as x0, type SearchClusterVariablesResponses as x1, type SearchCorrelatedMessageSubscriptionsData as x2, type SearchCorrelatedMessageSubscriptionsError as x3, type SearchCorrelatedMessageSubscriptionsErrors as x4, type SearchCorrelatedMessageSubscriptionsResponse as x5, type SearchCorrelatedMessageSubscriptionsResponses as x6, type SearchDecisionDefinitionsData as x7, type SearchDecisionDefinitionsError as x8, type SearchDecisionDefinitionsErrors as x9, type SearchElementInstancesResponses as xA, type SearchGlobalTaskListenersData as xB, type SearchGlobalTaskListenersError as xC, type SearchGlobalTaskListenersErrors as xD, type SearchGlobalTaskListenersResponse as xE, type SearchGlobalTaskListenersResponses as xF, type SearchGroupIdsForTenantData as xG, type SearchGroupIdsForTenantResponse as xH, type SearchGroupIdsForTenantResponses as xI, type SearchGroupsData as xJ, type SearchGroupsError as xK, type SearchGroupsErrors as xL, type SearchGroupsForRoleData as xM, type SearchGroupsForRoleError as xN, type SearchGroupsForRoleErrors as xO, type SearchGroupsForRoleResponse as xP, type SearchGroupsForRoleResponses as xQ, type SearchGroupsResponse as xR, type SearchGroupsResponses as xS, type SearchIncidentsData as xT, type SearchIncidentsError as xU, type SearchIncidentsErrors as xV, type SearchIncidentsResponse as xW, type SearchIncidentsResponses as xX, type SearchJobsData as xY, type SearchJobsError as xZ, type SearchJobsErrors as x_, type SearchDecisionDefinitionsResponse as xa, type SearchDecisionDefinitionsResponses as xb, type SearchDecisionInstancesData as xc, type SearchDecisionInstancesError as xd, type SearchDecisionInstancesErrors as xe, type SearchDecisionInstancesResponse as xf, type SearchDecisionInstancesResponses as xg, type SearchDecisionRequirementsData as xh, type SearchDecisionRequirementsError as xi, type SearchDecisionRequirementsErrors as xj, type SearchDecisionRequirementsResponse as xk, type SearchDecisionRequirementsResponses as xl, type SearchElementInstanceIncidentsData as xm, type SearchElementInstanceIncidentsError as xn, type SearchElementInstanceIncidentsErrors as xo, type SearchElementInstanceIncidentsResponse as xp, type SearchElementInstanceIncidentsResponses as xq, type SearchElementInstanceWaitStatesData as xr, type SearchElementInstanceWaitStatesError as xs, type SearchElementInstanceWaitStatesErrors as xt, type SearchElementInstanceWaitStatesResponse as xu, type SearchElementInstanceWaitStatesResponses as xv, type SearchElementInstancesData as xw, type SearchElementInstancesError as xx, type SearchElementInstancesErrors as xy, type SearchElementInstancesResponse as xz, type AdvancedAuditLogKeyFilter as y, type SearchRolesForGroupErrors as y$, type SearchJobsResponses as y0, type SearchMappingRuleData as y1, type SearchMappingRuleError as y2, type SearchMappingRuleErrors as y3, type SearchMappingRuleResponse as y4, type SearchMappingRuleResponses as y5, type SearchMappingRulesForGroupData as y6, type SearchMappingRulesForGroupError as y7, type SearchMappingRulesForGroupErrors as y8, type SearchMappingRulesForGroupResponse as y9, type SearchProcessDefinitionsErrors as yA, type SearchProcessDefinitionsResponse as yB, type SearchProcessDefinitionsResponses as yC, type SearchProcessInstanceIncidentsData as yD, type SearchProcessInstanceIncidentsError as yE, type SearchProcessInstanceIncidentsErrors as yF, type SearchProcessInstanceIncidentsResponse as yG, type SearchProcessInstanceIncidentsResponses as yH, type SearchProcessInstancesData as yI, type SearchProcessInstancesError as yJ, type SearchProcessInstancesErrors as yK, type SearchProcessInstancesResponse as yL, type SearchProcessInstancesResponses as yM, type SearchQueryPageRequest as yN, type SearchQueryPageResponse as yO, type SearchQueryRequest as yP, type SearchQueryResponse as yQ, type SearchResourcesData as yR, type SearchResourcesError as yS, type SearchResourcesErrors as yT, type SearchResourcesResponse as yU, type SearchResourcesResponses as yV, type SearchRolesData as yW, type SearchRolesError as yX, type SearchRolesErrors as yY, type SearchRolesForGroupData as yZ, type SearchRolesForGroupError as y_, type SearchMappingRulesForGroupResponses as ya, type SearchMappingRulesForRoleData as yb, type SearchMappingRulesForRoleError as yc, type SearchMappingRulesForRoleErrors as yd, type SearchMappingRulesForRoleResponse as ye, type SearchMappingRulesForRoleResponses as yf, type SearchMappingRulesForTenantData as yg, type SearchMappingRulesForTenantResponse as yh, type SearchMappingRulesForTenantResponses as yi, type SearchMessageSubscriptionsData as yj, type SearchMessageSubscriptionsError as yk, type SearchMessageSubscriptionsErrors as yl, type SearchMessageSubscriptionsResponse as ym, type SearchMessageSubscriptionsResponses as yn, type SearchOwnAuthorizationsData as yo, type SearchOwnAuthorizationsError as yp, type SearchOwnAuthorizationsErrors as yq, type SearchOwnAuthorizationsResponse as yr, type SearchOwnAuthorizationsResponses as ys, type SearchProcessDefinitionVariableNamesData as yt, type SearchProcessDefinitionVariableNamesError as yu, type SearchProcessDefinitionVariableNamesErrors as yv, type SearchProcessDefinitionVariableNamesResponse as yw, type SearchProcessDefinitionVariableNamesResponses as yx, type SearchProcessDefinitionsData as yy, type SearchProcessDefinitionsError as yz, type AdvancedBatchOperationItemStateFilter as z, type SignalBroadcastResult as z$, type SearchRolesForGroupResponse as z0, type SearchRolesForGroupResponses as z1, type SearchRolesForTenantData as z2, type SearchRolesForTenantResponse as z3, type SearchRolesForTenantResponses as z4, type SearchRolesResponse as z5, type SearchRolesResponses as z6, type SearchTenantsData as z7, type SearchTenantsError as z8, type SearchTenantsErrors as z9, type SearchUsersForGroupError as zA, type SearchUsersForGroupErrors as zB, type SearchUsersForGroupResponse as zC, type SearchUsersForGroupResponses as zD, type SearchUsersForRoleData as zE, type SearchUsersForRoleError as zF, type SearchUsersForRoleErrors as zG, type SearchUsersForRoleResponse as zH, type SearchUsersForRoleResponses as zI, type SearchUsersForTenantData as zJ, type SearchUsersForTenantResponse as zK, type SearchUsersForTenantResponses as zL, type SearchUsersResponse as zM, type SearchUsersResponses as zN, type SearchVariablesData as zO, type SearchVariablesError as zP, type SearchVariablesErrors as zQ, type SearchVariablesResponse as zR, type SearchVariablesResponses as zS, type SecretErrorCode as zT, type SecretListRequest as zU, type SecretListResult as zV, type SecretResolutionError as zW, type SecretResolveRequest as zX, type SecretResolveResult as zY, type SetVariableRequest as zZ, type SignalBroadcastRequest as z_, type SearchTenantsResponse as za, type SearchTenantsResponses as zb, type SearchUserTaskAuditLogsData as zc, type SearchUserTaskAuditLogsError as zd, type SearchUserTaskAuditLogsErrors as ze, type SearchUserTaskAuditLogsResponse as zf, type SearchUserTaskAuditLogsResponses as zg, type SearchUserTaskEffectiveVariablesData as zh, type SearchUserTaskEffectiveVariablesError as zi, type SearchUserTaskEffectiveVariablesErrors as zj, type SearchUserTaskEffectiveVariablesResponse as zk, type SearchUserTaskEffectiveVariablesResponses as zl, type SearchUserTaskVariablesData as zm, type SearchUserTaskVariablesError as zn, type SearchUserTaskVariablesErrors as zo, type SearchUserTaskVariablesResponse as zp, type SearchUserTaskVariablesResponses as zq, type SearchUserTasksData as zr, type SearchUserTasksError as zs, type SearchUserTasksErrors as zt, type SearchUserTasksResponse as zu, type SearchUserTasksResponses as zv, type SearchUsersData as zw, type SearchUsersError as zx, type SearchUsersErrors as zy, type SearchUsersForGroupData as zz };