sailpoint-api-client 1.6.10 → 1.7.1

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.
Files changed (71) hide show
  1. package/beta/README.md +2 -2
  2. package/beta/api.ts +2117 -205
  3. package/beta/common.ts +2 -2
  4. package/beta/package.json +1 -1
  5. package/dist/beta/api.d.ts +1003 -74
  6. package/dist/beta/api.js +2751 -401
  7. package/dist/beta/api.js.map +1 -1
  8. package/dist/beta/common.js +1 -1
  9. package/dist/beta/common.js.map +1 -1
  10. package/dist/index.d.ts +2 -0
  11. package/dist/index.js +6 -3
  12. package/dist/index.js.map +1 -1
  13. package/dist/index.spec.js +18 -0
  14. package/dist/index.spec.js.map +1 -1
  15. package/dist/v2024/api.d.ts +206 -60
  16. package/dist/v2024/api.js +3283 -760
  17. package/dist/v2024/api.js.map +1 -1
  18. package/dist/v2024/common.js +1 -1
  19. package/dist/v2024/common.js.map +1 -1
  20. package/dist/v2025/api.d.ts +4212 -143
  21. package/dist/v2025/api.js +6580 -963
  22. package/dist/v2025/api.js.map +1 -1
  23. package/dist/v2025/common.js +1 -1
  24. package/dist/v2025/common.js.map +1 -1
  25. package/dist/v2026/api.d.ts +818 -0
  26. package/dist/v2026/api.js +800 -0
  27. package/dist/v2026/api.js.map +1 -0
  28. package/dist/v2026/base.d.ts +66 -0
  29. package/dist/v2026/base.js +89 -0
  30. package/dist/v2026/base.js.map +1 -0
  31. package/dist/v2026/common.d.ts +65 -0
  32. package/dist/v2026/common.js +266 -0
  33. package/dist/v2026/common.js.map +1 -0
  34. package/dist/v2026/configuration.d.ts +91 -0
  35. package/dist/v2026/configuration.js +46 -0
  36. package/dist/v2026/configuration.js.map +1 -0
  37. package/dist/v2026/index.d.ts +13 -0
  38. package/dist/v2026/index.js +32 -0
  39. package/dist/v2026/index.js.map +1 -0
  40. package/dist/v3/api.d.ts +184 -12
  41. package/dist/v3/api.js +1278 -285
  42. package/dist/v3/api.js.map +1 -1
  43. package/dist/v3/common.js +1 -1
  44. package/dist/v3/common.js.map +1 -1
  45. package/index.spec.ts +11 -1
  46. package/index.ts +3 -0
  47. package/package.json +1 -1
  48. package/v2024/README.md +2 -2
  49. package/v2024/api.ts +1443 -288
  50. package/v2024/common.ts +2 -2
  51. package/v2024/package.json +1 -1
  52. package/v2025/README.md +2 -2
  53. package/v2025/api.ts +6944 -441
  54. package/v2025/common.ts +2 -2
  55. package/v2025/package.json +1 -1
  56. package/v2026/.openapi-generator/FILES +12 -0
  57. package/v2026/.openapi-generator/VERSION +1 -0
  58. package/v2026/.openapi-generator-ignore +23 -0
  59. package/v2026/README.md +46 -0
  60. package/v2026/api.ts +1188 -0
  61. package/v2026/base.ts +86 -0
  62. package/v2026/common.ts +165 -0
  63. package/v2026/configuration.ts +110 -0
  64. package/v2026/git_push.sh +57 -0
  65. package/v2026/index.ts +18 -0
  66. package/v2026/package.json +34 -0
  67. package/v2026/tsconfig.json +21 -0
  68. package/v3/README.md +2 -2
  69. package/v3/api.ts +675 -109
  70. package/v3/common.ts +2 -2
  71. package/v3/package.json +1 -1
@@ -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
  *
@@ -10898,6 +10936,12 @@ export interface CompletedApprovalV2024 {
10898
10936
  * @memberof CompletedApprovalV2024
10899
10937
  */
10900
10938
  'privilegeLevel'?: string | null;
10939
+ /**
10940
+ *
10941
+ * @type {PendingApprovalMaxPermittedAccessDurationV2024}
10942
+ * @memberof CompletedApprovalV2024
10943
+ */
10944
+ 'maxPermittedAccessDuration'?: PendingApprovalMaxPermittedAccessDurationV2024 | null;
10901
10945
  }
10902
10946
  /**
10903
10947
  * The status after completion.
@@ -14188,6 +14232,18 @@ export interface EntitlementAccessRequestConfigV2024 {
14188
14232
  * @memberof EntitlementAccessRequestConfigV2024
14189
14233
  */
14190
14234
  'reauthorizationRequired'?: boolean;
