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