@camunda8/orchestration-cluster-api 10.0.0-alpha.40 → 10.0.0-alpha.41
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 +7 -0
- package/dist/{CamundaClient-BsoVLG5C.d.ts → CamundaClient-BlKXG8gE.d.ts} +29 -2
- package/dist/{CamundaClient-DsXh8p3U.d.cts → CamundaClient-HroU9acH.d.cts} +29 -2
- package/dist/{chunk-3HNGJ4FZ.js → chunk-267HUCFY.js} +9 -5
- package/dist/chunk-267HUCFY.js.map +1 -0
- package/dist/effect/index.cjs +8 -4
- package/dist/effect/index.cjs.map +1 -1
- package/dist/effect/index.d.cts +1 -1
- package/dist/effect/index.d.ts +1 -1
- package/dist/effect/index.js +1 -1
- package/dist/index.cjs +8 -4
- 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 +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/dist/chunk-3HNGJ4FZ.js.map +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
# [10.0.0-alpha.41](https://github.com/camunda/orchestration-cluster-api-js/compare/v10.0.0-alpha.40...v10.0.0-alpha.41) (2026-08-27)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Features
|
|
5
|
+
|
|
6
|
+
* **clock:** expose the injected clock to job handlers as job.clock ([#476](https://github.com/camunda/orchestration-cluster-api-js/issues/476)) ([b59a829](https://github.com/camunda/orchestration-cluster-api-js/commit/b59a82927a6bf630f350ea5bc97680f55c349fe9))
|
|
7
|
+
|
|
1
8
|
# [10.0.0-alpha.40](https://github.com/camunda/orchestration-cluster-api-js/compare/v10.0.0-alpha.39...v10.0.0-alpha.40) (2026-08-27)
|
|
2
9
|
|
|
3
10
|
|
|
@@ -21,6 +21,11 @@ interface Clock {
|
|
|
21
21
|
*
|
|
22
22
|
* Rejects with the signal's reason if `signal` aborts first, so a caller can cancel a
|
|
23
23
|
* wait without leaving the timer behind.
|
|
24
|
+
*
|
|
25
|
+
* An injected implementation must not resolve synchronously. The worker schedules its
|
|
26
|
+
* next poll by awaiting this, so a sleep that settles in a microtask turns the poll loop
|
|
27
|
+
* into an unbounded spin that starves the event loop and exhausts the heap. A test clock
|
|
28
|
+
* should resolve only when the test advances it.
|
|
24
29
|
*/
|
|
25
30
|
sleep(ms: number, signal?: AbortSignal): Promise<void>;
|
|
26
31
|
/**
|
|
@@ -34,6 +39,18 @@ interface Clock {
|
|
|
34
39
|
dispose: () => void;
|
|
35
40
|
};
|
|
36
41
|
}
|
|
42
|
+
/**
|
|
43
|
+
* The slice of the clock handed to job handlers.
|
|
44
|
+
*
|
|
45
|
+
* Deliberately narrower than `Clock`: `deadline` is a liveness primitive, and a handler that
|
|
46
|
+
* built one against a pinned clock would hang rather than time out. Handlers get to read time
|
|
47
|
+
* and to wait, nothing else.
|
|
48
|
+
*
|
|
49
|
+
* `sleep` is for short in-handler coordination — backing off around a flaky dependency,
|
|
50
|
+
* spacing retries within one job. Long or business-meaningful waits belong in the process as
|
|
51
|
+
* BPMN timers, where they survive a crash and are visible to operations.
|
|
52
|
+
*/
|
|
53
|
+
type HandlerClock = Pick<Clock, 'now' | 'sleep'>;
|
|
37
54
|
/**
|
|
38
55
|
* The live clock: the platform clock, made non-decreasing and self-correcting.
|
|
39
56
|
*
|
|
@@ -22246,6 +22263,11 @@ interface EnrichedActivatedJob extends ActivatedJobResult {
|
|
|
22246
22263
|
retries: number;
|
|
22247
22264
|
}) => Promise<void>;
|
|
22248
22265
|
log: ReturnType<CamundaClient['logger']>;
|
|
22266
|
+
/**
|
|
22267
|
+
* The clock this worker's client resolves time through. Reading and waiting through it
|
|
22268
|
+
* means a test that pins the client's clock also drives the handler.
|
|
22269
|
+
*/
|
|
22270
|
+
clock: HandlerClock;
|
|
22249
22271
|
/** Set true once any acknowledgement method is invoked. */
|
|
22250
22272
|
acknowledged?: boolean;
|
|
22251
22273
|
}
|
|
@@ -22782,7 +22804,12 @@ declare class ThreadPool {
|
|
|
22782
22804
|
* The job object received by a threaded handler.
|
|
22783
22805
|
* Same shape as EnrichedActivatedJob but without the logger (not available across threads).
|
|
22784
22806
|
*/
|
|
22785
|
-
|
|
22807
|
+
/**
|
|
22808
|
+
* `clock` is omitted alongside `log` for the same reason: both are live in-process objects,
|
|
22809
|
+
* and a pinned clock cannot cross the worker-thread boundary. Threaded handlers use ambient
|
|
22810
|
+
* time — see camunda/orchestration-cluster-api-js#450.
|
|
22811
|
+
*/
|
|
22812
|
+
type ThreadedJob = Omit<EnrichedActivatedJob, 'log' | 'clock'>;
|
|
22786
22813
|
/**
|
|
22787
22814
|
* Handler function signature for threaded job workers.
|
|
22788
22815
|
*
|
|
@@ -34650,4 +34677,4 @@ declare const CamundaClient: {
|
|
|
34650
34677
|
new (options?: CamundaOptions): CamundaClient;
|
|
34651
34678
|
} & typeof CamundaClientBase;
|
|
34652
34679
|
|
|
34653
|
-
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 };
|
|
34680
|
+
export { type AdvancedIncidentErrorTypeFilter as $, type ActivatedJobResult$1 as A, type SourceElementIdInstruction as A$, type SearchRolesResponse as A0, type SearchRolesResponses as A1, type SearchTenantsData as A2, type SearchTenantsError as A3, type SearchTenantsErrors as A4, type SearchTenantsResponse as A5, type SearchTenantsResponses as A6, type SearchUserTaskAuditLogsData as A7, type SearchUserTaskAuditLogsError as A8, type SearchUserTaskAuditLogsErrors as A9, type SearchUsersForRoleError as AA, type SearchUsersForRoleErrors as AB, type SearchUsersForRoleResponse as AC, type SearchUsersForRoleResponses as AD, type SearchUsersForTenantData as AE, type SearchUsersForTenantResponse as AF, type SearchUsersForTenantResponses as AG, type SearchUsersResponse as AH, type SearchUsersResponses as AI, type SearchVariablesData as AJ, type SearchVariablesError as AK, type SearchVariablesErrors as AL, type SearchVariablesResponse as AM, type SearchVariablesResponses as AN, type SecretErrorCode as AO, type SecretListRequest as AP, type SecretListResult as AQ, type SecretResolutionError as AR, type SecretResolveRequest as AS, type SecretResolveResult as AT, type SetVariableRequest as AU, type SignalBroadcastRequest as AV, type SignalBroadcastResult as AW, SignalKey as AX, type SignalKeyWritable as AY, type SignalWaitStateDetails as AZ, SortOrderEnum as A_, type SearchUserTaskAuditLogsResponse as Aa, type SearchUserTaskAuditLogsResponses as Ab, type SearchUserTaskEffectiveVariablesData as Ac, type SearchUserTaskEffectiveVariablesError as Ad, type SearchUserTaskEffectiveVariablesErrors as Ae, type SearchUserTaskEffectiveVariablesResponse as Af, type SearchUserTaskEffectiveVariablesResponses as Ag, type SearchUserTaskVariablesData as Ah, type SearchUserTaskVariablesError as Ai, type SearchUserTaskVariablesErrors as Aj, type SearchUserTaskVariablesResponse as Ak, type SearchUserTaskVariablesResponses as Al, type SearchUserTasksData as Am, type SearchUserTasksError as An, type SearchUserTasksErrors as Ao, type SearchUserTasksResponse as Ap, type SearchUserTasksResponses as Aq, type SearchUsersData as Ar, type SearchUsersError as As, type SearchUsersErrors as At, type SearchUsersForGroupData as Au, type SearchUsersForGroupError as Av, type SearchUsersForGroupErrors as Aw, type SearchUsersForGroupResponse as Ax, type SearchUsersForGroupResponses as Ay, type SearchUsersForRoleData as Az, type AdvancedAuditLogEntityKeyFilter as B, type TenantClientSearchQueryRequest as B$, type SourceElementInstanceKeyInstruction as B0, type SourceElementInstruction as B1, StartCursor as B2, type StateCode as B3, type StatusMetric as B4, type StringFilterProperty as B5, type SupportLogger as B6, type SuspendBatchOperationData as B7, type SuspendBatchOperationError as B8, type SuspendBatchOperationErrors as B9, type TagSetWritable as BA, type TakeHistoryBackupAsClusterAdminData as BB, type TakeHistoryBackupAsClusterAdminError as BC, type TakeHistoryBackupAsClusterAdminErrors as BD, type TakeHistoryBackupAsClusterAdminResponse as BE, type TakeHistoryBackupAsClusterAdminResponses as BF, type TakeHistoryBackupData as BG, type TakeHistoryBackupError as BH, type TakeHistoryBackupErrors as BI, type TakeHistoryBackupRequest as BJ, type TakeHistoryBackupResponse as BK, type TakeHistoryBackupResponse2 as BL, type TakeHistoryBackupResponses as BM, type TakeRuntimeBackupAsClusterAdminData as BN, type TakeRuntimeBackupAsClusterAdminError as BO, type TakeRuntimeBackupAsClusterAdminErrors as BP, type TakeRuntimeBackupAsClusterAdminResponse as BQ, type TakeRuntimeBackupAsClusterAdminResponses as BR, type TakeRuntimeBackupData as BS, type TakeRuntimeBackupError as BT, type TakeRuntimeBackupErrors as BU, type TakeRuntimeBackupRequest as BV, type TakeRuntimeBackupResponse as BW, type TakeRuntimeBackupResponse2 as BX, type TakeRuntimeBackupResponses as BY, type TelemetryHooks as BZ, type TenantClientResult as B_, type SuspendBatchOperationResponse as Ba, type SuspendBatchOperationResponses as Bb, type SuspendProcessInstanceData as Bc, type SuspendProcessInstanceError as Bd, type SuspendProcessInstanceErrors as Be, type SuspendProcessInstanceRequest as Bf, type SuspendProcessInstanceResponse as Bg, type SuspendProcessInstanceResponses as Bh, type SuspendProcessInstancesBatchOperationData as Bi, type SuspendProcessInstancesBatchOperationError as Bj, type SuspendProcessInstancesBatchOperationErrors as Bk, type SuspendProcessInstancesBatchOperationResponse as Bl, type SuspendProcessInstancesBatchOperationResponses as Bm, type SyncRuntimeBackupStateAsClusterAdminData as Bn, type SyncRuntimeBackupStateAsClusterAdminError as Bo, type SyncRuntimeBackupStateAsClusterAdminErrors as Bp, type SyncRuntimeBackupStateAsClusterAdminResponse as Bq, type SyncRuntimeBackupStateAsClusterAdminResponses as Br, type SyncRuntimeBackupStateData as Bs, type SyncRuntimeBackupStateError as Bt, type SyncRuntimeBackupStateErrors as Bu, type SyncRuntimeBackupStateResponse as Bv, type SyncRuntimeBackupStateResponses as Bw, type SystemConfigurationResponse as Bx, Tag as By, type TagSet as Bz, type ConsistencyOptions as C, type UnassignMappingRuleFromTenantData as C$, type TenantClientSearchQuerySortRequest as C0, type TenantClientSearchResult as C1, type TenantCreateRequest as C2, type TenantCreateResult as C3, type TenantFilter as C4, TenantFilterEnum as C5, type TenantGroupResult as C6, type TenantGroupSearchQueryRequest as C7, type TenantGroupSearchQuerySortRequest as C8, type TenantGroupSearchResult as C9, type TriggerClusterRebalanceError as CA, type TriggerClusterRebalanceErrors as CB, type TriggerClusterRebalanceResponse as CC, type TriggerClusterRebalanceResponses as CD, type TypedVariableItem as CE, type TypedVariablePage as CF, TypedVariablesError as CG, type UnassignClientFromGroupData as CH, type UnassignClientFromGroupError as CI, type UnassignClientFromGroupErrors as CJ, type UnassignClientFromGroupResponse as CK, type UnassignClientFromGroupResponses as CL, type UnassignClientFromTenantData as CM, type UnassignClientFromTenantError as CN, type UnassignClientFromTenantErrors as CO, type UnassignClientFromTenantResponse as CP, type UnassignClientFromTenantResponses as CQ, type UnassignGroupFromTenantData as CR, type UnassignGroupFromTenantError as CS, type UnassignGroupFromTenantErrors as CT, type UnassignGroupFromTenantResponse as CU, type UnassignGroupFromTenantResponses as CV, type UnassignMappingRuleFromGroupData as CW, type UnassignMappingRuleFromGroupError as CX, type UnassignMappingRuleFromGroupErrors as CY, type UnassignMappingRuleFromGroupResponse as CZ, type UnassignMappingRuleFromGroupResponses as C_, TenantId as Ca, type TenantMappingRuleSearchResult as Cb, type TenantResult as Cc, type TenantRoleSearchResult as Cd, type TenantSearchQueryRequest as Ce, type TenantSearchQueryResult as Cf, type TenantSearchQuerySortRequest as Cg, type TenantUpdateRequest as Ch, type TenantUpdateResult as Ci, type TenantUserResult as Cj, type TenantUserSearchQueryRequest as Ck, type TenantUserSearchQuerySortRequest as Cl, type TenantUserSearchResult as Cm, ThreadPool as Cn, type ThreadedJob as Co, type ThreadedJobHandler as Cp, ThreadedJobWorker as Cq, type ThreadedJobWorkerConfig as Cr, type ThrowJobErrorData as Cs, type ThrowJobErrorError as Ct, type ThrowJobErrorErrors as Cu, type ThrowJobErrorResponse as Cv, type ThrowJobErrorResponses as Cw, type TimerWaitStateDetails as Cx, type TopologyResponse as Cy, type TriggerClusterRebalanceData as Cz, type AdvancedAuditLogKeyFilter as D, type UpdateGlobalTaskListenerRequest as D$, type UnassignMappingRuleFromTenantError as D0, type UnassignMappingRuleFromTenantErrors as D1, type UnassignMappingRuleFromTenantResponse as D2, type UnassignMappingRuleFromTenantResponses as D3, type UnassignRoleFromClientData as D4, type UnassignRoleFromClientError as D5, type UnassignRoleFromClientErrors as D6, type UnassignRoleFromClientResponse as D7, type UnassignRoleFromClientResponses as D8, type UnassignRoleFromGroupData as D9, type UnassignUserFromTenantErrors as DA, type UnassignUserFromTenantResponse as DB, type UnassignUserFromTenantResponses as DC, type UnassignUserTaskData as DD, type UnassignUserTaskError as DE, type UnassignUserTaskErrors as DF, type UnassignUserTaskResponse as DG, type UnassignUserTaskResponses as DH, type UpdateAgentInstanceData as DI, type UpdateAgentInstanceError as DJ, type UpdateAgentInstanceErrors as DK, type UpdateAgentInstanceResponse as DL, type UpdateAgentInstanceResponses as DM, type UpdateAuthorizationData as DN, type UpdateAuthorizationError as DO, type UpdateAuthorizationErrors as DP, type UpdateAuthorizationResponse as DQ, type UpdateAuthorizationResponses as DR, type UpdateClusterVariableRequest as DS, type UpdateGlobalClusterVariableData as DT, type UpdateGlobalClusterVariableError as DU, type UpdateGlobalClusterVariableErrors as DV, type UpdateGlobalClusterVariableResponse as DW, type UpdateGlobalClusterVariableResponses as DX, type UpdateGlobalTaskListenerData as DY, type UpdateGlobalTaskListenerError as DZ, type UpdateGlobalTaskListenerErrors as D_, type UnassignRoleFromGroupError as Da, type UnassignRoleFromGroupErrors as Db, type UnassignRoleFromGroupResponse as Dc, type UnassignRoleFromGroupResponses as Dd, type UnassignRoleFromMappingRuleData as De, type UnassignRoleFromMappingRuleError as Df, type UnassignRoleFromMappingRuleErrors as Dg, type UnassignRoleFromMappingRuleResponse as Dh, type UnassignRoleFromMappingRuleResponses as Di, type UnassignRoleFromTenantData as Dj, type UnassignRoleFromTenantError as Dk, type UnassignRoleFromTenantErrors as Dl, type UnassignRoleFromTenantResponse as Dm, type UnassignRoleFromTenantResponses as Dn, type UnassignRoleFromUserData as Do, type UnassignRoleFromUserError as Dp, type UnassignRoleFromUserErrors as Dq, type UnassignRoleFromUserResponse as Dr, type UnassignRoleFromUserResponses as Ds, type UnassignUserFromGroupData as Dt, type UnassignUserFromGroupError as Du, type UnassignUserFromGroupErrors as Dv, type UnassignUserFromGroupResponse as Dw, type UnassignUserFromGroupResponses as Dx, type UnassignUserFromTenantData as Dy, type UnassignUserFromTenantError as Dz, type AdvancedBatchOperationItemStateFilter as E, type UserTaskFilterFields as E$, type UpdateGlobalTaskListenerResponse as E0, type UpdateGlobalTaskListenerResponses as E1, type UpdateGroupData as E2, type UpdateGroupError as E3, type UpdateGroupErrors as E4, type UpdateGroupResponse as E5, type UpdateGroupResponses as E6, type UpdateJobData as E7, type UpdateJobError as E8, type UpdateJobErrors as E9, type UpdateTenantResponses as EA, type UpdateUserData as EB, type UpdateUserError as EC, type UpdateUserErrors as ED, type UpdateUserResponse as EE, type UpdateUserResponses as EF, type UpdateUserTaskData as EG, type UpdateUserTaskError as EH, type UpdateUserTaskErrors as EI, type UpdateUserTaskResponse as EJ, type UpdateUserTaskResponses as EK, type UsageMetricsResponse as EL, type UsageMetricsResponseItem as EM, type UseSourceParentKeyInstruction as EN, type UserCreateResult as EO, type UserFilter as EP, type UserRequest as EQ, type UserResult as ER, type UserSearchQueryRequest as ES, type UserSearchQuerySortRequest as ET, type UserSearchResult as EU, type UserTaskAssignmentRequest as EV, type UserTaskAuditLogFilter as EW, type UserTaskAuditLogSearchQueryRequest as EX, type UserTaskCompletionRequest as EY, type UserTaskEffectiveVariableSearchQueryRequest as EZ, type UserTaskFilter as E_, type UpdateJobResponse as Ea, type UpdateJobResponses as Eb, type UpdateJobsBatchOperationData as Ec, type UpdateJobsBatchOperationError as Ed, type UpdateJobsBatchOperationErrors as Ee, type UpdateJobsBatchOperationResponse as Ef, type UpdateJobsBatchOperationResponses as Eg, type UpdateMappingRuleData as Eh, type UpdateMappingRuleError as Ei, type UpdateMappingRuleErrors as Ej, type UpdateMappingRuleResponse as Ek, type UpdateMappingRuleResponses as El, type UpdateRoleData as Em, type UpdateRoleError as En, type UpdateRoleErrors as Eo, type UpdateRoleResponse as Ep, type UpdateRoleResponses as Eq, type UpdateTenantClusterVariableData as Er, type UpdateTenantClusterVariableError as Es, type UpdateTenantClusterVariableErrors as Et, type UpdateTenantClusterVariableResponse as Eu, type UpdateTenantClusterVariableResponses as Ev, type UpdateTenantData as Ew, type UpdateTenantError as Ex, type UpdateTenantErrors as Ey, type UpdateTenantResponse as Ez, type AdvancedBatchOperationStateFilter as F, type assignUserToTenantInput as F$, UserTaskKey as F0, type UserTaskKeyWritable as F1, type UserTaskProperties as F2, type UserTaskResult as F3, type UserTaskSearchQuery as F4, type UserTaskSearchQueryResult as F5, type UserTaskSearchQuerySortRequest as F6, UserTaskStateEnum as F7, type UserTaskStateExactMatch as F8, type UserTaskStateExactMatchWritable as F9, type VariableValueFilterProperty as FA, type WaitStateDetails as FB, WaitStateElementTypeEnum as FC, type WaitStateElementTypeExactMatch as FD, type WaitStateElementTypeExactMatchWritable as FE, type WaitStateElementTypeFilterProperty as FF, WaitStateTypeEnum as FG, type WaitStateTypeExactMatch as FH, type WaitStateTypeExactMatchWritable as FI, type WaitStateTypeFilterProperty as FJ, type WebappComponent as FK, type activateAdHocSubProcessActivitiesInput as FL, type activateJobsInput as FM, assertConstraint as FN, type assignClientToGroupInput as FO, type assignClientToTenantInput as FP, type assignGroupToTenantInput as FQ, type assignMappingRuleToGroupInput as FR, type assignMappingRuleToTenantInput as FS, type assignProcessInstanceBusinessIdInput as FT, type assignRoleToClientInput as FU, type assignRoleToGroupInput as FV, type assignRoleToMappingRuleInput as FW, type assignRoleToTenantInput as FX, type assignRoleToUserInput as FY, type assignUserTaskInput as FZ, type assignUserToGroupInput as F_, type UserTaskStateFilterProperty as Fa, type UserTaskUpdateRequest as Fb, type UserTaskVariableFilter as Fc, type UserTaskVariableSearchQueryRequest as Fd, type UserTaskVariableSearchQuerySortRequest as Fe, type UserTaskWaitStateDetails as Ff, type UserUpdateRequest as Fg, type UserUpdateResult as Fh, Username as Fi, type ValidationMode as Fj, VariableCollector as Fk, VariableDeserializationError as Fl, type VariableFilter as Fm, VariableKey as Fn, type VariableKeyExactMatch as Fo, type VariableKeyExactMatchWritable as Fp, type VariableKeyFilterProperty as Fq, type VariableKeyWritable as Fr, VariableMap as Fs, type VariableResult as Ft, type VariableResultBase as Fu, VariableScopeCollisionError as Fv, type VariableSearchQuery as Fw, type VariableSearchQueryResult as Fx, type VariableSearchQuerySortRequest as Fy, type VariableSearchResult as Fz, type AdvancedBatchOperationTypeFilter as G, type getBatchOperationConsistency as G$, type broadcastSignalInput as G0, type cancelBatchOperationInput as G1, type cancelClusterRebalanceInput as G2, type cancelProcessInstanceInput as G3, type cancelProcessInstancesBatchOperationInput as G4, type changeClusterModeAsClusterAdminInput as G5, type changeClusterModeInput as G6, collectTypedVariables as G7, type completeJobInput as G8, type completeUserTaskInput as G9, type deleteHistoryBackupAsClusterAdminInput as GA, type deleteHistoryBackupInput as GB, type deleteMappingRuleInput as GC, type deleteProcessInstanceInput as GD, type deleteProcessInstancesBatchOperationInput as GE, type deleteResourceInput as GF, type deleteRoleInput as GG, type deleteRuntimeBackupAsClusterAdminInput as GH, type deleteRuntimeBackupInput as GI, type deleteRuntimeBackupStateAsClusterAdminInput as GJ, type deleteRuntimeBackupStateInput as GK, type deleteTenantClusterVariableInput as GL, type deleteTenantInput as GM, type deleteUserInput as GN, type evaluateConditionalsInput as GO, type evaluateDecisionInput as GP, type evaluateExpressionInput as GQ, type failJobInput as GR, type getAgentDefinitionConsistency as GS, type getAgentDefinitionInput as GT, type getAgentInstanceConsistency as GU, type getAgentInstanceInput as GV, type getAuditLogConsistency as GW, type getAuditLogInput as GX, type getAuthenticationInput as GY, type getAuthorizationConsistency as GZ, type getAuthorizationInput as G_, type correlateMessageInput as Ga, type createAdminUserInput as Gb, type createAgentInstanceInput as Gc, type createAuthorizationInput as Gd, type createDeploymentInput as Ge, type createDocumentInput as Gf, type createDocumentLinkInput as Gg, type createDocumentsInput as Gh, type createElementInstanceVariablesInput as Gi, type createGlobalClusterVariableInput as Gj, type createGlobalTaskListenerInput as Gk, type createGroupInput as Gl, createLiveClock as Gm, type createMappingRuleInput as Gn, type createProcessInstanceInput as Go, type createRoleInput as Gp, type createTenantClusterVariableInput as Gq, type createTenantInput as Gr, type createUserInput as Gs, type deleteAuthorizationInput as Gt, type deleteDecisionInstanceInput as Gu, type deleteDecisionInstancesBatchOperationInput as Gv, type deleteDocumentInput as Gw, type deleteGlobalClusterVariableInput as Gx, type deleteGlobalTaskListenerInput as Gy, type deleteGroupInput as Gz, type AdvancedCategoryFilter as H, type getProcessInstanceStatisticsByDefinitionInput as H$, type getBatchOperationInput as H0, type getClusterExportingStatusInput as H1, type getClusterRebalanceInput as H2, type getClusterStatusInput as H3, type getClusterTopologyInput as H4, type getDecisionDefinitionConsistency as H5, type getDecisionDefinitionInput as H6, type getDecisionDefinitionXmlConsistency as H7, type getDecisionDefinitionXmlInput as H8, type getDecisionInstanceConsistency as H9, type getJobTimeSeriesStatisticsInput as HA, type getJobTypeStatisticsConsistency as HB, type getJobTypeStatisticsInput as HC, type getJobWorkerStatisticsConsistency as HD, type getJobWorkerStatisticsInput as HE, type getLicenseInput as HF, type getMappingRuleConsistency as HG, type getMappingRuleInput as HH, type getProcessDefinitionConsistency as HI, type getProcessDefinitionInput as HJ, type getProcessDefinitionInstanceStatisticsConsistency as HK, type getProcessDefinitionInstanceStatisticsInput as HL, type getProcessDefinitionInstanceVersionStatisticsConsistency as HM, type getProcessDefinitionInstanceVersionStatisticsInput as HN, type getProcessDefinitionMessageSubscriptionStatisticsConsistency as HO, type getProcessDefinitionMessageSubscriptionStatisticsInput as HP, type getProcessDefinitionStatisticsConsistency as HQ, type getProcessDefinitionStatisticsInput as HR, type getProcessDefinitionXmlConsistency as HS, type getProcessDefinitionXmlInput as HT, type getProcessInstanceCallHierarchyConsistency as HU, type getProcessInstanceCallHierarchyInput as HV, type getProcessInstanceConsistency as HW, type getProcessInstanceInput as HX, type getProcessInstanceSequenceFlowsConsistency as HY, type getProcessInstanceSequenceFlowsInput as HZ, type getProcessInstanceStatisticsByDefinitionConsistency as H_, type getDecisionInstanceInput as Ha, type getDecisionRequirementsConsistency as Hb, type getDecisionRequirementsInput as Hc, type getDecisionRequirementsXmlConsistency as Hd, type getDecisionRequirementsXmlInput as He, type getDocumentInput as Hf, type getElementInstanceConsistency as Hg, type getElementInstanceInput as Hh, type getExportingStatusInput as Hi, type getFormByKeyConsistency as Hj, type getFormByKeyInput as Hk, type getGlobalClusterVariableConsistency as Hl, type getGlobalClusterVariableInput as Hm, type getGlobalJobStatisticsConsistency as Hn, type getGlobalJobStatisticsInput as Ho, type getGlobalTaskListenerConsistency as Hp, type getGlobalTaskListenerInput as Hq, type getGroupConsistency as Hr, type getGroupInput as Hs, type getHistoryBackupAsClusterAdminInput as Ht, type getHistoryBackupInput as Hu, type getIncidentConsistency as Hv, type getIncidentInput as Hw, type getJobErrorStatisticsConsistency as Hx, type getJobErrorStatisticsInput as Hy, type getJobTimeSeriesStatisticsConsistency as Hz, type AdvancedClusterVariableKindFilter as I, type resumeExportingInput as I$, type getProcessInstanceStatisticsByErrorConsistency as I0, type getProcessInstanceStatisticsByErrorInput as I1, type getProcessInstanceStatisticsConsistency as I2, type getProcessInstanceStatisticsInput as I3, type getProcessInstanceWaitStateStatisticsConsistency as I4, type getProcessInstanceWaitStateStatisticsInput as I5, type getResourceConsistency as I6, type getResourceContentBinaryConsistency as I7, type getResourceContentBinaryInput as I8, type getResourceContentConsistency as I9, type getVariableConsistency as IA, type getVariableInput as IB, type listHistoryBackupsAsClusterAdminInput as IC, type listHistoryBackupsInput as ID, type listRuntimeBackupsAsClusterAdminInput as IE, type listRuntimeBackupsInput as IF, type listSecretsInput as IG, liveClock as IH, type migrateProcessInstanceInput as II, type migrateProcessInstancesBatchOperationInput as IJ, type modifyProcessInstanceInput as IK, type modifyProcessInstancesBatchOperationInput as IL, nextPageRequest as IM, paginate as IN, type pauseClusterExportingInput as IO, type pauseExportingInput as IP, type pinClockInput as IQ, type publishMessageInput as IR, type resetClockInput as IS, type resolveIncidentInput as IT, type resolveIncidentsBatchOperationInput as IU, type resolveProcessInstanceIncidentsInput as IV, type resolveSecretsInput as IW, type restoreAsClusterAdminInput as IX, type restoreInput as IY, type resumeBatchOperationInput as IZ, type resumeClusterExportingInput as I_, type getResourceContentInput as Ia, type getResourceInput as Ib, type getRestoreStatusInput as Ic, type getRoleConsistency as Id, type getRoleInput as Ie, type getRuntimeBackupAsClusterAdminInput as If, type getRuntimeBackupInput as Ig, type getRuntimeBackupStateAsClusterAdminInput as Ih, type getRuntimeBackupStateInput as Ii, type getStartProcessFormConsistency as Ij, type getStartProcessFormInput as Ik, type getStatusInput as Il, type getSystemConfigurationInput as Im, type getTenantClusterVariableConsistency as In, type getTenantClusterVariableInput as Io, type getTenantConsistency as Ip, type getTenantInput as Iq, type getTopologyInput as Ir, type getUsageMetricsConsistency as Is, type getUsageMetricsInput as It, type getUserConsistency as Iu, type getUserInput as Iv, type getUserTaskConsistency as Iw, type getUserTaskFormConsistency as Ix, type getUserTaskFormInput as Iy, type getUserTaskInput as Iz, type AdvancedClusterVariableScopeFilter as J, type searchProcessDefinitionVariableNamesInput as J$, type resumeProcessInstanceInput as J0, type resumeProcessInstancesBatchOperationInput as J1, type searchAgentDefinitionsConsistency as J2, type searchAgentDefinitionsInput as J3, type searchAgentInstanceHistoryConsistency as J4, type searchAgentInstanceHistoryInput as J5, type searchAgentInstancesConsistency as J6, type searchAgentInstancesInput as J7, type searchAuditLogsConsistency as J8, type searchAuditLogsInput as J9, type searchElementInstancesConsistency as JA, type searchElementInstancesInput as JB, type searchGlobalTaskListenersConsistency as JC, type searchGlobalTaskListenersInput as JD, type searchGroupIdsForTenantConsistency as JE, type searchGroupIdsForTenantInput as JF, type searchGroupsConsistency as JG, type searchGroupsForRoleConsistency as JH, type searchGroupsForRoleInput as JI, type searchGroupsInput as JJ, type searchIncidentsConsistency as JK, type searchIncidentsInput as JL, type searchJobsConsistency as JM, type searchJobsInput as JN, type searchMappingRuleConsistency as JO, type searchMappingRuleInput as JP, type searchMappingRulesForGroupConsistency as JQ, type searchMappingRulesForGroupInput as JR, type searchMappingRulesForRoleConsistency as JS, type searchMappingRulesForRoleInput as JT, type searchMappingRulesForTenantConsistency as JU, type searchMappingRulesForTenantInput as JV, type searchMessageSubscriptionsConsistency as JW, type searchMessageSubscriptionsInput as JX, type searchOwnAuthorizationsConsistency as JY, type searchOwnAuthorizationsInput as JZ, type searchProcessDefinitionVariableNamesConsistency as J_, type searchAuthorizationsConsistency as Ja, type searchAuthorizationsInput as Jb, type searchBatchOperationItemsConsistency as Jc, type searchBatchOperationItemsInput as Jd, type searchBatchOperationsConsistency as Je, type searchBatchOperationsInput as Jf, type searchClientsForGroupConsistency as Jg, type searchClientsForGroupInput as Jh, type searchClientsForRoleConsistency as Ji, type searchClientsForRoleInput as Jj, type searchClientsForTenantConsistency as Jk, type searchClientsForTenantInput as Jl, type searchClusterVariablesConsistency as Jm, type searchClusterVariablesInput as Jn, type searchCorrelatedMessageSubscriptionsConsistency as Jo, type searchCorrelatedMessageSubscriptionsInput as Jp, type searchDecisionDefinitionsConsistency as Jq, type searchDecisionDefinitionsInput as Jr, type searchDecisionInstancesConsistency as Js, type searchDecisionInstancesInput as Jt, type searchDecisionRequirementsConsistency as Ju, type searchDecisionRequirementsInput as Jv, type searchElementInstanceIncidentsConsistency as Jw, type searchElementInstanceIncidentsInput as Jx, type searchElementInstanceWaitStatesConsistency as Jy, type searchElementInstanceWaitStatesInput as Jz, type AdvancedDateTimeFilter as K, type updateJobInput as K$, type searchProcessDefinitionsConsistency as K0, type searchProcessDefinitionsInput as K1, type searchProcessInstanceIncidentsConsistency as K2, type searchProcessInstanceIncidentsInput as K3, type searchProcessInstancesConsistency as K4, type searchProcessInstancesInput as K5, type searchResourcesConsistency as K6, type searchResourcesInput as K7, type searchRolesConsistency as K8, type searchRolesForGroupConsistency as K9, type suspendProcessInstancesBatchOperationInput as KA, type syncRuntimeBackupStateAsClusterAdminInput as KB, type syncRuntimeBackupStateInput as KC, type takeHistoryBackupAsClusterAdminInput as KD, type takeHistoryBackupInput as KE, type takeRuntimeBackupAsClusterAdminInput as KF, type takeRuntimeBackupInput as KG, type throwJobErrorInput as KH, type triggerClusterRebalanceInput as KI, type unassignClientFromGroupInput as KJ, type unassignClientFromTenantInput as KK, type unassignGroupFromTenantInput as KL, type unassignMappingRuleFromGroupInput as KM, type unassignMappingRuleFromTenantInput as KN, type unassignRoleFromClientInput as KO, type unassignRoleFromGroupInput as KP, type unassignRoleFromMappingRuleInput as KQ, type unassignRoleFromTenantInput as KR, type unassignRoleFromUserInput as KS, type unassignUserFromGroupInput as KT, type unassignUserFromTenantInput as KU, type unassignUserTaskInput as KV, type updateAgentInstanceInput as KW, type updateAuthorizationInput as KX, type updateGlobalClusterVariableInput as KY, type updateGlobalTaskListenerInput as KZ, type updateGroupInput as K_, type searchRolesForGroupInput as Ka, type searchRolesForTenantConsistency as Kb, type searchRolesForTenantInput as Kc, type searchRolesInput as Kd, type searchTenantsConsistency as Ke, type searchTenantsInput as Kf, type searchUserTaskAuditLogsConsistency as Kg, type searchUserTaskAuditLogsInput as Kh, type searchUserTaskEffectiveVariablesConsistency as Ki, type searchUserTaskEffectiveVariablesInput as Kj, type searchUserTaskVariablesConsistency as Kk, type searchUserTaskVariablesInput as Kl, type searchUserTasksConsistency as Km, type searchUserTasksInput as Kn, type searchUsersConsistency as Ko, type searchUsersForGroupConsistency as Kp, type searchUsersForGroupInput as Kq, type searchUsersForRoleConsistency as Kr, type searchUsersForRoleInput as Ks, type searchUsersForTenantConsistency as Kt, type searchUsersForTenantInput as Ku, type searchUsersInput as Kv, type searchVariablesConsistency as Kw, type searchVariablesInput as Kx, type suspendBatchOperationInput as Ky, type suspendProcessInstanceInput as Kz, type AdvancedDecisionDefinitionKeyFilter as L, type updateJobsBatchOperationInput as L0, type updateMappingRuleInput as L1, type updateRoleInput as L2, type updateTenantClusterVariableInput as L3, type updateTenantInput as L4, type updateUserInput as L5, type updateUserTaskInput as L6, variableNamesFromSchema as L7, 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 IncidentProcessInstanceStatisticsByErrorQuery 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 HandlerClock as qJ, type HistoryBackupInfo as qK, type HistoryBackupInfoWritable as qL, type HistoryBackupSnapshotInfo as qM, type HistoryBackupStateCode as qN, type HttpRetryPolicy as qO, IncidentErrorTypeEnum as qP, type IncidentErrorTypeExactMatch as qQ, type IncidentErrorTypeExactMatchWritable as qR, type IncidentErrorTypeFilterProperty as qS, type IncidentFilter as qT, IncidentKey as qU, type IncidentKeyWritable as qV, type IncidentProcessInstanceStatisticsByDefinitionFilter as qW, type IncidentProcessInstanceStatisticsByDefinitionQuery as qX, type IncidentProcessInstanceStatisticsByDefinitionQueryResult as qY, type IncidentProcessInstanceStatisticsByDefinitionQuerySortRequest as qZ, type IncidentProcessInstanceStatisticsByDefinitionResult 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 JobUpdateRequest as r$, type IncidentProcessInstanceStatisticsByErrorQueryResult as r0, type IncidentProcessInstanceStatisticsByErrorQuerySortRequest as r1, type IncidentProcessInstanceStatisticsByErrorResult as r2, type IncidentResolutionRequest as r3, type IncidentResult as r4, type IncidentSearchQuery as r5, type IncidentSearchQueryResult as r6, type IncidentSearchQuerySortRequest as r7, IncidentStateEnum as r8, type IncidentStateExactMatch as r9, type JobKindFilterProperty as rA, JobListenerEventTypeEnum as rB, type JobListenerEventTypeExactMatch as rC, type JobListenerEventTypeExactMatchWritable as rD, type JobListenerEventTypeFilterProperty as rE, type JobMetricsConfigurationResponse as rF, type JobResult as rG, type JobResultActivateElement as rH, type JobResultAdHocSubProcess as rI, type JobResultCorrections as rJ, type JobResultUserTask as rK, type JobSearchQuery as rL, type JobSearchQueryResult as rM, type JobSearchQuerySortRequest as rN, type JobSearchResult as rO, JobStateEnum as rP, type JobStateExactMatch as rQ, type JobStateExactMatchWritable as rR, type JobStateFilterProperty as rS, type JobTimeSeriesStatisticsFilter as rT, type JobTimeSeriesStatisticsItem as rU, type JobTimeSeriesStatisticsQuery as rV, type JobTimeSeriesStatisticsQueryResult as rW, type JobTypeStatisticsFilter as rX, type JobTypeStatisticsItem as rY, type JobTypeStatisticsQuery as rZ, type JobTypeStatisticsQueryResult as r_, type IncidentStateExactMatchWritable as ra, type IncidentStateFilterProperty as rb, type InferredAncestorKeyInstruction as rc, type IntegerFilterProperty as rd, type Job as re, JobActionReceipt as rf, type JobActivationRequest as rg, type JobActivationResult as rh, type JobBatchUpdateRequest as ri, type JobChangeset as rj, type JobCompletionRequest as rk, type JobErrorRequest$1 as rl, type JobErrorStatisticsFilter as rm, type JobErrorStatisticsItem as rn, type JobErrorStatisticsQuery as ro, type JobErrorStatisticsQueryResult as rp, type JobFailRequest as rq, type JobFilter as rr, JobKey as rs, type JobKeyExactMatch as rt, type JobKeyExactMatchWritable as ru, type JobKeyFilterProperty as rv, type JobKeyWritable as rw, JobKindEnum as rx, type JobKindExactMatch as ry, type JobKindExactMatchWritable as rz, type AdvancedActorTypeFilter as s, type MessageSubscriptionSearchQuery as s$, type JobWaitStateDetails as s0, JobWorker as s1, type JobWorkerConfig as s2, type JobWorkerStatisticsFilter as s3, type JobWorkerStatisticsItem as s4, type JobWorkerStatisticsQuery as s5, type JobWorkerStatisticsQueryResult as s6, type LicenseResponse as s7, type LikeFilter as s8, type LimitPagination as s9, type LoopIterationId as sA, type MappingRuleCreateRequest as sB, type MappingRuleCreateResult as sC, type MappingRuleCreateUpdateRequest as sD, type MappingRuleCreateUpdateResult as sE, type MappingRuleFilter as sF, MappingRuleId as sG, type MappingRuleResult as sH, type MappingRuleSearchQueryRequest as sI, type MappingRuleSearchQueryResult as sJ, type MappingRuleSearchQuerySortRequest as sK, type MappingRuleUpdateRequest as sL, type MappingRuleUpdateResult as sM, type MatchedDecisionRuleItem as sN, type MessageCorrelationRequest as sO, type MessageCorrelationResult as sP, MessageKey as sQ, type MessageKeyWritable as sR, type MessagePublicationRequest as sS, type MessagePublicationResult as sT, type MessageSubscriptionFilter as sU, MessageSubscriptionKey as sV, type MessageSubscriptionKeyExactMatch as sW, type MessageSubscriptionKeyExactMatchWritable as sX, type MessageSubscriptionKeyFilterProperty as sY, type MessageSubscriptionKeyWritable as sZ, type MessageSubscriptionResult as s_, type ListHistoryBackupsAsClusterAdminData as sa, type ListHistoryBackupsAsClusterAdminError as sb, type ListHistoryBackupsAsClusterAdminErrors as sc, type ListHistoryBackupsAsClusterAdminResponse as sd, type ListHistoryBackupsAsClusterAdminResponses as se, type ListHistoryBackupsData as sf, type ListHistoryBackupsError as sg, type ListHistoryBackupsErrors as sh, type ListHistoryBackupsResponse as si, type ListHistoryBackupsResponses as sj, type ListRuntimeBackupsAsClusterAdminData as sk, type ListRuntimeBackupsAsClusterAdminError as sl, type ListRuntimeBackupsAsClusterAdminErrors as sm, type ListRuntimeBackupsAsClusterAdminResponse as sn, type ListRuntimeBackupsAsClusterAdminResponses as so, type ListRuntimeBackupsData as sp, type ListRuntimeBackupsError as sq, type ListRuntimeBackupsErrors as sr, type ListRuntimeBackupsResponse as ss, type ListRuntimeBackupsResponses as st, type ListSecretsData as su, type ListSecretsError as sv, type ListSecretsErrors as sw, type ListSecretsResponse as sx, type ListSecretsResponses as sy, type LongKey as sz, type AdvancedAgentDefinitionKeyFilter as t, type PinClockData as t$, type MessageSubscriptionSearchQueryResult as t0, type MessageSubscriptionSearchQuerySortRequest as t1, MessageSubscriptionStateEnum as t2, type MessageSubscriptionStateExactMatch as t3, type MessageSubscriptionStateExactMatchWritable as t4, type MessageSubscriptionStateFilterProperty as t5, MessageSubscriptionTypeEnum as t6, type MessageSubscriptionTypeExactMatch as t7, type MessageSubscriptionTypeExactMatchWritable as t8, type MessageSubscriptionTypeFilterProperty as t9, type OperationReference as tA, type OperationTypeExactMatch as tB, type OperationTypeExactMatchWritable as tC, type OperationTypeFilterProperty as tD, type OwnAuthorizationSearchResult as tE, OwnerTypeEnum as tF, type PaginateOptions as tG, type Partition as tH, type PartitionBackupInfo as tI, type PartitionBackupInfoWritable as tJ, type PartitionBackupRange as tK, type PartitionBackupState as tL, type PartitionCheckpointState as tM, type PartitionId as tN, type PauseClusterExportingData as tO, type PauseClusterExportingError as tP, type PauseClusterExportingErrors as tQ, type PauseClusterExportingResponse as tR, type PauseClusterExportingResponses as tS, type PauseExportingData as tT, type PauseExportingError as tU, type PauseExportingErrors as tV, type PauseExportingResponse as tW, type PauseExportingResponses as tX, PermissionTypeEnum as tY, type PhysicalTenantBrokerTopology as tZ, type PhysicalTenantTopology as t_, type MessageWaitStateDetails as ta, type MigrateProcessInstanceData as tb, type MigrateProcessInstanceError as tc, type MigrateProcessInstanceErrors as td, type MigrateProcessInstanceMappingInstruction as te, type MigrateProcessInstanceResponse as tf, type MigrateProcessInstanceResponses as tg, type MigrateProcessInstancesBatchOperationData as th, type MigrateProcessInstancesBatchOperationError as ti, type MigrateProcessInstancesBatchOperationErrors as tj, type MigrateProcessInstancesBatchOperationResponse as tk, type MigrateProcessInstancesBatchOperationResponses as tl, type Mode as tm, type ModifyProcessInstanceData as tn, type ModifyProcessInstanceError as to, type ModifyProcessInstanceErrors as tp, type ModifyProcessInstanceResponse as tq, type ModifyProcessInstanceResponses as tr, type ModifyProcessInstanceVariableInstruction as ts, type ModifyProcessInstancesBatchOperationData as tt, type ModifyProcessInstancesBatchOperationError as tu, type ModifyProcessInstancesBatchOperationErrors as tv, type ModifyProcessInstancesBatchOperationResponse as tw, type ModifyProcessInstancesBatchOperationResponses as tx, type OffsetPagination as ty, type OperationOptions as tz, type AdvancedAgentDefinitionTypeFilter as u, type ProcessInstanceModificationInstruction as u$, type PinClockError as u0, type PinClockErrors as u1, type PinClockResponse as u2, type PinClockResponses as u3, type ProblemDetail as u4, type ProcessDefinitionElementStatisticsQuery as u5, type ProcessDefinitionElementStatisticsQueryResult as u6, type ProcessDefinitionFilter as u7, ProcessDefinitionId as u8, type ProcessDefinitionIdExactMatch as u9, type ProcessDefinitionVariableNameSearchQueryResult as uA, type ProcessDefinitionVariableNameSearchResult as uB, type ProcessElementStatisticsResult as uC, type ProcessInstanceBusinessIdAssignmentInstruction as uD, type ProcessInstanceCallHierarchyEntry as uE, type ProcessInstanceCancellationBatchOperationRequest as uF, type ProcessInstanceCreationInstruction as uG, type ProcessInstanceCreationInstructionById as uH, type ProcessInstanceCreationInstructionByKey as uI, type ProcessInstanceCreationRuntimeInstruction as uJ, type ProcessInstanceCreationStartInstruction as uK, type ProcessInstanceCreationTerminateInstruction as uL, type ProcessInstanceDeletionBatchOperationRequest as uM, type ProcessInstanceElementStatisticsQueryResult as uN, type ProcessInstanceFilter as uO, type ProcessInstanceFilterFields as uP, type ProcessInstanceIncidentResolutionBatchOperationRequest as uQ, ProcessInstanceKey as uR, type ProcessInstanceKeyExactMatch as uS, type ProcessInstanceKeyExactMatchWritable as uT, type ProcessInstanceKeyFilterProperty as uU, type ProcessInstanceKeyWritable as uV, type ProcessInstanceMigrationBatchOperationPlan as uW, type ProcessInstanceMigrationBatchOperationRequest as uX, type ProcessInstanceMigrationInstruction as uY, type ProcessInstanceModificationActivateInstruction as uZ, type ProcessInstanceModificationBatchOperationRequest as u_, type ProcessDefinitionIdExactMatchWritable as ua, type ProcessDefinitionIdFilterProperty as ub, type ProcessDefinitionInstanceStatisticsQuery as uc, type ProcessDefinitionInstanceStatisticsQueryResult as ud, type ProcessDefinitionInstanceStatisticsQuerySortRequest as ue, type ProcessDefinitionInstanceStatisticsResult as uf, type ProcessDefinitionInstanceVersionStatisticsFilter as ug, type ProcessDefinitionInstanceVersionStatisticsQuery as uh, type ProcessDefinitionInstanceVersionStatisticsQueryResult as ui, type ProcessDefinitionInstanceVersionStatisticsQuerySortRequest as uj, type ProcessDefinitionInstanceVersionStatisticsResult as uk, ProcessDefinitionKey as ul, type ProcessDefinitionKeyExactMatch as um, type ProcessDefinitionKeyExactMatchWritable as un, type ProcessDefinitionKeyFilterProperty as uo, type ProcessDefinitionKeyWritable as up, type ProcessDefinitionMessageSubscriptionStatisticsQuery as uq, type ProcessDefinitionMessageSubscriptionStatisticsQueryResult as ur, type ProcessDefinitionMessageSubscriptionStatisticsResult as us, type ProcessDefinitionResult as ut, type ProcessDefinitionSearchQuery as uu, type ProcessDefinitionSearchQueryResult as uv, type ProcessDefinitionSearchQuerySortRequest as uw, type ProcessDefinitionStatisticsFilter as ux, type ProcessDefinitionVariableNameFilter as uy, type ProcessDefinitionVariableNameSearchQuery as uz, type AdvancedAgentHistoryItemKeyFilter as v, type RestoreAsClusterAdminData as v$, type ProcessInstanceModificationMoveBatchOperationInstruction as v0, type ProcessInstanceModificationMoveInstruction as v1, type ProcessInstanceModificationTerminateByIdInstruction as v2, type ProcessInstanceModificationTerminateByKeyInstruction as v3, type ProcessInstanceModificationTerminateInstruction as v4, type ProcessInstanceReference as v5, type ProcessInstanceResult as v6, type ProcessInstanceResumptionBatchOperationRequest as v7, type ProcessInstanceSearchQuery as v8, type ProcessInstanceSearchQueryResult as v9, type ResolveIncidentsBatchOperationData as vA, type ResolveIncidentsBatchOperationError as vB, type ResolveIncidentsBatchOperationErrors as vC, type ResolveIncidentsBatchOperationResponse as vD, type ResolveIncidentsBatchOperationResponses as vE, type ResolveProcessInstanceIncidentsData as vF, type ResolveProcessInstanceIncidentsError as vG, type ResolveProcessInstanceIncidentsErrors as vH, type ResolveProcessInstanceIncidentsResponse as vI, type ResolveProcessInstanceIncidentsResponses as vJ, type ResolveSecretsData as vK, type ResolveSecretsError as vL, type ResolveSecretsErrors as vM, type ResolveSecretsResponse as vN, type ResolveSecretsResponses as vO, type ResolvedSecret as vP, type ResourceFilter as vQ, type ResourceKey as vR, type ResourceKeyExactMatch as vS, type ResourceKeyExactMatchWritable as vT, type ResourceKeyFilterProperty as vU, type ResourceKeyWritable as vV, type ResourceResult as vW, type ResourceSearchQuery as vX, type ResourceSearchQueryResult as vY, type ResourceSearchQuerySortRequest as vZ, ResourceTypeEnum as v_, type ProcessInstanceSearchQuerySortRequest as va, type ProcessInstanceSequenceFlowResult as vb, type ProcessInstanceSequenceFlowsQueryResult as vc, ProcessInstanceStateEnum as vd, type ProcessInstanceStateExactMatch as ve, type ProcessInstanceStateExactMatchWritable as vf, type ProcessInstanceStateFilterProperty as vg, type ProcessInstanceSuspensionBatchOperationRequest as vh, type ProcessInstanceWaitStateStatisticsQueryResult as vi, type ProcessInstanceWaitStateStatisticsResult as vj, type PublishMessageData as vk, type PublishMessageError as vl, type PublishMessageErrors as vm, type PublishMessageResponse as vn, type PublishMessageResponses as vo, type RebalanceCancellationResponse as vp, type ResetClockData as vq, type ResetClockError as vr, type ResetClockErrors as vs, type ResetClockResponse as vt, type ResetClockResponses as vu, type ResolveIncidentData as vv, type ResolveIncidentError as vw, type ResolveIncidentErrors as vx, type ResolveIncidentResponse as vy, type ResolveIncidentResponses as vz, type AdvancedAgentInstanceHistoryCommitStatusFilter as w, type ScopeKey as w$, type RestoreAsClusterAdminError as w0, type RestoreAsClusterAdminErrors as w1, type RestoreAsClusterAdminResponse as w2, type RestoreAsClusterAdminResponses as w3, type RestoreBrokerStatus as w4, type RestoreData as w5, type RestoreError as w6, type RestoreErrors as w7, type RestorePartitionStatus as w8, type RestoreRequest as w9, type ResumeProcessInstancesBatchOperationErrors as wA, type ResumeProcessInstancesBatchOperationResponse as wB, type ResumeProcessInstancesBatchOperationResponses as wC, type RoleClientResult as wD, type RoleClientSearchQueryRequest as wE, type RoleClientSearchQuerySortRequest as wF, type RoleClientSearchResult as wG, type RoleCreateRequest as wH, type RoleCreateResult as wI, type RoleFilter as wJ, type RoleGroupResult as wK, type RoleGroupSearchQueryRequest as wL, type RoleGroupSearchQuerySortRequest as wM, type RoleGroupSearchResult as wN, RoleId as wO, type RoleMappingRuleSearchResult as wP, type RoleResult as wQ, type RoleSearchQueryRequest as wR, type RoleSearchQueryResult as wS, type RoleSearchQuerySortRequest as wT, type RoleUpdateRequest as wU, type RoleUpdateResult as wV, type RoleUserResult as wW, type RoleUserSearchQueryRequest as wX, type RoleUserSearchQuerySortRequest as wY, type RoleUserSearchResult as wZ, type RuntimeBackupState as w_, type RestoreResponse as wa, type RestoreResponses as wb, type RestoreStatusResponse as wc, type ResumeBatchOperationData as wd, type ResumeBatchOperationError as we, type ResumeBatchOperationErrors as wf, type ResumeBatchOperationResponse as wg, type ResumeBatchOperationResponses as wh, type ResumeClusterExportingData as wi, type ResumeClusterExportingError as wj, type ResumeClusterExportingErrors as wk, type ResumeClusterExportingResponse as wl, type ResumeClusterExportingResponses as wm, type ResumeExportingData as wn, type ResumeExportingError as wo, type ResumeExportingErrors as wp, type ResumeExportingResponse as wq, type ResumeExportingResponses as wr, type ResumeProcessInstanceData as ws, type ResumeProcessInstanceError as wt, type ResumeProcessInstanceErrors as wu, type ResumeProcessInstanceRequest as wv, type ResumeProcessInstanceResponse as ww, type ResumeProcessInstanceResponses as wx, type ResumeProcessInstancesBatchOperationData as wy, type ResumeProcessInstancesBatchOperationError as wz, type AdvancedAgentInstanceHistoryRoleFilter as x, type SearchDecisionDefinitionsData as x$, type ScopeKeyExactMatch as x0, type ScopeKeyExactMatchWritable as x1, type ScopeKeyFilterProperty as x2, type ScopeKeyWritable as x3, type SearchAgentDefinitionsData as x4, type SearchAgentDefinitionsError as x5, type SearchAgentDefinitionsErrors as x6, type SearchAgentDefinitionsResponse as x7, type SearchAgentDefinitionsResponses as x8, type SearchAgentInstanceHistoryData as x9, type SearchBatchOperationsErrors as xA, type SearchBatchOperationsResponse as xB, type SearchBatchOperationsResponses as xC, type SearchBody as xD, type SearchClientsForGroupData as xE, type SearchClientsForGroupError as xF, type SearchClientsForGroupErrors as xG, type SearchClientsForGroupResponse as xH, type SearchClientsForGroupResponses as xI, type SearchClientsForRoleData as xJ, type SearchClientsForRoleError as xK, type SearchClientsForRoleErrors as xL, type SearchClientsForRoleResponse as xM, type SearchClientsForRoleResponses as xN, type SearchClientsForTenantData as xO, type SearchClientsForTenantResponse as xP, type SearchClientsForTenantResponses as xQ, type SearchClusterVariablesData as xR, type SearchClusterVariablesError as xS, type SearchClusterVariablesErrors as xT, type SearchClusterVariablesResponse as xU, type SearchClusterVariablesResponses as xV, type SearchCorrelatedMessageSubscriptionsData as xW, type SearchCorrelatedMessageSubscriptionsError as xX, type SearchCorrelatedMessageSubscriptionsErrors as xY, type SearchCorrelatedMessageSubscriptionsResponse as xZ, type SearchCorrelatedMessageSubscriptionsResponses as x_, type SearchAgentInstanceHistoryError as xa, type SearchAgentInstanceHistoryErrors as xb, type SearchAgentInstanceHistoryResponse as xc, type SearchAgentInstanceHistoryResponses as xd, type SearchAgentInstancesData as xe, type SearchAgentInstancesError as xf, type SearchAgentInstancesErrors as xg, type SearchAgentInstancesResponse as xh, type SearchAgentInstancesResponses as xi, type SearchAuditLogsData as xj, type SearchAuditLogsError as xk, type SearchAuditLogsErrors as xl, type SearchAuditLogsResponse as xm, type SearchAuditLogsResponses as xn, type SearchAuthorizationsData as xo, type SearchAuthorizationsError as xp, type SearchAuthorizationsErrors as xq, type SearchAuthorizationsResponse as xr, type SearchAuthorizationsResponses as xs, type SearchBatchOperationItemsData as xt, type SearchBatchOperationItemsError as xu, type SearchBatchOperationItemsErrors as xv, type SearchBatchOperationItemsResponse as xw, type SearchBatchOperationItemsResponses as xx, type SearchBatchOperationsData as xy, type SearchBatchOperationsError as xz, type AdvancedAgentInstanceKeyFilter as y, type SearchMappingRulesForGroupError as y$, type SearchDecisionDefinitionsError as y0, type SearchDecisionDefinitionsErrors as y1, type SearchDecisionDefinitionsResponse as y2, type SearchDecisionDefinitionsResponses as y3, type SearchDecisionInstancesData as y4, type SearchDecisionInstancesError as y5, type SearchDecisionInstancesErrors as y6, type SearchDecisionInstancesResponse as y7, type SearchDecisionInstancesResponses as y8, type SearchDecisionRequirementsData as y9, type SearchGroupIdsForTenantResponses as yA, type SearchGroupsData as yB, type SearchGroupsError as yC, type SearchGroupsErrors as yD, type SearchGroupsForRoleData as yE, type SearchGroupsForRoleError as yF, type SearchGroupsForRoleErrors as yG, type SearchGroupsForRoleResponse as yH, type SearchGroupsForRoleResponses as yI, type SearchGroupsResponse as yJ, type SearchGroupsResponses as yK, type SearchIncidentsData as yL, type SearchIncidentsError as yM, type SearchIncidentsErrors as yN, type SearchIncidentsResponse as yO, type SearchIncidentsResponses as yP, type SearchJobsData as yQ, type SearchJobsError as yR, type SearchJobsErrors as yS, type SearchJobsResponse as yT, type SearchJobsResponses as yU, type SearchMappingRuleData as yV, type SearchMappingRuleError as yW, type SearchMappingRuleErrors as yX, type SearchMappingRuleResponse as yY, type SearchMappingRuleResponses as yZ, type SearchMappingRulesForGroupData as y_, type SearchDecisionRequirementsError as ya, type SearchDecisionRequirementsErrors as yb, type SearchDecisionRequirementsResponse as yc, type SearchDecisionRequirementsResponses as yd, type SearchElementInstanceIncidentsData as ye, type SearchElementInstanceIncidentsError as yf, type SearchElementInstanceIncidentsErrors as yg, type SearchElementInstanceIncidentsResponse as yh, type SearchElementInstanceIncidentsResponses as yi, type SearchElementInstanceWaitStatesData as yj, type SearchElementInstanceWaitStatesError as yk, type SearchElementInstanceWaitStatesErrors as yl, type SearchElementInstanceWaitStatesResponse as ym, type SearchElementInstanceWaitStatesResponses as yn, type SearchElementInstancesData as yo, type SearchElementInstancesError as yp, type SearchElementInstancesErrors as yq, type SearchElementInstancesResponse as yr, type SearchElementInstancesResponses as ys, type SearchGlobalTaskListenersData as yt, type SearchGlobalTaskListenersError as yu, type SearchGlobalTaskListenersErrors as yv, type SearchGlobalTaskListenersResponse as yw, type SearchGlobalTaskListenersResponses as yx, type SearchGroupIdsForTenantData as yy, type SearchGroupIdsForTenantResponse as yz, type AdvancedAgentInstanceStatusFilter as z, type SearchRolesForTenantResponses as z$, type SearchMappingRulesForGroupErrors as z0, type SearchMappingRulesForGroupResponse as z1, type SearchMappingRulesForGroupResponses as z2, type SearchMappingRulesForRoleData as z3, type SearchMappingRulesForRoleError as z4, type SearchMappingRulesForRoleErrors as z5, type SearchMappingRulesForRoleResponse as z6, type SearchMappingRulesForRoleResponses as z7, type SearchMappingRulesForTenantData as z8, type SearchMappingRulesForTenantResponse as z9, type SearchProcessInstanceIncidentsErrors as zA, type SearchProcessInstanceIncidentsResponse as zB, type SearchProcessInstanceIncidentsResponses as zC, type SearchProcessInstancesData as zD, type SearchProcessInstancesError as zE, type SearchProcessInstancesErrors as zF, type SearchProcessInstancesResponse as zG, type SearchProcessInstancesResponses as zH, type SearchQueryPageRequest as zI, type SearchQueryPageResponse as zJ, type SearchQueryRequest as zK, type SearchQueryResponse as zL, type SearchResourcesData as zM, type SearchResourcesError as zN, type SearchResourcesErrors as zO, type SearchResourcesResponse as zP, type SearchResourcesResponses as zQ, type SearchRolesData as zR, type SearchRolesError as zS, type SearchRolesErrors as zT, type SearchRolesForGroupData as zU, type SearchRolesForGroupError as zV, type SearchRolesForGroupErrors as zW, type SearchRolesForGroupResponse as zX, type SearchRolesForGroupResponses as zY, type SearchRolesForTenantData as zZ, type SearchRolesForTenantResponse as z_, type SearchMappingRulesForTenantResponses as za, type SearchMessageSubscriptionsData as zb, type SearchMessageSubscriptionsError as zc, type SearchMessageSubscriptionsErrors as zd, type SearchMessageSubscriptionsResponse as ze, type SearchMessageSubscriptionsResponses as zf, type SearchOwnAuthorizationsData as zg, type SearchOwnAuthorizationsError as zh, type SearchOwnAuthorizationsErrors as zi, type SearchOwnAuthorizationsResponse as zj, type SearchOwnAuthorizationsResponses as zk, type SearchPageRequest as zl, type SearchPageResponse as zm, type SearchPaginationApi as zn, type SearchProcessDefinitionVariableNamesData as zo, type SearchProcessDefinitionVariableNamesError as zp, type SearchProcessDefinitionVariableNamesErrors as zq, type SearchProcessDefinitionVariableNamesResponse as zr, type SearchProcessDefinitionVariableNamesResponses as zs, type SearchProcessDefinitionsData as zt, type SearchProcessDefinitionsError as zu, type SearchProcessDefinitionsErrors as zv, type SearchProcessDefinitionsResponse as zw, type SearchProcessDefinitionsResponses as zx, type SearchProcessInstanceIncidentsData as zy, type SearchProcessInstanceIncidentsError as zz };
|