14235
+ /**
14236
+ * If true, then remove date or sunset date is required in access request of the entitlement.
14237
+ * @type {boolean}
14238
+ * @memberof EntitlementAccessRequestConfigV2024
14239
+ */
14240
+ 'requireEndDate'?: boolean;
14241
+ /**
14242
+ *
14243
+ * @type {PendingApprovalMaxPermittedAccessDurationV2024}
14244
+ * @memberof EntitlementAccessRequestConfigV2024
14245
+ */
14246
+ 'maxPermittedAccessDuration'?: PendingApprovalMaxPermittedAccessDurationV2024 | null;
14191
14247
  }
14192
14248
  /**
14193
14249
  *
@@ -21019,12 +21075,8 @@ export interface JsonPatchOperationV2024 {
21019
21075
  'value'?: UpdateMultiHostSourcesRequestInnerValueV2024;
21020
21076
  }
21021
21077
  export declare const JsonPatchOperationV2024OpV2024: {
21022
- readonly Add: "add";
21023
21078
  readonly Remove: "remove";
21024
21079
  readonly Replace: "replace";
21025
- readonly Move: "move";
21026
- readonly Copy: "copy";
21027
- readonly Test: "test";
21028
21080
  };
21029
21081
  export type JsonPatchOperationV2024OpV2024 = typeof JsonPatchOperationV2024OpV2024[keyof typeof JsonPatchOperationV2024OpV2024];
21030
21082
  /**
@@ -23420,13 +23472,21 @@ export interface ManagedClusterTypeV2024 {
23420
23472
  'managedProcessIds'?: Array<string>;
23421
23473
  }
23422
23474
  /**
23423
- * The Type of Cluster
23475
+ * 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
23476
  * @export
23425
23477
  * @enum {string}
23426
23478
  */
23427
23479
  export declare const ManagedClusterTypesV2024: {
23428
23480
  readonly Idn: "idn";
23429
23481
  readonly Iai: "iai";
23482
+ readonly SpConnectCluster: "spConnectCluster";
23483
+ readonly SqsCluster: "sqsCluster";
23484
+ readonly DasRc: "das-rc";
23485
+ readonly DasPc: "das-pc";
23486
+ readonly DasDc: "das-dc";
23487
+ readonly Pag: "pag";
23488
+ readonly DasAm: "das-am";
23489
+ readonly Standard: "standard";
23430
23490
  };
23431
23491
  export type ManagedClusterTypesV2024 = typeof ManagedClusterTypesV2024[keyof typeof ManagedClusterTypesV2024];
23432
23492
  /**
@@ -27875,6 +27935,32 @@ export declare const PendingApprovalActionV2024: {
27875
27935
  readonly Forwarded: "FORWARDED";
27876
27936
  };
27877
27937
  export type PendingApprovalActionV2024 = typeof PendingApprovalActionV2024[keyof typeof PendingApprovalActionV2024];
27938
+ /**
27939
+ * The maximum duration for which the access is permitted.
27940
+ * @export
27941
+ * @interface PendingApprovalMaxPermittedAccessDurationV2024
27942
+ */
27943
+ export interface PendingApprovalMaxPermittedAccessDurationV2024 {
27944
+ /**
27945
+ * The numeric value of the duration.
27946
+ * @type {number}
27947
+ * @memberof PendingApprovalMaxPermittedAccessDurationV2024
27948
+ */
27949
+ 'value'?: number;
27950
+ /**
27951
+ * The time unit for the duration.
27952
+ * @type {string}
27953
+ * @memberof PendingApprovalMaxPermittedAccessDurationV2024
27954
+ */
27955
+ 'timeUnit'?: PendingApprovalMaxPermittedAccessDurationV2024TimeUnitV2024;
27956
+ }
27957
+ export declare const PendingApprovalMaxPermittedAccessDurationV2024TimeUnitV2024: {
27958
+ readonly Hours: "HOURS";
27959
+ readonly Days: "DAYS";
27960
+ readonly Weeks: "WEEKS";
27961
+ readonly Months: "MONTHS";
27962
+ };
27963
+ export type PendingApprovalMaxPermittedAccessDurationV2024TimeUnitV2024 = typeof PendingApprovalMaxPermittedAccessDurationV2024TimeUnitV2024[keyof typeof PendingApprovalMaxPermittedAccessDurationV2024TimeUnitV2024];
27878
27964
  /**
27879
27965
  * Access item owner\'s identity.
27880
27966
  * @export
@@ -28050,6 +28136,12 @@ export interface PendingApprovalV2024 {
28050
28136
  * @memberof PendingApprovalV2024
28051
28137
  */
28052
28138
  'privilegeLevel'?: string | null;
28139
+ /**
28140
+ *
28141
+ * @type {PendingApprovalMaxPermittedAccessDurationV2024}
28142
+ * @memberof PendingApprovalV2024
28143
+ */
28144
+ 'maxPermittedAccessDuration'?: PendingApprovalMaxPermittedAccessDurationV2024 | null;
28053
28145
  }
