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.
Files changed (49) hide show
  1. package/beta/.openapi-generator/VERSION +1 -1
  2. package/beta/README.md +2 -2
  3. package/beta/api.ts +2593 -256
  4. package/beta/common.ts +2 -2
  5. package/beta/package.json +1 -1
  6. package/dist/beta/api.d.ts +1253 -109
  7. package/dist/beta/api.js +3218 -425
  8. package/dist/beta/api.js.map +1 -1
  9. package/dist/beta/common.js +1 -1
  10. package/dist/index.spec.js +3 -3
  11. package/dist/index.spec.js.map +1 -1
  12. package/dist/v2024/api.d.ts +481 -129
  13. package/dist/v2024/api.js +3695 -738
  14. package/dist/v2024/api.js.map +1 -1
  15. package/dist/v2024/common.js +1 -1
  16. package/dist/v2025/api.d.ts +5063 -240
  17. package/dist/v2025/api.js +7783 -1068
  18. package/dist/v2025/api.js.map +1 -1
  19. package/dist/v2025/common.js +1 -1
  20. package/dist/v2026/api.d.ts +23 -15
  21. package/dist/v2026/api.js +22 -14
  22. package/dist/v2026/api.js.map +1 -1
  23. package/dist/v2026/common.js +1 -1
  24. package/dist/v3/api.d.ts +197 -16
  25. package/dist/v3/api.js +1279 -289
  26. package/dist/v3/api.js.map +1 -1
  27. package/dist/v3/common.js +1 -1
  28. package/index.spec.ts +3 -3
  29. package/package.json +15 -2
  30. package/v2024/.openapi-generator/VERSION +1 -1
  31. package/v2024/README.md +2 -2
  32. package/v2024/api.ts +1993 -438
  33. package/v2024/common.ts +2 -2
  34. package/v2024/package.json +1 -1
  35. package/v2025/.openapi-generator/VERSION +1 -1
  36. package/v2025/README.md +2 -2
  37. package/v2025/api.ts +8350 -604
  38. package/v2025/common.ts +2 -2
  39. package/v2025/package.json +1 -1
  40. package/v2026/.openapi-generator/VERSION +1 -1
  41. package/v2026/README.md +2 -2
  42. package/v2026/api.ts +23 -15
  43. package/v2026/common.ts +2 -2
  44. package/v2026/package.json +1 -1
  45. package/v3/.openapi-generator/VERSION +1 -1
  46. package/v3/README.md +2 -2
  47. package/v3/api.ts +689 -114
  48. package/v3/common.ts +2 -2
  49. package/v3/package.json +1 -1
@@ -97,6 +97,32 @@ export declare const AccessCriteriaCriteriaListInnerBetaTypeBeta: {
97
97
  readonly Entitlement: "ENTITLEMENT";
98
98
  };
99
99
  export type AccessCriteriaCriteriaListInnerBetaTypeBeta = typeof AccessCriteriaCriteriaListInnerBetaTypeBeta[keyof typeof AccessCriteriaCriteriaListInnerBetaTypeBeta];
100
+ /**
101
+ *
102
+ * @export
103
+ * @interface AccessDurationBeta
104
+ */
105
+ export interface AccessDurationBeta {
106
+ /**
107
+ * The numeric value representing the amount of time, which is defined in the **timeUnit**.
108
+ * @type {number}
109
+ * @memberof AccessDurationBeta
110
+ */
111
+ 'value'?: number;
112
+ /**
113
+ * The unit of time that corresponds to the **value**. It defines the scale of the time period.
114
+ * @type {string}
115
+ * @memberof AccessDurationBeta
116
+ */
117
+ 'timeUnit'?: AccessDurationBetaTimeUnitBeta;
118
+ }
119
+ export declare const AccessDurationBetaTimeUnitBeta: {
120
+ readonly Hours: "HOURS";
121
+ readonly Days: "DAYS";
122
+ readonly Weeks: "WEEKS";
123
+ readonly Months: "MONTHS";
124
+ };
125
+ export type AccessDurationBetaTimeUnitBeta = typeof AccessDurationBetaTimeUnitBeta[keyof typeof AccessDurationBetaTimeUnitBeta];
100
126
  /**
101
127
  *
102
128
  * @export
@@ -1025,12 +1051,24 @@ export interface AccessProfileBeta {
1025
1051
  * @memberof AccessProfileBeta
1026
1052
  */
1027
1053
  'segments'?: Array<string> | null;
1054
+ /**
1055
+ *
1056
+ * @type {AttributeDTOListBeta}
1057
+ * @memberof AccessProfileBeta
1058
+ */
1059
+ 'accessModelMetadata'?: AttributeDTOListBeta;
1028
1060
  /**
1029
1061
  *
1030
1062
  * @type {ProvisioningCriteriaLevel1Beta}
1031
1063
  * @memberof AccessProfileBeta
1032
1064
  */
1033
1065
  'provisioningCriteria'?: ProvisioningCriteriaLevel1Beta | null;
1066
+ /**
1067
+ *
1068
+ * @type {Array<OwnerReferenceBeta>}
1069
+ * @memberof AccessProfileBeta
1070
+ */
1071
+ 'additionalOwners'?: Array<OwnerReferenceBeta> | null;
1034
1072
  }
1035
1073
  /**
1036
1074
  *
@@ -1403,6 +1441,226 @@ export interface AccessRecommendationMessageBeta {
1403
1441
  */
1404
1442
  'interpretation'?: string;
1405
1443
  }
1444
+ /**
1445
+ *
1446
+ * @export
1447
+ * @interface AccessRequestAdminItemStatusBeta
1448
+ */
1449
+ export interface AccessRequestAdminItemStatusBeta {
1450
+ /**
1451
+ * ID of the access request. This is a new property as of 2025. Older access requests may not have an ID.
1452
+ * @type {string}
1453
+ * @memberof AccessRequestAdminItemStatusBeta
1454
+ */
1455
+ 'id'?: string | null;
1456
+ /**
1457
+ * Human-readable display name of the item being requested.
1458
+ * @type {string}
1459
+ * @memberof AccessRequestAdminItemStatusBeta
1460
+ */
1461
+ 'name'?: string | null;
1462
+ /**
1463
+ * Type of requested object.
1464
+ * @type {string}
1465
+ * @memberof AccessRequestAdminItemStatusBeta
1466
+ */
1467
+ 'type'?: AccessRequestAdminItemStatusBetaTypeBeta | null;
1468
+ /**
1469
+ *
1470
+ * @type {AccessRequestAdminItemStatusCancelledRequestDetailsBeta}
1471
+ * @memberof AccessRequestAdminItemStatusBeta
1472
+ */
1473
+ 'cancelledRequestDetails'?: AccessRequestAdminItemStatusCancelledRequestDetailsBeta;
1474
+ /**
1475
+ * List of localized error messages, if any, encountered during the approval/provisioning process.
1476
+ * @type {Array<Array<ErrorMessageDto1Beta>>}
1477
+ * @memberof AccessRequestAdminItemStatusBeta
1478
+ */
1479
+ 'errorMessages'?: Array<Array<ErrorMessageDto1Beta>> | null;
1480
+ /**
1481
+ *
1482
+ * @type {RequestedItemStatusRequestStateBeta}
1483
+ * @memberof AccessRequestAdminItemStatusBeta
1484
+ */
1485
+ 'state'?: RequestedItemStatusRequestStateBeta;
1486
+ /**
1487
+ * Approval details for each item.
1488
+ * @type {Array<ApprovalStatusDto1Beta>}
1489
+ * @memberof AccessRequestAdminItemStatusBeta
1490
+ */
1491
+ 'approvalDetails'?: Array<ApprovalStatusDto1Beta>;
1492
+ /**
1493
+ * Manual work items created for provisioning the item.
1494
+ * @type {Array<ManualWorkItemDetails1Beta>}
1495
+ * @memberof AccessRequestAdminItemStatusBeta
1496
+ */
1497
+ 'manualWorkItemDetails'?: Array<ManualWorkItemDetails1Beta> | null;
1498
+ /**
1499
+ * Id of associated account activity item.
1500
+ * @type {string}
1501
+ * @memberof AccessRequestAdminItemStatusBeta
1502
+ */
1503
+ 'accountActivityItemId'?: string;
1504
+ /**
1505
+ *
1506
+ * @type {AccessRequestTypeBeta}
1507
+ * @memberof AccessRequestAdminItemStatusBeta
1508
+ */
1509
+ 'requestType'?: AccessRequestTypeBeta | null;
1510
+ /**
1511
+ * When the request was last modified.
1512
+ * @type {string}
1513
+ * @memberof AccessRequestAdminItemStatusBeta
1514
+ */
1515
+ 'modified'?: string | null;
1516
+ /**
1517
+ * When the request was created.
1518
+ * @type {string}
1519
+ * @memberof AccessRequestAdminItemStatusBeta
1520
+ */
1521
+ 'created'?: string;
1522
+ /**
1523
+ *
1524
+ * @type {AccessItemRequesterBeta}
1525
+ * @memberof AccessRequestAdminItemStatusBeta
1526
+ */
1527
+ 'requester'?: AccessItemRequesterBeta;
1528
+ /**
1529
+ *
1530
+ * @type {RequestedItemStatusRequestedForBeta}
1531
+ * @memberof AccessRequestAdminItemStatusBeta
1532
+ */
1533
+ 'requestedFor'?: RequestedItemStatusRequestedForBeta;
1534
+ /**
1535
+ *
1536
+ * @type {RequestedItemStatusRequesterCommentBeta}
1537
+ * @memberof AccessRequestAdminItemStatusBeta
1538
+ */
1539
+ 'requesterComment'?: RequestedItemStatusRequesterCommentBeta;
1540
+ /**
1541
+ *
1542
+ * @type {AccessRequestAdminItemStatusSodViolationContextBeta}
1543
+ * @memberof AccessRequestAdminItemStatusBeta
1544
+ */
1545
+ 'sodViolationContext'?: AccessRequestAdminItemStatusSodViolationContextBeta;
1546
+ /**
1547
+ *
1548
+ * @type {RequestedItemStatusProvisioningDetailsBeta}
1549
+ * @memberof AccessRequestAdminItemStatusBeta
1550
+ */
1551
+ 'provisioningDetails'?: RequestedItemStatusProvisioningDetailsBeta;
1552
+ /**
1553
+ *
1554
+ * @type {RequestedItemStatusPreApprovalTriggerDetailsBeta}
1555
+ * @memberof AccessRequestAdminItemStatusBeta
1556
+ */
1557
+ 'preApprovalTriggerDetails'?: RequestedItemStatusPreApprovalTriggerDetailsBeta;
1558
+ /**
1559
+ * A list of Phases that the Access Request has gone through in order, to help determine the status of the request.
1560
+ * @type {Array<AccessRequestPhasesBeta>}
1561
+ * @memberof AccessRequestAdminItemStatusBeta
1562
+ */
1563
+ 'accessRequestPhases'?: Array<AccessRequestPhasesBeta> | null;
1564
+ /**
1565
+ * Description associated to the requested object.
1566
+ * @type {string}
1567
+ * @memberof AccessRequestAdminItemStatusBeta
1568
+ */
1569
+ 'description'?: string | null;
1570
+ /**
1571
+ * When the role access is scheduled for removal.
1572
+ * @type {string}
1573
+ * @memberof AccessRequestAdminItemStatusBeta
1574
+ */
1575
+ 'removeDate'?: string | null;
1576
+ /**
1577
+ * True if the request can be canceled.
1578
+ * @type {boolean}
1579
+ * @memberof AccessRequestAdminItemStatusBeta
1580
+ */
1581
+ 'cancelable'?: boolean;
1582
+ /**
1583
+ * True if re-auth is required.
1584
+ * @type {boolean}
1585
+ * @memberof AccessRequestAdminItemStatusBeta
1586
+ */
1587
+ 'reauthorizationRequired'?: boolean;
1588
+ /**
1589
+ * This is the account activity id.
1590
+ * @type {string}
1591
+ * @memberof AccessRequestAdminItemStatusBeta
1592
+ */
1593
+ 'accessRequestId'?: string;
1594
+ /**
1595
+ * Arbitrary key-value pairs, if any were included in the corresponding access request
1596
+ * @type {{ [key: string]: string; }}
1597
+ * @memberof AccessRequestAdminItemStatusBeta
1598
+ */
1599
+ 'clientMetadata'?: {
1600
+ [key: string]: string;
1601
+ } | null;
1602
+ }
1603
+ export declare const AccessRequestAdminItemStatusBetaTypeBeta: {
1604
+ readonly AccessProfile: "ACCESS_PROFILE";
1605
+ readonly Role: "ROLE";
1606
+ readonly Entitlement: "ENTITLEMENT";
1607
+ };
1608
+ export type AccessRequestAdminItemStatusBetaTypeBeta = typeof AccessRequestAdminItemStatusBetaTypeBeta[keyof typeof AccessRequestAdminItemStatusBetaTypeBeta];
1609
+ /**
1610
+ *
1611
+ * @export
1612
+ * @interface AccessRequestAdminItemStatusCancelledRequestDetailsBeta
1613
+ */
1614
+ export interface AccessRequestAdminItemStatusCancelledRequestDetailsBeta {
1615
+ /**
1616
+ * Comment made by the owner when cancelling the associated request.
1617
+ * @type {string}
1618
+ * @memberof AccessRequestAdminItemStatusCancelledRequestDetailsBeta
1619
+ */
1620
+ 'comment'?: string;
1621
+ /**
1622
+ *
1623
+ * @type {OwnerDtoBeta}
1624
+ * @memberof AccessRequestAdminItemStatusCancelledRequestDetailsBeta
1625
+ */
1626
+ 'owner'?: OwnerDtoBeta;
1627
+ /**
1628
+ * Date comment was added by the owner when cancelling the associated request.
1629
+ * @type {string}
1630
+ * @memberof AccessRequestAdminItemStatusCancelledRequestDetailsBeta
1631
+ */
1632
+ 'modified'?: string;
1633
+ }
1634
+ /**
1635
+ *
1636
+ * @export
1637
+ * @interface AccessRequestAdminItemStatusSodViolationContextBeta
1638
+ */
1639
+ export interface AccessRequestAdminItemStatusSodViolationContextBeta {
1640
+ /**
1641
+ * The status of SOD violation check
1642
+ * @type {string}
1643
+ * @memberof AccessRequestAdminItemStatusSodViolationContextBeta
1644
+ */
1645
+ 'state'?: AccessRequestAdminItemStatusSodViolationContextBetaStateBeta | null;
1646
+ /**
1647
+ * The id of the Violation check event
1648
+ * @type {string}
1649
+ * @memberof AccessRequestAdminItemStatusSodViolationContextBeta
1650
+ */
1651
+ 'uuid'?: string | null;
1652
+ /**
1653
+ *
1654
+ * @type {SodViolationCheckResult1Beta}
1655
+ * @memberof AccessRequestAdminItemStatusSodViolationContextBeta
1656
+ */
1657
+ 'violationCheckResult'?: SodViolationCheckResult1Beta;
1658
+ }
1659
+ export declare const AccessRequestAdminItemStatusSodViolationContextBetaStateBeta: {
1660
+ readonly Success: "SUCCESS";
1661
+ readonly Error: "ERROR";
1662
+ };
1663
+ export type AccessRequestAdminItemStatusSodViolationContextBetaStateBeta = typeof AccessRequestAdminItemStatusSodViolationContextBetaStateBeta[keyof typeof AccessRequestAdminItemStatusSodViolationContextBetaStateBeta];
1406
1664
  /**
1407
1665
  *
1408
1666
  * @export
@@ -2260,13 +2518,14 @@ export interface AccessRequestTrackingBeta {
2260
2518
  'accessRequestIds'?: Array<string>;
2261
2519
  }
2262
2520
  /**
2263
- * Access request type. Defaults to GRANT_ACCESS. REVOKE_ACCESS type can only have a single Identity ID in the requestedFor field.
2521
+ * 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.
2264
2522
  * @export
2265
2523
  * @enum {string}
2266
2524
  */
