sailpoint-api-client 1.7.0 → 1.7.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/beta/.openapi-generator/VERSION +1 -1
- package/beta/README.md +2 -2
- package/beta/api.ts +2593 -256
- package/beta/common.ts +2 -2
- package/beta/package.json +1 -1
- package/dist/beta/api.d.ts +1253 -109
- package/dist/beta/api.js +3218 -425
- package/dist/beta/api.js.map +1 -1
- package/dist/beta/common.js +1 -1
- package/dist/index.spec.js +3 -3
- package/dist/index.spec.js.map +1 -1
- package/dist/v2024/api.d.ts +481 -129
- package/dist/v2024/api.js +3695 -738
- package/dist/v2024/api.js.map +1 -1
- package/dist/v2024/common.js +1 -1
- package/dist/v2025/api.d.ts +5063 -240
- package/dist/v2025/api.js +7783 -1068
- package/dist/v2025/api.js.map +1 -1
- package/dist/v2025/common.js +1 -1
- package/dist/v2026/api.d.ts +23 -15
- package/dist/v2026/api.js +22 -14
- package/dist/v2026/api.js.map +1 -1
- package/dist/v2026/common.js +1 -1
- package/dist/v3/api.d.ts +197 -16
- package/dist/v3/api.js +1279 -289
- package/dist/v3/api.js.map +1 -1
- package/dist/v3/common.js +1 -1
- package/index.spec.ts +3 -3
- package/package.json +15 -2
- package/v2024/.openapi-generator/VERSION +1 -1
- package/v2024/README.md +2 -2
- package/v2024/api.ts +1993 -438
- package/v2024/common.ts +2 -2
- package/v2024/package.json +1 -1
- package/v2025/.openapi-generator/VERSION +1 -1
- package/v2025/README.md +2 -2
- package/v2025/api.ts +8350 -604
- package/v2025/common.ts +2 -2
- package/v2025/package.json +1 -1
- package/v2026/.openapi-generator/VERSION +1 -1
- package/v2026/README.md +2 -2
- package/v2026/api.ts +23 -15
- package/v2026/common.ts +2 -2
- package/v2026/package.json +1 -1
- package/v3/.openapi-generator/VERSION +1 -1
- package/v3/README.md +2 -2
- package/v3/api.ts +689 -114
- package/v3/common.ts +2 -2
- package/v3/package.json +1 -1
package/dist/v2024/api.d.ts
CHANGED
|
@@ -163,6 +163,32 @@ export interface AccessCriteriaV2024 {
|
|
|
163
163
|
*/
|
|
164
164
|
'criteriaList'?: Array<AccessCriteriaCriteriaListInnerV2024>;
|
|
165
165
|
}
|
|
166
|
+
/**
|
|
167
|
+
*
|
|
168
|
+
* @export
|
|
169
|
+
* @interface AccessDurationV2024
|
|
170
|
+
*/
|
|
171
|
+
export interface AccessDurationV2024 {
|
|
172
|
+
/**
|
|
173
|
+
* The numeric value representing the amount of time, which is defined in the **timeUnit**.
|
|
174
|
+
* @type {number}
|
|
175
|
+
* @memberof AccessDurationV2024
|
|
176
|
+
*/
|
|
177
|
+
'value'?: number;
|
|
178
|
+
/**
|
|
179
|
+
* The unit of time that corresponds to the **value**. It defines the scale of the time period.
|
|
180
|
+
* @type {string}
|
|
181
|
+
* @memberof AccessDurationV2024
|
|
182
|
+
*/
|
|
183
|
+
'timeUnit'?: AccessDurationV2024TimeUnitV2024;
|
|
184
|
+
}
|
|
185
|
+
export declare const AccessDurationV2024TimeUnitV2024: {
|
|
186
|
+
readonly Hours: "HOURS";
|
|
187
|
+
readonly Days: "DAYS";
|
|
188
|
+
readonly Weeks: "WEEKS";
|
|
189
|
+
readonly Months: "MONTHS";
|
|
190
|
+
};
|
|
191
|
+
export type AccessDurationV2024TimeUnitV2024 = typeof AccessDurationV2024TimeUnitV2024[keyof typeof AccessDurationV2024TimeUnitV2024];
|
|
166
192
|
/**
|
|
167
193
|
*
|
|
168
194
|
* @export
|
|
@@ -1915,12 +1941,24 @@ export interface AccessProfileV2024 {
|
|
|
1915
1941
|
* @memberof AccessProfileV2024
|
|
1916
1942
|
*/
|
|
1917
1943
|
'segments'?: Array<string> | null;
|
|
1944
|
+
/**
|
|
1945
|
+
*
|
|
1946
|
+
* @type {AttributeDTOListV2024}
|
|
1947
|
+
* @memberof AccessProfileV2024
|
|
1948
|
+
*/
|
|
1949
|
+
'accessModelMetadata'?: AttributeDTOListV2024;
|
|
1918
1950
|
/**
|
|
1919
1951
|
*
|
|
1920
1952
|
* @type {ProvisioningCriteriaLevel1V2024}
|
|
1921
1953
|
* @memberof AccessProfileV2024
|
|
1922
1954
|
*/
|
|
1923
1955
|
'provisioningCriteria'?: ProvisioningCriteriaLevel1V2024 | null;
|
|
1956
|
+
/**
|
|
1957
|
+
*
|
|
1958
|
+
* @type {Array<OwnerReferenceV2024>}
|
|
1959
|
+
* @memberof AccessProfileV2024
|
|
1960
|
+
*/
|
|
1961
|
+
'additionalOwners'?: Array<OwnerReferenceV2024> | null;
|
|
1924
1962
|
}
|
|
1925
1963
|
/**
|
|
1926
1964
|
*
|
|
@@ -2942,13 +2980,14 @@ export interface AccessRequestTrackingV2024 {
|
|
|
2942
2980
|
'accessRequestIds'?: Array<string>;
|
|
2943
2981
|
}
|
|
2944
2982
|
/**
|
|
2945
|
-
* Access request type. Defaults to GRANT_ACCESS. REVOKE_ACCESS type can only have a single Identity ID in the requestedFor field.
|
|
2983
|
+
* Access request type. Defaults to GRANT_ACCESS. REVOKE_ACCESS type can only have a single Identity ID in the requestedFor field. MODIFY_ACCESS type is used for updating access expiration dates or other access modifications.
|
|
2946
2984
|
* @export
|
|
2947
2985
|
* @enum {string}
|
|
2948
2986
|
*/
|
|
2949
2987
|
export declare const AccessRequestTypeV2024: {
|
|
2950
2988
|
readonly GrantAccess: "GRANT_ACCESS";
|
|
2951
2989
|
readonly RevokeAccess: "REVOKE_ACCESS";
|
|
2990
|
+
readonly ModifyAccess: "MODIFY_ACCESS";
|
|
2952
2991
|
};
|
|
2953
2992
|
export type AccessRequestTypeV2024 = typeof AccessRequestTypeV2024[keyof typeof AccessRequestTypeV2024];
|
|
2954
2993
|
/**
|
|
@@ -6791,7 +6830,10 @@ export interface AttributeMappingsAllOfTargetV2024 {
|
|
|
6791
6830
|
'sourceId'?: string;
|
|
6792
6831
|
}
|
|
6793
6832
|
export declare const AttributeMappingsAllOfTargetV2024TypeV2024: {
|
|
6833
|
+
readonly Account: "ACCOUNT";
|
|
6794
6834
|
readonly Identity: "IDENTITY";
|
|
6835
|
+
readonly OwnerAccount: "OWNER_ACCOUNT";
|
|
6836
|
+
readonly OwnerIdentity: "OWNER_IDENTITY";
|
|
6795
6837
|
};
|
|
6796
6838
|
export type AttributeMappingsAllOfTargetV2024TypeV2024 = typeof AttributeMappingsAllOfTargetV2024TypeV2024[keyof typeof AttributeMappingsAllOfTargetV2024TypeV2024];
|
|
6797
6839
|
/**
|
|
@@ -10898,6 +10940,12 @@ export interface CompletedApprovalV2024 {
|
|
|
10898
10940
|
* @memberof CompletedApprovalV2024
|
|
10899
10941
|
*/
|
|
10900
10942
|
'privilegeLevel'?: string | null;
|
|
10943
|
+
/**
|
|
10944
|
+
*
|
|
10945
|
+
* @type {PendingApprovalMaxPermittedAccessDurationV2024}
|
|
10946
|
+
* @memberof CompletedApprovalV2024
|
|
10947
|
+
*/
|
|
10948
|
+
'maxPermittedAccessDuration'?: PendingApprovalMaxPermittedAccessDurationV2024 | null;
|
|
10901
10949
|
}
|
|
10902
10950
|
/**
|
|
10903
10951
|
* The status after completion.
|
|
@@ -14188,6 +14236,18 @@ export interface EntitlementAccessRequestConfigV2024 {
|
|
|
14188
14236
|
* @memberof EntitlementAccessRequestConfigV2024
|
|
14189
14237
|
*/
|
|
14190
14238
|
'reauthorizationRequired'?: boolean;
|
|
14239
|
+
/**
|
|
14240
|
+
* If true, then remove date or sunset date is required in access request of the entitlement.
|
|
14241
|
+
* @type {boolean}
|
|
14242
|
+
* @memberof EntitlementAccessRequestConfigV2024
|
|
14243
|
+
*/
|
|
14244
|
+
'requireEndDate'?: boolean;
|
|
14245
|
+
/**
|
|
14246
|
+
*
|
|
14247
|
+
* @type {PendingApprovalMaxPermittedAccessDurationV2024}
|
|
14248
|
+
* @memberof EntitlementAccessRequestConfigV2024
|
|
14249
|
+
*/
|
|
14250
|
+
'maxPermittedAccessDuration'?: PendingApprovalMaxPermittedAccessDurationV2024 | null;
|
|
14191
14251
|
}
|
|
14192
14252
|
/**
|
|
14193
14253
|
*
|
|
@@ -17888,6 +17948,12 @@ export interface GetRoleAssignments200ResponseInnerV2024 {
|
|
|
17888
17948
|
* @memberof GetRoleAssignments200ResponseInnerV2024
|
|
17889
17949
|
*/
|
|
17890
17950
|
'addedDate'?: string;
|
|
17951
|
+
/**
|
|
17952
|
+
* Date that the assignment will be removed
|
|
17953
|
+
* @type {string}
|
|
17954
|
+
* @memberof GetRoleAssignments200ResponseInnerV2024
|
|
17955
|
+
*/
|
|
17956
|
+
'removeDate'?: string | null;
|
|
17891
17957
|
/**
|
|
17892
17958
|
* Comments added by the user when the assignment was made
|
|
17893
17959
|
* @type {string}
|
|
@@ -17924,12 +17990,6 @@ export interface GetRoleAssignments200ResponseInnerV2024 {
|
|
|
17924
17990
|
* @memberof GetRoleAssignments200ResponseInnerV2024
|
|
17925
17991
|
*/
|
|
17926
17992
|
'accountTargets'?: Array<RoleTargetDtoV2024>;
|
|
17927
|
-
/**
|
|
17928
|
-
* Date that the assignment will be removed
|
|
17929
|
-
* @type {string}
|
|
17930
|
-
* @memberof GetRoleAssignments200ResponseInnerV2024
|
|
17931
|
-
*/
|
|
17932
|
-
'removeDate'?: string | null;
|
|
17933
17993
|
}
|
|
17934
17994
|
/**
|
|
17935
17995
|
*
|
|
@@ -21019,12 +21079,8 @@ export interface JsonPatchOperationV2024 {
|
|
|
21019
21079
|
'value'?: UpdateMultiHostSourcesRequestInnerValueV2024;
|
|
21020
21080
|
}
|
|
21021
21081
|
export declare const JsonPatchOperationV2024OpV2024: {
|
|
21022
|
-
readonly Add: "add";
|
|
21023
21082
|
readonly Remove: "remove";
|
|
21024
21083
|
readonly Replace: "replace";
|
|
21025
|
-
readonly Move: "move";
|
|
21026
|
-
readonly Copy: "copy";
|
|
21027
|
-
readonly Test: "test";
|
|
21028
21084
|
};
|
|
21029
21085
|
export type JsonPatchOperationV2024OpV2024 = typeof JsonPatchOperationV2024OpV2024[keyof typeof JsonPatchOperationV2024OpV2024];
|
|
21030
21086
|
/**
|
|
@@ -23420,13 +23476,21 @@ export interface ManagedClusterTypeV2024 {
|
|
|
23420
23476
|
'managedProcessIds'?: Array<string>;
|
|
23421
23477
|
}
|
|
23422
23478
|
/**
|
|
23423
|
-
* The Type of Cluster
|
|
23479
|
+
* The Type of Cluster: * `idn` - IDN VA type * `iai` - IAI harvester VA * `spConnectCluster` - Saas 2.0 connector cluster (this should be one per org) * `sqsCluster` - This should be unused * `das-rc` - Data Access Security Resources Collector * `das-pc` - Data Access Security Permissions Collector * `das-dc` - Data Access Security Data Classification Collector * `pag` - Privilege Action Gateway VA * `das-am` - Data Access Security Activity Monitor * `standard` - Standard Cluster type for running multiple products
|
|
23424
23480
|
* @export
|
|
23425
23481
|
* @enum {string}
|
|
23426
23482
|
*/
|
|
23427
23483
|
export declare const ManagedClusterTypesV2024: {
|
|
23428
23484
|
readonly Idn: "idn";
|
|
23429
23485
|
readonly Iai: "iai";
|
|
23486
|
+
readonly SpConnectCluster: "spConnectCluster";
|
|
23487
|
+
readonly SqsCluster: "sqsCluster";
|
|
23488
|
+
readonly DasRc: "das-rc";
|
|
23489
|
+
readonly DasPc: "das-pc";
|
|
23490
|
+
readonly DasDc: "das-dc";
|
|
23491
|
+
readonly Pag: "pag";
|
|
23492
|
+
readonly DasAm: "das-am";
|
|
23493
|
+
readonly Standard: "standard";
|
|
23430
23494
|
};
|
|
23431
23495
|
export type ManagedClusterTypesV2024 = typeof ManagedClusterTypesV2024[keyof typeof ManagedClusterTypesV2024];
|
|
23432
23496
|
/**
|
|
@@ -27875,6 +27939,32 @@ export declare const PendingApprovalActionV2024: {
|
|
|
27875
27939
|
readonly Forwarded: "FORWARDED";
|
|
27876
27940
|
};
|
|
27877
27941
|
export type PendingApprovalActionV2024 = typeof PendingApprovalActionV2024[keyof typeof PendingApprovalActionV2024];
|
|
27942
|
+
/**
|
|
27943
|
+
* The maximum duration for which the access is permitted.
|
|
27944
|
+
* @export
|
|
27945
|
+
* @interface PendingApprovalMaxPermittedAccessDurationV2024
|
|
27946
|
+
*/
|
|
27947
|
+
export interface PendingApprovalMaxPermittedAccessDurationV2024 {
|
|
27948
|
+
/**
|
|
27949
|
+
* The numeric value of the duration.
|
|
27950
|
+
* @type {number}
|
|
27951
|
+
* @memberof PendingApprovalMaxPermittedAccessDurationV2024
|
|
27952
|
+
*/
|
|
27953
|
+
'value'?: number;
|
|
27954
|
+
/**
|
|
27955
|
+
* The time unit for the duration.
|
|
27956
|
+
* @type {string}
|
|
27957
|
+
* @memberof PendingApprovalMaxPermittedAccessDurationV2024
|
|
27958
|
+
*/
|
|
27959
|
+
'timeUnit'?: PendingApprovalMaxPermittedAccessDurationV2024TimeUnitV2024;
|
|
27960
|
+
}
|
|
27961
|
+
export declare const PendingApprovalMaxPermittedAccessDurationV2024TimeUnitV2024: {
|
|
27962
|
+
readonly Hours: "HOURS";
|
|
27963
|
+
readonly Days: "DAYS";
|
|
27964
|
+
readonly Weeks: "WEEKS";
|
|
27965
|
+
readonly Months: "MONTHS";
|
|
27966
|
+
};
|
|
27967
|
+
export type PendingApprovalMaxPermittedAccessDurationV2024TimeUnitV2024 = typeof PendingApprovalMaxPermittedAccessDurationV2024TimeUnitV2024[keyof typeof PendingApprovalMaxPermittedAccessDurationV2024TimeUnitV2024];
|
|
27878
27968
|
/**
|
|
27879
27969
|
* Access item owner\'s identity.
|
|
27880
27970
|
* @export
|
|
@@ -28050,6 +28140,12 @@ export interface PendingApprovalV2024 {
|
|
|
28050
28140
|
* @memberof PendingApprovalV2024
|
|
28051
28141
|
*/
|
|
28052
28142
|
'privilegeLevel'?: string | null;
|
|
28143
|
+
/**
|
|
28144
|
+
*
|
|
28145
|
+
* @type {PendingApprovalMaxPermittedAccessDurationV2024}
|
|
28146
|
+
* @memberof PendingApprovalV2024
|
|
28147
|
+
*/
|
|
28148
|
+
'maxPermittedAccessDuration'?: PendingApprovalMaxPermittedAccessDurationV2024 | null;
|
|
28053
28149
|
}
|
|
28054
28150
|
/**
|
|
28055
28151
|
* Simplified DTO for the Permission objects stored in SailPoint\'s database. The data is aggregated from customer systems and is free-form, so its appearance can vary largely between different clients/customers.
|
|
@@ -30034,6 +30130,18 @@ export interface RequestabilityForRoleV2024 {
|
|
|
30034
30130
|
* @memberof RequestabilityForRoleV2024
|
|
30035
30131
|
*/
|
|
30036
30132
|
'reauthorizationRequired'?: boolean | null;
|
|
30133
|
+
/**
|
|
30134
|
+
* Indicates whether the requester of the containing object must provide access end date.
|
|
30135
|
+
* @type {boolean}
|
|
30136
|
+
* @memberof RequestabilityForRoleV2024
|
|
30137
|
+
*/
|
|
30138
|
+
'requireEndDate'?: boolean | null;
|
|
30139
|
+
/**
|
|
30140
|
+
*
|
|
30141
|
+
* @type {AccessDurationV2024}
|
|
30142
|
+
* @memberof RequestabilityForRoleV2024
|
|
30143
|
+
*/
|
|
30144
|
+
'maxPermittedAccessDuration'?: AccessDurationV2024 | null;
|
|
30037
30145
|
/**
|
|
30038
30146
|
* List describing the steps in approving the request
|
|
30039
30147
|
* @type {Array<ApprovalSchemeForRoleV2024>}
|
|
@@ -30065,6 +30173,18 @@ export interface RequestabilityV2024 {
|
|
|
30065
30173
|
* @memberof RequestabilityV2024
|
|
30066
30174
|
*/
|
|
30067
30175
|
'reauthorizationRequired'?: boolean | null;
|
|
30176
|
+
/**
|
|
30177
|
+
* Indicates whether the requester of the containing object must provide access end date.
|
|
30178
|
+
* @type {boolean}
|
|
30179
|
+
* @memberof RequestabilityV2024
|
|
30180
|
+
*/
|
|
30181
|
+
'requireEndDate'?: boolean | null;
|
|
30182
|
+
/**
|
|
30183
|
+
*
|
|
30184
|
+
* @type {AccessDurationV2024}
|
|
30185
|
+
* @memberof RequestabilityV2024
|
|
30186
|
+
*/
|
|
30187
|
+
'maxPermittedAccessDuration'?: AccessDurationV2024 | null;
|
|
30068
30188
|
/**
|
|
30069
30189
|
* List describing the steps involved in approving the request.
|
|
30070
30190
|
* @type {Array<AccessProfileApprovalSchemeV2024>}
|
|
@@ -31593,6 +31713,12 @@ export interface RoleAssignmentRefV2024 {
|
|
|
31593
31713
|
* @memberof RoleAssignmentRefV2024
|
|
31594
31714
|
*/
|
|
31595
31715
|
'addedDate'?: string;
|
|
31716
|
+
/**
|
|
31717
|
+
* Date that the assignment will be removed
|
|
31718
|
+
* @type {string}
|
|
31719
|
+
* @memberof RoleAssignmentRefV2024
|
|
31720
|
+
*/
|
|
31721
|
+
'removeDate'?: string | null;
|
|
31596
31722
|
}
|
|
31597
31723
|
/**
|
|
31598
31724
|
* Type which indicates how a particular Identity obtained a particular Role
|
|
@@ -33091,6 +33217,25 @@ export interface RoleMiningEntitlementV2024 {
|
|
|
33091
33217
|
*/
|
|
33092
33218
|
'sourceUsagePercent'?: number | null;
|
|
33093
33219
|
}
|
|
33220
|
+
/**
|
|
33221
|
+
*
|
|
33222
|
+
* @export
|
|
33223
|
+
* @interface RoleMiningIdentityDistributionDistributionInnerV2024
|
|
33224
|
+
*/
|
|
33225
|
+
export interface RoleMiningIdentityDistributionDistributionInnerV2024 {
|
|
33226
|
+
/**
|
|
33227
|
+
* The attribute value that identities are grouped by
|
|
33228
|
+
* @type {string}
|
|
33229
|
+
* @memberof RoleMiningIdentityDistributionDistributionInnerV2024
|
|
33230
|
+
*/
|
|
33231
|
+
'attributeValue'?: string;
|
|
33232
|
+
/**
|
|
33233
|
+
* The number of identities that have this attribute value
|
|
33234
|
+
* @type {number}
|
|
33235
|
+
* @memberof RoleMiningIdentityDistributionDistributionInnerV2024
|
|
33236
|
+
*/
|
|
33237
|
+
'count'?: number;
|
|
33238
|
+
}
|
|
33094
33239
|
/**
|
|
33095
33240
|
*
|
|
33096
33241
|
* @export
|
|
@@ -33105,12 +33250,10 @@ export interface RoleMiningIdentityDistributionV2024 {
|
|
|
33105
33250
|
'attributeName'?: string;
|
|
33106
33251
|
/**
|
|
33107
33252
|
*
|
|
33108
|
-
* @type {Array<
|
|
33253
|
+
* @type {Array<RoleMiningIdentityDistributionDistributionInnerV2024>}
|
|
33109
33254
|
* @memberof RoleMiningIdentityDistributionV2024
|
|
33110
33255
|
*/
|
|
33111
|
-
'distribution'?: Array<
|
|
33112
|
-
[key: string]: any;
|
|
33113
|
-
}>;
|
|
33256
|
+
'distribution'?: Array<RoleMiningIdentityDistributionDistributionInnerV2024>;
|
|
33114
33257
|
}
|
|
33115
33258
|
/**
|
|
33116
33259
|
*
|
|
@@ -34061,11 +34204,11 @@ export interface RoleTargetDtoV2024 {
|
|
|
34061
34204
|
*/
|
|
34062
34205
|
'accountInfo'?: AccountInfoDtoV2024;
|
|
34063
34206
|
/**
|
|
34064
|
-
*
|
|
34065
|
-
* @type {
|
|
34207
|
+
*
|
|
34208
|
+
* @type {BaseReferenceDtoV2024}
|
|
34066
34209
|
* @memberof RoleTargetDtoV2024
|
|
34067
34210
|
*/
|
|
34068
|
-
'
|
|
34211
|
+
'role'?: BaseReferenceDtoV2024;
|
|
34069
34212
|
}
|
|
34070
34213
|
/**
|
|
34071
34214
|
* A Role
|
|
@@ -38198,7 +38341,7 @@ export interface SourceAppPatchDtoV2024 {
|
|
|
38198
38341
|
*/
|
|
38199
38342
|
'enabled'?: boolean;
|
|
38200
38343
|
/**
|
|
38201
|
-
* True if the
|
|
38344
|
+
* True if the app allows access request
|
|
38202
38345
|
* @type {boolean}
|
|
38203
38346
|
* @memberof SourceAppPatchDtoV2024
|
|
38204
38347
|
*/
|
|
@@ -38216,7 +38359,7 @@ export interface SourceAppPatchDtoV2024 {
|
|
|
38216
38359
|
*/
|
|
38217
38360
|
'matchAllAccounts'?: boolean;
|
|
38218
38361
|
/**
|
|
38219
|
-
* True if the
|
|
38362
|
+
* True if the app is visible in the request center
|
|
38220
38363
|
* @type {boolean}
|
|
38221
38364
|
* @memberof SourceAppPatchDtoV2024
|
|
38222
38365
|
*/
|
|
@@ -38283,7 +38426,7 @@ export interface SourceAppV2024 {
|
|
|
38283
38426
|
*/
|
|
38284
38427
|
'enabled'?: boolean;
|
|
38285
38428
|
/**
|
|
38286
|
-
* True if the
|
|
38429
|
+
* True if the app allows access request
|
|
38287
38430
|
* @type {boolean}
|
|
38288
38431
|
* @memberof SourceAppV2024
|
|
38289
38432
|
*/
|
|
@@ -38301,7 +38444,7 @@ export interface SourceAppV2024 {
|
|
|
38301
38444
|
*/
|
|
38302
38445
|
'matchAllAccounts'?: boolean;
|
|
38303
38446
|
/**
|
|
38304
|
-
* True if the
|
|
38447
|
+
* True if the app is visible in the request center
|
|
38305
38448
|
* @type {boolean}
|
|
38306
38449
|
* @memberof SourceAppV2024
|
|
38307
38450
|
*/
|
|
@@ -42510,13 +42653,13 @@ export interface UserAppV2024 {
|
|
|
42510
42653
|
*/
|
|
42511
42654
|
'useForPasswordManagement'?: boolean;
|
|
42512
42655
|
/**
|
|
42513
|
-
* True if the
|
|
42656
|
+
* True if the app allows access request
|
|
42514
42657
|
* @type {boolean}
|
|
42515
42658
|
* @memberof UserAppV2024
|
|
42516
42659
|
*/
|
|
42517
42660
|
'provisionRequestEnabled'?: boolean;
|
|
42518
42661
|
/**
|
|
42519
|
-
* True if the
|
|
42662
|
+
* True if the app is visible in the request center
|
|
42520
42663
|
* @type {boolean}
|
|
42521
42664
|
* @memberof UserAppV2024
|
|
42522
42665
|
*/
|
|
@@ -44266,6 +44409,23 @@ export interface WorkgroupMemberDeleteItemV2024 {
|
|
|
44266
44409
|
* @export
|
|
44267
44410
|
*/
|
|
44268
44411
|
export declare const AccessModelMetadataV2024ApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
44412
|
+
/**
|
|
44413
|
+
* Create a new Access Model Metadata Attribute.
|
|
44414
|
+
* @summary Create access model metadata attribute
|
|
44415
|
+
* @param {AttributeDTOV2024} attributeDTOV2024 Attribute to create
|
|
44416
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
44417
|
+
* @throws {RequiredError}
|
|
44418
|
+
*/
|
|
44419
|
+
createAccessModelMetadataAttribute: (attributeDTOV2024: AttributeDTOV2024, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
44420
|
+
/**
|
|
44421
|
+
* Create a new value for an existing Access Model Metadata Attribute.
|
|
44422
|
+
* @summary Create access model metadata value
|
|
44423
|
+
* @param {string} key Technical name of the Attribute.
|
|
44424
|
+
* @param {AttributeValueDTOV2024} attributeValueDTOV2024 Attribute value to create
|
|
44425
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
44426
|
+
* @throws {RequiredError}
|
|
44427
|
+
*/
|
|
44428
|
+
createAccessModelMetadataAttributeValue: (key: string, attributeValueDTOV2024: AttributeValueDTOV2024, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
44269
44429
|
/**
|
|
44270
44430
|
* Get single Access Model Metadata Attribute
|
|
44271
44431
|
* @summary Get access model metadata attribute
|
|
@@ -44286,32 +44446,66 @@ export declare const AccessModelMetadataV2024ApiAxiosParamCreator: (configuratio
|
|
|
44286
44446
|
/**
|
|
44287
44447
|
* Get a list of Access Model Metadata Attributes
|
|
44288
44448
|
* @summary List access model metadata attributes
|
|
44289
|
-
* @param {string} [filters] Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **key**: *eq* **name**: *eq* **type**: *eq* **status**: *eq* **objectTypes**: *eq*
|
|
44449
|
+
* @param {string} [filters] Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **key**: *eq* **name**: *eq* **type**: *eq* **status**: *eq* **objectTypes**: *eq* Supported composite operators are *and, or*
|
|
44290
44450
|
* @param {string} [sorters] Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) Sorting is supported for the following fields: **name, key**
|
|
44291
|
-
* @param {number} [offset] Offset into the full result set. Usually specified with *limit* to paginate through the results. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
44292
44451
|
* @param {number} [limit] Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
44293
44452
|
* @param {boolean} [count] If *true* it will populate the *X-Total-Count* response header with the number of results that would be returned if *limit* and *offset* were ignored. Since requesting a total count can have a performance impact, it is recommended not to send **count=true** if that value will not be used. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
44294
44453
|
* @param {*} [axiosOptions] Override http request option.
|
|
44295
44454
|
* @throws {RequiredError}
|
|
44296
44455
|
*/
|
|
44297
|
-
listAccessModelMetadataAttribute: (filters?: string, sorters?: string,
|
|
44456
|
+
listAccessModelMetadataAttribute: (filters?: string, sorters?: string, limit?: number, count?: boolean, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
44298
44457
|
/**
|
|
44299
44458
|
* Get a list of Access Model Metadata Attribute Values
|
|
44300
44459
|
* @summary List access model metadata values
|
|
44301
44460
|
* @param {string} key Technical name of the Attribute.
|
|
44302
|
-
* @param {number} [offset] Offset into the full result set. Usually specified with *limit* to paginate through the results. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
44303
44461
|
* @param {number} [limit] Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
44304
44462
|
* @param {boolean} [count] If *true* it will populate the *X-Total-Count* response header with the number of results that would be returned if *limit* and *offset* were ignored. Since requesting a total count can have a performance impact, it is recommended not to send **count=true** if that value will not be used. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
44305
44463
|
* @param {*} [axiosOptions] Override http request option.
|
|
44306
44464
|
* @throws {RequiredError}
|
|
44307
44465
|
*/
|
|
44308
|
-
listAccessModelMetadataAttributeValue: (key: string,
|
|
44466
|
+
listAccessModelMetadataAttributeValue: (key: string, limit?: number, count?: boolean, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
44467
|
+
/**
|
|
44468
|
+
* Update an existing Access Model Metadata Attribute. The following fields are patchable: **name**, **description**, **multiselect**, **values**
|
|
44469
|
+
* @summary Update access model metadata attribute
|
|
44470
|
+
* @param {string} key Technical name of the Attribute.
|
|
44471
|
+
* @param {Array<JsonPatchOperationV2024>} jsonPatchOperationV2024 JSON Patch array to apply
|
|
44472
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
44473
|
+
* @throws {RequiredError}
|
|
44474
|
+
*/
|
|
44475
|
+
updateAccessModelMetadataAttribute: (key: string, jsonPatchOperationV2024: Array<JsonPatchOperationV2024>, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
44476
|
+
/**
|
|
44477
|
+
* Update an existing Access Model Metadata Attribute Value. The following fields are patchable: **name**
|
|
44478
|
+
* @summary Update access model metadata value
|
|
44479
|
+
* @param {string} key Technical name of the Attribute.
|
|
44480
|
+
* @param {string} value Technical name of the Attribute value.
|
|
44481
|
+
* @param {Array<JsonPatchOperationV2024>} jsonPatchOperationV2024 JSON Patch array to apply
|
|
44482
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
44483
|
+
* @throws {RequiredError}
|
|
44484
|
+
*/
|
|
44485
|
+
updateAccessModelMetadataAttributeValue: (key: string, value: string, jsonPatchOperationV2024: Array<JsonPatchOperationV2024>, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
44309
44486
|
};
|
|
44310
44487
|
/**
|
|
44311
44488
|
* AccessModelMetadataV2024Api - functional programming interface
|
|
44312
44489
|
* @export
|
|
44313
44490
|
*/
|
|
44314
44491
|
export declare const AccessModelMetadataV2024ApiFp: (configuration?: Configuration) => {
|
|
44492
|
+
/**
|
|
44493
|
+
* Create a new Access Model Metadata Attribute.
|
|
44494
|
+
* @summary Create access model metadata attribute
|
|
44495
|
+
* @param {AttributeDTOV2024} attributeDTOV2024 Attribute to create
|
|
44496
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
44497
|
+
* @throws {RequiredError}
|
|
44498
|
+
*/
|
|
44499
|
+
createAccessModelMetadataAttribute(attributeDTOV2024: AttributeDTOV2024, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AttributeDTOV2024>>;
|
|
44500
|
+
/**
|
|
44501
|
+
* Create a new value for an existing Access Model Metadata Attribute.
|
|
44502
|
+
* @summary Create access model metadata value
|
|
44503
|
+
* @param {string} key Technical name of the Attribute.
|
|
44504
|
+
* @param {AttributeValueDTOV2024} attributeValueDTOV2024 Attribute value to create
|
|
44505
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
44506
|
+
* @throws {RequiredError}
|
|
44507
|
+
*/
|
|
44508
|
+
createAccessModelMetadataAttributeValue(key: string, attributeValueDTOV2024: AttributeValueDTOV2024, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AttributeValueDTOV2024>>;
|
|
44315
44509
|
/**
|
|
44316
44510
|
* Get single Access Model Metadata Attribute
|
|
44317
44511
|
* @summary Get access model metadata attribute
|
|
@@ -44332,32 +44526,65 @@ export declare const AccessModelMetadataV2024ApiFp: (configuration?: Configurati
|
|
|
44332
44526
|
/**
|
|
44333
44527
|
* Get a list of Access Model Metadata Attributes
|
|
44334
44528
|
* @summary List access model metadata attributes
|
|
44335
|
-
* @param {string} [filters] Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **key**: *eq* **name**: *eq* **type**: *eq* **status**: *eq* **objectTypes**: *eq*
|
|
44529
|
+
* @param {string} [filters] Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **key**: *eq* **name**: *eq* **type**: *eq* **status**: *eq* **objectTypes**: *eq* Supported composite operators are *and, or*
|
|
44336
44530
|
* @param {string} [sorters] Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) Sorting is supported for the following fields: **name, key**
|
|
44337
|
-
* @param {number} [offset] Offset into the full result set. Usually specified with *limit* to paginate through the results. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
44338
44531
|
* @param {number} [limit] Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
44339
44532
|
* @param {boolean} [count] If *true* it will populate the *X-Total-Count* response header with the number of results that would be returned if *limit* and *offset* were ignored. Since requesting a total count can have a performance impact, it is recommended not to send **count=true** if that value will not be used. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
44340
44533
|
* @param {*} [axiosOptions] Override http request option.
|
|
44341
44534
|
* @throws {RequiredError}
|
|
44342
44535
|
*/
|
|
44343
|
-
listAccessModelMetadataAttribute(filters?: string, sorters?: string,
|
|
44536
|
+
listAccessModelMetadataAttribute(filters?: string, sorters?: string, limit?: number, count?: boolean, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<AttributeDTOV2024>>>;
|
|
44344
44537
|
/**
|
|
44345
44538
|
* Get a list of Access Model Metadata Attribute Values
|
|
44346
44539
|
* @summary List access model metadata values
|
|
44347
44540
|
* @param {string} key Technical name of the Attribute.
|
|
44348
|
-
* @param {number} [offset] Offset into the full result set. Usually specified with *limit* to paginate through the results. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
44349
44541
|
* @param {number} [limit] Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
44350
44542
|
* @param {boolean} [count] If *true* it will populate the *X-Total-Count* response header with the number of results that would be returned if *limit* and *offset* were ignored. Since requesting a total count can have a performance impact, it is recommended not to send **count=true** if that value will not be used. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
44351
44543
|
* @param {*} [axiosOptions] Override http request option.
|
|
44352
44544
|
* @throws {RequiredError}
|
|
44353
44545
|
*/
|
|
44354
|
-
listAccessModelMetadataAttributeValue(key: string,
|
|
44546
|
+
listAccessModelMetadataAttributeValue(key: string, limit?: number, count?: boolean, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<AttributeValueDTOV2024>>>;
|
|
44547
|
+
/**
|
|
44548
|
+
* Update an existing Access Model Metadata Attribute. The following fields are patchable: **name**, **description**, **multiselect**, **values**
|
|
44549
|
+
* @summary Update access model metadata attribute
|
|
44550
|
+
* @param {string} key Technical name of the Attribute.
|
|
44551
|
+
* @param {Array<JsonPatchOperationV2024>} jsonPatchOperationV2024 JSON Patch array to apply
|
|
44552
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
44553
|
+
* @throws {RequiredError}
|
|
44554
|
+
*/
|
|
44555
|
+
updateAccessModelMetadataAttribute(key: string, jsonPatchOperationV2024: Array<JsonPatchOperationV2024>, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AttributeDTOV2024>>;
|
|
44556
|
+
/**
|
|
44557
|
+
* Update an existing Access Model Metadata Attribute Value. The following fields are patchable: **name**
|
|
44558
|
+
* @summary Update access model metadata value
|
|
44559
|
+
* @param {string} key Technical name of the Attribute.
|
|
44560
|
+
* @param {string} value Technical name of the Attribute value.
|
|
44561
|
+
* @param {Array<JsonPatchOperationV2024>} jsonPatchOperationV2024 JSON Patch array to apply
|
|
44562
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
44563
|
+
* @throws {RequiredError}
|
|
44564
|
+
*/
|
|
44565
|
+
updateAccessModelMetadataAttributeValue(key: string, value: string, jsonPatchOperationV2024: Array<JsonPatchOperationV2024>, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AttributeValueDTOV2024>>;
|
|
44355
44566
|
};
|
|
44356
44567
|
/**
|
|
44357
44568
|
* AccessModelMetadataV2024Api - factory interface
|
|
44358
44569
|
* @export
|
|
44359
44570
|
*/
|
|
44360
44571
|
export declare const AccessModelMetadataV2024ApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
44572
|
+
/**
|
|
44573
|
+
* Create a new Access Model Metadata Attribute.
|
|
44574
|
+
* @summary Create access model metadata attribute
|
|
44575
|
+
* @param {AccessModelMetadataV2024ApiCreateAccessModelMetadataAttributeRequest} requestParameters Request parameters.
|
|
44576
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
44577
|
+
* @throws {RequiredError}
|
|
44578
|
+
*/
|
|
44579
|
+
createAccessModelMetadataAttribute(requestParameters: AccessModelMetadataV2024ApiCreateAccessModelMetadataAttributeRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<AttributeDTOV2024>;
|
|
44580
|
+
/**
|
|
44581
|
+
* Create a new value for an existing Access Model Metadata Attribute.
|
|
44582
|
+
* @summary Create access model metadata value
|
|
44583
|
+
* @param {AccessModelMetadataV2024ApiCreateAccessModelMetadataAttributeValueRequest} requestParameters Request parameters.
|
|
44584
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
44585
|
+
* @throws {RequiredError}
|
|
44586
|
+
*/
|
|
44587
|
+
createAccessModelMetadataAttributeValue(requestParameters: AccessModelMetadataV2024ApiCreateAccessModelMetadataAttributeValueRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<AttributeValueDTOV2024>;
|
|
44361
44588
|
/**
|
|
44362
44589
|
* Get single Access Model Metadata Attribute
|
|
44363
44590
|
* @summary Get access model metadata attribute
|
|
@@ -44390,7 +44617,55 @@ export declare const AccessModelMetadataV2024ApiFactory: (configuration?: Config
|
|
|
44390
44617
|
* @throws {RequiredError}
|
|
44391
44618
|
*/
|
|
44392
44619
|
listAccessModelMetadataAttributeValue(requestParameters: AccessModelMetadataV2024ApiListAccessModelMetadataAttributeValueRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<AttributeValueDTOV2024>>;
|
|
44620
|
+
/**
|
|
44621
|
+
* Update an existing Access Model Metadata Attribute. The following fields are patchable: **name**, **description**, **multiselect**, **values**
|
|
44622
|
+
* @summary Update access model metadata attribute
|
|
44623
|
+
* @param {AccessModelMetadataV2024ApiUpdateAccessModelMetadataAttributeRequest} requestParameters Request parameters.
|
|
44624
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
44625
|
+
* @throws {RequiredError}
|
|
44626
|
+
*/
|
|
44627
|
+
updateAccessModelMetadataAttribute(requestParameters: AccessModelMetadataV2024ApiUpdateAccessModelMetadataAttributeRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<AttributeDTOV2024>;
|
|
44628
|
+
/**
|
|
44629
|
+
* Update an existing Access Model Metadata Attribute Value. The following fields are patchable: **name**
|
|
44630
|
+
* @summary Update access model metadata value
|
|
44631
|
+
* @param {AccessModelMetadataV2024ApiUpdateAccessModelMetadataAttributeValueRequest} requestParameters Request parameters.
|
|
44632
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
44633
|
+
* @throws {RequiredError}
|
|
44634
|
+
*/
|
|
44635
|
+
updateAccessModelMetadataAttributeValue(requestParameters: AccessModelMetadataV2024ApiUpdateAccessModelMetadataAttributeValueRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<AttributeValueDTOV2024>;
|
|
44393
44636
|
};
|
|
44637
|
+
/**
|
|
44638
|
+
* Request parameters for createAccessModelMetadataAttribute operation in AccessModelMetadataV2024Api.
|
|
44639
|
+
* @export
|
|
44640
|
+
* @interface AccessModelMetadataV2024ApiCreateAccessModelMetadataAttributeRequest
|
|
44641
|
+
*/
|
|
44642
|
+
export interface AccessModelMetadataV2024ApiCreateAccessModelMetadataAttributeRequest {
|
|
44643
|
+
/**
|
|
44644
|
+
* Attribute to create
|
|
44645
|
+
* @type {AttributeDTOV2024}
|
|
44646
|
+
* @memberof AccessModelMetadataV2024ApiCreateAccessModelMetadataAttribute
|
|
44647
|
+
*/
|
|
44648
|
+
readonly attributeDTOV2024: AttributeDTOV2024;
|
|
44649
|
+
}
|
|
44650
|
+
/**
|
|
44651
|
+
* Request parameters for createAccessModelMetadataAttributeValue operation in AccessModelMetadataV2024Api.
|
|
44652
|
+
* @export
|
|
44653
|
+
* @interface AccessModelMetadataV2024ApiCreateAccessModelMetadataAttributeValueRequest
|
|
44654
|
+
*/
|
|
44655
|
+
export interface AccessModelMetadataV2024ApiCreateAccessModelMetadataAttributeValueRequest {
|
|
44656
|
+
/**
|
|
44657
|
+
* Technical name of the Attribute.
|
|
44658
|
+
* @type {string}
|
|
44659
|
+
* @memberof AccessModelMetadataV2024ApiCreateAccessModelMetadataAttributeValue
|
|
44660
|
+
*/
|
|
44661
|
+
readonly key: string;
|
|
44662
|
+
/**
|
|
44663
|
+
* Attribute value to create
|
|
44664
|
+
* @type {AttributeValueDTOV2024}
|
|
44665
|
+
* @memberof AccessModelMetadataV2024ApiCreateAccessModelMetadataAttributeValue
|
|
44666
|
+
*/
|
|
44667
|
+
readonly attributeValueDTOV2024: AttributeValueDTOV2024;
|
|
44668
|
+
}
|
|
44394
44669
|
/**
|
|
44395
44670
|
* Request parameters for getAccessModelMetadataAttribute operation in AccessModelMetadataV2024Api.
|
|
44396
44671
|
* @export
|
|
@@ -44430,7 +44705,7 @@ export interface AccessModelMetadataV2024ApiGetAccessModelMetadataAttributeValue
|
|
|
44430
44705
|
*/
|
|
44431
44706
|
export interface AccessModelMetadataV2024ApiListAccessModelMetadataAttributeRequest {
|
|
44432
44707
|
/**
|
|
44433
|
-
* Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **key**: *eq* **name**: *eq* **type**: *eq* **status**: *eq* **objectTypes**: *eq*
|
|
44708
|
+
* Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **key**: *eq* **name**: *eq* **type**: *eq* **status**: *eq* **objectTypes**: *eq* Supported composite operators are *and, or*
|
|
44434
44709
|
* @type {string}
|
|
44435
44710
|
* @memberof AccessModelMetadataV2024ApiListAccessModelMetadataAttribute
|
|
44436
44711
|
*/
|
|
@@ -44441,12 +44716,6 @@ export interface AccessModelMetadataV2024ApiListAccessModelMetadataAttributeRequ
|
|
|
44441
44716
|
* @memberof AccessModelMetadataV2024ApiListAccessModelMetadataAttribute
|
|
44442
44717
|
*/
|
|
44443
44718
|
readonly sorters?: string;
|
|
44444
|
-
/**
|
|
44445
|
-
* Offset into the full result set. Usually specified with *limit* to paginate through the results. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
44446
|
-
* @type {number}
|
|
44447
|
-
* @memberof AccessModelMetadataV2024ApiListAccessModelMetadataAttribute
|
|
44448
|
-
*/
|
|
44449
|
-
readonly offset?: number;
|
|
44450
44719
|
/**
|
|
44451
44720
|
* Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
44452
44721
|
* @type {number}
|
|
@@ -44472,12 +44741,6 @@ export interface AccessModelMetadataV2024ApiListAccessModelMetadataAttributeValu
|
|
|
44472
44741
|
* @memberof AccessModelMetadataV2024ApiListAccessModelMetadataAttributeValue
|
|
44473
44742
|
*/
|
|
44474
44743
|
readonly key: string;
|
|
44475
|
-
/**
|
|
44476
|
-
* Offset into the full result set. Usually specified with *limit* to paginate through the results. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
44477
|
-
* @type {number}
|
|
44478
|
-
* @memberof AccessModelMetadataV2024ApiListAccessModelMetadataAttributeValue
|
|
44479
|
-
*/
|
|
44480
|
-
readonly offset?: number;
|
|
44481
44744
|
/**
|
|
44482
44745
|
* Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
44483
44746
|
* @type {number}
|
|
@@ -44491,6 +44754,50 @@ export interface AccessModelMetadataV2024ApiListAccessModelMetadataAttributeValu
|
|
|
44491
44754
|
*/
|
|
44492
44755
|
readonly count?: boolean;
|
|
44493
44756
|
}
|
|
44757
|
+
/**
|
|
44758
|
+
* Request parameters for updateAccessModelMetadataAttribute operation in AccessModelMetadataV2024Api.
|
|
44759
|
+
* @export
|
|
44760
|
+
* @interface AccessModelMetadataV2024ApiUpdateAccessModelMetadataAttributeRequest
|
|
44761
|
+
*/
|
|
44762
|
+
export interface AccessModelMetadataV2024ApiUpdateAccessModelMetadataAttributeRequest {
|
|
44763
|
+
/**
|
|
44764
|
+
* Technical name of the Attribute.
|
|
44765
|
+
* @type {string}
|
|
44766
|
+
* @memberof AccessModelMetadataV2024ApiUpdateAccessModelMetadataAttribute
|
|
44767
|
+
*/
|
|
44768
|
+
readonly key: string;
|
|
44769
|
+
/**
|
|
44770
|
+
* JSON Patch array to apply
|
|
44771
|
+
* @type {Array<JsonPatchOperationV2024>}
|
|
44772
|
+
* @memberof AccessModelMetadataV2024ApiUpdateAccessModelMetadataAttribute
|
|
44773
|
+
*/
|
|
44774
|
+
readonly jsonPatchOperationV2024: Array<JsonPatchOperationV2024>;
|
|
44775
|
+
}
|
|
44776
|
+
/**
|
|
44777
|
+
* Request parameters for updateAccessModelMetadataAttributeValue operation in AccessModelMetadataV2024Api.
|
|
44778
|
+
* @export
|
|
44779
|
+
* @interface AccessModelMetadataV2024ApiUpdateAccessModelMetadataAttributeValueRequest
|
|
44780
|
+
*/
|
|
44781
|
+
export interface AccessModelMetadataV2024ApiUpdateAccessModelMetadataAttributeValueRequest {
|
|
44782
|
+
/**
|
|
44783
|
+
* Technical name of the Attribute.
|
|
44784
|
+
* @type {string}
|
|
44785
|
+
* @memberof AccessModelMetadataV2024ApiUpdateAccessModelMetadataAttributeValue
|
|
44786
|
+
*/
|
|
44787
|
+
readonly key: string;
|
|
44788
|
+
/**
|
|
44789
|
+
* Technical name of the Attribute value.
|
|
44790
|
+
* @type {string}
|
|
44791
|
+
* @memberof AccessModelMetadataV2024ApiUpdateAccessModelMetadataAttributeValue
|
|
44792
|
+
*/
|
|
44793
|
+
readonly value: string;
|
|
44794
|
+
/**
|
|
44795
|
+
* JSON Patch array to apply
|
|
44796
|
+
* @type {Array<JsonPatchOperationV2024>}
|
|
44797
|
+
* @memberof AccessModelMetadataV2024ApiUpdateAccessModelMetadataAttributeValue
|
|
44798
|
+
*/
|
|
44799
|
+
readonly jsonPatchOperationV2024: Array<JsonPatchOperationV2024>;
|
|
44800
|
+
}
|
|
44494
44801
|
/**
|
|
44495
44802
|
* AccessModelMetadataV2024Api - object-oriented interface
|
|
44496
44803
|
* @export
|
|
@@ -44498,6 +44805,24 @@ export interface AccessModelMetadataV2024ApiListAccessModelMetadataAttributeValu
|
|
|
44498
44805
|
* @extends {BaseAPI}
|
|
44499
44806
|
*/
|
|
44500
44807
|
export declare class AccessModelMetadataV2024Api extends BaseAPI {
|
|
44808
|
+
/**
|
|
44809
|
+
* Create a new Access Model Metadata Attribute.
|
|
44810
|
+
* @summary Create access model metadata attribute
|
|
44811
|
+
* @param {AccessModelMetadataV2024ApiCreateAccessModelMetadataAttributeRequest} requestParameters Request parameters.
|
|
44812
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
44813
|
+
* @throws {RequiredError}
|
|
44814
|
+
* @memberof AccessModelMetadataV2024Api
|
|
44815
|
+
*/
|
|
44816
|
+
createAccessModelMetadataAttribute(requestParameters: AccessModelMetadataV2024ApiCreateAccessModelMetadataAttributeRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AttributeDTOV2024, any>>;
|
|
44817
|
+
/**
|
|
44818
|
+
* Create a new value for an existing Access Model Metadata Attribute.
|
|
44819
|
+
* @summary Create access model metadata value
|
|
44820
|
+
* @param {AccessModelMetadataV2024ApiCreateAccessModelMetadataAttributeValueRequest} requestParameters Request parameters.
|
|
44821
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
44822
|
+
* @throws {RequiredError}
|
|
44823
|
+
* @memberof AccessModelMetadataV2024Api
|
|
44824
|
+
*/
|
|
44825
|
+
createAccessModelMetadataAttributeValue(requestParameters: AccessModelMetadataV2024ApiCreateAccessModelMetadataAttributeValueRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AttributeValueDTOV2024, any>>;
|
|
44501
44826
|
/**
|
|
44502
44827
|
* Get single Access Model Metadata Attribute
|
|
44503
44828
|
* @summary Get access model metadata attribute
|
|
@@ -44534,6 +44859,24 @@ export declare class AccessModelMetadataV2024Api extends BaseAPI {
|
|
|
44534
44859
|
* @memberof AccessModelMetadataV2024Api
|
|
44535
44860
|
*/
|
|
44536
44861
|
listAccessModelMetadataAttributeValue(requestParameters: AccessModelMetadataV2024ApiListAccessModelMetadataAttributeValueRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AttributeValueDTOV2024[], any>>;
|
|
44862
|
+
/**
|
|
44863
|
+
* Update an existing Access Model Metadata Attribute. The following fields are patchable: **name**, **description**, **multiselect**, **values**
|
|
44864
|
+
* @summary Update access model metadata attribute
|
|
44865
|
+
* @param {AccessModelMetadataV2024ApiUpdateAccessModelMetadataAttributeRequest} requestParameters Request parameters.
|
|
44866
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
44867
|
+
* @throws {RequiredError}
|
|
44868
|
+
* @memberof AccessModelMetadataV2024Api
|
|
44869
|
+
*/
|
|
44870
|
+
updateAccessModelMetadataAttribute(requestParameters: AccessModelMetadataV2024ApiUpdateAccessModelMetadataAttributeRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AttributeDTOV2024, any>>;
|
|
44871
|
+
/**
|
|
44872
|
+
* Update an existing Access Model Metadata Attribute Value. The following fields are patchable: **name**
|
|
44873
|
+
* @summary Update access model metadata value
|
|
44874
|
+
* @param {AccessModelMetadataV2024ApiUpdateAccessModelMetadataAttributeValueRequest} requestParameters Request parameters.
|
|
44875
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
44876
|
+
* @throws {RequiredError}
|
|
44877
|
+
* @memberof AccessModelMetadataV2024Api
|
|
44878
|
+
*/
|
|
44879
|
+
updateAccessModelMetadataAttributeValue(requestParameters: AccessModelMetadataV2024ApiUpdateAccessModelMetadataAttributeValueRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AttributeValueDTOV2024, any>>;
|
|
44537
44880
|
}
|
|
44538
44881
|
/**
|
|
44539
44882
|
* AccessProfilesV2024Api - axios parameter creator
|
|
@@ -45694,7 +46037,7 @@ export declare const AccessRequestsV2024ApiAxiosParamCreator: (configuration?: C
|
|
|
45694
46037
|
* @param {boolean} [count] If this is true, the *X-Total-Count* response header populates with the number of results that would be returned if limit and offset were ignored.
|
|
45695
46038
|
* @param {number} [limit] Max number of results to return.
|
|
45696
46039
|
* @param {number} [offset] Offset into the full result set. Usually specified with *limit* to paginate through the results. Defaults to 0 if not specified.
|
|
45697
|
-
* @param {string} [filters] Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **accessRequestId**: *eq,
|
|
46040
|
+
* @param {string} [filters] Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **accessRequestId**: *eq, ge, gt, le, lt, ne, sw* **accountActivityItemId**: *eq, in, ge, gt, le, ne, sw* **created**: *eq, ge, gt, le, lt, ne*
|
|
45698
46041
|
* @param {string} [sorters] Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) Sorting is supported for the following fields: **created, modified, accountActivityItemId, name**
|
|
45699
46042
|
* @param {string} [requestState] Filter the results by the state of the request. The only valid value is *EXECUTING*.
|
|
45700
46043
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -45809,7 +46152,7 @@ export declare const AccessRequestsV2024ApiFp: (configuration?: Configuration) =
|
|
|
45809
46152
|
* @param {boolean} [count] If this is true, the *X-Total-Count* response header populates with the number of results that would be returned if limit and offset were ignored.
|
|
45810
46153
|
* @param {number} [limit] Max number of results to return.
|
|
45811
46154
|
* @param {number} [offset] Offset into the full result set. Usually specified with *limit* to paginate through the results. Defaults to 0 if not specified.
|
|
45812
|
-
* @param {string} [filters] Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **accessRequestId**: *eq,
|
|
46155
|
+
* @param {string} [filters] Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **accessRequestId**: *eq, ge, gt, le, lt, ne, sw* **accountActivityItemId**: *eq, in, ge, gt, le, ne, sw* **created**: *eq, ge, gt, le, lt, ne*
|
|
45813
46156
|
* @param {string} [sorters] Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) Sorting is supported for the following fields: **created, modified, accountActivityItemId, name**
|
|
45814
46157
|
* @param {string} [requestState] Filter the results by the state of the request. The only valid value is *EXECUTING*.
|
|
45815
46158
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -46084,7 +46427,7 @@ export interface AccessRequestsV2024ApiListAccessRequestStatusRequest {
|
|
|
46084
46427
|
*/
|
|
46085
46428
|
readonly offset?: number;
|
|
46086
46429
|
/**
|
|
46087
|
-
* Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **accessRequestId**: *eq,
|
|
46430
|
+
* Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **accessRequestId**: *eq, ge, gt, le, lt, ne, sw* **accountActivityItemId**: *eq, in, ge, gt, le, ne, sw* **created**: *eq, ge, gt, le, lt, ne*
|
|
46088
46431
|
* @type {string}
|
|
46089
46432
|
* @memberof AccessRequestsV2024ApiListAccessRequestStatus
|
|
46090
46433
|
*/
|
|
@@ -47936,7 +48279,7 @@ export declare const AppsV2024ApiAxiosParamCreator: (configuration?: Configurati
|
|
|
47936
48279
|
* @param {boolean} [count] If *true* it will populate the *X-Total-Count* response header with the number of results that would be returned if *limit* and *offset* were ignored. Since requesting a total count can have a performance impact, it is recommended not to send **count=true** if that value will not be used. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
47937
48280
|
* @param {number} [offset] Offset into the full result set. Usually specified with *limit* to paginate through the results. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
47938
48281
|
* @param {string} [sorters] Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) Sorting is supported for the following fields: **id, name, created, modified, owner.id, accountSource.id**
|
|
47939
|
-
* @param {string} [filters] Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **id**: *eq, in* **name**: *eq, in, co, sw* **created**: *gt, lt, ge, le* **modified**: *gt,
|
|
48282
|
+
* @param {string} [filters] Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **id**: *eq, in* **name**: *eq, in, co, sw* **created**: *gt, lt, ge, le* **modified**: *gt, ge, le* **owner.id**: *eq, in* **enabled**: *eq*
|
|
47940
48283
|
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
47941
48284
|
* @param {*} [axiosOptions] Override http request option.
|
|
47942
48285
|
* @throws {RequiredError}
|
|
@@ -48095,7 +48438,7 @@ export declare const AppsV2024ApiFp: (configuration?: Configuration) => {
|
|
|
48095
48438
|
* @param {boolean} [count] If *true* it will populate the *X-Total-Count* response header with the number of results that would be returned if *limit* and *offset* were ignored. Since requesting a total count can have a performance impact, it is recommended not to send **count=true** if that value will not be used. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
48096
48439
|
* @param {number} [offset] Offset into the full result set. Usually specified with *limit* to paginate through the results. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
48097
48440
|
* @param {string} [sorters] Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) Sorting is supported for the following fields: **id, name, created, modified, owner.id, accountSource.id**
|
|
48098
|
-
* @param {string} [filters] Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **id**: *eq, in* **name**: *eq, in, co, sw* **created**: *gt, lt, ge, le* **modified**: *gt,
|
|
48441
|
+
* @param {string} [filters] Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **id**: *eq, in* **name**: *eq, in, co, sw* **created**: *gt, lt, ge, le* **modified**: *gt, ge, le* **owner.id**: *eq, in* **enabled**: *eq*
|
|
48099
48442
|
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
48100
48443
|
* @param {*} [axiosOptions] Override http request option.
|
|
48101
48444
|
* @throws {RequiredError}
|
|
@@ -48466,7 +48809,7 @@ export interface AppsV2024ApiListAllSourceAppRequest {
|
|
|
48466
48809
|
*/
|
|
48467
48810
|
readonly sorters?: string;
|
|
48468
48811
|
/**
|
|
48469
|
-
* Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **id**: *eq, in* **name**: *eq, in, co, sw* **created**: *gt, lt, ge, le* **modified**: *gt,
|
|
48812
|
+
* Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **id**: *eq, in* **name**: *eq, in, co, sw* **created**: *gt, lt, ge, le* **modified**: *gt, ge, le* **owner.id**: *eq, in* **enabled**: *eq*
|
|
48470
48813
|
* @type {string}
|
|
48471
48814
|
* @memberof AppsV2024ApiListAllSourceApp
|
|
48472
48815
|
*/
|
|
@@ -51335,7 +51678,7 @@ export declare const CertificationsV2024ApiAxiosParamCreator: (configuration?: C
|
|
|
51335
51678
|
*/
|
|
51336
51679
|
getCertificationTask: (id: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
51337
51680
|
/**
|
|
51338
|
-
* This API returns a single identity campaign certification by its ID. Reviewers for this certification can also call this API.
|
|
51681
|
+
* This API returns a single identity campaign certification by its ID. Reviewers for this certification can also call this API.
|
|
51339
51682
|
* @summary Identity certification by id
|
|
51340
51683
|
* @param {string} id The certification id
|
|
51341
51684
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -51459,7 +51802,7 @@ export declare const CertificationsV2024ApiFp: (configuration?: Configuration) =
|
|
|
51459
51802
|
*/
|
|
51460
51803
|
getCertificationTask(id: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CertificationTaskV2024>>;
|
|
51461
51804
|
/**
|
|
51462
|
-
* This API returns a single identity campaign certification by its ID. Reviewers for this certification can also call this API.
|
|
51805
|
+
* This API returns a single identity campaign certification by its ID. Reviewers for this certification can also call this API.
|
|
51463
51806
|
* @summary Identity certification by id
|
|
51464
51807
|
* @param {string} id The certification id
|
|
51465
51808
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -51583,7 +51926,7 @@ export declare const CertificationsV2024ApiFactory: (configuration?: Configurati
|
|
|
51583
51926
|
*/
|
|
51584
51927
|
getCertificationTask(requestParameters: CertificationsV2024ApiGetCertificationTaskRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<CertificationTaskV2024>;
|
|
51585
51928
|
/**
|
|
51586
|
-
* This API returns a single identity campaign certification by its ID. Reviewers for this certification can also call this API.
|
|
51929
|
+
* This API returns a single identity campaign certification by its ID. Reviewers for this certification can also call this API.
|
|
51587
51930
|
* @summary Identity certification by id
|
|
51588
51931
|
* @param {CertificationsV2024ApiGetIdentityCertificationRequest} requestParameters Request parameters.
|
|
51589
51932
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -52003,7 +52346,7 @@ export declare class CertificationsV2024Api extends BaseAPI {
|
|
|
52003
52346
|
*/
|
|
52004
52347
|
getCertificationTask(requestParameters: CertificationsV2024ApiGetCertificationTaskRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CertificationTaskV2024, any>>;
|
|
52005
52348
|
/**
|
|
52006
|
-
* This API returns a single identity campaign certification by its ID. Reviewers for this certification can also call this API.
|
|
52349
|
+
* This API returns a single identity campaign certification by its ID. Reviewers for this certification can also call this API.
|
|
52007
52350
|
* @summary Identity certification by id
|
|
52008
52351
|
* @param {CertificationsV2024ApiGetIdentityCertificationRequest} requestParameters Request parameters.
|
|
52009
52352
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -54654,12 +54997,13 @@ export declare const CustomFormsV2024ApiAxiosParamCreator: (configuration?: Conf
|
|
|
54654
54997
|
*/
|
|
54655
54998
|
searchFormElementDataByElementID: (formInstanceID: string, formElementID: string, limit?: number, filters?: string, query?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
54656
54999
|
/**
|
|
54657
|
-
*
|
|
55000
|
+
* Returns a list of form instances for the tenant. Optionally filter by form definition ID.
|
|
54658
55001
|
* @summary List form instances by tenant.
|
|
55002
|
+
* @param {string} [filters] Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **formDefinitionId**: *eq*
|
|
54659
55003
|
* @param {*} [axiosOptions] Override http request option.
|
|
54660
55004
|
* @throws {RequiredError}
|
|
54661
55005
|
*/
|
|
54662
|
-
searchFormInstancesByTenant: (axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
55006
|
+
searchFormInstancesByTenant: (filters?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
54663
55007
|
/**
|
|
54664
55008
|
* No parameters required.
|
|
54665
55009
|
* @summary List predefined select options.
|
|
@@ -54825,12 +55169,13 @@ export declare const CustomFormsV2024ApiFp: (configuration?: Configuration) => {
|
|
|
54825
55169
|
*/
|
|
54826
55170
|
searchFormElementDataByElementID(formInstanceID: string, formElementID: string, limit?: number, filters?: string, query?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListFormElementDataByElementIDResponseV2024>>;
|
|
54827
55171
|
/**
|
|
54828
|
-
*
|
|
55172
|
+
* Returns a list of form instances for the tenant. Optionally filter by form definition ID.
|
|
54829
55173
|
* @summary List form instances by tenant.
|
|
55174
|
+
* @param {string} [filters] Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **formDefinitionId**: *eq*
|
|
54830
55175
|
* @param {*} [axiosOptions] Override http request option.
|
|
54831
55176
|
* @throws {RequiredError}
|
|
54832
55177
|
*/
|
|
54833
|
-
searchFormInstancesByTenant(axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<ListFormInstancesByTenantResponseV2024>>>;
|
|
55178
|
+
searchFormInstancesByTenant(filters?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<ListFormInstancesByTenantResponseV2024>>>;
|
|
54834
55179
|
/**
|
|
54835
55180
|
* No parameters required.
|
|
54836
55181
|
* @summary List predefined select options.
|
|
@@ -54977,12 +55322,13 @@ export declare const CustomFormsV2024ApiFactory: (configuration?: Configuration,
|
|
|
54977
55322
|
*/
|
|
54978
55323
|
searchFormElementDataByElementID(requestParameters: CustomFormsV2024ApiSearchFormElementDataByElementIDRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<ListFormElementDataByElementIDResponseV2024>;
|
|
54979
55324
|
/**
|
|
54980
|
-
*
|
|
55325
|
+
* Returns a list of form instances for the tenant. Optionally filter by form definition ID.
|
|
54981
55326
|
* @summary List form instances by tenant.
|
|
55327
|
+
* @param {CustomFormsV2024ApiSearchFormInstancesByTenantRequest} requestParameters Request parameters.
|
|
54982
55328
|
* @param {*} [axiosOptions] Override http request option.
|
|
54983
55329
|
* @throws {RequiredError}
|
|
54984
55330
|
*/
|
|
54985
|
-
searchFormInstancesByTenant(axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<ListFormInstancesByTenantResponseV2024>>;
|
|
55331
|
+
searchFormInstancesByTenant(requestParameters?: CustomFormsV2024ApiSearchFormInstancesByTenantRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<ListFormInstancesByTenantResponseV2024>>;
|
|
54986
55332
|
/**
|
|
54987
55333
|
* No parameters required.
|
|
54988
55334
|
* @summary List predefined select options.
|
|
@@ -55288,6 +55634,19 @@ export interface CustomFormsV2024ApiSearchFormElementDataByElementIDRequest {
|
|
|
55288
55634
|
*/
|
|
55289
55635
|
readonly query?: string;
|
|
55290
55636
|
}
|
|
55637
|
+
/**
|
|
55638
|
+
* Request parameters for searchFormInstancesByTenant operation in CustomFormsV2024Api.
|
|
55639
|
+
* @export
|
|
55640
|
+
* @interface CustomFormsV2024ApiSearchFormInstancesByTenantRequest
|
|
55641
|
+
*/
|
|
55642
|
+
export interface CustomFormsV2024ApiSearchFormInstancesByTenantRequest {
|
|
55643
|
+
/**
|
|
55644
|
+
* Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **formDefinitionId**: *eq*
|
|
55645
|
+
* @type {string}
|
|
55646
|
+
* @memberof CustomFormsV2024ApiSearchFormInstancesByTenant
|
|
55647
|
+
*/
|
|
55648
|
+
readonly filters?: string;
|
|
55649
|
+
}
|
|
55291
55650
|
/**
|
|
55292
55651
|
* Request parameters for showPreviewDataSource operation in CustomFormsV2024Api.
|
|
55293
55652
|
* @export
|
|
@@ -55468,13 +55827,14 @@ export declare class CustomFormsV2024Api extends BaseAPI {
|
|
|
55468
55827
|
*/
|
|
55469
55828
|
searchFormElementDataByElementID(requestParameters: CustomFormsV2024ApiSearchFormElementDataByElementIDRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ListFormElementDataByElementIDResponseV2024, any>>;
|
|
55470
55829
|
/**
|
|
55471
|
-
*
|
|
55830
|
+
* Returns a list of form instances for the tenant. Optionally filter by form definition ID.
|
|
55472
55831
|
* @summary List form instances by tenant.
|
|
55832
|
+
* @param {CustomFormsV2024ApiSearchFormInstancesByTenantRequest} requestParameters Request parameters.
|
|
55473
55833
|
* @param {*} [axiosOptions] Override http request option.
|
|
55474
55834
|
* @throws {RequiredError}
|
|
55475
55835
|
* @memberof CustomFormsV2024Api
|
|
55476
55836
|
*/
|
|
55477
|
-
searchFormInstancesByTenant(axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ListFormInstancesByTenantResponseV2024[], any>>;
|
|
55837
|
+
searchFormInstancesByTenant(requestParameters?: CustomFormsV2024ApiSearchFormInstancesByTenantRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ListFormInstancesByTenantResponseV2024[], any>>;
|
|
55478
55838
|
/**
|
|
55479
55839
|
* No parameters required.
|
|
55480
55840
|
* @summary List predefined select options.
|
|
@@ -60885,15 +61245,15 @@ export declare const IAIRoleMiningV2024ApiAxiosParamCreator: (configuration?: Co
|
|
|
60885
61245
|
patchPotentialRole: (sessionId: string, potentialRoleId: string, patchPotentialRoleRequestInnerV2024: Array<PatchPotentialRoleRequestInnerV2024>, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
60886
61246
|
/**
|
|
60887
61247
|
* The method updates an existing potential role using. The following fields can be modified: * `description` * `name` * `saved` >**NOTE: All other fields cannot be modified.**
|
|
60888
|
-
* @summary Update a potential role
|
|
61248
|
+
* @summary Update a potential role session
|
|
60889
61249
|
* @param {string} sessionId The role mining session id
|
|
60890
61250
|
* @param {string} potentialRoleId The potential role summary id
|
|
60891
|
-
* @param {Array<
|
|
61251
|
+
* @param {Array<JsonPatchOperationV2024>} jsonPatchOperationV2024
|
|
60892
61252
|
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
60893
61253
|
* @param {*} [axiosOptions] Override http request option.
|
|
60894
61254
|
* @throws {RequiredError}
|
|
60895
61255
|
*/
|
|
60896
|
-
|
|
61256
|
+
patchPotentialRoleSession: (sessionId: string, potentialRoleId: string, jsonPatchOperationV2024: Array<JsonPatchOperationV2024>, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
60897
61257
|
/**
|
|
60898
61258
|
* The method updates an existing role mining session using PATCH. Supports op in {\"replace\"} and changes to pruneThreshold and/or minNumIdentitiesInPotentialRole. The potential roles in this role mining session is then re-calculated.
|
|
60899
61259
|
* @summary Patch a role mining session
|
|
@@ -61189,15 +61549,15 @@ export declare const IAIRoleMiningV2024ApiFp: (configuration?: Configuration) =>
|
|
|
61189
61549
|
patchPotentialRole(sessionId: string, potentialRoleId: string, patchPotentialRoleRequestInnerV2024: Array<PatchPotentialRoleRequestInnerV2024>, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>>;
|
|
61190
61550
|
/**
|
|
61191
61551
|
* The method updates an existing potential role using. The following fields can be modified: * `description` * `name` * `saved` >**NOTE: All other fields cannot be modified.**
|
|
61192
|
-
* @summary Update a potential role
|
|
61552
|
+
* @summary Update a potential role session
|
|
61193
61553
|
* @param {string} sessionId The role mining session id
|
|
61194
61554
|
* @param {string} potentialRoleId The potential role summary id
|
|
61195
|
-
* @param {Array<
|
|
61555
|
+
* @param {Array<JsonPatchOperationV2024>} jsonPatchOperationV2024
|
|
61196
61556
|
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
61197
61557
|
* @param {*} [axiosOptions] Override http request option.
|
|
61198
61558
|
* @throws {RequiredError}
|
|
61199
61559
|
*/
|
|
61200
|
-
|
|
61560
|
+
patchPotentialRoleSession(sessionId: string, potentialRoleId: string, jsonPatchOperationV2024: Array<JsonPatchOperationV2024>, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>>;
|
|
61201
61561
|
/**
|
|
61202
61562
|
* The method updates an existing role mining session using PATCH. Supports op in {\"replace\"} and changes to pruneThreshold and/or minNumIdentitiesInPotentialRole. The potential roles in this role mining session is then re-calculated.
|
|
61203
61563
|
* @summary Patch a role mining session
|
|
@@ -61405,12 +61765,12 @@ export declare const IAIRoleMiningV2024ApiFactory: (configuration?: Configuratio
|
|
|
61405
61765
|
patchPotentialRole(requestParameters: IAIRoleMiningV2024ApiPatchPotentialRoleRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<object>;
|
|
61406
61766
|
/**
|
|
61407
61767
|
* The method updates an existing potential role using. The following fields can be modified: * `description` * `name` * `saved` >**NOTE: All other fields cannot be modified.**
|
|
61408
|
-
* @summary Update a potential role
|
|
61409
|
-
* @param {
|
|
61768
|
+
* @summary Update a potential role session
|
|
61769
|
+
* @param {IAIRoleMiningV2024ApiPatchPotentialRoleSessionRequest} requestParameters Request parameters.
|
|
61410
61770
|
* @param {*} [axiosOptions] Override http request option.
|
|
61411
61771
|
* @throws {RequiredError}
|
|
61412
61772
|
*/
|
|
61413
|
-
|
|
61773
|
+
patchPotentialRoleSession(requestParameters: IAIRoleMiningV2024ApiPatchPotentialRoleSessionRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<object>;
|
|
61414
61774
|
/**
|
|
61415
61775
|
* The method updates an existing role mining session using PATCH. Supports op in {\"replace\"} and changes to pruneThreshold and/or minNumIdentitiesInPotentialRole. The potential roles in this role mining session is then re-calculated.
|
|
61416
61776
|
* @summary Patch a role mining session
|
|
@@ -62243,33 +62603,33 @@ export interface IAIRoleMiningV2024ApiPatchPotentialRoleRequest {
|
|
|
62243
62603
|
readonly xSailPointExperimental?: string;
|
|
62244
62604
|
}
|
|
62245
62605
|
/**
|
|
62246
|
-
* Request parameters for
|
|
62606
|
+
* Request parameters for patchPotentialRoleSession operation in IAIRoleMiningV2024Api.
|
|
62247
62607
|
* @export
|
|
62248
|
-
* @interface
|
|
62608
|
+
* @interface IAIRoleMiningV2024ApiPatchPotentialRoleSessionRequest
|
|
62249
62609
|
*/
|
|
62250
|
-
export interface
|
|
62610
|
+
export interface IAIRoleMiningV2024ApiPatchPotentialRoleSessionRequest {
|
|
62251
62611
|
/**
|
|
62252
62612
|
* The role mining session id
|
|
62253
62613
|
* @type {string}
|
|
62254
|
-
* @memberof
|
|
62614
|
+
* @memberof IAIRoleMiningV2024ApiPatchPotentialRoleSession
|
|
62255
62615
|
*/
|
|
62256
62616
|
readonly sessionId: string;
|
|
62257
62617
|
/**
|
|
62258
62618
|
* The potential role summary id
|
|
62259
62619
|
* @type {string}
|
|
62260
|
-
* @memberof
|
|
62620
|
+
* @memberof IAIRoleMiningV2024ApiPatchPotentialRoleSession
|
|
62261
62621
|
*/
|
|
62262
62622
|
readonly potentialRoleId: string;
|
|
62263
62623
|
/**
|
|
62264
62624
|
*
|
|
62265
|
-
* @type {Array<
|
|
62266
|
-
* @memberof
|
|
62625
|
+
* @type {Array<JsonPatchOperationV2024>}
|
|
62626
|
+
* @memberof IAIRoleMiningV2024ApiPatchPotentialRoleSession
|
|
62267
62627
|
*/
|
|
62268
|
-
readonly
|
|
62628
|
+
readonly jsonPatchOperationV2024: Array<JsonPatchOperationV2024>;
|
|
62269
62629
|
/**
|
|
62270
62630
|
* Use this header to enable this experimental API.
|
|
62271
62631
|
* @type {string}
|
|
62272
|
-
* @memberof
|
|
62632
|
+
* @memberof IAIRoleMiningV2024ApiPatchPotentialRoleSession
|
|
62273
62633
|
*/
|
|
62274
62634
|
readonly xSailPointExperimental?: string;
|
|
62275
62635
|
}
|
|
@@ -62538,13 +62898,13 @@ export declare class IAIRoleMiningV2024Api extends BaseAPI {
|
|
|
62538
62898
|
patchPotentialRole(requestParameters: IAIRoleMiningV2024ApiPatchPotentialRoleRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any>>;
|
|
62539
62899
|
/**
|
|
62540
62900
|
* The method updates an existing potential role using. The following fields can be modified: * `description` * `name` * `saved` >**NOTE: All other fields cannot be modified.**
|
|
62541
|
-
* @summary Update a potential role
|
|
62542
|
-
* @param {
|
|
62901
|
+
* @summary Update a potential role session
|
|
62902
|
+
* @param {IAIRoleMiningV2024ApiPatchPotentialRoleSessionRequest} requestParameters Request parameters.
|
|
62543
62903
|
* @param {*} [axiosOptions] Override http request option.
|
|
62544
62904
|
* @throws {RequiredError}
|
|
62545
62905
|
* @memberof IAIRoleMiningV2024Api
|
|
62546
62906
|
*/
|
|
62547
|
-
|
|
62907
|
+
patchPotentialRoleSession(requestParameters: IAIRoleMiningV2024ApiPatchPotentialRoleSessionRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any>>;
|
|
62548
62908
|
/**
|
|
62549
62909
|
* The method updates an existing role mining session using PATCH. Supports op in {\"replace\"} and changes to pruneThreshold and/or minNumIdentitiesInPotentialRole. The potential roles in this role mining session is then re-calculated.
|
|
62550
62910
|
* @summary Patch a role mining session
|
|
@@ -66756,8 +67116,8 @@ export declare const MachineAccountsV2024ApiAxiosParamCreator: (configuration?:
|
|
|
66756
67116
|
* @param {number} [limit] Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
66757
67117
|
* @param {number} [offset] Offset into the full result set. Usually specified with *limit* to paginate through the results. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
66758
67118
|
* @param {boolean} [count] If *true* it will populate the *X-Total-Count* response header with the number of results that would be returned if *limit* and *offset* were ignored. Since requesting a total count can have a performance impact, it is recommended not to send **count=true** if that value will not be used. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
66759
|
-
* @param {string} [filters] Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **id**: *eq, in
|
|
66760
|
-
* @param {string} [sorters] Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) Sorting is supported for the following fields: **id, name,
|
|
67119
|
+
* @param {string} [filters] Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **id**: *eq, in* **name**: *eq, in, sw* **nativeIdentity**: *eq, in, sw* **uuid**: *eq, in* **description**: *eq, in, sw* **machineIdentity.id**: *eq, in* **machineIdentity.name**: *eq, in, sw* **subtype.technicalName**: *eq, in, sw* **subtype.displayName**: *eq, in, sw* **accessType**: *eq, in, sw* **environment**: *eq, in, sw* **ownerIdentity**: *eq, in* **ownerIdentity.id**: *eq, in* **ownerIdentity.name**: *eq, in, sw* **manuallyCorrelated**: *eq* **enabled**: *eq* **locked**: *eq* **hasEntitlements**: *eq* **attributes**: *eq* **source.id**: *eq, in* **source.name**: *eq, in, sw* **created**: *eq, gt, lt, ge, le* **modified**: *eq, gt, lt, ge, le*
|
|
67120
|
+
* @param {string} [sorters] Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) Sorting is supported for the following fields: **id, name, nativeIdentity, ownerIdentity, uuid, description, machineIdentity.id, machineIdentity.name, subtype.technicalName, subtype.displayName, accessType, environment, manuallyCorrelated, enabled, locked, hasEntitlements, ownerIdentity.id, ownerIdentity.name, attributes, source.id, source.name, created, modified**
|
|
66761
67121
|
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
66762
67122
|
* @param {*} [axiosOptions] Override http request option.
|
|
66763
67123
|
* @throws {RequiredError}
|
|
@@ -66794,8 +67154,8 @@ export declare const MachineAccountsV2024ApiFp: (configuration?: Configuration)
|
|
|
66794
67154
|
* @param {number} [limit] Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
66795
67155
|
* @param {number} [offset] Offset into the full result set. Usually specified with *limit* to paginate through the results. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
66796
67156
|
* @param {boolean} [count] If *true* it will populate the *X-Total-Count* response header with the number of results that would be returned if *limit* and *offset* were ignored. Since requesting a total count can have a performance impact, it is recommended not to send **count=true** if that value will not be used. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
66797
|
-
* @param {string} [filters] Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **id**: *eq, in
|
|
66798
|
-
* @param {string} [sorters] Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) Sorting is supported for the following fields: **id, name,
|
|
67157
|
+
* @param {string} [filters] Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **id**: *eq, in* **name**: *eq, in, sw* **nativeIdentity**: *eq, in, sw* **uuid**: *eq, in* **description**: *eq, in, sw* **machineIdentity.id**: *eq, in* **machineIdentity.name**: *eq, in, sw* **subtype.technicalName**: *eq, in, sw* **subtype.displayName**: *eq, in, sw* **accessType**: *eq, in, sw* **environment**: *eq, in, sw* **ownerIdentity**: *eq, in* **ownerIdentity.id**: *eq, in* **ownerIdentity.name**: *eq, in, sw* **manuallyCorrelated**: *eq* **enabled**: *eq* **locked**: *eq* **hasEntitlements**: *eq* **attributes**: *eq* **source.id**: *eq, in* **source.name**: *eq, in, sw* **created**: *eq, gt, lt, ge, le* **modified**: *eq, gt, lt, ge, le*
|
|
67158
|
+
* @param {string} [sorters] Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) Sorting is supported for the following fields: **id, name, nativeIdentity, ownerIdentity, uuid, description, machineIdentity.id, machineIdentity.name, subtype.technicalName, subtype.displayName, accessType, environment, manuallyCorrelated, enabled, locked, hasEntitlements, ownerIdentity.id, ownerIdentity.name, attributes, source.id, source.name, created, modified**
|
|
66799
67159
|
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
66800
67160
|
* @param {*} [axiosOptions] Override http request option.
|
|
66801
67161
|
* @throws {RequiredError}
|
|
@@ -66886,13 +67246,13 @@ export interface MachineAccountsV2024ApiListMachineAccountsRequest {
|
|
|
66886
67246
|
*/
|
|
66887
67247
|
readonly count?: boolean;
|
|
66888
67248
|
/**
|
|
66889
|
-
* Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **id**: *eq, in
|
|
67249
|
+
* Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **id**: *eq, in* **name**: *eq, in, sw* **nativeIdentity**: *eq, in, sw* **uuid**: *eq, in* **description**: *eq, in, sw* **machineIdentity.id**: *eq, in* **machineIdentity.name**: *eq, in, sw* **subtype.technicalName**: *eq, in, sw* **subtype.displayName**: *eq, in, sw* **accessType**: *eq, in, sw* **environment**: *eq, in, sw* **ownerIdentity**: *eq, in* **ownerIdentity.id**: *eq, in* **ownerIdentity.name**: *eq, in, sw* **manuallyCorrelated**: *eq* **enabled**: *eq* **locked**: *eq* **hasEntitlements**: *eq* **attributes**: *eq* **source.id**: *eq, in* **source.name**: *eq, in, sw* **created**: *eq, gt, lt, ge, le* **modified**: *eq, gt, lt, ge, le*
|
|
66890
67250
|
* @type {string}
|
|
66891
67251
|
* @memberof MachineAccountsV2024ApiListMachineAccounts
|
|
66892
67252
|
*/
|
|
66893
67253
|
readonly filters?: string;
|
|
66894
67254
|
/**
|
|
66895
|
-
* Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) Sorting is supported for the following fields: **id, name,
|
|
67255
|
+
* Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) Sorting is supported for the following fields: **id, name, nativeIdentity, ownerIdentity, uuid, description, machineIdentity.id, machineIdentity.name, subtype.technicalName, subtype.displayName, accessType, environment, manuallyCorrelated, enabled, locked, hasEntitlements, ownerIdentity.id, ownerIdentity.name, attributes, source.id, source.name, created, modified**
|
|
66896
67256
|
* @type {string}
|
|
66897
67257
|
* @memberof MachineAccountsV2024ApiListMachineAccounts
|
|
66898
67258
|
*/
|
|
@@ -78327,7 +78687,7 @@ export declare const SearchV2024ApiAxiosParamCreator: (configuration?: Configura
|
|
|
78327
78687
|
*/
|
|
78328
78688
|
searchGet: (index: SearchGetIndexV2024, id: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
78329
78689
|
/**
|
|
78330
|
-
* Perform a search with the provided query and return a matching result collection. To page past 10,000 records, you can use `searchAfter` paging. Refer to [Paginating Search Queries](https://developer.sailpoint.com/idn/api/standard-collection-parameters#paginating-search-queries) for more information about how to implement `searchAfter` paging.
|
|
78690
|
+
* Perform a search with the provided query and return a matching result collection. To page past 10,000 records, you can use `searchAfter` paging. Refer to [Paginating Search Queries](https://developer.sailpoint.com/idn/api/standard-collection-parameters#paginating-search-queries) for more information about how to implement `searchAfter` paging. The search query itself has a size limitation of approximately 800 objects when filtering by large lists of IDs or values (e.g., using `terms` filters with extensive lists).
|
|
78331
78691
|
* @summary Perform search
|
|
78332
78692
|
* @param {SearchV2024} searchV2024
|
|
78333
78693
|
* @param {number} [offset] Offset into the full result set. Usually specified with *limit* to paginate through the results. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
@@ -78372,7 +78732,7 @@ export declare const SearchV2024ApiFp: (configuration?: Configuration) => {
|
|
|
78372
78732
|
*/
|
|
78373
78733
|
searchGet(index: SearchGetIndexV2024, id: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SearchDocumentV2024>>;
|
|
78374
78734
|
/**
|
|
78375
|
-
* Perform a search with the provided query and return a matching result collection. To page past 10,000 records, you can use `searchAfter` paging. Refer to [Paginating Search Queries](https://developer.sailpoint.com/idn/api/standard-collection-parameters#paginating-search-queries) for more information about how to implement `searchAfter` paging.
|
|
78735
|
+
* Perform a search with the provided query and return a matching result collection. To page past 10,000 records, you can use `searchAfter` paging. Refer to [Paginating Search Queries](https://developer.sailpoint.com/idn/api/standard-collection-parameters#paginating-search-queries) for more information about how to implement `searchAfter` paging. The search query itself has a size limitation of approximately 800 objects when filtering by large lists of IDs or values (e.g., using `terms` filters with extensive lists).
|
|
78376
78736
|
* @summary Perform search
|
|
78377
78737
|
* @param {SearchV2024} searchV2024
|
|
78378
78738
|
* @param {number} [offset] Offset into the full result set. Usually specified with *limit* to paginate through the results. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
@@ -78413,7 +78773,7 @@ export declare const SearchV2024ApiFactory: (configuration?: Configuration, base
|
|
|
78413
78773
|
*/
|
|
78414
78774
|
searchGet(requestParameters: SearchV2024ApiSearchGetRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<SearchDocumentV2024>;
|
|
78415
78775
|
/**
|
|
78416
|
-
* Perform a search with the provided query and return a matching result collection. To page past 10,000 records, you can use `searchAfter` paging. Refer to [Paginating Search Queries](https://developer.sailpoint.com/idn/api/standard-collection-parameters#paginating-search-queries) for more information about how to implement `searchAfter` paging.
|
|
78776
|
+
* Perform a search with the provided query and return a matching result collection. To page past 10,000 records, you can use `searchAfter` paging. Refer to [Paginating Search Queries](https://developer.sailpoint.com/idn/api/standard-collection-parameters#paginating-search-queries) for more information about how to implement `searchAfter` paging. The search query itself has a size limitation of approximately 800 objects when filtering by large lists of IDs or values (e.g., using `terms` filters with extensive lists).
|
|
78417
78777
|
* @summary Perform search
|
|
78418
78778
|
* @param {SearchV2024ApiSearchPostRequest} requestParameters Request parameters.
|
|
78419
78779
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -78550,7 +78910,7 @@ export declare class SearchV2024Api extends BaseAPI {
|
|
|
78550
78910
|
*/
|
|
78551
78911
|
searchGet(requestParameters: SearchV2024ApiSearchGetRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SearchDocumentV2024, any>>;
|
|
78552
78912
|
/**
|
|
78553
|
-
* Perform a search with the provided query and return a matching result collection. To page past 10,000 records, you can use `searchAfter` paging. Refer to [Paginating Search Queries](https://developer.sailpoint.com/idn/api/standard-collection-parameters#paginating-search-queries) for more information about how to implement `searchAfter` paging.
|
|
78913
|
+
* Perform a search with the provided query and return a matching result collection. To page past 10,000 records, you can use `searchAfter` paging. Refer to [Paginating Search Queries](https://developer.sailpoint.com/idn/api/standard-collection-parameters#paginating-search-queries) for more information about how to implement `searchAfter` paging. The search query itself has a size limitation of approximately 800 objects when filtering by large lists of IDs or values (e.g., using `terms` filters with extensive lists).
|
|
78554
78914
|
* @summary Perform search
|
|
78555
78915
|
* @param {SearchV2024ApiSearchPostRequest} requestParameters Request parameters.
|
|
78556
78916
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -82708,7 +83068,7 @@ export declare const SuggestedEntitlementDescriptionV2024ApiAxiosParamCreator: (
|
|
|
82708
83068
|
*/
|
|
82709
83069
|
submitSedAssignment: (sedAssignmentV2024: SedAssignmentV2024, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
82710
83070
|
/**
|
|
82711
|
-
* Submit Sed Batch Request. Request body has one of the following: - a list of entitlement Ids - a list of SED Ids that user wants to have description generated by LLM.
|
|
83071
|
+
* Submit Sed Batch Request. Request body has one of the following: - a list of entitlement Ids - a list of SED Ids that user wants to have description generated by LLM. API responses with batchId that groups Ids together
|
|
82712
83072
|
* @summary Submit sed batch request
|
|
82713
83073
|
* @param {SedBatchRequestV2024} [sedBatchRequestV2024] Sed Batch Request
|
|
82714
83074
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -82782,7 +83142,7 @@ export declare const SuggestedEntitlementDescriptionV2024ApiFp: (configuration?:
|
|
|
82782
83142
|
*/
|
|
82783
83143
|
submitSedAssignment(sedAssignmentV2024: SedAssignmentV2024, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SedAssignmentResponseV2024>>;
|
|
82784
83144
|
/**
|
|
82785
|
-
* Submit Sed Batch Request. Request body has one of the following: - a list of entitlement Ids - a list of SED Ids that user wants to have description generated by LLM.
|
|
83145
|
+
* Submit Sed Batch Request. Request body has one of the following: - a list of entitlement Ids - a list of SED Ids that user wants to have description generated by LLM. API responses with batchId that groups Ids together
|
|
82786
83146
|
* @summary Submit sed batch request
|
|
82787
83147
|
* @param {SedBatchRequestV2024} [sedBatchRequestV2024] Sed Batch Request
|
|
82788
83148
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -82844,7 +83204,7 @@ export declare const SuggestedEntitlementDescriptionV2024ApiFactory: (configurat
|
|
|
82844
83204
|
*/
|
|
82845
83205
|
submitSedAssignment(requestParameters: SuggestedEntitlementDescriptionV2024ApiSubmitSedAssignmentRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<SedAssignmentResponseV2024>;
|
|
82846
83206
|
/**
|
|
82847
|
-
* Submit Sed Batch Request. Request body has one of the following: - a list of entitlement Ids - a list of SED Ids that user wants to have description generated by LLM.
|
|
83207
|
+
* Submit Sed Batch Request. Request body has one of the following: - a list of entitlement Ids - a list of SED Ids that user wants to have description generated by LLM. API responses with batchId that groups Ids together
|
|
82848
83208
|
* @summary Submit sed batch request
|
|
82849
83209
|
* @param {SuggestedEntitlementDescriptionV2024ApiSubmitSedBatchRequestRequest} requestParameters Request parameters.
|
|
82850
83210
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -83077,7 +83437,7 @@ export declare class SuggestedEntitlementDescriptionV2024Api extends BaseAPI {
|
|
|
83077
83437
|
*/
|
|
83078
83438
|
submitSedAssignment(requestParameters: SuggestedEntitlementDescriptionV2024ApiSubmitSedAssignmentRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SedAssignmentResponseV2024, any>>;
|
|
83079
83439
|
/**
|
|
83080
|
-
* Submit Sed Batch Request. Request body has one of the following: - a list of entitlement Ids - a list of SED Ids that user wants to have description generated by LLM.
|
|
83440
|
+
* Submit Sed Batch Request. Request body has one of the following: - a list of entitlement Ids - a list of SED Ids that user wants to have description generated by LLM. API responses with batchId that groups Ids together
|
|
83081
83441
|
* @summary Submit sed batch request
|
|
83082
83442
|
* @param {SuggestedEntitlementDescriptionV2024ApiSubmitSedBatchRequestRequest} requestParameters Request parameters.
|
|
83083
83443
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -83872,22 +84232,24 @@ export declare class TagsV2024Api extends BaseAPI {
|
|
|
83872
84232
|
*/
|
|
83873
84233
|
export declare const TaskManagementV2024ApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
83874
84234
|
/**
|
|
83875
|
-
* Responds with headers only for list of task statuses for pending tasks.
|
|
84235
|
+
* This API is being deprecated. Please use the [task-status-list](https://developer.sailpoint.com/docs/api/v2025/get-task-status-list) endpoint with isnull filtering on the completionStatus field and count=true. Example: /v2025/task-status?count=true&filters=completionStatus isnull Responds with headers only for list of task statuses for pending tasks.
|
|
83876
84236
|
* @summary Retrieve pending task list headers
|
|
83877
84237
|
* @param {number} [offset] Offset into the full result set. Usually specified with *limit* to paginate through the results. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
83878
84238
|
* @param {number} [limit] Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
83879
84239
|
* @param {boolean} [count] If *true* it will populate the *X-Total-Count* response header with the number of results that would be returned if *limit* and *offset* were ignored. Since requesting a total count can have a performance impact, it is recommended not to send **count=true** if that value will not be used. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
83880
84240
|
* @param {*} [axiosOptions] Override http request option.
|
|
84241
|
+
* @deprecated
|
|
83881
84242
|
* @throws {RequiredError}
|
|
83882
84243
|
*/
|
|
83883
84244
|
getPendingTaskHeaders: (offset?: number, limit?: number, count?: boolean, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
83884
84245
|
/**
|
|
83885
|
-
* Retrieve a list of statuses for pending tasks. Types of tasks include account and entitlement aggregation and other general background processing tasks. Data for tasks older than 90 days will not be returned.
|
|
84246
|
+
* This API is being deprecated. Please use the [task-status-list](https://developer.sailpoint.com/docs/api/v2025/get-task-status-list) endpoint with isnull filtering on the completionStatus field to retrieve pending tasks. Example: /v2025/task-status?filters=completionStatus isnull Retrieve a list of statuses for pending tasks. Types of tasks include account and entitlement aggregation and other general background processing tasks. Data for tasks older than 90 days will not be returned.
|
|
83886
84247
|
* @summary Retrieve pending task status list
|
|
83887
84248
|
* @param {number} [offset] Offset into the full result set. Usually specified with *limit* to paginate through the results. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
83888
84249
|
* @param {number} [limit] Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
83889
84250
|
* @param {boolean} [count] If *true* it will populate the *X-Total-Count* response header with the number of results that would be returned if *limit* and *offset* were ignored. Since requesting a total count can have a performance impact, it is recommended not to send **count=true** if that value will not be used. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
83890
84251
|
* @param {*} [axiosOptions] Override http request option.
|
|
84252
|
+
* @deprecated
|
|
83891
84253
|
* @throws {RequiredError}
|
|
83892
84254
|
*/
|
|
83893
84255
|
getPendingTasks: (offset?: number, limit?: number, count?: boolean, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
@@ -83927,22 +84289,24 @@ export declare const TaskManagementV2024ApiAxiosParamCreator: (configuration?: C
|
|
|
83927
84289
|
*/
|
|
83928
84290
|
export declare const TaskManagementV2024ApiFp: (configuration?: Configuration) => {
|
|
83929
84291
|
/**
|
|
83930
|
-
* Responds with headers only for list of task statuses for pending tasks.
|
|
84292
|
+
* This API is being deprecated. Please use the [task-status-list](https://developer.sailpoint.com/docs/api/v2025/get-task-status-list) endpoint with isnull filtering on the completionStatus field and count=true. Example: /v2025/task-status?count=true&filters=completionStatus isnull Responds with headers only for list of task statuses for pending tasks.
|
|
83931
84293
|
* @summary Retrieve pending task list headers
|
|
83932
84294
|
* @param {number} [offset] Offset into the full result set. Usually specified with *limit* to paginate through the results. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
83933
84295
|
* @param {number} [limit] Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
83934
84296
|
* @param {boolean} [count] If *true* it will populate the *X-Total-Count* response header with the number of results that would be returned if *limit* and *offset* were ignored. Since requesting a total count can have a performance impact, it is recommended not to send **count=true** if that value will not be used. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
83935
84297
|
* @param {*} [axiosOptions] Override http request option.
|
|
84298
|
+
* @deprecated
|
|
83936
84299
|
* @throws {RequiredError}
|
|
83937
84300
|
*/
|
|
83938
84301
|
getPendingTaskHeaders(offset?: number, limit?: number, count?: boolean, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
83939
84302
|
/**
|
|
83940
|
-
* Retrieve a list of statuses for pending tasks. Types of tasks include account and entitlement aggregation and other general background processing tasks. Data for tasks older than 90 days will not be returned.
|
|
84303
|
+
* This API is being deprecated. Please use the [task-status-list](https://developer.sailpoint.com/docs/api/v2025/get-task-status-list) endpoint with isnull filtering on the completionStatus field to retrieve pending tasks. Example: /v2025/task-status?filters=completionStatus isnull Retrieve a list of statuses for pending tasks. Types of tasks include account and entitlement aggregation and other general background processing tasks. Data for tasks older than 90 days will not be returned.
|
|
83941
84304
|
* @summary Retrieve pending task status list
|
|
83942
84305
|
* @param {number} [offset] Offset into the full result set. Usually specified with *limit* to paginate through the results. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
83943
84306
|
* @param {number} [limit] Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
83944
84307
|
* @param {boolean} [count] If *true* it will populate the *X-Total-Count* response header with the number of results that would be returned if *limit* and *offset* were ignored. Since requesting a total count can have a performance impact, it is recommended not to send **count=true** if that value will not be used. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
83945
84308
|
* @param {*} [axiosOptions] Override http request option.
|
|
84309
|
+
* @deprecated
|
|
83946
84310
|
* @throws {RequiredError}
|
|
83947
84311
|
*/
|
|
83948
84312
|
getPendingTasks(offset?: number, limit?: number, count?: boolean, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<TaskStatusV2024>>>;
|
|
@@ -83982,18 +84346,20 @@ export declare const TaskManagementV2024ApiFp: (configuration?: Configuration) =
|
|
|
83982
84346
|
*/
|
|
83983
84347
|
export declare const TaskManagementV2024ApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
83984
84348
|
/**
|
|
83985
|
-
* Responds with headers only for list of task statuses for pending tasks.
|
|
84349
|
+
* This API is being deprecated. Please use the [task-status-list](https://developer.sailpoint.com/docs/api/v2025/get-task-status-list) endpoint with isnull filtering on the completionStatus field and count=true. Example: /v2025/task-status?count=true&filters=completionStatus isnull Responds with headers only for list of task statuses for pending tasks.
|
|
83986
84350
|
* @summary Retrieve pending task list headers
|
|
83987
84351
|
* @param {TaskManagementV2024ApiGetPendingTaskHeadersRequest} requestParameters Request parameters.
|
|
83988
84352
|
* @param {*} [axiosOptions] Override http request option.
|
|
84353
|
+
* @deprecated
|
|
83989
84354
|
* @throws {RequiredError}
|
|
83990
84355
|
*/
|
|
83991
84356
|
getPendingTaskHeaders(requestParameters?: TaskManagementV2024ApiGetPendingTaskHeadersRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
83992
84357
|
/**
|
|
83993
|
-
* Retrieve a list of statuses for pending tasks. Types of tasks include account and entitlement aggregation and other general background processing tasks. Data for tasks older than 90 days will not be returned.
|
|
84358
|
+
* This API is being deprecated. Please use the [task-status-list](https://developer.sailpoint.com/docs/api/v2025/get-task-status-list) endpoint with isnull filtering on the completionStatus field to retrieve pending tasks. Example: /v2025/task-status?filters=completionStatus isnull Retrieve a list of statuses for pending tasks. Types of tasks include account and entitlement aggregation and other general background processing tasks. Data for tasks older than 90 days will not be returned.
|
|
83994
84359
|
* @summary Retrieve pending task status list
|
|
83995
84360
|
* @param {TaskManagementV2024ApiGetPendingTasksRequest} requestParameters Request parameters.
|
|
83996
84361
|
* @param {*} [axiosOptions] Override http request option.
|
|
84362
|
+
* @deprecated
|
|
83997
84363
|
* @throws {RequiredError}
|
|
83998
84364
|
*/
|
|
83999
84365
|
getPendingTasks(requestParameters?: TaskManagementV2024ApiGetPendingTasksRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<TaskStatusV2024>>;
|
|
@@ -84149,19 +84515,21 @@ export interface TaskManagementV2024ApiUpdateTaskStatusRequest {
|
|
|
84149
84515
|
*/
|
|
84150
84516
|
export declare class TaskManagementV2024Api extends BaseAPI {
|
|
84151
84517
|
/**
|
|
84152
|
-
* Responds with headers only for list of task statuses for pending tasks.
|
|
84518
|
+
* This API is being deprecated. Please use the [task-status-list](https://developer.sailpoint.com/docs/api/v2025/get-task-status-list) endpoint with isnull filtering on the completionStatus field and count=true. Example: /v2025/task-status?count=true&filters=completionStatus isnull Responds with headers only for list of task statuses for pending tasks.
|
|
84153
84519
|
* @summary Retrieve pending task list headers
|
|
84154
84520
|
* @param {TaskManagementV2024ApiGetPendingTaskHeadersRequest} requestParameters Request parameters.
|
|
84155
84521
|
* @param {*} [axiosOptions] Override http request option.
|
|
84522
|
+
* @deprecated
|
|
84156
84523
|
* @throws {RequiredError}
|
|
84157
84524
|
* @memberof TaskManagementV2024Api
|
|
84158
84525
|
*/
|
|
84159
84526
|
getPendingTaskHeaders(requestParameters?: TaskManagementV2024ApiGetPendingTaskHeadersRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
84160
84527
|
/**
|
|
84161
|
-
* Retrieve a list of statuses for pending tasks. Types of tasks include account and entitlement aggregation and other general background processing tasks. Data for tasks older than 90 days will not be returned.
|
|
84528
|
+
* This API is being deprecated. Please use the [task-status-list](https://developer.sailpoint.com/docs/api/v2025/get-task-status-list) endpoint with isnull filtering on the completionStatus field to retrieve pending tasks. Example: /v2025/task-status?filters=completionStatus isnull Retrieve a list of statuses for pending tasks. Types of tasks include account and entitlement aggregation and other general background processing tasks. Data for tasks older than 90 days will not be returned.
|
|
84162
84529
|
* @summary Retrieve pending task status list
|
|
84163
84530
|
* @param {TaskManagementV2024ApiGetPendingTasksRequest} requestParameters Request parameters.
|
|
84164
84531
|
* @param {*} [axiosOptions] Override http request option.
|
|
84532
|
+
* @deprecated
|
|
84165
84533
|
* @throws {RequiredError}
|
|
84166
84534
|
* @memberof TaskManagementV2024Api
|
|
84167
84535
|
*/
|
|
@@ -85519,11 +85887,10 @@ export declare const WorkItemsV2024ApiAxiosParamCreator: (configuration?: Config
|
|
|
85519
85887
|
* @summary Forward a work item
|
|
85520
85888
|
* @param {string} id The ID of the work item
|
|
85521
85889
|
* @param {WorkItemForwardV2024} workItemForwardV2024
|
|
85522
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
85523
85890
|
* @param {*} [axiosOptions] Override http request option.
|
|
85524
85891
|
* @throws {RequiredError}
|
|
85525
85892
|
*/
|
|
85526
|
-
forwardWorkItem: (id: string, workItemForwardV2024: WorkItemForwardV2024,
|
|
85893
|
+
forwardWorkItem: (id: string, workItemForwardV2024: WorkItemForwardV2024, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
85527
85894
|
/**
|
|
85528
85895
|
* This gets a collection of completed work items belonging to either the specified user(admin required), or the current user.
|
|
85529
85896
|
* @summary Completed work items
|
|
@@ -85539,11 +85906,10 @@ export declare const WorkItemsV2024ApiAxiosParamCreator: (configuration?: Config
|
|
|
85539
85906
|
* This gets a count of completed work items belonging to either the specified user(admin required), or the current user.
|
|
85540
85907
|
* @summary Count completed work items
|
|
85541
85908
|
* @param {string} [ownerId] ID of the work item owner.
|
|
85542
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
85543
85909
|
* @param {*} [axiosOptions] Override http request option.
|
|
85544
85910
|
* @throws {RequiredError}
|
|
85545
85911
|
*/
|
|
85546
|
-
getCountCompletedWorkItems: (ownerId?: string,
|
|
85912
|
+
getCountCompletedWorkItems: (ownerId?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
85547
85913
|
/**
|
|
85548
85914
|
* This gets a count of work items belonging to either the specified user(admin required), or the current user.
|
|
85549
85915
|
* @summary Count work items
|
|
@@ -85644,11 +86010,10 @@ export declare const WorkItemsV2024ApiFp: (configuration?: Configuration) => {
|
|
|
85644
86010
|
* @summary Forward a work item
|
|
85645
86011
|
* @param {string} id The ID of the work item
|
|
85646
86012
|
* @param {WorkItemForwardV2024} workItemForwardV2024
|
|
85647
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
85648
86013
|
* @param {*} [axiosOptions] Override http request option.
|
|
85649
86014
|
* @throws {RequiredError}
|
|
85650
86015
|
*/
|
|
85651
|
-
forwardWorkItem(id: string, workItemForwardV2024: WorkItemForwardV2024,
|
|
86016
|
+
forwardWorkItem(id: string, workItemForwardV2024: WorkItemForwardV2024, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
85652
86017
|
/**
|
|
85653
86018
|
* This gets a collection of completed work items belonging to either the specified user(admin required), or the current user.
|
|
85654
86019
|
* @summary Completed work items
|
|
@@ -85664,11 +86029,10 @@ export declare const WorkItemsV2024ApiFp: (configuration?: Configuration) => {
|
|
|
85664
86029
|
* This gets a count of completed work items belonging to either the specified user(admin required), or the current user.
|
|
85665
86030
|
* @summary Count completed work items
|
|
85666
86031
|
* @param {string} [ownerId] ID of the work item owner.
|
|
85667
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
85668
86032
|
* @param {*} [axiosOptions] Override http request option.
|
|
85669
86033
|
* @throws {RequiredError}
|
|
85670
86034
|
*/
|
|
85671
|
-
getCountCompletedWorkItems(ownerId?: string,
|
|
86035
|
+
getCountCompletedWorkItems(ownerId?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WorkItemsCountV2024>>;
|
|
85672
86036
|
/**
|
|
85673
86037
|
* This gets a count of work items belonging to either the specified user(admin required), or the current user.
|
|
85674
86038
|
* @summary Count work items
|
|
@@ -85912,12 +86276,6 @@ export interface WorkItemsV2024ApiForwardWorkItemRequest {
|
|
|
85912
86276
|
* @memberof WorkItemsV2024ApiForwardWorkItem
|
|
85913
86277
|
*/
|
|
85914
86278
|
readonly workItemForwardV2024: WorkItemForwardV2024;
|
|
85915
|
-
/**
|
|
85916
|
-
* Use this header to enable this experimental API.
|
|
85917
|
-
* @type {string}
|
|
85918
|
-
* @memberof WorkItemsV2024ApiForwardWorkItem
|
|
85919
|
-
*/
|
|
85920
|
-
readonly xSailPointExperimental?: string;
|
|
85921
86279
|
}
|
|
85922
86280
|
/**
|
|
85923
86281
|
* Request parameters for getCompletedWorkItems operation in WorkItemsV2024Api.
|
|
@@ -85962,12 +86320,6 @@ export interface WorkItemsV2024ApiGetCountCompletedWorkItemsRequest {
|
|
|
85962
86320
|
* @memberof WorkItemsV2024ApiGetCountCompletedWorkItems
|
|
85963
86321
|
*/
|
|
85964
86322
|
readonly ownerId?: string;
|
|
85965
|
-
/**
|
|
85966
|
-
* Use this header to enable this experimental API.
|
|
85967
|
-
* @type {string}
|
|
85968
|
-
* @memberof WorkItemsV2024ApiGetCountCompletedWorkItems
|
|
85969
|
-
*/
|
|
85970
|
-
readonly xSailPointExperimental?: string;
|
|
85971
86323
|
}
|
|
85972
86324
|
/**
|
|
85973
86325
|
* Request parameters for getCountWorkItems operation in WorkItemsV2024Api.
|