@camunda8/orchestration-cluster-api 10.0.0-alpha.3 → 10.0.0-alpha.5
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 +15 -0
- package/README.md +43 -1
- package/dist/{chunk-JP44BUAM.js → chunk-S3RXIYYE.js} +207 -3
- package/dist/chunk-S3RXIYYE.js.map +1 -0
- package/dist/fp/index.cjs +637 -595
- package/dist/fp/index.cjs.map +1 -1
- package/dist/fp/index.d.cts +1 -1
- package/dist/fp/index.d.ts +1 -1
- package/dist/fp/index.js +1 -1
- package/dist/{index-CvA10E3U.d.cts → index-CBhZBupS.d.cts} +906 -459
- package/dist/{index-CtFmBFXM.d.ts → index-CMbPTSiX.d.ts} +906 -459
- package/dist/index.cjs +797 -601
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +3 -3
- package/dist/index.d.ts +3 -3
- package/dist/index.js +154 -7
- package/dist/index.js.map +1 -1
- package/dist/{zod.gen-WZT74U4Q.js → zod.gen-UJLBQNEH.js} +431 -593
- package/dist/zod.gen-UJLBQNEH.js.map +1 -0
- package/package.json +3 -2
- package/dist/chunk-JP44BUAM.js.map +0 -1
- package/dist/zod.gen-WZT74U4Q.js.map +0 -1
|
@@ -753,6 +753,218 @@ type CamundaKey<T extends string = string> = string & {
|
|
|
753
753
|
type ClientOptions = {
|
|
754
754
|
baseUrl: '{schema}://{host}:{port}/v2' | (string & {});
|
|
755
755
|
};
|
|
756
|
+
type AgentInstanceSearchQuerySortRequest = {
|
|
757
|
+
/**
|
|
758
|
+
* The field to sort by.
|
|
759
|
+
*/
|
|
760
|
+
field: 'creationDate' | 'lastUpdatedDate' | 'completionDate' | 'status';
|
|
761
|
+
order?: SortOrderEnum;
|
|
762
|
+
};
|
|
763
|
+
/**
|
|
764
|
+
* Agent instance search request.
|
|
765
|
+
*/
|
|
766
|
+
type AgentInstanceSearchQuery = SearchQueryRequest & {
|
|
767
|
+
/**
|
|
768
|
+
* Sort field criteria.
|
|
769
|
+
*/
|
|
770
|
+
sort?: Array<AgentInstanceSearchQuerySortRequest>;
|
|
771
|
+
/**
|
|
772
|
+
* The agent instance search filters.
|
|
773
|
+
*/
|
|
774
|
+
filter?: AgentInstanceFilter;
|
|
775
|
+
};
|
|
776
|
+
/**
|
|
777
|
+
* Agent instance search filter.
|
|
778
|
+
*/
|
|
779
|
+
type AgentInstanceFilter = {
|
|
780
|
+
/**
|
|
781
|
+
* The unique key of the agent instance.
|
|
782
|
+
*/
|
|
783
|
+
agentInstanceKey?: AgentInstanceKeyFilterProperty;
|
|
784
|
+
/**
|
|
785
|
+
* The current status of the agent instance.
|
|
786
|
+
*/
|
|
787
|
+
status?: AgentInstanceStatusFilterProperty;
|
|
788
|
+
/**
|
|
789
|
+
* The BPMN element ID of the agent task.
|
|
790
|
+
*/
|
|
791
|
+
elementId?: ElementIdFilterProperty;
|
|
792
|
+
/**
|
|
793
|
+
* The key of the process instance that owns this agent instance.
|
|
794
|
+
*/
|
|
795
|
+
processInstanceKey?: ProcessInstanceKeyFilterProperty;
|
|
796
|
+
/**
|
|
797
|
+
* The key of the process definition associated with this agent instance.
|
|
798
|
+
*/
|
|
799
|
+
processDefinitionKey?: ProcessDefinitionKeyFilterProperty;
|
|
800
|
+
/**
|
|
801
|
+
* The tenant ID of the agent instance.
|
|
802
|
+
*/
|
|
803
|
+
tenantId?: StringFilterProperty;
|
|
804
|
+
/**
|
|
805
|
+
* The creation date of the agent instance.
|
|
806
|
+
*/
|
|
807
|
+
creationDate?: DateTimeFilterProperty;
|
|
808
|
+
/**
|
|
809
|
+
* The date the agent instance was last updated.
|
|
810
|
+
*/
|
|
811
|
+
lastUpdatedDate?: DateTimeFilterProperty;
|
|
812
|
+
/**
|
|
813
|
+
* The completion date of the agent instance.
|
|
814
|
+
*/
|
|
815
|
+
completionDate?: DateTimeFilterProperty;
|
|
816
|
+
};
|
|
817
|
+
/**
|
|
818
|
+
* Agent instance search response.
|
|
819
|
+
*/
|
|
820
|
+
type AgentInstanceSearchQueryResult = SearchQueryResponse & {
|
|
821
|
+
/**
|
|
822
|
+
* The matching agent instances.
|
|
823
|
+
*/
|
|
824
|
+
items: Array<AgentInstanceResult>;
|
|
825
|
+
};
|
|
826
|
+
type AgentInstanceResult = {
|
|
827
|
+
/**
|
|
828
|
+
* The unique key for this agent instance.
|
|
829
|
+
*/
|
|
830
|
+
agentInstanceKey: AgentInstanceKey;
|
|
831
|
+
status: AgentInstanceStatusEnum;
|
|
832
|
+
/**
|
|
833
|
+
* The static definition of the agent, including model, provider, and system prompt.
|
|
834
|
+
*/
|
|
835
|
+
definition: AgentInstanceDefinition;
|
|
836
|
+
/**
|
|
837
|
+
* Aggregated metrics across all iterations of this agent instance.
|
|
838
|
+
*/
|
|
839
|
+
metrics: AgentInstanceMetrics;
|
|
840
|
+
/**
|
|
841
|
+
* The configured limits for this agent instance, set once at creation.
|
|
842
|
+
*/
|
|
843
|
+
limits: AgentInstanceLimits;
|
|
844
|
+
/**
|
|
845
|
+
* The BPMN element ID of the ad-hoc sub-process or AI agent task that owns this agent instance.
|
|
846
|
+
*/
|
|
847
|
+
elementId: ElementId;
|
|
848
|
+
/**
|
|
849
|
+
* The key of the process instance that owns this agent instance.
|
|
850
|
+
*/
|
|
851
|
+
processInstanceKey: ProcessInstanceKey;
|
|
852
|
+
/**
|
|
853
|
+
* The key of the process definition associated with this agent instance.
|
|
854
|
+
*/
|
|
855
|
+
processDefinitionKey: ProcessDefinitionKey;
|
|
856
|
+
/**
|
|
857
|
+
* The tenant ID of this agent instance.
|
|
858
|
+
*/
|
|
859
|
+
tenantId: TenantId;
|
|
860
|
+
/**
|
|
861
|
+
* The date when this agent instance was created.
|
|
862
|
+
*/
|
|
863
|
+
creationDate: string;
|
|
864
|
+
/**
|
|
865
|
+
* The date when this agent instance was last updated.
|
|
866
|
+
*/
|
|
867
|
+
lastUpdatedDate: string;
|
|
868
|
+
/**
|
|
869
|
+
* The date when this agent instance completed. Null while the agent is still running.
|
|
870
|
+
*/
|
|
871
|
+
completionDate: string | null;
|
|
872
|
+
};
|
|
873
|
+
/**
|
|
874
|
+
* The static definition of an agent instance, set once at creation.
|
|
875
|
+
*/
|
|
876
|
+
type AgentInstanceDefinition = {
|
|
877
|
+
/**
|
|
878
|
+
* The LLM model identifier (for example, gpt-4o).
|
|
879
|
+
*/
|
|
880
|
+
model: string;
|
|
881
|
+
/**
|
|
882
|
+
* The LLM provider (for example, openai or anthropic).
|
|
883
|
+
*/
|
|
884
|
+
provider: string;
|
|
885
|
+
/**
|
|
886
|
+
* The system prompt configured for this agent instance.
|
|
887
|
+
*/
|
|
888
|
+
systemPrompt: string;
|
|
889
|
+
};
|
|
890
|
+
/**
|
|
891
|
+
* Aggregated metrics for an agent instance across all model calls.
|
|
892
|
+
*/
|
|
893
|
+
type AgentInstanceMetrics = {
|
|
894
|
+
/**
|
|
895
|
+
* Total input tokens consumed across all model calls.
|
|
896
|
+
*/
|
|
897
|
+
inputTokens: number;
|
|
898
|
+
/**
|
|
899
|
+
* Total output tokens produced across all model calls.
|
|
900
|
+
*/
|
|
901
|
+
outputTokens: number;
|
|
902
|
+
/**
|
|
903
|
+
* Total number of LLM calls made.
|
|
904
|
+
*/
|
|
905
|
+
modelCalls: number;
|
|
906
|
+
/**
|
|
907
|
+
* Total number of tool calls made.
|
|
908
|
+
*/
|
|
909
|
+
toolCalls: number;
|
|
910
|
+
};
|
|
911
|
+
/**
|
|
912
|
+
* The configured limits for an agent instance, set once at creation.
|
|
913
|
+
*/
|
|
914
|
+
type AgentInstanceLimits = {
|
|
915
|
+
/**
|
|
916
|
+
* Maximum LLM calls allowed. -1 if no limit is configured.
|
|
917
|
+
*/
|
|
918
|
+
maxModelCalls: number;
|
|
919
|
+
/**
|
|
920
|
+
* Maximum tool calls allowed. -1 if no limit is configured.
|
|
921
|
+
*/
|
|
922
|
+
maxToolCalls: number;
|
|
923
|
+
/**
|
|
924
|
+
* Maximum total tokens allowed. -1 if no limit is configured.
|
|
925
|
+
*/
|
|
926
|
+
maxTokens: number;
|
|
927
|
+
};
|
|
928
|
+
/**
|
|
929
|
+
* The current status of an agent instance.
|
|
930
|
+
*/
|
|
931
|
+
declare const AgentInstanceStatusEnum: {
|
|
932
|
+
readonly COMPLETED: "COMPLETED";
|
|
933
|
+
readonly IDLE: "IDLE";
|
|
934
|
+
readonly INITIALIZING: "INITIALIZING";
|
|
935
|
+
readonly THINKING: "THINKING";
|
|
936
|
+
readonly TOOL_CALLING: "TOOL_CALLING";
|
|
937
|
+
readonly TOOL_DISCOVERY: "TOOL_DISCOVERY";
|
|
938
|
+
};
|
|
939
|
+
type AgentInstanceStatusEnum = (typeof AgentInstanceStatusEnum)[keyof typeof AgentInstanceStatusEnum];
|
|
940
|
+
/**
|
|
941
|
+
* AgentInstanceStatusEnum property with full advanced search capabilities.
|
|
942
|
+
*/
|
|
943
|
+
type AgentInstanceStatusFilterProperty = AgentInstanceStatusExactMatch | AdvancedAgentInstanceStatusFilter;
|
|
944
|
+
/**
|
|
945
|
+
* Advanced filter
|
|
946
|
+
*
|
|
947
|
+
* Advanced AgentInstanceStatusEnum filter.
|
|
948
|
+
*/
|
|
949
|
+
type AdvancedAgentInstanceStatusFilter = {
|
|
950
|
+
/**
|
|
951
|
+
* Checks for equality with the provided value.
|
|
952
|
+
*/
|
|
953
|
+
$eq?: AgentInstanceStatusEnum;
|
|
954
|
+
/**
|
|
955
|
+
* Checks for inequality with the provided value.
|
|
956
|
+
*/
|
|
957
|
+
$neq?: AgentInstanceStatusEnum;
|
|
958
|
+
/**
|
|
959
|
+
* Checks if the current property exists.
|
|
960
|
+
*/
|
|
961
|
+
$exists?: boolean;
|
|
962
|
+
/**
|
|
963
|
+
* Checks if the property matches any of the provided values.
|
|
964
|
+
*/
|
|
965
|
+
$in?: Array<AgentInstanceStatusEnum>;
|
|
966
|
+
$like?: LikeFilter;
|
|
967
|
+
};
|
|
756
968
|
/**
|
|
757
969
|
* Audit log item.
|
|
758
970
|
*/
|
|
@@ -1970,7 +2182,7 @@ type CreateClusterVariableRequest = {
|
|
|
1970
2182
|
/**
|
|
1971
2183
|
* The name of the cluster variable. Must be unique within its scope (global or tenant-specific).
|
|
1972
2184
|
*/
|
|
1973
|
-
name:
|
|
2185
|
+
name: ClusterVariableName;
|
|
1974
2186
|
/**
|
|
1975
2187
|
* The value of the cluster variable. Can be any JSON object or primitive value. Will be serialized as a JSON string in responses.
|
|
1976
2188
|
*/
|
|
@@ -2012,7 +2224,7 @@ type ClusterVariableResultBase = {
|
|
|
2012
2224
|
/**
|
|
2013
2225
|
* The name of the cluster variable. Unique within its scope (global or tenant-specific).
|
|
2014
2226
|
*/
|
|
2015
|
-
name:
|
|
2227
|
+
name: ClusterVariableName;
|
|
2016
2228
|
scope: ClusterVariableScopeEnum;
|
|
2017
2229
|
/**
|
|
2018
2230
|
* Only provided if the cluster variable scope is TENANT. Null for global scope variables.
|
|
@@ -3128,6 +3340,62 @@ type AdvancedResourceKeyFilter = {
|
|
|
3128
3340
|
*/
|
|
3129
3341
|
$notIn?: Array<ResourceKey>;
|
|
3130
3342
|
};
|
|
3343
|
+
type ResourceSearchQuerySortRequest = {
|
|
3344
|
+
/**
|
|
3345
|
+
* The field to sort by.
|
|
3346
|
+
*/
|
|
3347
|
+
field: 'resourceKey' | 'resourceName' | 'resourceId' | 'version' | 'versionTag' | 'deploymentKey' | 'tenantId';
|
|
3348
|
+
order?: SortOrderEnum;
|
|
3349
|
+
};
|
|
3350
|
+
type ResourceSearchQuery = SearchQueryRequest & {
|
|
3351
|
+
/**
|
|
3352
|
+
* Sort field criteria.
|
|
3353
|
+
*/
|
|
3354
|
+
sort?: Array<ResourceSearchQuerySortRequest>;
|
|
3355
|
+
/**
|
|
3356
|
+
* The resource search filters.
|
|
3357
|
+
*/
|
|
3358
|
+
filter?: ResourceFilter;
|
|
3359
|
+
};
|
|
3360
|
+
/**
|
|
3361
|
+
* Resource search filter.
|
|
3362
|
+
*/
|
|
3363
|
+
type ResourceFilter = {
|
|
3364
|
+
/**
|
|
3365
|
+
* The key for this resource.
|
|
3366
|
+
*/
|
|
3367
|
+
resourceKey?: ResourceKeyFilterProperty;
|
|
3368
|
+
/**
|
|
3369
|
+
* Resource name of this resource.
|
|
3370
|
+
*/
|
|
3371
|
+
resourceName?: StringFilterProperty;
|
|
3372
|
+
/**
|
|
3373
|
+
* Resource ID of this resource.
|
|
3374
|
+
*/
|
|
3375
|
+
resourceId?: StringFilterProperty;
|
|
3376
|
+
/**
|
|
3377
|
+
* Version of this resource.
|
|
3378
|
+
*/
|
|
3379
|
+
version?: IntegerFilterProperty;
|
|
3380
|
+
/**
|
|
3381
|
+
* Version tag of this resource.
|
|
3382
|
+
*/
|
|
3383
|
+
versionTag?: StringFilterProperty;
|
|
3384
|
+
/**
|
|
3385
|
+
* Deployment key of this resource.
|
|
3386
|
+
*/
|
|
3387
|
+
deploymentKey?: DeploymentKeyFilterProperty;
|
|
3388
|
+
/**
|
|
3389
|
+
* Tenant ID of this resource.
|
|
3390
|
+
*/
|
|
3391
|
+
tenantId?: TenantId;
|
|
3392
|
+
};
|
|
3393
|
+
type ResourceSearchQueryResult = SearchQueryResponse & {
|
|
3394
|
+
/**
|
|
3395
|
+
* The matching resources.
|
|
3396
|
+
*/
|
|
3397
|
+
items: Array<ResourceResult>;
|
|
3398
|
+
};
|
|
3131
3399
|
type DocumentReference = {
|
|
3132
3400
|
/**
|
|
3133
3401
|
* Document discriminator. Always set to "camunda".
|
|
@@ -3843,7 +4111,7 @@ type GroupCreateRequest = {
|
|
|
3843
4111
|
/**
|
|
3844
4112
|
* The ID of the new group.
|
|
3845
4113
|
*/
|
|
3846
|
-
groupId:
|
|
4114
|
+
groupId: GroupId;
|
|
3847
4115
|
/**
|
|
3848
4116
|
* The display name of the new group.
|
|
3849
4117
|
*/
|
|
@@ -3857,7 +4125,7 @@ type GroupCreateResult = {
|
|
|
3857
4125
|
/**
|
|
3858
4126
|
* The ID of the created group.
|
|
3859
4127
|
*/
|
|
3860
|
-
groupId:
|
|
4128
|
+
groupId: GroupId;
|
|
3861
4129
|
/**
|
|
3862
4130
|
* The display name of the created group.
|
|
3863
4131
|
*/
|
|
@@ -3879,9 +4147,9 @@ type GroupUpdateRequest = {
|
|
|
3879
4147
|
};
|
|
3880
4148
|
type GroupUpdateResult = {
|
|
3881
4149
|
/**
|
|
3882
|
-
* The unique
|
|
4150
|
+
* The unique group ID.
|
|
3883
4151
|
*/
|
|
3884
|
-
groupId:
|
|
4152
|
+
groupId: GroupId;
|
|
3885
4153
|
/**
|
|
3886
4154
|
* The name of the group.
|
|
3887
4155
|
*/
|
|
@@ -3902,7 +4170,7 @@ type GroupResult = {
|
|
|
3902
4170
|
/**
|
|
3903
4171
|
* The group ID.
|
|
3904
4172
|
*/
|
|
3905
|
-
groupId:
|
|
4173
|
+
groupId: GroupId;
|
|
3906
4174
|
/**
|
|
3907
4175
|
* The group description.
|
|
3908
4176
|
*/
|
|
@@ -3976,7 +4244,7 @@ type GroupClientResult = {
|
|
|
3976
4244
|
/**
|
|
3977
4245
|
* The ID of the client.
|
|
3978
4246
|
*/
|
|
3979
|
-
clientId:
|
|
4247
|
+
clientId: ClientId;
|
|
3980
4248
|
};
|
|
3981
4249
|
type GroupClientSearchResult = SearchQueryResponse & {
|
|
3982
4250
|
/**
|
|
@@ -5620,6 +5888,37 @@ type AdvancedDecisionEvaluationInstanceKeyFilter = {
|
|
|
5620
5888
|
*/
|
|
5621
5889
|
$notIn?: Array<DecisionEvaluationInstanceKey>;
|
|
5622
5890
|
};
|
|
5891
|
+
/**
|
|
5892
|
+
* AgentInstanceKey property with full advanced search capabilities.
|
|
5893
|
+
*/
|
|
5894
|
+
type AgentInstanceKeyFilterProperty = AgentInstanceKeyExactMatch | AdvancedAgentInstanceKeyFilter;
|
|
5895
|
+
/**
|
|
5896
|
+
* Advanced filter
|
|
5897
|
+
*
|
|
5898
|
+
* Advanced AgentInstanceKey filter.
|
|
5899
|
+
*/
|
|
5900
|
+
type AdvancedAgentInstanceKeyFilter = {
|
|
5901
|
+
/**
|
|
5902
|
+
* Checks for equality with the provided value.
|
|
5903
|
+
*/
|
|
5904
|
+
$eq?: AgentInstanceKey;
|
|
5905
|
+
/**
|
|
5906
|
+
* Checks for inequality with the provided value.
|
|
5907
|
+
*/
|
|
5908
|
+
$neq?: AgentInstanceKey;
|
|
5909
|
+
/**
|
|
5910
|
+
* Checks if the current property exists.
|
|
5911
|
+
*/
|
|
5912
|
+
$exists?: boolean;
|
|
5913
|
+
/**
|
|
5914
|
+
* Checks if the property matches any of the provided values.
|
|
5915
|
+
*/
|
|
5916
|
+
$in?: Array<AgentInstanceKey>;
|
|
5917
|
+
/**
|
|
5918
|
+
* Checks if the property matches none of the provided values.
|
|
5919
|
+
*/
|
|
5920
|
+
$notIn?: Array<AgentInstanceKey>;
|
|
5921
|
+
};
|
|
5623
5922
|
/**
|
|
5624
5923
|
* AuditLogKey property with full advanced search capabilities.
|
|
5625
5924
|
*/
|
|
@@ -5783,7 +6082,7 @@ type MappingRuleCreateRequest = MappingRuleCreateUpdateRequest & {
|
|
|
5783
6082
|
/**
|
|
5784
6083
|
* The unique ID of the mapping rule.
|
|
5785
6084
|
*/
|
|
5786
|
-
mappingRuleId:
|
|
6085
|
+
mappingRuleId: MappingRuleId;
|
|
5787
6086
|
};
|
|
5788
6087
|
type MappingRuleUpdateRequest = MappingRuleCreateUpdateRequest;
|
|
5789
6088
|
type MappingRuleCreateUpdateResult = {
|
|
@@ -5802,7 +6101,7 @@ type MappingRuleCreateUpdateResult = {
|
|
|
5802
6101
|
/**
|
|
5803
6102
|
* The unique ID of the mapping rule.
|
|
5804
6103
|
*/
|
|
5805
|
-
mappingRuleId:
|
|
6104
|
+
mappingRuleId: MappingRuleId;
|
|
5806
6105
|
};
|
|
5807
6106
|
type MappingRuleCreateResult = MappingRuleCreateUpdateResult;
|
|
5808
6107
|
type MappingRuleUpdateResult = MappingRuleCreateUpdateResult;
|
|
@@ -5828,7 +6127,7 @@ type MappingRuleResult = {
|
|
|
5828
6127
|
/**
|
|
5829
6128
|
* The ID of the mapping rule.
|
|
5830
6129
|
*/
|
|
5831
|
-
mappingRuleId:
|
|
6130
|
+
mappingRuleId: MappingRuleId;
|
|
5832
6131
|
};
|
|
5833
6132
|
type MappingRuleSearchQuerySortRequest = {
|
|
5834
6133
|
/**
|
|
@@ -5866,7 +6165,7 @@ type MappingRuleFilter = {
|
|
|
5866
6165
|
/**
|
|
5867
6166
|
* The ID of the mapping rule.
|
|
5868
6167
|
*/
|
|
5869
|
-
mappingRuleId?:
|
|
6168
|
+
mappingRuleId?: MappingRuleId;
|
|
5870
6169
|
};
|
|
5871
6170
|
type MessageCorrelationRequest = {
|
|
5872
6171
|
/**
|
|
@@ -7517,7 +7816,7 @@ type RoleCreateRequest = {
|
|
|
7517
7816
|
/**
|
|
7518
7817
|
* The ID of the new role.
|
|
7519
7818
|
*/
|
|
7520
|
-
roleId:
|
|
7819
|
+
roleId: RoleId;
|
|
7521
7820
|
/**
|
|
7522
7821
|
* The display name of the new role.
|
|
7523
7822
|
*/
|
|
@@ -7531,7 +7830,7 @@ type RoleCreateResult = {
|
|
|
7531
7830
|
/**
|
|
7532
7831
|
* The ID of the created role.
|
|
7533
7832
|
*/
|
|
7534
|
-
roleId:
|
|
7833
|
+
roleId: RoleId;
|
|
7535
7834
|
/**
|
|
7536
7835
|
* The display name of the created role.
|
|
7537
7836
|
*/
|
|
@@ -7563,7 +7862,7 @@ type RoleUpdateResult = {
|
|
|
7563
7862
|
/**
|
|
7564
7863
|
* The ID of the updated role.
|
|
7565
7864
|
*/
|
|
7566
|
-
roleId:
|
|
7865
|
+
roleId: RoleId;
|
|
7567
7866
|
};
|
|
7568
7867
|
/**
|
|
7569
7868
|
* Role search response item.
|
|
@@ -7576,7 +7875,7 @@ type RoleResult = {
|
|
|
7576
7875
|
/**
|
|
7577
7876
|
* The role id.
|
|
7578
7877
|
*/
|
|
7579
|
-
roleId:
|
|
7878
|
+
roleId: RoleId;
|
|
7580
7879
|
/**
|
|
7581
7880
|
* The description of the role.
|
|
7582
7881
|
*/
|
|
@@ -7609,7 +7908,7 @@ type RoleFilter = {
|
|
|
7609
7908
|
/**
|
|
7610
7909
|
* The role ID search filters.
|
|
7611
7910
|
*/
|
|
7612
|
-
roleId?:
|
|
7911
|
+
roleId?: RoleId;
|
|
7613
7912
|
/**
|
|
7614
7913
|
* The role name search filters.
|
|
7615
7914
|
*/
|
|
@@ -7650,7 +7949,7 @@ type RoleClientResult = {
|
|
|
7650
7949
|
/**
|
|
7651
7950
|
* The ID of the client.
|
|
7652
7951
|
*/
|
|
7653
|
-
clientId:
|
|
7952
|
+
clientId: ClientId;
|
|
7654
7953
|
};
|
|
7655
7954
|
type RoleClientSearchResult = SearchQueryResponse & {
|
|
7656
7955
|
/**
|
|
@@ -7675,7 +7974,7 @@ type RoleGroupResult = {
|
|
|
7675
7974
|
/**
|
|
7676
7975
|
* The id of the group.
|
|
7677
7976
|
*/
|
|
7678
|
-
groupId:
|
|
7977
|
+
groupId: GroupId;
|
|
7679
7978
|
};
|
|
7680
7979
|
type RoleGroupSearchResult = SearchQueryResponse & {
|
|
7681
7980
|
/**
|
|
@@ -7884,9 +8183,12 @@ type JobMetricsConfigurationResponse = {
|
|
|
7884
8183
|
};
|
|
7885
8184
|
type TenantCreateRequest = {
|
|
7886
8185
|
/**
|
|
7887
|
-
* The unique ID for the tenant. Must be
|
|
8186
|
+
* The unique ID for the tenant. Must be 31 characters or less and match
|
|
8187
|
+
* `^[\w.-]{1,31}$` (word characters, `.`, `-`). The literal
|
|
8188
|
+
* `<default>` is also accepted as the default-tenant alias.
|
|
8189
|
+
*
|
|
7888
8190
|
*/
|
|
7889
|
-
tenantId:
|
|
8191
|
+
tenantId: TenantId;
|
|
7890
8192
|
/**
|
|
7891
8193
|
* The name of the tenant.
|
|
7892
8194
|
*/
|
|
@@ -7897,6 +8199,9 @@ type TenantCreateRequest = {
|
|
|
7897
8199
|
description?: string;
|
|
7898
8200
|
};
|
|
7899
8201
|
type TenantCreateResult = {
|
|
8202
|
+
/**
|
|
8203
|
+
* The unique identifier of the created tenant.
|
|
8204
|
+
*/
|
|
7900
8205
|
tenantId: TenantId;
|
|
7901
8206
|
/**
|
|
7902
8207
|
* The name of the tenant.
|
|
@@ -7918,6 +8223,9 @@ type TenantUpdateRequest = {
|
|
|
7918
8223
|
description?: string;
|
|
7919
8224
|
};
|
|
7920
8225
|
type TenantUpdateResult = {
|
|
8226
|
+
/**
|
|
8227
|
+
* The unique identifier of the updated tenant.
|
|
8228
|
+
*/
|
|
7921
8229
|
tenantId: TenantId;
|
|
7922
8230
|
/**
|
|
7923
8231
|
* The name of the tenant.
|
|
@@ -7936,6 +8244,9 @@ type TenantResult = {
|
|
|
7936
8244
|
* The tenant name.
|
|
7937
8245
|
*/
|
|
7938
8246
|
name: string;
|
|
8247
|
+
/**
|
|
8248
|
+
* The unique identifier of the tenant.
|
|
8249
|
+
*/
|
|
7939
8250
|
tenantId: TenantId;
|
|
7940
8251
|
/**
|
|
7941
8252
|
* The tenant description.
|
|
@@ -7966,6 +8277,9 @@ type TenantSearchQueryRequest = SearchQueryRequest & {
|
|
|
7966
8277
|
* Tenant filter request
|
|
7967
8278
|
*/
|
|
7968
8279
|
type TenantFilter = {
|
|
8280
|
+
/**
|
|
8281
|
+
* The unique identifier of the tenant.
|
|
8282
|
+
*/
|
|
7969
8283
|
tenantId?: TenantId;
|
|
7970
8284
|
/**
|
|
7971
8285
|
* The name of the tenant.
|
|
@@ -8007,7 +8321,7 @@ type TenantClientResult = {
|
|
|
8007
8321
|
/**
|
|
8008
8322
|
* The ID of the client.
|
|
8009
8323
|
*/
|
|
8010
|
-
clientId:
|
|
8324
|
+
clientId: ClientId;
|
|
8011
8325
|
};
|
|
8012
8326
|
type TenantClientSearchResult = SearchQueryResponse & {
|
|
8013
8327
|
/**
|
|
@@ -8030,9 +8344,9 @@ type TenantClientSearchQuerySortRequest = {
|
|
|
8030
8344
|
};
|
|
8031
8345
|
type TenantGroupResult = {
|
|
8032
8346
|
/**
|
|
8033
|
-
* The
|
|
8347
|
+
* The group ID.
|
|
8034
8348
|
*/
|
|
8035
|
-
groupId:
|
|
8349
|
+
groupId: GroupId;
|
|
8036
8350
|
};
|
|
8037
8351
|
type TenantGroupSearchResult = SearchQueryResponse & {
|
|
8038
8352
|
/**
|
|
@@ -8485,9 +8799,9 @@ type UserRequest = {
|
|
|
8485
8799
|
*/
|
|
8486
8800
|
password: string;
|
|
8487
8801
|
/**
|
|
8488
|
-
* The username of the user.
|
|
8802
|
+
* The username of the new user.
|
|
8489
8803
|
*/
|
|
8490
|
-
username:
|
|
8804
|
+
username: Username;
|
|
8491
8805
|
/**
|
|
8492
8806
|
* The name of the user.
|
|
8493
8807
|
*/
|
|
@@ -8498,6 +8812,9 @@ type UserRequest = {
|
|
|
8498
8812
|
email?: string;
|
|
8499
8813
|
};
|
|
8500
8814
|
type UserCreateResult = {
|
|
8815
|
+
/**
|
|
8816
|
+
* The username of the created user.
|
|
8817
|
+
*/
|
|
8501
8818
|
username: Username;
|
|
8502
8819
|
/**
|
|
8503
8820
|
* The name of the user.
|
|
@@ -8523,6 +8840,9 @@ type UserUpdateRequest = {
|
|
|
8523
8840
|
email?: string;
|
|
8524
8841
|
};
|
|
8525
8842
|
type UserUpdateResult = {
|
|
8843
|
+
/**
|
|
8844
|
+
* The username of the updated user.
|
|
8845
|
+
*/
|
|
8526
8846
|
username: Username;
|
|
8527
8847
|
/**
|
|
8528
8848
|
* The name of the user.
|
|
@@ -8534,6 +8854,9 @@ type UserUpdateResult = {
|
|
|
8534
8854
|
email: string | null;
|
|
8535
8855
|
};
|
|
8536
8856
|
type UserResult = {
|
|
8857
|
+
/**
|
|
8858
|
+
* The username of the user.
|
|
8859
|
+
*/
|
|
8537
8860
|
username: Username;
|
|
8538
8861
|
/**
|
|
8539
8862
|
* The name of the user.
|
|
@@ -8753,6 +9076,12 @@ type SetVariableRequest = {
|
|
|
8753
9076
|
local?: boolean;
|
|
8754
9077
|
operationReference?: OperationReference;
|
|
8755
9078
|
};
|
|
9079
|
+
/**
|
|
9080
|
+
* Exact match
|
|
9081
|
+
*
|
|
9082
|
+
* Matches the value exactly.
|
|
9083
|
+
*/
|
|
9084
|
+
type AgentInstanceStatusExactMatch = AgentInstanceStatusEnum;
|
|
8756
9085
|
/**
|
|
8757
9086
|
* Exact match
|
|
8758
9087
|
*
|
|
@@ -8939,6 +9268,12 @@ type VariableKeyExactMatch = VariableKey;
|
|
|
8939
9268
|
* Matches the value exactly.
|
|
8940
9269
|
*/
|
|
8941
9270
|
type DecisionEvaluationInstanceKeyExactMatch = DecisionEvaluationInstanceKey;
|
|
9271
|
+
/**
|
|
9272
|
+
* Exact match
|
|
9273
|
+
*
|
|
9274
|
+
* Matches the value exactly.
|
|
9275
|
+
*/
|
|
9276
|
+
type AgentInstanceKeyExactMatch = AgentInstanceKey;
|
|
8942
9277
|
/**
|
|
8943
9278
|
* Exact match
|
|
8944
9279
|
*
|
|
@@ -8993,6 +9328,81 @@ type ProcessInstanceStateExactMatch = ProcessInstanceStateEnum;
|
|
|
8993
9328
|
* Matches the value exactly.
|
|
8994
9329
|
*/
|
|
8995
9330
|
type UserTaskStateExactMatch = UserTaskStateEnum;
|
|
9331
|
+
type GetAgentInstanceData = {
|
|
9332
|
+
body?: never;
|
|
9333
|
+
path: {
|
|
9334
|
+
/**
|
|
9335
|
+
* The key of the agent instance to retrieve.
|
|
9336
|
+
*/
|
|
9337
|
+
agentInstanceKey: AgentInstanceKey;
|
|
9338
|
+
};
|
|
9339
|
+
query?: never;
|
|
9340
|
+
url: '/agent-instances/{agentInstanceKey}';
|
|
9341
|
+
};
|
|
9342
|
+
type GetAgentInstanceErrors = {
|
|
9343
|
+
/**
|
|
9344
|
+
* The provided data is not valid.
|
|
9345
|
+
*/
|
|
9346
|
+
400: ProblemDetail;
|
|
9347
|
+
/**
|
|
9348
|
+
* The request lacks valid authentication credentials.
|
|
9349
|
+
*/
|
|
9350
|
+
401: ProblemDetail;
|
|
9351
|
+
/**
|
|
9352
|
+
* Forbidden. The request is not allowed.
|
|
9353
|
+
*/
|
|
9354
|
+
403: ProblemDetail;
|
|
9355
|
+
/**
|
|
9356
|
+
* The agent instance with the given key was not found.
|
|
9357
|
+
* More details are provided in the response body.
|
|
9358
|
+
*
|
|
9359
|
+
*/
|
|
9360
|
+
404: ProblemDetail;
|
|
9361
|
+
/**
|
|
9362
|
+
* An internal error occurred while processing the request.
|
|
9363
|
+
*/
|
|
9364
|
+
500: ProblemDetail;
|
|
9365
|
+
};
|
|
9366
|
+
type GetAgentInstanceError = GetAgentInstanceErrors[keyof GetAgentInstanceErrors];
|
|
9367
|
+
type GetAgentInstanceResponses = {
|
|
9368
|
+
/**
|
|
9369
|
+
* The agent instance is successfully returned.
|
|
9370
|
+
*/
|
|
9371
|
+
200: AgentInstanceResult;
|
|
9372
|
+
};
|
|
9373
|
+
type GetAgentInstanceResponse = GetAgentInstanceResponses[keyof GetAgentInstanceResponses];
|
|
9374
|
+
type SearchAgentInstancesData = {
|
|
9375
|
+
body?: AgentInstanceSearchQuery;
|
|
9376
|
+
path?: never;
|
|
9377
|
+
query?: never;
|
|
9378
|
+
url: '/agent-instances/search';
|
|
9379
|
+
};
|
|
9380
|
+
type SearchAgentInstancesErrors = {
|
|
9381
|
+
/**
|
|
9382
|
+
* The provided data is not valid.
|
|
9383
|
+
*/
|
|
9384
|
+
400: ProblemDetail;
|
|
9385
|
+
/**
|
|
9386
|
+
* The request lacks valid authentication credentials.
|
|
9387
|
+
*/
|
|
9388
|
+
401: ProblemDetail;
|
|
9389
|
+
/**
|
|
9390
|
+
* Forbidden. The request is not allowed.
|
|
9391
|
+
*/
|
|
9392
|
+
403: ProblemDetail;
|
|
9393
|
+
/**
|
|
9394
|
+
* An internal error occurred while processing the request.
|
|
9395
|
+
*/
|
|
9396
|
+
500: ProblemDetail;
|
|
9397
|
+
};
|
|
9398
|
+
type SearchAgentInstancesError = SearchAgentInstancesErrors[keyof SearchAgentInstancesErrors];
|
|
9399
|
+
type SearchAgentInstancesResponses = {
|
|
9400
|
+
/**
|
|
9401
|
+
* The agent instance search result.
|
|
9402
|
+
*/
|
|
9403
|
+
200: AgentInstanceSearchQueryResult;
|
|
9404
|
+
};
|
|
9405
|
+
type SearchAgentInstancesResponse = SearchAgentInstancesResponses[keyof SearchAgentInstancesResponses];
|
|
8996
9406
|
type SearchAuditLogsData = {
|
|
8997
9407
|
body?: AuditLogSearchQueryRequest;
|
|
8998
9408
|
path?: never;
|
|
@@ -9570,7 +9980,7 @@ type DeleteGlobalClusterVariableData = {
|
|
|
9570
9980
|
/**
|
|
9571
9981
|
* The name of the cluster variable
|
|
9572
9982
|
*/
|
|
9573
|
-
name:
|
|
9983
|
+
name: ClusterVariableName;
|
|
9574
9984
|
};
|
|
9575
9985
|
query?: never;
|
|
9576
9986
|
url: '/cluster-variables/global/{name}';
|
|
@@ -9611,7 +10021,7 @@ type GetGlobalClusterVariableData = {
|
|
|
9611
10021
|
/**
|
|
9612
10022
|
* The name of the cluster variable
|
|
9613
10023
|
*/
|
|
9614
|
-
name:
|
|
10024
|
+
name: ClusterVariableName;
|
|
9615
10025
|
};
|
|
9616
10026
|
query?: never;
|
|
9617
10027
|
url: '/cluster-variables/global/{name}';
|
|
@@ -9652,7 +10062,7 @@ type UpdateGlobalClusterVariableData = {
|
|
|
9652
10062
|
/**
|
|
9653
10063
|
* The name of the cluster variable
|
|
9654
10064
|
*/
|
|
9655
|
-
name:
|
|
10065
|
+
name: ClusterVariableName;
|
|
9656
10066
|
};
|
|
9657
10067
|
query?: never;
|
|
9658
10068
|
url: '/cluster-variables/global/{name}';
|
|
@@ -9775,7 +10185,7 @@ type DeleteTenantClusterVariableData = {
|
|
|
9775
10185
|
/**
|
|
9776
10186
|
* The name of the cluster variable
|
|
9777
10187
|
*/
|
|
9778
|
-
name:
|
|
10188
|
+
name: ClusterVariableName;
|
|
9779
10189
|
};
|
|
9780
10190
|
query?: never;
|
|
9781
10191
|
url: '/cluster-variables/tenants/{tenantId}/{name}';
|
|
@@ -9820,7 +10230,7 @@ type GetTenantClusterVariableData = {
|
|
|
9820
10230
|
/**
|
|
9821
10231
|
* The name of the cluster variable
|
|
9822
10232
|
*/
|
|
9823
|
-
name:
|
|
10233
|
+
name: ClusterVariableName;
|
|
9824
10234
|
};
|
|
9825
10235
|
query?: never;
|
|
9826
10236
|
url: '/cluster-variables/tenants/{tenantId}/{name}';
|
|
@@ -9865,7 +10275,7 @@ type UpdateTenantClusterVariableData = {
|
|
|
9865
10275
|
/**
|
|
9866
10276
|
* The name of the cluster variable
|
|
9867
10277
|
*/
|
|
9868
|
-
name:
|
|
10278
|
+
name: ClusterVariableName;
|
|
9869
10279
|
};
|
|
9870
10280
|
query?: never;
|
|
9871
10281
|
url: '/cluster-variables/tenants/{tenantId}/{name}';
|
|
@@ -10196,9 +10606,7 @@ type GetDecisionInstanceResponses = {
|
|
|
10196
10606
|
};
|
|
10197
10607
|
type GetDecisionInstanceResponse = GetDecisionInstanceResponses[keyof GetDecisionInstanceResponses];
|
|
10198
10608
|
type DeleteDecisionInstanceData = {
|
|
10199
|
-
body?:
|
|
10200
|
-
operationReference?: OperationReference;
|
|
10201
|
-
} | null;
|
|
10609
|
+
body?: DeleteDecisionInstanceRequest;
|
|
10202
10610
|
path: {
|
|
10203
10611
|
/**
|
|
10204
10612
|
* The key of the decision evaluation to delete.
|
|
@@ -11126,7 +11534,7 @@ type DeleteGroupData = {
|
|
|
11126
11534
|
/**
|
|
11127
11535
|
* The group ID.
|
|
11128
11536
|
*/
|
|
11129
|
-
groupId:
|
|
11537
|
+
groupId: GroupId;
|
|
11130
11538
|
};
|
|
11131
11539
|
query?: never;
|
|
11132
11540
|
url: '/groups/{groupId}';
|
|
@@ -11164,7 +11572,7 @@ type GetGroupData = {
|
|
|
11164
11572
|
/**
|
|
11165
11573
|
* The group ID.
|
|
11166
11574
|
*/
|
|
11167
|
-
groupId:
|
|
11575
|
+
groupId: GroupId;
|
|
11168
11576
|
};
|
|
11169
11577
|
query?: never;
|
|
11170
11578
|
url: '/groups/{groupId}';
|
|
@@ -11201,7 +11609,7 @@ type UpdateGroupData = {
|
|
|
11201
11609
|
/**
|
|
11202
11610
|
* The group ID.
|
|
11203
11611
|
*/
|
|
11204
|
-
groupId:
|
|
11612
|
+
groupId: GroupId;
|
|
11205
11613
|
};
|
|
11206
11614
|
query?: never;
|
|
11207
11615
|
url: '/groups/{groupId}';
|
|
@@ -11238,23 +11646,12 @@ type UpdateGroupResponses = {
|
|
|
11238
11646
|
};
|
|
11239
11647
|
type UpdateGroupResponse = UpdateGroupResponses[keyof UpdateGroupResponses];
|
|
11240
11648
|
type SearchClientsForGroupData = {
|
|
11241
|
-
body?:
|
|
11242
|
-
/**
|
|
11243
|
-
* Sort field criteria.
|
|
11244
|
-
*/
|
|
11245
|
-
sort?: Array<{
|
|
11246
|
-
/**
|
|
11247
|
-
* The field to sort by.
|
|
11248
|
-
*/
|
|
11249
|
-
field: 'clientId';
|
|
11250
|
-
order?: SortOrderEnum;
|
|
11251
|
-
}>;
|
|
11252
|
-
};
|
|
11649
|
+
body?: GroupClientSearchQueryRequest;
|
|
11253
11650
|
path: {
|
|
11254
11651
|
/**
|
|
11255
11652
|
* The group ID.
|
|
11256
11653
|
*/
|
|
11257
|
-
groupId:
|
|
11654
|
+
groupId: GroupId;
|
|
11258
11655
|
};
|
|
11259
11656
|
query?: never;
|
|
11260
11657
|
url: '/groups/{groupId}/clients/search';
|
|
@@ -11286,17 +11683,7 @@ type SearchClientsForGroupResponses = {
|
|
|
11286
11683
|
/**
|
|
11287
11684
|
* The clients assigned to the group.
|
|
11288
11685
|
*/
|
|
11289
|
-
200:
|
|
11290
|
-
/**
|
|
11291
|
-
* The matching client IDs.
|
|
11292
|
-
*/
|
|
11293
|
-
items: Array<{
|
|
11294
|
-
/**
|
|
11295
|
-
* The ID of the client.
|
|
11296
|
-
*/
|
|
11297
|
-
clientId: string;
|
|
11298
|
-
}>;
|
|
11299
|
-
};
|
|
11686
|
+
200: GroupClientSearchResult;
|
|
11300
11687
|
};
|
|
11301
11688
|
type SearchClientsForGroupResponse = SearchClientsForGroupResponses[keyof SearchClientsForGroupResponses];
|
|
11302
11689
|
type UnassignClientFromGroupData = {
|
|
@@ -11305,11 +11692,11 @@ type UnassignClientFromGroupData = {
|
|
|
11305
11692
|
/**
|
|
11306
11693
|
* The group ID.
|
|
11307
11694
|
*/
|
|
11308
|
-
groupId:
|
|
11695
|
+
groupId: GroupId;
|
|
11309
11696
|
/**
|
|
11310
11697
|
* The client ID.
|
|
11311
11698
|
*/
|
|
11312
|
-
clientId:
|
|
11699
|
+
clientId: ClientId;
|
|
11313
11700
|
};
|
|
11314
11701
|
query?: never;
|
|
11315
11702
|
url: '/groups/{groupId}/clients/{clientId}';
|
|
@@ -11351,11 +11738,11 @@ type AssignClientToGroupData = {
|
|
|
11351
11738
|
/**
|
|
11352
11739
|
* The group ID.
|
|
11353
11740
|
*/
|
|
11354
|
-
groupId:
|
|
11741
|
+
groupId: GroupId;
|
|
11355
11742
|
/**
|
|
11356
11743
|
* The client ID.
|
|
11357
11744
|
*/
|
|
11358
|
-
clientId:
|
|
11745
|
+
clientId: ClientId;
|
|
11359
11746
|
};
|
|
11360
11747
|
query?: never;
|
|
11361
11748
|
url: '/groups/{groupId}/clients/{clientId}';
|
|
@@ -11401,7 +11788,7 @@ type SearchMappingRulesForGroupData = {
|
|
|
11401
11788
|
/**
|
|
11402
11789
|
* The group ID.
|
|
11403
11790
|
*/
|
|
11404
|
-
groupId:
|
|
11791
|
+
groupId: GroupId;
|
|
11405
11792
|
};
|
|
11406
11793
|
query?: never;
|
|
11407
11794
|
url: '/groups/{groupId}/mapping-rules/search';
|
|
@@ -11433,12 +11820,7 @@ type SearchMappingRulesForGroupResponses = {
|
|
|
11433
11820
|
/**
|
|
11434
11821
|
* The mapping rules assigned to the group.
|
|
11435
11822
|
*/
|
|
11436
|
-
200:
|
|
11437
|
-
/**
|
|
11438
|
-
* The matching mapping rules.
|
|
11439
|
-
*/
|
|
11440
|
-
items: Array<MappingRuleResult>;
|
|
11441
|
-
};
|
|
11823
|
+
200: GroupMappingRuleSearchResult;
|
|
11442
11824
|
};
|
|
11443
11825
|
type SearchMappingRulesForGroupResponse = SearchMappingRulesForGroupResponses[keyof SearchMappingRulesForGroupResponses];
|
|
11444
11826
|
type UnassignMappingRuleFromGroupData = {
|
|
@@ -11447,11 +11829,11 @@ type UnassignMappingRuleFromGroupData = {
|
|
|
11447
11829
|
/**
|
|
11448
11830
|
* The group ID.
|
|
11449
11831
|
*/
|
|
11450
|
-
groupId:
|
|
11832
|
+
groupId: GroupId;
|
|
11451
11833
|
/**
|
|
11452
11834
|
* The mapping rule ID.
|
|
11453
11835
|
*/
|
|
11454
|
-
mappingRuleId:
|
|
11836
|
+
mappingRuleId: MappingRuleId;
|
|
11455
11837
|
};
|
|
11456
11838
|
query?: never;
|
|
11457
11839
|
url: '/groups/{groupId}/mapping-rules/{mappingRuleId}';
|
|
@@ -11493,11 +11875,11 @@ type AssignMappingRuleToGroupData = {
|
|
|
11493
11875
|
/**
|
|
11494
11876
|
* The group ID.
|
|
11495
11877
|
*/
|
|
11496
|
-
groupId:
|
|
11878
|
+
groupId: GroupId;
|
|
11497
11879
|
/**
|
|
11498
11880
|
* The mapping rule ID.
|
|
11499
11881
|
*/
|
|
11500
|
-
mappingRuleId:
|
|
11882
|
+
mappingRuleId: MappingRuleId;
|
|
11501
11883
|
};
|
|
11502
11884
|
query?: never;
|
|
11503
11885
|
url: '/groups/{groupId}/mapping-rules/{mappingRuleId}';
|
|
@@ -11543,7 +11925,7 @@ type SearchRolesForGroupData = {
|
|
|
11543
11925
|
/**
|
|
11544
11926
|
* The group ID.
|
|
11545
11927
|
*/
|
|
11546
|
-
groupId:
|
|
11928
|
+
groupId: GroupId;
|
|
11547
11929
|
};
|
|
11548
11930
|
query?: never;
|
|
11549
11931
|
url: '/groups/{groupId}/roles/search';
|
|
@@ -11575,32 +11957,16 @@ type SearchRolesForGroupResponses = {
|
|
|
11575
11957
|
/**
|
|
11576
11958
|
* The roles assigned to the group.
|
|
11577
11959
|
*/
|
|
11578
|
-
200:
|
|
11579
|
-
/**
|
|
11580
|
-
* The matching roles.
|
|
11581
|
-
*/
|
|
11582
|
-
items: Array<RoleResult>;
|
|
11583
|
-
};
|
|
11960
|
+
200: GroupRoleSearchResult;
|
|
11584
11961
|
};
|
|
11585
11962
|
type SearchRolesForGroupResponse = SearchRolesForGroupResponses[keyof SearchRolesForGroupResponses];
|
|
11586
11963
|
type SearchUsersForGroupData = {
|
|
11587
|
-
body?:
|
|
11588
|
-
/**
|
|
11589
|
-
* Sort field criteria.
|
|
11590
|
-
*/
|
|
11591
|
-
sort?: Array<{
|
|
11592
|
-
/**
|
|
11593
|
-
* The field to sort by.
|
|
11594
|
-
*/
|
|
11595
|
-
field: 'username';
|
|
11596
|
-
order?: SortOrderEnum;
|
|
11597
|
-
}>;
|
|
11598
|
-
};
|
|
11964
|
+
body?: GroupUserSearchQueryRequest;
|
|
11599
11965
|
path: {
|
|
11600
11966
|
/**
|
|
11601
11967
|
* The group ID.
|
|
11602
11968
|
*/
|
|
11603
|
-
groupId:
|
|
11969
|
+
groupId: GroupId;
|
|
11604
11970
|
};
|
|
11605
11971
|
query?: never;
|
|
11606
11972
|
url: '/groups/{groupId}/users/search';
|
|
@@ -11632,14 +11998,7 @@ type SearchUsersForGroupResponses = {
|
|
|
11632
11998
|
/**
|
|
11633
11999
|
* The users assigned to the group.
|
|
11634
12000
|
*/
|
|
11635
|
-
200:
|
|
11636
|
-
/**
|
|
11637
|
-
* The matching members.
|
|
11638
|
-
*/
|
|
11639
|
-
items: Array<{
|
|
11640
|
-
username: Username;
|
|
11641
|
-
}>;
|
|
11642
|
-
};
|
|
12001
|
+
200: GroupUserSearchResult;
|
|
11643
12002
|
};
|
|
11644
12003
|
type SearchUsersForGroupResponse = SearchUsersForGroupResponses[keyof SearchUsersForGroupResponses];
|
|
11645
12004
|
type UnassignUserFromGroupData = {
|
|
@@ -11648,7 +12007,7 @@ type UnassignUserFromGroupData = {
|
|
|
11648
12007
|
/**
|
|
11649
12008
|
* The group ID.
|
|
11650
12009
|
*/
|
|
11651
|
-
groupId:
|
|
12010
|
+
groupId: GroupId;
|
|
11652
12011
|
/**
|
|
11653
12012
|
* The user username.
|
|
11654
12013
|
*/
|
|
@@ -11694,7 +12053,7 @@ type AssignUserToGroupData = {
|
|
|
11694
12053
|
/**
|
|
11695
12054
|
* The group ID.
|
|
11696
12055
|
*/
|
|
11697
|
-
groupId:
|
|
12056
|
+
groupId: GroupId;
|
|
11698
12057
|
/**
|
|
11699
12058
|
* The user username.
|
|
11700
12059
|
*/
|
|
@@ -12388,7 +12747,7 @@ type CreateMappingRuleResponses = {
|
|
|
12388
12747
|
/**
|
|
12389
12748
|
* The mapping rule was created successfully.
|
|
12390
12749
|
*/
|
|
12391
|
-
201:
|
|
12750
|
+
201: MappingRuleCreateResult;
|
|
12392
12751
|
};
|
|
12393
12752
|
type CreateMappingRuleResponse = CreateMappingRuleResponses[keyof CreateMappingRuleResponses];
|
|
12394
12753
|
type SearchMappingRuleData = {
|
|
@@ -12420,12 +12779,7 @@ type SearchMappingRuleResponses = {
|
|
|
12420
12779
|
/**
|
|
12421
12780
|
* The mapping rule search result.
|
|
12422
12781
|
*/
|
|
12423
|
-
200:
|
|
12424
|
-
/**
|
|
12425
|
-
* The matching mapping rules.
|
|
12426
|
-
*/
|
|
12427
|
-
items: Array<MappingRuleResult>;
|
|
12428
|
-
};
|
|
12782
|
+
200: MappingRuleSearchQueryResult;
|
|
12429
12783
|
};
|
|
12430
12784
|
type SearchMappingRuleResponse = SearchMappingRuleResponses[keyof SearchMappingRuleResponses];
|
|
12431
12785
|
type DeleteMappingRuleData = {
|
|
@@ -12434,7 +12788,7 @@ type DeleteMappingRuleData = {
|
|
|
12434
12788
|
/**
|
|
12435
12789
|
* The ID of the mapping rule to delete.
|
|
12436
12790
|
*/
|
|
12437
|
-
mappingRuleId:
|
|
12791
|
+
mappingRuleId: MappingRuleId;
|
|
12438
12792
|
};
|
|
12439
12793
|
query?: never;
|
|
12440
12794
|
url: '/mapping-rules/{mappingRuleId}';
|
|
@@ -12472,7 +12826,7 @@ type GetMappingRuleData = {
|
|
|
12472
12826
|
/**
|
|
12473
12827
|
* The ID of the mapping rule to get.
|
|
12474
12828
|
*/
|
|
12475
|
-
mappingRuleId:
|
|
12829
|
+
mappingRuleId: MappingRuleId;
|
|
12476
12830
|
};
|
|
12477
12831
|
query?: never;
|
|
12478
12832
|
url: '/mapping-rules/{mappingRuleId}';
|
|
@@ -12505,7 +12859,7 @@ type UpdateMappingRuleData = {
|
|
|
12505
12859
|
/**
|
|
12506
12860
|
* The ID of the mapping rule to update.
|
|
12507
12861
|
*/
|
|
12508
|
-
mappingRuleId:
|
|
12862
|
+
mappingRuleId: MappingRuleId;
|
|
12509
12863
|
};
|
|
12510
12864
|
query?: never;
|
|
12511
12865
|
url: '/mapping-rules/{mappingRuleId}';
|
|
@@ -12540,7 +12894,7 @@ type UpdateMappingRuleResponses = {
|
|
|
12540
12894
|
/**
|
|
12541
12895
|
* The mapping rule was updated successfully.
|
|
12542
12896
|
*/
|
|
12543
|
-
200:
|
|
12897
|
+
200: MappingRuleUpdateResult;
|
|
12544
12898
|
};
|
|
12545
12899
|
type UpdateMappingRuleResponse = UpdateMappingRuleResponses[keyof UpdateMappingRuleResponses];
|
|
12546
12900
|
type SearchMessageSubscriptionsData = {
|
|
@@ -13267,9 +13621,7 @@ type GetProcessInstanceCallHierarchyResponses = {
|
|
|
13267
13621
|
};
|
|
13268
13622
|
type GetProcessInstanceCallHierarchyResponse = GetProcessInstanceCallHierarchyResponses[keyof GetProcessInstanceCallHierarchyResponses];
|
|
13269
13623
|
type CancelProcessInstanceData = {
|
|
13270
|
-
body?:
|
|
13271
|
-
operationReference?: OperationReference;
|
|
13272
|
-
} | null;
|
|
13624
|
+
body?: CancelProcessInstanceRequest;
|
|
13273
13625
|
path: {
|
|
13274
13626
|
/**
|
|
13275
13627
|
* The key of the process instance to cancel.
|
|
@@ -13313,9 +13665,7 @@ type CancelProcessInstanceResponses = {
|
|
|
13313
13665
|
};
|
|
13314
13666
|
type CancelProcessInstanceResponse = CancelProcessInstanceResponses[keyof CancelProcessInstanceResponses];
|
|
13315
13667
|
type DeleteProcessInstanceData = {
|
|
13316
|
-
body?:
|
|
13317
|
-
operationReference?: OperationReference;
|
|
13318
|
-
} | null;
|
|
13668
|
+
body?: DeleteProcessInstanceRequest;
|
|
13319
13669
|
path: {
|
|
13320
13670
|
/**
|
|
13321
13671
|
* The key of the process instance to delete.
|
|
@@ -13598,6 +13948,38 @@ type GetProcessInstanceStatisticsResponses = {
|
|
|
13598
13948
|
200: ProcessInstanceElementStatisticsQueryResult;
|
|
13599
13949
|
};
|
|
13600
13950
|
type GetProcessInstanceStatisticsResponse = GetProcessInstanceStatisticsResponses[keyof GetProcessInstanceStatisticsResponses];
|
|
13951
|
+
type SearchResourcesData = {
|
|
13952
|
+
body?: ResourceSearchQuery;
|
|
13953
|
+
path?: never;
|
|
13954
|
+
query?: never;
|
|
13955
|
+
url: '/resources/search';
|
|
13956
|
+
};
|
|
13957
|
+
type SearchResourcesErrors = {
|
|
13958
|
+
/**
|
|
13959
|
+
* The provided data is not valid.
|
|
13960
|
+
*/
|
|
13961
|
+
400: ProblemDetail;
|
|
13962
|
+
/**
|
|
13963
|
+
* The request lacks valid authentication credentials.
|
|
13964
|
+
*/
|
|
13965
|
+
401: ProblemDetail;
|
|
13966
|
+
/**
|
|
13967
|
+
* Forbidden. The request is not allowed.
|
|
13968
|
+
*/
|
|
13969
|
+
403: ProblemDetail;
|
|
13970
|
+
/**
|
|
13971
|
+
* An internal error occurred while processing the request.
|
|
13972
|
+
*/
|
|
13973
|
+
500: ProblemDetail;
|
|
13974
|
+
};
|
|
13975
|
+
type SearchResourcesError = SearchResourcesErrors[keyof SearchResourcesErrors];
|
|
13976
|
+
type SearchResourcesResponses = {
|
|
13977
|
+
/**
|
|
13978
|
+
* The resource search result.
|
|
13979
|
+
*/
|
|
13980
|
+
200: ResourceSearchQueryResult;
|
|
13981
|
+
};
|
|
13982
|
+
type SearchResourcesResponse = SearchResourcesResponses[keyof SearchResourcesResponses];
|
|
13601
13983
|
type GetResourceData = {
|
|
13602
13984
|
body?: never;
|
|
13603
13985
|
path: {
|
|
@@ -13772,7 +14154,7 @@ type DeleteRoleData = {
|
|
|
13772
14154
|
/**
|
|
13773
14155
|
* The role ID.
|
|
13774
14156
|
*/
|
|
13775
|
-
roleId:
|
|
14157
|
+
roleId: RoleId;
|
|
13776
14158
|
};
|
|
13777
14159
|
query?: never;
|
|
13778
14160
|
url: '/roles/{roleId}';
|
|
@@ -13810,7 +14192,7 @@ type GetRoleData = {
|
|
|
13810
14192
|
/**
|
|
13811
14193
|
* The role ID.
|
|
13812
14194
|
*/
|
|
13813
|
-
roleId:
|
|
14195
|
+
roleId: RoleId;
|
|
13814
14196
|
};
|
|
13815
14197
|
query?: never;
|
|
13816
14198
|
url: '/roles/{roleId}';
|
|
@@ -13847,7 +14229,7 @@ type UpdateRoleData = {
|
|
|
13847
14229
|
/**
|
|
13848
14230
|
* The role ID.
|
|
13849
14231
|
*/
|
|
13850
|
-
roleId:
|
|
14232
|
+
roleId: RoleId;
|
|
13851
14233
|
};
|
|
13852
14234
|
query?: never;
|
|
13853
14235
|
url: '/roles/{roleId}';
|
|
@@ -13884,23 +14266,12 @@ type UpdateRoleResponses = {
|
|
|
13884
14266
|
};
|
|
13885
14267
|
type UpdateRoleResponse = UpdateRoleResponses[keyof UpdateRoleResponses];
|
|
13886
14268
|
type SearchClientsForRoleData = {
|
|
13887
|
-
body?:
|
|
13888
|
-
/**
|
|
13889
|
-
* Sort field criteria.
|
|
13890
|
-
*/
|
|
13891
|
-
sort?: Array<{
|
|
13892
|
-
/**
|
|
13893
|
-
* The field to sort by.
|
|
13894
|
-
*/
|
|
13895
|
-
field: 'clientId';
|
|
13896
|
-
order?: SortOrderEnum;
|
|
13897
|
-
}>;
|
|
13898
|
-
};
|
|
14269
|
+
body?: RoleClientSearchQueryRequest;
|
|
13899
14270
|
path: {
|
|
13900
14271
|
/**
|
|
13901
14272
|
* The role ID.
|
|
13902
14273
|
*/
|
|
13903
|
-
roleId:
|
|
14274
|
+
roleId: RoleId;
|
|
13904
14275
|
};
|
|
13905
14276
|
query?: never;
|
|
13906
14277
|
url: '/roles/{roleId}/clients/search';
|
|
@@ -13932,17 +14303,7 @@ type SearchClientsForRoleResponses = {
|
|
|
13932
14303
|
/**
|
|
13933
14304
|
* The clients with the assigned role.
|
|
13934
14305
|
*/
|
|
13935
|
-
200:
|
|
13936
|
-
/**
|
|
13937
|
-
* The matching clients.
|
|
13938
|
-
*/
|
|
13939
|
-
items: Array<{
|
|
13940
|
-
/**
|
|
13941
|
-
* The ID of the client.
|
|
13942
|
-
*/
|
|
13943
|
-
clientId: string;
|
|
13944
|
-
}>;
|
|
13945
|
-
};
|
|
14306
|
+
200: RoleClientSearchResult;
|
|
13946
14307
|
};
|
|
13947
14308
|
type SearchClientsForRoleResponse = SearchClientsForRoleResponses[keyof SearchClientsForRoleResponses];
|
|
13948
14309
|
type UnassignRoleFromClientData = {
|
|
@@ -13951,11 +14312,11 @@ type UnassignRoleFromClientData = {
|
|
|
13951
14312
|
/**
|
|
13952
14313
|
* The role ID.
|
|
13953
14314
|
*/
|
|
13954
|
-
roleId:
|
|
14315
|
+
roleId: RoleId;
|
|
13955
14316
|
/**
|
|
13956
14317
|
* The client ID.
|
|
13957
14318
|
*/
|
|
13958
|
-
clientId:
|
|
14319
|
+
clientId: ClientId;
|
|
13959
14320
|
};
|
|
13960
14321
|
query?: never;
|
|
13961
14322
|
url: '/roles/{roleId}/clients/{clientId}';
|
|
@@ -13997,11 +14358,11 @@ type AssignRoleToClientData = {
|
|
|
13997
14358
|
/**
|
|
13998
14359
|
* The role ID.
|
|
13999
14360
|
*/
|
|
14000
|
-
roleId:
|
|
14361
|
+
roleId: RoleId;
|
|
14001
14362
|
/**
|
|
14002
14363
|
* The client ID.
|
|
14003
14364
|
*/
|
|
14004
|
-
clientId:
|
|
14365
|
+
clientId: ClientId;
|
|
14005
14366
|
};
|
|
14006
14367
|
query?: never;
|
|
14007
14368
|
url: '/roles/{roleId}/clients/{clientId}';
|
|
@@ -14047,7 +14408,7 @@ type SearchGroupsForRoleData = {
|
|
|
14047
14408
|
/**
|
|
14048
14409
|
* The role ID.
|
|
14049
14410
|
*/
|
|
14050
|
-
roleId:
|
|
14411
|
+
roleId: RoleId;
|
|
14051
14412
|
};
|
|
14052
14413
|
query?: never;
|
|
14053
14414
|
url: '/roles/{roleId}/groups/search';
|
|
@@ -14088,11 +14449,11 @@ type UnassignRoleFromGroupData = {
|
|
|
14088
14449
|
/**
|
|
14089
14450
|
* The role ID.
|
|
14090
14451
|
*/
|
|
14091
|
-
roleId:
|
|
14452
|
+
roleId: RoleId;
|
|
14092
14453
|
/**
|
|
14093
14454
|
* The group ID.
|
|
14094
14455
|
*/
|
|
14095
|
-
groupId:
|
|
14456
|
+
groupId: GroupId;
|
|
14096
14457
|
};
|
|
14097
14458
|
query?: never;
|
|
14098
14459
|
url: '/roles/{roleId}/groups/{groupId}';
|
|
@@ -14134,11 +14495,11 @@ type AssignRoleToGroupData = {
|
|
|
14134
14495
|
/**
|
|
14135
14496
|
* The role ID.
|
|
14136
14497
|
*/
|
|
14137
|
-
roleId:
|
|
14498
|
+
roleId: RoleId;
|
|
14138
14499
|
/**
|
|
14139
14500
|
* The group ID.
|
|
14140
14501
|
*/
|
|
14141
|
-
groupId:
|
|
14502
|
+
groupId: GroupId;
|
|
14142
14503
|
};
|
|
14143
14504
|
query?: never;
|
|
14144
14505
|
url: '/roles/{roleId}/groups/{groupId}';
|
|
@@ -14184,7 +14545,7 @@ type SearchMappingRulesForRoleData = {
|
|
|
14184
14545
|
/**
|
|
14185
14546
|
* The role ID.
|
|
14186
14547
|
*/
|
|
14187
|
-
roleId:
|
|
14548
|
+
roleId: RoleId;
|
|
14188
14549
|
};
|
|
14189
14550
|
query?: never;
|
|
14190
14551
|
url: '/roles/{roleId}/mapping-rules/search';
|
|
@@ -14216,12 +14577,7 @@ type SearchMappingRulesForRoleResponses = {
|
|
|
14216
14577
|
/**
|
|
14217
14578
|
* The mapping rules with assigned role.
|
|
14218
14579
|
*/
|
|
14219
|
-
200:
|
|
14220
|
-
/**
|
|
14221
|
-
* The matching mapping rules.
|
|
14222
|
-
*/
|
|
14223
|
-
items: Array<MappingRuleResult>;
|
|
14224
|
-
};
|
|
14580
|
+
200: RoleMappingRuleSearchResult;
|
|
14225
14581
|
};
|
|
14226
14582
|
type SearchMappingRulesForRoleResponse = SearchMappingRulesForRoleResponses[keyof SearchMappingRulesForRoleResponses];
|
|
14227
14583
|
type UnassignRoleFromMappingRuleData = {
|
|
@@ -14230,11 +14586,11 @@ type UnassignRoleFromMappingRuleData = {
|
|
|
14230
14586
|
/**
|
|
14231
14587
|
* The role ID.
|
|
14232
14588
|
*/
|
|
14233
|
-
roleId:
|
|
14589
|
+
roleId: RoleId;
|
|
14234
14590
|
/**
|
|
14235
14591
|
* The mapping rule ID.
|
|
14236
14592
|
*/
|
|
14237
|
-
mappingRuleId:
|
|
14593
|
+
mappingRuleId: MappingRuleId;
|
|
14238
14594
|
};
|
|
14239
14595
|
query?: never;
|
|
14240
14596
|
url: '/roles/{roleId}/mapping-rules/{mappingRuleId}';
|
|
@@ -14276,11 +14632,11 @@ type AssignRoleToMappingRuleData = {
|
|
|
14276
14632
|
/**
|
|
14277
14633
|
* The role ID.
|
|
14278
14634
|
*/
|
|
14279
|
-
roleId:
|
|
14635
|
+
roleId: RoleId;
|
|
14280
14636
|
/**
|
|
14281
14637
|
* The mapping rule ID.
|
|
14282
14638
|
*/
|
|
14283
|
-
mappingRuleId:
|
|
14639
|
+
mappingRuleId: MappingRuleId;
|
|
14284
14640
|
};
|
|
14285
14641
|
query?: never;
|
|
14286
14642
|
url: '/roles/{roleId}/mapping-rules/{mappingRuleId}';
|
|
@@ -14321,23 +14677,12 @@ type AssignRoleToMappingRuleResponses = {
|
|
|
14321
14677
|
};
|
|
14322
14678
|
type AssignRoleToMappingRuleResponse = AssignRoleToMappingRuleResponses[keyof AssignRoleToMappingRuleResponses];
|
|
14323
14679
|
type SearchUsersForRoleData = {
|
|
14324
|
-
body?:
|
|
14325
|
-
/**
|
|
14326
|
-
* Sort field criteria.
|
|
14327
|
-
*/
|
|
14328
|
-
sort?: Array<{
|
|
14329
|
-
/**
|
|
14330
|
-
* The field to sort by.
|
|
14331
|
-
*/
|
|
14332
|
-
field: 'username';
|
|
14333
|
-
order?: SortOrderEnum;
|
|
14334
|
-
}>;
|
|
14335
|
-
};
|
|
14680
|
+
body?: RoleUserSearchQueryRequest;
|
|
14336
14681
|
path: {
|
|
14337
14682
|
/**
|
|
14338
14683
|
* The role ID.
|
|
14339
14684
|
*/
|
|
14340
|
-
roleId:
|
|
14685
|
+
roleId: RoleId;
|
|
14341
14686
|
};
|
|
14342
14687
|
query?: never;
|
|
14343
14688
|
url: '/roles/{roleId}/users/search';
|
|
@@ -14369,14 +14714,7 @@ type SearchUsersForRoleResponses = {
|
|
|
14369
14714
|
/**
|
|
14370
14715
|
* The users with the assigned role.
|
|
14371
14716
|
*/
|
|
14372
|
-
200:
|
|
14373
|
-
/**
|
|
14374
|
-
* The matching users.
|
|
14375
|
-
*/
|
|
14376
|
-
items: Array<{
|
|
14377
|
-
username: Username;
|
|
14378
|
-
}>;
|
|
14379
|
-
};
|
|
14717
|
+
200: RoleUserSearchResult;
|
|
14380
14718
|
};
|
|
14381
14719
|
type SearchUsersForRoleResponse = SearchUsersForRoleResponses[keyof SearchUsersForRoleResponses];
|
|
14382
14720
|
type UnassignRoleFromUserData = {
|
|
@@ -14385,7 +14723,7 @@ type UnassignRoleFromUserData = {
|
|
|
14385
14723
|
/**
|
|
14386
14724
|
* The role ID.
|
|
14387
14725
|
*/
|
|
14388
|
-
roleId:
|
|
14726
|
+
roleId: RoleId;
|
|
14389
14727
|
/**
|
|
14390
14728
|
* The user username.
|
|
14391
14729
|
*/
|
|
@@ -14431,7 +14769,7 @@ type AssignRoleToUserData = {
|
|
|
14431
14769
|
/**
|
|
14432
14770
|
* The role ID.
|
|
14433
14771
|
*/
|
|
14434
|
-
roleId:
|
|
14772
|
+
roleId: RoleId;
|
|
14435
14773
|
/**
|
|
14436
14774
|
* The user username.
|
|
14437
14775
|
*/
|
|
@@ -14836,18 +15174,7 @@ type UpdateTenantResponses = {
|
|
|
14836
15174
|
};
|
|
14837
15175
|
type UpdateTenantResponse = UpdateTenantResponses[keyof UpdateTenantResponses];
|
|
14838
15176
|
type SearchClientsForTenantData = {
|
|
14839
|
-
body?:
|
|
14840
|
-
/**
|
|
14841
|
-
* Sort field criteria.
|
|
14842
|
-
*/
|
|
14843
|
-
sort?: Array<{
|
|
14844
|
-
/**
|
|
14845
|
-
* The field to sort by.
|
|
14846
|
-
*/
|
|
14847
|
-
field: 'clientId';
|
|
14848
|
-
order?: SortOrderEnum;
|
|
14849
|
-
}>;
|
|
14850
|
-
};
|
|
15177
|
+
body?: TenantClientSearchQueryRequest;
|
|
14851
15178
|
path: {
|
|
14852
15179
|
/**
|
|
14853
15180
|
* The unique identifier of the tenant.
|
|
@@ -14861,17 +15188,7 @@ type SearchClientsForTenantResponses = {
|
|
|
14861
15188
|
/**
|
|
14862
15189
|
* The search result of users for the tenant.
|
|
14863
15190
|
*/
|
|
14864
|
-
200:
|
|
14865
|
-
/**
|
|
14866
|
-
* The matching clients.
|
|
14867
|
-
*/
|
|
14868
|
-
items: Array<{
|
|
14869
|
-
/**
|
|
14870
|
-
* The ID of the client.
|
|
14871
|
-
*/
|
|
14872
|
-
clientId: string;
|
|
14873
|
-
}>;
|
|
14874
|
-
};
|
|
15191
|
+
200: TenantClientSearchResult;
|
|
14875
15192
|
};
|
|
14876
15193
|
type SearchClientsForTenantResponse = SearchClientsForTenantResponses[keyof SearchClientsForTenantResponses];
|
|
14877
15194
|
type UnassignClientFromTenantData = {
|
|
@@ -14884,7 +15201,7 @@ type UnassignClientFromTenantData = {
|
|
|
14884
15201
|
/**
|
|
14885
15202
|
* The unique identifier of the application.
|
|
14886
15203
|
*/
|
|
14887
|
-
clientId:
|
|
15204
|
+
clientId: ClientId;
|
|
14888
15205
|
};
|
|
14889
15206
|
query?: never;
|
|
14890
15207
|
url: '/tenants/{tenantId}/clients/{clientId}';
|
|
@@ -14930,7 +15247,7 @@ type AssignClientToTenantData = {
|
|
|
14930
15247
|
/**
|
|
14931
15248
|
* The unique identifier of the application.
|
|
14932
15249
|
*/
|
|
14933
|
-
clientId:
|
|
15250
|
+
clientId: ClientId;
|
|
14934
15251
|
};
|
|
14935
15252
|
query?: never;
|
|
14936
15253
|
url: '/tenants/{tenantId}/clients/{clientId}';
|
|
@@ -14994,7 +15311,7 @@ type UnassignGroupFromTenantData = {
|
|
|
14994
15311
|
/**
|
|
14995
15312
|
* The unique identifier of the group.
|
|
14996
15313
|
*/
|
|
14997
|
-
groupId:
|
|
15314
|
+
groupId: GroupId;
|
|
14998
15315
|
};
|
|
14999
15316
|
query?: never;
|
|
15000
15317
|
url: '/tenants/{tenantId}/groups/{groupId}';
|
|
@@ -15040,7 +15357,7 @@ type AssignGroupToTenantData = {
|
|
|
15040
15357
|
/**
|
|
15041
15358
|
* The unique identifier of the group.
|
|
15042
15359
|
*/
|
|
15043
|
-
groupId:
|
|
15360
|
+
groupId: GroupId;
|
|
15044
15361
|
};
|
|
15045
15362
|
query?: never;
|
|
15046
15363
|
url: '/tenants/{tenantId}/groups/{groupId}';
|
|
@@ -15091,12 +15408,7 @@ type SearchMappingRulesForTenantResponses = {
|
|
|
15091
15408
|
/**
|
|
15092
15409
|
* The search result of MappingRules for the tenant.
|
|
15093
15410
|
*/
|
|
15094
|
-
200:
|
|
15095
|
-
/**
|
|
15096
|
-
* The matching mapping rules.
|
|
15097
|
-
*/
|
|
15098
|
-
items: Array<MappingRuleResult>;
|
|
15099
|
-
};
|
|
15411
|
+
200: TenantMappingRuleSearchResult;
|
|
15100
15412
|
};
|
|
15101
15413
|
type SearchMappingRulesForTenantResponse = SearchMappingRulesForTenantResponses[keyof SearchMappingRulesForTenantResponses];
|
|
15102
15414
|
type UnassignMappingRuleFromTenantData = {
|
|
@@ -15109,7 +15421,7 @@ type UnassignMappingRuleFromTenantData = {
|
|
|
15109
15421
|
/**
|
|
15110
15422
|
* The unique identifier of the mapping rule.
|
|
15111
15423
|
*/
|
|
15112
|
-
mappingRuleId:
|
|
15424
|
+
mappingRuleId: MappingRuleId;
|
|
15113
15425
|
};
|
|
15114
15426
|
query?: never;
|
|
15115
15427
|
url: '/tenants/{tenantId}/mapping-rules/{mappingRuleId}';
|
|
@@ -15155,7 +15467,7 @@ type AssignMappingRuleToTenantData = {
|
|
|
15155
15467
|
/**
|
|
15156
15468
|
* The unique identifier of the mapping rule.
|
|
15157
15469
|
*/
|
|
15158
|
-
mappingRuleId:
|
|
15470
|
+
mappingRuleId: MappingRuleId;
|
|
15159
15471
|
};
|
|
15160
15472
|
query?: never;
|
|
15161
15473
|
url: '/tenants/{tenantId}/mapping-rules/{mappingRuleId}';
|
|
@@ -15206,12 +15518,7 @@ type SearchRolesForTenantResponses = {
|
|
|
15206
15518
|
/**
|
|
15207
15519
|
* The search result of roles for the tenant.
|
|
15208
15520
|
*/
|
|
15209
|
-
200:
|
|
15210
|
-
/**
|
|
15211
|
-
* The matching roles.
|
|
15212
|
-
*/
|
|
15213
|
-
items: Array<RoleResult>;
|
|
15214
|
-
};
|
|
15521
|
+
200: TenantRoleSearchResult;
|
|
15215
15522
|
};
|
|
15216
15523
|
type SearchRolesForTenantResponse = SearchRolesForTenantResponses[keyof SearchRolesForTenantResponses];
|
|
15217
15524
|
type UnassignRoleFromTenantData = {
|
|
@@ -15224,7 +15531,7 @@ type UnassignRoleFromTenantData = {
|
|
|
15224
15531
|
/**
|
|
15225
15532
|
* The unique identifier of the role.
|
|
15226
15533
|
*/
|
|
15227
|
-
roleId:
|
|
15534
|
+
roleId: RoleId;
|
|
15228
15535
|
};
|
|
15229
15536
|
query?: never;
|
|
15230
15537
|
url: '/tenants/{tenantId}/roles/{roleId}';
|
|
@@ -15270,7 +15577,7 @@ type AssignRoleToTenantData = {
|
|
|
15270
15577
|
/**
|
|
15271
15578
|
* The unique identifier of the role.
|
|
15272
15579
|
*/
|
|
15273
|
-
roleId:
|
|
15580
|
+
roleId: RoleId;
|
|
15274
15581
|
};
|
|
15275
15582
|
query?: never;
|
|
15276
15583
|
url: '/tenants/{tenantId}/roles/{roleId}';
|
|
@@ -15307,18 +15614,7 @@ type AssignRoleToTenantResponses = {
|
|
|
15307
15614
|
};
|
|
15308
15615
|
type AssignRoleToTenantResponse = AssignRoleToTenantResponses[keyof AssignRoleToTenantResponses];
|
|
15309
15616
|
type SearchUsersForTenantData = {
|
|
15310
|
-
body?:
|
|
15311
|
-
/**
|
|
15312
|
-
* Sort field criteria.
|
|
15313
|
-
*/
|
|
15314
|
-
sort?: Array<{
|
|
15315
|
-
/**
|
|
15316
|
-
* The field to sort by.
|
|
15317
|
-
*/
|
|
15318
|
-
field: 'username';
|
|
15319
|
-
order?: SortOrderEnum;
|
|
15320
|
-
}>;
|
|
15321
|
-
};
|
|
15617
|
+
body?: TenantUserSearchQueryRequest;
|
|
15322
15618
|
path: {
|
|
15323
15619
|
/**
|
|
15324
15620
|
* The unique identifier of the tenant.
|
|
@@ -15332,14 +15628,7 @@ type SearchUsersForTenantResponses = {
|
|
|
15332
15628
|
/**
|
|
15333
15629
|
* The search result of users for the tenant.
|
|
15334
15630
|
*/
|
|
15335
|
-
200:
|
|
15336
|
-
/**
|
|
15337
|
-
* The matching users.
|
|
15338
|
-
*/
|
|
15339
|
-
items: Array<{
|
|
15340
|
-
username: Username;
|
|
15341
|
-
}>;
|
|
15342
|
-
};
|
|
15631
|
+
200: TenantUserSearchResult;
|
|
15343
15632
|
};
|
|
15344
15633
|
type SearchUsersForTenantResponse = SearchUsersForTenantResponses[keyof SearchUsersForTenantResponses];
|
|
15345
15634
|
type UnassignUserFromTenantData = {
|
|
@@ -15528,22 +15817,7 @@ type SearchUsersResponses = {
|
|
|
15528
15817
|
/**
|
|
15529
15818
|
* The user search result.
|
|
15530
15819
|
*/
|
|
15531
|
-
200:
|
|
15532
|
-
/**
|
|
15533
|
-
* The matching users.
|
|
15534
|
-
*/
|
|
15535
|
-
items: Array<{
|
|
15536
|
-
username: Username;
|
|
15537
|
-
/**
|
|
15538
|
-
* The name of the user.
|
|
15539
|
-
*/
|
|
15540
|
-
name: string | null;
|
|
15541
|
-
/**
|
|
15542
|
-
* The email of the user.
|
|
15543
|
-
*/
|
|
15544
|
-
email: string | null;
|
|
15545
|
-
}>;
|
|
15546
|
-
};
|
|
15820
|
+
200: UserSearchResult;
|
|
15547
15821
|
};
|
|
15548
15822
|
type SearchUsersResponse = SearchUsersResponses[keyof SearchUsersResponses];
|
|
15549
15823
|
type DeleteUserData = {
|
|
@@ -15618,17 +15892,7 @@ type GetUserResponses = {
|
|
|
15618
15892
|
/**
|
|
15619
15893
|
* The user is successfully returned.
|
|
15620
15894
|
*/
|
|
15621
|
-
200:
|
|
15622
|
-
username: Username;
|
|
15623
|
-
/**
|
|
15624
|
-
* The name of the user.
|
|
15625
|
-
*/
|
|
15626
|
-
name: string | null;
|
|
15627
|
-
/**
|
|
15628
|
-
* The email of the user.
|
|
15629
|
-
*/
|
|
15630
|
-
email: string | null;
|
|
15631
|
-
};
|
|
15895
|
+
200: UserResult;
|
|
15632
15896
|
};
|
|
15633
15897
|
type GetUserResponse = GetUserResponses[keyof GetUserResponses];
|
|
15634
15898
|
type UpdateUserData = {
|
|
@@ -15670,17 +15934,7 @@ type UpdateUserResponses = {
|
|
|
15670
15934
|
/**
|
|
15671
15935
|
* The user was updated successfully.
|
|
15672
15936
|
*/
|
|
15673
|
-
200:
|
|
15674
|
-
username: Username;
|
|
15675
|
-
/**
|
|
15676
|
-
* The name of the user.
|
|
15677
|
-
*/
|
|
15678
|
-
name: string | null;
|
|
15679
|
-
/**
|
|
15680
|
-
* The email of the user.
|
|
15681
|
-
*/
|
|
15682
|
-
email: string | null;
|
|
15683
|
-
};
|
|
15937
|
+
200: UserUpdateResult;
|
|
15684
15938
|
};
|
|
15685
15939
|
type UpdateUserResponse = UpdateUserResponses[keyof UpdateUserResponses];
|
|
15686
15940
|
type SearchUserTasksData = {
|
|
@@ -15994,13 +16248,7 @@ type SearchUserTaskEffectiveVariablesData = {
|
|
|
15994
16248
|
/**
|
|
15995
16249
|
* Sort field criteria.
|
|
15996
16250
|
*/
|
|
15997
|
-
sort?: Array<
|
|
15998
|
-
/**
|
|
15999
|
-
* The field to sort by.
|
|
16000
|
-
*/
|
|
16001
|
-
field: 'value' | 'name' | 'tenantId' | 'variableKey' | 'scopeKey' | 'processInstanceKey';
|
|
16002
|
-
order?: SortOrderEnum;
|
|
16003
|
-
}>;
|
|
16251
|
+
sort?: Array<UserTaskVariableSearchQuerySortRequest>;
|
|
16004
16252
|
/**
|
|
16005
16253
|
* The user task variable search filters.
|
|
16006
16254
|
*/
|
|
@@ -16084,25 +16332,7 @@ type GetUserTaskFormResponses = {
|
|
|
16084
16332
|
};
|
|
16085
16333
|
type GetUserTaskFormResponse = GetUserTaskFormResponses[keyof GetUserTaskFormResponses];
|
|
16086
16334
|
type SearchUserTaskVariablesData = {
|
|
16087
|
-
|
|
16088
|
-
* User task search query request.
|
|
16089
|
-
*/
|
|
16090
|
-
body?: SearchQueryRequest & {
|
|
16091
|
-
/**
|
|
16092
|
-
* Sort field criteria.
|
|
16093
|
-
*/
|
|
16094
|
-
sort?: Array<{
|
|
16095
|
-
/**
|
|
16096
|
-
* The field to sort by.
|
|
16097
|
-
*/
|
|
16098
|
-
field: 'value' | 'name' | 'tenantId' | 'variableKey' | 'scopeKey' | 'processInstanceKey';
|
|
16099
|
-
order?: SortOrderEnum;
|
|
16100
|
-
}>;
|
|
16101
|
-
/**
|
|
16102
|
-
* The user task variable search filters.
|
|
16103
|
-
*/
|
|
16104
|
-
filter?: UserTaskVariableFilter;
|
|
16105
|
-
};
|
|
16335
|
+
body?: UserTaskVariableSearchQueryRequest;
|
|
16106
16336
|
path: {
|
|
16107
16337
|
/**
|
|
16108
16338
|
* The key of the user task.
|
|
@@ -16136,25 +16366,7 @@ type SearchUserTaskVariablesResponses = {
|
|
|
16136
16366
|
};
|
|
16137
16367
|
type SearchUserTaskVariablesResponse = SearchUserTaskVariablesResponses[keyof SearchUserTaskVariablesResponses];
|
|
16138
16368
|
type SearchVariablesData = {
|
|
16139
|
-
|
|
16140
|
-
* Variable search query request.
|
|
16141
|
-
*/
|
|
16142
|
-
body?: SearchQueryRequest & {
|
|
16143
|
-
/**
|
|
16144
|
-
* Sort field criteria.
|
|
16145
|
-
*/
|
|
16146
|
-
sort?: Array<{
|
|
16147
|
-
/**
|
|
16148
|
-
* The field to sort by.
|
|
16149
|
-
*/
|
|
16150
|
-
field: 'value' | 'name' | 'tenantId' | 'variableKey' | 'scopeKey' | 'processInstanceKey';
|
|
16151
|
-
order?: SortOrderEnum;
|
|
16152
|
-
}>;
|
|
16153
|
-
/**
|
|
16154
|
-
* The variable search filters.
|
|
16155
|
-
*/
|
|
16156
|
-
filter?: VariableFilter;
|
|
16157
|
-
};
|
|
16369
|
+
body?: VariableSearchQuery;
|
|
16158
16370
|
path?: never;
|
|
16159
16371
|
query?: {
|
|
16160
16372
|
/**
|
|
@@ -16236,6 +16448,15 @@ declare function assertConstraint(value: string, label: string, c: {
|
|
|
16236
16448
|
minLength?: number;
|
|
16237
16449
|
maxLength?: number;
|
|
16238
16450
|
}): void;
|
|
16451
|
+
/**
|
|
16452
|
+
* System-generated key for an agent instance.
|
|
16453
|
+
*/
|
|
16454
|
+
type AgentInstanceKey = CamundaKey<'AgentInstanceKey'>;
|
|
16455
|
+
declare namespace AgentInstanceKey {
|
|
16456
|
+
function assumeExists(value: string): AgentInstanceKey;
|
|
16457
|
+
function getValue(key: AgentInstanceKey): string;
|
|
16458
|
+
function isValid(value: string): boolean;
|
|
16459
|
+
}
|
|
16239
16460
|
/**
|
|
16240
16461
|
* System-generated entity key for an audit log entry.
|
|
16241
16462
|
*/
|
|
@@ -16286,6 +16507,29 @@ declare namespace BusinessId {
|
|
|
16286
16507
|
function getValue(key: BusinessId): string;
|
|
16287
16508
|
function isValid(value: string): boolean;
|
|
16288
16509
|
}
|
|
16510
|
+
/**
|
|
16511
|
+
* The unique identifier of an OAuth client.
|
|
16512
|
+
* Minted outside the Camunda REST API: in SaaS by Console, in Self-Managed
|
|
16513
|
+
* with OIDC by the external identity provider (e.g. EntraID, Keycloak,
|
|
16514
|
+
* Okta). In Self-Managed with Basic authentication, machine-to-machine
|
|
16515
|
+
* applications are modelled as users instead — see the user identifier.
|
|
16516
|
+
*
|
|
16517
|
+
*/
|
|
16518
|
+
type ClientId = CamundaKey<'ClientId'>;
|
|
16519
|
+
declare namespace ClientId {
|
|
16520
|
+
function assumeExists(value: string): ClientId;
|
|
16521
|
+
function getValue(key: ClientId): string;
|
|
16522
|
+
function isValid(value: string): boolean;
|
|
16523
|
+
}
|
|
16524
|
+
/**
|
|
16525
|
+
* The name of a cluster variable. Unique within its scope (global or tenant-specific).
|
|
16526
|
+
*/
|
|
16527
|
+
type ClusterVariableName = CamundaKey<'ClusterVariableName'>;
|
|
16528
|
+
declare namespace ClusterVariableName {
|
|
16529
|
+
function assumeExists(value: string): ClusterVariableName;
|
|
16530
|
+
function getValue(key: ClusterVariableName): string;
|
|
16531
|
+
function isValid(value: string): boolean;
|
|
16532
|
+
}
|
|
16289
16533
|
/**
|
|
16290
16534
|
* System-generated key for a conditional evaluation.
|
|
16291
16535
|
*/
|
|
@@ -16424,6 +16668,15 @@ declare namespace GlobalListenerId {
|
|
|
16424
16668
|
function getValue(key: GlobalListenerId): string;
|
|
16425
16669
|
function isValid(value: string): boolean;
|
|
16426
16670
|
}
|
|
16671
|
+
/**
|
|
16672
|
+
* The unique identifier of a group.
|
|
16673
|
+
*/
|
|
16674
|
+
type GroupId = CamundaKey<'GroupId'>;
|
|
16675
|
+
declare namespace GroupId {
|
|
16676
|
+
function assumeExists(value: string): GroupId;
|
|
16677
|
+
function getValue(key: GroupId): string;
|
|
16678
|
+
function isValid(value: string): boolean;
|
|
16679
|
+
}
|
|
16427
16680
|
/**
|
|
16428
16681
|
* System-generated key for a incident.
|
|
16429
16682
|
*/
|
|
@@ -16442,6 +16695,15 @@ declare namespace JobKey {
|
|
|
16442
16695
|
function getValue(key: JobKey): string;
|
|
16443
16696
|
function isValid(value: string): boolean;
|
|
16444
16697
|
}
|
|
16698
|
+
/**
|
|
16699
|
+
* The unique identifier of a mapping rule.
|
|
16700
|
+
*/
|
|
16701
|
+
type MappingRuleId = CamundaKey<'MappingRuleId'>;
|
|
16702
|
+
declare namespace MappingRuleId {
|
|
16703
|
+
function assumeExists(value: string): MappingRuleId;
|
|
16704
|
+
function getValue(key: MappingRuleId): string;
|
|
16705
|
+
function isValid(value: string): boolean;
|
|
16706
|
+
}
|
|
16445
16707
|
/**
|
|
16446
16708
|
* System-generated key for an message.
|
|
16447
16709
|
*/
|
|
@@ -16487,6 +16749,15 @@ declare namespace ProcessInstanceKey {
|
|
|
16487
16749
|
function getValue(key: ProcessInstanceKey): string;
|
|
16488
16750
|
function isValid(value: string): boolean;
|
|
16489
16751
|
}
|
|
16752
|
+
/**
|
|
16753
|
+
* The unique identifier of a role.
|
|
16754
|
+
*/
|
|
16755
|
+
type RoleId = CamundaKey<'RoleId'>;
|
|
16756
|
+
declare namespace RoleId {
|
|
16757
|
+
function assumeExists(value: string): RoleId;
|
|
16758
|
+
function getValue(key: RoleId): string;
|
|
16759
|
+
function isValid(value: string): boolean;
|
|
16760
|
+
}
|
|
16490
16761
|
/**
|
|
16491
16762
|
* System-generated key for an signal.
|
|
16492
16763
|
*/
|
|
@@ -16564,6 +16835,18 @@ type Options<TData extends TDataShape = TDataShape, ThrowOnError extends boolean
|
|
|
16564
16835
|
*/
|
|
16565
16836
|
meta?: Record<string, unknown>;
|
|
16566
16837
|
};
|
|
16838
|
+
/**
|
|
16839
|
+
* Get agent instance
|
|
16840
|
+
*
|
|
16841
|
+
* Returns agent instance as JSON.
|
|
16842
|
+
*/
|
|
16843
|
+
declare const getAgentInstance: <ThrowOnError extends boolean = true>(options: Options<GetAgentInstanceData, ThrowOnError>) => RequestResult<GetAgentInstanceResponses, GetAgentInstanceErrors, ThrowOnError, "fields">;
|
|
16844
|
+
/**
|
|
16845
|
+
* Search agent instances
|
|
16846
|
+
*
|
|
16847
|
+
* Search for agent instances based on given criteria.
|
|
16848
|
+
*/
|
|
16849
|
+
declare const searchAgentInstances: <ThrowOnError extends boolean = true>(options?: Options<SearchAgentInstancesData, ThrowOnError>) => RequestResult<SearchAgentInstancesResponses, SearchAgentInstancesErrors, ThrowOnError, "fields">;
|
|
16567
16850
|
/**
|
|
16568
16851
|
* Search audit logs
|
|
16569
16852
|
*
|
|
@@ -16972,6 +17255,22 @@ declare const searchGlobalTaskListeners: <ThrowOnError extends boolean = true>(o
|
|
|
16972
17255
|
* Create group
|
|
16973
17256
|
*
|
|
16974
17257
|
* Create a new group.
|
|
17258
|
+
*
|
|
17259
|
+
* The supplied `groupId` is validated against `^[a-zA-Z0-9_~@.+-]+$`
|
|
17260
|
+
* (max 256 characters) by `IdentifierValidator.validateId` in the
|
|
17261
|
+
* runtime. This strict validation applies wherever the Groups API
|
|
17262
|
+
* is available: in OIDC deployments that set
|
|
17263
|
+
* `camunda.security.authentication.oidc.groupsClaim` the Groups
|
|
17264
|
+
* API (including this endpoint) is disabled entirely, so group
|
|
17265
|
+
* CRUD never sees externally-minted IdP IDs. The BYOG relaxation
|
|
17266
|
+
* only loosens validation when a group is referenced *as a member*
|
|
17267
|
+
* of a role or tenant (`assignRoleToGroup`,
|
|
17268
|
+
* `assignGroupToTenant`); group CRUD itself always uses the strict
|
|
17269
|
+
* default-id regex. The constraint is not advertised on the
|
|
17270
|
+
* `GroupId` schema so that the same schema can be reused at
|
|
17271
|
+
* member-reference sites without falsely rejecting
|
|
17272
|
+
* externally-minted IdP group IDs there.
|
|
17273
|
+
*
|
|
16975
17274
|
*/
|
|
16976
17275
|
declare const createGroup: <ThrowOnError extends boolean = true>(options?: Options<CreateGroupData, ThrowOnError>) => RequestResult<CreateGroupResponses, CreateGroupErrors, ThrowOnError, "fields">;
|
|
16977
17276
|
/**
|
|
@@ -17466,12 +17765,26 @@ declare const getProcessInstanceSequenceFlows: <ThrowOnError extends boolean = t
|
|
|
17466
17765
|
* Get statistics about elements by the process instance key.
|
|
17467
17766
|
*/
|
|
17468
17767
|
declare const getProcessInstanceStatistics: <ThrowOnError extends boolean = true>(options: Options<GetProcessInstanceStatisticsData, ThrowOnError>) => RequestResult<GetProcessInstanceStatisticsResponses, GetProcessInstanceStatisticsErrors, ThrowOnError, "fields">;
|
|
17768
|
+
/**
|
|
17769
|
+
* Search resources
|
|
17770
|
+
*
|
|
17771
|
+
* Search for deployed resources based on given criteria.
|
|
17772
|
+
* :::info
|
|
17773
|
+
* This endpoint does not return BPMN process definitions, DMN decision definitions, or form
|
|
17774
|
+
* resources. To query BPMN process definitions or DMN decision definitions, use their
|
|
17775
|
+
* respective search APIs.
|
|
17776
|
+
* :::
|
|
17777
|
+
*
|
|
17778
|
+
*/
|
|
17779
|
+
declare const searchResources: <ThrowOnError extends boolean = true>(options?: Options<SearchResourcesData, ThrowOnError>) => RequestResult<SearchResourcesResponses, SearchResourcesErrors, ThrowOnError, "fields">;
|
|
17469
17780
|
/**
|
|
17470
17781
|
* Get resource
|
|
17471
17782
|
*
|
|
17472
17783
|
* Returns a deployed resource.
|
|
17473
17784
|
* :::info
|
|
17474
|
-
*
|
|
17785
|
+
* This endpoint does not return BPMN process definitions, DMN decision definitions, or form
|
|
17786
|
+
* resources. To query BPMN process definitions or DMN decision definitions, use their
|
|
17787
|
+
* respective APIs.
|
|
17475
17788
|
* :::
|
|
17476
17789
|
*
|
|
17477
17790
|
*/
|
|
@@ -18828,6 +19141,20 @@ type failJobPathParam_jobKey = (NonNullable<failJobOptions> extends {
|
|
|
18828
19141
|
type failJobInput = failJobBody & {
|
|
18829
19142
|
jobKey: failJobPathParam_jobKey;
|
|
18830
19143
|
};
|
|
19144
|
+
type getAgentInstanceOptions = Parameters<typeof getAgentInstance>[0];
|
|
19145
|
+
type getAgentInstancePathParam_agentInstanceKey = (NonNullable<getAgentInstanceOptions> extends {
|
|
19146
|
+
path: {
|
|
19147
|
+
agentInstanceKey: infer P;
|
|
19148
|
+
};
|
|
19149
|
+
} ? P : any);
|
|
19150
|
+
type getAgentInstanceInput = {
|
|
19151
|
+
agentInstanceKey: getAgentInstancePathParam_agentInstanceKey;
|
|
19152
|
+
};
|
|
19153
|
+
/** Management of eventual consistency **/
|
|
19154
|
+
type getAgentInstanceConsistency = {
|
|
19155
|
+
/** Management of eventual consistency tolerance. Set waitUpToMs to 0 to ignore eventual consistency. pollInterval is 500ms by default. */
|
|
19156
|
+
consistency: ConsistencyOptions<_DataOf<typeof getAgentInstance>>;
|
|
19157
|
+
};
|
|
18831
19158
|
type getAuditLogOptions = Parameters<typeof getAuditLog>[0];
|
|
18832
19159
|
type getAuditLogPathParam_auditLogKey = (NonNullable<getAuditLogOptions> extends {
|
|
18833
19160
|
path: {
|
|
@@ -19528,6 +19855,16 @@ type resumeBatchOperationPathParam_batchOperationKey = (NonNullable<resumeBatchO
|
|
|
19528
19855
|
type resumeBatchOperationInput = resumeBatchOperationBody & {
|
|
19529
19856
|
batchOperationKey: resumeBatchOperationPathParam_batchOperationKey;
|
|
19530
19857
|
};
|
|
19858
|
+
type searchAgentInstancesOptions = Parameters<typeof searchAgentInstances>[0];
|
|
19859
|
+
type searchAgentInstancesBody = (NonNullable<searchAgentInstancesOptions> extends {
|
|
19860
|
+
body?: infer B;
|
|
19861
|
+
} ? B : never);
|
|
19862
|
+
type searchAgentInstancesInput = searchAgentInstancesBody;
|
|
19863
|
+
/** Management of eventual consistency **/
|
|
19864
|
+
type searchAgentInstancesConsistency = {
|
|
19865
|
+
/** Management of eventual consistency tolerance. Set waitUpToMs to 0 to ignore eventual consistency. pollInterval is 500ms by default. */
|
|
19866
|
+
consistency: ConsistencyOptions<_DataOf<typeof searchAgentInstances>>;
|
|
19867
|
+
};
|
|
19531
19868
|
type searchAuditLogsOptions = Parameters<typeof searchAuditLogs>[0];
|
|
19532
19869
|
type searchAuditLogsBody = (NonNullable<searchAuditLogsOptions> extends {
|
|
19533
19870
|
body?: infer B;
|
|
@@ -19885,6 +20222,16 @@ type searchProcessInstancesConsistency = {
|
|
|
19885
20222
|
/** Management of eventual consistency tolerance. Set waitUpToMs to 0 to ignore eventual consistency. pollInterval is 500ms by default. */
|
|
19886
20223
|
consistency: ConsistencyOptions<_DataOf<typeof searchProcessInstances>>;
|
|
19887
20224
|
};
|
|
20225
|
+
type searchResourcesOptions = Parameters<typeof searchResources>[0];
|
|
20226
|
+
type searchResourcesBody = (NonNullable<searchResourcesOptions> extends {
|
|
20227
|
+
body?: infer B;
|
|
20228
|
+
} ? B : never);
|
|
20229
|
+
type searchResourcesInput = searchResourcesBody;
|
|
20230
|
+
/** Management of eventual consistency **/
|
|
20231
|
+
type searchResourcesConsistency = {
|
|
20232
|
+
/** Management of eventual consistency tolerance. Set waitUpToMs to 0 to ignore eventual consistency. pollInterval is 500ms by default. */
|
|
20233
|
+
consistency: ConsistencyOptions<_DataOf<typeof searchResources>>;
|
|
20234
|
+
};
|
|
19888
20235
|
type searchRolesOptions = Parameters<typeof searchRoles>[0];
|
|
19889
20236
|
type searchRolesBody = (NonNullable<searchRolesOptions> extends {
|
|
19890
20237
|
body?: infer B;
|
|
@@ -20620,12 +20967,12 @@ declare class CamundaClient {
|
|
|
20620
20967
|
*
|
|
20621
20968
|
* @example Assign a client to a group
|
|
20622
20969
|
* ```ts
|
|
20623
|
-
* async function assignClientToGroupExample() {
|
|
20970
|
+
* async function assignClientToGroupExample(groupId: GroupId, clientId: ClientId) {
|
|
20624
20971
|
* const camunda = createCamundaClient();
|
|
20625
20972
|
*
|
|
20626
20973
|
* await camunda.assignClientToGroup({
|
|
20627
|
-
* groupId
|
|
20628
|
-
* clientId
|
|
20974
|
+
* groupId,
|
|
20975
|
+
* clientId,
|
|
20629
20976
|
* });
|
|
20630
20977
|
* }
|
|
20631
20978
|
* ```
|
|
@@ -20642,12 +20989,12 @@ declare class CamundaClient {
|
|
|
20642
20989
|
*
|
|
20643
20990
|
* @example Assign a client to a tenant
|
|
20644
20991
|
* ```ts
|
|
20645
|
-
* async function assignClientToTenantExample(tenantId: TenantId) {
|
|
20992
|
+
* async function assignClientToTenantExample(tenantId: TenantId, clientId: ClientId) {
|
|
20646
20993
|
* const camunda = createCamundaClient();
|
|
20647
20994
|
*
|
|
20648
20995
|
* await camunda.assignClientToTenant({
|
|
20649
20996
|
* tenantId,
|
|
20650
|
-
* clientId
|
|
20997
|
+
* clientId,
|
|
20651
20998
|
* });
|
|
20652
20999
|
* }
|
|
20653
21000
|
* ```
|
|
@@ -20664,12 +21011,12 @@ declare class CamundaClient {
|
|
|
20664
21011
|
*
|
|
20665
21012
|
* @example Assign a group to a tenant
|
|
20666
21013
|
* ```ts
|
|
20667
|
-
* async function assignGroupToTenantExample(tenantId: TenantId) {
|
|
21014
|
+
* async function assignGroupToTenantExample(tenantId: TenantId, groupId: GroupId) {
|
|
20668
21015
|
* const camunda = createCamundaClient();
|
|
20669
21016
|
*
|
|
20670
21017
|
* await camunda.assignGroupToTenant({
|
|
20671
21018
|
* tenantId,
|
|
20672
|
-
* groupId
|
|
21019
|
+
* groupId,
|
|
20673
21020
|
* });
|
|
20674
21021
|
* }
|
|
20675
21022
|
* ```
|
|
@@ -20684,12 +21031,12 @@ declare class CamundaClient {
|
|
|
20684
21031
|
*
|
|
20685
21032
|
* @example Assign a mapping rule to a group
|
|
20686
21033
|
* ```ts
|
|
20687
|
-
* async function assignMappingRuleToGroupExample() {
|
|
21034
|
+
* async function assignMappingRuleToGroupExample(groupId: GroupId, mappingRuleId: MappingRuleId) {
|
|
20688
21035
|
* const camunda = createCamundaClient();
|
|
20689
21036
|
*
|
|
20690
21037
|
* await camunda.assignMappingRuleToGroup({
|
|
20691
|
-
* groupId
|
|
20692
|
-
* mappingRuleId
|
|
21038
|
+
* groupId,
|
|
21039
|
+
* mappingRuleId,
|
|
20693
21040
|
* });
|
|
20694
21041
|
* }
|
|
20695
21042
|
* ```
|
|
@@ -20704,12 +21051,12 @@ declare class CamundaClient {
|
|
|
20704
21051
|
*
|
|
20705
21052
|
* @example Assign a mapping rule to a tenant
|
|
20706
21053
|
* ```ts
|
|
20707
|
-
* async function assignMappingRuleToTenantExample(tenantId: TenantId) {
|
|
21054
|
+
* async function assignMappingRuleToTenantExample(tenantId: TenantId, mappingRuleId: MappingRuleId) {
|
|
20708
21055
|
* const camunda = createCamundaClient();
|
|
20709
21056
|
*
|
|
20710
21057
|
* await camunda.assignMappingRuleToTenant({
|
|
20711
21058
|
* tenantId,
|
|
20712
|
-
* mappingRuleId
|
|
21059
|
+
* mappingRuleId,
|
|
20713
21060
|
* });
|
|
20714
21061
|
* }
|
|
20715
21062
|
* ```
|
|
@@ -20724,12 +21071,12 @@ declare class CamundaClient {
|
|
|
20724
21071
|
*
|
|
20725
21072
|
* @example Assign a role to a client
|
|
20726
21073
|
* ```ts
|
|
20727
|
-
* async function assignRoleToClientExample() {
|
|
21074
|
+
* async function assignRoleToClientExample(roleId: RoleId, clientId: ClientId) {
|
|
20728
21075
|
* const camunda = createCamundaClient();
|
|
20729
21076
|
*
|
|
20730
21077
|
* await camunda.assignRoleToClient({
|
|
20731
|
-
* roleId
|
|
20732
|
-
* clientId
|
|
21078
|
+
* roleId,
|
|
21079
|
+
* clientId,
|
|
20733
21080
|
* });
|
|
20734
21081
|
* }
|
|
20735
21082
|
* ```
|
|
@@ -20744,12 +21091,12 @@ declare class CamundaClient {
|
|
|
20744
21091
|
*
|
|
20745
21092
|
* @example Assign a role to a group
|
|
20746
21093
|
* ```ts
|
|
20747
|
-
* async function assignRoleToGroupExample() {
|
|
21094
|
+
* async function assignRoleToGroupExample(roleId: RoleId, groupId: GroupId) {
|
|
20748
21095
|
* const camunda = createCamundaClient();
|
|
20749
21096
|
*
|
|
20750
21097
|
* await camunda.assignRoleToGroup({
|
|
20751
|
-
* roleId
|
|
20752
|
-
* groupId
|
|
21098
|
+
* roleId,
|
|
21099
|
+
* groupId,
|
|
20753
21100
|
* });
|
|
20754
21101
|
* }
|
|
20755
21102
|
* ```
|
|
@@ -20764,12 +21111,12 @@ declare class CamundaClient {
|
|
|
20764
21111
|
*
|
|
20765
21112
|
* @example Assign a role to a mapping rule
|
|
20766
21113
|
* ```ts
|
|
20767
|
-
* async function assignRoleToMappingRuleExample() {
|
|
21114
|
+
* async function assignRoleToMappingRuleExample(roleId: RoleId, mappingRuleId: MappingRuleId) {
|
|
20768
21115
|
* const camunda = createCamundaClient();
|
|
20769
21116
|
*
|
|
20770
21117
|
* await camunda.assignRoleToMappingRule({
|
|
20771
|
-
* roleId
|
|
20772
|
-
* mappingRuleId
|
|
21118
|
+
* roleId,
|
|
21119
|
+
* mappingRuleId,
|
|
20773
21120
|
* });
|
|
20774
21121
|
* }
|
|
20775
21122
|
* ```
|
|
@@ -20786,12 +21133,12 @@ declare class CamundaClient {
|
|
|
20786
21133
|
*
|
|
20787
21134
|
* @example Assign a role to a tenant
|
|
20788
21135
|
* ```ts
|
|
20789
|
-
* async function assignRoleToTenantExample(tenantId: TenantId) {
|
|
21136
|
+
* async function assignRoleToTenantExample(tenantId: TenantId, roleId: RoleId) {
|
|
20790
21137
|
* const camunda = createCamundaClient();
|
|
20791
21138
|
*
|
|
20792
21139
|
* await camunda.assignRoleToTenant({
|
|
20793
21140
|
* tenantId,
|
|
20794
|
-
* roleId
|
|
21141
|
+
* roleId,
|
|
20795
21142
|
* });
|
|
20796
21143
|
* }
|
|
20797
21144
|
* ```
|
|
@@ -20806,11 +21153,11 @@ declare class CamundaClient {
|
|
|
20806
21153
|
*
|
|
20807
21154
|
* @example Assign a role to a user
|
|
20808
21155
|
* ```ts
|
|
20809
|
-
* async function assignRoleToUserExample(username: Username) {
|
|
21156
|
+
* async function assignRoleToUserExample(roleId: RoleId, username: Username) {
|
|
20810
21157
|
* const camunda = createCamundaClient();
|
|
20811
21158
|
*
|
|
20812
21159
|
* await camunda.assignRoleToUser({
|
|
20813
|
-
* roleId
|
|
21160
|
+
* roleId,
|
|
20814
21161
|
* username,
|
|
20815
21162
|
* });
|
|
20816
21163
|
* }
|
|
@@ -20850,11 +21197,11 @@ declare class CamundaClient {
|
|
|
20850
21197
|
*
|
|
20851
21198
|
* @example Assign a user to a group
|
|
20852
21199
|
* ```ts
|
|
20853
|
-
* async function assignUserToGroupExample(username: Username) {
|
|
21200
|
+
* async function assignUserToGroupExample(groupId: GroupId, username: Username) {
|
|
20854
21201
|
* const camunda = createCamundaClient();
|
|
20855
21202
|
*
|
|
20856
21203
|
* await camunda.assignUserToGroup({
|
|
20857
|
-
* groupId
|
|
21204
|
+
* groupId,
|
|
20858
21205
|
* username,
|
|
20859
21206
|
* });
|
|
20860
21207
|
* }
|
|
@@ -21258,11 +21605,11 @@ declare class CamundaClient {
|
|
|
21258
21605
|
*
|
|
21259
21606
|
* @example Create a global cluster variable
|
|
21260
21607
|
* ```ts
|
|
21261
|
-
* async function createGlobalClusterVariableExample() {
|
|
21608
|
+
* async function createGlobalClusterVariableExample(name: ClusterVariableName) {
|
|
21262
21609
|
* const camunda = createCamundaClient();
|
|
21263
21610
|
*
|
|
21264
21611
|
* const result = await camunda.createGlobalClusterVariable({
|
|
21265
|
-
* name
|
|
21612
|
+
* name,
|
|
21266
21613
|
* value: { darkMode: true },
|
|
21267
21614
|
* });
|
|
21268
21615
|
*
|
|
@@ -21300,14 +21647,30 @@ declare class CamundaClient {
|
|
|
21300
21647
|
* Create group
|
|
21301
21648
|
*
|
|
21302
21649
|
* Create a new group.
|
|
21650
|
+
*
|
|
21651
|
+
* The supplied `groupId` is validated against `^[a-zA-Z0-9_~@.+-]+$`
|
|
21652
|
+
* (max 256 characters) by `IdentifierValidator.validateId` in the
|
|
21653
|
+
* runtime. This strict validation applies wherever the Groups API
|
|
21654
|
+
* is available: in OIDC deployments that set
|
|
21655
|
+
* `camunda.security.authentication.oidc.groupsClaim` the Groups
|
|
21656
|
+
* API (including this endpoint) is disabled entirely, so group
|
|
21657
|
+
* CRUD never sees externally-minted IdP IDs. The BYOG relaxation
|
|
21658
|
+
* only loosens validation when a group is referenced *as a member*
|
|
21659
|
+
* of a role or tenant (`assignRoleToGroup`,
|
|
21660
|
+
* `assignGroupToTenant`); group CRUD itself always uses the strict
|
|
21661
|
+
* default-id regex. The constraint is not advertised on the
|
|
21662
|
+
* `GroupId` schema so that the same schema can be reused at
|
|
21663
|
+
* member-reference sites without falsely rejecting
|
|
21664
|
+
* externally-minted IdP group IDs there.
|
|
21665
|
+
*
|
|
21303
21666
|
*
|
|
21304
21667
|
* @example Create a group
|
|
21305
21668
|
* ```ts
|
|
21306
|
-
* async function createGroupExample() {
|
|
21669
|
+
* async function createGroupExample(groupId: GroupId) {
|
|
21307
21670
|
* const camunda = createCamundaClient();
|
|
21308
21671
|
*
|
|
21309
21672
|
* const result = await camunda.createGroup({
|
|
21310
|
-
* groupId
|
|
21673
|
+
* groupId,
|
|
21311
21674
|
* name: 'Engineering Team',
|
|
21312
21675
|
* });
|
|
21313
21676
|
*
|
|
@@ -21326,11 +21689,11 @@ declare class CamundaClient {
|
|
|
21326
21689
|
*
|
|
21327
21690
|
* @example Create a mapping rule
|
|
21328
21691
|
* ```ts
|
|
21329
|
-
* async function createMappingRuleExample() {
|
|
21692
|
+
* async function createMappingRuleExample(mappingRuleId: MappingRuleId) {
|
|
21330
21693
|
* const camunda = createCamundaClient();
|
|
21331
21694
|
*
|
|
21332
21695
|
* const result = await camunda.createMappingRule({
|
|
21333
|
-
* mappingRuleId
|
|
21696
|
+
* mappingRuleId,
|
|
21334
21697
|
* name: 'LDAP Group Mapping',
|
|
21335
21698
|
* claimName: 'groups',
|
|
21336
21699
|
* claimValue: 'engineering',
|
|
@@ -21398,11 +21761,11 @@ declare class CamundaClient {
|
|
|
21398
21761
|
*
|
|
21399
21762
|
* @example Create a role
|
|
21400
21763
|
* ```ts
|
|
21401
|
-
* async function createRoleExample() {
|
|
21764
|
+
* async function createRoleExample(roleId: RoleId) {
|
|
21402
21765
|
* const camunda = createCamundaClient();
|
|
21403
21766
|
*
|
|
21404
21767
|
* const result = await camunda.createRole({
|
|
21405
|
-
* roleId
|
|
21768
|
+
* roleId,
|
|
21406
21769
|
* name: 'Process Admin',
|
|
21407
21770
|
* });
|
|
21408
21771
|
*
|
|
@@ -21442,12 +21805,12 @@ declare class CamundaClient {
|
|
|
21442
21805
|
*
|
|
21443
21806
|
* @example Create a tenant cluster variable
|
|
21444
21807
|
* ```ts
|
|
21445
|
-
* async function createTenantClusterVariableExample(tenantId: TenantId) {
|
|
21808
|
+
* async function createTenantClusterVariableExample(tenantId: TenantId, name: ClusterVariableName) {
|
|
21446
21809
|
* const camunda = createCamundaClient();
|
|
21447
21810
|
*
|
|
21448
21811
|
* const result = await camunda.createTenantClusterVariable({
|
|
21449
21812
|
* tenantId,
|
|
21450
|
-
* name
|
|
21813
|
+
* name,
|
|
21451
21814
|
* value: { region: 'us-east-1' },
|
|
21452
21815
|
* });
|
|
21453
21816
|
*
|
|
@@ -21566,10 +21929,10 @@ declare class CamundaClient {
|
|
|
21566
21929
|
*
|
|
21567
21930
|
* @example Delete a global cluster variable
|
|
21568
21931
|
* ```ts
|
|
21569
|
-
* async function deleteGlobalClusterVariableExample() {
|
|
21932
|
+
* async function deleteGlobalClusterVariableExample(name: ClusterVariableName) {
|
|
21570
21933
|
* const camunda = createCamundaClient();
|
|
21571
21934
|
*
|
|
21572
|
-
* await camunda.deleteGlobalClusterVariable({ name
|
|
21935
|
+
* await camunda.deleteGlobalClusterVariable({ name });
|
|
21573
21936
|
* }
|
|
21574
21937
|
* ```
|
|
21575
21938
|
* @operationId deleteGlobalClusterVariable
|
|
@@ -21602,10 +21965,10 @@ declare class CamundaClient {
|
|
|
21602
21965
|
*
|
|
21603
21966
|
* @example Delete a group
|
|
21604
21967
|
* ```ts
|
|
21605
|
-
* async function deleteGroupExample() {
|
|
21968
|
+
* async function deleteGroupExample(groupId: GroupId) {
|
|
21606
21969
|
* const camunda = createCamundaClient();
|
|
21607
21970
|
*
|
|
21608
|
-
* await camunda.deleteGroup({ groupId
|
|
21971
|
+
* await camunda.deleteGroup({ groupId });
|
|
21609
21972
|
* }
|
|
21610
21973
|
* ```
|
|
21611
21974
|
* @operationId deleteGroup
|
|
@@ -21620,10 +21983,10 @@ declare class CamundaClient {
|
|
|
21620
21983
|
*
|
|
21621
21984
|
* @example Delete a mapping rule
|
|
21622
21985
|
* ```ts
|
|
21623
|
-
* async function deleteMappingRuleExample() {
|
|
21986
|
+
* async function deleteMappingRuleExample(mappingRuleId: MappingRuleId) {
|
|
21624
21987
|
* const camunda = createCamundaClient();
|
|
21625
21988
|
*
|
|
21626
|
-
* await camunda.deleteMappingRule({ mappingRuleId
|
|
21989
|
+
* await camunda.deleteMappingRule({ mappingRuleId });
|
|
21627
21990
|
* }
|
|
21628
21991
|
* ```
|
|
21629
21992
|
* @operationId deleteMappingRule
|
|
@@ -21714,10 +22077,10 @@ declare class CamundaClient {
|
|
|
21714
22077
|
*
|
|
21715
22078
|
* @example Delete a role
|
|
21716
22079
|
* ```ts
|
|
21717
|
-
* async function deleteRoleExample() {
|
|
22080
|
+
* async function deleteRoleExample(roleId: RoleId) {
|
|
21718
22081
|
* const camunda = createCamundaClient();
|
|
21719
22082
|
*
|
|
21720
|
-
* await camunda.deleteRole({ roleId
|
|
22083
|
+
* await camunda.deleteRole({ roleId });
|
|
21721
22084
|
* }
|
|
21722
22085
|
* ```
|
|
21723
22086
|
* @operationId deleteRole
|
|
@@ -21748,12 +22111,12 @@ declare class CamundaClient {
|
|
|
21748
22111
|
*
|
|
21749
22112
|
* @example Delete a tenant cluster variable
|
|
21750
22113
|
* ```ts
|
|
21751
|
-
* async function deleteTenantClusterVariableExample(tenantId: TenantId) {
|
|
22114
|
+
* async function deleteTenantClusterVariableExample(tenantId: TenantId, name: ClusterVariableName) {
|
|
21752
22115
|
* const camunda = createCamundaClient();
|
|
21753
22116
|
*
|
|
21754
22117
|
* await camunda.deleteTenantClusterVariable({
|
|
21755
22118
|
* tenantId,
|
|
21756
|
-
* name
|
|
22119
|
+
* name,
|
|
21757
22120
|
* });
|
|
21758
22121
|
* }
|
|
21759
22122
|
* ```
|
|
@@ -21894,6 +22257,30 @@ declare class CamundaClient {
|
|
|
21894
22257
|
* @tags Job
|
|
21895
22258
|
*/
|
|
21896
22259
|
failJob(input: failJobInput, options?: OperationOptions): CancelablePromise<_DataOf<typeof failJob>>;
|
|
22260
|
+
/**
|
|
22261
|
+
* Get agent instance
|
|
22262
|
+
*
|
|
22263
|
+
* Returns agent instance as JSON.
|
|
22264
|
+
*
|
|
22265
|
+
* @example Get an agent instance
|
|
22266
|
+
* ```ts
|
|
22267
|
+
* async function getAgentInstanceExample(agentInstanceKey: AgentInstanceKey) {
|
|
22268
|
+
* const camunda = createCamundaClient();
|
|
22269
|
+
*
|
|
22270
|
+
* const instance = await camunda.getAgentInstance(
|
|
22271
|
+
* { agentInstanceKey },
|
|
22272
|
+
* { consistency: { waitUpToMs: 5000 } }
|
|
22273
|
+
* );
|
|
22274
|
+
*
|
|
22275
|
+
* console.log(`Status: ${instance.status}`);
|
|
22276
|
+
* console.log(`Element: ${instance.elementId}`);
|
|
22277
|
+
* }
|
|
22278
|
+
* ```
|
|
22279
|
+
* @operationId getAgentInstance
|
|
22280
|
+
* @tags Agent instance
|
|
22281
|
+
* @consistency eventual - this endpoint is backed by data that is eventually consistent with the system state.
|
|
22282
|
+
*/
|
|
22283
|
+
getAgentInstance(input: getAgentInstanceInput, /** Management of eventual consistency **/ consistencyManagement: getAgentInstanceConsistency, options?: OperationOptions): CancelablePromise<_DataOf<typeof getAgentInstance>>;
|
|
21897
22284
|
/**
|
|
21898
22285
|
* Get audit log
|
|
21899
22286
|
*
|
|
@@ -22149,11 +22536,11 @@ declare class CamundaClient {
|
|
|
22149
22536
|
*
|
|
22150
22537
|
* @example Get a global cluster variable
|
|
22151
22538
|
* ```ts
|
|
22152
|
-
* async function getGlobalClusterVariableExample() {
|
|
22539
|
+
* async function getGlobalClusterVariableExample(name: ClusterVariableName) {
|
|
22153
22540
|
* const camunda = createCamundaClient();
|
|
22154
22541
|
*
|
|
22155
22542
|
* const variable = await camunda.getGlobalClusterVariable(
|
|
22156
|
-
* { name
|
|
22543
|
+
* { name },
|
|
22157
22544
|
* { consistency: { waitUpToMs: 5000 } }
|
|
22158
22545
|
* );
|
|
22159
22546
|
*
|
|
@@ -22222,13 +22609,10 @@ declare class CamundaClient {
|
|
|
22222
22609
|
*
|
|
22223
22610
|
* @example Get a group
|
|
22224
22611
|
* ```ts
|
|
22225
|
-
* async function getGroupExample() {
|
|
22612
|
+
* async function getGroupExample(groupId: GroupId) {
|
|
22226
22613
|
* const camunda = createCamundaClient();
|
|
22227
22614
|
*
|
|
22228
|
-
* const group = await camunda.getGroup(
|
|
22229
|
-
* { groupId: 'engineering-team' },
|
|
22230
|
-
* { consistency: { waitUpToMs: 5000 } }
|
|
22231
|
-
* );
|
|
22615
|
+
* const group = await camunda.getGroup({ groupId }, { consistency: { waitUpToMs: 5000 } });
|
|
22232
22616
|
*
|
|
22233
22617
|
* console.log(`Group: ${group.name}`);
|
|
22234
22618
|
* }
|
|
@@ -22412,11 +22796,11 @@ declare class CamundaClient {
|
|
|
22412
22796
|
*
|
|
22413
22797
|
* @example Get a mapping rule
|
|
22414
22798
|
* ```ts
|
|
22415
|
-
* async function getMappingRuleExample() {
|
|
22799
|
+
* async function getMappingRuleExample(mappingRuleId: MappingRuleId) {
|
|
22416
22800
|
* const camunda = createCamundaClient();
|
|
22417
22801
|
*
|
|
22418
22802
|
* const rule = await camunda.getMappingRule(
|
|
22419
|
-
* { mappingRuleId
|
|
22803
|
+
* { mappingRuleId },
|
|
22420
22804
|
* { consistency: { waitUpToMs: 5000 } }
|
|
22421
22805
|
* );
|
|
22422
22806
|
*
|
|
@@ -22753,7 +23137,9 @@ declare class CamundaClient {
|
|
|
22753
23137
|
*
|
|
22754
23138
|
* Returns a deployed resource.
|
|
22755
23139
|
* :::info
|
|
22756
|
-
*
|
|
23140
|
+
* This endpoint does not return BPMN process definitions, DMN decision definitions, or form
|
|
23141
|
+
* resources. To query BPMN process definitions or DMN decision definitions, use their
|
|
23142
|
+
* respective APIs.
|
|
22757
23143
|
* :::
|
|
22758
23144
|
*
|
|
22759
23145
|
*
|
|
@@ -22813,13 +23199,10 @@ declare class CamundaClient {
|
|
|
22813
23199
|
*
|
|
22814
23200
|
* @example Get a role
|
|
22815
23201
|
* ```ts
|
|
22816
|
-
* async function getRoleExample() {
|
|
23202
|
+
* async function getRoleExample(roleId: RoleId) {
|
|
22817
23203
|
* const camunda = createCamundaClient();
|
|
22818
23204
|
*
|
|
22819
|
-
* const role = await camunda.getRole(
|
|
22820
|
-
* { roleId: 'process-admin' },
|
|
22821
|
-
* { consistency: { waitUpToMs: 5000 } }
|
|
22822
|
-
* );
|
|
23205
|
+
* const role = await camunda.getRole({ roleId }, { consistency: { waitUpToMs: 5000 } });
|
|
22823
23206
|
*
|
|
22824
23207
|
* console.log(`Role: ${role.name}`);
|
|
22825
23208
|
* }
|
|
@@ -22926,13 +23309,13 @@ declare class CamundaClient {
|
|
|
22926
23309
|
*
|
|
22927
23310
|
* @example Get a tenant cluster variable
|
|
22928
23311
|
* ```ts
|
|
22929
|
-
* async function getTenantClusterVariableExample(tenantId: TenantId) {
|
|
23312
|
+
* async function getTenantClusterVariableExample(tenantId: TenantId, name: ClusterVariableName) {
|
|
22930
23313
|
* const camunda = createCamundaClient();
|
|
22931
23314
|
*
|
|
22932
23315
|
* const variable = await camunda.getTenantClusterVariable(
|
|
22933
23316
|
* {
|
|
22934
23317
|
* tenantId,
|
|
22935
|
-
* name
|
|
23318
|
+
* name,
|
|
22936
23319
|
* },
|
|
22937
23320
|
* { consistency: { waitUpToMs: 5000 } }
|
|
22938
23321
|
* );
|
|
@@ -23402,6 +23785,36 @@ declare class CamundaClient {
|
|
|
23402
23785
|
* @tags Batch operation
|
|
23403
23786
|
*/
|
|
23404
23787
|
resumeBatchOperation(input: resumeBatchOperationInput, options?: OperationOptions): CancelablePromise<_DataOf<typeof resumeBatchOperation>>;
|
|
23788
|
+
/**
|
|
23789
|
+
* Search agent instances
|
|
23790
|
+
*
|
|
23791
|
+
* Search for agent instances based on given criteria.
|
|
23792
|
+
*
|
|
23793
|
+
* @example Search agent instances
|
|
23794
|
+
* ```ts
|
|
23795
|
+
* async function searchAgentInstancesExample() {
|
|
23796
|
+
* const camunda = createCamundaClient();
|
|
23797
|
+
*
|
|
23798
|
+
* const result = await camunda.searchAgentInstances(
|
|
23799
|
+
* {
|
|
23800
|
+
* filter: { status: { $eq: 'IDLE' } },
|
|
23801
|
+
* sort: [{ field: 'creationDate', order: 'DESC' }],
|
|
23802
|
+
* page: { limit: 10 },
|
|
23803
|
+
* },
|
|
23804
|
+
* { consistency: { waitUpToMs: 5000 } }
|
|
23805
|
+
* );
|
|
23806
|
+
*
|
|
23807
|
+
* for (const instance of result.items ?? []) {
|
|
23808
|
+
* console.log(`${instance.agentInstanceKey}: ${instance.status}`);
|
|
23809
|
+
* }
|
|
23810
|
+
* console.log(`Total: ${result.page.totalItems}`);
|
|
23811
|
+
* }
|
|
23812
|
+
* ```
|
|
23813
|
+
* @operationId searchAgentInstances
|
|
23814
|
+
* @tags Agent instance
|
|
23815
|
+
* @consistency eventual - this endpoint is backed by data that is eventually consistent with the system state.
|
|
23816
|
+
*/
|
|
23817
|
+
searchAgentInstances(input: searchAgentInstancesInput, /** Management of eventual consistency **/ consistencyManagement: searchAgentInstancesConsistency, options?: OperationOptions): CancelablePromise<_DataOf<typeof searchAgentInstances>>;
|
|
23405
23818
|
/**
|
|
23406
23819
|
* Search audit logs
|
|
23407
23820
|
*
|
|
@@ -23518,11 +23931,11 @@ declare class CamundaClient {
|
|
|
23518
23931
|
*
|
|
23519
23932
|
* @example Search clients in a group
|
|
23520
23933
|
* ```ts
|
|
23521
|
-
* async function searchClientsForGroupExample() {
|
|
23934
|
+
* async function searchClientsForGroupExample(groupId: GroupId) {
|
|
23522
23935
|
* const camunda = createCamundaClient();
|
|
23523
23936
|
*
|
|
23524
23937
|
* const result = await camunda.searchClientsForGroup(
|
|
23525
|
-
* { groupId
|
|
23938
|
+
* { groupId },
|
|
23526
23939
|
* { consistency: { waitUpToMs: 5000 } }
|
|
23527
23940
|
* );
|
|
23528
23941
|
*
|
|
@@ -23543,11 +23956,11 @@ declare class CamundaClient {
|
|
|
23543
23956
|
*
|
|
23544
23957
|
* @example Search clients for a role
|
|
23545
23958
|
* ```ts
|
|
23546
|
-
* async function searchClientsForRoleExample() {
|
|
23959
|
+
* async function searchClientsForRoleExample(roleId: RoleId) {
|
|
23547
23960
|
* const camunda = createCamundaClient();
|
|
23548
23961
|
*
|
|
23549
23962
|
* const result = await camunda.searchClientsForRole(
|
|
23550
|
-
* { roleId
|
|
23963
|
+
* { roleId },
|
|
23551
23964
|
* { consistency: { waitUpToMs: 5000 } }
|
|
23552
23965
|
* );
|
|
23553
23966
|
*
|
|
@@ -23867,11 +24280,11 @@ declare class CamundaClient {
|
|
|
23867
24280
|
*
|
|
23868
24281
|
* @example Search groups for a role
|
|
23869
24282
|
* ```ts
|
|
23870
|
-
* async function searchGroupsForRoleExample() {
|
|
24283
|
+
* async function searchGroupsForRoleExample(roleId: RoleId) {
|
|
23871
24284
|
* const camunda = createCamundaClient();
|
|
23872
24285
|
*
|
|
23873
24286
|
* const result = await camunda.searchGroupsForRole(
|
|
23874
|
-
* { roleId
|
|
24287
|
+
* { roleId },
|
|
23875
24288
|
* { consistency: { waitUpToMs: 5000 } }
|
|
23876
24289
|
* );
|
|
23877
24290
|
*
|
|
@@ -23979,11 +24392,11 @@ declare class CamundaClient {
|
|
|
23979
24392
|
*
|
|
23980
24393
|
* @example Search mapping rules for a group
|
|
23981
24394
|
* ```ts
|
|
23982
|
-
* async function searchMappingRulesForGroupExample() {
|
|
24395
|
+
* async function searchMappingRulesForGroupExample(groupId: GroupId) {
|
|
23983
24396
|
* const camunda = createCamundaClient();
|
|
23984
24397
|
*
|
|
23985
24398
|
* const result = await camunda.searchMappingRulesForGroup(
|
|
23986
|
-
* { groupId
|
|
24399
|
+
* { groupId },
|
|
23987
24400
|
* { consistency: { waitUpToMs: 5000 } }
|
|
23988
24401
|
* );
|
|
23989
24402
|
*
|
|
@@ -24004,11 +24417,11 @@ declare class CamundaClient {
|
|
|
24004
24417
|
*
|
|
24005
24418
|
* @example Search mapping rules for a role
|
|
24006
24419
|
* ```ts
|
|
24007
|
-
* async function searchMappingRulesForRoleExample() {
|
|
24420
|
+
* async function searchMappingRulesForRoleExample(roleId: RoleId) {
|
|
24008
24421
|
* const camunda = createCamundaClient();
|
|
24009
24422
|
*
|
|
24010
24423
|
* const result = await camunda.searchMappingRulesForRole(
|
|
24011
|
-
* { roleId
|
|
24424
|
+
* { roleId },
|
|
24012
24425
|
* { consistency: { waitUpToMs: 5000 } }
|
|
24013
24426
|
* );
|
|
24014
24427
|
*
|
|
@@ -24177,6 +24590,37 @@ declare class CamundaClient {
|
|
|
24177
24590
|
* @consistency eventual - this endpoint is backed by data that is eventually consistent with the system state.
|
|
24178
24591
|
*/
|
|
24179
24592
|
searchProcessInstances(input: searchProcessInstancesInput, /** Management of eventual consistency **/ consistencyManagement: searchProcessInstancesConsistency, options?: OperationOptions): CancelablePromise<_DataOf<typeof searchProcessInstances>>;
|
|
24593
|
+
/**
|
|
24594
|
+
* Search resources
|
|
24595
|
+
*
|
|
24596
|
+
* Search for deployed resources based on given criteria.
|
|
24597
|
+
* :::info
|
|
24598
|
+
* This endpoint does not return BPMN process definitions, DMN decision definitions, or form
|
|
24599
|
+
* resources. To query BPMN process definitions or DMN decision definitions, use their
|
|
24600
|
+
* respective search APIs.
|
|
24601
|
+
* :::
|
|
24602
|
+
*
|
|
24603
|
+
*
|
|
24604
|
+
* @example Search resources
|
|
24605
|
+
* ```ts
|
|
24606
|
+
* async function searchResourcesExample() {
|
|
24607
|
+
* const camunda = createCamundaClient();
|
|
24608
|
+
*
|
|
24609
|
+
* const result = await camunda.searchResources(
|
|
24610
|
+
* { page: { limit: 10 } },
|
|
24611
|
+
* { consistency: { waitUpToMs: 5000 } }
|
|
24612
|
+
* );
|
|
24613
|
+
*
|
|
24614
|
+
* for (const resource of result.items ?? []) {
|
|
24615
|
+
* console.log(`Resource: ${resource.resourceName}`);
|
|
24616
|
+
* }
|
|
24617
|
+
* }
|
|
24618
|
+
* ```
|
|
24619
|
+
* @operationId searchResources
|
|
24620
|
+
* @tags Resource
|
|
24621
|
+
* @consistency eventual - this endpoint is backed by data that is eventually consistent with the system state.
|
|
24622
|
+
*/
|
|
24623
|
+
searchResources(input: searchResourcesInput, /** Management of eventual consistency **/ consistencyManagement: searchResourcesConsistency, options?: OperationOptions): CancelablePromise<_DataOf<typeof searchResources>>;
|
|
24180
24624
|
/**
|
|
24181
24625
|
* Search roles
|
|
24182
24626
|
*
|
|
@@ -24211,11 +24655,11 @@ declare class CamundaClient {
|
|
|
24211
24655
|
*
|
|
24212
24656
|
* @example Search roles for a group
|
|
24213
24657
|
* ```ts
|
|
24214
|
-
* async function searchRolesForGroupExample() {
|
|
24658
|
+
* async function searchRolesForGroupExample(groupId: GroupId) {
|
|
24215
24659
|
* const camunda = createCamundaClient();
|
|
24216
24660
|
*
|
|
24217
24661
|
* const result = await camunda.searchRolesForGroup(
|
|
24218
|
-
* { groupId
|
|
24662
|
+
* { groupId },
|
|
24219
24663
|
* { consistency: { waitUpToMs: 5000 } }
|
|
24220
24664
|
* );
|
|
24221
24665
|
*
|
|
@@ -24316,11 +24760,11 @@ declare class CamundaClient {
|
|
|
24316
24760
|
*
|
|
24317
24761
|
* @example Search users in a group
|
|
24318
24762
|
* ```ts
|
|
24319
|
-
* async function searchUsersForGroupExample() {
|
|
24763
|
+
* async function searchUsersForGroupExample(groupId: GroupId) {
|
|
24320
24764
|
* const camunda = createCamundaClient();
|
|
24321
24765
|
*
|
|
24322
24766
|
* const result = await camunda.searchUsersForGroup(
|
|
24323
|
-
* { groupId
|
|
24767
|
+
* { groupId },
|
|
24324
24768
|
* { consistency: { waitUpToMs: 5000 } }
|
|
24325
24769
|
* );
|
|
24326
24770
|
*
|
|
@@ -24341,11 +24785,11 @@ declare class CamundaClient {
|
|
|
24341
24785
|
*
|
|
24342
24786
|
* @example Search users for a role
|
|
24343
24787
|
* ```ts
|
|
24344
|
-
* async function searchUsersForRoleExample() {
|
|
24788
|
+
* async function searchUsersForRoleExample(roleId: RoleId) {
|
|
24345
24789
|
* const camunda = createCamundaClient();
|
|
24346
24790
|
*
|
|
24347
24791
|
* const result = await camunda.searchUsersForRole(
|
|
24348
|
-
* { roleId
|
|
24792
|
+
* { roleId },
|
|
24349
24793
|
* { consistency: { waitUpToMs: 5000 } }
|
|
24350
24794
|
* );
|
|
24351
24795
|
*
|
|
@@ -24589,12 +25033,12 @@ declare class CamundaClient {
|
|
|
24589
25033
|
*
|
|
24590
25034
|
* @example Unassign a client from a group
|
|
24591
25035
|
* ```ts
|
|
24592
|
-
* async function unassignClientFromGroupExample() {
|
|
25036
|
+
* async function unassignClientFromGroupExample(groupId: GroupId, clientId: ClientId) {
|
|
24593
25037
|
* const camunda = createCamundaClient();
|
|
24594
25038
|
*
|
|
24595
25039
|
* await camunda.unassignClientFromGroup({
|
|
24596
|
-
* groupId
|
|
24597
|
-
* clientId
|
|
25040
|
+
* groupId,
|
|
25041
|
+
* clientId,
|
|
24598
25042
|
* });
|
|
24599
25043
|
* }
|
|
24600
25044
|
* ```
|
|
@@ -24611,12 +25055,12 @@ declare class CamundaClient {
|
|
|
24611
25055
|
*
|
|
24612
25056
|
* @example Unassign a client from a tenant
|
|
24613
25057
|
* ```ts
|
|
24614
|
-
* async function unassignClientFromTenantExample(tenantId: TenantId) {
|
|
25058
|
+
* async function unassignClientFromTenantExample(tenantId: TenantId, clientId: ClientId) {
|
|
24615
25059
|
* const camunda = createCamundaClient();
|
|
24616
25060
|
*
|
|
24617
25061
|
* await camunda.unassignClientFromTenant({
|
|
24618
25062
|
* tenantId,
|
|
24619
|
-
* clientId
|
|
25063
|
+
* clientId,
|
|
24620
25064
|
* });
|
|
24621
25065
|
* }
|
|
24622
25066
|
* ```
|
|
@@ -24633,12 +25077,12 @@ declare class CamundaClient {
|
|
|
24633
25077
|
*
|
|
24634
25078
|
* @example Unassign a group from a tenant
|
|
24635
25079
|
* ```ts
|
|
24636
|
-
* async function unassignGroupFromTenantExample(tenantId: TenantId) {
|
|
25080
|
+
* async function unassignGroupFromTenantExample(tenantId: TenantId, groupId: GroupId) {
|
|
24637
25081
|
* const camunda = createCamundaClient();
|
|
24638
25082
|
*
|
|
24639
25083
|
* await camunda.unassignGroupFromTenant({
|
|
24640
25084
|
* tenantId,
|
|
24641
|
-
* groupId
|
|
25085
|
+
* groupId,
|
|
24642
25086
|
* });
|
|
24643
25087
|
* }
|
|
24644
25088
|
* ```
|
|
@@ -24653,12 +25097,12 @@ declare class CamundaClient {
|
|
|
24653
25097
|
*
|
|
24654
25098
|
* @example Unassign a mapping rule from a group
|
|
24655
25099
|
* ```ts
|
|
24656
|
-
* async function unassignMappingRuleFromGroupExample() {
|
|
25100
|
+
* async function unassignMappingRuleFromGroupExample(groupId: GroupId, mappingRuleId: MappingRuleId) {
|
|
24657
25101
|
* const camunda = createCamundaClient();
|
|
24658
25102
|
*
|
|
24659
25103
|
* await camunda.unassignMappingRuleFromGroup({
|
|
24660
|
-
* groupId
|
|
24661
|
-
* mappingRuleId
|
|
25104
|
+
* groupId,
|
|
25105
|
+
* mappingRuleId,
|
|
24662
25106
|
* });
|
|
24663
25107
|
* }
|
|
24664
25108
|
* ```
|
|
@@ -24673,12 +25117,15 @@ declare class CamundaClient {
|
|
|
24673
25117
|
*
|
|
24674
25118
|
* @example Unassign a mapping rule from a tenant
|
|
24675
25119
|
* ```ts
|
|
24676
|
-
* async function unassignMappingRuleFromTenantExample(
|
|
25120
|
+
* async function unassignMappingRuleFromTenantExample(
|
|
25121
|
+
* tenantId: TenantId,
|
|
25122
|
+
* mappingRuleId: MappingRuleId
|
|
25123
|
+
* ) {
|
|
24677
25124
|
* const camunda = createCamundaClient();
|
|
24678
25125
|
*
|
|
24679
25126
|
* await camunda.unassignMappingRuleFromTenant({
|
|
24680
25127
|
* tenantId,
|
|
24681
|
-
* mappingRuleId
|
|
25128
|
+
* mappingRuleId,
|
|
24682
25129
|
* });
|
|
24683
25130
|
* }
|
|
24684
25131
|
* ```
|
|
@@ -24693,12 +25140,12 @@ declare class CamundaClient {
|
|
|
24693
25140
|
*
|
|
24694
25141
|
* @example Unassign a role from a client
|
|
24695
25142
|
* ```ts
|
|
24696
|
-
* async function unassignRoleFromClientExample() {
|
|
25143
|
+
* async function unassignRoleFromClientExample(roleId: RoleId, clientId: ClientId) {
|
|
24697
25144
|
* const camunda = createCamundaClient();
|
|
24698
25145
|
*
|
|
24699
25146
|
* await camunda.unassignRoleFromClient({
|
|
24700
|
-
* roleId
|
|
24701
|
-
* clientId
|
|
25147
|
+
* roleId,
|
|
25148
|
+
* clientId,
|
|
24702
25149
|
* });
|
|
24703
25150
|
* }
|
|
24704
25151
|
* ```
|
|
@@ -24713,12 +25160,12 @@ declare class CamundaClient {
|
|
|
24713
25160
|
*
|
|
24714
25161
|
* @example Unassign a role from a group
|
|
24715
25162
|
* ```ts
|
|
24716
|
-
* async function unassignRoleFromGroupExample() {
|
|
25163
|
+
* async function unassignRoleFromGroupExample(roleId: RoleId, groupId: GroupId) {
|
|
24717
25164
|
* const camunda = createCamundaClient();
|
|
24718
25165
|
*
|
|
24719
25166
|
* await camunda.unassignRoleFromGroup({
|
|
24720
|
-
* roleId
|
|
24721
|
-
* groupId
|
|
25167
|
+
* roleId,
|
|
25168
|
+
* groupId,
|
|
24722
25169
|
* });
|
|
24723
25170
|
* }
|
|
24724
25171
|
* ```
|
|
@@ -24733,12 +25180,12 @@ declare class CamundaClient {
|
|
|
24733
25180
|
*
|
|
24734
25181
|
* @example Unassign a role from a mapping rule
|
|
24735
25182
|
* ```ts
|
|
24736
|
-
* async function unassignRoleFromMappingRuleExample() {
|
|
25183
|
+
* async function unassignRoleFromMappingRuleExample(roleId: RoleId, mappingRuleId: MappingRuleId) {
|
|
24737
25184
|
* const camunda = createCamundaClient();
|
|
24738
25185
|
*
|
|
24739
25186
|
* await camunda.unassignRoleFromMappingRule({
|
|
24740
|
-
* roleId
|
|
24741
|
-
* mappingRuleId
|
|
25187
|
+
* roleId,
|
|
25188
|
+
* mappingRuleId,
|
|
24742
25189
|
* });
|
|
24743
25190
|
* }
|
|
24744
25191
|
* ```
|
|
@@ -24756,12 +25203,12 @@ declare class CamundaClient {
|
|
|
24756
25203
|
*
|
|
24757
25204
|
* @example Unassign a role from a tenant
|
|
24758
25205
|
* ```ts
|
|
24759
|
-
* async function unassignRoleFromTenantExample(tenantId: TenantId) {
|
|
25206
|
+
* async function unassignRoleFromTenantExample(tenantId: TenantId, roleId: RoleId) {
|
|
24760
25207
|
* const camunda = createCamundaClient();
|
|
24761
25208
|
*
|
|
24762
25209
|
* await camunda.unassignRoleFromTenant({
|
|
24763
25210
|
* tenantId,
|
|
24764
|
-
* roleId
|
|
25211
|
+
* roleId,
|
|
24765
25212
|
* });
|
|
24766
25213
|
* }
|
|
24767
25214
|
* ```
|
|
@@ -24776,11 +25223,11 @@ declare class CamundaClient {
|
|
|
24776
25223
|
*
|
|
24777
25224
|
* @example Unassign a role from a user
|
|
24778
25225
|
* ```ts
|
|
24779
|
-
* async function unassignRoleFromUserExample(username: Username) {
|
|
25226
|
+
* async function unassignRoleFromUserExample(roleId: RoleId, username: Username) {
|
|
24780
25227
|
* const camunda = createCamundaClient();
|
|
24781
25228
|
*
|
|
24782
25229
|
* await camunda.unassignRoleFromUser({
|
|
24783
|
-
* roleId
|
|
25230
|
+
* roleId,
|
|
24784
25231
|
* username,
|
|
24785
25232
|
* });
|
|
24786
25233
|
* }
|
|
@@ -24798,11 +25245,11 @@ declare class CamundaClient {
|
|
|
24798
25245
|
*
|
|
24799
25246
|
* @example Unassign a user from a group
|
|
24800
25247
|
* ```ts
|
|
24801
|
-
* async function unassignUserFromGroupExample(username: Username) {
|
|
25248
|
+
* async function unassignUserFromGroupExample(groupId: GroupId, username: Username) {
|
|
24802
25249
|
* const camunda = createCamundaClient();
|
|
24803
25250
|
*
|
|
24804
25251
|
* await camunda.unassignUserFromGroup({
|
|
24805
|
-
* groupId
|
|
25252
|
+
* groupId,
|
|
24806
25253
|
* username,
|
|
24807
25254
|
* });
|
|
24808
25255
|
* }
|
|
@@ -24888,11 +25335,11 @@ declare class CamundaClient {
|
|
|
24888
25335
|
*
|
|
24889
25336
|
* @example Update a global cluster variable
|
|
24890
25337
|
* ```ts
|
|
24891
|
-
* async function updateGlobalClusterVariableExample() {
|
|
25338
|
+
* async function updateGlobalClusterVariableExample(name: ClusterVariableName) {
|
|
24892
25339
|
* const camunda = createCamundaClient();
|
|
24893
25340
|
*
|
|
24894
25341
|
* await camunda.updateGlobalClusterVariable({
|
|
24895
|
-
* name
|
|
25342
|
+
* name,
|
|
24896
25343
|
* value: { darkMode: false },
|
|
24897
25344
|
* });
|
|
24898
25345
|
* }
|
|
@@ -24929,11 +25376,11 @@ declare class CamundaClient {
|
|
|
24929
25376
|
*
|
|
24930
25377
|
* @example Update a group
|
|
24931
25378
|
* ```ts
|
|
24932
|
-
* async function updateGroupExample() {
|
|
25379
|
+
* async function updateGroupExample(groupId: GroupId) {
|
|
24933
25380
|
* const camunda = createCamundaClient();
|
|
24934
25381
|
*
|
|
24935
25382
|
* await camunda.updateGroup({
|
|
24936
|
-
* groupId
|
|
25383
|
+
* groupId,
|
|
24937
25384
|
* name: 'Engineering Team',
|
|
24938
25385
|
* });
|
|
24939
25386
|
* }
|
|
@@ -24970,11 +25417,11 @@ declare class CamundaClient {
|
|
|
24970
25417
|
*
|
|
24971
25418
|
* @example Update a mapping rule
|
|
24972
25419
|
* ```ts
|
|
24973
|
-
* async function updateMappingRuleExample() {
|
|
25420
|
+
* async function updateMappingRuleExample(mappingRuleId: MappingRuleId) {
|
|
24974
25421
|
* const camunda = createCamundaClient();
|
|
24975
25422
|
*
|
|
24976
25423
|
* await camunda.updateMappingRule({
|
|
24977
|
-
* mappingRuleId
|
|
25424
|
+
* mappingRuleId,
|
|
24978
25425
|
* name: 'LDAP Group Mapping',
|
|
24979
25426
|
* claimName: 'groups',
|
|
24980
25427
|
* claimValue: 'engineering-team',
|
|
@@ -24992,11 +25439,11 @@ declare class CamundaClient {
|
|
|
24992
25439
|
*
|
|
24993
25440
|
* @example Update a role
|
|
24994
25441
|
* ```ts
|
|
24995
|
-
* async function updateRoleExample() {
|
|
25442
|
+
* async function updateRoleExample(roleId: RoleId) {
|
|
24996
25443
|
* const camunda = createCamundaClient();
|
|
24997
25444
|
*
|
|
24998
25445
|
* await camunda.updateRole({
|
|
24999
|
-
* roleId
|
|
25446
|
+
* roleId,
|
|
25000
25447
|
* name: 'Process Administrator',
|
|
25001
25448
|
* });
|
|
25002
25449
|
* }
|
|
@@ -25034,12 +25481,12 @@ declare class CamundaClient {
|
|
|
25034
25481
|
*
|
|
25035
25482
|
* @example Update a tenant cluster variable
|
|
25036
25483
|
* ```ts
|
|
25037
|
-
* async function updateTenantClusterVariableExample(tenantId: TenantId) {
|
|
25484
|
+
* async function updateTenantClusterVariableExample(tenantId: TenantId, name: ClusterVariableName) {
|
|
25038
25485
|
* const camunda = createCamundaClient();
|
|
25039
25486
|
*
|
|
25040
25487
|
* await camunda.updateTenantClusterVariable({
|
|
25041
25488
|
* tenantId,
|
|
25042
|
-
* name
|
|
25489
|
+
* name,
|
|
25043
25490
|
* value: { region: 'eu-west-1' },
|
|
25044
25491
|
* });
|
|
25045
25492
|
* }
|
|
@@ -25305,4 +25752,4 @@ declare function eventuallyTE<E, A>(thunk: () => Promise<A>, predicate: (a: A) =
|
|
|
25305
25752
|
waitUpToMs: number;
|
|
25306
25753
|
}): TaskEither<E, A>;
|
|
25307
25754
|
|
|
25308
|
-
export { type createAdminUserInput as $, type AuthStrategy as A, type UpdateUserTaskResponses as A0, type UpdateUserTaskResponse as A1, type UnassignUserTaskData as A2, type UnassignUserTaskErrors as A3, type UnassignUserTaskError as A4, type UnassignUserTaskResponses as A5, type UnassignUserTaskResponse as A6, type AssignUserTaskData as A7, type AssignUserTaskErrors as A8, type AssignUserTaskError as A9, type SearchUserTaskVariablesResponse as AA, type SearchVariablesData as AB, type SearchVariablesErrors as AC, type SearchVariablesError as AD, type SearchVariablesResponses as AE, type SearchVariablesResponse as AF, type GetVariableData as AG, type GetVariableErrors as AH, type GetVariableError as AI, type GetVariableResponses as AJ, type GetVariableResponse as AK, assertConstraint as AL, classifyDomainError as AM, type DomainError as AN, type DomainErrorTag as AO, eventuallyTE as AP, type FnKeys as AQ, type Fpify as AR, foldDomainError as AS, type HttpError as AT, type Left as AU, type Right as AV, retryTE as AW, type TaskEither as AX, withTimeoutTE as AY, type AssignUserTaskResponses as Aa, type AssignUserTaskResponse as Ab, type SearchUserTaskAuditLogsData as Ac, type SearchUserTaskAuditLogsErrors as Ad, type SearchUserTaskAuditLogsError as Ae, type SearchUserTaskAuditLogsResponses as Af, type SearchUserTaskAuditLogsResponse as Ag, type CompleteUserTaskData as Ah, type CompleteUserTaskErrors as Ai, type CompleteUserTaskError as Aj, type CompleteUserTaskResponses as Ak, type CompleteUserTaskResponse as Al, type SearchUserTaskEffectiveVariablesData as Am, type SearchUserTaskEffectiveVariablesErrors as An, type SearchUserTaskEffectiveVariablesError as Ao, type SearchUserTaskEffectiveVariablesResponses as Ap, type SearchUserTaskEffectiveVariablesResponse as Aq, type GetUserTaskFormData as Ar, type GetUserTaskFormErrors as As, type GetUserTaskFormError as At, type GetUserTaskFormResponses as Au, type GetUserTaskFormResponse as Av, type SearchUserTaskVariablesData as Aw, type SearchUserTaskVariablesErrors as Ax, type SearchUserTaskVariablesError as Ay, type SearchUserTaskVariablesResponses as Az, type BackpressureSeverity as B, CamundaClient as C, type assignMappingRuleToGroupInput as D, type Either as E, type assignMappingRuleToTenantInput as F, type assignRoleToClientInput as G, type HttpRetryPolicy as H, type assignRoleToGroupInput as I, type Job as J, type assignRoleToMappingRuleInput as K, type assignRoleToTenantInput as L, type assignRoleToUserInput as M, type assignUserTaskInput as N, type OperationOptions as O, type assignUserToGroupInput as P, type assignUserToTenantInput as Q, type broadcastSignalInput as R, type SdkError as S, type TelemetryHooks as T, type cancelBatchOperationInput as U, type ValidationMode as V, type cancelProcessInstanceInput as W, type cancelProcessInstancesBatchOperationInput as X, type completeJobInput as Y, type completeUserTaskInput as Z, type correlateMessageInput as _, type CamundaOptions as a, type getIncidentConsistency as a$, type createAuthorizationInput as a0, type createDeploymentInput as a1, type createDocumentInput as a2, type createDocumentLinkInput as a3, type createDocumentsInput as a4, type createElementInstanceVariablesInput as a5, type createGlobalClusterVariableInput as a6, type createGlobalTaskListenerInput as a7, type createGroupInput as a8, type createMappingRuleInput as a9, type getAuthenticationInput as aA, type getAuthorizationInput as aB, type getAuthorizationConsistency as aC, type getBatchOperationInput as aD, type getBatchOperationConsistency as aE, type getDecisionDefinitionInput as aF, type getDecisionDefinitionConsistency as aG, type getDecisionDefinitionXmlInput as aH, type getDecisionDefinitionXmlConsistency as aI, type getDecisionInstanceInput as aJ, type getDecisionInstanceConsistency as aK, type getDecisionRequirementsInput as aL, type getDecisionRequirementsConsistency as aM, type getDecisionRequirementsXmlInput as aN, type getDecisionRequirementsXmlConsistency as aO, type getDocumentInput as aP, type getElementInstanceInput as aQ, type getElementInstanceConsistency as aR, type getGlobalClusterVariableInput as aS, type getGlobalClusterVariableConsistency as aT, type getGlobalJobStatisticsInput as aU, type getGlobalJobStatisticsConsistency as aV, type getGlobalTaskListenerInput as aW, type getGlobalTaskListenerConsistency as aX, type getGroupInput as aY, type getGroupConsistency as aZ, type getIncidentInput as a_, type createProcessInstanceInput as aa, type createRoleInput as ab, type createTenantInput as ac, type createTenantClusterVariableInput as ad, type createUserInput as ae, type deleteAuthorizationInput as af, type deleteDecisionInstanceInput as ag, type deleteDecisionInstancesBatchOperationInput as ah, type deleteDocumentInput as ai, type deleteGlobalClusterVariableInput as aj, type deleteGlobalTaskListenerInput as ak, type deleteGroupInput as al, type deleteMappingRuleInput as am, type deleteProcessInstanceInput as an, type deleteProcessInstancesBatchOperationInput as ao, type deleteResourceInput as ap, type deleteRoleInput as aq, type deleteTenantInput as ar, type deleteTenantClusterVariableInput as as, type deleteUserInput as at, type evaluateConditionalsInput as au, type evaluateDecisionInput as av, type evaluateExpressionInput as aw, type failJobInput as ax, type getAuditLogInput as ay, type getAuditLogConsistency as az, type CancelablePromise as b, type modifyProcessInstancesBatchOperationInput as b$, type getJobErrorStatisticsInput as b0, type getJobErrorStatisticsConsistency as b1, type getJobTimeSeriesStatisticsInput as b2, type getJobTimeSeriesStatisticsConsistency as b3, type getJobTypeStatisticsInput as b4, type getJobTypeStatisticsConsistency as b5, type getJobWorkerStatisticsInput as b6, type getJobWorkerStatisticsConsistency as b7, type getLicenseInput as b8, type getMappingRuleInput as b9, type getResourceConsistency as bA, type getResourceContentInput as bB, type getResourceContentConsistency as bC, type getRoleInput as bD, type getRoleConsistency as bE, type getStartProcessFormInput as bF, type getStartProcessFormConsistency as bG, type getStatusInput as bH, type getSystemConfigurationInput as bI, type getTenantInput as bJ, type getTenantConsistency as bK, type getTenantClusterVariableInput as bL, type getTenantClusterVariableConsistency as bM, type getTopologyInput as bN, type getUsageMetricsInput as bO, type getUsageMetricsConsistency as bP, type getUserInput as bQ, type getUserConsistency as bR, type getUserTaskInput as bS, type getUserTaskConsistency as bT, type getUserTaskFormInput as bU, type getUserTaskFormConsistency as bV, type getVariableInput as bW, type getVariableConsistency as bX, type migrateProcessInstanceInput as bY, type migrateProcessInstancesBatchOperationInput as bZ, type modifyProcessInstanceInput as b_, type getMappingRuleConsistency as ba, type getProcessDefinitionInput as bb, type getProcessDefinitionConsistency as bc, type getProcessDefinitionInstanceStatisticsInput as bd, type getProcessDefinitionInstanceStatisticsConsistency as be, type getProcessDefinitionInstanceVersionStatisticsInput as bf, type getProcessDefinitionInstanceVersionStatisticsConsistency as bg, type getProcessDefinitionMessageSubscriptionStatisticsInput as bh, type getProcessDefinitionMessageSubscriptionStatisticsConsistency as bi, type getProcessDefinitionStatisticsInput as bj, type getProcessDefinitionStatisticsConsistency as bk, type getProcessDefinitionXmlInput as bl, type getProcessDefinitionXmlConsistency as bm, type getProcessInstanceInput as bn, type getProcessInstanceConsistency as bo, type getProcessInstanceCallHierarchyInput as bp, type getProcessInstanceCallHierarchyConsistency as bq, type getProcessInstanceSequenceFlowsInput as br, type getProcessInstanceSequenceFlowsConsistency as bs, type getProcessInstanceStatisticsInput as bt, type getProcessInstanceStatisticsConsistency as bu, type getProcessInstanceStatisticsByDefinitionInput as bv, type getProcessInstanceStatisticsByDefinitionConsistency as bw, type getProcessInstanceStatisticsByErrorInput as bx, type getProcessInstanceStatisticsByErrorConsistency as by, type getResourceInput as bz, createCamundaClient as c, type searchRolesInput as c$, type pinClockInput as c0, type publishMessageInput as c1, type resetClockInput as c2, type resolveIncidentInput as c3, type resolveIncidentsBatchOperationInput as c4, type resolveProcessInstanceIncidentsInput as c5, type resumeBatchOperationInput as c6, type searchAuditLogsInput as c7, type searchAuditLogsConsistency as c8, type searchAuthorizationsInput as c9, type searchGlobalTaskListenersConsistency as cA, type searchGroupIdsForTenantInput as cB, type searchGroupIdsForTenantConsistency as cC, type searchGroupsInput as cD, type searchGroupsConsistency as cE, type searchGroupsForRoleInput as cF, type searchGroupsForRoleConsistency as cG, type searchIncidentsInput as cH, type searchIncidentsConsistency as cI, type searchJobsInput as cJ, type searchJobsConsistency as cK, type searchMappingRuleInput as cL, type searchMappingRuleConsistency as cM, type searchMappingRulesForGroupInput as cN, type searchMappingRulesForGroupConsistency as cO, type searchMappingRulesForRoleInput as cP, type searchMappingRulesForRoleConsistency as cQ, type searchMappingRulesForTenantInput as cR, type searchMappingRulesForTenantConsistency as cS, type searchMessageSubscriptionsInput as cT, type searchMessageSubscriptionsConsistency as cU, type searchProcessDefinitionsInput as cV, type searchProcessDefinitionsConsistency as cW, type searchProcessInstanceIncidentsInput as cX, type searchProcessInstanceIncidentsConsistency as cY, type searchProcessInstancesInput as cZ, type searchProcessInstancesConsistency as c_, type searchAuthorizationsConsistency as ca, type searchBatchOperationItemsInput as cb, type searchBatchOperationItemsConsistency as cc, type searchBatchOperationsInput as cd, type searchBatchOperationsConsistency as ce, type searchClientsForGroupInput as cf, type searchClientsForGroupConsistency as cg, type searchClientsForRoleInput as ch, type searchClientsForRoleConsistency as ci, type searchClientsForTenantInput as cj, type searchClientsForTenantConsistency as ck, type searchClusterVariablesInput as cl, type searchClusterVariablesConsistency as cm, type searchCorrelatedMessageSubscriptionsInput as cn, type searchCorrelatedMessageSubscriptionsConsistency as co, type searchDecisionDefinitionsInput as cp, type searchDecisionDefinitionsConsistency as cq, type searchDecisionInstancesInput as cr, type searchDecisionInstancesConsistency as cs, type searchDecisionRequirementsInput as ct, type searchDecisionRequirementsConsistency as cu, type searchElementInstanceIncidentsInput as cv, type searchElementInstanceIncidentsConsistency as cw, type searchElementInstancesInput as cx, type searchElementInstancesConsistency as cy, type searchGlobalTaskListenersInput as cz, type CamundaFpClient as d, AuditLogOperationTypeEnum as d$, type searchRolesConsistency as d0, type searchRolesForGroupInput as d1, type searchRolesForGroupConsistency as d2, type searchRolesForTenantInput as d3, type searchRolesForTenantConsistency as d4, type searchTenantsInput as d5, type searchTenantsConsistency as d6, type searchUsersInput as d7, type searchUsersConsistency as d8, type searchUsersForGroupInput as d9, type unassignRoleFromTenantInput as dA, type unassignRoleFromUserInput as dB, type unassignUserFromGroupInput as dC, type unassignUserFromTenantInput as dD, type unassignUserTaskInput as dE, type updateAuthorizationInput as dF, type updateGlobalClusterVariableInput as dG, type updateGlobalTaskListenerInput as dH, type updateGroupInput as dI, type updateJobInput as dJ, type updateMappingRuleInput as dK, type updateRoleInput as dL, type updateTenantInput as dM, type updateTenantClusterVariableInput as dN, type updateUserInput as dO, type updateUserTaskInput as dP, type ExtendedDeploymentResult as dQ, CancelError as dR, type CamundaKey as dS, type ClientOptions as dT, type AuditLogResult as dU, type AuditLogSearchQuerySortRequest as dV, type AuditLogSearchQueryRequest as dW, type AuditLogFilter as dX, type AuditLogSearchQueryResult as dY, AuditLogEntityKey as dZ, AuditLogEntityTypeEnum as d_, type searchUsersForGroupConsistency as da, type searchUsersForRoleInput as db, type searchUsersForRoleConsistency as dc, type searchUsersForTenantInput as dd, type searchUsersForTenantConsistency as de, type searchUserTaskAuditLogsInput as df, type searchUserTaskAuditLogsConsistency as dg, type searchUserTaskEffectiveVariablesInput as dh, type searchUserTaskEffectiveVariablesConsistency as di, type searchUserTasksInput as dj, type searchUserTasksConsistency as dk, type searchUserTaskVariablesInput as dl, type searchUserTaskVariablesConsistency as dm, type searchVariablesInput as dn, type searchVariablesConsistency as dp, type suspendBatchOperationInput as dq, type throwJobErrorInput as dr, type unassignClientFromGroupInput as ds, type unassignClientFromTenantInput as dt, type unassignGroupFromTenantInput as du, type unassignMappingRuleFromGroupInput as dv, type unassignMappingRuleFromTenantInput as dw, type unassignRoleFromClientInput as dx, type unassignRoleFromGroupInput as dy, type unassignRoleFromMappingRuleInput as dz, createCamundaFpClient as e, type ClusterVariableSearchResult as e$, AuditLogActorTypeEnum as e0, AuditLogResultEnum as e1, AuditLogCategoryEnum as e2, type AuditLogEntityKeyFilterProperty as e3, type AdvancedAuditLogEntityKeyFilter as e4, type EntityTypeFilterProperty as e5, type AdvancedEntityTypeFilter as e6, type OperationTypeFilterProperty as e7, type AdvancedOperationTypeFilter as e8, type CategoryFilterProperty as e9, type BatchOperationItemSearchQuerySortRequest as eA, type BatchOperationItemSearchQuery as eB, type BatchOperationItemFilter as eC, type BatchOperationItemSearchQueryResult as eD, type BatchOperationItemResponse as eE, type DecisionInstanceDeletionBatchOperationRequest as eF, type ProcessInstanceCancellationBatchOperationRequest as eG, type ProcessInstanceIncidentResolutionBatchOperationRequest as eH, type ProcessInstanceDeletionBatchOperationRequest as eI, type ProcessInstanceMigrationBatchOperationRequest as eJ, type ProcessInstanceMigrationBatchOperationPlan as eK, type ProcessInstanceModificationBatchOperationRequest as eL, type ProcessInstanceModificationMoveBatchOperationInstruction as eM, BatchOperationItemStateEnum as eN, BatchOperationStateEnum as eO, BatchOperationTypeEnum as eP, type BatchOperationTypeFilterProperty as eQ, type AdvancedBatchOperationTypeFilter as eR, type BatchOperationStateFilterProperty as eS, type AdvancedBatchOperationStateFilter as eT, type BatchOperationItemStateFilterProperty as eU, type AdvancedBatchOperationItemStateFilter as eV, type ClockPinRequest as eW, ClusterVariableScopeEnum as eX, type CreateClusterVariableRequest as eY, type UpdateClusterVariableRequest as eZ, type ClusterVariableResult as e_, type AdvancedCategoryFilter as ea, type AuditLogResultFilterProperty as eb, type AdvancedResultFilter as ec, type AuditLogActorTypeFilterProperty as ed, type AdvancedActorTypeFilter as ee, type CamundaUserResult as ef, type AuthorizationIdBasedRequest as eg, type AuthorizationPropertyBasedRequest as eh, type AuthorizationRequest as ei, type AuthorizationSearchQuerySortRequest as ej, type AuthorizationSearchQuery as ek, type AuthorizationFilter as el, type AuthorizationResult as em, type AuthorizationSearchResult as en, type AuthorizationCreateResult as eo, PermissionTypeEnum as ep, ResourceTypeEnum as eq, OwnerTypeEnum as er, AuthorizationKey as es, type BatchOperationCreatedResult as et, type BatchOperationSearchQuerySortRequest as eu, type BatchOperationSearchQuery as ev, type BatchOperationFilter as ew, type BatchOperationSearchQueryResult as ex, type BatchOperationResponse as ey, type BatchOperationError as ez, isRight as f, type DocumentCreationBatchResponse as f$, type ClusterVariableResultBase as f0, type ClusterVariableSearchQueryRequest as f1, type ClusterVariableSearchQuerySortRequest as f2, type ClusterVariableSearchQueryFilterRequest as f3, type ClusterVariableScopeFilterProperty as f4, type AdvancedClusterVariableScopeFilter as f5, type ClusterVariableSearchQueryResult as f6, type TopologyResponse as f7, type BrokerInfo as f8, type Partition as f9, DecisionDefinitionTypeEnum as fA, DecisionInstanceStateEnum as fB, type AdvancedDecisionInstanceStateFilter as fC, type DecisionInstanceStateFilterProperty as fD, type DecisionRequirementsSearchQuerySortRequest as fE, type DecisionRequirementsSearchQuery as fF, type DecisionRequirementsFilter as fG, type DecisionRequirementsSearchQueryResult as fH, type DecisionRequirementsResult as fI, type DeploymentResult as fJ, type DeploymentMetadataResult as fK, type DeploymentProcessResult as fL, type DeploymentDecisionResult as fM, type DeploymentDecisionRequirementsResult as fN, type DeploymentFormResult as fO, type DeploymentResourceResult as fP, type DeleteResourceRequest as fQ, type DeleteResourceResponse as fR, type ResourceResult as fS, DeploymentKey as fT, type ResourceKey as fU, type DeploymentKeyFilterProperty as fV, type AdvancedDeploymentKeyFilter as fW, type ResourceKeyFilterProperty as fX, type AdvancedResourceKeyFilter as fY, type DocumentReference as fZ, type DocumentCreationFailureDetail as f_, type ConditionalEvaluationInstruction as fa, type EvaluateConditionalResult as fb, ConditionalEvaluationKey as fc, type ProcessInstanceReference as fd, StartCursor as fe, EndCursor as ff, type DecisionDefinitionSearchQuerySortRequest as fg, type DecisionDefinitionSearchQuery as fh, type DecisionDefinitionFilter as fi, type DecisionDefinitionSearchQueryResult as fj, type DecisionDefinitionResult as fk, type DecisionEvaluationInstruction as fl, type DecisionEvaluationById as fm, type DecisionEvaluationByKey as fn, type EvaluateDecisionResult as fo, type EvaluatedDecisionResult as fp, type DecisionInstanceSearchQuerySortRequest as fq, type DecisionInstanceSearchQuery as fr, type DecisionInstanceFilter as fs, type DeleteDecisionInstanceRequest as ft, type DecisionInstanceSearchQueryResult as fu, type DecisionInstanceResult as fv, type DecisionInstanceGetQueryResult as fw, type EvaluatedDecisionInputItem as fx, type EvaluatedDecisionOutputItem as fy, type MatchedDecisionRuleItem as fz, CamundaValidationError as g, ProcessDefinitionId as g$, type DocumentMetadata as g0, type DocumentMetadataResponse as g1, type DocumentLinkRequest as g2, type DocumentLink as g3, DocumentId as g4, type ElementInstanceSearchQuerySortRequest as g5, type ElementInstanceSearchQuery as g6, type ElementInstanceFilter as g7, type ElementInstanceStateFilterProperty as g8, type AdvancedElementInstanceStateFilter as g9, type GlobalTaskListenerSearchQueryRequest as gA, type GlobalTaskListenerSearchQuerySortRequest as gB, type GlobalTaskListenerSearchQueryFilterRequest as gC, type GlobalListenerSourceFilterProperty as gD, type AdvancedGlobalListenerSourceFilter as gE, type GlobalTaskListenerEventTypeFilterProperty as gF, type AdvancedGlobalTaskListenerEventTypeFilter as gG, type GlobalTaskListenerSearchQueryResult as gH, type GroupCreateRequest as gI, type GroupCreateResult as gJ, type GroupUpdateRequest as gK, type GroupUpdateResult as gL, type GroupResult as gM, type GroupSearchQuerySortRequest as gN, type GroupSearchQueryRequest as gO, type GroupFilter as gP, type GroupSearchQueryResult as gQ, type GroupUserResult as gR, type GroupUserSearchResult as gS, type GroupUserSearchQueryRequest as gT, type GroupUserSearchQuerySortRequest as gU, type GroupClientResult as gV, type GroupClientSearchResult as gW, type GroupClientSearchQueryRequest as gX, type GroupMappingRuleSearchResult as gY, type GroupRoleSearchResult as gZ, type GroupClientSearchQuerySortRequest as g_, type ElementInstanceSearchQueryResult as ga, type ElementInstanceResult as gb, ElementInstanceStateEnum as gc, type AdHocSubProcessActivateActivitiesInstruction as gd, type AdHocSubProcessActivateActivityReference as ge, type ExpressionEvaluationRequest as gf, type ExpressionEvaluationResult as gg, type ExpressionEvaluationWarningItem as gh, type LikeFilter as gi, type BasicStringFilter as gj, type AdvancedStringFilter as gk, type BasicStringFilterProperty as gl, type StringFilterProperty as gm, type AdvancedIntegerFilter as gn, type IntegerFilterProperty as go, type AdvancedDateTimeFilter as gp, type DateTimeFilterProperty as gq, type FormResult as gr, GlobalListenerSourceEnum as gs, GlobalTaskListenerEventTypeEnum as gt, type GlobalListenerBase as gu, type GlobalTaskListenerBase as gv, type GlobalTaskListenerEventTypes as gw, type CreateGlobalTaskListenerRequest as gx, type UpdateGlobalTaskListenerRequest as gy, type GlobalTaskListenerResult as gz, EventualConsistencyTimeoutError as h, type JobCompletionRequest as h$, ElementId as h0, FormId as h1, DecisionDefinitionId as h2, GlobalListenerId as h3, TenantId as h4, Username as h5, Tag as h6, type TagSet as h7, BusinessId as h8, type ElementIdFilterProperty as h9, type JobTypeStatisticsQuery as hA, type JobTypeStatisticsFilter as hB, type JobTypeStatisticsQueryResult as hC, type JobTypeStatisticsItem as hD, type JobWorkerStatisticsQuery as hE, type JobWorkerStatisticsFilter as hF, type JobWorkerStatisticsQueryResult as hG, type JobWorkerStatisticsItem as hH, type JobTimeSeriesStatisticsQuery as hI, type JobTimeSeriesStatisticsFilter as hJ, type JobTimeSeriesStatisticsQueryResult as hK, type JobTimeSeriesStatisticsItem as hL, type JobErrorStatisticsQuery as hM, type JobErrorStatisticsFilter as hN, type JobErrorStatisticsQueryResult as hO, type JobErrorStatisticsItem as hP, type JobActivationRequest as hQ, type JobActivationResult as hR, type ActivatedJobResult$1 as hS, type UserTaskProperties as hT, type JobSearchQuery as hU, type JobSearchQuerySortRequest as hV, type JobFilter as hW, type JobSearchQueryResult as hX, type JobSearchResult as hY, type JobFailRequest as hZ, type JobErrorRequest$1 as h_, type AdvancedElementIdFilter as ha, type ProcessDefinitionIdFilterProperty as hb, type AdvancedProcessDefinitionIdFilter as hc, type IncidentSearchQuery as hd, type IncidentFilter as he, type IncidentErrorTypeFilterProperty as hf, type AdvancedIncidentErrorTypeFilter as hg, IncidentErrorTypeEnum as hh, type IncidentStateFilterProperty as hi, type AdvancedIncidentStateFilter as hj, IncidentStateEnum as hk, type IncidentSearchQuerySortRequest as hl, type IncidentSearchQueryResult as hm, type IncidentResult as hn, type IncidentResolutionRequest as ho, type IncidentProcessInstanceStatisticsByErrorQuery as hp, type IncidentProcessInstanceStatisticsByErrorQueryResult as hq, type IncidentProcessInstanceStatisticsByErrorResult as hr, type IncidentProcessInstanceStatisticsByErrorQuerySortRequest as hs, type IncidentProcessInstanceStatisticsByDefinitionQuery as ht, type IncidentProcessInstanceStatisticsByDefinitionQueryResult as hu, type IncidentProcessInstanceStatisticsByDefinitionResult as hv, type IncidentProcessInstanceStatisticsByDefinitionFilter as hw, type IncidentProcessInstanceStatisticsByDefinitionQuerySortRequest as hx, type GlobalJobStatisticsQueryResult as hy, type StatusMetric as hz, isLeft as i, type MappingRuleCreateRequest as i$, type JobResult as i0, type JobResultUserTask as i1, type JobResultCorrections as i2, type JobResultAdHocSubProcess as i3, type JobResultActivateElement as i4, type JobUpdateRequest as i5, type JobChangeset as i6, TenantFilterEnum as i7, JobStateEnum as i8, JobKindEnum as i9, AuditLogKey as iA, type ProcessDefinitionKeyFilterProperty as iB, type AdvancedProcessDefinitionKeyFilter as iC, type ProcessInstanceKeyFilterProperty as iD, type AdvancedProcessInstanceKeyFilter as iE, type ElementInstanceKeyFilterProperty as iF, type AdvancedElementInstanceKeyFilter as iG, type JobKeyFilterProperty as iH, type AdvancedJobKeyFilter as iI, type DecisionDefinitionKeyFilterProperty as iJ, type AdvancedDecisionDefinitionKeyFilter as iK, type ScopeKeyFilterProperty as iL, type AdvancedScopeKeyFilter as iM, type VariableKeyFilterProperty as iN, type AdvancedVariableKeyFilter as iO, type DecisionEvaluationInstanceKeyFilterProperty as iP, type AdvancedDecisionEvaluationInstanceKeyFilter as iQ, type AuditLogKeyFilterProperty as iR, type AdvancedAuditLogKeyFilter as iS, type FormKeyFilterProperty as iT, type AdvancedFormKeyFilter as iU, type DecisionEvaluationKeyFilterProperty as iV, type AdvancedDecisionEvaluationKeyFilter as iW, type DecisionRequirementsKeyFilterProperty as iX, type AdvancedDecisionRequirementsKeyFilter as iY, type LicenseResponse as iZ, type MappingRuleCreateUpdateRequest as i_, JobListenerEventTypeEnum as ia, type JobKindFilterProperty as ib, type AdvancedJobKindFilter as ic, type JobListenerEventTypeFilterProperty as id, type AdvancedJobListenerEventTypeFilter as ie, type JobStateFilterProperty as ig, type AdvancedJobStateFilter as ih, type LongKey as ii, ProcessInstanceKey as ij, ProcessDefinitionKey as ik, ElementInstanceKey as il, UserTaskKey as im, FormKey as io, VariableKey as ip, type ScopeKey as iq, IncidentKey as ir, JobKey as is, DecisionDefinitionKey as it, DecisionEvaluationInstanceKey as iu, DecisionEvaluationKey as iv, DecisionRequirementsKey as iw, DecisionInstanceKey as ix, BatchOperationKey as iy, type OperationReference as iz, isSdkError as j, type BaseProcessInstanceFilterFields as j$, type MappingRuleUpdateRequest as j0, type MappingRuleCreateUpdateResult as j1, type MappingRuleCreateResult as j2, type MappingRuleUpdateResult as j3, type MappingRuleSearchQueryResult as j4, type MappingRuleResult as j5, type MappingRuleSearchQuerySortRequest as j6, type MappingRuleSearchQueryRequest as j7, type MappingRuleFilter as j8, type MessageCorrelationRequest as j9, type ProcessDefinitionFilter as jA, type ProcessDefinitionSearchQueryResult as jB, type ProcessDefinitionResult as jC, type ProcessDefinitionElementStatisticsQuery as jD, type ProcessDefinitionElementStatisticsQueryResult as jE, type ProcessElementStatisticsResult as jF, type ProcessDefinitionMessageSubscriptionStatisticsQuery as jG, type ProcessDefinitionMessageSubscriptionStatisticsQueryResult as jH, type ProcessDefinitionMessageSubscriptionStatisticsResult as jI, type ProcessDefinitionInstanceStatisticsQuery as jJ, type ProcessDefinitionInstanceStatisticsQueryResult as jK, type ProcessDefinitionInstanceStatisticsResult as jL, type ProcessDefinitionInstanceStatisticsQuerySortRequest as jM, type ProcessDefinitionInstanceVersionStatisticsQuery as jN, type ProcessDefinitionInstanceVersionStatisticsFilter as jO, type ProcessDefinitionInstanceVersionStatisticsQueryResult as jP, type ProcessDefinitionInstanceVersionStatisticsResult as jQ, type ProcessDefinitionInstanceVersionStatisticsQuerySortRequest as jR, type ProcessInstanceCreationInstruction as jS, type ProcessInstanceCreationInstructionById as jT, type ProcessInstanceCreationInstructionByKey as jU, type ProcessInstanceCreationStartInstruction as jV, type ProcessInstanceCreationRuntimeInstruction as jW, type ProcessInstanceCreationTerminateInstruction as jX, type CreateProcessInstanceResult as jY, type ProcessInstanceSearchQuerySortRequest as jZ, type ProcessInstanceSearchQuery as j_, type MessageCorrelationResult as ja, type MessagePublicationRequest as jb, type MessagePublicationResult as jc, type MessageSubscriptionSearchQueryResult as jd, type MessageSubscriptionResult as je, type MessageSubscriptionSearchQuerySortRequest as jf, type MessageSubscriptionSearchQuery as jg, type MessageSubscriptionFilter as jh, type CorrelatedMessageSubscriptionSearchQueryResult as ji, type CorrelatedMessageSubscriptionResult as jj, type CorrelatedMessageSubscriptionSearchQuery as jk, type CorrelatedMessageSubscriptionSearchQuerySortRequest as jl, MessageSubscriptionStateEnum as jm, MessageSubscriptionTypeEnum as jn, type CorrelatedMessageSubscriptionFilter as jo, type MessageSubscriptionTypeFilterProperty as jp, type AdvancedMessageSubscriptionTypeFilter as jq, type MessageSubscriptionStateFilterProperty as jr, type AdvancedMessageSubscriptionStateFilter as js, type AdvancedMessageSubscriptionKeyFilter as jt, type MessageSubscriptionKeyFilterProperty as ju, MessageSubscriptionKey as jv, MessageKey as jw, type ProblemDetail as jx, type ProcessDefinitionSearchQuerySortRequest as jy, type ProcessDefinitionSearchQuery as jz, type EnrichedActivatedJob as k, SignalKey as k$, type ProcessDefinitionStatisticsFilter as k0, type ProcessInstanceFilterFields as k1, type ProcessInstanceFilter as k2, type ProcessInstanceSearchQueryResult as k3, type ProcessInstanceResult as k4, type CancelProcessInstanceRequest as k5, type DeleteProcessInstanceRequest as k6, type ProcessInstanceCallHierarchyEntry as k7, type ProcessInstanceSequenceFlowsQueryResult as k8, type ProcessInstanceSequenceFlowResult as k9, type RoleSearchQueryRequest as kA, type RoleFilter as kB, type RoleSearchQueryResult as kC, type RoleUserResult as kD, type RoleUserSearchResult as kE, type RoleUserSearchQueryRequest as kF, type RoleUserSearchQuerySortRequest as kG, type RoleClientResult as kH, type RoleClientSearchResult as kI, type RoleClientSearchQueryRequest as kJ, type RoleClientSearchQuerySortRequest as kK, type RoleGroupResult as kL, type RoleGroupSearchResult as kM, type RoleGroupSearchQueryRequest as kN, type RoleMappingRuleSearchResult as kO, type RoleGroupSearchQuerySortRequest as kP, type SearchQueryRequest as kQ, type SearchQueryPageRequest as kR, type LimitPagination as kS, type OffsetPagination as kT, type CursorForwardPagination as kU, type CursorBackwardPagination as kV, type SearchQueryResponse as kW, SortOrderEnum as kX, type SearchQueryPageResponse as kY, type SignalBroadcastRequest as kZ, type SignalBroadcastResult as k_, type ProcessInstanceElementStatisticsQueryResult as ka, type ProcessInstanceMigrationInstruction as kb, type MigrateProcessInstanceMappingInstruction as kc, type ProcessInstanceModificationInstruction as kd, type ProcessInstanceModificationActivateInstruction as ke, type ModifyProcessInstanceVariableInstruction as kf, type ProcessInstanceModificationMoveInstruction as kg, type SourceElementInstruction as kh, type SourceElementIdInstruction as ki, type SourceElementInstanceKeyInstruction as kj, type AncestorScopeInstruction as kk, type DirectAncestorKeyInstruction as kl, type InferredAncestorKeyInstruction as km, type UseSourceParentKeyInstruction as kn, type ProcessInstanceModificationTerminateInstruction as ko, type ProcessInstanceModificationTerminateByIdInstruction as kp, type ProcessInstanceModificationTerminateByKeyInstruction as kq, ProcessInstanceStateEnum as kr, type AdvancedProcessInstanceStateFilter as ks, type ProcessInstanceStateFilterProperty as kt, type RoleCreateRequest as ku, type RoleCreateResult as kv, type RoleUpdateRequest as kw, type RoleUpdateResult as kx, type RoleResult as ky, type RoleSearchQuerySortRequest as kz, JobActionReceipt as l, type AuditLogEntityKeyExactMatch as l$, type UsageMetricsResponse as l0, type UsageMetricsResponseItem as l1, type SystemConfigurationResponse as l2, type JobMetricsConfigurationResponse as l3, type TenantCreateRequest as l4, type TenantCreateResult as l5, type TenantUpdateRequest as l6, type TenantUpdateResult as l7, type TenantResult as l8, type TenantSearchQuerySortRequest as l9, type UserTaskVariableSearchQuerySortRequest as lA, type UserTaskVariableSearchQueryRequest as lB, type UserTaskEffectiveVariableSearchQueryRequest as lC, type UserTaskAuditLogSearchQueryRequest as lD, UserTaskStateEnum as lE, type UserTaskVariableFilter as lF, type UserTaskStateFilterProperty as lG, type AdvancedUserTaskStateFilter as lH, type UserTaskAuditLogFilter as lI, type UserRequest as lJ, type UserCreateResult as lK, type UserUpdateRequest as lL, type UserUpdateResult as lM, type UserResult as lN, type UserSearchQuerySortRequest as lO, type UserSearchQueryRequest as lP, type UserFilter as lQ, type UserSearchResult as lR, type VariableSearchQuerySortRequest as lS, type VariableSearchQuery as lT, type VariableFilter as lU, type VariableSearchQueryResult as lV, type VariableSearchResult as lW, type VariableResult as lX, type VariableResultBase as lY, type VariableValueFilterProperty as lZ, type SetVariableRequest as l_, type TenantSearchQueryRequest as la, type TenantFilter as lb, type TenantSearchQueryResult as lc, type TenantUserResult as ld, type TenantUserSearchResult as le, type TenantUserSearchQueryRequest as lf, type TenantUserSearchQuerySortRequest as lg, type TenantClientResult as lh, type TenantClientSearchResult as li, type TenantClientSearchQueryRequest as lj, type TenantClientSearchQuerySortRequest as lk, type TenantGroupResult as ll, type TenantGroupSearchResult as lm, type TenantGroupSearchQueryRequest as ln, type TenantRoleSearchResult as lo, type TenantMappingRuleSearchResult as lp, type TenantGroupSearchQuerySortRequest as lq, type UserTaskSearchQuerySortRequest as lr, type UserTaskSearchQuery as ls, type UserTaskFilter as lt, type UserTaskSearchQueryResult as lu, type UserTaskResult as lv, type UserTaskCompletionRequest as lw, type UserTaskAssignmentRequest as lx, type UserTaskUpdateRequest as ly, type Changeset as lz, JobWorker as m, type SearchAuthorizationsResponse as m$, type EntityTypeExactMatch as m0, type OperationTypeExactMatch as m1, type CategoryExactMatch as m2, type AuditLogResultExactMatch as m3, type AuditLogActorTypeExactMatch as m4, type BatchOperationTypeExactMatch as m5, type BatchOperationStateExactMatch as m6, type BatchOperationItemStateExactMatch as m7, type ClusterVariableScopeExactMatch as m8, type DecisionInstanceStateExactMatch as m9, type MessageSubscriptionKeyExactMatch as mA, type ProcessInstanceStateExactMatch as mB, type UserTaskStateExactMatch as mC, type SearchAuditLogsData as mD, type SearchAuditLogsErrors as mE, type SearchAuditLogsError as mF, type SearchAuditLogsResponses as mG, type SearchAuditLogsResponse as mH, type GetAuditLogData as mI, type GetAuditLogErrors as mJ, type GetAuditLogError as mK, type GetAuditLogResponses as mL, type GetAuditLogResponse as mM, type GetAuthenticationData as mN, type GetAuthenticationErrors as mO, type GetAuthenticationError as mP, type GetAuthenticationResponses as mQ, type GetAuthenticationResponse as mR, type CreateAuthorizationData as mS, type CreateAuthorizationErrors as mT, type CreateAuthorizationError as mU, type CreateAuthorizationResponses as mV, type CreateAuthorizationResponse as mW, type SearchAuthorizationsData as mX, type SearchAuthorizationsErrors as mY, type SearchAuthorizationsError as mZ, type SearchAuthorizationsResponses as m_, type DeploymentKeyExactMatch as ma, type ResourceKeyExactMatch as mb, type ElementInstanceStateExactMatch as mc, type GlobalListenerSourceExactMatch as md, type GlobalTaskListenerEventTypeExactMatch as me, type ElementIdExactMatch as mf, type ProcessDefinitionIdExactMatch as mg, type IncidentErrorTypeExactMatch as mh, type IncidentStateExactMatch as mi, type JobKindExactMatch as mj, type JobListenerEventTypeExactMatch as mk, type JobStateExactMatch as ml, type ProcessDefinitionKeyExactMatch as mm, type ProcessInstanceKeyExactMatch as mn, type ElementInstanceKeyExactMatch as mo, type JobKeyExactMatch as mp, type DecisionDefinitionKeyExactMatch as mq, type ScopeKeyExactMatch as mr, type VariableKeyExactMatch as ms, type DecisionEvaluationInstanceKeyExactMatch as mt, type AuditLogKeyExactMatch as mu, type FormKeyExactMatch as mv, type DecisionEvaluationKeyExactMatch as mw, type DecisionRequirementsKeyExactMatch as mx, type MessageSubscriptionTypeExactMatch as my, type MessageSubscriptionStateExactMatch as mz, type JobWorkerConfig as n, type DeleteGlobalClusterVariableResponses as n$, type DeleteAuthorizationData as n0, type DeleteAuthorizationErrors as n1, type DeleteAuthorizationError as n2, type DeleteAuthorizationResponses as n3, type DeleteAuthorizationResponse as n4, type GetAuthorizationData as n5, type GetAuthorizationErrors as n6, type GetAuthorizationError as n7, type GetAuthorizationResponses as n8, type GetAuthorizationResponse as n9, type ResumeBatchOperationErrors as nA, type ResumeBatchOperationError as nB, type ResumeBatchOperationResponses as nC, type ResumeBatchOperationResponse as nD, type SuspendBatchOperationData as nE, type SuspendBatchOperationErrors as nF, type SuspendBatchOperationError as nG, type SuspendBatchOperationResponses as nH, type SuspendBatchOperationResponse as nI, type PinClockData as nJ, type PinClockErrors as nK, type PinClockError as nL, type PinClockResponses as nM, type PinClockResponse as nN, type ResetClockData as nO, type ResetClockErrors as nP, type ResetClockError as nQ, type ResetClockResponses as nR, type ResetClockResponse as nS, type CreateGlobalClusterVariableData as nT, type CreateGlobalClusterVariableErrors as nU, type CreateGlobalClusterVariableError as nV, type CreateGlobalClusterVariableResponses as nW, type CreateGlobalClusterVariableResponse as nX, type DeleteGlobalClusterVariableData as nY, type DeleteGlobalClusterVariableErrors as nZ, type DeleteGlobalClusterVariableError as n_, type UpdateAuthorizationData as na, type UpdateAuthorizationErrors as nb, type UpdateAuthorizationError as nc, type UpdateAuthorizationResponses as nd, type UpdateAuthorizationResponse as ne, type SearchBatchOperationItemsData as nf, type SearchBatchOperationItemsErrors as ng, type SearchBatchOperationItemsError as nh, type SearchBatchOperationItemsResponses as ni, type SearchBatchOperationItemsResponse as nj, type SearchBatchOperationsData as nk, type SearchBatchOperationsErrors as nl, type SearchBatchOperationsError as nm, type SearchBatchOperationsResponses as nn, type SearchBatchOperationsResponse as no, type GetBatchOperationData as np, type GetBatchOperationErrors as nq, type GetBatchOperationError as nr, type GetBatchOperationResponses as ns, type GetBatchOperationResponse as nt, type CancelBatchOperationData as nu, type CancelBatchOperationErrors as nv, type CancelBatchOperationError as nw, type CancelBatchOperationResponses as nx, type CancelBatchOperationResponse as ny, type ResumeBatchOperationData as nz, type SupportLogger as o, type GetDecisionDefinitionXmlError as o$, type DeleteGlobalClusterVariableResponse as o0, type GetGlobalClusterVariableData as o1, type GetGlobalClusterVariableErrors as o2, type GetGlobalClusterVariableError as o3, type GetGlobalClusterVariableResponses as o4, type GetGlobalClusterVariableResponse as o5, type UpdateGlobalClusterVariableData as o6, type UpdateGlobalClusterVariableErrors as o7, type UpdateGlobalClusterVariableError as o8, type UpdateGlobalClusterVariableResponses as o9, type EvaluateConditionalsData as oA, type EvaluateConditionalsErrors as oB, type EvaluateConditionalsError as oC, type EvaluateConditionalsResponses as oD, type EvaluateConditionalsResponse as oE, type SearchCorrelatedMessageSubscriptionsData as oF, type SearchCorrelatedMessageSubscriptionsErrors as oG, type SearchCorrelatedMessageSubscriptionsError as oH, type SearchCorrelatedMessageSubscriptionsResponses as oI, type SearchCorrelatedMessageSubscriptionsResponse as oJ, type EvaluateDecisionData as oK, type EvaluateDecisionErrors as oL, type EvaluateDecisionError as oM, type EvaluateDecisionResponses as oN, type EvaluateDecisionResponse as oO, type SearchDecisionDefinitionsData as oP, type SearchDecisionDefinitionsErrors as oQ, type SearchDecisionDefinitionsError as oR, type SearchDecisionDefinitionsResponses as oS, type SearchDecisionDefinitionsResponse as oT, type GetDecisionDefinitionData as oU, type GetDecisionDefinitionErrors as oV, type GetDecisionDefinitionError as oW, type GetDecisionDefinitionResponses as oX, type GetDecisionDefinitionResponse as oY, type GetDecisionDefinitionXmlData as oZ, type GetDecisionDefinitionXmlErrors as o_, type UpdateGlobalClusterVariableResponse as oa, type SearchClusterVariablesData as ob, type SearchClusterVariablesErrors as oc, type SearchClusterVariablesError as od, type SearchClusterVariablesResponses as oe, type SearchClusterVariablesResponse as of, type CreateTenantClusterVariableData as og, type CreateTenantClusterVariableErrors as oh, type CreateTenantClusterVariableError as oi, type CreateTenantClusterVariableResponses as oj, type CreateTenantClusterVariableResponse as ok, type DeleteTenantClusterVariableData as ol, type DeleteTenantClusterVariableErrors as om, type DeleteTenantClusterVariableError as on, type DeleteTenantClusterVariableResponses as oo, type DeleteTenantClusterVariableResponse as op, type GetTenantClusterVariableData as oq, type GetTenantClusterVariableErrors as or, type GetTenantClusterVariableError as os, type GetTenantClusterVariableResponses as ot, type GetTenantClusterVariableResponse as ou, type UpdateTenantClusterVariableData as ov, type UpdateTenantClusterVariableErrors as ow, type UpdateTenantClusterVariableError as ox, type UpdateTenantClusterVariableResponses as oy, type UpdateTenantClusterVariableResponse as oz, type ThreadedJob as p, type CreateDocumentLinkErrors as p$, type GetDecisionDefinitionXmlResponses as p0, type GetDecisionDefinitionXmlResponse as p1, type SearchDecisionInstancesData as p2, type SearchDecisionInstancesErrors as p3, type SearchDecisionInstancesError as p4, type SearchDecisionInstancesResponses as p5, type SearchDecisionInstancesResponse as p6, type GetDecisionInstanceData as p7, type GetDecisionInstanceErrors as p8, type GetDecisionInstanceError as p9, type GetDecisionRequirementsXmlResponse as pA, type CreateDeploymentData as pB, type CreateDeploymentErrors as pC, type CreateDeploymentError as pD, type CreateDeploymentResponses as pE, type CreateDeploymentResponse as pF, type CreateDocumentData as pG, type CreateDocumentErrors as pH, type CreateDocumentError as pI, type CreateDocumentResponses as pJ, type CreateDocumentResponse as pK, type CreateDocumentsData as pL, type CreateDocumentsErrors as pM, type CreateDocumentsError as pN, type CreateDocumentsResponses as pO, type CreateDocumentsResponse as pP, type DeleteDocumentData as pQ, type DeleteDocumentErrors as pR, type DeleteDocumentError as pS, type DeleteDocumentResponses as pT, type DeleteDocumentResponse as pU, type GetDocumentData as pV, type GetDocumentErrors as pW, type GetDocumentError as pX, type GetDocumentResponses as pY, type GetDocumentResponse as pZ, type CreateDocumentLinkData as p_, type GetDecisionInstanceResponses as pa, type GetDecisionInstanceResponse as pb, type DeleteDecisionInstanceData as pc, type DeleteDecisionInstanceErrors as pd, type DeleteDecisionInstanceError as pe, type DeleteDecisionInstanceResponses as pf, type DeleteDecisionInstanceResponse as pg, type DeleteDecisionInstancesBatchOperationData as ph, type DeleteDecisionInstancesBatchOperationErrors as pi, type DeleteDecisionInstancesBatchOperationError as pj, type DeleteDecisionInstancesBatchOperationResponses as pk, type DeleteDecisionInstancesBatchOperationResponse as pl, type SearchDecisionRequirementsData as pm, type SearchDecisionRequirementsErrors as pn, type SearchDecisionRequirementsError as po, type SearchDecisionRequirementsResponses as pp, type SearchDecisionRequirementsResponse as pq, type GetDecisionRequirementsData as pr, type GetDecisionRequirementsErrors as ps, type GetDecisionRequirementsError as pt, type GetDecisionRequirementsResponses as pu, type GetDecisionRequirementsResponse as pv, type GetDecisionRequirementsXmlData as pw, type GetDecisionRequirementsXmlErrors as px, type GetDecisionRequirementsXmlError as py, type GetDecisionRequirementsXmlResponses as pz, type ThreadedJobHandler as q, type SearchGroupsData as q$, type CreateDocumentLinkError as q0, type CreateDocumentLinkResponses as q1, type CreateDocumentLinkResponse as q2, type ActivateAdHocSubProcessActivitiesData as q3, type ActivateAdHocSubProcessActivitiesErrors as q4, type ActivateAdHocSubProcessActivitiesError as q5, type ActivateAdHocSubProcessActivitiesResponses as q6, type ActivateAdHocSubProcessActivitiesResponse as q7, type SearchElementInstancesData as q8, type SearchElementInstancesErrors as q9, type CreateGlobalTaskListenerResponses as qA, type CreateGlobalTaskListenerResponse as qB, type DeleteGlobalTaskListenerData as qC, type DeleteGlobalTaskListenerErrors as qD, type DeleteGlobalTaskListenerError as qE, type DeleteGlobalTaskListenerResponses as qF, type DeleteGlobalTaskListenerResponse as qG, type GetGlobalTaskListenerData as qH, type GetGlobalTaskListenerErrors as qI, type GetGlobalTaskListenerError as qJ, type GetGlobalTaskListenerResponses as qK, type GetGlobalTaskListenerResponse as qL, type UpdateGlobalTaskListenerData as qM, type UpdateGlobalTaskListenerErrors as qN, type UpdateGlobalTaskListenerError as qO, type UpdateGlobalTaskListenerResponses as qP, type UpdateGlobalTaskListenerResponse as qQ, type SearchGlobalTaskListenersData as qR, type SearchGlobalTaskListenersErrors as qS, type SearchGlobalTaskListenersError as qT, type SearchGlobalTaskListenersResponses as qU, type SearchGlobalTaskListenersResponse as qV, type CreateGroupData as qW, type CreateGroupErrors as qX, type CreateGroupError as qY, type CreateGroupResponses as qZ, type CreateGroupResponse as q_, type SearchElementInstancesError as qa, type SearchElementInstancesResponses as qb, type SearchElementInstancesResponse as qc, type GetElementInstanceData as qd, type GetElementInstanceErrors as qe, type GetElementInstanceError as qf, type GetElementInstanceResponses as qg, type GetElementInstanceResponse as qh, type SearchElementInstanceIncidentsData as qi, type SearchElementInstanceIncidentsErrors as qj, type SearchElementInstanceIncidentsError as qk, type SearchElementInstanceIncidentsResponses as ql, type SearchElementInstanceIncidentsResponse as qm, type CreateElementInstanceVariablesData as qn, type CreateElementInstanceVariablesErrors as qo, type CreateElementInstanceVariablesError as qp, type CreateElementInstanceVariablesResponses as qq, type CreateElementInstanceVariablesResponse as qr, type EvaluateExpressionData as qs, type EvaluateExpressionErrors as qt, type EvaluateExpressionError as qu, type EvaluateExpressionResponses as qv, type EvaluateExpressionResponse as qw, type CreateGlobalTaskListenerData as qx, type CreateGlobalTaskListenerErrors as qy, type CreateGlobalTaskListenerError as qz, ThreadedJobWorker as r, type UnassignUserFromGroupResponse as r$, type SearchGroupsErrors as r0, type SearchGroupsError as r1, type SearchGroupsResponses as r2, type SearchGroupsResponse as r3, type DeleteGroupData as r4, type DeleteGroupErrors as r5, type DeleteGroupError as r6, type DeleteGroupResponses as r7, type DeleteGroupResponse as r8, type GetGroupData as r9, type SearchMappingRulesForGroupError as rA, type SearchMappingRulesForGroupResponses as rB, type SearchMappingRulesForGroupResponse as rC, type UnassignMappingRuleFromGroupData as rD, type UnassignMappingRuleFromGroupErrors as rE, type UnassignMappingRuleFromGroupError as rF, type UnassignMappingRuleFromGroupResponses as rG, type UnassignMappingRuleFromGroupResponse as rH, type AssignMappingRuleToGroupData as rI, type AssignMappingRuleToGroupErrors as rJ, type AssignMappingRuleToGroupError as rK, type AssignMappingRuleToGroupResponses as rL, type AssignMappingRuleToGroupResponse as rM, type SearchRolesForGroupData as rN, type SearchRolesForGroupErrors as rO, type SearchRolesForGroupError as rP, type SearchRolesForGroupResponses as rQ, type SearchRolesForGroupResponse as rR, type SearchUsersForGroupData as rS, type SearchUsersForGroupErrors as rT, type SearchUsersForGroupError as rU, type SearchUsersForGroupResponses as rV, type SearchUsersForGroupResponse as rW, type UnassignUserFromGroupData as rX, type UnassignUserFromGroupErrors as rY, type UnassignUserFromGroupError as rZ, type UnassignUserFromGroupResponses as r_, type GetGroupErrors as ra, type GetGroupError as rb, type GetGroupResponses as rc, type GetGroupResponse as rd, type UpdateGroupData as re, type UpdateGroupErrors as rf, type UpdateGroupError as rg, type UpdateGroupResponses as rh, type UpdateGroupResponse as ri, type SearchClientsForGroupData as rj, type SearchClientsForGroupErrors as rk, type SearchClientsForGroupError as rl, type SearchClientsForGroupResponses as rm, type SearchClientsForGroupResponse as rn, type UnassignClientFromGroupData as ro, type UnassignClientFromGroupErrors as rp, type UnassignClientFromGroupError as rq, type UnassignClientFromGroupResponses as rr, type UnassignClientFromGroupResponse as rs, type AssignClientToGroupData as rt, type AssignClientToGroupErrors as ru, type AssignClientToGroupError as rv, type AssignClientToGroupResponses as rw, type AssignClientToGroupResponse as rx, type SearchMappingRulesForGroupData as ry, type SearchMappingRulesForGroupErrors as rz, type ThreadedJobWorkerConfig as s, type GetGlobalJobStatisticsResponses as s$, type AssignUserToGroupData as s0, type AssignUserToGroupErrors as s1, type AssignUserToGroupError as s2, type AssignUserToGroupResponses as s3, type AssignUserToGroupResponse as s4, type SearchIncidentsData as s5, type SearchIncidentsErrors as s6, type SearchIncidentsError as s7, type SearchIncidentsResponses as s8, type SearchIncidentsResponse as s9, type SearchJobsErrors as sA, type SearchJobsError as sB, type SearchJobsResponses as sC, type SearchJobsResponse as sD, type UpdateJobData as sE, type UpdateJobErrors as sF, type UpdateJobError as sG, type UpdateJobResponses as sH, type UpdateJobResponse as sI, type CompleteJobData as sJ, type CompleteJobErrors as sK, type CompleteJobError as sL, type CompleteJobResponses as sM, type CompleteJobResponse as sN, type ThrowJobErrorData as sO, type ThrowJobErrorErrors as sP, type ThrowJobErrorError as sQ, type ThrowJobErrorResponses as sR, type ThrowJobErrorResponse as sS, type FailJobData as sT, type FailJobErrors as sU, type FailJobError as sV, type FailJobResponses as sW, type FailJobResponse as sX, type GetGlobalJobStatisticsData as sY, type GetGlobalJobStatisticsErrors as sZ, type GetGlobalJobStatisticsError as s_, type GetIncidentData as sa, type GetIncidentErrors as sb, type GetIncidentError as sc, type GetIncidentResponses as sd, type GetIncidentResponse as se, type ResolveIncidentData as sf, type ResolveIncidentErrors as sg, type ResolveIncidentError as sh, type ResolveIncidentResponses as si, type ResolveIncidentResponse as sj, type GetProcessInstanceStatisticsByDefinitionData as sk, type GetProcessInstanceStatisticsByDefinitionErrors as sl, type GetProcessInstanceStatisticsByDefinitionError as sm, type GetProcessInstanceStatisticsByDefinitionResponses as sn, type GetProcessInstanceStatisticsByDefinitionResponse as so, type GetProcessInstanceStatisticsByErrorData as sp, type GetProcessInstanceStatisticsByErrorErrors as sq, type GetProcessInstanceStatisticsByErrorError as sr, type GetProcessInstanceStatisticsByErrorResponses as ss, type GetProcessInstanceStatisticsByErrorResponse as st, type ActivateJobsData as su, type ActivateJobsErrors as sv, type ActivateJobsError as sw, type ActivateJobsResponses as sx, type ActivateJobsResponse as sy, type SearchJobsData as sz, ThreadPool as t, type PublishMessageError as t$, type GetGlobalJobStatisticsResponse as t0, type GetJobTypeStatisticsData as t1, type GetJobTypeStatisticsErrors as t2, type GetJobTypeStatisticsError as t3, type GetJobTypeStatisticsResponses as t4, type GetJobTypeStatisticsResponse as t5, type GetJobWorkerStatisticsData as t6, type GetJobWorkerStatisticsErrors as t7, type GetJobWorkerStatisticsError as t8, type GetJobWorkerStatisticsResponses as t9, type DeleteMappingRuleData as tA, type DeleteMappingRuleErrors as tB, type DeleteMappingRuleError as tC, type DeleteMappingRuleResponses as tD, type DeleteMappingRuleResponse as tE, type GetMappingRuleData as tF, type GetMappingRuleErrors as tG, type GetMappingRuleError as tH, type GetMappingRuleResponses as tI, type GetMappingRuleResponse as tJ, type UpdateMappingRuleData as tK, type UpdateMappingRuleErrors as tL, type UpdateMappingRuleError as tM, type UpdateMappingRuleResponses as tN, type UpdateMappingRuleResponse as tO, type SearchMessageSubscriptionsData as tP, type SearchMessageSubscriptionsErrors as tQ, type SearchMessageSubscriptionsError as tR, type SearchMessageSubscriptionsResponses as tS, type SearchMessageSubscriptionsResponse as tT, type CorrelateMessageData as tU, type CorrelateMessageErrors as tV, type CorrelateMessageError as tW, type CorrelateMessageResponses as tX, type CorrelateMessageResponse as tY, type PublishMessageData as tZ, type PublishMessageErrors as t_, type GetJobWorkerStatisticsResponse as ta, type GetJobTimeSeriesStatisticsData as tb, type GetJobTimeSeriesStatisticsErrors as tc, type GetJobTimeSeriesStatisticsError as td, type GetJobTimeSeriesStatisticsResponses as te, type GetJobTimeSeriesStatisticsResponse as tf, type GetJobErrorStatisticsData as tg, type GetJobErrorStatisticsErrors as th, type GetJobErrorStatisticsError as ti, type GetJobErrorStatisticsResponses as tj, type GetJobErrorStatisticsResponse as tk, type GetLicenseData as tl, type GetLicenseErrors as tm, type GetLicenseError as tn, type GetLicenseResponses as to, type GetLicenseResponse as tp, type CreateMappingRuleData as tq, type CreateMappingRuleErrors as tr, type CreateMappingRuleError as ts, type CreateMappingRuleResponses as tt, type CreateMappingRuleResponse as tu, type SearchMappingRuleData as tv, type SearchMappingRuleErrors as tw, type SearchMappingRuleError as tx, type SearchMappingRuleResponses as ty, type SearchMappingRuleResponse as tz, type CamundaConfig as u, type MigrateProcessInstancesBatchOperationErrors as u$, type PublishMessageResponses as u0, type PublishMessageResponse as u1, type SearchProcessDefinitionsData as u2, type SearchProcessDefinitionsErrors as u3, type SearchProcessDefinitionsError as u4, type SearchProcessDefinitionsResponses as u5, type SearchProcessDefinitionsResponse as u6, type GetProcessDefinitionMessageSubscriptionStatisticsData as u7, type GetProcessDefinitionMessageSubscriptionStatisticsErrors as u8, type GetProcessDefinitionMessageSubscriptionStatisticsError as u9, type GetProcessDefinitionXmlResponse as uA, type GetProcessDefinitionInstanceVersionStatisticsData as uB, type GetProcessDefinitionInstanceVersionStatisticsErrors as uC, type GetProcessDefinitionInstanceVersionStatisticsError as uD, type GetProcessDefinitionInstanceVersionStatisticsResponses as uE, type GetProcessDefinitionInstanceVersionStatisticsResponse as uF, type CreateProcessInstanceData as uG, type CreateProcessInstanceErrors as uH, type CreateProcessInstanceError as uI, type CreateProcessInstanceResponses as uJ, type CreateProcessInstanceResponse as uK, type CancelProcessInstancesBatchOperationData as uL, type CancelProcessInstancesBatchOperationErrors as uM, type CancelProcessInstancesBatchOperationError as uN, type CancelProcessInstancesBatchOperationResponses as uO, type CancelProcessInstancesBatchOperationResponse as uP, type DeleteProcessInstancesBatchOperationData as uQ, type DeleteProcessInstancesBatchOperationErrors as uR, type DeleteProcessInstancesBatchOperationError as uS, type DeleteProcessInstancesBatchOperationResponses as uT, type DeleteProcessInstancesBatchOperationResponse as uU, type ResolveIncidentsBatchOperationData as uV, type ResolveIncidentsBatchOperationErrors as uW, type ResolveIncidentsBatchOperationError as uX, type ResolveIncidentsBatchOperationResponses as uY, type ResolveIncidentsBatchOperationResponse as uZ, type MigrateProcessInstancesBatchOperationData as u_, type GetProcessDefinitionMessageSubscriptionStatisticsResponses as ua, type GetProcessDefinitionMessageSubscriptionStatisticsResponse as ub, type GetProcessDefinitionInstanceStatisticsData as uc, type GetProcessDefinitionInstanceStatisticsErrors as ud, type GetProcessDefinitionInstanceStatisticsError as ue, type GetProcessDefinitionInstanceStatisticsResponses as uf, type GetProcessDefinitionInstanceStatisticsResponse as ug, type GetProcessDefinitionData as uh, type GetProcessDefinitionErrors as ui, type GetProcessDefinitionError as uj, type GetProcessDefinitionResponses as uk, type GetProcessDefinitionResponse as ul, type GetStartProcessFormData as um, type GetStartProcessFormErrors as un, type GetStartProcessFormError as uo, type GetStartProcessFormResponses as up, type GetStartProcessFormResponse as uq, type GetProcessDefinitionStatisticsData as ur, type GetProcessDefinitionStatisticsErrors as us, type GetProcessDefinitionStatisticsError as ut, type GetProcessDefinitionStatisticsResponses as uu, type GetProcessDefinitionStatisticsResponse as uv, type GetProcessDefinitionXmlData as uw, type GetProcessDefinitionXmlErrors as ux, type GetProcessDefinitionXmlError as uy, type GetProcessDefinitionXmlResponses as uz, type activateAdHocSubProcessActivitiesInput as v, type GetResourceData as v$, type MigrateProcessInstancesBatchOperationError as v0, type MigrateProcessInstancesBatchOperationResponses as v1, type MigrateProcessInstancesBatchOperationResponse as v2, type ModifyProcessInstancesBatchOperationData as v3, type ModifyProcessInstancesBatchOperationErrors as v4, type ModifyProcessInstancesBatchOperationError as v5, type ModifyProcessInstancesBatchOperationResponses as v6, type ModifyProcessInstancesBatchOperationResponse as v7, type SearchProcessInstancesData as v8, type SearchProcessInstancesErrors as v9, type ResolveProcessInstanceIncidentsResponses as vA, type ResolveProcessInstanceIncidentsResponse as vB, type SearchProcessInstanceIncidentsData as vC, type SearchProcessInstanceIncidentsErrors as vD, type SearchProcessInstanceIncidentsError as vE, type SearchProcessInstanceIncidentsResponses as vF, type SearchProcessInstanceIncidentsResponse as vG, type MigrateProcessInstanceData as vH, type MigrateProcessInstanceErrors as vI, type MigrateProcessInstanceError as vJ, type MigrateProcessInstanceResponses as vK, type MigrateProcessInstanceResponse as vL, type ModifyProcessInstanceData as vM, type ModifyProcessInstanceErrors as vN, type ModifyProcessInstanceError as vO, type ModifyProcessInstanceResponses as vP, type ModifyProcessInstanceResponse as vQ, type GetProcessInstanceSequenceFlowsData as vR, type GetProcessInstanceSequenceFlowsErrors as vS, type GetProcessInstanceSequenceFlowsError as vT, type GetProcessInstanceSequenceFlowsResponses as vU, type GetProcessInstanceSequenceFlowsResponse as vV, type GetProcessInstanceStatisticsData as vW, type GetProcessInstanceStatisticsErrors as vX, type GetProcessInstanceStatisticsError as vY, type GetProcessInstanceStatisticsResponses as vZ, type GetProcessInstanceStatisticsResponse as v_, type SearchProcessInstancesError as va, type SearchProcessInstancesResponses as vb, type SearchProcessInstancesResponse as vc, type GetProcessInstanceData as vd, type GetProcessInstanceErrors as ve, type GetProcessInstanceError as vf, type GetProcessInstanceResponses as vg, type GetProcessInstanceResponse as vh, type GetProcessInstanceCallHierarchyData as vi, type GetProcessInstanceCallHierarchyErrors as vj, type GetProcessInstanceCallHierarchyError as vk, type GetProcessInstanceCallHierarchyResponses as vl, type GetProcessInstanceCallHierarchyResponse as vm, type CancelProcessInstanceData as vn, type CancelProcessInstanceErrors as vo, type CancelProcessInstanceError as vp, type CancelProcessInstanceResponses as vq, type CancelProcessInstanceResponse as vr, type DeleteProcessInstanceData as vs, type DeleteProcessInstanceErrors as vt, type DeleteProcessInstanceError as vu, type DeleteProcessInstanceResponses as vv, type DeleteProcessInstanceResponse as vw, type ResolveProcessInstanceIncidentsData as vx, type ResolveProcessInstanceIncidentsErrors as vy, type ResolveProcessInstanceIncidentsError as vz, type activateJobsInput as w, type UnassignRoleFromGroupResponse as w$, type GetResourceErrors as w0, type GetResourceError as w1, type GetResourceResponses as w2, type GetResourceResponse as w3, type GetResourceContentData as w4, type GetResourceContentErrors as w5, type GetResourceContentError as w6, type GetResourceContentResponses as w7, type GetResourceContentResponse as w8, type DeleteResourceData as w9, type UpdateRoleError as wA, type UpdateRoleResponses as wB, type UpdateRoleResponse as wC, type SearchClientsForRoleData as wD, type SearchClientsForRoleErrors as wE, type SearchClientsForRoleError as wF, type SearchClientsForRoleResponses as wG, type SearchClientsForRoleResponse as wH, type UnassignRoleFromClientData as wI, type UnassignRoleFromClientErrors as wJ, type UnassignRoleFromClientError as wK, type UnassignRoleFromClientResponses as wL, type UnassignRoleFromClientResponse as wM, type AssignRoleToClientData as wN, type AssignRoleToClientErrors as wO, type AssignRoleToClientError as wP, type AssignRoleToClientResponses as wQ, type AssignRoleToClientResponse as wR, type SearchGroupsForRoleData as wS, type SearchGroupsForRoleErrors as wT, type SearchGroupsForRoleError as wU, type SearchGroupsForRoleResponses as wV, type SearchGroupsForRoleResponse as wW, type UnassignRoleFromGroupData as wX, type UnassignRoleFromGroupErrors as wY, type UnassignRoleFromGroupError as wZ, type UnassignRoleFromGroupResponses as w_, type DeleteResourceErrors as wa, type DeleteResourceError as wb, type DeleteResourceResponses as wc, type DeleteResourceResponse2 as wd, type CreateRoleData as we, type CreateRoleErrors as wf, type CreateRoleError as wg, type CreateRoleResponses as wh, type CreateRoleResponse as wi, type SearchRolesData as wj, type SearchRolesErrors as wk, type SearchRolesError as wl, type SearchRolesResponses as wm, type SearchRolesResponse as wn, type DeleteRoleData as wo, type DeleteRoleErrors as wp, type DeleteRoleError as wq, type DeleteRoleResponses as wr, type DeleteRoleResponse as ws, type GetRoleData as wt, type GetRoleErrors as wu, type GetRoleError as wv, type GetRoleResponses as ww, type GetRoleResponse as wx, type UpdateRoleData as wy, type UpdateRoleErrors as wz, type assignClientToGroupInput as x, type CreateTenantResponse as x$, type AssignRoleToGroupData as x0, type AssignRoleToGroupErrors as x1, type AssignRoleToGroupError as x2, type AssignRoleToGroupResponses as x3, type AssignRoleToGroupResponse as x4, type SearchMappingRulesForRoleData as x5, type SearchMappingRulesForRoleErrors as x6, type SearchMappingRulesForRoleError as x7, type SearchMappingRulesForRoleResponses as x8, type SearchMappingRulesForRoleResponse as x9, type CreateAdminUserErrors as xA, type CreateAdminUserError as xB, type CreateAdminUserResponses as xC, type CreateAdminUserResponse as xD, type BroadcastSignalData as xE, type BroadcastSignalErrors as xF, type BroadcastSignalError as xG, type BroadcastSignalResponses as xH, type BroadcastSignalResponse as xI, type GetStatusData as xJ, type GetStatusErrors as xK, type GetStatusResponses as xL, type GetStatusResponse as xM, type GetUsageMetricsData as xN, type GetUsageMetricsErrors as xO, type GetUsageMetricsError as xP, type GetUsageMetricsResponses as xQ, type GetUsageMetricsResponse as xR, type GetSystemConfigurationData as xS, type GetSystemConfigurationErrors as xT, type GetSystemConfigurationError as xU, type GetSystemConfigurationResponses as xV, type GetSystemConfigurationResponse as xW, type CreateTenantData as xX, type CreateTenantErrors as xY, type CreateTenantError as xZ, type CreateTenantResponses as x_, type UnassignRoleFromMappingRuleData as xa, type UnassignRoleFromMappingRuleErrors as xb, type UnassignRoleFromMappingRuleError as xc, type UnassignRoleFromMappingRuleResponses as xd, type UnassignRoleFromMappingRuleResponse as xe, type AssignRoleToMappingRuleData as xf, type AssignRoleToMappingRuleErrors as xg, type AssignRoleToMappingRuleError as xh, type AssignRoleToMappingRuleResponses as xi, type AssignRoleToMappingRuleResponse as xj, type SearchUsersForRoleData as xk, type SearchUsersForRoleErrors as xl, type SearchUsersForRoleError as xm, type SearchUsersForRoleResponses as xn, type SearchUsersForRoleResponse as xo, type UnassignRoleFromUserData as xp, type UnassignRoleFromUserErrors as xq, type UnassignRoleFromUserError as xr, type UnassignRoleFromUserResponses as xs, type UnassignRoleFromUserResponse as xt, type AssignRoleToUserData as xu, type AssignRoleToUserErrors as xv, type AssignRoleToUserError as xw, type AssignRoleToUserResponses as xx, type AssignRoleToUserResponse as xy, type CreateAdminUserData as xz, type assignClientToTenantInput as y, type UnassignRoleFromTenantErrors as y$, type SearchTenantsData as y0, type SearchTenantsErrors as y1, type SearchTenantsError as y2, type SearchTenantsResponses as y3, type SearchTenantsResponse as y4, type DeleteTenantData as y5, type DeleteTenantErrors as y6, type DeleteTenantError as y7, type DeleteTenantResponses as y8, type DeleteTenantResponse as y9, type UnassignGroupFromTenantData as yA, type UnassignGroupFromTenantErrors as yB, type UnassignGroupFromTenantError as yC, type UnassignGroupFromTenantResponses as yD, type UnassignGroupFromTenantResponse as yE, type AssignGroupToTenantData as yF, type AssignGroupToTenantErrors as yG, type AssignGroupToTenantError as yH, type AssignGroupToTenantResponses as yI, type AssignGroupToTenantResponse as yJ, type SearchMappingRulesForTenantData as yK, type SearchMappingRulesForTenantResponses as yL, type SearchMappingRulesForTenantResponse as yM, type UnassignMappingRuleFromTenantData as yN, type UnassignMappingRuleFromTenantErrors as yO, type UnassignMappingRuleFromTenantError as yP, type UnassignMappingRuleFromTenantResponses as yQ, type UnassignMappingRuleFromTenantResponse as yR, type AssignMappingRuleToTenantData as yS, type AssignMappingRuleToTenantErrors as yT, type AssignMappingRuleToTenantError as yU, type AssignMappingRuleToTenantResponses as yV, type AssignMappingRuleToTenantResponse as yW, type SearchRolesForTenantData as yX, type SearchRolesForTenantResponses as yY, type SearchRolesForTenantResponse as yZ, type UnassignRoleFromTenantData as y_, type GetTenantData as ya, type GetTenantErrors as yb, type GetTenantError as yc, type GetTenantResponses as yd, type GetTenantResponse as ye, type UpdateTenantData as yf, type UpdateTenantErrors as yg, type UpdateTenantError as yh, type UpdateTenantResponses as yi, type UpdateTenantResponse as yj, type SearchClientsForTenantData as yk, type SearchClientsForTenantResponses as yl, type SearchClientsForTenantResponse as ym, type UnassignClientFromTenantData as yn, type UnassignClientFromTenantErrors as yo, type UnassignClientFromTenantError as yp, type UnassignClientFromTenantResponses as yq, type UnassignClientFromTenantResponse as yr, type AssignClientToTenantData as ys, type AssignClientToTenantErrors as yt, type AssignClientToTenantError as yu, type AssignClientToTenantResponses as yv, type AssignClientToTenantResponse as yw, type SearchGroupIdsForTenantData as yx, type SearchGroupIdsForTenantResponses as yy, type SearchGroupIdsForTenantResponse as yz, type assignGroupToTenantInput as z, type UpdateUserTaskError as z$, type UnassignRoleFromTenantError as z0, type UnassignRoleFromTenantResponses as z1, type UnassignRoleFromTenantResponse as z2, type AssignRoleToTenantData as z3, type AssignRoleToTenantErrors as z4, type AssignRoleToTenantError as z5, type AssignRoleToTenantResponses as z6, type AssignRoleToTenantResponse as z7, type SearchUsersForTenantData as z8, type SearchUsersForTenantResponses as z9, type DeleteUserData as zA, type DeleteUserErrors as zB, type DeleteUserError as zC, type DeleteUserResponses as zD, type DeleteUserResponse as zE, type GetUserData as zF, type GetUserErrors as zG, type GetUserError as zH, type GetUserResponses as zI, type GetUserResponse as zJ, type UpdateUserData as zK, type UpdateUserErrors as zL, type UpdateUserError as zM, type UpdateUserResponses as zN, type UpdateUserResponse as zO, type SearchUserTasksData as zP, type SearchUserTasksErrors as zQ, type SearchUserTasksError as zR, type SearchUserTasksResponses as zS, type SearchUserTasksResponse as zT, type GetUserTaskData as zU, type GetUserTaskErrors as zV, type GetUserTaskError as zW, type GetUserTaskResponses as zX, type GetUserTaskResponse as zY, type UpdateUserTaskData as zZ, type UpdateUserTaskErrors as z_, type SearchUsersForTenantResponse as za, type UnassignUserFromTenantData as zb, type UnassignUserFromTenantErrors as zc, type UnassignUserFromTenantError as zd, type UnassignUserFromTenantResponses as ze, type UnassignUserFromTenantResponse as zf, type AssignUserToTenantData as zg, type AssignUserToTenantErrors as zh, type AssignUserToTenantError as zi, type AssignUserToTenantResponses as zj, type AssignUserToTenantResponse as zk, type GetTopologyData as zl, type GetTopologyErrors as zm, type GetTopologyError as zn, type GetTopologyResponses as zo, type GetTopologyResponse as zp, type CreateUserData as zq, type CreateUserErrors as zr, type CreateUserError as zs, type CreateUserResponses as zt, type CreateUserResponse as zu, type SearchUsersData as zv, type SearchUsersErrors as zw, type SearchUsersError as zx, type SearchUsersResponses as zy, type SearchUsersResponse as zz };
|
|
25755
|
+
export { type createAdminUserInput as $, type AuthStrategy as A, type CompleteUserTaskData as A$, type AssignUserToTenantError as A0, type AssignUserToTenantResponses as A1, type AssignUserToTenantResponse as A2, type GetTopologyData as A3, type GetTopologyErrors as A4, type GetTopologyError as A5, type GetTopologyResponses as A6, type GetTopologyResponse as A7, type CreateUserData as A8, type CreateUserErrors as A9, type SearchUserTasksResponses as AA, type SearchUserTasksResponse as AB, type GetUserTaskData as AC, type GetUserTaskErrors as AD, type GetUserTaskError as AE, type GetUserTaskResponses as AF, type GetUserTaskResponse as AG, type UpdateUserTaskData as AH, type UpdateUserTaskErrors as AI, type UpdateUserTaskError as AJ, type UpdateUserTaskResponses as AK, type UpdateUserTaskResponse as AL, type UnassignUserTaskData as AM, type UnassignUserTaskErrors as AN, type UnassignUserTaskError as AO, type UnassignUserTaskResponses as AP, type UnassignUserTaskResponse as AQ, type AssignUserTaskData as AR, type AssignUserTaskErrors as AS, type AssignUserTaskError as AT, type AssignUserTaskResponses as AU, type AssignUserTaskResponse as AV, type SearchUserTaskAuditLogsData as AW, type SearchUserTaskAuditLogsErrors as AX, type SearchUserTaskAuditLogsError as AY, type SearchUserTaskAuditLogsResponses as AZ, type SearchUserTaskAuditLogsResponse as A_, type CreateUserError as Aa, type CreateUserResponses as Ab, type CreateUserResponse as Ac, type SearchUsersData as Ad, type SearchUsersErrors as Ae, type SearchUsersError as Af, type SearchUsersResponses as Ag, type SearchUsersResponse as Ah, type DeleteUserData as Ai, type DeleteUserErrors as Aj, type DeleteUserError as Ak, type DeleteUserResponses as Al, type DeleteUserResponse as Am, type GetUserData as An, type GetUserErrors as Ao, type GetUserError as Ap, type GetUserResponses as Aq, type GetUserResponse as Ar, type UpdateUserData as As, type UpdateUserErrors as At, type UpdateUserError as Au, type UpdateUserResponses as Av, type UpdateUserResponse as Aw, type SearchUserTasksData as Ax, type SearchUserTasksErrors as Ay, type SearchUserTasksError as Az, type BackpressureSeverity as B, type CompleteUserTaskErrors as B0, type CompleteUserTaskError as B1, type CompleteUserTaskResponses as B2, type CompleteUserTaskResponse as B3, type SearchUserTaskEffectiveVariablesData as B4, type SearchUserTaskEffectiveVariablesErrors as B5, type SearchUserTaskEffectiveVariablesError as B6, type SearchUserTaskEffectiveVariablesResponses as B7, type SearchUserTaskEffectiveVariablesResponse as B8, type GetUserTaskFormData as B9, foldDomainError as BA, type HttpError as BB, type Left as BC, type Right as BD, retryTE as BE, type TaskEither as BF, withTimeoutTE as BG, type GetUserTaskFormErrors as Ba, type GetUserTaskFormError as Bb, type GetUserTaskFormResponses as Bc, type GetUserTaskFormResponse as Bd, type SearchUserTaskVariablesData as Be, type SearchUserTaskVariablesErrors as Bf, type SearchUserTaskVariablesError as Bg, type SearchUserTaskVariablesResponses as Bh, type SearchUserTaskVariablesResponse as Bi, type SearchVariablesData as Bj, type SearchVariablesErrors as Bk, type SearchVariablesError as Bl, type SearchVariablesResponses as Bm, type SearchVariablesResponse as Bn, type GetVariableData as Bo, type GetVariableErrors as Bp, type GetVariableError as Bq, type GetVariableResponses as Br, type GetVariableResponse as Bs, assertConstraint as Bt, classifyDomainError as Bu, type DomainError as Bv, type DomainErrorTag as Bw, eventuallyTE as Bx, type FnKeys as By, type Fpify as Bz, CamundaClient as C, type assignMappingRuleToGroupInput as D, type Either as E, type assignMappingRuleToTenantInput as F, type assignRoleToClientInput as G, type HttpRetryPolicy as H, type assignRoleToGroupInput as I, type Job as J, type assignRoleToMappingRuleInput as K, type assignRoleToTenantInput as L, type assignRoleToUserInput as M, type assignUserTaskInput as N, type OperationOptions as O, type assignUserToGroupInput as P, type assignUserToTenantInput as Q, type broadcastSignalInput as R, type SdkError as S, type TelemetryHooks as T, type cancelBatchOperationInput as U, type ValidationMode as V, type cancelProcessInstanceInput as W, type cancelProcessInstancesBatchOperationInput as X, type completeJobInput as Y, type completeUserTaskInput as Z, type correlateMessageInput as _, type CamundaOptions as a, type getGroupConsistency as a$, type createAuthorizationInput as a0, type createDeploymentInput as a1, type createDocumentInput as a2, type createDocumentLinkInput as a3, type createDocumentsInput as a4, type createElementInstanceVariablesInput as a5, type createGlobalClusterVariableInput as a6, type createGlobalTaskListenerInput as a7, type createGroupInput as a8, type createMappingRuleInput as a9, type getAuditLogInput as aA, type getAuditLogConsistency as aB, type getAuthenticationInput as aC, type getAuthorizationInput as aD, type getAuthorizationConsistency as aE, type getBatchOperationInput as aF, type getBatchOperationConsistency as aG, type getDecisionDefinitionInput as aH, type getDecisionDefinitionConsistency as aI, type getDecisionDefinitionXmlInput as aJ, type getDecisionDefinitionXmlConsistency as aK, type getDecisionInstanceInput as aL, type getDecisionInstanceConsistency as aM, type getDecisionRequirementsInput as aN, type getDecisionRequirementsConsistency as aO, type getDecisionRequirementsXmlInput as aP, type getDecisionRequirementsXmlConsistency as aQ, type getDocumentInput as aR, type getElementInstanceInput as aS, type getElementInstanceConsistency as aT, type getGlobalClusterVariableInput as aU, type getGlobalClusterVariableConsistency as aV, type getGlobalJobStatisticsInput as aW, type getGlobalJobStatisticsConsistency as aX, type getGlobalTaskListenerInput as aY, type getGlobalTaskListenerConsistency as aZ, type getGroupInput as a_, type createProcessInstanceInput as aa, type createRoleInput as ab, type createTenantInput as ac, type createTenantClusterVariableInput as ad, type createUserInput as ae, type deleteAuthorizationInput as af, type deleteDecisionInstanceInput as ag, type deleteDecisionInstancesBatchOperationInput as ah, type deleteDocumentInput as ai, type deleteGlobalClusterVariableInput as aj, type deleteGlobalTaskListenerInput as ak, type deleteGroupInput as al, type deleteMappingRuleInput as am, type deleteProcessInstanceInput as an, type deleteProcessInstancesBatchOperationInput as ao, type deleteResourceInput as ap, type deleteRoleInput as aq, type deleteTenantInput as ar, type deleteTenantClusterVariableInput as as, type deleteUserInput as at, type evaluateConditionalsInput as au, type evaluateDecisionInput as av, type evaluateExpressionInput as aw, type failJobInput as ax, type getAgentInstanceInput as ay, type getAgentInstanceConsistency as az, type CancelablePromise as b, type migrateProcessInstancesBatchOperationInput as b$, type getIncidentInput as b0, type getIncidentConsistency as b1, type getJobErrorStatisticsInput as b2, type getJobErrorStatisticsConsistency as b3, type getJobTimeSeriesStatisticsInput as b4, type getJobTimeSeriesStatisticsConsistency as b5, type getJobTypeStatisticsInput as b6, type getJobTypeStatisticsConsistency as b7, type getJobWorkerStatisticsInput as b8, type getJobWorkerStatisticsConsistency as b9, type getProcessInstanceStatisticsByErrorConsistency as bA, type getResourceInput as bB, type getResourceConsistency as bC, type getResourceContentInput as bD, type getResourceContentConsistency as bE, type getRoleInput as bF, type getRoleConsistency as bG, type getStartProcessFormInput as bH, type getStartProcessFormConsistency as bI, type getStatusInput as bJ, type getSystemConfigurationInput as bK, type getTenantInput as bL, type getTenantConsistency as bM, type getTenantClusterVariableInput as bN, type getTenantClusterVariableConsistency as bO, type getTopologyInput as bP, type getUsageMetricsInput as bQ, type getUsageMetricsConsistency as bR, type getUserInput as bS, type getUserConsistency as bT, type getUserTaskInput as bU, type getUserTaskConsistency as bV, type getUserTaskFormInput as bW, type getUserTaskFormConsistency as bX, type getVariableInput as bY, type getVariableConsistency as bZ, type migrateProcessInstanceInput as b_, type getLicenseInput as ba, type getMappingRuleInput as bb, type getMappingRuleConsistency as bc, type getProcessDefinitionInput as bd, type getProcessDefinitionConsistency as be, type getProcessDefinitionInstanceStatisticsInput as bf, type getProcessDefinitionInstanceStatisticsConsistency as bg, type getProcessDefinitionInstanceVersionStatisticsInput as bh, type getProcessDefinitionInstanceVersionStatisticsConsistency as bi, type getProcessDefinitionMessageSubscriptionStatisticsInput as bj, type getProcessDefinitionMessageSubscriptionStatisticsConsistency as bk, type getProcessDefinitionStatisticsInput as bl, type getProcessDefinitionStatisticsConsistency as bm, type getProcessDefinitionXmlInput as bn, type getProcessDefinitionXmlConsistency as bo, type getProcessInstanceInput as bp, type getProcessInstanceConsistency as bq, type getProcessInstanceCallHierarchyInput as br, type getProcessInstanceCallHierarchyConsistency as bs, type getProcessInstanceSequenceFlowsInput as bt, type getProcessInstanceSequenceFlowsConsistency as bu, type getProcessInstanceStatisticsInput as bv, type getProcessInstanceStatisticsConsistency as bw, type getProcessInstanceStatisticsByDefinitionInput as bx, type getProcessInstanceStatisticsByDefinitionConsistency as by, type getProcessInstanceStatisticsByErrorInput as bz, createCamundaClient as c, type searchProcessInstanceIncidentsInput as c$, type modifyProcessInstanceInput as c0, type modifyProcessInstancesBatchOperationInput as c1, type pinClockInput as c2, type publishMessageInput as c3, type resetClockInput as c4, type resolveIncidentInput as c5, type resolveIncidentsBatchOperationInput as c6, type resolveProcessInstanceIncidentsInput as c7, type resumeBatchOperationInput as c8, type searchAgentInstancesInput as c9, type searchElementInstanceIncidentsConsistency as cA, type searchElementInstancesInput as cB, type searchElementInstancesConsistency as cC, type searchGlobalTaskListenersInput as cD, type searchGlobalTaskListenersConsistency as cE, type searchGroupIdsForTenantInput as cF, type searchGroupIdsForTenantConsistency as cG, type searchGroupsInput as cH, type searchGroupsConsistency as cI, type searchGroupsForRoleInput as cJ, type searchGroupsForRoleConsistency as cK, type searchIncidentsInput as cL, type searchIncidentsConsistency as cM, type searchJobsInput as cN, type searchJobsConsistency as cO, type searchMappingRuleInput as cP, type searchMappingRuleConsistency as cQ, type searchMappingRulesForGroupInput as cR, type searchMappingRulesForGroupConsistency as cS, type searchMappingRulesForRoleInput as cT, type searchMappingRulesForRoleConsistency as cU, type searchMappingRulesForTenantInput as cV, type searchMappingRulesForTenantConsistency as cW, type searchMessageSubscriptionsInput as cX, type searchMessageSubscriptionsConsistency as cY, type searchProcessDefinitionsInput as cZ, type searchProcessDefinitionsConsistency as c_, type searchAgentInstancesConsistency as ca, type searchAuditLogsInput as cb, type searchAuditLogsConsistency as cc, type searchAuthorizationsInput as cd, type searchAuthorizationsConsistency as ce, type searchBatchOperationItemsInput as cf, type searchBatchOperationItemsConsistency as cg, type searchBatchOperationsInput as ch, type searchBatchOperationsConsistency as ci, type searchClientsForGroupInput as cj, type searchClientsForGroupConsistency as ck, type searchClientsForRoleInput as cl, type searchClientsForRoleConsistency as cm, type searchClientsForTenantInput as cn, type searchClientsForTenantConsistency as co, type searchClusterVariablesInput as cp, type searchClusterVariablesConsistency as cq, type searchCorrelatedMessageSubscriptionsInput as cr, type searchCorrelatedMessageSubscriptionsConsistency as cs, type searchDecisionDefinitionsInput as ct, type searchDecisionDefinitionsConsistency as cu, type searchDecisionInstancesInput as cv, type searchDecisionInstancesConsistency as cw, type searchDecisionRequirementsInput as cx, type searchDecisionRequirementsConsistency as cy, type searchElementInstanceIncidentsInput as cz, type CamundaFpClient as d, type AgentInstanceSearchQuery as d$, type searchProcessInstanceIncidentsConsistency as d0, type searchProcessInstancesInput as d1, type searchProcessInstancesConsistency as d2, type searchResourcesInput as d3, type searchResourcesConsistency as d4, type searchRolesInput as d5, type searchRolesConsistency as d6, type searchRolesForGroupInput as d7, type searchRolesForGroupConsistency as d8, type searchRolesForTenantInput as d9, type unassignGroupFromTenantInput as dA, type unassignMappingRuleFromGroupInput as dB, type unassignMappingRuleFromTenantInput as dC, type unassignRoleFromClientInput as dD, type unassignRoleFromGroupInput as dE, type unassignRoleFromMappingRuleInput as dF, type unassignRoleFromTenantInput as dG, type unassignRoleFromUserInput as dH, type unassignUserFromGroupInput as dI, type unassignUserFromTenantInput as dJ, type unassignUserTaskInput as dK, type updateAuthorizationInput as dL, type updateGlobalClusterVariableInput as dM, type updateGlobalTaskListenerInput as dN, type updateGroupInput as dO, type updateJobInput as dP, type updateMappingRuleInput as dQ, type updateRoleInput as dR, type updateTenantInput as dS, type updateTenantClusterVariableInput as dT, type updateUserInput as dU, type updateUserTaskInput as dV, type ExtendedDeploymentResult as dW, CancelError as dX, type CamundaKey as dY, type ClientOptions as dZ, type AgentInstanceSearchQuerySortRequest as d_, type searchRolesForTenantConsistency as da, type searchTenantsInput as db, type searchTenantsConsistency as dc, type searchUsersInput as dd, type searchUsersConsistency as de, type searchUsersForGroupInput as df, type searchUsersForGroupConsistency as dg, type searchUsersForRoleInput as dh, type searchUsersForRoleConsistency as di, type searchUsersForTenantInput as dj, type searchUsersForTenantConsistency as dk, type searchUserTaskAuditLogsInput as dl, type searchUserTaskAuditLogsConsistency as dm, type searchUserTaskEffectiveVariablesInput as dn, type searchUserTaskEffectiveVariablesConsistency as dp, type searchUserTasksInput as dq, type searchUserTasksConsistency as dr, type searchUserTaskVariablesInput as ds, type searchUserTaskVariablesConsistency as dt, type searchVariablesInput as du, type searchVariablesConsistency as dv, type suspendBatchOperationInput as dw, type throwJobErrorInput as dx, type unassignClientFromGroupInput as dy, type unassignClientFromTenantInput as dz, createCamundaFpClient as e, type ProcessInstanceMigrationBatchOperationPlan as e$, type AgentInstanceFilter as e0, type AgentInstanceSearchQueryResult as e1, type AgentInstanceResult as e2, type AgentInstanceDefinition as e3, type AgentInstanceMetrics as e4, type AgentInstanceLimits as e5, AgentInstanceStatusEnum as e6, type AgentInstanceStatusFilterProperty as e7, type AdvancedAgentInstanceStatusFilter as e8, type AuditLogResult as e9, type AuthorizationSearchQuerySortRequest as eA, type AuthorizationSearchQuery as eB, type AuthorizationFilter as eC, type AuthorizationResult as eD, type AuthorizationSearchResult as eE, type AuthorizationCreateResult as eF, PermissionTypeEnum as eG, ResourceTypeEnum as eH, OwnerTypeEnum as eI, AuthorizationKey as eJ, type BatchOperationCreatedResult as eK, type BatchOperationSearchQuerySortRequest as eL, type BatchOperationSearchQuery as eM, type BatchOperationFilter as eN, type BatchOperationSearchQueryResult as eO, type BatchOperationResponse as eP, type BatchOperationError as eQ, type BatchOperationItemSearchQuerySortRequest as eR, type BatchOperationItemSearchQuery as eS, type BatchOperationItemFilter as eT, type BatchOperationItemSearchQueryResult as eU, type BatchOperationItemResponse as eV, type DecisionInstanceDeletionBatchOperationRequest as eW, type ProcessInstanceCancellationBatchOperationRequest as eX, type ProcessInstanceIncidentResolutionBatchOperationRequest as eY, type ProcessInstanceDeletionBatchOperationRequest as eZ, type ProcessInstanceMigrationBatchOperationRequest as e_, type AuditLogSearchQuerySortRequest as ea, type AuditLogSearchQueryRequest as eb, type AuditLogFilter as ec, type AuditLogSearchQueryResult as ed, AuditLogEntityKey as ee, AuditLogEntityTypeEnum as ef, AuditLogOperationTypeEnum as eg, AuditLogActorTypeEnum as eh, AuditLogResultEnum as ei, AuditLogCategoryEnum as ej, type AuditLogEntityKeyFilterProperty as ek, type AdvancedAuditLogEntityKeyFilter as el, type EntityTypeFilterProperty as em, type AdvancedEntityTypeFilter as en, type OperationTypeFilterProperty as eo, type AdvancedOperationTypeFilter as ep, type CategoryFilterProperty as eq, type AdvancedCategoryFilter as er, type AuditLogResultFilterProperty as es, type AdvancedResultFilter as et, type AuditLogActorTypeFilterProperty as eu, type AdvancedActorTypeFilter as ev, type CamundaUserResult as ew, type AuthorizationIdBasedRequest as ex, type AuthorizationPropertyBasedRequest as ey, type AuthorizationRequest as ez, isRight as f, type DeploymentMetadataResult as f$, type ProcessInstanceModificationBatchOperationRequest as f0, type ProcessInstanceModificationMoveBatchOperationInstruction as f1, BatchOperationItemStateEnum as f2, BatchOperationStateEnum as f3, BatchOperationTypeEnum as f4, type BatchOperationTypeFilterProperty as f5, type AdvancedBatchOperationTypeFilter as f6, type BatchOperationStateFilterProperty as f7, type AdvancedBatchOperationStateFilter as f8, type BatchOperationItemStateFilterProperty as f9, type DecisionDefinitionSearchQueryResult as fA, type DecisionDefinitionResult as fB, type DecisionEvaluationInstruction as fC, type DecisionEvaluationById as fD, type DecisionEvaluationByKey as fE, type EvaluateDecisionResult as fF, type EvaluatedDecisionResult as fG, type DecisionInstanceSearchQuerySortRequest as fH, type DecisionInstanceSearchQuery as fI, type DecisionInstanceFilter as fJ, type DeleteDecisionInstanceRequest as fK, type DecisionInstanceSearchQueryResult as fL, type DecisionInstanceResult as fM, type DecisionInstanceGetQueryResult as fN, type EvaluatedDecisionInputItem as fO, type EvaluatedDecisionOutputItem as fP, type MatchedDecisionRuleItem as fQ, DecisionDefinitionTypeEnum as fR, DecisionInstanceStateEnum as fS, type AdvancedDecisionInstanceStateFilter as fT, type DecisionInstanceStateFilterProperty as fU, type DecisionRequirementsSearchQuerySortRequest as fV, type DecisionRequirementsSearchQuery as fW, type DecisionRequirementsFilter as fX, type DecisionRequirementsSearchQueryResult as fY, type DecisionRequirementsResult as fZ, type DeploymentResult as f_, type AdvancedBatchOperationItemStateFilter as fa, type ClockPinRequest as fb, ClusterVariableScopeEnum as fc, type CreateClusterVariableRequest as fd, type UpdateClusterVariableRequest as fe, type ClusterVariableResult as ff, type ClusterVariableSearchResult as fg, type ClusterVariableResultBase as fh, type ClusterVariableSearchQueryRequest as fi, type ClusterVariableSearchQuerySortRequest as fj, type ClusterVariableSearchQueryFilterRequest as fk, type ClusterVariableScopeFilterProperty as fl, type AdvancedClusterVariableScopeFilter as fm, type ClusterVariableSearchQueryResult as fn, type TopologyResponse as fo, type BrokerInfo as fp, type Partition as fq, type ConditionalEvaluationInstruction as fr, type EvaluateConditionalResult as fs, ConditionalEvaluationKey as ft, type ProcessInstanceReference as fu, StartCursor as fv, EndCursor as fw, type DecisionDefinitionSearchQuerySortRequest as fx, type DecisionDefinitionSearchQuery as fy, type DecisionDefinitionFilter as fz, CamundaValidationError as g, type AdvancedGlobalTaskListenerEventTypeFilter as g$, type DeploymentProcessResult as g0, type DeploymentDecisionResult as g1, type DeploymentDecisionRequirementsResult as g2, type DeploymentFormResult as g3, type DeploymentResourceResult as g4, type DeleteResourceRequest as g5, type DeleteResourceResponse as g6, type ResourceResult as g7, DeploymentKey as g8, type ResourceKey as g9, type ExpressionEvaluationRequest as gA, type ExpressionEvaluationResult as gB, type ExpressionEvaluationWarningItem as gC, type LikeFilter as gD, type BasicStringFilter as gE, type AdvancedStringFilter as gF, type BasicStringFilterProperty as gG, type StringFilterProperty as gH, type AdvancedIntegerFilter as gI, type IntegerFilterProperty as gJ, type AdvancedDateTimeFilter as gK, type DateTimeFilterProperty as gL, type FormResult as gM, GlobalListenerSourceEnum as gN, GlobalTaskListenerEventTypeEnum as gO, type GlobalListenerBase as gP, type GlobalTaskListenerBase as gQ, type GlobalTaskListenerEventTypes as gR, type CreateGlobalTaskListenerRequest as gS, type UpdateGlobalTaskListenerRequest as gT, type GlobalTaskListenerResult as gU, type GlobalTaskListenerSearchQueryRequest as gV, type GlobalTaskListenerSearchQuerySortRequest as gW, type GlobalTaskListenerSearchQueryFilterRequest as gX, type GlobalListenerSourceFilterProperty as gY, type AdvancedGlobalListenerSourceFilter as gZ, type GlobalTaskListenerEventTypeFilterProperty as g_, type DeploymentKeyFilterProperty as ga, type AdvancedDeploymentKeyFilter as gb, type ResourceKeyFilterProperty as gc, type AdvancedResourceKeyFilter as gd, type ResourceSearchQuerySortRequest as ge, type ResourceSearchQuery as gf, type ResourceFilter as gg, type ResourceSearchQueryResult as gh, type DocumentReference as gi, type DocumentCreationFailureDetail as gj, type DocumentCreationBatchResponse as gk, type DocumentMetadata as gl, type DocumentMetadataResponse as gm, type DocumentLinkRequest as gn, type DocumentLink as go, DocumentId as gp, type ElementInstanceSearchQuerySortRequest as gq, type ElementInstanceSearchQuery as gr, type ElementInstanceFilter as gs, type ElementInstanceStateFilterProperty as gt, type AdvancedElementInstanceStateFilter as gu, type ElementInstanceSearchQueryResult as gv, type ElementInstanceResult as gw, ElementInstanceStateEnum as gx, type AdHocSubProcessActivateActivitiesInstruction as gy, type AdHocSubProcessActivateActivityReference as gz, EventualConsistencyTimeoutError as h, type JobTypeStatisticsFilter as h$, type GlobalTaskListenerSearchQueryResult as h0, type GroupCreateRequest as h1, type GroupCreateResult as h2, type GroupUpdateRequest as h3, type GroupUpdateResult as h4, type GroupResult as h5, type GroupSearchQuerySortRequest as h6, type GroupSearchQueryRequest as h7, type GroupFilter as h8, type GroupSearchQueryResult as h9, type AdvancedElementIdFilter as hA, type ProcessDefinitionIdFilterProperty as hB, type AdvancedProcessDefinitionIdFilter as hC, type IncidentSearchQuery as hD, type IncidentFilter as hE, type IncidentErrorTypeFilterProperty as hF, type AdvancedIncidentErrorTypeFilter as hG, IncidentErrorTypeEnum as hH, type IncidentStateFilterProperty as hI, type AdvancedIncidentStateFilter as hJ, IncidentStateEnum as hK, type IncidentSearchQuerySortRequest as hL, type IncidentSearchQueryResult as hM, type IncidentResult as hN, type IncidentResolutionRequest as hO, type IncidentProcessInstanceStatisticsByErrorQuery as hP, type IncidentProcessInstanceStatisticsByErrorQueryResult as hQ, type IncidentProcessInstanceStatisticsByErrorResult as hR, type IncidentProcessInstanceStatisticsByErrorQuerySortRequest as hS, type IncidentProcessInstanceStatisticsByDefinitionQuery as hT, type IncidentProcessInstanceStatisticsByDefinitionQueryResult as hU, type IncidentProcessInstanceStatisticsByDefinitionResult as hV, type IncidentProcessInstanceStatisticsByDefinitionFilter as hW, type IncidentProcessInstanceStatisticsByDefinitionQuerySortRequest as hX, type GlobalJobStatisticsQueryResult as hY, type StatusMetric as hZ, type JobTypeStatisticsQuery as h_, type GroupUserResult as ha, type GroupUserSearchResult as hb, type GroupUserSearchQueryRequest as hc, type GroupUserSearchQuerySortRequest as hd, type GroupClientResult as he, type GroupClientSearchResult as hf, type GroupClientSearchQueryRequest as hg, type GroupMappingRuleSearchResult as hh, type GroupRoleSearchResult as hi, type GroupClientSearchQuerySortRequest as hj, ProcessDefinitionId as hk, ElementId as hl, FormId as hm, DecisionDefinitionId as hn, GlobalListenerId as ho, TenantId as hp, Username as hq, RoleId as hr, GroupId as hs, MappingRuleId as ht, ClientId as hu, ClusterVariableName as hv, Tag as hw, type TagSet as hx, BusinessId as hy, type ElementIdFilterProperty as hz, isLeft as i, AuditLogKey as i$, type JobTypeStatisticsQueryResult as i0, type JobTypeStatisticsItem as i1, type JobWorkerStatisticsQuery as i2, type JobWorkerStatisticsFilter as i3, type JobWorkerStatisticsQueryResult as i4, type JobWorkerStatisticsItem as i5, type JobTimeSeriesStatisticsQuery as i6, type JobTimeSeriesStatisticsFilter as i7, type JobTimeSeriesStatisticsQueryResult as i8, type JobTimeSeriesStatisticsItem as i9, JobStateEnum as iA, JobKindEnum as iB, JobListenerEventTypeEnum as iC, type JobKindFilterProperty as iD, type AdvancedJobKindFilter as iE, type JobListenerEventTypeFilterProperty as iF, type AdvancedJobListenerEventTypeFilter as iG, type JobStateFilterProperty as iH, type AdvancedJobStateFilter as iI, type LongKey as iJ, ProcessInstanceKey as iK, ProcessDefinitionKey as iL, ElementInstanceKey as iM, UserTaskKey as iN, FormKey as iO, VariableKey as iP, type ScopeKey as iQ, IncidentKey as iR, JobKey as iS, DecisionDefinitionKey as iT, DecisionEvaluationInstanceKey as iU, DecisionEvaluationKey as iV, DecisionRequirementsKey as iW, DecisionInstanceKey as iX, BatchOperationKey as iY, type OperationReference as iZ, AgentInstanceKey as i_, type JobErrorStatisticsQuery as ia, type JobErrorStatisticsFilter as ib, type JobErrorStatisticsQueryResult as ic, type JobErrorStatisticsItem as id, type JobActivationRequest as ie, type JobActivationResult as ig, type ActivatedJobResult$1 as ih, type UserTaskProperties as ii, type JobSearchQuery as ij, type JobSearchQuerySortRequest as ik, type JobFilter as il, type JobSearchQueryResult as im, type JobSearchResult as io, type JobFailRequest as ip, type JobErrorRequest$1 as iq, type JobCompletionRequest as ir, type JobResult as is, type JobResultUserTask as it, type JobResultCorrections as iu, type JobResultAdHocSubProcess as iv, type JobResultActivateElement as iw, type JobUpdateRequest as ix, type JobChangeset as iy, TenantFilterEnum as iz, isSdkError as j, type ProcessDefinitionSearchQuerySortRequest as j$, type ProcessDefinitionKeyFilterProperty as j0, type AdvancedProcessDefinitionKeyFilter as j1, type ProcessInstanceKeyFilterProperty as j2, type AdvancedProcessInstanceKeyFilter as j3, type ElementInstanceKeyFilterProperty as j4, type AdvancedElementInstanceKeyFilter as j5, type JobKeyFilterProperty as j6, type AdvancedJobKeyFilter as j7, type DecisionDefinitionKeyFilterProperty as j8, type AdvancedDecisionDefinitionKeyFilter as j9, type MappingRuleSearchQueryRequest as jA, type MappingRuleFilter as jB, type MessageCorrelationRequest as jC, type MessageCorrelationResult as jD, type MessagePublicationRequest as jE, type MessagePublicationResult as jF, type MessageSubscriptionSearchQueryResult as jG, type MessageSubscriptionResult as jH, type MessageSubscriptionSearchQuerySortRequest as jI, type MessageSubscriptionSearchQuery as jJ, type MessageSubscriptionFilter as jK, type CorrelatedMessageSubscriptionSearchQueryResult as jL, type CorrelatedMessageSubscriptionResult as jM, type CorrelatedMessageSubscriptionSearchQuery as jN, type CorrelatedMessageSubscriptionSearchQuerySortRequest as jO, MessageSubscriptionStateEnum as jP, MessageSubscriptionTypeEnum as jQ, type CorrelatedMessageSubscriptionFilter as jR, type MessageSubscriptionTypeFilterProperty as jS, type AdvancedMessageSubscriptionTypeFilter as jT, type MessageSubscriptionStateFilterProperty as jU, type AdvancedMessageSubscriptionStateFilter as jV, type AdvancedMessageSubscriptionKeyFilter as jW, type MessageSubscriptionKeyFilterProperty as jX, MessageSubscriptionKey as jY, MessageKey as jZ, type ProblemDetail as j_, type ScopeKeyFilterProperty as ja, type AdvancedScopeKeyFilter as jb, type VariableKeyFilterProperty as jc, type AdvancedVariableKeyFilter as jd, type DecisionEvaluationInstanceKeyFilterProperty as je, type AdvancedDecisionEvaluationInstanceKeyFilter as jf, type AgentInstanceKeyFilterProperty as jg, type AdvancedAgentInstanceKeyFilter as jh, type AuditLogKeyFilterProperty as ji, type AdvancedAuditLogKeyFilter as jj, type FormKeyFilterProperty as jk, type AdvancedFormKeyFilter as jl, type DecisionEvaluationKeyFilterProperty as jm, type AdvancedDecisionEvaluationKeyFilter as jn, type DecisionRequirementsKeyFilterProperty as jo, type AdvancedDecisionRequirementsKeyFilter as jp, type LicenseResponse as jq, type MappingRuleCreateUpdateRequest as jr, type MappingRuleCreateRequest as js, type MappingRuleUpdateRequest as jt, type MappingRuleCreateUpdateResult as ju, type MappingRuleCreateResult as jv, type MappingRuleUpdateResult as jw, type MappingRuleSearchQueryResult as jx, type MappingRuleResult as jy, type MappingRuleSearchQuerySortRequest as jz, type EnrichedActivatedJob as k, type RoleResult as k$, type ProcessDefinitionSearchQuery as k0, type ProcessDefinitionFilter as k1, type ProcessDefinitionSearchQueryResult as k2, type ProcessDefinitionResult as k3, type ProcessDefinitionElementStatisticsQuery as k4, type ProcessDefinitionElementStatisticsQueryResult as k5, type ProcessElementStatisticsResult as k6, type ProcessDefinitionMessageSubscriptionStatisticsQuery as k7, type ProcessDefinitionMessageSubscriptionStatisticsQueryResult as k8, type ProcessDefinitionMessageSubscriptionStatisticsResult as k9, type ProcessInstanceCallHierarchyEntry as kA, type ProcessInstanceSequenceFlowsQueryResult as kB, type ProcessInstanceSequenceFlowResult as kC, type ProcessInstanceElementStatisticsQueryResult as kD, type ProcessInstanceMigrationInstruction as kE, type MigrateProcessInstanceMappingInstruction as kF, type ProcessInstanceModificationInstruction as kG, type ProcessInstanceModificationActivateInstruction as kH, type ModifyProcessInstanceVariableInstruction as kI, type ProcessInstanceModificationMoveInstruction as kJ, type SourceElementInstruction as kK, type SourceElementIdInstruction as kL, type SourceElementInstanceKeyInstruction as kM, type AncestorScopeInstruction as kN, type DirectAncestorKeyInstruction as kO, type InferredAncestorKeyInstruction as kP, type UseSourceParentKeyInstruction as kQ, type ProcessInstanceModificationTerminateInstruction as kR, type ProcessInstanceModificationTerminateByIdInstruction as kS, type ProcessInstanceModificationTerminateByKeyInstruction as kT, ProcessInstanceStateEnum as kU, type AdvancedProcessInstanceStateFilter as kV, type ProcessInstanceStateFilterProperty as kW, type RoleCreateRequest as kX, type RoleCreateResult as kY, type RoleUpdateRequest as kZ, type RoleUpdateResult as k_, type ProcessDefinitionInstanceStatisticsQuery as ka, type ProcessDefinitionInstanceStatisticsQueryResult as kb, type ProcessDefinitionInstanceStatisticsResult as kc, type ProcessDefinitionInstanceStatisticsQuerySortRequest as kd, type ProcessDefinitionInstanceVersionStatisticsQuery as ke, type ProcessDefinitionInstanceVersionStatisticsFilter as kf, type ProcessDefinitionInstanceVersionStatisticsQueryResult as kg, type ProcessDefinitionInstanceVersionStatisticsResult as kh, type ProcessDefinitionInstanceVersionStatisticsQuerySortRequest as ki, type ProcessInstanceCreationInstruction as kj, type ProcessInstanceCreationInstructionById as kk, type ProcessInstanceCreationInstructionByKey as kl, type ProcessInstanceCreationStartInstruction as km, type ProcessInstanceCreationRuntimeInstruction as kn, type ProcessInstanceCreationTerminateInstruction as ko, type CreateProcessInstanceResult as kp, type ProcessInstanceSearchQuerySortRequest as kq, type ProcessInstanceSearchQuery as kr, type BaseProcessInstanceFilterFields as ks, type ProcessDefinitionStatisticsFilter as kt, type ProcessInstanceFilterFields as ku, type ProcessInstanceFilter as kv, type ProcessInstanceSearchQueryResult as kw, type ProcessInstanceResult as kx, type CancelProcessInstanceRequest as ky, type DeleteProcessInstanceRequest as kz, JobActionReceipt as l, type UserTaskUpdateRequest as l$, type RoleSearchQuerySortRequest as l0, type RoleSearchQueryRequest as l1, type RoleFilter as l2, type RoleSearchQueryResult as l3, type RoleUserResult as l4, type RoleUserSearchResult as l5, type RoleUserSearchQueryRequest as l6, type RoleUserSearchQuerySortRequest as l7, type RoleClientResult as l8, type RoleClientSearchResult as l9, type TenantUpdateResult as lA, type TenantResult as lB, type TenantSearchQuerySortRequest as lC, type TenantSearchQueryRequest as lD, type TenantFilter as lE, type TenantSearchQueryResult as lF, type TenantUserResult as lG, type TenantUserSearchResult as lH, type TenantUserSearchQueryRequest as lI, type TenantUserSearchQuerySortRequest as lJ, type TenantClientResult as lK, type TenantClientSearchResult as lL, type TenantClientSearchQueryRequest as lM, type TenantClientSearchQuerySortRequest as lN, type TenantGroupResult as lO, type TenantGroupSearchResult as lP, type TenantGroupSearchQueryRequest as lQ, type TenantRoleSearchResult as lR, type TenantMappingRuleSearchResult as lS, type TenantGroupSearchQuerySortRequest as lT, type UserTaskSearchQuerySortRequest as lU, type UserTaskSearchQuery as lV, type UserTaskFilter as lW, type UserTaskSearchQueryResult as lX, type UserTaskResult as lY, type UserTaskCompletionRequest as lZ, type UserTaskAssignmentRequest as l_, type RoleClientSearchQueryRequest as la, type RoleClientSearchQuerySortRequest as lb, type RoleGroupResult as lc, type RoleGroupSearchResult as ld, type RoleGroupSearchQueryRequest as le, type RoleMappingRuleSearchResult as lf, type RoleGroupSearchQuerySortRequest as lg, type SearchQueryRequest as lh, type SearchQueryPageRequest as li, type LimitPagination as lj, type OffsetPagination as lk, type CursorForwardPagination as ll, type CursorBackwardPagination as lm, type SearchQueryResponse as ln, SortOrderEnum as lo, type SearchQueryPageResponse as lp, type SignalBroadcastRequest as lq, type SignalBroadcastResult as lr, SignalKey as ls, type UsageMetricsResponse as lt, type UsageMetricsResponseItem as lu, type SystemConfigurationResponse as lv, type JobMetricsConfigurationResponse as lw, type TenantCreateRequest as lx, type TenantCreateResult as ly, type TenantUpdateRequest as lz, JobWorker as m, type DecisionEvaluationKeyExactMatch as m$, type Changeset as m0, type UserTaskVariableSearchQuerySortRequest as m1, type UserTaskVariableSearchQueryRequest as m2, type UserTaskEffectiveVariableSearchQueryRequest as m3, type UserTaskAuditLogSearchQueryRequest as m4, UserTaskStateEnum as m5, type UserTaskVariableFilter as m6, type UserTaskStateFilterProperty as m7, type AdvancedUserTaskStateFilter as m8, type UserTaskAuditLogFilter as m9, type BatchOperationStateExactMatch as mA, type BatchOperationItemStateExactMatch as mB, type ClusterVariableScopeExactMatch as mC, type DecisionInstanceStateExactMatch as mD, type DeploymentKeyExactMatch as mE, type ResourceKeyExactMatch as mF, type ElementInstanceStateExactMatch as mG, type GlobalListenerSourceExactMatch as mH, type GlobalTaskListenerEventTypeExactMatch as mI, type ElementIdExactMatch as mJ, type ProcessDefinitionIdExactMatch as mK, type IncidentErrorTypeExactMatch as mL, type IncidentStateExactMatch as mM, type JobKindExactMatch as mN, type JobListenerEventTypeExactMatch as mO, type JobStateExactMatch as mP, type ProcessDefinitionKeyExactMatch as mQ, type ProcessInstanceKeyExactMatch as mR, type ElementInstanceKeyExactMatch as mS, type JobKeyExactMatch as mT, type DecisionDefinitionKeyExactMatch as mU, type ScopeKeyExactMatch as mV, type VariableKeyExactMatch as mW, type DecisionEvaluationInstanceKeyExactMatch as mX, type AgentInstanceKeyExactMatch as mY, type AuditLogKeyExactMatch as mZ, type FormKeyExactMatch as m_, type UserRequest as ma, type UserCreateResult as mb, type UserUpdateRequest as mc, type UserUpdateResult as md, type UserResult as me, type UserSearchQuerySortRequest as mf, type UserSearchQueryRequest as mg, type UserFilter as mh, type UserSearchResult as mi, type VariableSearchQuerySortRequest as mj, type VariableSearchQuery as mk, type VariableFilter as ml, type VariableSearchQueryResult as mm, type VariableSearchResult as mn, type VariableResult as mo, type VariableResultBase as mp, type VariableValueFilterProperty as mq, type SetVariableRequest as mr, type AgentInstanceStatusExactMatch as ms, type AuditLogEntityKeyExactMatch as mt, type EntityTypeExactMatch as mu, type OperationTypeExactMatch as mv, type CategoryExactMatch as mw, type AuditLogResultExactMatch as mx, type AuditLogActorTypeExactMatch as my, type BatchOperationTypeExactMatch as mz, type JobWorkerConfig as n, type SearchBatchOperationsError as n$, type DecisionRequirementsKeyExactMatch as n0, type MessageSubscriptionTypeExactMatch as n1, type MessageSubscriptionStateExactMatch as n2, type MessageSubscriptionKeyExactMatch as n3, type ProcessInstanceStateExactMatch as n4, type UserTaskStateExactMatch as n5, type GetAgentInstanceData as n6, type GetAgentInstanceErrors as n7, type GetAgentInstanceError as n8, type GetAgentInstanceResponses as n9, type SearchAuthorizationsData as nA, type SearchAuthorizationsErrors as nB, type SearchAuthorizationsError as nC, type SearchAuthorizationsResponses as nD, type SearchAuthorizationsResponse as nE, type DeleteAuthorizationData as nF, type DeleteAuthorizationErrors as nG, type DeleteAuthorizationError as nH, type DeleteAuthorizationResponses as nI, type DeleteAuthorizationResponse as nJ, type GetAuthorizationData as nK, type GetAuthorizationErrors as nL, type GetAuthorizationError as nM, type GetAuthorizationResponses as nN, type GetAuthorizationResponse as nO, type UpdateAuthorizationData as nP, type UpdateAuthorizationErrors as nQ, type UpdateAuthorizationError as nR, type UpdateAuthorizationResponses as nS, type UpdateAuthorizationResponse as nT, type SearchBatchOperationItemsData as nU, type SearchBatchOperationItemsErrors as nV, type SearchBatchOperationItemsError as nW, type SearchBatchOperationItemsResponses as nX, type SearchBatchOperationItemsResponse as nY, type SearchBatchOperationsData as nZ, type SearchBatchOperationsErrors as n_, type GetAgentInstanceResponse as na, type SearchAgentInstancesData as nb, type SearchAgentInstancesErrors as nc, type SearchAgentInstancesError as nd, type SearchAgentInstancesResponses as ne, type SearchAgentInstancesResponse as nf, type SearchAuditLogsData as ng, type SearchAuditLogsErrors as nh, type SearchAuditLogsError as ni, type SearchAuditLogsResponses as nj, type SearchAuditLogsResponse as nk, type GetAuditLogData as nl, type GetAuditLogErrors as nm, type GetAuditLogError as nn, type GetAuditLogResponses as no, type GetAuditLogResponse as np, type GetAuthenticationData as nq, type GetAuthenticationErrors as nr, type GetAuthenticationError as ns, type GetAuthenticationResponses as nt, type GetAuthenticationResponse as nu, type CreateAuthorizationData as nv, type CreateAuthorizationErrors as nw, type CreateAuthorizationError as nx, type CreateAuthorizationResponses as ny, type CreateAuthorizationResponse as nz, type SupportLogger as o, type DeleteTenantClusterVariableErrors as o$, type SearchBatchOperationsResponses as o0, type SearchBatchOperationsResponse as o1, type GetBatchOperationData as o2, type GetBatchOperationErrors as o3, type GetBatchOperationError as o4, type GetBatchOperationResponses as o5, type GetBatchOperationResponse as o6, type CancelBatchOperationData as o7, type CancelBatchOperationErrors as o8, type CancelBatchOperationError as o9, type CreateGlobalClusterVariableResponse as oA, type DeleteGlobalClusterVariableData as oB, type DeleteGlobalClusterVariableErrors as oC, type DeleteGlobalClusterVariableError as oD, type DeleteGlobalClusterVariableResponses as oE, type DeleteGlobalClusterVariableResponse as oF, type GetGlobalClusterVariableData as oG, type GetGlobalClusterVariableErrors as oH, type GetGlobalClusterVariableError as oI, type GetGlobalClusterVariableResponses as oJ, type GetGlobalClusterVariableResponse as oK, type UpdateGlobalClusterVariableData as oL, type UpdateGlobalClusterVariableErrors as oM, type UpdateGlobalClusterVariableError as oN, type UpdateGlobalClusterVariableResponses as oO, type UpdateGlobalClusterVariableResponse as oP, type SearchClusterVariablesData as oQ, type SearchClusterVariablesErrors as oR, type SearchClusterVariablesError as oS, type SearchClusterVariablesResponses as oT, type SearchClusterVariablesResponse as oU, type CreateTenantClusterVariableData as oV, type CreateTenantClusterVariableErrors as oW, type CreateTenantClusterVariableError as oX, type CreateTenantClusterVariableResponses as oY, type CreateTenantClusterVariableResponse as oZ, type DeleteTenantClusterVariableData as o_, type CancelBatchOperationResponses as oa, type CancelBatchOperationResponse as ob, type ResumeBatchOperationData as oc, type ResumeBatchOperationErrors as od, type ResumeBatchOperationError as oe, type ResumeBatchOperationResponses as of, type ResumeBatchOperationResponse as og, type SuspendBatchOperationData as oh, type SuspendBatchOperationErrors as oi, type SuspendBatchOperationError as oj, type SuspendBatchOperationResponses as ok, type SuspendBatchOperationResponse as ol, type PinClockData as om, type PinClockErrors as on, type PinClockError as oo, type PinClockResponses as op, type PinClockResponse as oq, type ResetClockData as or, type ResetClockErrors as os, type ResetClockError as ot, type ResetClockResponses as ou, type ResetClockResponse as ov, type CreateGlobalClusterVariableData as ow, type CreateGlobalClusterVariableErrors as ox, type CreateGlobalClusterVariableError as oy, type CreateGlobalClusterVariableResponses as oz, type ThreadedJob as p, type SearchDecisionRequirementsData as p$, type DeleteTenantClusterVariableError as p0, type DeleteTenantClusterVariableResponses as p1, type DeleteTenantClusterVariableResponse as p2, type GetTenantClusterVariableData as p3, type GetTenantClusterVariableErrors as p4, type GetTenantClusterVariableError as p5, type GetTenantClusterVariableResponses as p6, type GetTenantClusterVariableResponse as p7, type UpdateTenantClusterVariableData as p8, type UpdateTenantClusterVariableErrors as p9, type GetDecisionDefinitionResponses as pA, type GetDecisionDefinitionResponse as pB, type GetDecisionDefinitionXmlData as pC, type GetDecisionDefinitionXmlErrors as pD, type GetDecisionDefinitionXmlError as pE, type GetDecisionDefinitionXmlResponses as pF, type GetDecisionDefinitionXmlResponse as pG, type SearchDecisionInstancesData as pH, type SearchDecisionInstancesErrors as pI, type SearchDecisionInstancesError as pJ, type SearchDecisionInstancesResponses as pK, type SearchDecisionInstancesResponse as pL, type GetDecisionInstanceData as pM, type GetDecisionInstanceErrors as pN, type GetDecisionInstanceError as pO, type GetDecisionInstanceResponses as pP, type GetDecisionInstanceResponse as pQ, type DeleteDecisionInstanceData as pR, type DeleteDecisionInstanceErrors as pS, type DeleteDecisionInstanceError as pT, type DeleteDecisionInstanceResponses as pU, type DeleteDecisionInstanceResponse as pV, type DeleteDecisionInstancesBatchOperationData as pW, type DeleteDecisionInstancesBatchOperationErrors as pX, type DeleteDecisionInstancesBatchOperationError as pY, type DeleteDecisionInstancesBatchOperationResponses as pZ, type DeleteDecisionInstancesBatchOperationResponse as p_, type UpdateTenantClusterVariableError as pa, type UpdateTenantClusterVariableResponses as pb, type UpdateTenantClusterVariableResponse as pc, type EvaluateConditionalsData as pd, type EvaluateConditionalsErrors as pe, type EvaluateConditionalsError as pf, type EvaluateConditionalsResponses as pg, type EvaluateConditionalsResponse as ph, type SearchCorrelatedMessageSubscriptionsData as pi, type SearchCorrelatedMessageSubscriptionsErrors as pj, type SearchCorrelatedMessageSubscriptionsError as pk, type SearchCorrelatedMessageSubscriptionsResponses as pl, type SearchCorrelatedMessageSubscriptionsResponse as pm, type EvaluateDecisionData as pn, type EvaluateDecisionErrors as po, type EvaluateDecisionError as pp, type EvaluateDecisionResponses as pq, type EvaluateDecisionResponse as pr, type SearchDecisionDefinitionsData as ps, type SearchDecisionDefinitionsErrors as pt, type SearchDecisionDefinitionsError as pu, type SearchDecisionDefinitionsResponses as pv, type SearchDecisionDefinitionsResponse as pw, type GetDecisionDefinitionData as px, type GetDecisionDefinitionErrors as py, type GetDecisionDefinitionError as pz, type ThreadedJobHandler as q, type SearchElementInstanceIncidentsResponse as q$, type SearchDecisionRequirementsErrors as q0, type SearchDecisionRequirementsError as q1, type SearchDecisionRequirementsResponses as q2, type SearchDecisionRequirementsResponse as q3, type GetDecisionRequirementsData as q4, type GetDecisionRequirementsErrors as q5, type GetDecisionRequirementsError as q6, type GetDecisionRequirementsResponses as q7, type GetDecisionRequirementsResponse as q8, type GetDecisionRequirementsXmlData as q9, type GetDocumentError as qA, type GetDocumentResponses as qB, type GetDocumentResponse as qC, type CreateDocumentLinkData as qD, type CreateDocumentLinkErrors as qE, type CreateDocumentLinkError as qF, type CreateDocumentLinkResponses as qG, type CreateDocumentLinkResponse as qH, type ActivateAdHocSubProcessActivitiesData as qI, type ActivateAdHocSubProcessActivitiesErrors as qJ, type ActivateAdHocSubProcessActivitiesError as qK, type ActivateAdHocSubProcessActivitiesResponses as qL, type ActivateAdHocSubProcessActivitiesResponse as qM, type SearchElementInstancesData as qN, type SearchElementInstancesErrors as qO, type SearchElementInstancesError as qP, type SearchElementInstancesResponses as qQ, type SearchElementInstancesResponse as qR, type GetElementInstanceData as qS, type GetElementInstanceErrors as qT, type GetElementInstanceError as qU, type GetElementInstanceResponses as qV, type GetElementInstanceResponse as qW, type SearchElementInstanceIncidentsData as qX, type SearchElementInstanceIncidentsErrors as qY, type SearchElementInstanceIncidentsError as qZ, type SearchElementInstanceIncidentsResponses as q_, type GetDecisionRequirementsXmlErrors as qa, type GetDecisionRequirementsXmlError as qb, type GetDecisionRequirementsXmlResponses as qc, type GetDecisionRequirementsXmlResponse as qd, type CreateDeploymentData as qe, type CreateDeploymentErrors as qf, type CreateDeploymentError as qg, type CreateDeploymentResponses as qh, type CreateDeploymentResponse as qi, type CreateDocumentData as qj, type CreateDocumentErrors as qk, type CreateDocumentError as ql, type CreateDocumentResponses as qm, type CreateDocumentResponse as qn, type CreateDocumentsData as qo, type CreateDocumentsErrors as qp, type CreateDocumentsError as qq, type CreateDocumentsResponses as qr, type CreateDocumentsResponse as qs, type DeleteDocumentData as qt, type DeleteDocumentErrors as qu, type DeleteDocumentError as qv, type DeleteDocumentResponses as qw, type DeleteDocumentResponse as qx, type GetDocumentData as qy, type GetDocumentErrors as qz, ThreadedJobWorker as r, type SearchClientsForGroupResponses as r$, type CreateElementInstanceVariablesData as r0, type CreateElementInstanceVariablesErrors as r1, type CreateElementInstanceVariablesError as r2, type CreateElementInstanceVariablesResponses as r3, type CreateElementInstanceVariablesResponse as r4, type EvaluateExpressionData as r5, type EvaluateExpressionErrors as r6, type EvaluateExpressionError as r7, type EvaluateExpressionResponses as r8, type EvaluateExpressionResponse as r9, type CreateGroupErrors as rA, type CreateGroupError as rB, type CreateGroupResponses as rC, type CreateGroupResponse as rD, type SearchGroupsData as rE, type SearchGroupsErrors as rF, type SearchGroupsError as rG, type SearchGroupsResponses as rH, type SearchGroupsResponse as rI, type DeleteGroupData as rJ, type DeleteGroupErrors as rK, type DeleteGroupError as rL, type DeleteGroupResponses as rM, type DeleteGroupResponse as rN, type GetGroupData as rO, type GetGroupErrors as rP, type GetGroupError as rQ, type GetGroupResponses as rR, type GetGroupResponse as rS, type UpdateGroupData as rT, type UpdateGroupErrors as rU, type UpdateGroupError as rV, type UpdateGroupResponses as rW, type UpdateGroupResponse as rX, type SearchClientsForGroupData as rY, type SearchClientsForGroupErrors as rZ, type SearchClientsForGroupError as r_, type CreateGlobalTaskListenerData as ra, type CreateGlobalTaskListenerErrors as rb, type CreateGlobalTaskListenerError as rc, type CreateGlobalTaskListenerResponses as rd, type CreateGlobalTaskListenerResponse as re, type DeleteGlobalTaskListenerData as rf, type DeleteGlobalTaskListenerErrors as rg, type DeleteGlobalTaskListenerError as rh, type DeleteGlobalTaskListenerResponses as ri, type DeleteGlobalTaskListenerResponse as rj, type GetGlobalTaskListenerData as rk, type GetGlobalTaskListenerErrors as rl, type GetGlobalTaskListenerError as rm, type GetGlobalTaskListenerResponses as rn, type GetGlobalTaskListenerResponse as ro, type UpdateGlobalTaskListenerData as rp, type UpdateGlobalTaskListenerErrors as rq, type UpdateGlobalTaskListenerError as rr, type UpdateGlobalTaskListenerResponses as rs, type UpdateGlobalTaskListenerResponse as rt, type SearchGlobalTaskListenersData as ru, type SearchGlobalTaskListenersErrors as rv, type SearchGlobalTaskListenersError as rw, type SearchGlobalTaskListenersResponses as rx, type SearchGlobalTaskListenersResponse as ry, type CreateGroupData as rz, type ThreadedJobWorkerConfig as s, type GetProcessInstanceStatisticsByDefinitionError as s$, type SearchClientsForGroupResponse as s0, type UnassignClientFromGroupData as s1, type UnassignClientFromGroupErrors as s2, type UnassignClientFromGroupError as s3, type UnassignClientFromGroupResponses as s4, type UnassignClientFromGroupResponse as s5, type AssignClientToGroupData as s6, type AssignClientToGroupErrors as s7, type AssignClientToGroupError as s8, type AssignClientToGroupResponses as s9, type UnassignUserFromGroupData as sA, type UnassignUserFromGroupErrors as sB, type UnassignUserFromGroupError as sC, type UnassignUserFromGroupResponses as sD, type UnassignUserFromGroupResponse as sE, type AssignUserToGroupData as sF, type AssignUserToGroupErrors as sG, type AssignUserToGroupError as sH, type AssignUserToGroupResponses as sI, type AssignUserToGroupResponse as sJ, type SearchIncidentsData as sK, type SearchIncidentsErrors as sL, type SearchIncidentsError as sM, type SearchIncidentsResponses as sN, type SearchIncidentsResponse as sO, type GetIncidentData as sP, type GetIncidentErrors as sQ, type GetIncidentError as sR, type GetIncidentResponses as sS, type GetIncidentResponse as sT, type ResolveIncidentData as sU, type ResolveIncidentErrors as sV, type ResolveIncidentError as sW, type ResolveIncidentResponses as sX, type ResolveIncidentResponse as sY, type GetProcessInstanceStatisticsByDefinitionData as sZ, type GetProcessInstanceStatisticsByDefinitionErrors as s_, type AssignClientToGroupResponse as sa, type SearchMappingRulesForGroupData as sb, type SearchMappingRulesForGroupErrors as sc, type SearchMappingRulesForGroupError as sd, type SearchMappingRulesForGroupResponses as se, type SearchMappingRulesForGroupResponse as sf, type UnassignMappingRuleFromGroupData as sg, type UnassignMappingRuleFromGroupErrors as sh, type UnassignMappingRuleFromGroupError as si, type UnassignMappingRuleFromGroupResponses as sj, type UnassignMappingRuleFromGroupResponse as sk, type AssignMappingRuleToGroupData as sl, type AssignMappingRuleToGroupErrors as sm, type AssignMappingRuleToGroupError as sn, type AssignMappingRuleToGroupResponses as so, type AssignMappingRuleToGroupResponse as sp, type SearchRolesForGroupData as sq, type SearchRolesForGroupErrors as sr, type SearchRolesForGroupError as ss, type SearchRolesForGroupResponses as st, type SearchRolesForGroupResponse as su, type SearchUsersForGroupData as sv, type SearchUsersForGroupErrors as sw, type SearchUsersForGroupError as sx, type SearchUsersForGroupResponses as sy, type SearchUsersForGroupResponse as sz, ThreadPool as t, type GetLicenseErrors as t$, type GetProcessInstanceStatisticsByDefinitionResponses as t0, type GetProcessInstanceStatisticsByDefinitionResponse as t1, type GetProcessInstanceStatisticsByErrorData as t2, type GetProcessInstanceStatisticsByErrorErrors as t3, type GetProcessInstanceStatisticsByErrorError as t4, type GetProcessInstanceStatisticsByErrorResponses as t5, type GetProcessInstanceStatisticsByErrorResponse as t6, type ActivateJobsData as t7, type ActivateJobsErrors as t8, type ActivateJobsError as t9, type FailJobResponse as tA, type GetGlobalJobStatisticsData as tB, type GetGlobalJobStatisticsErrors as tC, type GetGlobalJobStatisticsError as tD, type GetGlobalJobStatisticsResponses as tE, type GetGlobalJobStatisticsResponse as tF, type GetJobTypeStatisticsData as tG, type GetJobTypeStatisticsErrors as tH, type GetJobTypeStatisticsError as tI, type GetJobTypeStatisticsResponses as tJ, type GetJobTypeStatisticsResponse as tK, type GetJobWorkerStatisticsData as tL, type GetJobWorkerStatisticsErrors as tM, type GetJobWorkerStatisticsError as tN, type GetJobWorkerStatisticsResponses as tO, type GetJobWorkerStatisticsResponse as tP, type GetJobTimeSeriesStatisticsData as tQ, type GetJobTimeSeriesStatisticsErrors as tR, type GetJobTimeSeriesStatisticsError as tS, type GetJobTimeSeriesStatisticsResponses as tT, type GetJobTimeSeriesStatisticsResponse as tU, type GetJobErrorStatisticsData as tV, type GetJobErrorStatisticsErrors as tW, type GetJobErrorStatisticsError as tX, type GetJobErrorStatisticsResponses as tY, type GetJobErrorStatisticsResponse as tZ, type GetLicenseData as t_, type ActivateJobsResponses as ta, type ActivateJobsResponse as tb, type SearchJobsData as tc, type SearchJobsErrors as td, type SearchJobsError as te, type SearchJobsResponses as tf, type SearchJobsResponse as tg, type UpdateJobData as th, type UpdateJobErrors as ti, type UpdateJobError as tj, type UpdateJobResponses as tk, type UpdateJobResponse as tl, type CompleteJobData as tm, type CompleteJobErrors as tn, type CompleteJobError as to, type CompleteJobResponses as tp, type CompleteJobResponse as tq, type ThrowJobErrorData as tr, type ThrowJobErrorErrors as ts, type ThrowJobErrorError as tt, type ThrowJobErrorResponses as tu, type ThrowJobErrorResponse as tv, type FailJobData as tw, type FailJobErrors as tx, type FailJobError as ty, type FailJobResponses as tz, type CamundaConfig as u, type GetStartProcessFormData as u$, type GetLicenseError as u0, type GetLicenseResponses as u1, type GetLicenseResponse as u2, type CreateMappingRuleData as u3, type CreateMappingRuleErrors as u4, type CreateMappingRuleError as u5, type CreateMappingRuleResponses as u6, type CreateMappingRuleResponse as u7, type SearchMappingRuleData as u8, type SearchMappingRuleErrors as u9, type CorrelateMessageResponses as uA, type CorrelateMessageResponse as uB, type PublishMessageData as uC, type PublishMessageErrors as uD, type PublishMessageError as uE, type PublishMessageResponses as uF, type PublishMessageResponse as uG, type SearchProcessDefinitionsData as uH, type SearchProcessDefinitionsErrors as uI, type SearchProcessDefinitionsError as uJ, type SearchProcessDefinitionsResponses as uK, type SearchProcessDefinitionsResponse as uL, type GetProcessDefinitionMessageSubscriptionStatisticsData as uM, type GetProcessDefinitionMessageSubscriptionStatisticsErrors as uN, type GetProcessDefinitionMessageSubscriptionStatisticsError as uO, type GetProcessDefinitionMessageSubscriptionStatisticsResponses as uP, type GetProcessDefinitionMessageSubscriptionStatisticsResponse as uQ, type GetProcessDefinitionInstanceStatisticsData as uR, type GetProcessDefinitionInstanceStatisticsErrors as uS, type GetProcessDefinitionInstanceStatisticsError as uT, type GetProcessDefinitionInstanceStatisticsResponses as uU, type GetProcessDefinitionInstanceStatisticsResponse as uV, type GetProcessDefinitionData as uW, type GetProcessDefinitionErrors as uX, type GetProcessDefinitionError as uY, type GetProcessDefinitionResponses as uZ, type GetProcessDefinitionResponse as u_, type SearchMappingRuleError as ua, type SearchMappingRuleResponses as ub, type SearchMappingRuleResponse as uc, type DeleteMappingRuleData as ud, type DeleteMappingRuleErrors as ue, type DeleteMappingRuleError as uf, type DeleteMappingRuleResponses as ug, type DeleteMappingRuleResponse as uh, type GetMappingRuleData as ui, type GetMappingRuleErrors as uj, type GetMappingRuleError as uk, type GetMappingRuleResponses as ul, type GetMappingRuleResponse as um, type UpdateMappingRuleData as un, type UpdateMappingRuleErrors as uo, type UpdateMappingRuleError as up, type UpdateMappingRuleResponses as uq, type UpdateMappingRuleResponse as ur, type SearchMessageSubscriptionsData as us, type SearchMessageSubscriptionsErrors as ut, type SearchMessageSubscriptionsError as uu, type SearchMessageSubscriptionsResponses as uv, type SearchMessageSubscriptionsResponse as uw, type CorrelateMessageData as ux, type CorrelateMessageErrors as uy, type CorrelateMessageError as uz, type activateAdHocSubProcessActivitiesInput as v, type GetProcessInstanceCallHierarchyResponse as v$, type GetStartProcessFormErrors as v0, type GetStartProcessFormError as v1, type GetStartProcessFormResponses as v2, type GetStartProcessFormResponse as v3, type GetProcessDefinitionStatisticsData as v4, type GetProcessDefinitionStatisticsErrors as v5, type GetProcessDefinitionStatisticsError as v6, type GetProcessDefinitionStatisticsResponses as v7, type GetProcessDefinitionStatisticsResponse as v8, type GetProcessDefinitionXmlData as v9, type ResolveIncidentsBatchOperationError as vA, type ResolveIncidentsBatchOperationResponses as vB, type ResolveIncidentsBatchOperationResponse as vC, type MigrateProcessInstancesBatchOperationData as vD, type MigrateProcessInstancesBatchOperationErrors as vE, type MigrateProcessInstancesBatchOperationError as vF, type MigrateProcessInstancesBatchOperationResponses as vG, type MigrateProcessInstancesBatchOperationResponse as vH, type ModifyProcessInstancesBatchOperationData as vI, type ModifyProcessInstancesBatchOperationErrors as vJ, type ModifyProcessInstancesBatchOperationError as vK, type ModifyProcessInstancesBatchOperationResponses as vL, type ModifyProcessInstancesBatchOperationResponse as vM, type SearchProcessInstancesData as vN, type SearchProcessInstancesErrors as vO, type SearchProcessInstancesError as vP, type SearchProcessInstancesResponses as vQ, type SearchProcessInstancesResponse as vR, type GetProcessInstanceData as vS, type GetProcessInstanceErrors as vT, type GetProcessInstanceError as vU, type GetProcessInstanceResponses as vV, type GetProcessInstanceResponse as vW, type GetProcessInstanceCallHierarchyData as vX, type GetProcessInstanceCallHierarchyErrors as vY, type GetProcessInstanceCallHierarchyError as vZ, type GetProcessInstanceCallHierarchyResponses as v_, type GetProcessDefinitionXmlErrors as va, type GetProcessDefinitionXmlError as vb, type GetProcessDefinitionXmlResponses as vc, type GetProcessDefinitionXmlResponse as vd, type GetProcessDefinitionInstanceVersionStatisticsData as ve, type GetProcessDefinitionInstanceVersionStatisticsErrors as vf, type GetProcessDefinitionInstanceVersionStatisticsError as vg, type GetProcessDefinitionInstanceVersionStatisticsResponses as vh, type GetProcessDefinitionInstanceVersionStatisticsResponse as vi, type CreateProcessInstanceData as vj, type CreateProcessInstanceErrors as vk, type CreateProcessInstanceError as vl, type CreateProcessInstanceResponses as vm, type CreateProcessInstanceResponse as vn, type CancelProcessInstancesBatchOperationData as vo, type CancelProcessInstancesBatchOperationErrors as vp, type CancelProcessInstancesBatchOperationError as vq, type CancelProcessInstancesBatchOperationResponses as vr, type CancelProcessInstancesBatchOperationResponse as vs, type DeleteProcessInstancesBatchOperationData as vt, type DeleteProcessInstancesBatchOperationErrors as vu, type DeleteProcessInstancesBatchOperationError as vv, type DeleteProcessInstancesBatchOperationResponses as vw, type DeleteProcessInstancesBatchOperationResponse as vx, type ResolveIncidentsBatchOperationData as vy, type ResolveIncidentsBatchOperationErrors as vz, type activateJobsInput as w, type CreateRoleResponses as w$, type CancelProcessInstanceData as w0, type CancelProcessInstanceErrors as w1, type CancelProcessInstanceError as w2, type CancelProcessInstanceResponses as w3, type CancelProcessInstanceResponse as w4, type DeleteProcessInstanceData as w5, type DeleteProcessInstanceErrors as w6, type DeleteProcessInstanceError as w7, type DeleteProcessInstanceResponses as w8, type DeleteProcessInstanceResponse as w9, type GetProcessInstanceStatisticsErrors as wA, type GetProcessInstanceStatisticsError as wB, type GetProcessInstanceStatisticsResponses as wC, type GetProcessInstanceStatisticsResponse as wD, type SearchResourcesData as wE, type SearchResourcesErrors as wF, type SearchResourcesError as wG, type SearchResourcesResponses as wH, type SearchResourcesResponse as wI, type GetResourceData as wJ, type GetResourceErrors as wK, type GetResourceError as wL, type GetResourceResponses as wM, type GetResourceResponse as wN, type GetResourceContentData as wO, type GetResourceContentErrors as wP, type GetResourceContentError as wQ, type GetResourceContentResponses as wR, type GetResourceContentResponse as wS, type DeleteResourceData as wT, type DeleteResourceErrors as wU, type DeleteResourceError as wV, type DeleteResourceResponses as wW, type DeleteResourceResponse2 as wX, type CreateRoleData as wY, type CreateRoleErrors as wZ, type CreateRoleError as w_, type ResolveProcessInstanceIncidentsData as wa, type ResolveProcessInstanceIncidentsErrors as wb, type ResolveProcessInstanceIncidentsError as wc, type ResolveProcessInstanceIncidentsResponses as wd, type ResolveProcessInstanceIncidentsResponse as we, type SearchProcessInstanceIncidentsData as wf, type SearchProcessInstanceIncidentsErrors as wg, type SearchProcessInstanceIncidentsError as wh, type SearchProcessInstanceIncidentsResponses as wi, type SearchProcessInstanceIncidentsResponse as wj, type MigrateProcessInstanceData as wk, type MigrateProcessInstanceErrors as wl, type MigrateProcessInstanceError as wm, type MigrateProcessInstanceResponses as wn, type MigrateProcessInstanceResponse as wo, type ModifyProcessInstanceData as wp, type ModifyProcessInstanceErrors as wq, type ModifyProcessInstanceError as wr, type ModifyProcessInstanceResponses as ws, type ModifyProcessInstanceResponse as wt, type GetProcessInstanceSequenceFlowsData as wu, type GetProcessInstanceSequenceFlowsErrors as wv, type GetProcessInstanceSequenceFlowsError as ww, type GetProcessInstanceSequenceFlowsResponses as wx, type GetProcessInstanceSequenceFlowsResponse as wy, type GetProcessInstanceStatisticsData as wz, type assignClientToGroupInput as x, type AssignRoleToMappingRuleError as x$, type CreateRoleResponse as x0, type SearchRolesData as x1, type SearchRolesErrors as x2, type SearchRolesError as x3, type SearchRolesResponses as x4, type SearchRolesResponse as x5, type DeleteRoleData as x6, type DeleteRoleErrors as x7, type DeleteRoleError as x8, type DeleteRoleResponses as x9, type SearchGroupsForRoleData as xA, type SearchGroupsForRoleErrors as xB, type SearchGroupsForRoleError as xC, type SearchGroupsForRoleResponses as xD, type SearchGroupsForRoleResponse as xE, type UnassignRoleFromGroupData as xF, type UnassignRoleFromGroupErrors as xG, type UnassignRoleFromGroupError as xH, type UnassignRoleFromGroupResponses as xI, type UnassignRoleFromGroupResponse as xJ, type AssignRoleToGroupData as xK, type AssignRoleToGroupErrors as xL, type AssignRoleToGroupError as xM, type AssignRoleToGroupResponses as xN, type AssignRoleToGroupResponse as xO, type SearchMappingRulesForRoleData as xP, type SearchMappingRulesForRoleErrors as xQ, type SearchMappingRulesForRoleError as xR, type SearchMappingRulesForRoleResponses as xS, type SearchMappingRulesForRoleResponse as xT, type UnassignRoleFromMappingRuleData as xU, type UnassignRoleFromMappingRuleErrors as xV, type UnassignRoleFromMappingRuleError as xW, type UnassignRoleFromMappingRuleResponses as xX, type UnassignRoleFromMappingRuleResponse as xY, type AssignRoleToMappingRuleData as xZ, type AssignRoleToMappingRuleErrors as x_, type DeleteRoleResponse as xa, type GetRoleData as xb, type GetRoleErrors as xc, type GetRoleError as xd, type GetRoleResponses as xe, type GetRoleResponse as xf, type UpdateRoleData as xg, type UpdateRoleErrors as xh, type UpdateRoleError as xi, type UpdateRoleResponses as xj, type UpdateRoleResponse as xk, type SearchClientsForRoleData as xl, type SearchClientsForRoleErrors as xm, type SearchClientsForRoleError as xn, type SearchClientsForRoleResponses as xo, type SearchClientsForRoleResponse as xp, type UnassignRoleFromClientData as xq, type UnassignRoleFromClientErrors as xr, type UnassignRoleFromClientError as xs, type UnassignRoleFromClientResponses as xt, type UnassignRoleFromClientResponse as xu, type AssignRoleToClientData as xv, type AssignRoleToClientErrors as xw, type AssignRoleToClientError as xx, type AssignRoleToClientResponses as xy, type AssignRoleToClientResponse as xz, type assignClientToTenantInput as y, type UpdateTenantError as y$, type AssignRoleToMappingRuleResponses as y0, type AssignRoleToMappingRuleResponse as y1, type SearchUsersForRoleData as y2, type SearchUsersForRoleErrors as y3, type SearchUsersForRoleError as y4, type SearchUsersForRoleResponses as y5, type SearchUsersForRoleResponse as y6, type UnassignRoleFromUserData as y7, type UnassignRoleFromUserErrors as y8, type UnassignRoleFromUserError as y9, type GetSystemConfigurationData as yA, type GetSystemConfigurationErrors as yB, type GetSystemConfigurationError as yC, type GetSystemConfigurationResponses as yD, type GetSystemConfigurationResponse as yE, type CreateTenantData as yF, type CreateTenantErrors as yG, type CreateTenantError as yH, type CreateTenantResponses as yI, type CreateTenantResponse as yJ, type SearchTenantsData as yK, type SearchTenantsErrors as yL, type SearchTenantsError as yM, type SearchTenantsResponses as yN, type SearchTenantsResponse as yO, type DeleteTenantData as yP, type DeleteTenantErrors as yQ, type DeleteTenantError as yR, type DeleteTenantResponses as yS, type DeleteTenantResponse as yT, type GetTenantData as yU, type GetTenantErrors as yV, type GetTenantError as yW, type GetTenantResponses as yX, type GetTenantResponse as yY, type UpdateTenantData as yZ, type UpdateTenantErrors as y_, type UnassignRoleFromUserResponses as ya, type UnassignRoleFromUserResponse as yb, type AssignRoleToUserData as yc, type AssignRoleToUserErrors as yd, type AssignRoleToUserError as ye, type AssignRoleToUserResponses as yf, type AssignRoleToUserResponse as yg, type CreateAdminUserData as yh, type CreateAdminUserErrors as yi, type CreateAdminUserError as yj, type CreateAdminUserResponses as yk, type CreateAdminUserResponse as yl, type BroadcastSignalData as ym, type BroadcastSignalErrors as yn, type BroadcastSignalError as yo, type BroadcastSignalResponses as yp, type BroadcastSignalResponse as yq, type GetStatusData as yr, type GetStatusErrors as ys, type GetStatusResponses as yt, type GetStatusResponse as yu, type GetUsageMetricsData as yv, type GetUsageMetricsErrors as yw, type GetUsageMetricsError as yx, type GetUsageMetricsResponses as yy, type GetUsageMetricsResponse as yz, type assignGroupToTenantInput as z, type AssignUserToTenantErrors as z$, type UpdateTenantResponses as z0, type UpdateTenantResponse as z1, type SearchClientsForTenantData as z2, type SearchClientsForTenantResponses as z3, type SearchClientsForTenantResponse as z4, type UnassignClientFromTenantData as z5, type UnassignClientFromTenantErrors as z6, type UnassignClientFromTenantError as z7, type UnassignClientFromTenantResponses as z8, type UnassignClientFromTenantResponse as z9, type AssignMappingRuleToTenantData as zA, type AssignMappingRuleToTenantErrors as zB, type AssignMappingRuleToTenantError as zC, type AssignMappingRuleToTenantResponses as zD, type AssignMappingRuleToTenantResponse as zE, type SearchRolesForTenantData as zF, type SearchRolesForTenantResponses as zG, type SearchRolesForTenantResponse as zH, type UnassignRoleFromTenantData as zI, type UnassignRoleFromTenantErrors as zJ, type UnassignRoleFromTenantError as zK, type UnassignRoleFromTenantResponses as zL, type UnassignRoleFromTenantResponse as zM, type AssignRoleToTenantData as zN, type AssignRoleToTenantErrors as zO, type AssignRoleToTenantError as zP, type AssignRoleToTenantResponses as zQ, type AssignRoleToTenantResponse as zR, type SearchUsersForTenantData as zS, type SearchUsersForTenantResponses as zT, type SearchUsersForTenantResponse as zU, type UnassignUserFromTenantData as zV, type UnassignUserFromTenantErrors as zW, type UnassignUserFromTenantError as zX, type UnassignUserFromTenantResponses as zY, type UnassignUserFromTenantResponse as zZ, type AssignUserToTenantData as z_, type AssignClientToTenantData as za, type AssignClientToTenantErrors as zb, type AssignClientToTenantError as zc, type AssignClientToTenantResponses as zd, type AssignClientToTenantResponse as ze, type SearchGroupIdsForTenantData as zf, type SearchGroupIdsForTenantResponses as zg, type SearchGroupIdsForTenantResponse as zh, type UnassignGroupFromTenantData as zi, type UnassignGroupFromTenantErrors as zj, type UnassignGroupFromTenantError as zk, type UnassignGroupFromTenantResponses as zl, type UnassignGroupFromTenantResponse as zm, type AssignGroupToTenantData as zn, type AssignGroupToTenantErrors as zo, type AssignGroupToTenantError as zp, type AssignGroupToTenantResponses as zq, type AssignGroupToTenantResponse as zr, type SearchMappingRulesForTenantData as zs, type SearchMappingRulesForTenantResponses as zt, type SearchMappingRulesForTenantResponse as zu, type UnassignMappingRuleFromTenantData as zv, type UnassignMappingRuleFromTenantErrors as zw, type UnassignMappingRuleFromTenantError as zx, type UnassignMappingRuleFromTenantResponses as zy, type UnassignMappingRuleFromTenantResponse as zz };
|