2267
2525
  export declare const AccessRequestTypeBeta: {
2268
2526
  readonly GrantAccess: "GRANT_ACCESS";
2269
2527
  readonly RevokeAccess: "REVOKE_ACCESS";
2528
+ readonly ModifyAccess: "MODIFY_ACCESS";
2270
2529
  };
2271
2530
  export type AccessRequestTypeBeta = typeof AccessRequestTypeBeta[keyof typeof AccessRequestTypeBeta];
2272
2531
  /**
@@ -3910,6 +4169,49 @@ export interface AppAccountDetailsSourceAccountBeta {
3910
4169
  */
3911
4170
  'sourceDisplayName'?: string;
3912
4171
  }
4172
+ /**
4173
+ *
4174
+ * @export
4175
+ * @interface ApprovalForwardHistory1Beta
4176
+ */
4177
+ export interface ApprovalForwardHistory1Beta {
4178
+ /**
4179
+ * Display name of approver from whom the approval was forwarded.
4180
+ * @type {string}
4181
+ * @memberof ApprovalForwardHistory1Beta
4182
+ */
4183
+ 'oldApproverName'?: string;
4184
+ /**
4185
+ * Display name of approver to whom the approval was forwarded.
4186
+ * @type {string}
4187
+ * @memberof ApprovalForwardHistory1Beta
4188
+ */
4189
+ 'newApproverName'?: string;
4190
+ /**
4191
+ * Comment made while forwarding.
4192
+ * @type {string}
4193
+ * @memberof ApprovalForwardHistory1Beta
4194
+ */
4195
+ 'comment'?: string | null;
4196
+ /**
4197
+ * Time at which approval was forwarded.
4198
+ * @type {string}
4199
+ * @memberof ApprovalForwardHistory1Beta
4200
+ */
4201
+ 'modified'?: string;
4202
+ /**
4203
+ * Display name of forwarder who forwarded the approval.
4204
+ * @type {string}
4205
+ * @memberof ApprovalForwardHistory1Beta
4206
+ */
4207
+ 'forwarderName'?: string | null;
4208
+ /**
4209
+ *
4210
+ * @type {ReassignmentTypeBeta}
4211
+ * @memberof ApprovalForwardHistory1Beta
4212
+ */
4213
+ 'reassignmentType'?: ReassignmentTypeBeta;
4214
+ }
3913
4215
  /**
3914
4216
  *
3915
4217
  * @export
@@ -4161,6 +4463,67 @@ export declare const ApprovalStatusBeta: {
4161
4463
  readonly Cancelled: "CANCELLED";
4162
4464
  };
4163
4465
  export type ApprovalStatusBeta = typeof ApprovalStatusBeta[keyof typeof ApprovalStatusBeta];
4466
+ /**
4467
+ *
4468
+ * @export
4469
+ * @interface ApprovalStatusDto1Beta
4470
+ */
4471
+ export interface ApprovalStatusDto1Beta {
4472
+ /**
4473
+ * True if the request for this item was forwarded from one owner to another.
4474
+ * @type {boolean}
4475
+ * @memberof ApprovalStatusDto1Beta
4476
+ */
4477
+ 'forwarded'?: boolean;
4478
+ /**
4479
+ *
4480
+ * @type {ApprovalStatusDtoOriginalOwnerBeta}
4481
+ * @memberof ApprovalStatusDto1Beta
4482
+ */
4483
+ 'originalOwner'?: ApprovalStatusDtoOriginalOwnerBeta;
4484
+ /**
4485
+ *
4486
+ * @type {ApprovalStatusDtoCurrentOwnerBeta}
4487
+ * @memberof ApprovalStatusDto1Beta
4488
+ */
4489
+ 'currentOwner'?: ApprovalStatusDtoCurrentOwnerBeta;
4490
+ /**
4491
+ * Time at which item was modified.
4492
+ * @type {string}
4493
+ * @memberof ApprovalStatusDto1Beta
4494
+ */
4495
+ 'modified'?: string | null;
4496
+ /**
4497
+ *
4498
+ * @type {ManualWorkItemStateBeta}
4499
+ * @memberof ApprovalStatusDto1Beta
4500
+ */
4501
+ 'status'?: ManualWorkItemStateBeta;
4502
+ /**
4503
+ *
4504
+ * @type {ApprovalSchemeBeta}
4505
+ * @memberof ApprovalStatusDto1Beta
4506
+ */
4507
+ 'scheme'?: ApprovalSchemeBeta;
4508
+ /**
4509
+ * If the request failed, includes any error messages that were generated.
4510
+ * @type {Array<ErrorMessageDto1Beta>}
4511
+ * @memberof ApprovalStatusDto1Beta
4512
+ */
4513
+ 'errorMessages'?: Array<ErrorMessageDto1Beta> | null;
4514
+ /**
4515
+ * Comment, if any, provided by the approver.
4516
+ * @type {string}
4517
+ * @memberof ApprovalStatusDto1Beta
4518
+ */
4519
+ 'comment'?: string | null;
4520
+ /**
4521
+ * The date the role or access profile or entitlement is no longer assigned to the specified identity.
4522
+ * @type {string}
4523
+ * @memberof ApprovalStatusDto1Beta
4524
+ */
4525
+ 'removeDate'?: string | null;
4526
+ }
4164
4527
  /**
4165
4528
  *
4166
4529
  * @export
@@ -5992,6 +6355,31 @@ export interface CancelableAccountActivityBeta {
5992
6355
  */
5993
6356
  'cancelComment'?: CommentBeta | null;
5994
6357
  }
6358
+ /**
6359
+ * Provides additional details for a request that has been cancelled.
6360
+ * @export
6361
+ * @interface CancelledRequestDetails1Beta
6362
+ */
6363
+ export interface CancelledRequestDetails1Beta {
6364
+ /**
6365
+ * Comment made by the owner when cancelling the associated request.
6366
+ * @type {string}
6367
+ * @memberof CancelledRequestDetails1Beta
6368
+ */
6369
+ 'comment'?: string;
6370
+ /**
6371
+ *
6372
+ * @type {OwnerDtoBeta}
6373
+ * @memberof CancelledRequestDetails1Beta
6374
+ */
6375
+ 'owner'?: OwnerDtoBeta;
6376
+ /**
6377
+ * Date comment was added by the owner when cancelling the associated request.
6378
+ * @type {string}
6379
+ * @memberof CancelledRequestDetails1Beta
6380
+ */
6381
+ 'modified'?: string;
6382
+ }
5995
6383
  /**
5996
6384
  * Provides additional details for a request that has been cancelled.
5997
6385
  * @export
@@ -7046,10 +7434,10 @@ export interface CompletedApprovalBeta {
7046
7434
  'currentRemoveDate'?: string | null;
7047
7435
  /**
7048
7436
  *
7049
- * @type {SodViolationContextCheckCompleted1Beta}
7437
+ * @type {SodViolationContextCheckCompleted2Beta}
7050
7438
  * @memberof CompletedApprovalBeta
7051
7439
  */
7052
- 'sodViolationContext'?: SodViolationContextCheckCompleted1Beta | null;
7440
+ 'sodViolationContext'?: SodViolationContextCheckCompleted2Beta | null;
7053
7441
  /**
7054
7442
  *
7055
7443
  * @type {CompletedApprovalPreApprovalTriggerResultBeta}
@@ -7076,6 +7464,12 @@ export interface CompletedApprovalBeta {
7076
7464
  * @memberof CompletedApprovalBeta
7077
7465
  */
7078
7466
  'privilegeLevel'?: string | null;
7467
+ /**
7468
+ *
7469
+ * @type {PendingApprovalMaxPermittedAccessDurationBeta}
7470
+ * @memberof CompletedApprovalBeta
7471
+ */
7472
+ 'maxPermittedAccessDuration'?: PendingApprovalMaxPermittedAccessDurationBeta | null;
7079
7473
  }
7080
7474
  /**
7081
7475
  * If the access request submitted event trigger is configured and this access request was intercepted by it, then this is the result of the trigger\'s decision to either approve or deny the request.
@@ -9194,6 +9588,18 @@ export interface EntitlementAccessRequestConfigBeta {
9194
9588
  * @memberof EntitlementAccessRequestConfigBeta
9195
9589
  */
9196
9590
  'reauthorizationRequired'?: boolean;
9591
+ /**
9592
+ * If true, then remove date or sunset date is required in access request of the entitlement.
9593
+ * @type {boolean}
9594
+ * @memberof EntitlementAccessRequestConfigBeta
9595
+ */
9596
+ 'requireEndDate'?: boolean;
9597
+ /**
9598
+ *
9599
+ * @type {PendingApprovalMaxPermittedAccessDurationBeta}
9600
+ * @memberof EntitlementAccessRequestConfigBeta
9601
+ */
9602
+ 'maxPermittedAccessDuration'?: PendingApprovalMaxPermittedAccessDurationBeta | null;
9197
9603
  }
9198
9604
  /**
9199
9605
  *
@@ -9617,6 +10023,31 @@ export interface ErrorMessageBeta {
9617
10023
  */
9618
10024
  'text'?: string;
9619
10025
  }
10026
+ /**
10027
+ *
10028
+ * @export
10029
+ * @interface ErrorMessageDto1Beta
10030
+ */
10031
+ export interface ErrorMessageDto1Beta {
10032
+ /**
10033
+ * The locale for the message text, a BCP 47 language tag.
10034
+ * @type {string}
10035
+ * @memberof ErrorMessageDto1Beta
10036
+ */
10037
+ 'locale'?: string | null;
10038
+ /**
10039
+ *
10040
+ * @type {LocaleOriginBeta}
10041
+ * @memberof ErrorMessageDto1Beta
10042
+ */
10043
+ 'localeOrigin'?: LocaleOriginBeta | null;
10044
+ /**
10045
+ * Actual text of the error message in the indicated locale.
10046
+ * @type {string}
10047
+ * @memberof ErrorMessageDto1Beta
10048
+ */
10049
+ 'text'?: string;
10050
+ }
9620
10051
  /**
9621
10052
  *
9622
10053
  * @export
@@ -12244,6 +12675,12 @@ export interface GetRoleAssignments200ResponseInnerBeta {
12244
12675
  * @memberof GetRoleAssignments200ResponseInnerBeta
12245
12676
  */
12246
12677
  'addedDate'?: string;
12678
+ /**
12679
+ * Date that the assignment will be removed
12680
+ * @type {string}
12681
+ * @memberof GetRoleAssignments200ResponseInnerBeta
12682
+ */
12683
+ 'removeDate'?: string | null;
12247
12684
  /**
12248
12685
  * Comments added by the user when the assignment was made
12249
12686
  * @type {string}
@@ -12280,12 +12717,6 @@ export interface GetRoleAssignments200ResponseInnerBeta {
12280
12717
  * @memberof GetRoleAssignments200ResponseInnerBeta
12281
12718
  */
12282
12719
  'accountTargets'?: Array<RoleTargetDtoBeta>;
12283
- /**
12284
- * Date that the assignment will be removed
12285
- * @type {string}
12286
- * @memberof GetRoleAssignments200ResponseInnerBeta
12287
- */
12288
- 'removeDate'?: string | null;
12289
12720
  }
12290
12721
  /**
12291
12722
  * OAuth2 Grant Type
@@ -14352,12 +14783,8 @@ export interface JsonPatchOperationBeta {
14352
14783
  'value'?: UpdateMultiHostSourcesRequestInnerValueBeta;
14353
14784
  }
14354
14785
  export declare const JsonPatchOperationBetaOpBeta: {
14355
- readonly Add: "add";
14356
14786
  readonly Remove: "remove";
14357
14787
  readonly Replace: "replace";
14358
- readonly Move: "move";
14359
- readonly Copy: "copy";
14360
- readonly Test: "test";
14361
14788
  };
14362
14789
  export type JsonPatchOperationBetaOpBeta = typeof JsonPatchOperationBetaOpBeta[keyof typeof JsonPatchOperationBetaOpBeta];
14363
14790
  /**
@@ -16187,7 +16614,73 @@ export interface ManagedClusterBeta {
16187
16614
  * @memberof ManagedClusterBeta
16188
16615
  */
16189
16616
  'updatedAt'?: string | null;
16617
+ /**
16618
+ * The date/time this cluster was notified for the last release
16619
+ * @type {string}
16620
+ * @memberof ManagedClusterBeta
16621
+ */
16622
+ 'lastReleaseNotifiedAt'?: string | null;
16623
+ /**
16624
+ *
16625
+ * @type {ManagedClusterUpdatePreferencesBeta}
16626
+ * @memberof ManagedClusterBeta
16627
+ */
16628
+ 'updatePreferences'?: ManagedClusterUpdatePreferencesBeta;
16629
+ /**
16630
+ * The current installed release on the Managed cluster
16631
+ * @type {string}
16632
+ * @memberof ManagedClusterBeta
16633
+ */
16634
+ 'currentInstalledReleaseVersion'?: string | null;
16635
+ /**
16636
+ * New available updates for the Managed cluster
16637
+ * @type {string}
16638
+ * @memberof ManagedClusterBeta
16639
+ */
16640
+ 'updatePackage'?: string | null;
16641
+ /**
16642
+ * The time at which out of date notification was sent for the Managed cluster
16643
+ * @type {string}
16644
+ * @memberof ManagedClusterBeta
16645
+ */
16646
+ 'isOutOfDateNotifiedAt'?: string | null;
16647
+ /**
16648
+ * The consolidated Health Status for the Managed cluster
16649
+ * @type {string}
16650
+ * @memberof ManagedClusterBeta
16651
+ */
16652
+ 'consolidatedHealthIndicatorsStatus'?: ManagedClusterBetaConsolidatedHealthIndicatorsStatusBeta | null;
16653
+ /**
16654
+ *
16655
+ * @type {ManagedClusterEncryptionConfigBeta}
16656
+ * @memberof ManagedClusterBeta
16657
+ */
16658
+ 'encryptionConfiguration'?: ManagedClusterEncryptionConfigBeta;
16190
16659
  }