28054
28146
  /**
28055
28147
  * 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.
@@ -30065,6 +30157,18 @@ export interface RequestabilityV2024 {
30065
30157
  * @memberof RequestabilityV2024
30066
30158
  */
30067
30159
  'reauthorizationRequired'?: boolean | null;
30160
+ /**
30161
+ * Indicates whether the requester of the containing object must provide access end date.
30162
+ * @type {boolean}
30163
+ * @memberof RequestabilityV2024
30164
+ */
30165
+ 'requireEndDate'?: boolean | null;
30166
+ /**
30167
+ *
30168
+ * @type {AccessDurationV2024}
30169
+ * @memberof RequestabilityV2024
30170
+ */
30171
+ 'maxPermittedAccessDuration'?: AccessDurationV2024 | null;
30068
30172
  /**
30069
30173
  * List describing the steps involved in approving the request.
30070
30174
  * @type {Array<AccessProfileApprovalSchemeV2024>}
@@ -33091,6 +33195,25 @@ export interface RoleMiningEntitlementV2024 {
33091
33195
  */
33092
33196
  'sourceUsagePercent'?: number | null;
33093
33197
  }
33198
+ /**
33199
+ *
33200
+ * @export
33201
+ * @interface RoleMiningIdentityDistributionDistributionInnerV2024
33202
+ */
33203
+ export interface RoleMiningIdentityDistributionDistributionInnerV2024 {
33204
+ /**
33205
+ * The attribute value that identities are grouped by
33206
+ * @type {string}
33207
+ * @memberof RoleMiningIdentityDistributionDistributionInnerV2024
33208
+ */
33209
+ 'attributeValue'?: string;
33210
+ /**
33211
+ * The number of identities that have this attribute value
33212
+ * @type {number}
33213
+ * @memberof RoleMiningIdentityDistributionDistributionInnerV2024
33214
+ */
33215
+ 'count'?: number;
33216
+ }
33094
33217
  /**
33095
33218
  *
33096
33219
  * @export
@@ -33105,12 +33228,10 @@ export interface RoleMiningIdentityDistributionV2024 {
33105
33228
  'attributeName'?: string;
33106
33229
  /**
33107
33230
  *
33108
- * @type {Array<{ [key: string]: any; }>}
33231
+ * @type {Array<RoleMiningIdentityDistributionDistributionInnerV2024>}
33109
33232
  * @memberof RoleMiningIdentityDistributionV2024
33110
33233
  */
33111
- 'distribution'?: Array<{
33112
- [key: string]: any;
33113
- }>;
33234
+ 'distribution'?: Array<RoleMiningIdentityDistributionDistributionInnerV2024>;
33114
33235
  }
33115
33236
  /**
33116
33237
  *
@@ -38198,7 +38319,7 @@ export interface SourceAppPatchDtoV2024 {
38198
38319
  */
38199
38320
  'enabled'?: boolean;
38200
38321
  /**
38201
- * True if the source app is provision request enabled
38322
+ * True if the app allows access request
38202
38323
  * @type {boolean}
38203
38324
  * @memberof SourceAppPatchDtoV2024
38204
38325
  */
