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