16660
+ export declare const ManagedClusterBetaConsolidatedHealthIndicatorsStatusBeta: {
16661
+ readonly Normal: "NORMAL";
16662
+ readonly Warning: "WARNING";
16663
+ readonly Error: "ERROR";
16664
+ };
16665
+ export type ManagedClusterBetaConsolidatedHealthIndicatorsStatusBeta = typeof ManagedClusterBetaConsolidatedHealthIndicatorsStatusBeta[keyof typeof ManagedClusterBetaConsolidatedHealthIndicatorsStatusBeta];
16666
+ /**
16667
+ * Defines the encryption settings for a managed cluster, including the format used for storing and processing encrypted data.
16668
+ * @export
16669
+ * @interface ManagedClusterEncryptionConfigBeta
16670
+ */
16671
+ export interface ManagedClusterEncryptionConfigBeta {
16672
+ /**
16673
+ * Specifies the format used for encrypted data, such as secrets. The format determines how the encrypted data is structured and processed.
16674
+ * @type {string}
16675
+ * @memberof ManagedClusterEncryptionConfigBeta
16676
+ */
16677
+ 'format'?: ManagedClusterEncryptionConfigBetaFormatBeta;
16678
+ }
16679
+ export declare const ManagedClusterEncryptionConfigBetaFormatBeta: {
16680
+ readonly V2: "V2";
16681
+ readonly V3: "V3";
16682
+ };
16683
+ export type ManagedClusterEncryptionConfigBetaFormatBeta = typeof ManagedClusterEncryptionConfigBetaFormatBeta[keyof typeof ManagedClusterEncryptionConfigBetaFormatBeta];
16191
16684
  /**
16192
16685
  * Managed Cluster key pair for Cluster
16193
16686
  * @export
@@ -16252,15 +16745,53 @@ export interface ManagedClusterRedisBeta {
16252
16745
  'redisPort'?: number;
16253
16746
  }
16254
16747
  /**
16255
- * The Type of Cluster
16748
+ * 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
16256
16749
  * @export
16257
16750
  * @enum {string}
16258
16751
  */
16259
16752
  export declare const ManagedClusterTypesBeta: {
16260
16753
  readonly Idn: "idn";
16261
16754
  readonly Iai: "iai";
16755
+ readonly SpConnectCluster: "spConnectCluster";
16756
+ readonly SqsCluster: "sqsCluster";
16757
+ readonly DasRc: "das-rc";
16758
+ readonly DasPc: "das-pc";
16759
+ readonly DasDc: "das-dc";
16760
+ readonly Pag: "pag";
16761
+ readonly DasAm: "das-am";
16762
+ readonly Standard: "standard";
16262
16763
  };
16263
16764
  export type ManagedClusterTypesBeta = typeof ManagedClusterTypesBeta[keyof typeof ManagedClusterTypesBeta];
16765
+ /**
16766
+ * The preference for applying updates for the cluster
16767
+ * @export
16768
+ * @interface ManagedClusterUpdatePreferencesBeta
16769
+ */
16770
+ export interface ManagedClusterUpdatePreferencesBeta {
16771
+ /**
16772
+ * The processGroups for updatePreferences
16773
+ * @type {string}
16774
+ * @memberof ManagedClusterUpdatePreferencesBeta
16775
+ */
16776
+ 'processGroups'?: string | null;
16777
+ /**
16778
+ * The current updateState for the cluster
16779
+ * @type {string}
16780
+ * @memberof ManagedClusterUpdatePreferencesBeta
16781
+ */
16782
+ 'updateState'?: ManagedClusterUpdatePreferencesBetaUpdateStateBeta | null;
16783
+ /**
16784
+ * The mail id to which new releases will be notified
16785
+ * @type {string}
16786
+ * @memberof ManagedClusterUpdatePreferencesBeta
16787
+ */
16788
+ 'notificationEmail'?: string | null;
16789
+ }
16790
+ export declare const ManagedClusterUpdatePreferencesBetaUpdateStateBeta: {
16791
+ readonly Auto: "AUTO";
16792
+ readonly Disabled: "DISABLED";
16793
+ };
16794
+ export type ManagedClusterUpdatePreferencesBetaUpdateStateBeta = typeof ManagedClusterUpdatePreferencesBetaUpdateStateBeta[keyof typeof ManagedClusterUpdatePreferencesBetaUpdateStateBeta];
16264
16795
  /**
16265
16796
  *
16266
16797
  * @export
@@ -16312,6 +16843,49 @@ export interface ManualDiscoverApplicationsTemplateBeta {
16312
16843
  */
16313
16844
  'description'?: string;
16314
16845
  }
16846
+ /**
16847
+ *
16848
+ * @export
16849
+ * @interface ManualWorkItemDetails1Beta
16850
+ */
16851
+ export interface ManualWorkItemDetails1Beta {
16852
+ /**
16853
+ * True if the request for this item was forwarded from one owner to another.
16854
+ * @type {boolean}
16855
+ * @memberof ManualWorkItemDetails1Beta
16856
+ */
16857
+ 'forwarded'?: boolean;
16858
+ /**
16859
+ *
16860
+ * @type {ManualWorkItemDetailsOriginalOwnerBeta}
16861
+ * @memberof ManualWorkItemDetails1Beta
16862
+ */
16863
+ 'originalOwner'?: ManualWorkItemDetailsOriginalOwnerBeta | null;
16864
+ /**
16865
+ *
16866
+ * @type {ManualWorkItemDetailsCurrentOwnerBeta}
16867
+ * @memberof ManualWorkItemDetails1Beta
16868
+ */
16869
+ 'currentOwner'?: ManualWorkItemDetailsCurrentOwnerBeta | null;
16870
+ /**
16871
+ * Time at which item was modified.
16872
+ * @type {string}
16873
+ * @memberof ManualWorkItemDetails1Beta
16874
+ */
16875
+ 'modified'?: string;
16876
+ /**
16877
+ *
16878
+ * @type {ManualWorkItemStateBeta}
16879
+ * @memberof ManualWorkItemDetails1Beta
16880
+ */
16881
+ 'status'?: ManualWorkItemStateBeta;
16882
+ /**
16883
+ * The history of approval forward action.
16884
+ * @type {Array<ApprovalForwardHistory1Beta>}
16885
+ * @memberof ManualWorkItemDetails1Beta
16886
+ */
16887
+ 'forwardHistory'?: Array<ApprovalForwardHistory1Beta> | null;
16888
+ }
16315
16889
  /**
16316
16890
  *
16317
16891
  * @export
@@ -20017,33 +20591,33 @@ export type PatOwnerBetaTypeBeta = typeof PatOwnerBetaTypeBeta[keyof typeof PatO
20017
20591
  /**
20018
20592
  *
20019
20593
  * @export
20020
- * @interface PatchPotentialRoleRequestInnerBeta
20594
+ * @interface PatchRoleMiningPotentialRoleRequestInnerBeta
20021
20595
  */
20022
- export interface PatchPotentialRoleRequestInnerBeta {
20596
+ export interface PatchRoleMiningPotentialRoleRequestInnerBeta {
20023
20597
  /**
20024
20598
  * The operation to be performed
20025
20599
  * @type {string}
20026
- * @memberof PatchPotentialRoleRequestInnerBeta
20600
+ * @memberof PatchRoleMiningPotentialRoleRequestInnerBeta
20027
20601
  */
20028
- 'op'?: PatchPotentialRoleRequestInnerBetaOpBeta;
20602
+ 'op'?: PatchRoleMiningPotentialRoleRequestInnerBetaOpBeta;
20029
20603
  /**
20030
20604
  * A string JSON Pointer representing the target path to an element to be affected by the operation
20031
20605
  * @type {string}
20032
- * @memberof PatchPotentialRoleRequestInnerBeta
20606
+ * @memberof PatchRoleMiningPotentialRoleRequestInnerBeta
20033
20607
  */
20034
20608
  'path': string;
20035
20609
  /**
20036
20610
  *
20037
20611
  * @type {UpdateMultiHostSourcesRequestInnerValueBeta}
20038
- * @memberof PatchPotentialRoleRequestInnerBeta
20612
+ * @memberof PatchRoleMiningPotentialRoleRequestInnerBeta
20039
20613
  */
20040
20614
  'value'?: UpdateMultiHostSourcesRequestInnerValueBeta;
20041
20615
  }
20042
- export declare const PatchPotentialRoleRequestInnerBetaOpBeta: {
20616
+ export declare const PatchRoleMiningPotentialRoleRequestInnerBetaOpBeta: {
20043
20617
  readonly Remove: "remove";
20044
20618
  readonly Replace: "replace";
20045
20619
  };
20046
- export type PatchPotentialRoleRequestInnerBetaOpBeta = typeof PatchPotentialRoleRequestInnerBetaOpBeta[keyof typeof PatchPotentialRoleRequestInnerBetaOpBeta];
20620
+ export type PatchRoleMiningPotentialRoleRequestInnerBetaOpBeta = typeof PatchRoleMiningPotentialRoleRequestInnerBetaOpBeta[keyof typeof PatchRoleMiningPotentialRoleRequestInnerBetaOpBeta];
20047
20621
  /**
20048
20622
  *
20049
20623
  * @export
@@ -20204,10 +20778,10 @@ export interface PendingApprovalBeta {
20204
20778
  'currentRemoveDate'?: string;
20205
20779
  /**
20206
20780
  *
20207
- * @type {SodViolationContextCheckCompleted1Beta}
20781
+ * @type {SodViolationContextCheckCompleted2Beta}
20208
20782
  * @memberof PendingApprovalBeta
20209
20783
  */
20210
- 'sodViolationContext'?: SodViolationContextCheckCompleted1Beta | null;
20784
+ 'sodViolationContext'?: SodViolationContextCheckCompleted2Beta | null;
20211
20785
  /**
20212
20786
  * Arbitrary key-value pairs, if any were included in the corresponding access request item
20213
20787
  * @type {{ [key: string]: string; }}
@@ -20228,7 +20802,39 @@ export interface PendingApprovalBeta {
20228
20802
  * @memberof PendingApprovalBeta
20229
20803
  */
20230
20804
  'privilegeLevel'?: string | null;
20805
+ /**
20806
+ *
20807
+ * @type {PendingApprovalMaxPermittedAccessDurationBeta}
20808
+ * @memberof PendingApprovalBeta
20809
+ */
20810
+ 'maxPermittedAccessDuration'?: PendingApprovalMaxPermittedAccessDurationBeta | null;
20811
+ }
20812
+ /**
20813
+ * The maximum duration for which the access is permitted.
20814
+ * @export
20815
+ * @interface PendingApprovalMaxPermittedAccessDurationBeta
20816
+ */
20817
+ export interface PendingApprovalMaxPermittedAccessDurationBeta {
20818
+ /**
20819
+ * The numeric value of the duration.
20820
+ * @type {number}
20821
+ * @memberof PendingApprovalMaxPermittedAccessDurationBeta
20822
+ */
20823
+ 'value'?: number;
20824
+ /**
20825
+ * The time unit for the duration.
20826
+ * @type {string}
20827
+ * @memberof PendingApprovalMaxPermittedAccessDurationBeta
20828
+ */
20829
+ 'timeUnit'?: PendingApprovalMaxPermittedAccessDurationBetaTimeUnitBeta;
20231
20830
  }
20831
+ export declare const PendingApprovalMaxPermittedAccessDurationBetaTimeUnitBeta: {
20832
+ readonly Hours: "HOURS";
20833
+ readonly Days: "DAYS";
20834
+ readonly Weeks: "WEEKS";
20835
+ readonly Months: "MONTHS";
20836
+ };
20837
+ export type PendingApprovalMaxPermittedAccessDurationBetaTimeUnitBeta = typeof PendingApprovalMaxPermittedAccessDurationBetaTimeUnitBeta[keyof typeof PendingApprovalMaxPermittedAccessDurationBetaTimeUnitBeta];
20232
20838
  /**
20233
20839
  * 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.
20234
20840
  * @export
@@ -21743,6 +22349,18 @@ export interface RequestabilityBeta {
21743
22349
  * @memberof RequestabilityBeta
21744
22350
  */
21745
22351
  'reauthorizationRequired'?: boolean | null;
22352
+ /**
22353
+ * Indicates whether the requester of the containing object must provide access end date.
22354
+ * @type {boolean}
22355
+ * @memberof RequestabilityBeta
22356
+ */
22357
+ 'requireEndDate'?: boolean | null;
22358
+ /**
22359
+ *
22360
+ * @type {AccessDurationBeta}
22361
+ * @memberof RequestabilityBeta
22362
+ */
22363
+ 'maxPermittedAccessDuration'?: AccessDurationBeta | null;
21746
22364
  /**
21747
22365
  * List describing the steps involved in approving the request.
21748
22366
  * @type {Array<AccessProfileApprovalSchemeBeta>}
@@ -21774,6 +22392,18 @@ export interface RequestabilityForRoleBeta {
21774
22392
  * @memberof RequestabilityForRoleBeta
21775
22393
  */
21776
22394
  'reauthorizationRequired'?: boolean | null;
22395
+ /**
22396
+ * Indicates whether the requester of the containing object must provide access end date.
22397
+ * @type {boolean}
22398
+ * @memberof RequestabilityForRoleBeta
22399
+ */
22400
+ 'requireEndDate'?: boolean;
22401
+ /**
22402
+ *
22403
+ * @type {AccessDurationBeta}
22404
+ * @memberof RequestabilityForRoleBeta
22405
+ */
22406
+ 'maxPermittedAccessDuration'?: AccessDurationBeta | null;
21777
22407
  /**
21778
22408
  * List describing the steps in approving the request
21779
22409
  * @type {Array<ApprovalSchemeForRoleBeta>}
@@ -22823,6 +23453,12 @@ export interface RoleAssignmentRefBeta {
22823
23453
  * @memberof RoleAssignmentRefBeta
22824
23454
  */
22825
23455
  'addedDate'?: string;
23456
+ /**
23457
+ * Date that the assignment will be removed
23458
+ * @type {string}
23459
+ * @memberof RoleAssignmentRefBeta
23460
+ */
23461
+ 'removeDate'?: string | null;
22826
23462
  }
22827
23463
  /**
22828
23464
  * Type which indicates how a particular Identity obtained a particular Role
@@ -23686,12 +24322,29 @@ export interface RoleMiningIdentityDistributionBeta {
23686
24322
  'attributeName'?: string;
23687
24323
  /**
23688
24324
  *
23689
- * @type {Array<{ [key: string]: string; }>}
24325
+ * @type {Array<RoleMiningIdentityDistributionDistributionInnerBeta>}
23690
24326
  * @memberof RoleMiningIdentityDistributionBeta
23691
24327
  */
23692
- 'distribution'?: Array<{
23693
- [key: string]: string;
23694
- }>;
24328
+ 'distribution'?: Array<RoleMiningIdentityDistributionDistributionInnerBeta>;
24329
+ }
24330
+ /**
24331
+ *
24332
+ * @export
24333
+ * @interface RoleMiningIdentityDistributionDistributionInnerBeta
24334
+ */
24335
+ export interface RoleMiningIdentityDistributionDistributionInnerBeta {
24336
+ /**
24337
+ * The attribute value that identities are grouped by
24338
+ * @type {string}
24339
+ * @memberof RoleMiningIdentityDistributionDistributionInnerBeta
24340
+ */
24341
+ 'attributeValue'?: string;
24342
+ /**
24343
+ * The number of identities that have this attribute value
24344
+ * @type {number}
24345
+ * @memberof RoleMiningIdentityDistributionDistributionInnerBeta
24346
+ */
24347
+ 'count'?: number;
23695
24348
  }