@@ -38216,7 +38337,7 @@ export interface SourceAppPatchDtoV2024 {
38216
38337
  */
38217
38338
  'matchAllAccounts'?: boolean;
38218
38339
  /**
38219
- * True if the source app is shown in the app center
38340
+ * True if the app is visible in the request center
38220
38341
  * @type {boolean}
38221
38342
  * @memberof SourceAppPatchDtoV2024
38222
38343
  */
@@ -38283,7 +38404,7 @@ export interface SourceAppV2024 {
38283
38404
  */
38284
38405
  'enabled'?: boolean;
38285
38406
  /**
38286
- * True if the source app is provision request enabled
38407
+ * True if the app allows access request
38287
38408
  * @type {boolean}
38288
38409
  * @memberof SourceAppV2024
38289
38410
  */
@@ -38301,7 +38422,7 @@ export interface SourceAppV2024 {
38301
38422
  */
38302
38423
  'matchAllAccounts'?: boolean;
38303
38424
  /**
38304
- * True if the source app is shown in the app center
38425
+ * True if the app is visible in the request center
38305
38426
  * @type {boolean}
38306
38427
  * @memberof SourceAppV2024
38307
38428
  */
@@ -42510,13 +42631,13 @@ export interface UserAppV2024 {
42510
42631
  */
42511
42632
  'useForPasswordManagement'?: boolean;
42512
42633
  /**
42513
- * True if the source app related to the user app is provision request enabled
42634
+ * True if the app allows access request
42514
42635
  * @type {boolean}
42515
42636
  * @memberof UserAppV2024
42516
42637
  */
42517
42638
  'provisionRequestEnabled'?: boolean;
42518
42639
  /**
42519
- * True if the source app related to the user app is shown in the app center
42640
+ * True if the app is visible in the request center
42520
42641
  * @type {boolean}
42521
42642
  * @memberof UserAppV2024
42522
42643
  */
@@ -51335,7 +51456,7 @@ export declare const CertificationsV2024ApiAxiosParamCreator: (configuration?: C
51335
51456
  */
51336
51457
  getCertificationTask: (id: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
51337
51458
  /**
51338
- * This API returns a single identity campaign certification by its ID. Reviewers for this certification can also call this API. This API does not support requests for certifications assigned to Governance Groups.
51459
+ * This API returns a single identity campaign certification by its ID. Reviewers for this certification can also call this API.
51339
51460
  * @summary Identity certification by id
51340
51461
  * @param {string} id The certification id
51341
51462
  * @param {*} [axiosOptions] Override http request option.
@@ -51459,7 +51580,7 @@ export declare const CertificationsV2024ApiFp: (configuration?: Configuration) =
51459
51580
  */
51460
51581
  getCertificationTask(id: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CertificationTaskV2024>>;
51461
51582
  /**
51462
- * This API returns a single identity campaign certification by its ID. Reviewers for this certification can also call this API. This API does not support requests for certifications assigned to Governance Groups.
51583
+ * This API returns a single identity campaign certification by its ID. Reviewers for this certification can also call this API.
51463
51584
  * @summary Identity certification by id
51464
51585
  * @param {string} id The certification id
51465
51586
  * @param {*} [axiosOptions] Override http request option.
@@ -51583,7 +51704,7 @@ export declare const CertificationsV2024ApiFactory: (configuration?: Configurati
51583
51704
  */
51584
51705
  getCertificationTask(requestParameters: CertificationsV2024ApiGetCertificationTaskRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<CertificationTaskV2024>;
51585
51706
  /**
51586
- * This API returns a single identity campaign certification by its ID. Reviewers for this certification can also call this API. This API does not support requests for certifications assigned to Governance Groups.
51707
+ * This API returns a single identity campaign certification by its ID. Reviewers for this certification can also call this API.
51587
51708
  * @summary Identity certification by id
51588
51709
  * @param {CertificationsV2024ApiGetIdentityCertificationRequest} requestParameters Request parameters.
51589
51710
  * @param {*} [axiosOptions] Override http request option.
@@ -52003,7 +52124,7 @@ export declare class CertificationsV2024Api extends BaseAPI {
52003
52124
  */
52004
52125
  getCertificationTask(requestParameters: CertificationsV2024ApiGetCertificationTaskRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CertificationTaskV2024, any>>;
52005
52126
  /**
52006
- * This API returns a single identity campaign certification by its ID. Reviewers for this certification can also call this API. This API does not support requests for certifications assigned to Governance Groups.
52127
+ * This API returns a single identity campaign certification by its ID. Reviewers for this certification can also call this API.
52007
52128
  * @summary Identity certification by id
52008
52129
  * @param {CertificationsV2024ApiGetIdentityCertificationRequest} requestParameters Request parameters.
52009
52130
  * @param {*} [axiosOptions] Override http request option.
@@ -54654,12 +54775,13 @@ export declare const CustomFormsV2024ApiAxiosParamCreator: (configuration?: Conf
54654
54775
  */
54655
54776
  searchFormElementDataByElementID: (formInstanceID: string, formElementID: string, limit?: number, filters?: string, query?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
54656
54777
  /**
54657
- * No parameters required.
54778
+ * Returns a list of form instances for the tenant. Optionally filter by form definition ID.
54658
54779
  * @summary List form instances by tenant.
54780
+ * @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
54781
  * @param {*} [axiosOptions] Override http request option.
54660
54782
  * @throws {RequiredError}
54661
54783
  */
54662
- searchFormInstancesByTenant: (axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
54784
+ searchFormInstancesByTenant: (filters?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
54663
54785
  /**
54664
54786
  * No parameters required.
54665
54787
  * @summary List predefined select options.
@@ -54825,12 +54947,13 @@ export declare const CustomFormsV2024ApiFp: (configuration?: Configuration) => {
54825
54947
  */
54826
54948
  searchFormElementDataByElementID(formInstanceID: string, formElementID: string, limit?: number, filters?: string, query?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListFormElementDataByElementIDResponseV2024>>;
54827
54949
  /**
54828
- * No parameters required.
54950
+ * Returns a list of form instances for the tenant. Optionally filter by form definition ID.
54829
54951
  * @summary List form instances by tenant.
54952
+ * @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
54953
  * @param {*} [axiosOptions] Override http request option.
54831
54954
  * @throws {RequiredError}
54832
54955
  */
54833
- searchFormInstancesByTenant(axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<ListFormInstancesByTenantResponseV2024>>>;
54956
+ searchFormInstancesByTenant(filters?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<ListFormInstancesByTenantResponseV2024>>>;
54834
54957
  /**
54835
54958
  * No parameters required.
54836
54959
  * @summary List predefined select options.
@@ -54977,12 +55100,13 @@ export declare const CustomFormsV2024ApiFactory: (configuration?: Configuration,
54977
55100
  */
54978
55101
  searchFormElementDataByElementID(requestParameters: CustomFormsV2024ApiSearchFormElementDataByElementIDRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<ListFormElementDataByElementIDResponseV2024>;
54979
55102
  /**
54980
- * No parameters required.
55103
+ * Returns a list of form instances for the tenant. Optionally filter by form definition ID.
54981
55104
  * @summary List form instances by tenant.
55105
+ * @param {CustomFormsV2024ApiSearchFormInstancesByTenantRequest} requestParameters Request parameters.
54982
55106
  * @param {*} [axiosOptions] Override http request option.
54983
55107
  * @throws {RequiredError}
54984
55108
  */
54985
- searchFormInstancesByTenant(axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<ListFormInstancesByTenantResponseV2024>>;
55109
+ searchFormInstancesByTenant(requestParameters?: CustomFormsV2024ApiSearchFormInstancesByTenantRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<ListFormInstancesByTenantResponseV2024>>;
54986
55110
  /**
54987
55111
  * No parameters required.
54988
55112
  * @summary List predefined select options.
@@ -55288,6 +55412,19 @@ export interface CustomFormsV2024ApiSearchFormElementDataByElementIDRequest {
55288
55412
  */
55289
55413
  readonly query?: string;
55290
55414
  }
55415
+ /**
55416
+ * Request parameters for searchFormInstancesByTenant operation in CustomFormsV2024Api.
55417
+ * @export
55418
+ * @interface CustomFormsV2024ApiSearchFormInstancesByTenantRequest
55419
+ */
55420
+ export interface CustomFormsV2024ApiSearchFormInstancesByTenantRequest {
55421
+ /**
55422
+ * 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*
55423
+ * @type {string}
55424
+ * @memberof CustomFormsV2024ApiSearchFormInstancesByTenant
55425
+ */
55426
+ readonly filters?: string;
55427
+ }
55291
55428
  /**
55292
55429
  * Request parameters for showPreviewDataSource operation in CustomFormsV2024Api.
55293
55430
  * @export
@@ -55468,13 +55605,14 @@ export declare class CustomFormsV2024Api extends BaseAPI {
55468
55605
  */
55469
55606
  searchFormElementDataByElementID(requestParameters: CustomFormsV2024ApiSearchFormElementDataByElementIDRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ListFormElementDataByElementIDResponseV2024, any>>;
55470
55607
  /**
55471
- * No parameters required.
55608
+ * Returns a list of form instances for the tenant. Optionally filter by form definition ID.
55472
55609
  * @summary List form instances by tenant.
55610
+ * @param {CustomFormsV2024ApiSearchFormInstancesByTenantRequest} requestParameters Request parameters.
55473
55611
  * @param {*} [axiosOptions] Override http request option.
55474
55612
  * @throws {RequiredError}
55475
55613
  * @memberof CustomFormsV2024Api
55476
55614
  */
55477
- searchFormInstancesByTenant(axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ListFormInstancesByTenantResponseV2024[], any>>;
55615
+ searchFormInstancesByTenant(requestParameters?: CustomFormsV2024ApiSearchFormInstancesByTenantRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ListFormInstancesByTenantResponseV2024[], any>>;
55478
55616
  /**
55479
55617
  * No parameters required.
55480
55618
  * @summary List predefined select options.
@@ -60885,15 +61023,15 @@ export declare const IAIRoleMiningV2024ApiAxiosParamCreator: (configuration?: Co
60885
61023
  patchPotentialRole: (sessionId: string, potentialRoleId: string, patchPotentialRoleRequestInnerV2024: Array<PatchPotentialRoleRequestInnerV2024>, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
60886
61024
  /**
60887
61025
  * 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
61026
+ * @summary Update a potential role session
60889
61027
  * @param {string} sessionId The role mining session id
60890
61028
  * @param {string} potentialRoleId The potential role summary id
60891
- * @param {Array<PatchPotentialRoleRequestInnerV2024>} patchPotentialRoleRequestInnerV2024
61029
+ * @param {Array<JsonPatchOperationV2024>} jsonPatchOperationV2024
60892
61030
  * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
60893
61031
  * @param {*} [axiosOptions] Override http request option.
60894
61032
  * @throws {RequiredError}
60895
61033
  */
60896
- patchPotentialRole_1: (sessionId: string, potentialRoleId: string, patchPotentialRoleRequestInnerV2024: Array<PatchPotentialRoleRequestInnerV2024>, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
61034
+ patchPotentialRoleSession: (sessionId: string, potentialRoleId: string, jsonPatchOperationV2024: Array<JsonPatchOperationV2024>, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
60897
61035
  /**
60898
61036
  * 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
61037
  * @summary Patch a role mining session
@@ -61189,15 +61327,15 @@ export declare const IAIRoleMiningV2024ApiFp: (configuration?: Configuration) =>
61189
61327
  patchPotentialRole(sessionId: string, potentialRoleId: string, patchPotentialRoleRequestInnerV2024: Array<PatchPotentialRoleRequestInnerV2024>, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>>;
61190
61328
  /**
61191
61329
  * 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
61330
+ * @summary Update a potential role session
61193
61331
  * @param {string} sessionId The role mining session id
61194
61332
  * @param {string} potentialRoleId The potential role summary id
61195
- * @param {Array<PatchPotentialRoleRequestInnerV2024>} patchPotentialRoleRequestInnerV2024
61333
+ * @param {Array<JsonPatchOperationV2024>} jsonPatchOperationV2024
61196
61334
  * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
61197
61335
  * @param {*} [axiosOptions] Override http request option.
61198
61336
  * @throws {RequiredError}
61199
61337
  */
61200
- patchPotentialRole_1(sessionId: string, potentialRoleId: string, patchPotentialRoleRequestInnerV2024: Array<PatchPotentialRoleRequestInnerV2024>, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>>;
61338
+ patchPotentialRoleSession(sessionId: string, potentialRoleId: string, jsonPatchOperationV2024: Array<JsonPatchOperationV2024>, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>>;
61201
61339
  /**
61202
61340
  * 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
61341
  * @summary Patch a role mining session
@@ -61405,12 +61543,12 @@ export declare const IAIRoleMiningV2024ApiFactory: (configuration?: Configuratio
61405
61543
  patchPotentialRole(requestParameters: IAIRoleMiningV2024ApiPatchPotentialRoleRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<object>;
61406
61544
  /**
61407
61545
  * 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 {IAIRoleMiningV2024ApiPatchPotentialRole0Request} requestParameters Request parameters.
61546
+ * @summary Update a potential role session
61547
+ * @param {IAIRoleMiningV2024ApiPatchPotentialRoleSessionRequest} requestParameters Request parameters.
61410
61548
  * @param {*} [axiosOptions] Override http request option.
61411
61549
  * @throws {RequiredError}
61412
61550
  */
61413
- patchPotentialRole_1(requestParameters: IAIRoleMiningV2024ApiPatchPotentialRole0Request, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<object>;
61551
+ patchPotentialRoleSession(requestParameters: IAIRoleMiningV2024ApiPatchPotentialRoleSessionRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<object>;
61414
61552
  /**
61415
61553
  * 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
61554
  * @summary Patch a role mining session
@@ -62243,33 +62381,33 @@ export interface IAIRoleMiningV2024ApiPatchPotentialRoleRequest {
62243
62381
  readonly xSailPointExperimental?: string;
62244
62382
  }
62245
62383
  /**
62246
- * Request parameters for patchPotentialRole_1 operation in IAIRoleMiningV2024Api.
62384
+ * Request parameters for patchPotentialRoleSession operation in IAIRoleMiningV2024Api.
62247
62385
  * @export
62248
- * @interface IAIRoleMiningV2024ApiPatchPotentialRole0Request
62386
+ * @interface IAIRoleMiningV2024ApiPatchPotentialRoleSessionRequest
62249
62387
  */
62250
- export interface IAIRoleMiningV2024ApiPatchPotentialRole0Request {
62388
+ export interface IAIRoleMiningV2024ApiPatchPotentialRoleSessionRequest {
62251
62389
  /**
62252
62390
  * The role mining session id
62253
62391
  * @type {string}
62254
- * @memberof IAIRoleMiningV2024ApiPatchPotentialRole0
62392
+ * @memberof IAIRoleMiningV2024ApiPatchPotentialRoleSession
62255
62393
  */
62256
62394
  readonly sessionId: string;
62257
62395
  /**
62258
62396
  * The potential role summary id
62259
62397
  * @type {string}
62260
- * @memberof IAIRoleMiningV2024ApiPatchPotentialRole0
62398
+ * @memberof IAIRoleMiningV2024ApiPatchPotentialRoleSession
62261
62399
  */
62262
62400
  readonly potentialRoleId: string;
62263
62401
  /**
62264
62402
  *
62265
- * @type {Array<PatchPotentialRoleRequestInnerV2024>}
62266
- * @memberof IAIRoleMiningV2024ApiPatchPotentialRole0
62403
+ * @type {Array<JsonPatchOperationV2024>}
62404
+ * @memberof IAIRoleMiningV2024ApiPatchPotentialRoleSession
62267
62405
  */
62268
- readonly patchPotentialRoleRequestInnerV2024: Array<PatchPotentialRoleRequestInnerV2024>;
62406
+ readonly jsonPatchOperationV2024: Array<JsonPatchOperationV2024>;
62269
62407
  /**
62270
62408
  * Use this header to enable this experimental API.
62271
62409
  * @type {string}
62272
- * @memberof IAIRoleMiningV2024ApiPatchPotentialRole0
62410
+ * @memberof IAIRoleMiningV2024ApiPatchPotentialRoleSession
62273
62411
  */
62274
62412
  readonly xSailPointExperimental?: string;
62275
62413
  }
@@ -62538,13 +62676,13 @@ export declare class IAIRoleMiningV2024Api extends BaseAPI {
62538
62676
  patchPotentialRole(requestParameters: IAIRoleMiningV2024ApiPatchPotentialRoleRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any>>;
62539
62677
  /**
62540
62678
  * 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 {IAIRoleMiningV2024ApiPatchPotentialRole0Request} requestParameters Request parameters.
62679
+ * @summary Update a potential role session
62680
+ * @param {IAIRoleMiningV2024ApiPatchPotentialRoleSessionRequest} requestParameters Request parameters.
62543
62681
  * @param {*} [axiosOptions] Override http request option.
62544
62682
  * @throws {RequiredError}
62545
62683
  * @memberof IAIRoleMiningV2024Api
62546
62684
  */
62547
- patchPotentialRole_1(requestParameters: IAIRoleMiningV2024ApiPatchPotentialRole0Request, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any>>;
62685
+ patchPotentialRoleSession(requestParameters: IAIRoleMiningV2024ApiPatchPotentialRoleSessionRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any>>;
62548
62686
  /**
62549
62687
  * 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
62688
  * @summary Patch a role mining session
@@ -82708,7 +82846,7 @@ export declare const SuggestedEntitlementDescriptionV2024ApiAxiosParamCreator: (
82708
82846
  */
82709
82847
  submitSedAssignment: (sedAssignmentV2024: SedAssignmentV2024, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
82710
82848
  /**
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. API responses with batchId that groups Ids together
82849
+ * 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
82850
  * @summary Submit sed batch request
82713
82851
  * @param {SedBatchRequestV2024} [sedBatchRequestV2024] Sed Batch Request
82714
82852
  * @param {*} [axiosOptions] Override http request option.
@@ -82782,7 +82920,7 @@ export declare const SuggestedEntitlementDescriptionV2024ApiFp: (configuration?:
82782
82920
  */
82783
82921
  submitSedAssignment(sedAssignmentV2024: SedAssignmentV2024, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SedAssignmentResponseV2024>>;
82784
82922
  /**
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. API responses with batchId that groups Ids together
82923
+ * 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
82924
  * @summary Submit sed batch request
82787
82925
  * @param {SedBatchRequestV2024} [sedBatchRequestV2024] Sed Batch Request
82788
82926
  * @param {*} [axiosOptions] Override http request option.
@@ -82844,7 +82982,7 @@ export declare const SuggestedEntitlementDescriptionV2024ApiFactory: (configurat
82844
82982
  */
82845
82983
  submitSedAssignment(requestParameters: SuggestedEntitlementDescriptionV2024ApiSubmitSedAssignmentRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<SedAssignmentResponseV2024>;
82846
82984
  /**
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. API responses with batchId that groups Ids together
82985
+ * 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
82986
  * @summary Submit sed batch request
82849
82987
  * @param {SuggestedEntitlementDescriptionV2024ApiSubmitSedBatchRequestRequest} requestParameters Request parameters.
82850
82988
  * @param {*} [axiosOptions] Override http request option.
@@ -83077,7 +83215,7 @@ export declare class SuggestedEntitlementDescriptionV2024Api extends BaseAPI {
83077
83215
  */
83078
83216
  submitSedAssignment(requestParameters: SuggestedEntitlementDescriptionV2024ApiSubmitSedAssignmentRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SedAssignmentResponseV2024, any>>;
83079
83217
  /**
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. API responses with batchId that groups Ids together
83218
+ * 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
83219
  * @summary Submit sed batch request
83082
83220
  * @param {SuggestedEntitlementDescriptionV2024ApiSubmitSedBatchRequestRequest} requestParameters Request parameters.
83083
83221
  * @param {*} [axiosOptions] Override http request option.
@@ -83872,22 +84010,24 @@ export declare class TagsV2024Api extends BaseAPI {
83872
84010
  */
83873
84011
  export declare const TaskManagementV2024ApiAxiosParamCreator: (configuration?: Configuration) => {
83874
84012
  /**
83875
- * Responds with headers only for list of task statuses for pending tasks.
84013
+ * 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
84014
  * @summary Retrieve pending task list headers
83877
84015
  * @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
84016
  * @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
84017
  * @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&#x3D;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
84018
  * @param {*} [axiosOptions] Override http request option.
84019
+ * @deprecated
83881
84020
  * @throws {RequiredError}
83882
84021
  */
83883
84022
  getPendingTaskHeaders: (offset?: number, limit?: number, count?: boolean, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
83884
84023
  /**
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.
84024
+ * 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
84025
  * @summary Retrieve pending task status list
83887
84026
  * @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
84027
  * @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
84028
  * @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&#x3D;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
84029
  * @param {*} [axiosOptions] Override http request option.
84030
+ * @deprecated
83891
84031
  * @throws {RequiredError}
83892
84032
  */
83893
84033
  getPendingTasks: (offset?: number, limit?: number, count?: boolean, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
@@ -83927,22 +84067,24 @@ export declare const TaskManagementV2024ApiAxiosParamCreator: (configuration?: C
83927
84067
  */
83928
84068
  export declare const TaskManagementV2024ApiFp: (configuration?: Configuration) => {
83929
84069
  /**
83930
- * Responds with headers only for list of task statuses for pending tasks.
84070
+ * 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
84071
  * @summary Retrieve pending task list headers
83932
84072
  * @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
84073
  * @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
84074
  * @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&#x3D;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
84075
  * @param {*} [axiosOptions] Override http request option.
84076
+ * @deprecated
83936
84077
  * @throws {RequiredError}
83937
84078
  */
83938
84079
  getPendingTaskHeaders(offset?: number, limit?: number, count?: boolean, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
83939
84080
  /**
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.
84081
+ * 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
84082
  * @summary Retrieve pending task status list
83942
84083
  * @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
84084
  * @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
84085
  * @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&#x3D;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
84086
  * @param {*} [axiosOptions] Override http request option.
84087
+ * @deprecated
83946
84088
  * @throws {RequiredError}
83947
84089
  */
83948
84090
  getPendingTasks(offset?: number, limit?: number, count?: boolean, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<TaskStatusV2024>>>;
@@ -83982,18 +84124,20 @@ export declare const TaskManagementV2024ApiFp: (configuration?: Configuration) =
83982
84124
  */
83983
84125
  export declare const TaskManagementV2024ApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
83984
84126
  /**
83985
- * Responds with headers only for list of task statuses for pending tasks.
84127
+ * 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
84128
  * @summary Retrieve pending task list headers
83987
84129
  * @param {TaskManagementV2024ApiGetPendingTaskHeadersRequest} requestParameters Request parameters.
83988
84130
  * @param {*} [axiosOptions] Override http request option.
84131
+ * @deprecated
83989
84132
  * @throws {RequiredError}
83990
84133
  */
83991
84134
  getPendingTaskHeaders(requestParameters?: TaskManagementV2024ApiGetPendingTaskHeadersRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<void>;
83992
84135
  /**
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.
84136
+ * 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
84137
  * @summary Retrieve pending task status list
83995
84138
  * @param {TaskManagementV2024ApiGetPendingTasksRequest} requestParameters Request parameters.
83996
84139
  * @param {*} [axiosOptions] Override http request option.
84140
+ * @deprecated
83997
84141
  * @throws {RequiredError}
83998
84142
  */
83999
84143
  getPendingTasks(requestParameters?: TaskManagementV2024ApiGetPendingTasksRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<TaskStatusV2024>>;
@@ -84149,19 +84293,21 @@ export interface TaskManagementV2024ApiUpdateTaskStatusRequest {
84149
84293
  */
84150
84294
  export declare class TaskManagementV2024Api extends BaseAPI {
84151
84295
  /**
84152
- * Responds with headers only for list of task statuses for pending tasks.
84296
+ * 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
84297
  * @summary Retrieve pending task list headers
84154
84298
  * @param {TaskManagementV2024ApiGetPendingTaskHeadersRequest} requestParameters Request parameters.
84155
84299
  * @param {*} [axiosOptions] Override http request option.
84300
+ * @deprecated
84156
84301
  * @throws {RequiredError}
84157
84302
  * @memberof TaskManagementV2024Api
84158
84303
  */
84159
84304
  getPendingTaskHeaders(requestParameters?: TaskManagementV2024ApiGetPendingTaskHeadersRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
84160
84305
  /**
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.
84306
+ * 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
84307
  * @summary Retrieve pending task status list
84163
84308
  * @param {TaskManagementV2024ApiGetPendingTasksRequest} requestParameters Request parameters.
84164
84309
  * @param {*} [axiosOptions] Override http request option.
84310
+ * @deprecated
84165
84311
  * @throws {RequiredError}
84166
84312
  * @memberof TaskManagementV2024Api
84167
84313
  */