23696
24349
  /**
23697
24350
  *
@@ -24560,11 +25213,11 @@ export interface RoleTargetDtoBeta {
24560
25213
  */
24561
25214
  'accountInfo'?: AccountInfoDtoBeta;
24562
25215
  /**
24563
- * Specific role name for this target if using multiple accounts
24564
- * @type {string}
25216
+ *
25217
+ * @type {BaseReferenceDto1Beta}
24565
25218
  * @memberof RoleTargetDtoBeta
24566
25219
  */
24567
- 'roleName'?: string;
25220
+ 'role'?: BaseReferenceDto1Beta;
24568
25221
  }
24569
25222
  /**
24570
25223
  * @type RuleBeta
@@ -26499,6 +27152,37 @@ export interface SodExemptCriteria1Beta {
26499
27152
  */
26500
27153
  'name'?: string;
26501
27154
  }
27155
+ /**
27156
+ * Details of the Entitlement criteria
27157
+ * @export
27158
+ * @interface SodExemptCriteria2Beta
27159
+ */
27160
+ export interface SodExemptCriteria2Beta {
27161
+ /**
27162
+ * If the entitlement already belonged to the user or not.
27163
+ * @type {boolean}
27164
+ * @memberof SodExemptCriteria2Beta
27165
+ */
27166
+ 'existing'?: boolean;
27167
+ /**
27168
+ *
27169
+ * @type {DtoTypeBeta}
27170
+ * @memberof SodExemptCriteria2Beta
27171
+ */
27172
+ 'type'?: DtoTypeBeta;
27173
+ /**
27174
+ * Entitlement ID
27175
+ * @type {string}
27176
+ * @memberof SodExemptCriteria2Beta
27177
+ */
27178
+ 'id'?: string;
27179
+ /**
27180
+ * Entitlement name
27181
+ * @type {string}
27182
+ * @memberof SodExemptCriteria2Beta
27183
+ */
27184
+ 'name'?: string;
27185
+ }
26502
27186
  /**
26503
27187
  * Details of the Entitlement criteria
26504
27188
  * @export
@@ -26889,10 +27573,10 @@ export type SodReportResultDtoBetaTypeBeta = typeof SodReportResultDtoBetaTypeBe
26889
27573
  export interface SodViolationCheckResult1Beta {
26890
27574
  /**
26891
27575
  *
26892
- * @type {ErrorMessageDtoBeta}
27576
+ * @type {ErrorMessageDto1Beta}
26893
27577
  * @memberof SodViolationCheckResult1Beta
26894
27578
  */
26895
- 'message'?: ErrorMessageDtoBeta;
27579
+ 'message'?: ErrorMessageDto1Beta;
26896
27580
  /**
26897
27581
  * Arbitrary key-value pairs. They will never be processed by the IdentityNow system but will be returned on completion of the violation check.
26898
27582
  * @type {{ [key: string]: string; }}
@@ -26900,18 +27584,51 @@ export interface SodViolationCheckResult1Beta {
26900
27584
  */
26901
27585
  'clientMetadata'?: {
26902
27586
  [key: string]: string;
26903
- };
27587
+ } | null;
26904
27588
  /**
26905
27589
  *
26906
27590
  * @type {Array<SodViolationContext1Beta>}
26907
27591
  * @memberof SodViolationCheckResult1Beta
26908
27592
  */
26909
- 'violationContexts'?: Array<SodViolationContext1Beta>;
27593
+ 'violationContexts'?: Array<SodViolationContext1Beta> | null;
26910
27594
  /**
26911
- * A list of the Policies that were violated.
27595
+ * A list of the SOD policies that were violated.
26912
27596
  * @type {Array<SodPolicyDto1Beta>}
26913
27597
  * @memberof SodViolationCheckResult1Beta
26914
27598
  */
27599
+ 'violatedPolicies'?: Array<SodPolicyDto1Beta> | null;
27600
+ }
27601
+ /**
27602
+ * The inner object representing the completed SOD Violation check
27603
+ * @export
27604
+ * @interface SodViolationCheckResult2Beta
27605
+ */
27606
+ export interface SodViolationCheckResult2Beta {
27607
+ /**
27608
+ *
27609
+ * @type {ErrorMessageDtoBeta}
27610
+ * @memberof SodViolationCheckResult2Beta
27611
+ */
27612
+ 'message'?: ErrorMessageDtoBeta;
27613
+ /**
27614
+ * Arbitrary key-value pairs. They will never be processed by the IdentityNow system but will be returned on completion of the violation check.
27615
+ * @type {{ [key: string]: string; }}
27616
+ * @memberof SodViolationCheckResult2Beta
27617
+ */
27618
+ 'clientMetadata'?: {
27619
+ [key: string]: string;
27620
+ };
27621
+ /**
27622
+ *
27623
+ * @type {Array<SodViolationContext2Beta>}
27624
+ * @memberof SodViolationCheckResult2Beta
27625
+ */
27626
+ 'violationContexts'?: Array<SodViolationContext2Beta>;
27627
+ /**
27628
+ * A list of the Policies that were violated.
27629
+ * @type {Array<SodPolicyDto1Beta>}
27630
+ * @memberof SodViolationCheckResult2Beta
27631
+ */
26915
27632
  'violatedPolicies'?: Array<SodPolicyDto1Beta>;
26916
27633
  }
26917
27634
  /**
@@ -26948,7 +27665,7 @@ export interface SodViolationCheckResultBeta {
26948
27665
  'violatedPolicies'?: Array<SodPolicyDto1Beta> | null;
26949
27666
  }
26950
27667
  /**
26951
- * The contextual information of the violated criteria.
27668
+ * The contextual information of the violated criteria
26952
27669
  * @export
26953
27670
  * @interface SodViolationContext1Beta
26954
27671
  */
@@ -26998,6 +27715,57 @@ export interface SodViolationContext1ConflictingAccessCriteriaLeftCriteriaBeta {
26998
27715
  */
26999
27716
  'criteriaList'?: Array<SodExemptCriteria1Beta>;
27000
27717
  }
27718
+ /**
27719
+ * The contextual information of the violated criteria.
27720
+ * @export
27721
+ * @interface SodViolationContext2Beta
27722
+ */
27723
+ export interface SodViolationContext2Beta {
27724
+ /**
27725
+ *
27726
+ * @type {SodPolicyDto1Beta}
27727
+ * @memberof SodViolationContext2Beta
27728
+ */
27729
+ 'policy'?: SodPolicyDto1Beta;
27730
+ /**
27731
+ *
27732
+ * @type {SodViolationContext2ConflictingAccessCriteriaBeta}
27733
+ * @memberof SodViolationContext2Beta
27734
+ */
27735
+ 'conflictingAccessCriteria'?: SodViolationContext2ConflictingAccessCriteriaBeta;
27736
+ }
27737
+ /**
27738
+ * The object which contains the left and right hand side of the entitlements that got violated according to the policy.
27739
+ * @export
27740
+ * @interface SodViolationContext2ConflictingAccessCriteriaBeta
27741
+ */
27742
+ export interface SodViolationContext2ConflictingAccessCriteriaBeta {
27743
+ /**
27744
+ *
27745
+ * @type {SodViolationContext2ConflictingAccessCriteriaLeftCriteriaBeta}
27746
+ * @memberof SodViolationContext2ConflictingAccessCriteriaBeta
27747
+ */
27748
+ 'leftCriteria'?: SodViolationContext2ConflictingAccessCriteriaLeftCriteriaBeta;
27749
+ /**
27750
+ *
27751
+ * @type {SodViolationContext2ConflictingAccessCriteriaLeftCriteriaBeta}
27752
+ * @memberof SodViolationContext2ConflictingAccessCriteriaBeta
27753
+ */
27754
+ 'rightCriteria'?: SodViolationContext2ConflictingAccessCriteriaLeftCriteriaBeta;
27755
+ }
27756
+ /**
27757
+ *
27758
+ * @export
27759
+ * @interface SodViolationContext2ConflictingAccessCriteriaLeftCriteriaBeta
27760
+ */
27761
+ export interface SodViolationContext2ConflictingAccessCriteriaLeftCriteriaBeta {
27762
+ /**
27763
+ *
27764
+ * @type {Array<SodExemptCriteria2Beta>}
27765
+ * @memberof SodViolationContext2ConflictingAccessCriteriaLeftCriteriaBeta
27766
+ */
27767
+ 'criteriaList'?: Array<SodExemptCriteria2Beta>;
27768
+ }
27001
27769
  /**
27002
27770
  * The contextual information of the violated criteria
27003
27771
  * @export
@@ -27028,13 +27796,13 @@ export interface SodViolationContextCheckCompleted1Beta {
27028
27796
  * @type {string}
27029
27797
  * @memberof SodViolationContextCheckCompleted1Beta
27030
27798
  */
27031
- 'state'?: SodViolationContextCheckCompleted1BetaStateBeta;
27799
+ 'state'?: SodViolationContextCheckCompleted1BetaStateBeta | null;
27032
27800
  /**
27033
27801
  * The id of the Violation check event
27034
27802
  * @type {string}
27035
27803
  * @memberof SodViolationContextCheckCompleted1Beta
27036
27804
  */
27037
- 'uuid'?: string;
27805
+ 'uuid'?: string | null;
27038
27806
  /**
27039
27807
  *
27040
27808
  * @type {SodViolationCheckResult1Beta}
@@ -27047,6 +27815,36 @@ export declare const SodViolationContextCheckCompleted1BetaStateBeta: {
27047
27815
  readonly Error: "ERROR";
27048
27816
  };
27049
27817
  export type SodViolationContextCheckCompleted1BetaStateBeta = typeof SodViolationContextCheckCompleted1BetaStateBeta[keyof typeof SodViolationContextCheckCompleted1BetaStateBeta];
27818
+ /**
27819
+ * An object referencing a completed SOD violation check
27820
+ * @export
27821
+ * @interface SodViolationContextCheckCompleted2Beta
27822
+ */
27823
+ export interface SodViolationContextCheckCompleted2Beta {
27824
+ /**
27825
+ * The status of SOD violation check
27826
+ * @type {string}
27827
+ * @memberof SodViolationContextCheckCompleted2Beta
27828
+ */
27829
+ 'state'?: SodViolationContextCheckCompleted2BetaStateBeta;
27830
+ /**
27831
+ * The id of the Violation check event
27832
+ * @type {string}
27833
+ * @memberof SodViolationContextCheckCompleted2Beta
27834
+ */
27835
+ 'uuid'?: string;
27836
+ /**
27837
+ *
27838
+ * @type {SodViolationCheckResult2Beta}
27839
+ * @memberof SodViolationContextCheckCompleted2Beta
27840
+ */
27841
+ 'violationCheckResult'?: SodViolationCheckResult2Beta;
27842
+ }
27843
+ export declare const SodViolationContextCheckCompleted2BetaStateBeta: {
27844
+ readonly Success: "SUCCESS";
27845
+ readonly Error: "ERROR";
27846
+ };
27847
+ export type SodViolationContextCheckCompleted2BetaStateBeta = typeof SodViolationContextCheckCompleted2BetaStateBeta[keyof typeof SodViolationContextCheckCompleted2BetaStateBeta];
27050
27848
  /**
27051
27849
  * An object referencing a completed SOD violation check
27052
27850
  * @export
@@ -27379,7 +28177,7 @@ export interface SourceAppBeta {
27379
28177
  */
27380
28178
  'enabled'?: boolean;
27381
28179
  /**
27382
- * True if the source app is provision request enabled
28180
+ * True if the app allows access request
27383
28181
  * @type {boolean}
27384
28182
  * @memberof SourceAppBeta
27385
28183
  */
@@ -27397,7 +28195,7 @@ export interface SourceAppBeta {
27397
28195
  */
27398
28196
  'matchAllAccounts'?: boolean;
27399
28197
  /**
27400
- * True if the source app is shown in the app center
28198
+ * True if the app is visible in the request center
27401
28199
  * @type {boolean}
27402
28200
  * @memberof SourceAppBeta
27403
28201
  */
@@ -27533,7 +28331,7 @@ export interface SourceAppPatchDtoBeta {
27533
28331
  */
27534
28332
  'enabled'?: boolean;
27535
28333
  /**
27536
- * True if the source app is provision request enabled
28334
+ * True if the app allows access request
27537
28335
  * @type {boolean}
27538
28336
  * @memberof SourceAppPatchDtoBeta
27539
28337
  */
@@ -27551,7 +28349,7 @@ export interface SourceAppPatchDtoBeta {
27551
28349
  */
27552
28350
  'matchAllAccounts'?: boolean;
27553
28351
  /**
27554
- * True if the source app is shown in the app center
28352
+ * True if the app is visible in the request center
27555
28353
  * @type {boolean}
27556
28354
  * @memberof SourceAppPatchDtoBeta
27557
28355
  */
@@ -31011,13 +31809,13 @@ export interface UserAppBeta {
31011
31809
  */
31012
31810
  'useForPasswordManagement'?: boolean;
31013
31811
  /**
31014
- * True if the source app related to the user app is provision request enabled
31812
+ * True if the app allows access request
31015
31813
  * @type {boolean}
31016
31814
  * @memberof UserAppBeta
31017
31815
  */
31018
31816
  'provisionRequestEnabled'?: boolean;
31019
31817
  /**
31020
- * True if the source app related to the user app is shown in the app center
31818
+ * True if the app is visible in the request center
31021
31819
  * @type {boolean}
31022
31820
  * @memberof UserAppBeta
31023
31821
  */
@@ -32751,6 +33549,23 @@ export interface WorkgroupMemberDeleteItemBeta {
32751
33549
  * @export
32752
33550
  */
32753
33551
  export declare const AccessModelMetadataBetaApiAxiosParamCreator: (configuration?: Configuration) => {
33552
+ /**
33553
+ * Create a new Access Model Metadata Attribute.
33554
+ * @summary Create access model metadata attribute
33555
+ * @param {AttributeDTOBeta} attributeDTOBeta Attribute to create
33556
+ * @param {*} [axiosOptions] Override http request option.
33557
+ * @throws {RequiredError}
33558
+ */
33559
+ createAccessModelMetadataAttribute: (attributeDTOBeta: AttributeDTOBeta, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
33560
+ /**
33561
+ * Create a new value for an existing Access Model Metadata Attribute.
33562
+ * @summary Create access model metadata value
33563
+ * @param {string} key Technical name of the Attribute.
33564
+ * @param {AttributeValueDTOBeta} attributeValueDTOBeta Attribute value to create
33565
+ * @param {*} [axiosOptions] Override http request option.
33566
+ * @throws {RequiredError}
33567
+ */
33568
+ createAccessModelMetadataAttributeValue: (key: string, attributeValueDTOBeta: AttributeValueDTOBeta, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
32754
33569
  /**
32755
33570
  * Get single Access Model Metadata Attribute
32756
33571
  * @summary Get access model metadata attribute
@@ -32771,32 +33586,66 @@ export declare const AccessModelMetadataBetaApiAxiosParamCreator: (configuration
32771
33586
  /**
32772
33587
  * Get a list of Access Model Metadata Attributes
32773
33588
  * @summary List access model metadata attributes
32774
- * @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**: *and*
33589
+ * @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*
32775
33590
  * @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**
32776
- * @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.
32777
33591
  * @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.
32778
33592
  * @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.
32779
33593
  * @param {*} [axiosOptions] Override http request option.
32780
33594
  * @throws {RequiredError}
32781
33595
  */
32782
- listAccessModelMetadataAttribute: (filters?: string, sorters?: string, offset?: number, limit?: number, count?: boolean, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
33596
+ listAccessModelMetadataAttribute: (filters?: string, sorters?: string, limit?: number, count?: boolean, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
32783
33597
  /**
32784
33598
  * Get a list of Access Model Metadata Attribute Values
32785
33599
  * @summary List access model metadata values
32786
33600
  * @param {string} key Technical name of the Attribute.
32787
- * @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.
32788
33601
  * @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.
32789
33602
  * @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.
32790
33603
  * @param {*} [axiosOptions] Override http request option.
32791
33604
  * @throws {RequiredError}
32792
33605
  */
32793
- listAccessModelMetadataAttributeValue: (key: string, offset?: number, limit?: number, count?: boolean, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
33606
+ listAccessModelMetadataAttributeValue: (key: string, limit?: number, count?: boolean, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
33607
+ /**
33608
+ * Update an existing Access Model Metadata Attribute. The following fields are patchable: **name**, **description**, **multiselect**, **values**
33609
+ * @summary Update access model metadata attribute
33610
+ * @param {string} key Technical name of the Attribute.
33611
+ * @param {Array<JsonPatchOperationBeta>} jsonPatchOperationBeta JSON Patch array to apply
33612
+ * @param {*} [axiosOptions] Override http request option.
33613
+ * @throws {RequiredError}
33614
+ */
33615
+ updateAccessModelMetadataAttribute: (key: string, jsonPatchOperationBeta: Array<JsonPatchOperationBeta>, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
33616
+ /**
33617
+ * Update an existing Access Model Metadata Attribute Value. The following fields are patchable: **name**
33618
+ * @summary Update access model metadata value
33619
+ * @param {string} key Technical name of the Attribute.
33620
+ * @param {string} value Technical name of the Attribute value.
33621
+ * @param {Array<JsonPatchOperationBeta>} jsonPatchOperationBeta JSON Patch array to apply
33622
+ * @param {*} [axiosOptions] Override http request option.
33623
+ * @throws {RequiredError}
33624
+ */
33625
+ updateAccessModelMetadataAttributeValue: (key: string, value: string, jsonPatchOperationBeta: Array<JsonPatchOperationBeta>, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
32794
33626
  };
32795
33627
  /**
32796
33628
  * AccessModelMetadataBetaApi - functional programming interface
32797
33629
  * @export
32798
33630
  */
32799
33631
  export declare const AccessModelMetadataBetaApiFp: (configuration?: Configuration) => {
33632
+ /**
33633
+ * Create a new Access Model Metadata Attribute.
33634
+ * @summary Create access model metadata attribute
33635
+ * @param {AttributeDTOBeta} attributeDTOBeta Attribute to create
33636
+ * @param {*} [axiosOptions] Override http request option.
33637
+ * @throws {RequiredError}
33638
+ */
33639
+ createAccessModelMetadataAttribute(attributeDTOBeta: AttributeDTOBeta, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AttributeDTOBeta>>;
33640
+ /**
33641
+ * Create a new value for an existing Access Model Metadata Attribute.
33642
+ * @summary Create access model metadata value
33643
+ * @param {string} key Technical name of the Attribute.
33644
+ * @param {AttributeValueDTOBeta} attributeValueDTOBeta Attribute value to create
33645
+ * @param {*} [axiosOptions] Override http request option.
33646
+ * @throws {RequiredError}
33647
+ */
33648
+ createAccessModelMetadataAttributeValue(key: string, attributeValueDTOBeta: AttributeValueDTOBeta, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AttributeValueDTOBeta>>;
32800
33649
  /**
32801
33650
  * Get single Access Model Metadata Attribute
32802
33651
  * @summary Get access model metadata attribute
@@ -32817,32 +33666,65 @@ export declare const AccessModelMetadataBetaApiFp: (configuration?: Configuratio
32817
33666
  /**
32818
33667
  * Get a list of Access Model Metadata Attributes
32819
33668
  * @summary List access model metadata attributes
32820
- * @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**: *and*
33669
+ * @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*
32821
33670
  * @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**
32822
- * @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.
32823
33671
  * @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.
32824
33672
  * @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.
32825
33673
  * @param {*} [axiosOptions] Override http request option.
32826
33674
  * @throws {RequiredError}
32827
33675
  */
32828
- listAccessModelMetadataAttribute(filters?: string, sorters?: string, offset?: number, limit?: number, count?: boolean, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<AttributeDTOBeta>>>;
33676
+ listAccessModelMetadataAttribute(filters?: string, sorters?: string, limit?: number, count?: boolean, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<AttributeDTOBeta>>>;
32829
33677
  /**
32830
33678
  * Get a list of Access Model Metadata Attribute Values
32831
33679
  * @summary List access model metadata values
32832
33680
  * @param {string} key Technical name of the Attribute.
32833
- * @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.
32834
33681
  * @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.
32835
33682
  * @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.
32836
33683
  * @param {*} [axiosOptions] Override http request option.
32837
33684
  * @throws {RequiredError}
32838
33685
  */
32839
- listAccessModelMetadataAttributeValue(key: string, offset?: number, limit?: number, count?: boolean, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<AttributeValueDTOBeta>>>;
33686
+ listAccessModelMetadataAttributeValue(key: string, limit?: number, count?: boolean, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<AttributeValueDTOBeta>>>;
33687
+ /**
33688
+ * Update an existing Access Model Metadata Attribute. The following fields are patchable: **name**, **description**, **multiselect**, **values**
33689
+ * @summary Update access model metadata attribute
33690
+ * @param {string} key Technical name of the Attribute.
33691
+ * @param {Array<JsonPatchOperationBeta>} jsonPatchOperationBeta JSON Patch array to apply
33692
+ * @param {*} [axiosOptions] Override http request option.
33693
+ * @throws {RequiredError}
33694
+ */
33695
+ updateAccessModelMetadataAttribute(key: string, jsonPatchOperationBeta: Array<JsonPatchOperationBeta>, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AttributeDTOBeta>>;
33696
+ /**
33697
+ * Update an existing Access Model Metadata Attribute Value. The following fields are patchable: **name**
33698
+ * @summary Update access model metadata value
33699
+ * @param {string} key Technical name of the Attribute.
33700
+ * @param {string} value Technical name of the Attribute value.
33701
+ * @param {Array<JsonPatchOperationBeta>} jsonPatchOperationBeta JSON Patch array to apply
33702
+ * @param {*} [axiosOptions] Override http request option.
33703
+ * @throws {RequiredError}
33704
+ */
33705
+ updateAccessModelMetadataAttributeValue(key: string, value: string, jsonPatchOperationBeta: Array<JsonPatchOperationBeta>, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AttributeValueDTOBeta>>;
32840
33706
  };
32841
33707
  /**
32842
33708
  * AccessModelMetadataBetaApi - factory interface
32843
33709
  * @export
32844
33710
  */
32845
33711
  export declare const AccessModelMetadataBetaApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
33712
+ /**
33713
+ * Create a new Access Model Metadata Attribute.
33714
+ * @summary Create access model metadata attribute
33715
+ * @param {AccessModelMetadataBetaApiCreateAccessModelMetadataAttributeRequest} requestParameters Request parameters.
33716
+ * @param {*} [axiosOptions] Override http request option.
33717
+ * @throws {RequiredError}
33718
+ */
33719
+ createAccessModelMetadataAttribute(requestParameters: AccessModelMetadataBetaApiCreateAccessModelMetadataAttributeRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<AttributeDTOBeta>;
33720
+ /**
33721
+ * Create a new value for an existing Access Model Metadata Attribute.
33722
+ * @summary Create access model metadata value
33723
+ * @param {AccessModelMetadataBetaApiCreateAccessModelMetadataAttributeValueRequest} requestParameters Request parameters.
33724
+ * @param {*} [axiosOptions] Override http request option.
33725
+ * @throws {RequiredError}
33726
+ */
33727
+ createAccessModelMetadataAttributeValue(requestParameters: AccessModelMetadataBetaApiCreateAccessModelMetadataAttributeValueRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<AttributeValueDTOBeta>;
32846
33728
  /**
32847
33729
  * Get single Access Model Metadata Attribute
32848
33730
  * @summary Get access model metadata attribute
@@ -32875,7 +33757,55 @@ export declare const AccessModelMetadataBetaApiFactory: (configuration?: Configu
32875
33757
  * @throws {RequiredError}
32876
33758
  */
32877
33759
  listAccessModelMetadataAttributeValue(requestParameters: AccessModelMetadataBetaApiListAccessModelMetadataAttributeValueRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<AttributeValueDTOBeta>>;
33760
+ /**
33761
+ * Update an existing Access Model Metadata Attribute. The following fields are patchable: **name**, **description**, **multiselect**, **values**
33762
+ * @summary Update access model metadata attribute
33763
+ * @param {AccessModelMetadataBetaApiUpdateAccessModelMetadataAttributeRequest} requestParameters Request parameters.
33764
+ * @param {*} [axiosOptions] Override http request option.
33765
+ * @throws {RequiredError}
33766
+ */
33767
+ updateAccessModelMetadataAttribute(requestParameters: AccessModelMetadataBetaApiUpdateAccessModelMetadataAttributeRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<AttributeDTOBeta>;
33768
+ /**
33769
+ * Update an existing Access Model Metadata Attribute Value. The following fields are patchable: **name**
33770
+ * @summary Update access model metadata value
33771
+ * @param {AccessModelMetadataBetaApiUpdateAccessModelMetadataAttributeValueRequest} requestParameters Request parameters.
33772
+ * @param {*} [axiosOptions] Override http request option.
33773
+ * @throws {RequiredError}
33774
+ */
33775
+ updateAccessModelMetadataAttributeValue(requestParameters: AccessModelMetadataBetaApiUpdateAccessModelMetadataAttributeValueRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<AttributeValueDTOBeta>;
32878
33776
  };
33777
+ /**
33778
+ * Request parameters for createAccessModelMetadataAttribute operation in AccessModelMetadataBetaApi.
33779
+ * @export
33780
+ * @interface AccessModelMetadataBetaApiCreateAccessModelMetadataAttributeRequest
33781
+ */
33782
+ export interface AccessModelMetadataBetaApiCreateAccessModelMetadataAttributeRequest {
33783
+ /**
33784
+ * Attribute to create
33785
+ * @type {AttributeDTOBeta}
33786
+ * @memberof AccessModelMetadataBetaApiCreateAccessModelMetadataAttribute
33787
+ */
33788
+ readonly attributeDTOBeta: AttributeDTOBeta;
33789
+ }
33790
+ /**
33791
+ * Request parameters for createAccessModelMetadataAttributeValue operation in AccessModelMetadataBetaApi.
33792
+ * @export
33793
+ * @interface AccessModelMetadataBetaApiCreateAccessModelMetadataAttributeValueRequest
33794
+ */
33795
+ export interface AccessModelMetadataBetaApiCreateAccessModelMetadataAttributeValueRequest {
33796
+ /**
33797
+ * Technical name of the Attribute.
33798
+ * @type {string}
33799
+ * @memberof AccessModelMetadataBetaApiCreateAccessModelMetadataAttributeValue
33800
+ */
33801
+ readonly key: string;
33802
+ /**
33803
+ * Attribute value to create
33804
+ * @type {AttributeValueDTOBeta}
33805
+ * @memberof AccessModelMetadataBetaApiCreateAccessModelMetadataAttributeValue
33806
+ */
33807
+ readonly attributeValueDTOBeta: AttributeValueDTOBeta;
33808
+ }
32879
33809
  /**
32880
33810
  * Request parameters for getAccessModelMetadataAttribute operation in AccessModelMetadataBetaApi.
32881
33811
  * @export
@@ -32915,7 +33845,7 @@ export interface AccessModelMetadataBetaApiGetAccessModelMetadataAttributeValueR
32915
33845
  */
32916
33846
  export interface AccessModelMetadataBetaApiListAccessModelMetadataAttributeRequest {
32917
33847
  /**
32918
- * 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**: *and*
33848
+ * 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*
32919
33849
  * @type {string}
32920
33850
  * @memberof AccessModelMetadataBetaApiListAccessModelMetadataAttribute
32921
33851
  */
@@ -32926,12 +33856,6 @@ export interface AccessModelMetadataBetaApiListAccessModelMetadataAttributeReque
32926
33856
  * @memberof AccessModelMetadataBetaApiListAccessModelMetadataAttribute
32927
33857
  */
32928
33858
  readonly sorters?: string;
32929
- /**
32930
- * 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.
32931
- * @type {number}
32932
- * @memberof AccessModelMetadataBetaApiListAccessModelMetadataAttribute
32933
- */
32934
- readonly offset?: number;
32935
33859
  /**
32936
33860
  * Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
32937
33861
  * @type {number}
@@ -32957,12 +33881,6 @@ export interface AccessModelMetadataBetaApiListAccessModelMetadataAttributeValue
32957
33881
  * @memberof AccessModelMetadataBetaApiListAccessModelMetadataAttributeValue
32958
33882
  */
32959
33883
  readonly key: string;
32960
- /**
32961
- * 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.
32962
- * @type {number}
32963
- * @memberof AccessModelMetadataBetaApiListAccessModelMetadataAttributeValue
32964
- */
32965
- readonly offset?: number;
32966
33884
  /**
32967
33885
  * Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
32968
33886
  * @type {number}
@@ -32976,6 +33894,50 @@ export interface AccessModelMetadataBetaApiListAccessModelMetadataAttributeValue
32976
33894
  */
32977
33895
  readonly count?: boolean;
32978
33896
  }
33897
+ /**
33898
+ * Request parameters for updateAccessModelMetadataAttribute operation in AccessModelMetadataBetaApi.
33899
+ * @export
33900
+ * @interface AccessModelMetadataBetaApiUpdateAccessModelMetadataAttributeRequest
33901
+ */
33902
+ export interface AccessModelMetadataBetaApiUpdateAccessModelMetadataAttributeRequest {
33903
+ /**
33904
+ * Technical name of the Attribute.
33905
+ * @type {string}
33906
+ * @memberof AccessModelMetadataBetaApiUpdateAccessModelMetadataAttribute
33907
+ */
33908
+ readonly key: string;
33909
+ /**
33910
+ * JSON Patch array to apply
33911
+ * @type {Array<JsonPatchOperationBeta>}
33912
+ * @memberof AccessModelMetadataBetaApiUpdateAccessModelMetadataAttribute
33913
+ */
33914
+ readonly jsonPatchOperationBeta: Array<JsonPatchOperationBeta>;
33915
+ }
33916
+ /**
33917
+ * Request parameters for updateAccessModelMetadataAttributeValue operation in AccessModelMetadataBetaApi.
33918
+ * @export
33919
+ * @interface AccessModelMetadataBetaApiUpdateAccessModelMetadataAttributeValueRequest
33920
+ */
33921
+ export interface AccessModelMetadataBetaApiUpdateAccessModelMetadataAttributeValueRequest {
33922
+ /**
33923
+ * Technical name of the Attribute.
33924
+ * @type {string}
33925
+ * @memberof AccessModelMetadataBetaApiUpdateAccessModelMetadataAttributeValue
33926
+ */
33927
+ readonly key: string;
33928
+ /**
33929
+ * Technical name of the Attribute value.
33930
+ * @type {string}
33931
+ * @memberof AccessModelMetadataBetaApiUpdateAccessModelMetadataAttributeValue
33932
+ */
33933
+ readonly value: string;
33934
+ /**
33935
+ * JSON Patch array to apply
33936
+ * @type {Array<JsonPatchOperationBeta>}
33937
+ * @memberof AccessModelMetadataBetaApiUpdateAccessModelMetadataAttributeValue
33938
+ */
33939
+ readonly jsonPatchOperationBeta: Array<JsonPatchOperationBeta>;
33940
+ }
32979
33941
  /**
32980
33942
  * AccessModelMetadataBetaApi - object-oriented interface
32981
33943
  * @export
@@ -32983,6 +33945,24 @@ export interface AccessModelMetadataBetaApiListAccessModelMetadataAttributeValue
32983
33945
  * @extends {BaseAPI}
32984
33946
  */
32985
33947
  export declare class AccessModelMetadataBetaApi extends BaseAPI {
33948
+ /**
33949
+ * Create a new Access Model Metadata Attribute.
33950
+ * @summary Create access model metadata attribute
33951
+ * @param {AccessModelMetadataBetaApiCreateAccessModelMetadataAttributeRequest} requestParameters Request parameters.
33952
+ * @param {*} [axiosOptions] Override http request option.
33953
+ * @throws {RequiredError}
33954
+ * @memberof AccessModelMetadataBetaApi
33955
+ */
33956
+ createAccessModelMetadataAttribute(requestParameters: AccessModelMetadataBetaApiCreateAccessModelMetadataAttributeRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AttributeDTOBeta, any>>;
33957
+ /**
33958
+ * Create a new value for an existing Access Model Metadata Attribute.
33959
+ * @summary Create access model metadata value
33960
+ * @param {AccessModelMetadataBetaApiCreateAccessModelMetadataAttributeValueRequest} requestParameters Request parameters.
33961
+ * @param {*} [axiosOptions] Override http request option.
33962
+ * @throws {RequiredError}
33963
+ * @memberof AccessModelMetadataBetaApi
33964
+ */
33965
+ createAccessModelMetadataAttributeValue(requestParameters: AccessModelMetadataBetaApiCreateAccessModelMetadataAttributeValueRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AttributeValueDTOBeta, any>>;
32986
33966
  /**
32987
33967
  * Get single Access Model Metadata Attribute
32988
33968
  * @summary Get access model metadata attribute
@@ -33019,6 +33999,24 @@ export declare class AccessModelMetadataBetaApi extends BaseAPI {
33019
33999
  * @memberof AccessModelMetadataBetaApi
33020
34000
  */
33021
34001
  listAccessModelMetadataAttributeValue(requestParameters: AccessModelMetadataBetaApiListAccessModelMetadataAttributeValueRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AttributeValueDTOBeta[], any>>;
34002
+ /**
34003
+ * Update an existing Access Model Metadata Attribute. The following fields are patchable: **name**, **description**, **multiselect**, **values**
34004
+ * @summary Update access model metadata attribute
34005
+ * @param {AccessModelMetadataBetaApiUpdateAccessModelMetadataAttributeRequest} requestParameters Request parameters.
34006
+ * @param {*} [axiosOptions] Override http request option.
34007
+ * @throws {RequiredError}
34008
+ * @memberof AccessModelMetadataBetaApi
34009
+ */
34010
+ updateAccessModelMetadataAttribute(requestParameters: AccessModelMetadataBetaApiUpdateAccessModelMetadataAttributeRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AttributeDTOBeta, any>>;
34011
+ /**
34012
+ * Update an existing Access Model Metadata Attribute Value. The following fields are patchable: **name**
34013
+ * @summary Update access model metadata value
34014
+ * @param {AccessModelMetadataBetaApiUpdateAccessModelMetadataAttributeValueRequest} requestParameters Request parameters.
34015
+ * @param {*} [axiosOptions] Override http request option.
34016
+ * @throws {RequiredError}
34017
+ * @memberof AccessModelMetadataBetaApi
34018
+ */
34019
+ updateAccessModelMetadataAttributeValue(requestParameters: AccessModelMetadataBetaApiUpdateAccessModelMetadataAttributeValueRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AttributeValueDTOBeta, any>>;
33022
34020
  }
33023
34021
  /**
33024
34022
  * AccessProfilesBetaApi - axios parameter creator
@@ -34075,13 +35073,31 @@ export declare const AccessRequestsBetaApiAxiosParamCreator: (configuration?: Co
34075
35073
  * @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.
34076
35074
  * @param {number} [limit] Max number of results to return.
34077
35075
  * @param {number} [offset] Offset into the full result set. Usually specified with *limit* to paginate through the results. Defaults to 0 if not specified.
34078
- * @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, in, ge, gt, le, lt, ne, sw* **accountActivityItemId**: *eq, in, ge, gt, le, lt, ne, isnull, sw* **created**: *eq, in, ge, gt, le, lt, ne, isnull, sw*
35076
+ * @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*
34079
35077
  * @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**
34080
35078
  * @param {string} [requestState] Filter the results by the state of the request. The only valid value is *EXECUTING*.
34081
35079
  * @param {*} [axiosOptions] Override http request option.
34082
35080
  * @throws {RequiredError}
34083
35081
  */
34084
35082
  listAccessRequestStatus: (requestedFor?: string, requestedBy?: string, regardingIdentity?: string, assignedTo?: string, count?: boolean, limit?: number, offset?: number, filters?: string, sorters?: string, requestState?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
35083
+ /**
35084
+ * Use this API to get access request statuses of all the access requests in the org based on the specified query parameters. Any user with user level ORG_ADMIN or scope idn:access-request-administration:read can access this endpoint to get the access request statuses
35085
+ * @summary Access request status for administrators
35086
+ * @param {string} xSailPointExperimental Use this header to enable this experimental API.
35087
+ * @param {string} [requestedFor] Filter the results by the identity the requests were made for. *me* indicates the current user. Mutually exclusive with *regarding-identity*.
35088
+ * @param {string} [requestedBy] Filter the results by the identity who made the requests. *me* indicates the current user. Mutually exclusive with *regarding-identity*.
35089
+ * @param {string} [regardingIdentity] Filter the results by the specified identity who is either the requester or target of the requests. *me* indicates the current user. Mutually exclusive with *requested-for* and *requested-by*.
35090
+ * @param {string} [assignedTo] Filter the results by the specified identity who is the owner of the Identity Request Work Item. *me* indicates the current user.
35091
+ * @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.
35092
+ * @param {number} [limit] Max number of results to return.
35093
+ * @param {number} [offset] Offset into the full result set. Usually specified with *limit* to paginate through the results. Defaults to 0 if not specified.
35094
+ * @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: **accountActivityItemId**: *eq, in, ge, gt, le, lt, ne, isnull, sw* **accessRequestId**: *in* **status**: *in, eq, ne* **created**: *eq, in, ge, gt, le, lt, ne, isnull, sw*
35095
+ * @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, accessRequestId**
35096
+ * @param {string} [requestState] Filter the results by the state of the request. The only valid value is *EXECUTING*.
35097
+ * @param {*} [axiosOptions] Override http request option.
35098
+ * @throws {RequiredError}
35099
+ */
35100
+ listAdministratorsAccessRequestStatus: (xSailPointExperimental: string, requestedFor?: string, requestedBy?: string, regardingIdentity?: string, assignedTo?: string, count?: boolean, limit?: number, offset?: number, filters?: string, sorters?: string, requestState?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
34085
35101
  /**
34086
35102
  * This endpoint replaces the current access-request configuration.
34087
35103
  * @summary Update access request configuration
@@ -34137,13 +35153,31 @@ export declare const AccessRequestsBetaApiFp: (configuration?: Configuration) =>
34137
35153
  * @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.
34138
35154
  * @param {number} [limit] Max number of results to return.
34139
35155
  * @param {number} [offset] Offset into the full result set. Usually specified with *limit* to paginate through the results. Defaults to 0 if not specified.
34140
- * @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, in, ge, gt, le, lt, ne, sw* **accountActivityItemId**: *eq, in, ge, gt, le, lt, ne, isnull, sw* **created**: *eq, in, ge, gt, le, lt, ne, isnull, sw*
35156
+ * @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*
34141
35157
  * @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**
34142
35158
  * @param {string} [requestState] Filter the results by the state of the request. The only valid value is *EXECUTING*.
34143
35159
  * @param {*} [axiosOptions] Override http request option.
34144
35160
  * @throws {RequiredError}
34145
35161
  */
34146
35162
  listAccessRequestStatus(requestedFor?: string, requestedBy?: string, regardingIdentity?: string, assignedTo?: string, count?: boolean, limit?: number, offset?: number, filters?: string, sorters?: string, requestState?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<RequestedItemStatusBeta>>>;
35163
+ /**
35164
+ * Use this API to get access request statuses of all the access requests in the org based on the specified query parameters. Any user with user level ORG_ADMIN or scope idn:access-request-administration:read can access this endpoint to get the access request statuses
35165
+ * @summary Access request status for administrators
35166
+ * @param {string} xSailPointExperimental Use this header to enable this experimental API.
35167
+ * @param {string} [requestedFor] Filter the results by the identity the requests were made for. *me* indicates the current user. Mutually exclusive with *regarding-identity*.
35168
+ * @param {string} [requestedBy] Filter the results by the identity who made the requests. *me* indicates the current user. Mutually exclusive with *regarding-identity*.
35169
+ * @param {string} [regardingIdentity] Filter the results by the specified identity who is either the requester or target of the requests. *me* indicates the current user. Mutually exclusive with *requested-for* and *requested-by*.
35170
+ * @param {string} [assignedTo] Filter the results by the specified identity who is the owner of the Identity Request Work Item. *me* indicates the current user.
35171
+ * @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.
35172
+ * @param {number} [limit] Max number of results to return.
35173
+ * @param {number} [offset] Offset into the full result set. Usually specified with *limit* to paginate through the results. Defaults to 0 if not specified.
35174
+ * @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: **accountActivityItemId**: *eq, in, ge, gt, le, lt, ne, isnull, sw* **accessRequestId**: *in* **status**: *in, eq, ne* **created**: *eq, in, ge, gt, le, lt, ne, isnull, sw*
35175
+ * @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, accessRequestId**
35176
+ * @param {string} [requestState] Filter the results by the state of the request. The only valid value is *EXECUTING*.
35177
+ * @param {*} [axiosOptions] Override http request option.
35178
+ * @throws {RequiredError}
35179
+ */
35180
+ listAdministratorsAccessRequestStatus(xSailPointExperimental: string, requestedFor?: string, requestedBy?: string, regardingIdentity?: string, assignedTo?: string, count?: boolean, limit?: number, offset?: number, filters?: string, sorters?: string, requestState?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<AccessRequestAdminItemStatusBeta>>>;
34147
35181
  /**
34148
35182
  * This endpoint replaces the current access-request configuration.
34149
35183
  * @summary Update access request configuration
@@ -34197,6 +35231,14 @@ export declare const AccessRequestsBetaApiFactory: (configuration?: Configuratio
34197
35231
  * @throws {RequiredError}
34198
35232
  */
34199
35233
  listAccessRequestStatus(requestParameters?: AccessRequestsBetaApiListAccessRequestStatusRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<RequestedItemStatusBeta>>;
35234
+ /**
35235
+ * Use this API to get access request statuses of all the access requests in the org based on the specified query parameters. Any user with user level ORG_ADMIN or scope idn:access-request-administration:read can access this endpoint to get the access request statuses
35236
+ * @summary Access request status for administrators
35237
+ * @param {AccessRequestsBetaApiListAdministratorsAccessRequestStatusRequest} requestParameters Request parameters.
35238
+ * @param {*} [axiosOptions] Override http request option.
35239
+ * @throws {RequiredError}
35240
+ */
35241
+ listAdministratorsAccessRequestStatus(requestParameters: AccessRequestsBetaApiListAdministratorsAccessRequestStatusRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<AccessRequestAdminItemStatusBeta>>;
34200
35242
  /**
34201
35243
  * This endpoint replaces the current access-request configuration.
34202
35244
  * @summary Update access request configuration
@@ -34294,7 +35336,7 @@ export interface AccessRequestsBetaApiListAccessRequestStatusRequest {
34294
35336
  */
34295
35337
  readonly offset?: number;
34296
35338
  /**
34297
- * 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, in, ge, gt, le, lt, ne, sw* **accountActivityItemId**: *eq, in, ge, gt, le, lt, ne, isnull, sw* **created**: *eq, in, ge, gt, le, lt, ne, isnull, sw*
35339
+ * 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*
34298
35340
  * @type {string}
34299
35341
  * @memberof AccessRequestsBetaApiListAccessRequestStatus
34300
35342
  */
@@ -34312,6 +35354,79 @@ export interface AccessRequestsBetaApiListAccessRequestStatusRequest {
34312
35354
  */
34313
35355
  readonly requestState?: string;
34314
35356
  }
35357
+ /**
35358
+ * Request parameters for listAdministratorsAccessRequestStatus operation in AccessRequestsBetaApi.
35359
+ * @export
35360
+ * @interface AccessRequestsBetaApiListAdministratorsAccessRequestStatusRequest
35361
+ */
35362
+ export interface AccessRequestsBetaApiListAdministratorsAccessRequestStatusRequest {
35363
+ /**
35364
+ * Use this header to enable this experimental API.
35365
+ * @type {string}
35366
+ * @memberof AccessRequestsBetaApiListAdministratorsAccessRequestStatus
35367
+ */
35368
+ readonly xSailPointExperimental: string;
35369
+ /**
35370
+ * Filter the results by the identity the requests were made for. *me* indicates the current user. Mutually exclusive with *regarding-identity*.
35371
+ * @type {string}
35372
+ * @memberof AccessRequestsBetaApiListAdministratorsAccessRequestStatus
35373
+ */
35374
+ readonly requestedFor?: string;
35375
+ /**
35376
+ * Filter the results by the identity who made the requests. *me* indicates the current user. Mutually exclusive with *regarding-identity*.
35377
+ * @type {string}
35378
+ * @memberof AccessRequestsBetaApiListAdministratorsAccessRequestStatus
35379
+ */
35380
+ readonly requestedBy?: string;
35381
+ /**
35382
+ * Filter the results by the specified identity who is either the requester or target of the requests. *me* indicates the current user. Mutually exclusive with *requested-for* and *requested-by*.
35383
+ * @type {string}
35384
+ * @memberof AccessRequestsBetaApiListAdministratorsAccessRequestStatus
35385
+ */
35386
+ readonly regardingIdentity?: string;
35387
+ /**
35388
+ * Filter the results by the specified identity who is the owner of the Identity Request Work Item. *me* indicates the current user.
35389
+ * @type {string}
35390
+ * @memberof AccessRequestsBetaApiListAdministratorsAccessRequestStatus
35391
+ */
35392
+ readonly assignedTo?: string;
35393
+ /**
35394
+ * 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.
35395
+ * @type {boolean}
35396
+ * @memberof AccessRequestsBetaApiListAdministratorsAccessRequestStatus
35397
+ */
35398
+ readonly count?: boolean;
35399
+ /**
35400
+ * Max number of results to return.
35401
+ * @type {number}
35402
+ * @memberof AccessRequestsBetaApiListAdministratorsAccessRequestStatus
35403
+ */
35404
+ readonly limit?: number;
35405
+ /**
35406
+ * Offset into the full result set. Usually specified with *limit* to paginate through the results. Defaults to 0 if not specified.
35407
+ * @type {number}
35408
+ * @memberof AccessRequestsBetaApiListAdministratorsAccessRequestStatus
35409
+ */
35410
+ readonly offset?: number;
35411
+ /**
35412
+ * 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: **accountActivityItemId**: *eq, in, ge, gt, le, lt, ne, isnull, sw* **accessRequestId**: *in* **status**: *in, eq, ne* **created**: *eq, in, ge, gt, le, lt, ne, isnull, sw*
35413
+ * @type {string}
35414
+ * @memberof AccessRequestsBetaApiListAdministratorsAccessRequestStatus
35415
+ */
35416
+ readonly filters?: string;
35417
+ /**
35418
+ * 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, accessRequestId**
35419
+ * @type {string}
35420
+ * @memberof AccessRequestsBetaApiListAdministratorsAccessRequestStatus
35421
+ */
35422
+ readonly sorters?: string;
35423
+ /**
35424
+ * Filter the results by the state of the request. The only valid value is *EXECUTING*.
35425
+ * @type {string}
35426
+ * @memberof AccessRequestsBetaApiListAdministratorsAccessRequestStatus
35427
+ */
35428
+ readonly requestState?: string;
35429
+ }
34315
35430
  /**
34316
35431
  * Request parameters for setAccessRequestConfig operation in AccessRequestsBetaApi.
34317
35432
  * @export
@@ -34376,6 +35491,15 @@ export declare class AccessRequestsBetaApi extends BaseAPI {
34376
35491
  * @memberof AccessRequestsBetaApi
34377
35492
  */
34378
35493
  listAccessRequestStatus(requestParameters?: AccessRequestsBetaApiListAccessRequestStatusRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<RequestedItemStatusBeta[], any>>;
35494
+ /**
35495
+ * Use this API to get access request statuses of all the access requests in the org based on the specified query parameters. Any user with user level ORG_ADMIN or scope idn:access-request-administration:read can access this endpoint to get the access request statuses
35496
+ * @summary Access request status for administrators
35497
+ * @param {AccessRequestsBetaApiListAdministratorsAccessRequestStatusRequest} requestParameters Request parameters.
35498
+ * @param {*} [axiosOptions] Override http request option.
35499
+ * @throws {RequiredError}
35500
+ * @memberof AccessRequestsBetaApi
35501
+ */
35502
+ listAdministratorsAccessRequestStatus(requestParameters: AccessRequestsBetaApiListAdministratorsAccessRequestStatusRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AccessRequestAdminItemStatusBeta[], any>>;
34379
35503
  /**
34380
35504
  * This endpoint replaces the current access-request configuration.
34381
35505
  * @summary Update access request configuration
@@ -36022,7 +37146,7 @@ export declare const AppsBetaApiAxiosParamCreator: (configuration?: Configuratio
36022
37146
  * @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.
36023
37147
  * @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.
36024
37148
  * @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**
36025
- * @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, lt, ge, le* **owner.id**: *eq, in* **accountSource.id**: *eq, in* **enabled**: *eq*
37149
+ * @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*
36026
37150
  * @param {*} [axiosOptions] Override http request option.
36027
37151
  * @throws {RequiredError}
36028
37152
  */
@@ -36168,7 +37292,7 @@ export declare const AppsBetaApiFp: (configuration?: Configuration) => {
36168
37292
  * @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.
36169
37293
  * @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.
36170
37294
  * @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**
36171
- * @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, lt, ge, le* **owner.id**: *eq, in* **accountSource.id**: *eq, in* **enabled**: *eq*
37295
+ * @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*
36172
37296
  * @param {*} [axiosOptions] Override http request option.
36173
37297
  * @throws {RequiredError}
36174
37298
  */
@@ -36501,7 +37625,7 @@ export interface AppsBetaApiListAllSourceAppRequest {
36501
37625
  */
36502
37626
  readonly sorters?: string;
36503
37627
  /**
36504
- * 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, lt, ge, le* **owner.id**: *eq, in* **accountSource.id**: *eq, in* **enabled**: *eq*
37628
+ * 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*
36505
37629
  * @type {string}
36506
37630
  * @memberof AppsBetaApiListAllSourceApp
36507
37631
  */
@@ -38283,6 +39407,7 @@ export declare const CertificationsBetaApiAxiosParamCreator: (configuration?: Co
38283
39407
  * @summary Pending certification tasks
38284
39408
  * @param {string} id The identity campaign certification ID
38285
39409
  * @param {*} [axiosOptions] Override http request option.
39410
+ * @deprecated
38286
39411
  * @throws {RequiredError}
38287
39412
  */
38288
39413
  getIdentityCertificationPendingTasks: (id: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
@@ -38292,6 +39417,7 @@ export declare const CertificationsBetaApiAxiosParamCreator: (configuration?: Co
38292
39417
  * @param {string} id The identity campaign certification ID
38293
39418
  * @param {string} taskId The certification task ID
38294
39419
  * @param {*} [axiosOptions] Override http request option.
39420
+ * @deprecated
38295
39421
  * @throws {RequiredError}
38296
39422
  */
38297
39423
  getIdentityCertificationTaskStatus: (id: string, taskId: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
@@ -38319,6 +39445,7 @@ export declare const CertificationsBetaApiAxiosParamCreator: (configuration?: Co
38319
39445
  * @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* **phase**: *eq* **completed**: *eq, ne* **campaignRef.campaignType**: *eq, in* **campaignRef.id**: *eq, in*
38320
39446
  * @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, due, signed**
38321
39447
  * @param {*} [axiosOptions] Override http request option.
39448
+ * @deprecated
38322
39449
  * @throws {RequiredError}
38323
39450
  */
38324
39451
  listCertifications: (reviewerIdentitiy?: string, limit?: number, offset?: number, count?: boolean, filters?: string, sorters?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
@@ -38357,6 +39484,7 @@ export declare const CertificationsBetaApiFp: (configuration?: Configuration) =>
38357
39484
  * @summary Pending certification tasks
38358
39485
  * @param {string} id The identity campaign certification ID
38359
39486
  * @param {*} [axiosOptions] Override http request option.
39487
+ * @deprecated
38360
39488
  * @throws {RequiredError}
38361
39489
  */
38362
39490
  getIdentityCertificationPendingTasks(id: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<IdentityCertificationTaskBeta>>>;
@@ -38366,6 +39494,7 @@ export declare const CertificationsBetaApiFp: (configuration?: Configuration) =>
38366
39494
  * @param {string} id The identity campaign certification ID
38367
39495
  * @param {string} taskId The certification task ID
38368
39496
  * @param {*} [axiosOptions] Override http request option.
39497
+ * @deprecated
38369
39498
  * @throws {RequiredError}
38370
39499
  */
38371
39500
  getIdentityCertificationTaskStatus(id: string, taskId: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<IdentityCertificationTaskBeta>>;
@@ -38393,6 +39522,7 @@ export declare const CertificationsBetaApiFp: (configuration?: Configuration) =>
38393
39522
  * @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* **phase**: *eq* **completed**: *eq, ne* **campaignRef.campaignType**: *eq, in* **campaignRef.id**: *eq, in*
38394
39523
  * @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, due, signed**
38395
39524
  * @param {*} [axiosOptions] Override http request option.
39525
+ * @deprecated
38396
39526
  * @throws {RequiredError}
38397
39527
  */
38398
39528
  listCertifications(reviewerIdentitiy?: string, limit?: number, offset?: number, count?: boolean, filters?: string, sorters?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<CertificationDtoBeta>>>;
@@ -38426,6 +39556,7 @@ export declare const CertificationsBetaApiFactory: (configuration?: Configuratio
38426
39556
  * @summary Pending certification tasks
38427
39557
  * @param {CertificationsBetaApiGetIdentityCertificationPendingTasksRequest} requestParameters Request parameters.
38428
39558
  * @param {*} [axiosOptions] Override http request option.
39559
+ * @deprecated
38429
39560
  * @throws {RequiredError}
38430
39561
  */
38431
39562
  getIdentityCertificationPendingTasks(requestParameters: CertificationsBetaApiGetIdentityCertificationPendingTasksRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<IdentityCertificationTaskBeta>>;
@@ -38434,6 +39565,7 @@ export declare const CertificationsBetaApiFactory: (configuration?: Configuratio
38434
39565
  * @summary Certification task status
38435
39566
  * @param {CertificationsBetaApiGetIdentityCertificationTaskStatusRequest} requestParameters Request parameters.
38436
39567
  * @param {*} [axiosOptions] Override http request option.
39568
+ * @deprecated
38437
39569
  * @throws {RequiredError}
38438
39570
  */
38439
39571
  getIdentityCertificationTaskStatus(requestParameters: CertificationsBetaApiGetIdentityCertificationTaskStatusRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<IdentityCertificationTaskBeta>;
@@ -38451,6 +39583,7 @@ export declare const CertificationsBetaApiFactory: (configuration?: Configuratio
38451
39583
  * @summary Certifications by ids
38452
39584
  * @param {CertificationsBetaApiListCertificationsRequest} requestParameters Request parameters.
38453
39585
  * @param {*} [axiosOptions] Override http request option.
39586
+ * @deprecated
38454
39587
  * @throws {RequiredError}
38455
39588
  */
38456
39589
  listCertifications(requestParameters?: CertificationsBetaApiListCertificationsRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<CertificationDtoBeta>>;
@@ -38666,6 +39799,7 @@ export declare class CertificationsBetaApi extends BaseAPI {
38666
39799
  * @summary Pending certification tasks
38667
39800
  * @param {CertificationsBetaApiGetIdentityCertificationPendingTasksRequest} requestParameters Request parameters.
38668
39801
  * @param {*} [axiosOptions] Override http request option.
39802
+ * @deprecated
38669
39803
  * @throws {RequiredError}
38670
39804
  * @memberof CertificationsBetaApi
38671
39805
  */
@@ -38675,6 +39809,7 @@ export declare class CertificationsBetaApi extends BaseAPI {
38675
39809
  * @summary Certification task status
38676
39810
  * @param {CertificationsBetaApiGetIdentityCertificationTaskStatusRequest} requestParameters Request parameters.
38677
39811
  * @param {*} [axiosOptions] Override http request option.
39812
+ * @deprecated
38678
39813
  * @throws {RequiredError}
38679
39814
  * @memberof CertificationsBetaApi
38680
39815
  */
@@ -38694,6 +39829,7 @@ export declare class CertificationsBetaApi extends BaseAPI {
38694
39829
  * @summary Certifications by ids
38695
39830
  * @param {CertificationsBetaApiListCertificationsRequest} requestParameters Request parameters.
38696
39831
  * @param {*} [axiosOptions] Override http request option.
39832
+ * @deprecated
38697
39833
  * @throws {RequiredError}
38698
39834
  * @memberof CertificationsBetaApi
38699
39835
  */
@@ -43719,20 +44855,20 @@ export declare const IAIRoleMiningBetaApiAxiosParamCreator: (configuration?: Con
43719
44855
  * @summary Update a potential role in session
43720
44856
  * @param {string} sessionId The role mining session id
43721
44857
  * @param {string} potentialRoleId The potential role summary id
43722
- * @param {Array<PatchPotentialRoleRequestInnerBeta>} patchPotentialRoleRequestInnerBeta
44858
+ * @param {Array<JsonPatchOperationBeta>} jsonPatchOperationBeta
43723
44859
  * @param {*} [axiosOptions] Override http request option.
43724
44860
  * @throws {RequiredError}
43725
44861
  */
43726
- patchPotentialRole: (sessionId: string, potentialRoleId: string, patchPotentialRoleRequestInnerBeta: Array<PatchPotentialRoleRequestInnerBeta>, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
44862
+ patchPotentialRoleSession: (sessionId: string, potentialRoleId: string, jsonPatchOperationBeta: Array<JsonPatchOperationBeta>, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
43727
44863
  /**
43728
44864
  * This method updates an existing potential role. The following fields can be modified: * `description` * `name` * `saved` >**NOTE: All other fields cannot be modified.**
43729
44865
  * @summary Update a potential role
43730
44866
  * @param {string} potentialRoleId The potential role summary id
43731
- * @param {Array<PatchPotentialRoleRequestInnerBeta>} patchPotentialRoleRequestInnerBeta
44867
+ * @param {Array<PatchRoleMiningPotentialRoleRequestInnerBeta>} patchRoleMiningPotentialRoleRequestInnerBeta
43732
44868
  * @param {*} [axiosOptions] Override http request option.
43733
44869
  * @throws {RequiredError}
43734
44870
  */
43735
- patchRoleMiningPotentialRole: (potentialRoleId: string, patchPotentialRoleRequestInnerBeta: Array<PatchPotentialRoleRequestInnerBeta>, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
44871
+ patchRoleMiningPotentialRole: (potentialRoleId: string, patchRoleMiningPotentialRoleRequestInnerBeta: Array<PatchRoleMiningPotentialRoleRequestInnerBeta>, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
43736
44872
  /**
43737
44873
  * 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.
43738
44874
  * @summary Patch a role mining session
@@ -43997,20 +45133,20 @@ export declare const IAIRoleMiningBetaApiFp: (configuration?: Configuration) =>
43997
45133
  * @summary Update a potential role in session
43998
45134
  * @param {string} sessionId The role mining session id
43999
45135
  * @param {string} potentialRoleId The potential role summary id
44000
- * @param {Array<PatchPotentialRoleRequestInnerBeta>} patchPotentialRoleRequestInnerBeta
45136
+ * @param {Array<JsonPatchOperationBeta>} jsonPatchOperationBeta
44001
45137
  * @param {*} [axiosOptions] Override http request option.
44002
45138
  * @throws {RequiredError}
44003
45139
  */
44004
- patchPotentialRole(sessionId: string, potentialRoleId: string, patchPotentialRoleRequestInnerBeta: Array<PatchPotentialRoleRequestInnerBeta>, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>>;
45140
+ patchPotentialRoleSession(sessionId: string, potentialRoleId: string, jsonPatchOperationBeta: Array<JsonPatchOperationBeta>, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>>;
44005
45141
  /**
44006
45142
  * This method updates an existing potential role. The following fields can be modified: * `description` * `name` * `saved` >**NOTE: All other fields cannot be modified.**
44007
45143
  * @summary Update a potential role
44008
45144
  * @param {string} potentialRoleId The potential role summary id
44009
- * @param {Array<PatchPotentialRoleRequestInnerBeta>} patchPotentialRoleRequestInnerBeta
45145
+ * @param {Array<PatchRoleMiningPotentialRoleRequestInnerBeta>} patchRoleMiningPotentialRoleRequestInnerBeta
44010
45146
  * @param {*} [axiosOptions] Override http request option.
44011
45147
  * @throws {RequiredError}
44012
45148
  */
44013
- patchRoleMiningPotentialRole(potentialRoleId: string, patchPotentialRoleRequestInnerBeta: Array<PatchPotentialRoleRequestInnerBeta>, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>>;
45149
+ patchRoleMiningPotentialRole(potentialRoleId: string, patchRoleMiningPotentialRoleRequestInnerBeta: Array<PatchRoleMiningPotentialRoleRequestInnerBeta>, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>>;
44014
45150
  /**
44015
45151
  * 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.
44016
45152
  * @summary Patch a role mining session
@@ -44209,11 +45345,11 @@ export declare const IAIRoleMiningBetaApiFactory: (configuration?: Configuration
44209
45345
  /**
44210
45346
  * This method updates an existing potential role using the role mining session id and the potential role summary id. The following fields can be modified: * `description` * `name` * `saved` >**NOTE: All other fields cannot be modified.**
44211
45347
  * @summary Update a potential role in session
44212
- * @param {IAIRoleMiningBetaApiPatchPotentialRoleRequest} requestParameters Request parameters.
45348
+ * @param {IAIRoleMiningBetaApiPatchPotentialRoleSessionRequest} requestParameters Request parameters.
44213
45349
  * @param {*} [axiosOptions] Override http request option.
44214
45350
  * @throws {RequiredError}
44215
45351
  */
44216
- patchPotentialRole(requestParameters: IAIRoleMiningBetaApiPatchPotentialRoleRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<object>;
45352
+ patchPotentialRoleSession(requestParameters: IAIRoleMiningBetaApiPatchPotentialRoleSessionRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<object>;
44217
45353
  /**
44218
45354
  * This method updates an existing potential role. The following fields can be modified: * `description` * `name` * `saved` >**NOTE: All other fields cannot be modified.**
44219
45355
  * @summary Update a potential role
@@ -44897,29 +46033,29 @@ export interface IAIRoleMiningBetaApiGetSavedPotentialRolesRequest {
44897
46033
  readonly count?: boolean;
44898
46034
  }
44899
46035
  /**
44900
- * Request parameters for patchPotentialRole operation in IAIRoleMiningBetaApi.
46036
+ * Request parameters for patchPotentialRoleSession operation in IAIRoleMiningBetaApi.
44901
46037
  * @export
44902
- * @interface IAIRoleMiningBetaApiPatchPotentialRoleRequest
46038
+ * @interface IAIRoleMiningBetaApiPatchPotentialRoleSessionRequest
44903
46039
  */
44904
- export interface IAIRoleMiningBetaApiPatchPotentialRoleRequest {
46040
+ export interface IAIRoleMiningBetaApiPatchPotentialRoleSessionRequest {
44905
46041
  /**
44906
46042
  * The role mining session id
44907
46043
  * @type {string}
44908
- * @memberof IAIRoleMiningBetaApiPatchPotentialRole
46044
+ * @memberof IAIRoleMiningBetaApiPatchPotentialRoleSession
44909
46045
  */
44910
46046
  readonly sessionId: string;
44911
46047
  /**
44912
46048
  * The potential role summary id
44913
46049
  * @type {string}
44914
- * @memberof IAIRoleMiningBetaApiPatchPotentialRole
46050
+ * @memberof IAIRoleMiningBetaApiPatchPotentialRoleSession
44915
46051
  */
44916
46052
  readonly potentialRoleId: string;
44917
46053
  /**
44918
46054
  *
44919
- * @type {Array<PatchPotentialRoleRequestInnerBeta>}
44920
- * @memberof IAIRoleMiningBetaApiPatchPotentialRole
46055
+ * @type {Array<JsonPatchOperationBeta>}
46056
+ * @memberof IAIRoleMiningBetaApiPatchPotentialRoleSession
44921
46057
  */
44922
- readonly patchPotentialRoleRequestInnerBeta: Array<PatchPotentialRoleRequestInnerBeta>;
46058
+ readonly jsonPatchOperationBeta: Array<JsonPatchOperationBeta>;
44923
46059
  }
44924
46060
  /**
44925
46061
  * Request parameters for patchRoleMiningPotentialRole operation in IAIRoleMiningBetaApi.
@@ -44935,10 +46071,10 @@ export interface IAIRoleMiningBetaApiPatchRoleMiningPotentialRoleRequest {
44935
46071
  readonly potentialRoleId: string;
44936
46072
  /**
44937
46073
  *
44938
- * @type {Array<PatchPotentialRoleRequestInnerBeta>}
46074
+ * @type {Array<PatchRoleMiningPotentialRoleRequestInnerBeta>}
44939
46075
  * @memberof IAIRoleMiningBetaApiPatchRoleMiningPotentialRole
44940
46076
  */
44941
- readonly patchPotentialRoleRequestInnerBeta: Array<PatchPotentialRoleRequestInnerBeta>;
46077
+ readonly patchRoleMiningPotentialRoleRequestInnerBeta: Array<PatchRoleMiningPotentialRoleRequestInnerBeta>;
44942
46078
  }
44943
46079
  /**
44944
46080
  * Request parameters for patchRoleMiningSession operation in IAIRoleMiningBetaApi.
@@ -45185,12 +46321,12 @@ export declare class IAIRoleMiningBetaApi extends BaseAPI {
45185
46321
  /**
45186
46322
  * This method updates an existing potential role using the role mining session id and the potential role summary id. The following fields can be modified: * `description` * `name` * `saved` >**NOTE: All other fields cannot be modified.**
45187
46323
  * @summary Update a potential role in session
45188
- * @param {IAIRoleMiningBetaApiPatchPotentialRoleRequest} requestParameters Request parameters.
46324
+ * @param {IAIRoleMiningBetaApiPatchPotentialRoleSessionRequest} requestParameters Request parameters.
45189
46325
  * @param {*} [axiosOptions] Override http request option.
45190
46326
  * @throws {RequiredError}
45191
46327
  * @memberof IAIRoleMiningBetaApi
45192
46328
  */
45193
- patchPotentialRole(requestParameters: IAIRoleMiningBetaApiPatchPotentialRoleRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any>>;
46329
+ patchPotentialRoleSession(requestParameters: IAIRoleMiningBetaApiPatchPotentialRoleSessionRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any>>;
45194
46330
  /**
45195
46331
  * This method updates an existing potential role. The following fields can be modified: * `description` * `name` * `saved` >**NOTE: All other fields cannot be modified.**
45196
46332
  * @summary Update a potential role
@@ -49194,7 +50330,7 @@ export declare const ManagedClustersBetaApiAxiosParamCreator: (configuration?: C
49194
50330
  * @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.
49195
50331
  * @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.
49196
50332
  * @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.
49197
- * @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: **operational**: *eq*
50333
+ * @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: **operational**: *eq* **name**: *eq* **type**: *eq* **status**: *eq*
49198
50334
  * @param {*} [axiosOptions] Override http request option.
49199
50335
  * @deprecated
49200
50336
  * @throws {RequiredError}
@@ -49240,7 +50376,7 @@ export declare const ManagedClustersBetaApiFp: (configuration?: Configuration) =
49240
50376
  * @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.
49241
50377
  * @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.
49242
50378
  * @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.
49243
- * @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: **operational**: *eq*
50379
+ * @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: **operational**: *eq* **name**: *eq* **type**: *eq* **status**: *eq*
49244
50380
  * @param {*} [axiosOptions] Override http request option.
49245
50381
  * @deprecated
49246
50382
  * @throws {RequiredError}
@@ -49350,7 +50486,7 @@ export interface ManagedClustersBetaApiGetManagedClustersRequest {
49350
50486
  */
49351
50487
  readonly count?: boolean;
49352
50488
  /**
49353
- * 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: **operational**: *eq*
50489
+ * 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: **operational**: *eq* **name**: *eq* **type**: *eq* **status**: *eq*
49354
50490
  * @type {string}
49355
50491
  * @memberof ManagedClustersBetaApiGetManagedClusters
49356
50492
  */
@@ -59974,7 +61110,7 @@ export interface SourcesBetaApiGetSourceConfigRequest {
59974
61110
  readonly id: string;
59975
61111
  /**
59976
61112
  * The locale to apply to the config. If no viable locale is given, it will default to \&quot;en\&quot;
59977
- * @type {'de' | 'false' | 'fi' | 'sv' | 'ru' | 'pt' | 'ko' | 'zh-TW' | 'en' | 'it' | 'fr' | 'zh-CN' | 'hu' | 'es' | 'cs' | 'ja' | 'pl' | 'da' | 'nl'}
61113
+ * @type {'de' | 'no' | 'fi' | 'sv' | 'ru' | 'pt' | 'ko' | 'zh-TW' | 'en' | 'it' | 'fr' | 'zh-CN' | 'hu' | 'es' | 'cs' | 'ja' | 'pl' | 'da' | 'nl'}
59978
61114
  * @memberof SourcesBetaApiGetSourceConfig
59979
61115
  */
59980
61116
  readonly locale?: GetSourceConfigLocaleBeta;
@@ -60947,7 +62083,7 @@ export declare class SourcesBetaApi extends BaseAPI {
60947
62083
  */
60948
62084
  export declare const GetSourceConfigLocaleBeta: {
60949
62085
  readonly De: "de";
60950
- readonly False: "false";
62086
+ readonly No: "no";
60951
62087
  readonly Fi: "fi";
60952
62088
  readonly Sv: "sv";
60953
62089
  readonly Ru: "ru";
@@ -62205,22 +63341,24 @@ export declare class TagsBetaApi extends BaseAPI {
62205
63341
  */
62206
63342
  export declare const TaskManagementBetaApiAxiosParamCreator: (configuration?: Configuration) => {
62207
63343
  /**
62208
- * Responds with headers only for list of task statuses for pending tasks.
63344
+ * 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.
62209
63345
  * @summary Retrieve pending task list headers
62210
63346
  * @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.
62211
63347
  * @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.
62212
63348
  * @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.
62213
63349
  * @param {*} [axiosOptions] Override http request option.
63350
+ * @deprecated
62214
63351
  * @throws {RequiredError}
62215
63352
  */
62216
63353
  getPendingTaskHeaders: (offset?: number, limit?: number, count?: boolean, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
62217
63354
  /**
62218
- * 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.
63355
+ * 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.
62219
63356
  * @summary Retrieve pending task status list
62220
63357
  * @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.
62221
63358
  * @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.
62222
63359
  * @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.
62223
63360
  * @param {*} [axiosOptions] Override http request option.
63361
+ * @deprecated
62224
63362
  * @throws {RequiredError}
62225
63363
  */
62226
63364
  getPendingTasks: (offset?: number, limit?: number, count?: boolean, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
@@ -62260,22 +63398,24 @@ export declare const TaskManagementBetaApiAxiosParamCreator: (configuration?: Co
62260
63398
  */
62261
63399
  export declare const TaskManagementBetaApiFp: (configuration?: Configuration) => {
62262
63400
  /**
62263
- * Responds with headers only for list of task statuses for pending tasks.
63401
+ * 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.
62264
63402
  * @summary Retrieve pending task list headers
62265
63403
  * @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.
62266
63404
  * @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.
62267
63405
  * @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.
62268
63406
  * @param {*} [axiosOptions] Override http request option.
63407
+ * @deprecated
62269
63408
  * @throws {RequiredError}
62270
63409
  */
62271
63410
  getPendingTaskHeaders(offset?: number, limit?: number, count?: boolean, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
62272
63411
  /**
62273
- * 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.
63412
+ * 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.
62274
63413
  * @summary Retrieve pending task status list
62275
63414
  * @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.
62276
63415
  * @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.
62277
63416
  * @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.
62278
63417
  * @param {*} [axiosOptions] Override http request option.
63418
+ * @deprecated
62279
63419
  * @throws {RequiredError}
62280
63420
  */
62281
63421
  getPendingTasks(offset?: number, limit?: number, count?: boolean, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<TaskStatusBeta>>>;
@@ -62315,18 +63455,20 @@ export declare const TaskManagementBetaApiFp: (configuration?: Configuration) =>
62315
63455
  */
62316
63456
  export declare const TaskManagementBetaApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
62317
63457
  /**
62318
- * Responds with headers only for list of task statuses for pending tasks.
63458
+ * 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.
62319
63459
  * @summary Retrieve pending task list headers
62320
63460
  * @param {TaskManagementBetaApiGetPendingTaskHeadersRequest} requestParameters Request parameters.
62321
63461
  * @param {*} [axiosOptions] Override http request option.
63462
+ * @deprecated
62322
63463
  * @throws {RequiredError}
62323
63464
  */
62324
63465
  getPendingTaskHeaders(requestParameters?: TaskManagementBetaApiGetPendingTaskHeadersRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<void>;
62325
63466
  /**
62326
- * 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.
63467
+ * 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.
62327
63468
  * @summary Retrieve pending task status list
62328
63469
  * @param {TaskManagementBetaApiGetPendingTasksRequest} requestParameters Request parameters.
62329
63470
  * @param {*} [axiosOptions] Override http request option.
63471
+ * @deprecated
62330
63472
  * @throws {RequiredError}
62331
63473
  */
62332
63474
  getPendingTasks(requestParameters?: TaskManagementBetaApiGetPendingTasksRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<TaskStatusBeta>>;
@@ -62482,19 +63624,21 @@ export interface TaskManagementBetaApiUpdateTaskStatusRequest {
62482
63624
  */
62483
63625
  export declare class TaskManagementBetaApi extends BaseAPI {
62484
63626
  /**
62485
- * Responds with headers only for list of task statuses for pending tasks.
63627
+ * 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.
62486
63628
  * @summary Retrieve pending task list headers
62487
63629
  * @param {TaskManagementBetaApiGetPendingTaskHeadersRequest} requestParameters Request parameters.
62488
63630
  * @param {*} [axiosOptions] Override http request option.
63631
+ * @deprecated
62489
63632
  * @throws {RequiredError}
62490
63633
  * @memberof TaskManagementBetaApi
62491
63634
  */
62492
63635
  getPendingTaskHeaders(requestParameters?: TaskManagementBetaApiGetPendingTaskHeadersRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
62493
63636
  /**
62494
- * 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.
63637
+ * 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.
62495
63638
  * @summary Retrieve pending task status list
62496
63639
  * @param {TaskManagementBetaApiGetPendingTasksRequest} requestParameters Request parameters.
62497
63640
  * @param {*} [axiosOptions] Override http request option.
63641
+ * @deprecated
62498
63642
  * @throws {RequiredError}
62499
63643
  * @memberof TaskManagementBetaApi
62500
63644
  */