sailpoint-api-client 1.4.15 → 1.4.16

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/beta/api.ts CHANGED
@@ -280,25 +280,25 @@ export interface AccessItemAppResponseBeta {
280
280
  'appRoleId'?: string;
281
281
  }
282
282
  /**
283
- * Identity who approved the access item request.
283
+ *
284
284
  * @export
285
285
  * @interface AccessItemApproverDtoBeta
286
286
  */
287
287
  export interface AccessItemApproverDtoBeta {
288
288
  /**
289
- * DTO type of identity who approved the access item request.
289
+ * DTO type of the identity who approved the access item request.
290
290
  * @type {string}
291
291
  * @memberof AccessItemApproverDtoBeta
292
292
  */
293
293
  'type'?: AccessItemApproverDtoBetaTypeBeta;
294
294
  /**
295
- * ID of identity who approved the access item request.
295
+ * ID of the identity who approved the access item request.
296
296
  * @type {string}
297
297
  * @memberof AccessItemApproverDtoBeta
298
298
  */
299
299
  'id'?: string;
300
300
  /**
301
- * Human-readable display name of identity who approved the access item request.
301
+ * Name of the identity who approved the access item request.
302
302
  * @type {string}
303
303
  * @memberof AccessItemApproverDtoBeta
304
304
  */
@@ -569,6 +569,38 @@ export interface AccessItemRemovedBeta {
569
569
  */
570
570
  'governanceEvent'?: CorrelatedGovernanceEventBeta;
571
571
  }
572
+ /**
573
+ * Identity whom the access item is requested for.
574
+ * @export
575
+ * @interface AccessItemRequestedForDto1Beta
576
+ */
577
+ export interface AccessItemRequestedForDto1Beta {
578
+ /**
579
+ * DTO type of the identity whom the access item is requested for.
580
+ * @type {string}
581
+ * @memberof AccessItemRequestedForDto1Beta
582
+ */
583
+ 'type'?: AccessItemRequestedForDto1BetaTypeBeta;
584
+ /**
585
+ * ID of the identity whom the access item is requested for.
586
+ * @type {string}
587
+ * @memberof AccessItemRequestedForDto1Beta
588
+ */
589
+ 'id'?: string;
590
+ /**
591
+ * Name of the identity whom the access item is requested for.
592
+ * @type {string}
593
+ * @memberof AccessItemRequestedForDto1Beta
594
+ */
595
+ 'name'?: string;
596
+ }
597
+
598
+ export const AccessItemRequestedForDto1BetaTypeBeta = {
599
+ Identity: 'IDENTITY'
600
+ } as const;
601
+
602
+ export type AccessItemRequestedForDto1BetaTypeBeta = typeof AccessItemRequestedForDto1BetaTypeBeta[keyof typeof AccessItemRequestedForDto1BetaTypeBeta];
603
+
572
604
  /**
573
605
  * Identity the access item is requested for.
574
606
  * @export
@@ -633,6 +665,38 @@ export const AccessItemRequesterBetaTypeBeta = {
633
665
 
634
666
  export type AccessItemRequesterBetaTypeBeta = typeof AccessItemRequesterBetaTypeBeta[keyof typeof AccessItemRequesterBetaTypeBeta];
635
667
 
668
+ /**
669
+ * Access item requester\'s identity.
670
+ * @export
671
+ * @interface AccessItemRequesterDto1Beta
672
+ */
673
+ export interface AccessItemRequesterDto1Beta {
674
+ /**
675
+ * Access item requester\'s DTO type.
676
+ * @type {string}
677
+ * @memberof AccessItemRequesterDto1Beta
678
+ */
679
+ 'type'?: AccessItemRequesterDto1BetaTypeBeta;
680
+ /**
681
+ * Access item requester\'s identity ID.
682
+ * @type {string}
683
+ * @memberof AccessItemRequesterDto1Beta
684
+ */
685
+ 'id'?: string;
686
+ /**
687
+ * Access item requester\'s name.
688
+ * @type {string}
689
+ * @memberof AccessItemRequesterDto1Beta
690
+ */
691
+ 'name'?: string;
692
+ }
693
+
694
+ export const AccessItemRequesterDto1BetaTypeBeta = {
695
+ Identity: 'IDENTITY'
696
+ } as const;
697
+
698
+ export type AccessItemRequesterDto1BetaTypeBeta = typeof AccessItemRequesterDto1BetaTypeBeta[keyof typeof AccessItemRequesterDto1BetaTypeBeta];
699
+
636
700
  /**
637
701
  * Access item requester\'s identity.
638
702
  * @export
@@ -1376,29 +1440,29 @@ export type AccessRequestDynamicApprover1BetaTypeBeta = typeof AccessRequestDyna
1376
1440
  */
1377
1441
  export interface AccessRequestDynamicApproverBeta {
1378
1442
  /**
1379
- * The unique ID of the access request object. Can be used with the [access request status endpoint](https://developer.sailpoint.com/idn/api/beta/list-access-request-status) to get the status of the request.
1443
+ * Unique ID of the access request object. You can use this ID with the [Access Request Status endpoint](https://developer.sailpoint.com/idn/api/beta/list-access-request-status) to get the request\'s status.
1380
1444
  * @type {string}
1381
1445
  * @memberof AccessRequestDynamicApproverBeta
1382
1446
  */
1383
1447
  'accessRequestId': string;
1384
1448
  /**
1385
1449
  * Identities access was requested for.
1386
- * @type {Array<AccessItemRequestedForDtoBeta>}
1450
+ * @type {Array<AccessItemRequestedForDto1Beta>}
1387
1451
  * @memberof AccessRequestDynamicApproverBeta
1388
1452
  */
1389
- 'requestedFor': Array<AccessItemRequestedForDtoBeta>;
1453
+ 'requestedFor': Array<AccessItemRequestedForDto1Beta>;
1390
1454
  /**
1391
- * The access items that are being requested.
1455
+ * Requested access items.
1392
1456
  * @type {Array<AccessRequestDynamicApproverRequestedItemsInnerBeta>}
1393
1457
  * @memberof AccessRequestDynamicApproverBeta
1394
1458
  */
1395
1459
  'requestedItems': Array<AccessRequestDynamicApproverRequestedItemsInnerBeta>;
1396
1460
  /**
1397
1461
  *
1398
- * @type {AccessItemRequesterDtoBeta}
1462
+ * @type {AccessItemRequesterDto1Beta}
1399
1463
  * @memberof AccessRequestDynamicApproverBeta
1400
1464
  */
1401
- 'requestedBy': AccessItemRequesterDtoBeta;
1465
+ 'requestedBy': AccessItemRequesterDto1Beta;
1402
1466
  }
1403
1467
  /**
1404
1468
  *
@@ -1407,37 +1471,37 @@ export interface AccessRequestDynamicApproverBeta {
1407
1471
  */
1408
1472
  export interface AccessRequestDynamicApproverRequestedItemsInnerBeta {
1409
1473
  /**
1410
- * The unique ID of the access item.
1474
+ * Access item\'s unique identifier.
1411
1475
  * @type {string}
1412
1476
  * @memberof AccessRequestDynamicApproverRequestedItemsInnerBeta
1413
1477
  */
1414
1478
  'id': string;
1415
1479
  /**
1416
- * Human friendly name of the access item.
1480
+ * Access item\'s name.
1417
1481
  * @type {string}
1418
1482
  * @memberof AccessRequestDynamicApproverRequestedItemsInnerBeta
1419
1483
  */
1420
1484
  'name': string;
1421
1485
  /**
1422
- * Extended description of the access item.
1486
+ * Access item\'s extended description.
1423
1487
  * @type {string}
1424
1488
  * @memberof AccessRequestDynamicApproverRequestedItemsInnerBeta
1425
1489
  */
1426
1490
  'description'?: string | null;
1427
1491
  /**
1428
- * The type of access item being requested.
1492
+ * Type of access item being requested.
1429
1493
  * @type {object}
1430
1494
  * @memberof AccessRequestDynamicApproverRequestedItemsInnerBeta
1431
1495
  */
1432
1496
  'type': AccessRequestDynamicApproverRequestedItemsInnerBetaTypeBeta;
1433
1497
  /**
1434
- * Grant or revoke the access item
1498
+ * Action to perform on the requested access item.
1435
1499
  * @type {object}
1436
1500
  * @memberof AccessRequestDynamicApproverRequestedItemsInnerBeta
1437
1501
  */
1438
1502
  'operation': AccessRequestDynamicApproverRequestedItemsInnerBetaOperationBeta;
1439
1503
  /**
1440
- * A comment from the requestor on why the access is needed.
1504
+ * Comment from the requester about why the access is necessary.
1441
1505
  * @type {string}
1442
1506
  * @memberof AccessRequestDynamicApproverRequestedItemsInnerBeta
1443
1507
  */
@@ -1634,62 +1698,30 @@ export type AccessRequestPhasesBetaResultBeta = typeof AccessRequestPhasesBetaRe
1634
1698
  */
1635
1699
  export interface AccessRequestPostApprovalBeta {
1636
1700
  /**
1637
- * The unique ID of the access request.
1701
+ * Access request\'s unique ID.
1638
1702
  * @type {string}
1639
1703
  * @memberof AccessRequestPostApprovalBeta
1640
1704
  */
1641
1705
  'accessRequestId': string;
1642
1706
  /**
1643
- * Identities access was requested for.
1644
- * @type {Array<AccessItemRequestedForDtoBeta>}
1707
+ * Identities whom access was requested for.
1708
+ * @type {Array<AccessItemRequestedForDto1Beta>}
1645
1709
  * @memberof AccessRequestPostApprovalBeta
1646
1710
  */
1647
- 'requestedFor': Array<AccessItemRequestedForDtoBeta>;
1711
+ 'requestedFor': Array<AccessItemRequestedForDto1Beta>;
1648
1712
  /**
1649
- * Details on the outcome of each access item.
1713
+ * Details about the outcome of each requested access item.
1650
1714
  * @type {Array<AccessRequestPostApprovalRequestedItemsStatusInnerBeta>}
1651
1715
  * @memberof AccessRequestPostApprovalBeta
1652
1716
  */
1653
1717
  'requestedItemsStatus': Array<AccessRequestPostApprovalRequestedItemsStatusInnerBeta>;
1654
1718
  /**
1655
1719
  *
1656
- * @type {AccessItemRequesterDtoBeta}
1720
+ * @type {AccessItemRequesterDto1Beta}
1657
1721
  * @memberof AccessRequestPostApprovalBeta
1658
1722
  */
1659
- 'requestedBy': AccessItemRequesterDtoBeta;
1723
+ 'requestedBy': AccessItemRequesterDto1Beta;
1660
1724
  }
1661
- /**
1662
- * The identity of the approver.
1663
- * @export
1664
- * @interface AccessRequestPostApprovalRequestedItemsStatusInnerApprovalInfoInnerApproverBeta
1665
- */
1666
- export interface AccessRequestPostApprovalRequestedItemsStatusInnerApprovalInfoInnerApproverBeta {
1667
- /**
1668
- * The type of object that is referenced
1669
- * @type {object}
1670
- * @memberof AccessRequestPostApprovalRequestedItemsStatusInnerApprovalInfoInnerApproverBeta
1671
- */
1672
- 'type': AccessRequestPostApprovalRequestedItemsStatusInnerApprovalInfoInnerApproverBetaTypeBeta;
1673
- /**
1674
- * ID of identity who approved the access item request.
1675
- * @type {string}
1676
- * @memberof AccessRequestPostApprovalRequestedItemsStatusInnerApprovalInfoInnerApproverBeta
1677
- */
1678
- 'id': string;
1679
- /**
1680
- * Human-readable display name of identity who approved the access item request.
1681
- * @type {string}
1682
- * @memberof AccessRequestPostApprovalRequestedItemsStatusInnerApprovalInfoInnerApproverBeta
1683
- */
1684
- 'name': string;
1685
- }
1686
-
1687
- export const AccessRequestPostApprovalRequestedItemsStatusInnerApprovalInfoInnerApproverBetaTypeBeta = {
1688
- Identity: 'IDENTITY'
1689
- } as const;
1690
-
1691
- export type AccessRequestPostApprovalRequestedItemsStatusInnerApprovalInfoInnerApproverBetaTypeBeta = typeof AccessRequestPostApprovalRequestedItemsStatusInnerApprovalInfoInnerApproverBetaTypeBeta[keyof typeof AccessRequestPostApprovalRequestedItemsStatusInnerApprovalInfoInnerApproverBetaTypeBeta];
1692
-
1693
1725
  /**
1694
1726
  *
1695
1727
  * @export
@@ -1697,29 +1729,29 @@ export type AccessRequestPostApprovalRequestedItemsStatusInnerApprovalInfoInnerA
1697
1729
  */
1698
1730
  export interface AccessRequestPostApprovalRequestedItemsStatusInnerApprovalInfoInnerBeta {
1699
1731
  /**
1700
- * A comment left by the approver.
1732
+ * Approver\'s comment.
1701
1733
  * @type {string}
1702
1734
  * @memberof AccessRequestPostApprovalRequestedItemsStatusInnerApprovalInfoInnerBeta
1703
1735
  */
1704
1736
  'approvalComment'?: string | null;
1705
1737
  /**
1706
- * The final decision of the approver.
1738
+ * Approver\'s final decision.
1707
1739
  * @type {object}
1708
1740
  * @memberof AccessRequestPostApprovalRequestedItemsStatusInnerApprovalInfoInnerBeta
1709
1741
  */
1710
1742
  'approvalDecision': AccessRequestPostApprovalRequestedItemsStatusInnerApprovalInfoInnerBetaApprovalDecisionBeta;
1711
1743
  /**
1712
- * The name of the approver
1744
+ * Approver\'s name.
1713
1745
  * @type {string}
1714
1746
  * @memberof AccessRequestPostApprovalRequestedItemsStatusInnerApprovalInfoInnerBeta
1715
1747
  */
1716
1748
  'approverName': string;
1717
1749
  /**
1718
- *
1719
- * @type {AccessRequestPostApprovalRequestedItemsStatusInnerApprovalInfoInnerApproverBeta}
1750
+ * Approver\'s identity.
1751
+ * @type {AccessItemApproverDtoBeta}
1720
1752
  * @memberof AccessRequestPostApprovalRequestedItemsStatusInnerApprovalInfoInnerBeta
1721
1753
  */
1722
- 'approver': AccessRequestPostApprovalRequestedItemsStatusInnerApprovalInfoInnerApproverBeta;
1754
+ 'approver': AccessItemApproverDtoBeta;
1723
1755
  }
1724
1756
 
1725
1757
  export const AccessRequestPostApprovalRequestedItemsStatusInnerApprovalInfoInnerBetaApprovalDecisionBeta = {
@@ -1736,37 +1768,37 @@ export type AccessRequestPostApprovalRequestedItemsStatusInnerApprovalInfoInnerB
1736
1768
  */
1737
1769
  export interface AccessRequestPostApprovalRequestedItemsStatusInnerBeta {
1738
1770
  /**
1739
- * The unique ID of the access item being requested.
1771
+ * Access item\'s unique ID.
1740
1772
  * @type {string}
1741
1773
  * @memberof AccessRequestPostApprovalRequestedItemsStatusInnerBeta
1742
1774
  */
1743
1775
  'id': string;
1744
1776
  /**
1745
- * The human friendly name of the access item.
1777
+ * Access item\'s name.
1746
1778
  * @type {string}
1747
1779
  * @memberof AccessRequestPostApprovalRequestedItemsStatusInnerBeta
1748
1780
  */
1749
1781
  'name': string;
1750
1782
  /**
1751
- * Detailed description of the access item.
1783
+ * Access item\'s description.
1752
1784
  * @type {string}
1753
1785
  * @memberof AccessRequestPostApprovalRequestedItemsStatusInnerBeta
1754
1786
  */
1755
1787
  'description'?: string | null;
1756
1788
  /**
1757
- * The type of access item.
1789
+ * Access item\'s type.
1758
1790
  * @type {object}
1759
1791
  * @memberof AccessRequestPostApprovalRequestedItemsStatusInnerBeta
1760
1792
  */
1761
1793
  'type': AccessRequestPostApprovalRequestedItemsStatusInnerBetaTypeBeta;
1762
1794
  /**
1763
- * The action to perform on the access item.
1795
+ * Action to perform on the requested access item.
1764
1796
  * @type {object}
1765
1797
  * @memberof AccessRequestPostApprovalRequestedItemsStatusInnerBeta
1766
1798
  */
1767
1799
  'operation': AccessRequestPostApprovalRequestedItemsStatusInnerBetaOperationBeta;
1768
1800
  /**
1769
- * A comment from the identity requesting the access.
1801
+ * Comment from the identity requesting access.
1770
1802
  * @type {string}
1771
1803
  * @memberof AccessRequestPostApprovalRequestedItemsStatusInnerBeta
1772
1804
  */
@@ -1778,7 +1810,7 @@ export interface AccessRequestPostApprovalRequestedItemsStatusInnerBeta {
1778
1810
  */
1779
1811
  'clientMetadata'?: { [key: string]: any; } | null;
1780
1812
  /**
1781
- * A list of one or more approvers for the access request.
1813
+ * List of approvers for the access request.
1782
1814
  * @type {Array<AccessRequestPostApprovalRequestedItemsStatusInnerApprovalInfoInnerBeta>}
1783
1815
  * @memberof AccessRequestPostApprovalRequestedItemsStatusInnerBeta
1784
1816
  */
@@ -1831,29 +1863,29 @@ export interface AccessRequestPreApproval1Beta {
1831
1863
  */
1832
1864
  export interface AccessRequestPreApprovalBeta {
1833
1865
  /**
1834
- * The unique ID of the access request.
1866
+ * Access request\'s unique ID.
1835
1867
  * @type {string}
1836
1868
  * @memberof AccessRequestPreApprovalBeta
1837
1869
  */
1838
1870
  'accessRequestId': string;
1839
1871
  /**
1840
- * Identities access was requested for.
1841
- * @type {Array<AccessItemRequestedForDtoBeta>}
1872
+ * Identities whom access was requested for.
1873
+ * @type {Array<AccessItemRequestedForDto1Beta>}
1842
1874
  * @memberof AccessRequestPreApprovalBeta
1843
1875
  */
1844
- 'requestedFor': Array<AccessItemRequestedForDtoBeta>;
1876
+ 'requestedFor': Array<AccessItemRequestedForDto1Beta>;
1845
1877
  /**
1846
- * Details of the access items being requested.
1878
+ * Details about each requested access item.
1847
1879
  * @type {Array<AccessRequestPreApprovalRequestedItemsInnerBeta>}
1848
1880
  * @memberof AccessRequestPreApprovalBeta
1849
1881
  */
1850
1882
  'requestedItems': Array<AccessRequestPreApprovalRequestedItemsInnerBeta>;
1851
1883
  /**
1852
1884
  *
1853
- * @type {AccessItemRequesterDtoBeta}
1885
+ * @type {AccessItemRequesterDto1Beta}
1854
1886
  * @memberof AccessRequestPreApprovalBeta
1855
1887
  */
1856
- 'requestedBy': AccessItemRequesterDtoBeta;
1888
+ 'requestedBy': AccessItemRequesterDto1Beta;
1857
1889
  }
1858
1890
  /**
1859
1891
  *
@@ -1862,37 +1894,37 @@ export interface AccessRequestPreApprovalBeta {
1862
1894
  */
1863
1895
  export interface AccessRequestPreApprovalRequestedItemsInnerBeta {
1864
1896
  /**
1865
- * The unique ID of the access item being requested.
1897
+ * Access item\'s unique ID.
1866
1898
  * @type {string}
1867
1899
  * @memberof AccessRequestPreApprovalRequestedItemsInnerBeta
1868
1900
  */
1869
1901
  'id': string;
1870
1902
  /**
1871
- * The human friendly name of the access item.
1903
+ * Access item\'s name.
1872
1904
  * @type {string}
1873
1905
  * @memberof AccessRequestPreApprovalRequestedItemsInnerBeta
1874
1906
  */
1875
1907
  'name': string;
1876
1908
  /**
1877
- * Detailed description of the access item.
1909
+ * Access item\'s description.
1878
1910
  * @type {string}
1879
1911
  * @memberof AccessRequestPreApprovalRequestedItemsInnerBeta
1880
1912
  */
1881
1913
  'description'?: string | null;
1882
1914
  /**
1883
- * The type of access item.
1915
+ * Access item\'s type.
1884
1916
  * @type {object}
1885
1917
  * @memberof AccessRequestPreApprovalRequestedItemsInnerBeta
1886
1918
  */
1887
1919
  'type': AccessRequestPreApprovalRequestedItemsInnerBetaTypeBeta;
1888
1920
  /**
1889
- * The action to perform on the access item.
1921
+ * Action to perform on the access item.
1890
1922
  * @type {object}
1891
1923
  * @memberof AccessRequestPreApprovalRequestedItemsInnerBeta
1892
1924
  */
1893
1925
  'operation': AccessRequestPreApprovalRequestedItemsInnerBetaOperationBeta;
1894
1926
  /**
1895
- * A comment from the identity requesting the access.
1927
+ * Comment from the identity requesting access.
1896
1928
  * @type {string}
1897
1929
  * @memberof AccessRequestPreApprovalRequestedItemsInnerBeta
1898
1930
  */
@@ -2436,31 +2468,31 @@ export interface AccountAggregationCompletedBeta {
2436
2468
  */
2437
2469
  'source': AccountAggregationCompletedSourceBeta;
2438
2470
  /**
2439
- * The overall status of the aggregation.
2471
+ * Aggregation\'s overall status.
2440
2472
  * @type {object}
2441
2473
  * @memberof AccountAggregationCompletedBeta
2442
2474
  */
2443
2475
  'status': AccountAggregationCompletedBetaStatusBeta;
2444
2476
  /**
2445
- * The date and time when the account aggregation started.
2477
+ * Date and time when the account aggregation started.
2446
2478
  * @type {string}
2447
2479
  * @memberof AccountAggregationCompletedBeta
2448
2480
  */
2449
2481
  'started': string;
2450
2482
  /**
2451
- * The date and time when the account aggregation finished.
2483
+ * Date and time when the account aggregation finished.
2452
2484
  * @type {string}
2453
2485
  * @memberof AccountAggregationCompletedBeta
2454
2486
  */
2455
2487
  'completed': string;
2456
2488
  /**
2457
- * A list of errors that occurred during the aggregation.
2489
+ * List of errors that occurred during the aggregation.
2458
2490
  * @type {Array<string>}
2459
2491
  * @memberof AccountAggregationCompletedBeta
2460
2492
  */
2461
2493
  'errors': Array<string> | null;
2462
2494
  /**
2463
- * A list of warnings that occurred during the aggregation.
2495
+ * List of warnings that occurred during the aggregation.
2464
2496
  * @type {Array<string>}
2465
2497
  * @memberof AccountAggregationCompletedBeta
2466
2498
  */
@@ -2482,25 +2514,25 @@ export const AccountAggregationCompletedBetaStatusBeta = {
2482
2514
  export type AccountAggregationCompletedBetaStatusBeta = typeof AccountAggregationCompletedBetaStatusBeta[keyof typeof AccountAggregationCompletedBetaStatusBeta];
2483
2515
 
2484
2516
  /**
2485
- * The source the accounts are being aggregated from.
2517
+ * Source ISC is aggregating accounts from.
2486
2518
  * @export
2487
2519
  * @interface AccountAggregationCompletedSourceBeta
2488
2520
  */
2489
2521
  export interface AccountAggregationCompletedSourceBeta {
2490
2522
  /**
2491
- * The DTO type of the source the accounts are being aggregated from.
2523
+ * Source\'s DTO type.
2492
2524
  * @type {string}
2493
2525
  * @memberof AccountAggregationCompletedSourceBeta
2494
2526
  */
2495
2527
  'type': AccountAggregationCompletedSourceBetaTypeBeta;
2496
2528
  /**
2497
- * The ID of the source the accounts are being aggregated from.
2529
+ * Source\'s unique ID.
2498
2530
  * @type {string}
2499
2531
  * @memberof AccountAggregationCompletedSourceBeta
2500
2532
  */
2501
2533
  'id': string;
2502
2534
  /**
2503
- * Display name of the source the accounts are being aggregated from.
2535
+ * Source\'s name.
2504
2536
  * @type {string}
2505
2537
  * @memberof AccountAggregationCompletedSourceBeta
2506
2538
  */
@@ -2520,31 +2552,31 @@ export type AccountAggregationCompletedSourceBetaTypeBeta = typeof AccountAggreg
2520
2552
  */
2521
2553
  export interface AccountAggregationCompletedStatsBeta {
2522
2554
  /**
2523
- * The number of accounts which were scanned / iterated over.
2555
+ * Number of accounts scanned/iterated over.
2524
2556
  * @type {number}
2525
2557
  * @memberof AccountAggregationCompletedStatsBeta
2526
2558
  */
2527
2559
  'scanned': number;
2528
2560
  /**
2529
- * The number of accounts which existed before, but had no changes.
2561
+ * Number of accounts that existed before but had no changes.
2530
2562
  * @type {number}
2531
2563
  * @memberof AccountAggregationCompletedStatsBeta
2532
2564
  */
2533
2565
  'unchanged': number;
2534
2566
  /**
2535
- * The number of accounts which existed before, but had changes.
2567
+ * Number of accounts that existed before but had changes.
2536
2568
  * @type {number}
2537
2569
  * @memberof AccountAggregationCompletedStatsBeta
2538
2570
  */
2539
2571
  'changed': number;
2540
2572
  /**
2541
- * The number of accounts which are new - have not existed before.
2573
+ * Number of accounts that are new and didn\'t previously exist.
2542
2574
  * @type {number}
2543
2575
  * @memberof AccountAggregationCompletedStatsBeta
2544
2576
  */
2545
2577
  'added': number;
2546
2578
  /**
2547
- * The number accounts which existed before, but no longer exist (thus getting removed).
2579
+ * Number accounts that existed before but were removed and no longer exist.
2548
2580
  * @type {number}
2549
2581
  * @memberof AccountAggregationCompletedStatsBeta
2550
2582
  */
@@ -5359,43 +5391,43 @@ export interface CampaignActivatedBeta {
5359
5391
  */
5360
5392
  export interface CampaignActivatedCampaignBeta {
5361
5393
  /**
5362
- * Unique ID for the campaign.
5394
+ * Campaign\'s unique ID.
5363
5395
  * @type {string}
5364
5396
  * @memberof CampaignActivatedCampaignBeta
5365
5397
  */
5366
5398
  'id': string;
5367
5399
  /**
5368
- * The human friendly name of the campaign.
5400
+ * Campaign\'s name.
5369
5401
  * @type {string}
5370
5402
  * @memberof CampaignActivatedCampaignBeta
5371
5403
  */
5372
5404
  'name': string;
5373
5405
  /**
5374
- * Extended description of the campaign.
5406
+ * Campaign\'s extended description.
5375
5407
  * @type {string}
5376
5408
  * @memberof CampaignActivatedCampaignBeta
5377
5409
  */
5378
5410
  'description': string;
5379
5411
  /**
5380
- * The date and time the campaign was created.
5412
+ * Date and time when the campaign was created.
5381
5413
  * @type {string}
5382
5414
  * @memberof CampaignActivatedCampaignBeta
5383
5415
  */
5384
5416
  'created': string;
5385
5417
  /**
5386
- * The date and time the campaign was last modified.
5418
+ * Date and time when the campaign was last modified.
5387
5419
  * @type {string}
5388
5420
  * @memberof CampaignActivatedCampaignBeta
5389
5421
  */
5390
5422
  'modified'?: string | null;
5391
5423
  /**
5392
- * The date and time the campaign is due.
5424
+ * Date and time when the campaign is due.
5393
5425
  * @type {string}
5394
5426
  * @memberof CampaignActivatedCampaignBeta
5395
5427
  */
5396
5428
  'deadline': string;
5397
5429
  /**
5398
- * The type of campaign.
5430
+ * Campaign\'s type.
5399
5431
  * @type {object}
5400
5432
  * @memberof CampaignActivatedCampaignBeta
5401
5433
  */
@@ -5407,7 +5439,7 @@ export interface CampaignActivatedCampaignBeta {
5407
5439
  */
5408
5440
  'campaignOwner': CampaignActivatedCampaignCampaignOwnerBeta;
5409
5441
  /**
5410
- * The current status of the campaign.
5442
+ * Campaign\'s current status.
5411
5443
  * @type {object}
5412
5444
  * @memberof CampaignActivatedCampaignBeta
5413
5445
  */
@@ -5429,25 +5461,25 @@ export const CampaignActivatedCampaignBetaStatusBeta = {
5429
5461
  export type CampaignActivatedCampaignBetaStatusBeta = typeof CampaignActivatedCampaignBetaStatusBeta[keyof typeof CampaignActivatedCampaignBetaStatusBeta];
5430
5462
 
5431
5463
  /**
5432
- * Details of the identity that owns the campaign.
5464
+ * Details of the identity who owns the campaign.
5433
5465
  * @export
5434
5466
  * @interface CampaignActivatedCampaignCampaignOwnerBeta
5435
5467
  */
5436
5468
  export interface CampaignActivatedCampaignCampaignOwnerBeta {
5437
5469
  /**
5438
- * The unique ID of the identity.
5470
+ * Identity\'s unique ID.
5439
5471
  * @type {string}
5440
5472
  * @memberof CampaignActivatedCampaignCampaignOwnerBeta
5441
5473
  */
5442
5474
  'id': string;
5443
5475
  /**
5444
- * The human friendly name of the identity.
5476
+ * Identity\'s name.
5445
5477
  * @type {string}
5446
5478
  * @memberof CampaignActivatedCampaignCampaignOwnerBeta
5447
5479
  */
5448
5480
  'displayName': string;
5449
5481
  /**
5450
- * The primary email address of the identity.
5482
+ * Identity\'s primary email address.
5451
5483
  * @type {string}
5452
5484
  * @memberof CampaignActivatedCampaignCampaignOwnerBeta
5453
5485
  */
@@ -5683,43 +5715,43 @@ export interface CampaignEndedBeta {
5683
5715
  */
5684
5716
  export interface CampaignEndedCampaignBeta {
5685
5717
  /**
5686
- * Unique ID for the campaign.
5718
+ * Campaign\'s unique ID for the campaign.
5687
5719
  * @type {string}
5688
5720
  * @memberof CampaignEndedCampaignBeta
5689
5721
  */
5690
5722
  'id': string;
5691
5723
  /**
5692
- * The human friendly name of the campaign.
5724
+ * Campaign\'s unique ID.
5693
5725
  * @type {string}
5694
5726
  * @memberof CampaignEndedCampaignBeta
5695
5727
  */
5696
5728
  'name': string;
5697
5729
  /**
5698
- * Extended description of the campaign.
5730
+ * Campaign\'s extended description.
5699
5731
  * @type {string}
5700
5732
  * @memberof CampaignEndedCampaignBeta
5701
5733
  */
5702
5734
  'description': string;
5703
5735
  /**
5704
- * The date and time the campaign was created.
5736
+ * Date and time when the campaign was created.
5705
5737
  * @type {string}
5706
5738
  * @memberof CampaignEndedCampaignBeta
5707
5739
  */
5708
5740
  'created': string;
5709
5741
  /**
5710
- * The date and time the campaign was last modified.
5742
+ * Date and time when the campaign was last modified.
5711
5743
  * @type {string}
5712
5744
  * @memberof CampaignEndedCampaignBeta
5713
5745
  */
5714
5746
  'modified'?: string | null;
5715
5747
  /**
5716
- * The date and time the campaign is due.
5748
+ * Date and time when the campaign is due.
5717
5749
  * @type {string}
5718
5750
  * @memberof CampaignEndedCampaignBeta
5719
5751
  */
5720
5752
  'deadline': string;
5721
5753
  /**
5722
- * The type of campaign.
5754
+ * Campaign\'s type.
5723
5755
  * @type {object}
5724
5756
  * @memberof CampaignEndedCampaignBeta
5725
5757
  */
@@ -5731,7 +5763,7 @@ export interface CampaignEndedCampaignBeta {
5731
5763
  */
5732
5764
  'campaignOwner': CampaignActivatedCampaignCampaignOwnerBeta;
5733
5765
  /**
5734
- * The current status of the campaign.
5766
+ * Campaign\'s current status.
5735
5767
  * @type {object}
5736
5768
  * @memberof CampaignEndedCampaignBeta
5737
5769
  */
@@ -5772,43 +5804,43 @@ export interface CampaignGeneratedBeta {
5772
5804
  */
5773
5805
  export interface CampaignGeneratedCampaignBeta {
5774
5806
  /**
5775
- * The unique ID of the campaign.
5807
+ * Campaign\'s unique ID.
5776
5808
  * @type {string}
5777
5809
  * @memberof CampaignGeneratedCampaignBeta
5778
5810
  */
5779
5811
  'id': string;
5780
5812
  /**
5781
- * Human friendly name of the campaign.
5813
+ * Campaign\'s name.
5782
5814
  * @type {string}
5783
5815
  * @memberof CampaignGeneratedCampaignBeta
5784
5816
  */
5785
5817
  'name': string;
5786
5818
  /**
5787
- * Extended description of the campaign.
5819
+ * Campaign\'s extended description.
5788
5820
  * @type {string}
5789
5821
  * @memberof CampaignGeneratedCampaignBeta
5790
5822
  */
5791
5823
  'description': string;
5792
5824
  /**
5793
- * The date and time the campaign was created.
5825
+ * Date and time when the campaign was created.
5794
5826
  * @type {string}
5795
5827
  * @memberof CampaignGeneratedCampaignBeta
5796
5828
  */
5797
5829
  'created': string;
5798
5830
  /**
5799
- * The date and time the campaign was last modified.
5831
+ * Date and time when the campaign was last modified.
5800
5832
  * @type {string}
5801
5833
  * @memberof CampaignGeneratedCampaignBeta
5802
5834
  */
5803
5835
  'modified'?: string | null;
5804
5836
  /**
5805
- * The date and time when the campaign must be finished by.
5837
+ * Date and time when the campaign must be finished.
5806
5838
  * @type {string}
5807
5839
  * @memberof CampaignGeneratedCampaignBeta
5808
5840
  */
5809
5841
  'deadline'?: string | null;
5810
5842
  /**
5811
- * The type of campaign that was generated.
5843
+ * Campaign\'s type.
5812
5844
  * @type {object}
5813
5845
  * @memberof CampaignGeneratedCampaignBeta
5814
5846
  */
@@ -5820,7 +5852,7 @@ export interface CampaignGeneratedCampaignBeta {
5820
5852
  */
5821
5853
  'campaignOwner': CampaignGeneratedCampaignCampaignOwnerBeta;
5822
5854
  /**
5823
- * The current status of the campaign.
5855
+ * Campaign\'s current status.
5824
5856
  * @type {object}
5825
5857
  * @memberof CampaignGeneratedCampaignBeta
5826
5858
  */
@@ -5844,25 +5876,25 @@ export const CampaignGeneratedCampaignBetaStatusBeta = {
5844
5876
  export type CampaignGeneratedCampaignBetaStatusBeta = typeof CampaignGeneratedCampaignBetaStatusBeta[keyof typeof CampaignGeneratedCampaignBetaStatusBeta];
5845
5877
 
5846
5878
  /**
5847
- * The identity that owns the campaign.
5879
+ * Identity who owns the campaign.
5848
5880
  * @export
5849
5881
  * @interface CampaignGeneratedCampaignCampaignOwnerBeta
5850
5882
  */
5851
5883
  export interface CampaignGeneratedCampaignCampaignOwnerBeta {
5852
5884
  /**
5853
- * The unique ID of the identity.
5885
+ * Identity\'s unique ID.
5854
5886
  * @type {string}
5855
5887
  * @memberof CampaignGeneratedCampaignCampaignOwnerBeta
5856
5888
  */
5857
5889
  'id': string;
5858
5890
  /**
5859
- * The display name of the identity.
5891
+ * Identity\'s name.
5860
5892
  * @type {string}
5861
5893
  * @memberof CampaignGeneratedCampaignCampaignOwnerBeta
5862
5894
  */
5863
5895
  'displayName': string;
5864
5896
  /**
5865
- * The primary email address of the identity.
5897
+ * Identity\'s primary email address.
5866
5898
  * @type {string}
5867
5899
  * @memberof CampaignGeneratedCampaignCampaignOwnerBeta
5868
5900
  */
@@ -6284,13 +6316,13 @@ export interface CertificationDtoBeta {
6284
6316
  */
6285
6317
  'phase': CertificationPhaseBeta;
6286
6318
  /**
6287
- * The due date of the certification.
6319
+ * Date and time when the certification is due.
6288
6320
  * @type {string}
6289
6321
  * @memberof CertificationDtoBeta
6290
6322
  */
6291
6323
  'due': string;
6292
6324
  /**
6293
- * The date the reviewer signed off on the certification.
6325
+ * Date and time when the reviewer signed off on the certification.
6294
6326
  * @type {string}
6295
6327
  * @memberof CertificationDtoBeta
6296
6328
  */
@@ -6308,43 +6340,43 @@ export interface CertificationDtoBeta {
6308
6340
  */
6309
6341
  'reassignment'?: ReassignmentBeta;
6310
6342
  /**
6311
- * Indicates it the certification has any errors.
6343
+ * Indicates whether the certification has any errors.
6312
6344
  * @type {boolean}
6313
6345
  * @memberof CertificationDtoBeta
6314
6346
  */
6315
6347
  'hasErrors': boolean;
6316
6348
  /**
6317
- * A message indicating what the error is.
6349
+ * Message indicating what the error is.
6318
6350
  * @type {string}
6319
6351
  * @memberof CertificationDtoBeta
6320
6352
  */
6321
6353
  'errorMessage'?: string | null;
6322
6354
  /**
6323
- * Indicates if all certification decisions have been made.
6355
+ * Indicates whether all certification decisions have been made.
6324
6356
  * @type {boolean}
6325
6357
  * @memberof CertificationDtoBeta
6326
6358
  */
6327
6359
  'completed': boolean;
6328
6360
  /**
6329
- * The number of approve/revoke/acknowledge decisions that have been made by the reviewer.
6361
+ * Number of approve/revoke/acknowledge decisions the reviewer has made.
6330
6362
  * @type {number}
6331
6363
  * @memberof CertificationDtoBeta
6332
6364
  */
6333
6365
  'decisionsMade': number;
6334
6366
  /**
6335
- * The total number of approve/revoke/acknowledge decisions for the certification.
6367
+ * Total number of approve/revoke/acknowledge decisions for the certification.
6336
6368
  * @type {number}
6337
6369
  * @memberof CertificationDtoBeta
6338
6370
  */
6339
6371
  'decisionsTotal': number;
6340
6372
  /**
6341
- * The number of entities (identities, access profiles, roles, etc.) for which all decisions have been made and are complete.
6373
+ * Number of entities (identities, access profiles, roles, etc.) that are complete and all decisions have been made for.
6342
6374
  * @type {number}
6343
6375
  * @memberof CertificationDtoBeta
6344
6376
  */
6345
6377
  'entitiesCompleted': number;
6346
6378
  /**
6347
- * The total number of entities (identities, access profiles, roles, etc.) in the certification, both complete and incomplete.
6379
+ * Total number of entities (identities, access profiles, roles, etc.) in the certification, both complete and incomplete.
6348
6380
  * @type {number}
6349
6381
  * @memberof CertificationDtoBeta
6350
6382
  */
@@ -6451,31 +6483,31 @@ export interface CertificationSignedOffBeta {
6451
6483
  'certification': CertificationSignedOffCertificationBeta;
6452
6484
  }
6453
6485
  /**
6454
- * The certification campaign that was signed off on.
6486
+ * Certification campaign that was signed off on.
6455
6487
  * @export
6456
6488
  * @interface CertificationSignedOffCertificationBeta
6457
6489
  */
6458
6490
  export interface CertificationSignedOffCertificationBeta {
6459
6491
  /**
6460
- * Unique ID of the certification.
6492
+ * Certification\'s unique ID.
6461
6493
  * @type {string}
6462
6494
  * @memberof CertificationSignedOffCertificationBeta
6463
6495
  */
6464
6496
  'id': string;
6465
6497
  /**
6466
- * The name of the certification.
6498
+ * Certification\'s name.
6467
6499
  * @type {string}
6468
6500
  * @memberof CertificationSignedOffCertificationBeta
6469
6501
  */
6470
6502
  'name': string;
6471
6503
  /**
6472
- * The date and time the certification was created.
6504
+ * Date and time when the certification was created.
6473
6505
  * @type {string}
6474
6506
  * @memberof CertificationSignedOffCertificationBeta
6475
6507
  */
6476
6508
  'created': string;
6477
6509
  /**
6478
- * The date and time the certification was last modified.
6510
+ * Date and time when the certification was last modified.
6479
6511
  * @type {string}
6480
6512
  * @memberof CertificationSignedOffCertificationBeta
6481
6513
  */
@@ -6493,13 +6525,13 @@ export interface CertificationSignedOffCertificationBeta {
6493
6525
  */
6494
6526
  'phase': CertificationPhaseBeta;
6495
6527
  /**
6496
- * The due date of the certification.
6528
+ * Date and time when the certification is due.
6497
6529
  * @type {string}
6498
6530
  * @memberof CertificationSignedOffCertificationBeta
6499
6531
  */
6500
6532
  'due': string;
6501
6533
  /**
6502
- * The date the reviewer signed off on the certification.
6534
+ * Date and time when the reviewer signed off on the certification.
6503
6535
  * @type {string}
6504
6536
  * @memberof CertificationSignedOffCertificationBeta
6505
6537
  */
@@ -6517,43 +6549,43 @@ export interface CertificationSignedOffCertificationBeta {
6517
6549
  */
6518
6550
  'reassignment'?: ReassignmentBeta;
6519
6551
  /**
6520
- * Indicates it the certification has any errors.
6552
+ * Indicates whether the certification has any errors.
6521
6553
  * @type {boolean}
6522
6554
  * @memberof CertificationSignedOffCertificationBeta
6523
6555
  */
6524
6556
  'hasErrors': boolean;
6525
6557
  /**
6526
- * A message indicating what the error is.
6558
+ * Message indicating what the error is.
6527
6559
  * @type {string}
6528
6560
  * @memberof CertificationSignedOffCertificationBeta
6529
6561
  */
6530
6562
  'errorMessage'?: string | null;
6531
6563
  /**
6532
- * Indicates if all certification decisions have been made.
6564
+ * Indicates whether all certification decisions have been made.
6533
6565
  * @type {boolean}
6534
6566
  * @memberof CertificationSignedOffCertificationBeta
6535
6567
  */
6536
6568
  'completed': boolean;
6537
6569
  /**
6538
- * The number of approve/revoke/acknowledge decisions that have been made by the reviewer.
6570
+ * Number of approve/revoke/acknowledge decisions the reviewer has made.
6539
6571
  * @type {number}
6540
6572
  * @memberof CertificationSignedOffCertificationBeta
6541
6573
  */
6542
6574
  'decisionsMade': number;
6543
6575
  /**
6544
- * The total number of approve/revoke/acknowledge decisions for the certification.
6576
+ * Total number of approve/revoke/acknowledge decisions for the certification.
6545
6577
  * @type {number}
6546
6578
  * @memberof CertificationSignedOffCertificationBeta
6547
6579
  */
6548
6580
  'decisionsTotal': number;
6549
6581
  /**
6550
- * The number of entities (identities, access profiles, roles, etc.) for which all decisions have been made and are complete.
6582
+ * Number of entities (identities, access profiles, roles, etc.) that are complete and all decisions have been made for.
6551
6583
  * @type {number}
6552
6584
  * @memberof CertificationSignedOffCertificationBeta
6553
6585
  */
6554
6586
  'entitiesCompleted': number;
6555
6587
  /**
6556
- * The total number of entities (identities, access profiles, roles, etc.) in the certification, both complete and incomplete.
6588
+ * Total number of entities (identities, access profiles, roles, etc.) in the certification, both complete and incomplete.
6557
6589
  * @type {number}
6558
6590
  * @memberof CertificationSignedOffCertificationBeta
6559
6591
  */
@@ -10050,6 +10082,18 @@ export interface EventAttributesBeta {
10050
10082
  * @memberof EventAttributesBeta
10051
10083
  */
10052
10084
  'description'?: string;
10085
+ /**
10086
+ * The attribute to filter on
10087
+ * @type {string}
10088
+ * @memberof EventAttributesBeta
10089
+ */
10090
+ 'attributeToFilter'?: string;
10091
+ /**
10092
+ * Form definition\'s unique identifier.
10093
+ * @type {string}
10094
+ * @memberof EventAttributesBeta
10095
+ */
10096
+ 'formDefinitionId'?: string;
10053
10097
  }
10054
10098
  /**
10055
10099
  *
@@ -12863,7 +12907,7 @@ export interface IdentityAttributesChangedBeta {
12863
12907
  */
12864
12908
  'identity': IdentityAttributesChangedIdentityBeta;
12865
12909
  /**
12866
- * A list of one or more identity attributes that changed on the identity.
12910
+ * List of identity\'s attributes that changed.
12867
12911
  * @type {Array<IdentityAttributesChangedChangesInnerBeta>}
12868
12912
  * @memberof IdentityAttributesChangedBeta
12869
12913
  */
@@ -12876,7 +12920,7 @@ export interface IdentityAttributesChangedBeta {
12876
12920
  */
12877
12921
  export interface IdentityAttributesChangedChangesInnerBeta {
12878
12922
  /**
12879
- * The name of the identity attribute that changed.
12923
+ * Identity attribute\'s name.
12880
12924
  * @type {string}
12881
12925
  * @memberof IdentityAttributesChangedChangesInnerBeta
12882
12926
  */
@@ -12896,14 +12940,14 @@ export interface IdentityAttributesChangedChangesInnerBeta {
12896
12940
  }
12897
12941
  /**
12898
12942
  * @type IdentityAttributesChangedChangesInnerNewValueBeta
12899
- * The value of the identity attribute after it changed.
12943
+ * Identity attribute\'s new value after the change.
12900
12944
  * @export
12901
12945
  */
12902
12946
  export type IdentityAttributesChangedChangesInnerNewValueBeta = Array<string> | boolean | string | { [key: string]: IdentityAttributesChangedChangesInnerOldValueOneOfValueBeta; };
12903
12947
 
12904
12948
  /**
12905
12949
  * @type IdentityAttributesChangedChangesInnerOldValueBeta
12906
- * The value of the identity attribute before it changed.
12950
+ * Identity attribute\'s previous value before the change.
12907
12951
  * @export
12908
12952
  */
12909
12953
  export type IdentityAttributesChangedChangesInnerOldValueBeta = Array<string> | boolean | string | { [key: string]: IdentityAttributesChangedChangesInnerOldValueOneOfValueBeta; };
@@ -12933,7 +12977,7 @@ export interface IdentityAttributesChangedIdentityBeta {
12933
12977
  */
12934
12978
  'id': string;
12935
12979
  /**
12936
- * Display name of identity whose attributes changed.
12980
+ * Name of identity whose attributes changed.
12937
12981
  * @type {string}
12938
12982
  * @memberof IdentityAttributesChangedIdentityBeta
12939
12983
  */
@@ -13186,7 +13230,7 @@ export interface IdentityCreatedBeta {
13186
13230
  */
13187
13231
  'identity': IdentityCreatedIdentityBeta;
13188
13232
  /**
13189
- * The attributes assigned to the identity. Attributes are determined by the identity profile.
13233
+ * Attributes assigned to the identity. These attributes are determined by the identity profile.
13190
13234
  * @type {{ [key: string]: any; }}
13191
13235
  * @memberof IdentityCreatedBeta
13192
13236
  */
@@ -13199,19 +13243,19 @@ export interface IdentityCreatedBeta {
13199
13243
  */
13200
13244
  export interface IdentityCreatedIdentityBeta {
13201
13245
  /**
13202
- * Created identity\'s DTO type.
13246
+ * Identity\'s DTO type.
13203
13247
  * @type {string}
13204
13248
  * @memberof IdentityCreatedIdentityBeta
13205
13249
  */
13206
13250
  'type': IdentityCreatedIdentityBetaTypeBeta;
13207
13251
  /**
13208
- * Created identity ID.
13252
+ * Identity\'s unique ID.
13209
13253
  * @type {string}
13210
13254
  * @memberof IdentityCreatedIdentityBeta
13211
13255
  */
13212
13256
  'id': string;
13213
13257
  /**
13214
- * Created identity\'s display name.
13258
+ * Identity\'s name.
13215
13259
  * @type {string}
13216
13260
  * @memberof IdentityCreatedIdentityBeta
13217
13261
  */
@@ -13237,7 +13281,7 @@ export interface IdentityDeletedBeta {
13237
13281
  */
13238
13282
  'identity': IdentityDeletedIdentityBeta;
13239
13283
  /**
13240
- * The attributes assigned to the identity. Attributes are determined by the identity profile.
13284
+ * Identity attributes. The attributes are determined by the identity profile.
13241
13285
  * @type {{ [key: string]: any; }}
13242
13286
  * @memberof IdentityDeletedBeta
13243
13287
  */
@@ -13262,7 +13306,7 @@ export interface IdentityDeletedIdentityBeta {
13262
13306
  */
13263
13307
  'id': string;
13264
13308
  /**
13265
- * Deleted identity\'s display name.
13309
+ * Deleted identity\'s name.
13266
13310
  * @type {string}
13267
13311
  * @memberof IdentityDeletedIdentityBeta
13268
13312
  */
@@ -20784,20 +20828,20 @@ export type ProductBetaOrgTypeBeta = typeof ProductBetaOrgTypeBeta[keyof typeof
20784
20828
  */
20785
20829
  export interface ProvisioningCompletedAccountRequestsInnerAttributeRequestsInnerBeta {
20786
20830
  /**
20787
- * The name of the attribute being provisioned.
20831
+ * Name of the attribute being provisioned.
20788
20832
  * @type {string}
20789
20833
  * @memberof ProvisioningCompletedAccountRequestsInnerAttributeRequestsInnerBeta
20790
20834
  */
20791
20835
  'attributeName': string;
20792
20836
  /**
20793
- * The value of the attribute being provisioned.
20837
+ * Value of the attribute being provisioned.
20794
20838
  * @type {string}
20795
20839
  * @memberof ProvisioningCompletedAccountRequestsInnerAttributeRequestsInnerBeta
20796
20840
  */
20797
20841
  'attributeValue'?: string | null;
20798
20842
  /**
20799
20843
  * The operation to handle the attribute.
20800
- * @type {object}
20844
+ * @type {string}
20801
20845
  * @memberof ProvisioningCompletedAccountRequestsInnerAttributeRequestsInnerBeta
20802
20846
  */
20803
20847
  'operation': ProvisioningCompletedAccountRequestsInnerAttributeRequestsInnerBetaOperationBeta;
@@ -20824,43 +20868,53 @@ export interface ProvisioningCompletedAccountRequestsInnerBeta {
20824
20868
  */
20825
20869
  'source': ProvisioningCompletedAccountRequestsInnerSourceBeta;
20826
20870
  /**
20827
- * The unique idenfier of the account being provisioned.
20871
+ * Unique idenfier of the account being provisioned.
20828
20872
  * @type {string}
20829
20873
  * @memberof ProvisioningCompletedAccountRequestsInnerBeta
20830
20874
  */
20831
20875
  'accountId'?: string;
20832
20876
  /**
20833
- * The provisioning operation; typically Create, Modify, Enable, Disable, Unlock, or Delete.
20877
+ * Provisioning operation.
20834
20878
  * @type {string}
20835
20879
  * @memberof ProvisioningCompletedAccountRequestsInnerBeta
20836
20880
  */
20837
- 'accountOperation': string;
20881
+ 'accountOperation': ProvisioningCompletedAccountRequestsInnerBetaAccountOperationBeta;
20838
20882
  /**
20839
- * The overall result of the provisioning transaction; this could be success, pending, failed, etc.
20883
+ * Overall result of the provisioning transaction.
20840
20884
  * @type {object}
20841
20885
  * @memberof ProvisioningCompletedAccountRequestsInnerBeta
20842
20886
  */
20843
20887
  'provisioningResult': ProvisioningCompletedAccountRequestsInnerBetaProvisioningResultBeta;
20844
20888
  /**
20845
- * The name of the provisioning channel selected; this could be the same as the source, or could be a Service Desk Integration Module (SDIM).
20889
+ * Nme of the selected provisioning channel selected. This could be the same as the source, or it could be a Service Desk Integration Module (SDIM).
20846
20890
  * @type {string}
20847
20891
  * @memberof ProvisioningCompletedAccountRequestsInnerBeta
20848
20892
  */
20849
20893
  'provisioningTarget': string;
20850
20894
  /**
20851
- * A reference to a tracking number, if this is sent to a Service Desk Integration Module (SDIM).
20895
+ * Reference to a tracking number for if this is sent to a SDIM.
20852
20896
  * @type {string}
20853
20897
  * @memberof ProvisioningCompletedAccountRequestsInnerBeta
20854
20898
  */
20855
20899
  'ticketId'?: string | null;
20856
20900
  /**
20857
- * A list of attributes as part of the provisioning transaction.
20901
+ * List of attributes to include in the provisioning transaction.
20858
20902
  * @type {Array<ProvisioningCompletedAccountRequestsInnerAttributeRequestsInnerBeta>}
20859
20903
  * @memberof ProvisioningCompletedAccountRequestsInnerBeta
20860
20904
  */
20861
20905
  'attributeRequests'?: Array<ProvisioningCompletedAccountRequestsInnerAttributeRequestsInnerBeta> | null;
20862
20906
  }
20863
20907
 
20908
+ export const ProvisioningCompletedAccountRequestsInnerBetaAccountOperationBeta = {
20909
+ Create: 'Create',
20910
+ Modify: 'Modify',
20911
+ Enable: 'Enable',
20912
+ Disable: 'Disable',
20913
+ Unlock: 'Unlock',
20914
+ Delete: 'Delete'
20915
+ } as const;
20916
+
20917
+ export type ProvisioningCompletedAccountRequestsInnerBetaAccountOperationBeta = typeof ProvisioningCompletedAccountRequestsInnerBetaAccountOperationBeta[keyof typeof ProvisioningCompletedAccountRequestsInnerBetaAccountOperationBeta];
20864
20918
  export const ProvisioningCompletedAccountRequestsInnerBetaProvisioningResultBeta = {
20865
20919
  Success: 'SUCCESS',
20866
20920
  Pending: 'PENDING',
@@ -20870,25 +20924,25 @@ export const ProvisioningCompletedAccountRequestsInnerBetaProvisioningResultBeta
20870
20924
  export type ProvisioningCompletedAccountRequestsInnerBetaProvisioningResultBeta = typeof ProvisioningCompletedAccountRequestsInnerBetaProvisioningResultBeta[keyof typeof ProvisioningCompletedAccountRequestsInnerBetaProvisioningResultBeta];
20871
20925
 
20872
20926
  /**
20873
- * Reference to the source being provisioned against.
20927
+ * Source that ISC is provisioning access on.
20874
20928
  * @export
20875
20929
  * @interface ProvisioningCompletedAccountRequestsInnerSourceBeta
20876
20930
  */
20877
20931
  export interface ProvisioningCompletedAccountRequestsInnerSourceBeta {
20878
20932
  /**
20879
- * ID of the object to which this reference applies
20933
+ * Source ID.
20880
20934
  * @type {string}
20881
20935
  * @memberof ProvisioningCompletedAccountRequestsInnerSourceBeta
20882
20936
  */
20883
20937
  'id': string;
20884
20938
  /**
20885
- * The type of object that is referenced
20939
+ * Source DTO type.
20886
20940
  * @type {string}
20887
20941
  * @memberof ProvisioningCompletedAccountRequestsInnerSourceBeta
20888
20942
  */
20889
20943
  'type': ProvisioningCompletedAccountRequestsInnerSourceBetaTypeBeta;
20890
20944
  /**
20891
- * Human-readable display name of the object to which this reference applies
20945
+ * Source name.
20892
20946
  * @type {string}
20893
20947
  * @memberof ProvisioningCompletedAccountRequestsInnerSourceBeta
20894
20948
  */
@@ -20908,31 +20962,31 @@ export type ProvisioningCompletedAccountRequestsInnerSourceBetaTypeBeta = typeof
20908
20962
  */
20909
20963
  export interface ProvisioningCompletedBeta {
20910
20964
  /**
20911
- * The reference number of the provisioning request. Useful for tracking status in the Account Activity search interface.
20965
+ * Provisioning request\'s reference number. Useful for tracking status in the \'Account Activity\' search interface.
20912
20966
  * @type {string}
20913
20967
  * @memberof ProvisioningCompletedBeta
20914
20968
  */
20915
20969
  'trackingNumber': string;
20916
20970
  /**
20917
- * One or more sources that the provisioning transaction(s) were done against. Sources are comma separated.
20971
+ * Sources the provisioning transactions were performed on. Sources are comma separated.
20918
20972
  * @type {string}
20919
20973
  * @memberof ProvisioningCompletedBeta
20920
20974
  */
20921
20975
  'sources': string;
20922
20976
  /**
20923
- * Origin of where the provisioning request came from.
20977
+ * Origin of the provisioning request.
20924
20978
  * @type {string}
20925
20979
  * @memberof ProvisioningCompletedBeta
20926
20980
  */
20927
20981
  'action'?: string | null;
20928
20982
  /**
20929
- * A list of any accumulated error messages that occurred during provisioning.
20983
+ * List of any accumulated error messages that occurred during provisioning.
20930
20984
  * @type {Array<string>}
20931
20985
  * @memberof ProvisioningCompletedBeta
20932
20986
  */
20933
20987
  'errors'?: Array<string> | null;
20934
20988
  /**
20935
- * A list of any accumulated warning messages that occurred during provisioning.
20989
+ * List of any accumulated warning messages that occurred during provisioning.
20936
20990
  * @type {Array<string>}
20937
20991
  * @memberof ProvisioningCompletedBeta
20938
20992
  */
@@ -20950,7 +21004,7 @@ export interface ProvisioningCompletedBeta {
20950
21004
  */
20951
21005
  'requester'?: ProvisioningCompletedRequesterBeta | null;
20952
21006
  /**
20953
- * A list of provisioning instructions to perform on an account-by-account basis.
21007
+ * List of provisioning instructions to perform on an account-by-account basis.
20954
21008
  * @type {Array<ProvisioningCompletedAccountRequestsInnerBeta>}
20955
21009
  * @memberof ProvisioningCompletedBeta
20956
21010
  */
@@ -20975,7 +21029,7 @@ export interface ProvisioningCompletedRecipientBeta {
20975
21029
  */
20976
21030
  'id': string;
20977
21031
  /**
20978
- * Provisioning recipient\'s display name.
21032
+ * Provisioning recipient\'s name.
20979
21033
  * @type {string}
20980
21034
  * @memberof ProvisioningCompletedRecipientBeta
20981
21035
  */
@@ -21007,7 +21061,7 @@ export interface ProvisioningCompletedRequesterBeta {
21007
21061
  */
21008
21062
  'id': string;
21009
21063
  /**
21010
- * Provisioning owner\'s human-readable display name.
21064
+ * Provisioning requester\'s name.
21011
21065
  * @type {string}
21012
21066
  * @memberof ProvisioningCompletedRequesterBeta
21013
21067
  */
@@ -22229,7 +22283,7 @@ export type RequestableObjectRequestStatusBeta = typeof RequestableObjectRequest
22229
22283
 
22230
22284
 
22231
22285
  /**
22232
- * The currently supported requestable object types.
22286
+ * Currently supported requestable object types.
22233
22287
  * @export
22234
22288
  * @enum {string}
22235
22289
  */
@@ -22805,31 +22859,31 @@ export interface ReviewReassignBeta {
22805
22859
  'reason': string;
22806
22860
  }
22807
22861
  /**
22808
- * Details of the reviewer for certification.
22862
+ * Details of the reviewer for a certification.
22809
22863
  * @export
22810
22864
  * @interface ReviewerBeta
22811
22865
  */
22812
22866
  export interface ReviewerBeta {
22813
22867
  /**
22814
- * The reviewer\'s DTO type.
22868
+ * Reviewer\'s DTO type.
22815
22869
  * @type {string}
22816
22870
  * @memberof ReviewerBeta
22817
22871
  */
22818
22872
  'type': ReviewerBetaTypeBeta;
22819
22873
  /**
22820
- * The reviewer\'s ID.
22874
+ * Reviewer\'s ID.
22821
22875
  * @type {string}
22822
22876
  * @memberof ReviewerBeta
22823
22877
  */
22824
22878
  'id': string;
22825
22879
  /**
22826
- * The reviewer\'s display name.
22880
+ * Reviewer\'s display name.
22827
22881
  * @type {string}
22828
22882
  * @memberof ReviewerBeta
22829
22883
  */
22830
22884
  'name': string;
22831
22885
  /**
22832
- * The reviewing identity\'s email. Only applicable to `IDENTITY`.
22886
+ * Reviewing identity\'s email. This is only applicable to reviewers of the `IDENTITY` type.
22833
22887
  * @type {string}
22834
22888
  * @memberof ReviewerBeta
22835
22889
  */
@@ -24810,31 +24864,31 @@ export type RuleBeta = GenerateRandomStringBeta | GetReferenceIdentityAttributeB
24810
24864
  */
24811
24865
  export interface SavedSearchCompleteBeta {
24812
24866
  /**
24813
- * A name for the report file.
24867
+ * Report file name.
24814
24868
  * @type {string}
24815
24869
  * @memberof SavedSearchCompleteBeta
24816
24870
  */
24817
24871
  'fileName': string;
24818
24872
  /**
24819
- * The email address of the identity that owns the saved search.
24873
+ * Email address of the identity who owns the saved search.
24820
24874
  * @type {string}
24821
24875
  * @memberof SavedSearchCompleteBeta
24822
24876
  */
24823
24877
  'ownerEmail': string;
24824
24878
  /**
24825
- * The name of the identity that owns the saved search.
24879
+ * Name of the identity who owns the saved search.
24826
24880
  * @type {string}
24827
24881
  * @memberof SavedSearchCompleteBeta
24828
24882
  */
24829
24883
  'ownerName': string;
24830
24884
  /**
24831
- * The search query that was used to generate the report.
24885
+ * Search query used to generate the report.
24832
24886
  * @type {string}
24833
24887
  * @memberof SavedSearchCompleteBeta
24834
24888
  */
24835
24889
  'query': string;
24836
24890
  /**
24837
- * The name of the saved search.
24891
+ * Saved search name.
24838
24892
  * @type {string}
24839
24893
  * @memberof SavedSearchCompleteBeta
24840
24894
  */
@@ -24853,32 +24907,32 @@ export interface SavedSearchCompleteBeta {
24853
24907
  'signedS3Url': string;
24854
24908
  }
24855
24909
  /**
24856
- * A table of accounts that match the search criteria.
24910
+ * Table of accounts matching the search criteria.
24857
24911
  * @export
24858
24912
  * @interface SavedSearchCompleteSearchResultsAccountBeta
24859
24913
  */
24860
24914
  export interface SavedSearchCompleteSearchResultsAccountBeta {
24861
24915
  /**
24862
- * The number of rows in the table.
24916
+ * Number of rows in the table.
24863
24917
  * @type {string}
24864
24918
  * @memberof SavedSearchCompleteSearchResultsAccountBeta
24865
24919
  */
24866
24920
  'count': string;
24867
24921
  /**
24868
- * The type of object represented in the table.
24922
+ * Type of object represented in the table.
24869
24923
  * @type {string}
24870
24924
  * @memberof SavedSearchCompleteSearchResultsAccountBeta
24871
24925
  */
24872
24926
  'noun': string;
24873
24927
  /**
24874
- * A sample of the data in the table.
24928
+ * Sample of table data.
24875
24929
  * @type {Array<Array<string>>}
24876
24930
  * @memberof SavedSearchCompleteSearchResultsAccountBeta
24877
24931
  */
24878
24932
  'preview': Array<Array<string>>;
24879
24933
  }
24880
24934
  /**
24881
- * A preview of the search results for each object type. This includes a count as well as headers, and the first several rows of data, per object type.
24935
+ * Preview of the search results for each object type. This includes a count as well as headers and the first several rows of data, per object type.
24882
24936
  * @export
24883
24937
  * @interface SavedSearchCompleteSearchResultsBeta
24884
24938
  */
@@ -24903,50 +24957,50 @@ export interface SavedSearchCompleteSearchResultsBeta {
24903
24957
  'Identity'?: SavedSearchCompleteSearchResultsIdentityBeta | null;
24904
24958
  }
24905
24959
  /**
24906
- * A table of entitlements that match the search criteria.
24960
+ * Table of entitlements matching the search criteria.
24907
24961
  * @export
24908
24962
  * @interface SavedSearchCompleteSearchResultsEntitlementBeta
24909
24963
  */
24910
24964
  export interface SavedSearchCompleteSearchResultsEntitlementBeta {
24911
24965
  /**
24912
- * The number of rows in the table.
24966
+ * Number of rows in the table.
24913
24967
  * @type {string}
24914
24968
  * @memberof SavedSearchCompleteSearchResultsEntitlementBeta
24915
24969
  */
24916
24970
  'count': string;
24917
24971
  /**
24918
- * The type of object represented in the table.
24972
+ * Type of object represented in the table.
24919
24973
  * @type {string}
24920
24974
  * @memberof SavedSearchCompleteSearchResultsEntitlementBeta
24921
24975
  */
24922
24976
  'noun': string;
24923
24977
  /**
24924
- * A sample of the data in the table.
24978
+ * Sample of table data.
24925
24979
  * @type {Array<Array<string>>}
24926
24980
  * @memberof SavedSearchCompleteSearchResultsEntitlementBeta
24927
24981
  */
24928
24982
  'preview': Array<Array<string>>;
24929
24983
  }
24930
24984
  /**
24931
- * A table of identities that match the search criteria.
24985
+ * Table of identities matching the search criteria.
24932
24986
  * @export
24933
24987
  * @interface SavedSearchCompleteSearchResultsIdentityBeta
24934
24988
  */
24935
24989
  export interface SavedSearchCompleteSearchResultsIdentityBeta {
24936
24990
  /**
24937
- * The number of rows in the table.
24991
+ * Number of rows in the table.
24938
24992
  * @type {string}
24939
24993
  * @memberof SavedSearchCompleteSearchResultsIdentityBeta
24940
24994
  */
24941
24995
  'count': string;
24942
24996
  /**
24943
- * The type of object represented in the table.
24997
+ * Type of object represented in the table.
24944
24998
  * @type {string}
24945
24999
  * @memberof SavedSearchCompleteSearchResultsIdentityBeta
24946
25000
  */
24947
25001
  'noun': string;
24948
25002
  /**
24949
- * A sample of the data in the table.
25003
+ * Sample of the table data.
24950
25004
  * @type {Array<Array<string>>}
24951
25005
  * @memberof SavedSearchCompleteSearchResultsIdentityBeta
24952
25006
  */
@@ -25242,7 +25296,7 @@ export interface ScheduledAttributesBeta {
25242
25296
  */
25243
25297
  'timeZone'?: string;
25244
25298
  /**
25245
- *
25299
+ * A valid CRON expression
25246
25300
  * @type {string}
25247
25301
  * @memberof ScheduledAttributesBeta
25248
25302
  */
@@ -25259,6 +25313,12 @@ export interface ScheduledAttributesBeta {
25259
25313
  * @memberof ScheduledAttributesBeta
25260
25314
  */
25261
25315
  'weeklyTimes'?: Array<string>;
25316
+ /**
25317
+ * Scheduled execution times
25318
+ * @type {Array<string>}
25319
+ * @memberof ScheduledAttributesBeta
25320
+ */
25321
+ 'yearlyTimes'?: Array<string>;
25262
25322
  }
25263
25323
 
25264
25324
  export const ScheduledAttributesBetaFrequencyBeta = {
@@ -27228,11 +27288,11 @@ export interface Source1Beta {
27228
27288
  */
27229
27289
  export interface SourceAccountCreatedBeta {
27230
27290
  /**
27231
- * Source unique identifier for the identity. UUID is generated by the source system.
27291
+ * Identity\'s universal unique identifier (UUID) on the source. The source system generates the UUID.
27232
27292
  * @type {string}
27233
27293
  * @memberof SourceAccountCreatedBeta
27234
27294
  */
27235
- 'uuid'?: string;
27295
+ 'uuid': string;
27236
27296
  /**
27237
27297
  * SailPoint generated unique identifier.
27238
27298
  * @type {string}
@@ -27240,37 +27300,37 @@ export interface SourceAccountCreatedBeta {
27240
27300
  */
27241
27301
  'id': string;
27242
27302
  /**
27243
- * Unique ID of the account on the source.
27303
+ * Account\'s unique ID on the source.
27244
27304
  * @type {string}
27245
27305
  * @memberof SourceAccountCreatedBeta
27246
27306
  */
27247
27307
  'nativeIdentifier': string;
27248
27308
  /**
27249
- * The ID of the source.
27309
+ * Source ID.
27250
27310
  * @type {string}
27251
27311
  * @memberof SourceAccountCreatedBeta
27252
27312
  */
27253
27313
  'sourceId': string;
27254
27314
  /**
27255
- * The name of the source.
27315
+ * Source name.
27256
27316
  * @type {string}
27257
27317
  * @memberof SourceAccountCreatedBeta
27258
27318
  */
27259
27319
  'sourceName': string;
27260
27320
  /**
27261
- * The ID of the identity that is correlated with this account.
27321
+ * ID of the identity correlated with the account.
27262
27322
  * @type {string}
27263
27323
  * @memberof SourceAccountCreatedBeta
27264
27324
  */
27265
27325
  'identityId': string;
27266
27326
  /**
27267
- * The name of the identity that is correlated with this account.
27327
+ * Name of the identity correlated with the account.
27268
27328
  * @type {string}
27269
27329
  * @memberof SourceAccountCreatedBeta
27270
27330
  */
27271
27331
  'identityName': string;
27272
27332
  /**
27273
- * The attributes of the account. The contents of attributes depends on the account schema for the source.
27333
+ * Account attributes. The attributes\' contents depend on the source\'s account schema.
27274
27334
  * @type {{ [key: string]: any; }}
27275
27335
  * @memberof SourceAccountCreatedBeta
27276
27336
  */
@@ -27283,11 +27343,11 @@ export interface SourceAccountCreatedBeta {
27283
27343
  */
27284
27344
  export interface SourceAccountDeletedBeta {
27285
27345
  /**
27286
- * Source unique identifier for the identity. UUID is generated by the source system.
27346
+ * Identity\'s universal unique identifier (UUID) on the source. The source system generates the UUID.
27287
27347
  * @type {string}
27288
27348
  * @memberof SourceAccountDeletedBeta
27289
27349
  */
27290
- 'uuid'?: string;
27350
+ 'uuid': string;
27291
27351
  /**
27292
27352
  * SailPoint generated unique identifier.
27293
27353
  * @type {string}
@@ -27295,37 +27355,37 @@ export interface SourceAccountDeletedBeta {
27295
27355
  */
27296
27356
  'id': string;
27297
27357
  /**
27298
- * Unique ID of the account on the source.
27358
+ * Account\'s unique ID on the source.
27299
27359
  * @type {string}
27300
27360
  * @memberof SourceAccountDeletedBeta
27301
27361
  */
27302
27362
  'nativeIdentifier': string;
27303
27363
  /**
27304
- * The ID of the source.
27364
+ * Source ID.
27305
27365
  * @type {string}
27306
27366
  * @memberof SourceAccountDeletedBeta
27307
27367
  */
27308
27368
  'sourceId': string;
27309
27369
  /**
27310
- * The name of the source.
27370
+ * Source name.
27311
27371
  * @type {string}
27312
27372
  * @memberof SourceAccountDeletedBeta
27313
27373
  */
27314
27374
  'sourceName': string;
27315
27375
  /**
27316
- * The ID of the identity that is correlated with this account.
27376
+ * ID of the identity correlated with the account.
27317
27377
  * @type {string}
27318
27378
  * @memberof SourceAccountDeletedBeta
27319
27379
  */
27320
27380
  'identityId': string;
27321
27381
  /**
27322
- * The name of the identity that is correlated with this account.
27382
+ * Name of the identity correlated with the account.
27323
27383
  * @type {string}
27324
27384
  * @memberof SourceAccountDeletedBeta
27325
27385
  */
27326
27386
  'identityName': string;
27327
27387
  /**
27328
- * The attributes of the account. The contents of attributes depends on the account schema for the source.
27388
+ * Account attributes. The attributes\' contents depend on the source\'s account schema.
27329
27389
  * @type {{ [key: string]: any; }}
27330
27390
  * @memberof SourceAccountDeletedBeta
27331
27391
  */
@@ -27338,11 +27398,11 @@ export interface SourceAccountDeletedBeta {
27338
27398
  */
27339
27399
  export interface SourceAccountUpdatedBeta {
27340
27400
  /**
27341
- * Source unique identifier for the identity. UUID is generated by the source system.
27401
+ * Identity\'s universal unique identifier (UUID) on the source. The source system generates the UUID.
27342
27402
  * @type {string}
27343
27403
  * @memberof SourceAccountUpdatedBeta
27344
27404
  */
27345
- 'uuid'?: string;
27405
+ 'uuid': string;
27346
27406
  /**
27347
27407
  * SailPoint generated unique identifier.
27348
27408
  * @type {string}
@@ -27350,37 +27410,37 @@ export interface SourceAccountUpdatedBeta {
27350
27410
  */
27351
27411
  'id': string;
27352
27412
  /**
27353
- * Unique ID of the account on the source.
27413
+ * Account\'s unique ID on the source.
27354
27414
  * @type {string}
27355
27415
  * @memberof SourceAccountUpdatedBeta
27356
27416
  */
27357
27417
  'nativeIdentifier': string;
27358
27418
  /**
27359
- * The ID of the source.
27419
+ * Source ID.
27360
27420
  * @type {string}
27361
27421
  * @memberof SourceAccountUpdatedBeta
27362
27422
  */
27363
27423
  'sourceId': string;
27364
27424
  /**
27365
- * The name of the source.
27425
+ * Source name.
27366
27426
  * @type {string}
27367
27427
  * @memberof SourceAccountUpdatedBeta
27368
27428
  */
27369
27429
  'sourceName': string;
27370
27430
  /**
27371
- * The ID of the identity that is correlated with this account.
27431
+ * ID of the identity correlated with the account.
27372
27432
  * @type {string}
27373
27433
  * @memberof SourceAccountUpdatedBeta
27374
27434
  */
27375
27435
  'identityId': string;
27376
27436
  /**
27377
- * The name of the identity that is correlated with this account.
27437
+ * Name of the identity correlated with the account.
27378
27438
  * @type {string}
27379
27439
  * @memberof SourceAccountUpdatedBeta
27380
27440
  */
27381
27441
  'identityName': string;
27382
27442
  /**
27383
- * The attributes of the account. The contents of attributes depends on the account schema for the source.
27443
+ * Account attributes. The attributes\' contents depend on the source\'s account schema.
27384
27444
  * @type {{ [key: string]: any; }}
27385
27445
  * @memberof SourceAccountUpdatedBeta
27386
27446
  */
@@ -27965,19 +28025,19 @@ export interface SourceCodeBeta {
27965
28025
  */
27966
28026
  export interface SourceCreatedActorBeta {
27967
28027
  /**
27968
- * DTO type of identity who created the source.
28028
+ * DTO type of the identity who created the source.
27969
28029
  * @type {string}
27970
28030
  * @memberof SourceCreatedActorBeta
27971
28031
  */
27972
28032
  'type': SourceCreatedActorBetaTypeBeta;
27973
28033
  /**
27974
- * ID of identity who created the source.
28034
+ * ID of the identity who created the source.
27975
28035
  * @type {string}
27976
28036
  * @memberof SourceCreatedActorBeta
27977
28037
  */
27978
28038
  'id': string;
27979
28039
  /**
27980
- * Display name of identity who created the source.
28040
+ * Name of the identity who created the source.
27981
28041
  * @type {string}
27982
28042
  * @memberof SourceCreatedActorBeta
27983
28043
  */
@@ -27997,31 +28057,31 @@ export type SourceCreatedActorBetaTypeBeta = typeof SourceCreatedActorBetaTypeBe
27997
28057
  */
27998
28058
  export interface SourceCreatedBeta {
27999
28059
  /**
28000
- * The unique ID of the source.
28060
+ * Source\'s unique ID.
28001
28061
  * @type {string}
28002
28062
  * @memberof SourceCreatedBeta
28003
28063
  */
28004
28064
  'id': string;
28005
28065
  /**
28006
- * Human friendly name of the source.
28066
+ * Source name.
28007
28067
  * @type {string}
28008
28068
  * @memberof SourceCreatedBeta
28009
28069
  */
28010
28070
  'name': string;
28011
28071
  /**
28012
- * The connection type.
28072
+ * Connection type.
28013
28073
  * @type {string}
28014
28074
  * @memberof SourceCreatedBeta
28015
28075
  */
28016
28076
  'type': string;
28017
28077
  /**
28018
- * The date and time the source was created.
28078
+ * Date and time when the source was created.
28019
28079
  * @type {string}
28020
28080
  * @memberof SourceCreatedBeta
28021
28081
  */
28022
28082
  'created': string;
28023
28083
  /**
28024
- * The connector type used to connect to the source.
28084
+ * Connector type used to connect to the source.
28025
28085
  * @type {string}
28026
28086
  * @memberof SourceCreatedBeta
28027
28087
  */
@@ -28083,19 +28143,19 @@ export interface SourceCreationErrorsBeta {
28083
28143
  */
28084
28144
  export interface SourceDeletedActorBeta {
28085
28145
  /**
28086
- * DTO type of identity who deleted the source.
28146
+ * DTO type of the identity who deleted the source.
28087
28147
  * @type {string}
28088
28148
  * @memberof SourceDeletedActorBeta
28089
28149
  */
28090
28150
  'type': SourceDeletedActorBetaTypeBeta;
28091
28151
  /**
28092
- * ID of identity who deleted the source.
28152
+ * ID of the identity who deleted the source.
28093
28153
  * @type {string}
28094
28154
  * @memberof SourceDeletedActorBeta
28095
28155
  */
28096
28156
  'id': string;
28097
28157
  /**
28098
- * Display name of identity who deleted the source.
28158
+ * Name of the identity who deleted the source.
28099
28159
  * @type {string}
28100
28160
  * @memberof SourceDeletedActorBeta
28101
28161
  */
@@ -28115,31 +28175,31 @@ export type SourceDeletedActorBetaTypeBeta = typeof SourceDeletedActorBetaTypeBe
28115
28175
  */
28116
28176
  export interface SourceDeletedBeta {
28117
28177
  /**
28118
- * The unique ID of the source.
28178
+ * Source\'s unique ID.
28119
28179
  * @type {string}
28120
28180
  * @memberof SourceDeletedBeta
28121
28181
  */
28122
28182
  'id': string;
28123
28183
  /**
28124
- * Human friendly name of the source.
28184
+ * Source name.
28125
28185
  * @type {string}
28126
28186
  * @memberof SourceDeletedBeta
28127
28187
  */
28128
28188
  'name': string;
28129
28189
  /**
28130
- * The connection type.
28190
+ * Connection type.
28131
28191
  * @type {string}
28132
28192
  * @memberof SourceDeletedBeta
28133
28193
  */
28134
28194
  'type': string;
28135
28195
  /**
28136
- * The date and time the source was deleted.
28196
+ * Date and time when the source was deleted.
28137
28197
  * @type {string}
28138
28198
  * @memberof SourceDeletedBeta
28139
28199
  */
28140
28200
  'deleted': string;
28141
28201
  /**
28142
- * The connector type used to connect to the source.
28202
+ * Connector type used to connect to the source.
28143
28203
  * @type {string}
28144
28204
  * @memberof SourceDeletedBeta
28145
28205
  */
@@ -28225,19 +28285,19 @@ export interface SourceSyncPayloadBeta {
28225
28285
  */
28226
28286
  export interface SourceUpdatedActorBeta {
28227
28287
  /**
28228
- * DTO type of identity who updated the source.
28288
+ * DTO type of the identity who updated the source.
28229
28289
  * @type {string}
28230
28290
  * @memberof SourceUpdatedActorBeta
28231
28291
  */
28232
28292
  'type': SourceUpdatedActorBetaTypeBeta;
28233
28293
  /**
28234
- * ID of identity who updated the source.
28294
+ * ID of the identity who updated the source.
28235
28295
  * @type {string}
28236
28296
  * @memberof SourceUpdatedActorBeta
28237
28297
  */
28238
- 'id'?: string;
28298
+ 'id': string;
28239
28299
  /**
28240
- * Display name of identity who updated the source.
28300
+ * Name of the identity who updated the source.
28241
28301
  * @type {string}
28242
28302
  * @memberof SourceUpdatedActorBeta
28243
28303
  */
@@ -28257,31 +28317,31 @@ export type SourceUpdatedActorBetaTypeBeta = typeof SourceUpdatedActorBetaTypeBe
28257
28317
  */
28258
28318
  export interface SourceUpdatedBeta {
28259
28319
  /**
28260
- * The unique ID of the source.
28320
+ * Source\'s unique ID.
28261
28321
  * @type {string}
28262
28322
  * @memberof SourceUpdatedBeta
28263
28323
  */
28264
28324
  'id': string;
28265
28325
  /**
28266
- * The user friendly name of the source.
28326
+ * Source name.
28267
28327
  * @type {string}
28268
28328
  * @memberof SourceUpdatedBeta
28269
28329
  */
28270
28330
  'name': string;
28271
28331
  /**
28272
- * The connection type of the source.
28332
+ * Connection type.
28273
28333
  * @type {string}
28274
28334
  * @memberof SourceUpdatedBeta
28275
28335
  */
28276
28336
  'type': string;
28277
28337
  /**
28278
- * The date and time the source was modified.
28338
+ * Date and time when the source was modified.
28279
28339
  * @type {string}
28280
28340
  * @memberof SourceUpdatedBeta
28281
28341
  */
28282
28342
  'modified': string;
28283
28343
  /**
28284
- * The connector type used to connect to the source.
28344
+ * Connector type used to connect to the source.
28285
28345
  * @type {string}
28286
28346
  * @memberof SourceUpdatedBeta
28287
28347
  */
@@ -29503,7 +29563,7 @@ export interface TaskDefinitionSummaryBeta {
29503
29563
  * @type {string}
29504
29564
  * @memberof TaskDefinitionSummaryBeta
29505
29565
  */
29506
- 'description': string;
29566
+ 'description': string | null;
29507
29567
  /**
29508
29568
  * Name of the parent of the TaskDefinition
29509
29569
  * @type {string}
@@ -31322,25 +31382,25 @@ export interface V3ConnectorDtoBeta {
31322
31382
  'status'?: string;
31323
31383
  }
31324
31384
  /**
31325
- * Details about the `CLUSTER` or `SOURCE` that initiated this event.
31385
+ * Details about the `CLUSTER` or `SOURCE` that initiated the event.
31326
31386
  * @export
31327
31387
  * @interface VAClusterStatusChangeEventApplicationBeta
31328
31388
  */
31329
31389
  export interface VAClusterStatusChangeEventApplicationBeta {
31330
31390
  /**
31331
- * The GUID of the application
31391
+ * Application\'s globally unique identifier (GUID).
31332
31392
  * @type {string}
31333
31393
  * @memberof VAClusterStatusChangeEventApplicationBeta
31334
31394
  */
31335
31395
  'id': string;
31336
31396
  /**
31337
- * The name of the application
31397
+ * Application name.
31338
31398
  * @type {string}
31339
31399
  * @memberof VAClusterStatusChangeEventApplicationBeta
31340
31400
  */
31341
31401
  'name': string;
31342
31402
  /**
31343
- * Custom map of attributes for a source. This will only be populated if type is `SOURCE` and the source has a proxy.
31403
+ * Custom map of attributes for a source. Attributes only populate if the type is `SOURCE` and the source has a proxy.
31344
31404
  * @type {{ [key: string]: any; }}
31345
31405
  * @memberof VAClusterStatusChangeEventApplicationBeta
31346
31406
  */
@@ -31353,13 +31413,13 @@ export interface VAClusterStatusChangeEventApplicationBeta {
31353
31413
  */
31354
31414
  export interface VAClusterStatusChangeEventBeta {
31355
31415
  /**
31356
- * The date and time the status change occurred.
31416
+ * Date and time when the status change occurred.
31357
31417
  * @type {string}
31358
31418
  * @memberof VAClusterStatusChangeEventBeta
31359
31419
  */
31360
31420
  'created': string;
31361
31421
  /**
31362
- * The type of the object that initiated this event.
31422
+ * Type of the object that initiated the event.
31363
31423
  * @type {object}
31364
31424
  * @memberof VAClusterStatusChangeEventBeta
31365
31425
  */
@@ -31392,26 +31452,26 @@ export const VAClusterStatusChangeEventBetaTypeBeta = {
31392
31452
  export type VAClusterStatusChangeEventBetaTypeBeta = typeof VAClusterStatusChangeEventBetaTypeBeta[keyof typeof VAClusterStatusChangeEventBetaTypeBeta];
31393
31453
 
31394
31454
  /**
31395
- * The results of the most recent health check.
31455
+ * Results of the most recent health check.
31396
31456
  * @export
31397
31457
  * @interface VAClusterStatusChangeEventHealthCheckResultBeta
31398
31458
  */
31399
31459
  export interface VAClusterStatusChangeEventHealthCheckResultBeta {
31400
31460
  /**
31401
- * Detailed message of the result of the health check.
31461
+ * Detailed message of the health check result..
31402
31462
  * @type {string}
31403
31463
  * @memberof VAClusterStatusChangeEventHealthCheckResultBeta
31404
31464
  */
31405
31465
  'message': string;
31406
31466
  /**
31407
- * The type of the health check result.
31467
+ * Health check result type.
31408
31468
  * @type {string}
31409
31469
  * @memberof VAClusterStatusChangeEventHealthCheckResultBeta
31410
31470
  */
31411
31471
  'resultType': string;
31412
31472
  /**
31413
- * The status of the health check.
31414
- * @type {object}
31473
+ * Health check status.
31474
+ * @type {string}
31415
31475
  * @memberof VAClusterStatusChangeEventHealthCheckResultBeta
31416
31476
  */
31417
31477
  'status': VAClusterStatusChangeEventHealthCheckResultBetaStatusBeta;
@@ -31425,26 +31485,26 @@ export const VAClusterStatusChangeEventHealthCheckResultBetaStatusBeta = {
31425
31485
  export type VAClusterStatusChangeEventHealthCheckResultBetaStatusBeta = typeof VAClusterStatusChangeEventHealthCheckResultBetaStatusBeta[keyof typeof VAClusterStatusChangeEventHealthCheckResultBetaStatusBeta];
31426
31486
 
31427
31487
  /**
31428
- * The results of the last health check.
31488
+ * Results of the last health check.
31429
31489
  * @export
31430
31490
  * @interface VAClusterStatusChangeEventPreviousHealthCheckResultBeta
31431
31491
  */
31432
31492
  export interface VAClusterStatusChangeEventPreviousHealthCheckResultBeta {
31433
31493
  /**
31434
- * Detailed message of the result of the health check.
31494
+ * Detailed message of the health check result.
31435
31495
  * @type {string}
31436
31496
  * @memberof VAClusterStatusChangeEventPreviousHealthCheckResultBeta
31437
31497
  */
31438
31498
  'message': string;
31439
31499
  /**
31440
- * The type of the health check result.
31500
+ * Health check result type.
31441
31501
  * @type {string}
31442
31502
  * @memberof VAClusterStatusChangeEventPreviousHealthCheckResultBeta
31443
31503
  */
31444
31504
  'resultType': string;
31445
31505
  /**
31446
- * The status of the health check.
31447
- * @type {object}
31506
+ * Health check status.
31507
+ * @type {string}
31448
31508
  * @memberof VAClusterStatusChangeEventPreviousHealthCheckResultBeta
31449
31509
  */
31450
31510
  'status': VAClusterStatusChangeEventPreviousHealthCheckResultBetaStatusBeta;
@@ -32753,6 +32813,18 @@ export interface WorkflowTriggerAttributesBeta {
32753
32813
  * @memberof WorkflowTriggerAttributesBeta
32754
32814
  */
32755
32815
  'description'?: string;
32816
+ /**
32817
+ * The attribute to filter on
32818
+ * @type {string}
32819
+ * @memberof WorkflowTriggerAttributesBeta
32820
+ */
32821
+ 'attributeToFilter'?: string;
32822
+ /**
32823
+ * Form definition\'s unique identifier.
32824
+ * @type {string}
32825
+ * @memberof WorkflowTriggerAttributesBeta
32826
+ */
32827
+ 'formDefinitionId'?: string;
32756
32828
  /**
32757
32829
  * A unique name for the external trigger
32758
32830
  * @type {string}
@@ -32784,7 +32856,7 @@ export interface WorkflowTriggerAttributesBeta {
32784
32856
  */
32785
32857
  'timeZone'?: string;
32786
32858
  /**
32787
- *
32859
+ * A valid CRON expression
32788
32860
  * @type {string}
32789
32861
  * @memberof WorkflowTriggerAttributesBeta
32790
32862
  */
@@ -32801,6 +32873,12 @@ export interface WorkflowTriggerAttributesBeta {
32801
32873
  * @memberof WorkflowTriggerAttributesBeta
32802
32874
  */
32803
32875
  'weeklyTimes'?: Array<string>;
32876
+ /**
32877
+ * Scheduled execution times
32878
+ * @type {Array<string>}
32879
+ * @memberof WorkflowTriggerAttributesBeta
32880
+ */
32881
+ 'yearlyTimes'?: Array<string>;
32804
32882
  }
32805
32883
 
32806
32884
  export const WorkflowTriggerAttributesBetaFrequencyBeta = {
@@ -33487,7 +33565,7 @@ export class AccessModelMetadataBetaApi extends BaseAPI {
33487
33565
  export const AccessProfilesBetaApiAxiosParamCreator = function (configuration?: Configuration) {
33488
33566
  return {
33489
33567
  /**
33490
- * Use this API to create an access profile. A token with API, ORG_ADMIN, ROLE_ADMIN, ROLE_SUBADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API. In addition, a token with only ROLE_SUBADMIN or SOURCE_SUBADMIN authority must be associated with the access profile\'s Source. The maximum supported length for the description field is 2000 characters. Longer descriptions will be preserved for existing access profiles, however, any new access profiles as well as any updates to existing descriptions will be limited to 2000 characters.
33568
+ * Create an access profile. A user with only ROLE_SUBADMIN or SOURCE_SUBADMIN authority must be associated with the access profile\'s Source. The maximum supported length for the description field is 2000 characters. Longer descriptions will be preserved for existing access profiles. However, any new access profiles as well as any updates to existing descriptions are limited to 2000 characters.
33491
33569
  * @summary Create Access Profile
33492
33570
  * @param {AccessProfileBeta} accessProfileBeta
33493
33571
  * @param {*} [axiosOptions] Override http request option.
@@ -33516,6 +33594,10 @@ export const AccessProfilesBetaApiAxiosParamCreator = function (configuration?:
33516
33594
  // oauth required
33517
33595
  await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
33518
33596
 
33597
+ // authentication applicationAuth required
33598
+ // oauth required
33599
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
33600
+
33519
33601
 
33520
33602
 
33521
33603
  localVarHeaderParameter['Content-Type'] = 'application/json';
@@ -33738,16 +33820,16 @@ export const AccessProfilesBetaApiAxiosParamCreator = function (configuration?:
33738
33820
  };
33739
33821
  },
33740
33822
  /**
33741
- * Use this API to get a list of access profiles. A token with API, ORG_ADMIN, ROLE_ADMIN, ROLE_SUBADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API.
33823
+ * Get a list of access profiles. >**Note:** When you filter for access profiles that have the \'+\' symbol in their names, the response is blank.
33742
33824
  * @summary List Access Profiles
33743
- * @param {string} [forSubadmin] If provided, filters the returned list according to what is visible to the indicated ROLE_SUBADMIN or SOURCE_SUBADMIN identity. The value of the parameter is either an identity ID, or the special value **me**, which is shorthand for the calling identity\&#39;s ID. A 400 Bad Request error is returned if the **for-subadmin** parameter is specified for an identity that is not a subadmin.
33744
- * @param {number} [limit] Note that for this API the maximum value for limit is 50. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
33825
+ * @param {string} [forSubadmin] Filters the returned list according to what is visible to the indicated ROLE_SUBADMIN or SOURCE_SUBADMIN identity. The value of the parameter is either an identity ID or the special value **me**, which is shorthand for the calling identity\&#39;s ID. If you specify an identity that isn\&#39;t a subadmin, the API returns a 400 Bad Request error.
33826
+ * @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.
33745
33827
  * @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.
33746
33828
  * @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.
33747
33829
  * @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, sw* **created**: *gt, lt, ge, le* **modified**: *gt, lt, ge, le* **owner.id**: *eq, in* **requestable**: *eq* **source.id**: *eq, in* Filtering is not supported for access profiles and entitlements that have the \&#39;+\&#39; symbol in their names.
33748
33830
  * @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, created, modified**
33749
- * @param {string} [forSegmentIds] If present and not empty, additionally filters access profiles to those which are assigned to the segment(s) with the specified IDs. If segmentation is currently unavailable, specifying this parameter results in an error.
33750
- * @param {boolean} [includeUnsegmented] Indicates whether the response list should contain unsegmented access profiles. If *for-segment-ids* is absent or empty, specifying *include-unsegmented* as false results in an error.
33831
+ * @param {string} [forSegmentIds] Filters access profiles to only those assigned to the segment(s) with the specified IDs. If segmentation is currently unavailable, specifying this parameter results in an error.
33832
+ * @param {boolean} [includeUnsegmented] Indicates whether the response list should contain unsegmented access profiles. If &#x60;for-segment-ids&#x60; is absent or empty, specifying *include-unsegmented* as &#x60;false&#x60; results in an error.
33751
33833
  * @param {*} [axiosOptions] Override http request option.
33752
33834
  * @throws {RequiredError}
33753
33835
  */
@@ -33772,6 +33854,10 @@ export const AccessProfilesBetaApiAxiosParamCreator = function (configuration?:
33772
33854
  // oauth required
33773
33855
  await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
33774
33856
 
33857
+ // authentication applicationAuth required
33858
+ // oauth required
33859
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
33860
+
33775
33861
  if (forSubadmin !== undefined) {
33776
33862
  localVarQueryParameter['for-subadmin'] = forSubadmin;
33777
33863
  }
@@ -33922,7 +34008,7 @@ export const AccessProfilesBetaApiFp = function(configuration?: Configuration) {
33922
34008
  const localVarAxiosParamCreator = AccessProfilesBetaApiAxiosParamCreator(configuration)
33923
34009
  return {
33924
34010
  /**
33925
- * Use this API to create an access profile. A token with API, ORG_ADMIN, ROLE_ADMIN, ROLE_SUBADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API. In addition, a token with only ROLE_SUBADMIN or SOURCE_SUBADMIN authority must be associated with the access profile\'s Source. The maximum supported length for the description field is 2000 characters. Longer descriptions will be preserved for existing access profiles, however, any new access profiles as well as any updates to existing descriptions will be limited to 2000 characters.
34011
+ * Create an access profile. A user with only ROLE_SUBADMIN or SOURCE_SUBADMIN authority must be associated with the access profile\'s Source. The maximum supported length for the description field is 2000 characters. Longer descriptions will be preserved for existing access profiles. However, any new access profiles as well as any updates to existing descriptions are limited to 2000 characters.
33926
34012
  * @summary Create Access Profile
33927
34013
  * @param {AccessProfileBeta} accessProfileBeta
33928
34014
  * @param {*} [axiosOptions] Override http request option.
@@ -33992,16 +34078,16 @@ export const AccessProfilesBetaApiFp = function(configuration?: Configuration) {
33992
34078
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
33993
34079
  },
33994
34080
  /**
33995
- * Use this API to get a list of access profiles. A token with API, ORG_ADMIN, ROLE_ADMIN, ROLE_SUBADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API.
34081
+ * Get a list of access profiles. >**Note:** When you filter for access profiles that have the \'+\' symbol in their names, the response is blank.
33996
34082
  * @summary List Access Profiles
33997
- * @param {string} [forSubadmin] If provided, filters the returned list according to what is visible to the indicated ROLE_SUBADMIN or SOURCE_SUBADMIN identity. The value of the parameter is either an identity ID, or the special value **me**, which is shorthand for the calling identity\&#39;s ID. A 400 Bad Request error is returned if the **for-subadmin** parameter is specified for an identity that is not a subadmin.
33998
- * @param {number} [limit] Note that for this API the maximum value for limit is 50. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
34083
+ * @param {string} [forSubadmin] Filters the returned list according to what is visible to the indicated ROLE_SUBADMIN or SOURCE_SUBADMIN identity. The value of the parameter is either an identity ID or the special value **me**, which is shorthand for the calling identity\&#39;s ID. If you specify an identity that isn\&#39;t a subadmin, the API returns a 400 Bad Request error.
34084
+ * @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.
33999
34085
  * @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.
34000
34086
  * @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.
34001
34087
  * @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, sw* **created**: *gt, lt, ge, le* **modified**: *gt, lt, ge, le* **owner.id**: *eq, in* **requestable**: *eq* **source.id**: *eq, in* Filtering is not supported for access profiles and entitlements that have the \&#39;+\&#39; symbol in their names.
34002
34088
  * @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, created, modified**
34003
- * @param {string} [forSegmentIds] If present and not empty, additionally filters access profiles to those which are assigned to the segment(s) with the specified IDs. If segmentation is currently unavailable, specifying this parameter results in an error.
34004
- * @param {boolean} [includeUnsegmented] Indicates whether the response list should contain unsegmented access profiles. If *for-segment-ids* is absent or empty, specifying *include-unsegmented* as false results in an error.
34089
+ * @param {string} [forSegmentIds] Filters access profiles to only those assigned to the segment(s) with the specified IDs. If segmentation is currently unavailable, specifying this parameter results in an error.
34090
+ * @param {boolean} [includeUnsegmented] Indicates whether the response list should contain unsegmented access profiles. If &#x60;for-segment-ids&#x60; is absent or empty, specifying *include-unsegmented* as &#x60;false&#x60; results in an error.
34005
34091
  * @param {*} [axiosOptions] Override http request option.
34006
34092
  * @throws {RequiredError}
34007
34093
  */
@@ -34049,7 +34135,7 @@ export const AccessProfilesBetaApiFactory = function (configuration?: Configurat
34049
34135
  const localVarFp = AccessProfilesBetaApiFp(configuration)
34050
34136
  return {
34051
34137
  /**
34052
- * Use this API to create an access profile. A token with API, ORG_ADMIN, ROLE_ADMIN, ROLE_SUBADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API. In addition, a token with only ROLE_SUBADMIN or SOURCE_SUBADMIN authority must be associated with the access profile\'s Source. The maximum supported length for the description field is 2000 characters. Longer descriptions will be preserved for existing access profiles, however, any new access profiles as well as any updates to existing descriptions will be limited to 2000 characters.
34138
+ * Create an access profile. A user with only ROLE_SUBADMIN or SOURCE_SUBADMIN authority must be associated with the access profile\'s Source. The maximum supported length for the description field is 2000 characters. Longer descriptions will be preserved for existing access profiles. However, any new access profiles as well as any updates to existing descriptions are limited to 2000 characters.
34053
34139
  * @summary Create Access Profile
34054
34140
  * @param {AccessProfilesBetaApiCreateAccessProfileRequest} requestParameters Request parameters.
34055
34141
  * @param {*} [axiosOptions] Override http request option.
@@ -34099,7 +34185,7 @@ export const AccessProfilesBetaApiFactory = function (configuration?: Configurat
34099
34185
  return localVarFp.getAccessProfileEntitlements(requestParameters.id, requestParameters.limit, requestParameters.offset, requestParameters.count, requestParameters.filters, requestParameters.sorters, axiosOptions).then((request) => request(axios, basePath));
34100
34186
  },
34101
34187
  /**
34102
- * Use this API to get a list of access profiles. A token with API, ORG_ADMIN, ROLE_ADMIN, ROLE_SUBADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API.
34188
+ * Get a list of access profiles. >**Note:** When you filter for access profiles that have the \'+\' symbol in their names, the response is blank.
34103
34189
  * @summary List Access Profiles
34104
34190
  * @param {AccessProfilesBetaApiListAccessProfilesRequest} requestParameters Request parameters.
34105
34191
  * @param {*} [axiosOptions] Override http request option.
@@ -34243,14 +34329,14 @@ export interface AccessProfilesBetaApiGetAccessProfileEntitlementsRequest {
34243
34329
  */
34244
34330
  export interface AccessProfilesBetaApiListAccessProfilesRequest {
34245
34331
  /**
34246
- * If provided, filters the returned list according to what is visible to the indicated ROLE_SUBADMIN or SOURCE_SUBADMIN identity. The value of the parameter is either an identity ID, or the special value **me**, which is shorthand for the calling identity\&#39;s ID. A 400 Bad Request error is returned if the **for-subadmin** parameter is specified for an identity that is not a subadmin.
34332
+ * Filters the returned list according to what is visible to the indicated ROLE_SUBADMIN or SOURCE_SUBADMIN identity. The value of the parameter is either an identity ID or the special value **me**, which is shorthand for the calling identity\&#39;s ID. If you specify an identity that isn\&#39;t a subadmin, the API returns a 400 Bad Request error.
34247
34333
  * @type {string}
34248
34334
  * @memberof AccessProfilesBetaApiListAccessProfiles
34249
34335
  */
34250
34336
  readonly forSubadmin?: string
34251
34337
 
34252
34338
  /**
34253
- * Note that for this API the maximum value for limit is 50. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
34339
+ * Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
34254
34340
  * @type {number}
34255
34341
  * @memberof AccessProfilesBetaApiListAccessProfiles
34256
34342
  */
@@ -34285,14 +34371,14 @@ export interface AccessProfilesBetaApiListAccessProfilesRequest {
34285
34371
  readonly sorters?: string
34286
34372
 
34287
34373
  /**
34288
- * If present and not empty, additionally filters access profiles to those which are assigned to the segment(s) with the specified IDs. If segmentation is currently unavailable, specifying this parameter results in an error.
34374
+ * Filters access profiles to only those assigned to the segment(s) with the specified IDs. If segmentation is currently unavailable, specifying this parameter results in an error.
34289
34375
  * @type {string}
34290
34376
  * @memberof AccessProfilesBetaApiListAccessProfiles
34291
34377
  */
34292
34378
  readonly forSegmentIds?: string
34293
34379
 
34294
34380
  /**
34295
- * Indicates whether the response list should contain unsegmented access profiles. If *for-segment-ids* is absent or empty, specifying *include-unsegmented* as false results in an error.
34381
+ * Indicates whether the response list should contain unsegmented access profiles. If &#x60;for-segment-ids&#x60; is absent or empty, specifying *include-unsegmented* as &#x60;false&#x60; results in an error.
34296
34382
  * @type {boolean}
34297
34383
  * @memberof AccessProfilesBetaApiListAccessProfiles
34298
34384
  */
@@ -34342,7 +34428,7 @@ export interface AccessProfilesBetaApiUpdateAccessProfilesInBulkRequest {
34342
34428
  */
34343
34429
  export class AccessProfilesBetaApi extends BaseAPI {
34344
34430
  /**
34345
- * Use this API to create an access profile. A token with API, ORG_ADMIN, ROLE_ADMIN, ROLE_SUBADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API. In addition, a token with only ROLE_SUBADMIN or SOURCE_SUBADMIN authority must be associated with the access profile\'s Source. The maximum supported length for the description field is 2000 characters. Longer descriptions will be preserved for existing access profiles, however, any new access profiles as well as any updates to existing descriptions will be limited to 2000 characters.
34431
+ * Create an access profile. A user with only ROLE_SUBADMIN or SOURCE_SUBADMIN authority must be associated with the access profile\'s Source. The maximum supported length for the description field is 2000 characters. Longer descriptions will be preserved for existing access profiles. However, any new access profiles as well as any updates to existing descriptions are limited to 2000 characters.
34346
34432
  * @summary Create Access Profile
34347
34433
  * @param {AccessProfilesBetaApiCreateAccessProfileRequest} requestParameters Request parameters.
34348
34434
  * @param {*} [axiosOptions] Override http request option.
@@ -34402,7 +34488,7 @@ export class AccessProfilesBetaApi extends BaseAPI {
34402
34488
  }
34403
34489
 
34404
34490
  /**
34405
- * Use this API to get a list of access profiles. A token with API, ORG_ADMIN, ROLE_ADMIN, ROLE_SUBADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API.
34491
+ * Get a list of access profiles. >**Note:** When you filter for access profiles that have the \'+\' symbol in their names, the response is blank.
34406
34492
  * @summary List Access Profiles
34407
34493
  * @param {AccessProfilesBetaApiListAccessProfilesRequest} requestParameters Request parameters.
34408
34494
  * @param {*} [axiosOptions] Override http request option.
@@ -50090,7 +50176,7 @@ export const IAIAccessRequestRecommendationsBetaApiAxiosParamCreator = function
50090
50176
  return {
50091
50177
  /**
50092
50178
  * This API ignores a recommended access request item. Once an item is ignored, it will be marked as ignored=true if it is still a recommended item. The consumer can decide to hide ignored recommendations.
50093
- * @summary Notification of Ignored Access Request Recommendations
50179
+ * @summary Ignore Access Request Recommendation
50094
50180
  * @param {AccessRequestRecommendationActionItemDtoBeta} accessRequestRecommendationActionItemDtoBeta The recommended access item to ignore for an identity.
50095
50181
  * @param {*} [axiosOptions] Override http request option.
50096
50182
  * @throws {RequiredError}
@@ -50112,11 +50198,11 @@ export const IAIAccessRequestRecommendationsBetaApiAxiosParamCreator = function
50112
50198
 
50113
50199
  // authentication userAuth required
50114
50200
  // oauth required
50115
- await setOAuthToObject(localVarHeaderParameter, "userAuth", ["sp:scopes:all"], configuration)
50201
+ await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
50116
50202
 
50117
50203
  // authentication userAuth required
50118
50204
  // oauth required
50119
- await setOAuthToObject(localVarHeaderParameter, "userAuth", ["sp:scopes:all"], configuration)
50205
+ await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
50120
50206
 
50121
50207
 
50122
50208
 
@@ -50134,7 +50220,7 @@ export const IAIAccessRequestRecommendationsBetaApiAxiosParamCreator = function
50134
50220
  },
50135
50221
  /**
50136
50222
  * This API consumes a notification that a recommended access request item was requested. This API does not actually make the request, it is just a notification. This will help provide feedback in order to improve our recommendations.
50137
- * @summary Notification of Requested Access Request Recommendations
50223
+ * @summary Accept Access Request Recommendation
50138
50224
  * @param {AccessRequestRecommendationActionItemDtoBeta} accessRequestRecommendationActionItemDtoBeta The recommended access item that was requested for an identity.
50139
50225
  * @param {*} [axiosOptions] Override http request option.
50140
50226
  * @throws {RequiredError}
@@ -50156,11 +50242,11 @@ export const IAIAccessRequestRecommendationsBetaApiAxiosParamCreator = function
50156
50242
 
50157
50243
  // authentication userAuth required
50158
50244
  // oauth required
50159
- await setOAuthToObject(localVarHeaderParameter, "userAuth", ["sp:scopes:all"], configuration)
50245
+ await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
50160
50246
 
50161
50247
  // authentication userAuth required
50162
50248
  // oauth required
50163
- await setOAuthToObject(localVarHeaderParameter, "userAuth", ["sp:scopes:all"], configuration)
50249
+ await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
50164
50250
 
50165
50251
 
50166
50252
 
@@ -50178,7 +50264,7 @@ export const IAIAccessRequestRecommendationsBetaApiAxiosParamCreator = function
50178
50264
  },
50179
50265
  /**
50180
50266
  * This API consumes a notification that a recommended access request item was viewed. Future recommendations with this item will be marked with viewed=true. This can be useful for the consumer to determine if there are any new/unviewed recommendations.
50181
- * @summary Notification of Viewed Access Request Recommendations
50267
+ * @summary Mark Viewed Access Request Recommendations
50182
50268
  * @param {AccessRequestRecommendationActionItemDtoBeta} accessRequestRecommendationActionItemDtoBeta The recommended access that was viewed for an identity.
50183
50269
  * @param {*} [axiosOptions] Override http request option.
50184
50270
  * @throws {RequiredError}
@@ -50200,11 +50286,11 @@ export const IAIAccessRequestRecommendationsBetaApiAxiosParamCreator = function
50200
50286
 
50201
50287
  // authentication userAuth required
50202
50288
  // oauth required
50203
- await setOAuthToObject(localVarHeaderParameter, "userAuth", ["sp:scopes:all"], configuration)
50289
+ await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
50204
50290
 
50205
50291
  // authentication userAuth required
50206
50292
  // oauth required
50207
- await setOAuthToObject(localVarHeaderParameter, "userAuth", ["sp:scopes:all"], configuration)
50293
+ await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
50208
50294
 
50209
50295
 
50210
50296
 
@@ -50222,7 +50308,7 @@ export const IAIAccessRequestRecommendationsBetaApiAxiosParamCreator = function
50222
50308
  },
50223
50309
  /**
50224
50310
  * This API consumes a notification that a set of recommended access request item were viewed. Future recommendations with these items will be marked with viewed=true. This can be useful for the consumer to determine if there are any new/unviewed recommendations.
50225
- * @summary Notification of Viewed Access Request Recommendations in Bulk
50311
+ * @summary Bulk Mark Viewed Access Request Recommendations
50226
50312
  * @param {Array<AccessRequestRecommendationActionItemDtoBeta>} accessRequestRecommendationActionItemDtoBeta The recommended access items that were viewed for an identity.
50227
50313
  * @param {*} [axiosOptions] Override http request option.
50228
50314
  * @throws {RequiredError}
@@ -50244,11 +50330,11 @@ export const IAIAccessRequestRecommendationsBetaApiAxiosParamCreator = function
50244
50330
 
50245
50331
  // authentication userAuth required
50246
50332
  // oauth required
50247
- await setOAuthToObject(localVarHeaderParameter, "userAuth", ["sp:scopes:all"], configuration)
50333
+ await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
50248
50334
 
50249
50335
  // authentication userAuth required
50250
50336
  // oauth required
50251
- await setOAuthToObject(localVarHeaderParameter, "userAuth", ["sp:scopes:all"], configuration)
50337
+ await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
50252
50338
 
50253
50339
 
50254
50340
 
@@ -50292,11 +50378,11 @@ export const IAIAccessRequestRecommendationsBetaApiAxiosParamCreator = function
50292
50378
 
50293
50379
  // authentication userAuth required
50294
50380
  // oauth required
50295
- await setOAuthToObject(localVarHeaderParameter, "userAuth", ["sp:scopes:all"], configuration)
50381
+ await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
50296
50382
 
50297
50383
  // authentication userAuth required
50298
50384
  // oauth required
50299
- await setOAuthToObject(localVarHeaderParameter, "userAuth", ["sp:scopes:all"], configuration)
50385
+ await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
50300
50386
 
50301
50387
  if (identityId !== undefined) {
50302
50388
  localVarQueryParameter['identity-id'] = identityId;
@@ -50339,7 +50425,7 @@ export const IAIAccessRequestRecommendationsBetaApiAxiosParamCreator = function
50339
50425
  },
50340
50426
  /**
50341
50427
  * This API returns the list of ignored access request recommendations.
50342
- * @summary List of Ignored Access Request Recommendations
50428
+ * @summary List Ignored Access Request Recommendations
50343
50429
  * @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.
50344
50430
  * @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.
50345
50431
  * @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.
@@ -50363,11 +50449,11 @@ export const IAIAccessRequestRecommendationsBetaApiAxiosParamCreator = function
50363
50449
 
50364
50450
  // authentication userAuth required
50365
50451
  // oauth required
50366
- await setOAuthToObject(localVarHeaderParameter, "userAuth", ["sp:scopes:all"], configuration)
50452
+ await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
50367
50453
 
50368
50454
  // authentication userAuth required
50369
50455
  // oauth required
50370
- await setOAuthToObject(localVarHeaderParameter, "userAuth", ["sp:scopes:all"], configuration)
50456
+ await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
50371
50457
 
50372
50458
  if (limit !== undefined) {
50373
50459
  localVarQueryParameter['limit'] = limit;
@@ -50402,7 +50488,7 @@ export const IAIAccessRequestRecommendationsBetaApiAxiosParamCreator = function
50402
50488
  },
50403
50489
  /**
50404
50490
  * This API returns a list of requested access request recommendations.
50405
- * @summary List of Requested Access Request Recommendations
50491
+ * @summary List Accepted Access Request Recommendations
50406
50492
  * @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.
50407
50493
  * @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.
50408
50494
  * @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.
@@ -50426,11 +50512,11 @@ export const IAIAccessRequestRecommendationsBetaApiAxiosParamCreator = function
50426
50512
 
50427
50513
  // authentication userAuth required
50428
50514
  // oauth required
50429
- await setOAuthToObject(localVarHeaderParameter, "userAuth", ["sp:scopes:all"], configuration)
50515
+ await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
50430
50516
 
50431
50517
  // authentication userAuth required
50432
50518
  // oauth required
50433
- await setOAuthToObject(localVarHeaderParameter, "userAuth", ["sp:scopes:all"], configuration)
50519
+ await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
50434
50520
 
50435
50521
  if (limit !== undefined) {
50436
50522
  localVarQueryParameter['limit'] = limit;
@@ -50465,7 +50551,7 @@ export const IAIAccessRequestRecommendationsBetaApiAxiosParamCreator = function
50465
50551
  },
50466
50552
  /**
50467
50553
  * This API returns the list of viewed access request recommendations.
50468
- * @summary List of Viewed Access Request Recommendations
50554
+ * @summary List Viewed Access Request Recommendations
50469
50555
  * @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.
50470
50556
  * @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.
50471
50557
  * @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.
@@ -50489,11 +50575,11 @@ export const IAIAccessRequestRecommendationsBetaApiAxiosParamCreator = function
50489
50575
 
50490
50576
  // authentication userAuth required
50491
50577
  // oauth required
50492
- await setOAuthToObject(localVarHeaderParameter, "userAuth", ["sp:scopes:all"], configuration)
50578
+ await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
50493
50579
 
50494
50580
  // authentication userAuth required
50495
50581
  // oauth required
50496
- await setOAuthToObject(localVarHeaderParameter, "userAuth", ["sp:scopes:all"], configuration)
50582
+ await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
50497
50583
 
50498
50584
  if (limit !== undefined) {
50499
50585
  localVarQueryParameter['limit'] = limit;
@@ -50538,7 +50624,7 @@ export const IAIAccessRequestRecommendationsBetaApiFp = function(configuration?:
50538
50624
  return {
50539
50625
  /**
50540
50626
  * This API ignores a recommended access request item. Once an item is ignored, it will be marked as ignored=true if it is still a recommended item. The consumer can decide to hide ignored recommendations.
50541
- * @summary Notification of Ignored Access Request Recommendations
50627
+ * @summary Ignore Access Request Recommendation
50542
50628
  * @param {AccessRequestRecommendationActionItemDtoBeta} accessRequestRecommendationActionItemDtoBeta The recommended access item to ignore for an identity.
50543
50629
  * @param {*} [axiosOptions] Override http request option.
50544
50630
  * @throws {RequiredError}
@@ -50551,7 +50637,7 @@ export const IAIAccessRequestRecommendationsBetaApiFp = function(configuration?:
50551
50637
  },
50552
50638
  /**
50553
50639
  * This API consumes a notification that a recommended access request item was requested. This API does not actually make the request, it is just a notification. This will help provide feedback in order to improve our recommendations.
50554
- * @summary Notification of Requested Access Request Recommendations
50640
+ * @summary Accept Access Request Recommendation
50555
50641
  * @param {AccessRequestRecommendationActionItemDtoBeta} accessRequestRecommendationActionItemDtoBeta The recommended access item that was requested for an identity.
50556
50642
  * @param {*} [axiosOptions] Override http request option.
50557
50643
  * @throws {RequiredError}
@@ -50564,7 +50650,7 @@ export const IAIAccessRequestRecommendationsBetaApiFp = function(configuration?:
50564
50650
  },
50565
50651
  /**
50566
50652
  * This API consumes a notification that a recommended access request item was viewed. Future recommendations with this item will be marked with viewed=true. This can be useful for the consumer to determine if there are any new/unviewed recommendations.
50567
- * @summary Notification of Viewed Access Request Recommendations
50653
+ * @summary Mark Viewed Access Request Recommendations
50568
50654
  * @param {AccessRequestRecommendationActionItemDtoBeta} accessRequestRecommendationActionItemDtoBeta The recommended access that was viewed for an identity.
50569
50655
  * @param {*} [axiosOptions] Override http request option.
50570
50656
  * @throws {RequiredError}
@@ -50577,7 +50663,7 @@ export const IAIAccessRequestRecommendationsBetaApiFp = function(configuration?:
50577
50663
  },
50578
50664
  /**
50579
50665
  * This API consumes a notification that a set of recommended access request item were viewed. Future recommendations with these items will be marked with viewed=true. This can be useful for the consumer to determine if there are any new/unviewed recommendations.
50580
- * @summary Notification of Viewed Access Request Recommendations in Bulk
50666
+ * @summary Bulk Mark Viewed Access Request Recommendations
50581
50667
  * @param {Array<AccessRequestRecommendationActionItemDtoBeta>} accessRequestRecommendationActionItemDtoBeta The recommended access items that were viewed for an identity.
50582
50668
  * @param {*} [axiosOptions] Override http request option.
50583
50669
  * @throws {RequiredError}
@@ -50609,7 +50695,7 @@ export const IAIAccessRequestRecommendationsBetaApiFp = function(configuration?:
50609
50695
  },
50610
50696
  /**
50611
50697
  * This API returns the list of ignored access request recommendations.
50612
- * @summary List of Ignored Access Request Recommendations
50698
+ * @summary List Ignored Access Request Recommendations
50613
50699
  * @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.
50614
50700
  * @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.
50615
50701
  * @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.
@@ -50626,7 +50712,7 @@ export const IAIAccessRequestRecommendationsBetaApiFp = function(configuration?:
50626
50712
  },
50627
50713
  /**
50628
50714
  * This API returns a list of requested access request recommendations.
50629
- * @summary List of Requested Access Request Recommendations
50715
+ * @summary List Accepted Access Request Recommendations
50630
50716
  * @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.
50631
50717
  * @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.
50632
50718
  * @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.
@@ -50643,7 +50729,7 @@ export const IAIAccessRequestRecommendationsBetaApiFp = function(configuration?:
50643
50729
  },
50644
50730
  /**
50645
50731
  * This API returns the list of viewed access request recommendations.
50646
- * @summary List of Viewed Access Request Recommendations
50732
+ * @summary List Viewed Access Request Recommendations
50647
50733
  * @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.
50648
50734
  * @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.
50649
50735
  * @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.
@@ -50670,7 +50756,7 @@ export const IAIAccessRequestRecommendationsBetaApiFactory = function (configura
50670
50756
  return {
50671
50757
  /**
50672
50758
  * This API ignores a recommended access request item. Once an item is ignored, it will be marked as ignored=true if it is still a recommended item. The consumer can decide to hide ignored recommendations.
50673
- * @summary Notification of Ignored Access Request Recommendations
50759
+ * @summary Ignore Access Request Recommendation
50674
50760
  * @param {IAIAccessRequestRecommendationsBetaApiAddAccessRequestRecommendationsIgnoredItemRequest} requestParameters Request parameters.
50675
50761
  * @param {*} [axiosOptions] Override http request option.
50676
50762
  * @throws {RequiredError}
@@ -50680,7 +50766,7 @@ export const IAIAccessRequestRecommendationsBetaApiFactory = function (configura
50680
50766
  },
50681
50767
  /**
50682
50768
  * This API consumes a notification that a recommended access request item was requested. This API does not actually make the request, it is just a notification. This will help provide feedback in order to improve our recommendations.
50683
- * @summary Notification of Requested Access Request Recommendations
50769
+ * @summary Accept Access Request Recommendation
50684
50770
  * @param {IAIAccessRequestRecommendationsBetaApiAddAccessRequestRecommendationsRequestedItemRequest} requestParameters Request parameters.
50685
50771
  * @param {*} [axiosOptions] Override http request option.
50686
50772
  * @throws {RequiredError}
@@ -50690,7 +50776,7 @@ export const IAIAccessRequestRecommendationsBetaApiFactory = function (configura
50690
50776
  },
50691
50777
  /**
50692
50778
  * This API consumes a notification that a recommended access request item was viewed. Future recommendations with this item will be marked with viewed=true. This can be useful for the consumer to determine if there are any new/unviewed recommendations.
50693
- * @summary Notification of Viewed Access Request Recommendations
50779
+ * @summary Mark Viewed Access Request Recommendations
50694
50780
  * @param {IAIAccessRequestRecommendationsBetaApiAddAccessRequestRecommendationsViewedItemRequest} requestParameters Request parameters.
50695
50781
  * @param {*} [axiosOptions] Override http request option.
50696
50782
  * @throws {RequiredError}
@@ -50700,7 +50786,7 @@ export const IAIAccessRequestRecommendationsBetaApiFactory = function (configura
50700
50786
  },
50701
50787
  /**
50702
50788
  * This API consumes a notification that a set of recommended access request item were viewed. Future recommendations with these items will be marked with viewed=true. This can be useful for the consumer to determine if there are any new/unviewed recommendations.
50703
- * @summary Notification of Viewed Access Request Recommendations in Bulk
50789
+ * @summary Bulk Mark Viewed Access Request Recommendations
50704
50790
  * @param {IAIAccessRequestRecommendationsBetaApiAddAccessRequestRecommendationsViewedItemsRequest} requestParameters Request parameters.
50705
50791
  * @param {*} [axiosOptions] Override http request option.
50706
50792
  * @throws {RequiredError}
@@ -50720,7 +50806,7 @@ export const IAIAccessRequestRecommendationsBetaApiFactory = function (configura
50720
50806
  },
50721
50807
  /**
50722
50808
  * This API returns the list of ignored access request recommendations.
50723
- * @summary List of Ignored Access Request Recommendations
50809
+ * @summary List Ignored Access Request Recommendations
50724
50810
  * @param {IAIAccessRequestRecommendationsBetaApiGetAccessRequestRecommendationsIgnoredItemsRequest} requestParameters Request parameters.
50725
50811
  * @param {*} [axiosOptions] Override http request option.
50726
50812
  * @throws {RequiredError}
@@ -50730,7 +50816,7 @@ export const IAIAccessRequestRecommendationsBetaApiFactory = function (configura
50730
50816
  },
50731
50817
  /**
50732
50818
  * This API returns a list of requested access request recommendations.
50733
- * @summary List of Requested Access Request Recommendations
50819
+ * @summary List Accepted Access Request Recommendations
50734
50820
  * @param {IAIAccessRequestRecommendationsBetaApiGetAccessRequestRecommendationsRequestedItemsRequest} requestParameters Request parameters.
50735
50821
  * @param {*} [axiosOptions] Override http request option.
50736
50822
  * @throws {RequiredError}
@@ -50740,7 +50826,7 @@ export const IAIAccessRequestRecommendationsBetaApiFactory = function (configura
50740
50826
  },
50741
50827
  /**
50742
50828
  * This API returns the list of viewed access request recommendations.
50743
- * @summary List of Viewed Access Request Recommendations
50829
+ * @summary List Viewed Access Request Recommendations
50744
50830
  * @param {IAIAccessRequestRecommendationsBetaApiGetAccessRequestRecommendationsViewedItemsRequest} requestParameters Request parameters.
50745
50831
  * @param {*} [axiosOptions] Override http request option.
50746
50832
  * @throws {RequiredError}
@@ -50998,7 +51084,7 @@ export interface IAIAccessRequestRecommendationsBetaApiGetAccessRequestRecommend
50998
51084
  export class IAIAccessRequestRecommendationsBetaApi extends BaseAPI {
50999
51085
  /**
51000
51086
  * This API ignores a recommended access request item. Once an item is ignored, it will be marked as ignored=true if it is still a recommended item. The consumer can decide to hide ignored recommendations.
51001
- * @summary Notification of Ignored Access Request Recommendations
51087
+ * @summary Ignore Access Request Recommendation
51002
51088
  * @param {IAIAccessRequestRecommendationsBetaApiAddAccessRequestRecommendationsIgnoredItemRequest} requestParameters Request parameters.
51003
51089
  * @param {*} [axiosOptions] Override http request option.
51004
51090
  * @throws {RequiredError}
@@ -51010,7 +51096,7 @@ export class IAIAccessRequestRecommendationsBetaApi extends BaseAPI {
51010
51096
 
51011
51097
  /**
51012
51098
  * This API consumes a notification that a recommended access request item was requested. This API does not actually make the request, it is just a notification. This will help provide feedback in order to improve our recommendations.
51013
- * @summary Notification of Requested Access Request Recommendations
51099
+ * @summary Accept Access Request Recommendation
51014
51100
  * @param {IAIAccessRequestRecommendationsBetaApiAddAccessRequestRecommendationsRequestedItemRequest} requestParameters Request parameters.
51015
51101
  * @param {*} [axiosOptions] Override http request option.
51016
51102
  * @throws {RequiredError}
@@ -51022,7 +51108,7 @@ export class IAIAccessRequestRecommendationsBetaApi extends BaseAPI {
51022
51108
 
51023
51109
  /**
51024
51110
  * This API consumes a notification that a recommended access request item was viewed. Future recommendations with this item will be marked with viewed=true. This can be useful for the consumer to determine if there are any new/unviewed recommendations.
51025
- * @summary Notification of Viewed Access Request Recommendations
51111
+ * @summary Mark Viewed Access Request Recommendations
51026
51112
  * @param {IAIAccessRequestRecommendationsBetaApiAddAccessRequestRecommendationsViewedItemRequest} requestParameters Request parameters.
51027
51113
  * @param {*} [axiosOptions] Override http request option.
51028
51114
  * @throws {RequiredError}
@@ -51034,7 +51120,7 @@ export class IAIAccessRequestRecommendationsBetaApi extends BaseAPI {
51034
51120
 
51035
51121
  /**
51036
51122
  * This API consumes a notification that a set of recommended access request item were viewed. Future recommendations with these items will be marked with viewed=true. This can be useful for the consumer to determine if there are any new/unviewed recommendations.
51037
- * @summary Notification of Viewed Access Request Recommendations in Bulk
51123
+ * @summary Bulk Mark Viewed Access Request Recommendations
51038
51124
  * @param {IAIAccessRequestRecommendationsBetaApiAddAccessRequestRecommendationsViewedItemsRequest} requestParameters Request parameters.
51039
51125
  * @param {*} [axiosOptions] Override http request option.
51040
51126
  * @throws {RequiredError}
@@ -51058,7 +51144,7 @@ export class IAIAccessRequestRecommendationsBetaApi extends BaseAPI {
51058
51144
 
51059
51145
  /**
51060
51146
  * This API returns the list of ignored access request recommendations.
51061
- * @summary List of Ignored Access Request Recommendations
51147
+ * @summary List Ignored Access Request Recommendations
51062
51148
  * @param {IAIAccessRequestRecommendationsBetaApiGetAccessRequestRecommendationsIgnoredItemsRequest} requestParameters Request parameters.
51063
51149
  * @param {*} [axiosOptions] Override http request option.
51064
51150
  * @throws {RequiredError}
@@ -51070,7 +51156,7 @@ export class IAIAccessRequestRecommendationsBetaApi extends BaseAPI {
51070
51156
 
51071
51157
  /**
51072
51158
  * This API returns a list of requested access request recommendations.
51073
- * @summary List of Requested Access Request Recommendations
51159
+ * @summary List Accepted Access Request Recommendations
51074
51160
  * @param {IAIAccessRequestRecommendationsBetaApiGetAccessRequestRecommendationsRequestedItemsRequest} requestParameters Request parameters.
51075
51161
  * @param {*} [axiosOptions] Override http request option.
51076
51162
  * @throws {RequiredError}
@@ -51082,7 +51168,7 @@ export class IAIAccessRequestRecommendationsBetaApi extends BaseAPI {
51082
51168
 
51083
51169
  /**
51084
51170
  * This API returns the list of viewed access request recommendations.
51085
- * @summary List of Viewed Access Request Recommendations
51171
+ * @summary List Viewed Access Request Recommendations
51086
51172
  * @param {IAIAccessRequestRecommendationsBetaApiGetAccessRequestRecommendationsViewedItemsRequest} requestParameters Request parameters.
51087
51173
  * @param {*} [axiosOptions] Override http request option.
51088
51174
  * @throws {RequiredError}
@@ -52995,7 +53081,7 @@ export const IAIRecommendationsBetaApiAxiosParamCreator = function (configuratio
52995
53081
  return {
52996
53082
  /**
52997
53083
  * The getRecommendations API returns recommendations based on the requested object. The recommendations are invoked by IdentityIQ and IdentityNow plug-ins that retrieve recommendations based on the performed calculations.
52998
- * @summary Returns a Recommendation Based on Object
53084
+ * @summary Returns Recommendation Based on Object
52999
53085
  * @param {RecommendationRequestDtoBeta} recommendationRequestDtoBeta
53000
53086
  * @param {*} [axiosOptions] Override http request option.
53001
53087
  * @throws {RequiredError}
@@ -53131,7 +53217,7 @@ export const IAIRecommendationsBetaApiFp = function(configuration?: Configuratio
53131
53217
  return {
53132
53218
  /**
53133
53219
  * The getRecommendations API returns recommendations based on the requested object. The recommendations are invoked by IdentityIQ and IdentityNow plug-ins that retrieve recommendations based on the performed calculations.
53134
- * @summary Returns a Recommendation Based on Object
53220
+ * @summary Returns Recommendation Based on Object
53135
53221
  * @param {RecommendationRequestDtoBeta} recommendationRequestDtoBeta
53136
53222
  * @param {*} [axiosOptions] Override http request option.
53137
53223
  * @throws {RequiredError}
@@ -53179,7 +53265,7 @@ export const IAIRecommendationsBetaApiFactory = function (configuration?: Config
53179
53265
  return {
53180
53266
  /**
53181
53267
  * The getRecommendations API returns recommendations based on the requested object. The recommendations are invoked by IdentityIQ and IdentityNow plug-ins that retrieve recommendations based on the performed calculations.
53182
- * @summary Returns a Recommendation Based on Object
53268
+ * @summary Returns Recommendation Based on Object
53183
53269
  * @param {IAIRecommendationsBetaApiGetRecommendationsRequest} requestParameters Request parameters.
53184
53270
  * @param {*} [axiosOptions] Override http request option.
53185
53271
  * @throws {RequiredError}
@@ -53246,7 +53332,7 @@ export interface IAIRecommendationsBetaApiUpdateRecommendationsConfigRequest {
53246
53332
  export class IAIRecommendationsBetaApi extends BaseAPI {
53247
53333
  /**
53248
53334
  * The getRecommendations API returns recommendations based on the requested object. The recommendations are invoked by IdentityIQ and IdentityNow plug-ins that retrieve recommendations based on the performed calculations.
53249
- * @summary Returns a Recommendation Based on Object
53335
+ * @summary Returns Recommendation Based on Object
53250
53336
  * @param {IAIRecommendationsBetaApiGetRecommendationsRequest} requestParameters Request parameters.
53251
53337
  * @param {*} [axiosOptions] Override http request option.
53252
53338
  * @throws {RequiredError}
@@ -74030,12 +74116,12 @@ export class PublicIdentitiesConfigBetaApi extends BaseAPI {
74030
74116
  export const RequestableObjectsBetaApiAxiosParamCreator = function (configuration?: Configuration) {
74031
74117
  return {
74032
74118
  /**
74033
- * This endpoint returns a list of acccess items that that can be requested through the Access Request endpoints. Access items are marked with AVAILABLE, PENDING or ASSIGNED with respect to the identity provided using *identity-id* query param. Any authenticated token can call this endpoint to see their requestable access items.
74119
+ * Get a list of acccess items that can be requested through the [Access Request endpoints](https://developer.sailpoint.com/docs/api/v3/access-requests). Access items are marked with `AVAILABLE`, `PENDING` or `ASSIGNED` with respect to the identity provided using `identity-id` query parameter. Any authenticated token can call this endpoint to see their requestable access items.
74034
74120
  * @summary Requestable Objects List
74035
74121
  * @param {string} [identityId] If present, the value returns only requestable objects for the specified identity. * Admin users can call this with any identity ID value. * Non-admin users can only specify *me* or pass their own identity ID value. * If absent, returns a list of all requestable objects for the tenant. Only admin users can make such a call. In this case, the available, pending, assigned accesses will not be annotated in the result.
74036
- * @param {Array<RequestableObjectTypeBeta>} [types] Filters the results to the specified type/types, where each type is one of ROLE or ACCESS_PROFILE. If absent, all types are returned. Support for additional types may be added in the future without notice.
74037
- * @param {string} [term] It allows searching requestable access items with a partial match on the name or description. If term is provided, then the *filter* query parameter will be ignored.
74038
- * @param {Array<RequestableObjectRequestStatusBeta>} [statuses] Filters the result to the specified status/statuses, where each status is one of AVAILABLE, ASSIGNED, or PENDING. It is an error to specify this parameter without also specifying an *identity-id* parameter. Additional statuses may be added in the future without notice.
74122
+ * @param {Array<RequestableObjectTypeBeta>} [types] Filters the results to the specified type/types, where each type is one of &#x60;ROLE&#x60; or &#x60;ACCESS_PROFILE&#x60;. If absent, all types are returned. SailPoint may add support for additional types in the future without notice.
74123
+ * @param {string} [term] Allows searching requestable access items with a partial match on the name or description. If &#x60;term&#x60; is provided, then the API will ignore the &#x60;filter&#x60; query parameter.
74124
+ * @param {Array<RequestableObjectRequestStatusBeta>} [statuses] Filters the result to the specified status/statuses, where each status is one of &#x60;AVAILABLE&#x60;, &#x60;ASSIGNED&#x60;, or &#x60;PENDING&#x60;. Specifying this parameter without also specifying an &#x60;identity-id&#x60; parameter results in an error. SailPoint may add additional statuses in the future without notice.
74039
74125
  * @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.
74040
74126
  * @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.
74041
74127
  * @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.
@@ -74123,12 +74209,12 @@ export const RequestableObjectsBetaApiFp = function(configuration?: Configuratio
74123
74209
  const localVarAxiosParamCreator = RequestableObjectsBetaApiAxiosParamCreator(configuration)
74124
74210
  return {
74125
74211
  /**
74126
- * This endpoint returns a list of acccess items that that can be requested through the Access Request endpoints. Access items are marked with AVAILABLE, PENDING or ASSIGNED with respect to the identity provided using *identity-id* query param. Any authenticated token can call this endpoint to see their requestable access items.
74212
+ * Get a list of acccess items that can be requested through the [Access Request endpoints](https://developer.sailpoint.com/docs/api/v3/access-requests). Access items are marked with `AVAILABLE`, `PENDING` or `ASSIGNED` with respect to the identity provided using `identity-id` query parameter. Any authenticated token can call this endpoint to see their requestable access items.
74127
74213
  * @summary Requestable Objects List
74128
74214
  * @param {string} [identityId] If present, the value returns only requestable objects for the specified identity. * Admin users can call this with any identity ID value. * Non-admin users can only specify *me* or pass their own identity ID value. * If absent, returns a list of all requestable objects for the tenant. Only admin users can make such a call. In this case, the available, pending, assigned accesses will not be annotated in the result.
74129
- * @param {Array<RequestableObjectTypeBeta>} [types] Filters the results to the specified type/types, where each type is one of ROLE or ACCESS_PROFILE. If absent, all types are returned. Support for additional types may be added in the future without notice.
74130
- * @param {string} [term] It allows searching requestable access items with a partial match on the name or description. If term is provided, then the *filter* query parameter will be ignored.
74131
- * @param {Array<RequestableObjectRequestStatusBeta>} [statuses] Filters the result to the specified status/statuses, where each status is one of AVAILABLE, ASSIGNED, or PENDING. It is an error to specify this parameter without also specifying an *identity-id* parameter. Additional statuses may be added in the future without notice.
74215
+ * @param {Array<RequestableObjectTypeBeta>} [types] Filters the results to the specified type/types, where each type is one of &#x60;ROLE&#x60; or &#x60;ACCESS_PROFILE&#x60;. If absent, all types are returned. SailPoint may add support for additional types in the future without notice.
74216
+ * @param {string} [term] Allows searching requestable access items with a partial match on the name or description. If &#x60;term&#x60; is provided, then the API will ignore the &#x60;filter&#x60; query parameter.
74217
+ * @param {Array<RequestableObjectRequestStatusBeta>} [statuses] Filters the result to the specified status/statuses, where each status is one of &#x60;AVAILABLE&#x60;, &#x60;ASSIGNED&#x60;, or &#x60;PENDING&#x60;. Specifying this parameter without also specifying an &#x60;identity-id&#x60; parameter results in an error. SailPoint may add additional statuses in the future without notice.
74132
74218
  * @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.
74133
74219
  * @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.
74134
74220
  * @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.
@@ -74154,7 +74240,7 @@ export const RequestableObjectsBetaApiFactory = function (configuration?: Config
74154
74240
  const localVarFp = RequestableObjectsBetaApiFp(configuration)
74155
74241
  return {
74156
74242
  /**
74157
- * This endpoint returns a list of acccess items that that can be requested through the Access Request endpoints. Access items are marked with AVAILABLE, PENDING or ASSIGNED with respect to the identity provided using *identity-id* query param. Any authenticated token can call this endpoint to see their requestable access items.
74243
+ * Get a list of acccess items that can be requested through the [Access Request endpoints](https://developer.sailpoint.com/docs/api/v3/access-requests). Access items are marked with `AVAILABLE`, `PENDING` or `ASSIGNED` with respect to the identity provided using `identity-id` query parameter. Any authenticated token can call this endpoint to see their requestable access items.
74158
74244
  * @summary Requestable Objects List
74159
74245
  * @param {RequestableObjectsBetaApiListRequestableObjectsRequest} requestParameters Request parameters.
74160
74246
  * @param {*} [axiosOptions] Override http request option.
@@ -74180,21 +74266,21 @@ export interface RequestableObjectsBetaApiListRequestableObjectsRequest {
74180
74266
  readonly identityId?: string
74181
74267
 
74182
74268
  /**
74183
- * Filters the results to the specified type/types, where each type is one of ROLE or ACCESS_PROFILE. If absent, all types are returned. Support for additional types may be added in the future without notice.
74269
+ * Filters the results to the specified type/types, where each type is one of &#x60;ROLE&#x60; or &#x60;ACCESS_PROFILE&#x60;. If absent, all types are returned. SailPoint may add support for additional types in the future without notice.
74184
74270
  * @type {Array<RequestableObjectTypeBeta>}
74185
74271
  * @memberof RequestableObjectsBetaApiListRequestableObjects
74186
74272
  */
74187
74273
  readonly types?: Array<RequestableObjectTypeBeta>
74188
74274
 
74189
74275
  /**
74190
- * It allows searching requestable access items with a partial match on the name or description. If term is provided, then the *filter* query parameter will be ignored.
74276
+ * Allows searching requestable access items with a partial match on the name or description. If &#x60;term&#x60; is provided, then the API will ignore the &#x60;filter&#x60; query parameter.
74191
74277
  * @type {string}
74192
74278
  * @memberof RequestableObjectsBetaApiListRequestableObjects
74193
74279
  */
74194
74280
  readonly term?: string
74195
74281
 
74196
74282
  /**
74197
- * Filters the result to the specified status/statuses, where each status is one of AVAILABLE, ASSIGNED, or PENDING. It is an error to specify this parameter without also specifying an *identity-id* parameter. Additional statuses may be added in the future without notice.
74283
+ * Filters the result to the specified status/statuses, where each status is one of &#x60;AVAILABLE&#x60;, &#x60;ASSIGNED&#x60;, or &#x60;PENDING&#x60;. Specifying this parameter without also specifying an &#x60;identity-id&#x60; parameter results in an error. SailPoint may add additional statuses in the future without notice.
74198
74284
  * @type {Array<RequestableObjectRequestStatusBeta>}
74199
74285
  * @memberof RequestableObjectsBetaApiListRequestableObjects
74200
74286
  */
@@ -74244,7 +74330,7 @@ export interface RequestableObjectsBetaApiListRequestableObjectsRequest {
74244
74330
  */
74245
74331
  export class RequestableObjectsBetaApi extends BaseAPI {
74246
74332
  /**
74247
- * This endpoint returns a list of acccess items that that can be requested through the Access Request endpoints. Access items are marked with AVAILABLE, PENDING or ASSIGNED with respect to the identity provided using *identity-id* query param. Any authenticated token can call this endpoint to see their requestable access items.
74333
+ * Get a list of acccess items that can be requested through the [Access Request endpoints](https://developer.sailpoint.com/docs/api/v3/access-requests). Access items are marked with `AVAILABLE`, `PENDING` or `ASSIGNED` with respect to the identity provided using `identity-id` query parameter. Any authenticated token can call this endpoint to see their requestable access items.
74248
74334
  * @summary Requestable Objects List
74249
74335
  * @param {RequestableObjectsBetaApiListRequestableObjectsRequest} requestParameters Request parameters.
74250
74336
  * @param {*} [axiosOptions] Override http request option.
@@ -75536,10 +75622,10 @@ export const RolesBetaApiAxiosParamCreator = function (configuration?: Configura
75536
75622
  };
75537
75623
  },
75538
75624
  /**
75539
- * This API lists the Entitlements associated with a given role. A token with API, ORG_ADMIN, ROLE_ADMIN, or ROLE_SUBADMIN authority is required to call this API.
75540
- * @summary List role\'s Entitlements
75541
- * @param {string} id ID of the containing role
75542
- * @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.
75625
+ * Get a list of entitlements associated with a specified role.
75626
+ * @summary List Role\'s Entitlements
75627
+ * @param {string} id Containing role\&#39;s ID.
75628
+ * @param {number} [limit] Note that for this API the maximum value for limit is 50. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
75543
75629
  * @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.
75544
75630
  * @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.
75545
75631
  * @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, sw* **attribute**: *eq, sw* **value**: *eq, sw* **created**: *gt, lt, ge, le* **modified**: *gt, lt, ge, le* **owner.id**: *eq, in* **source.id**: *eq, in*
@@ -75571,6 +75657,10 @@ export const RolesBetaApiAxiosParamCreator = function (configuration?: Configura
75571
75657
  // oauth required
75572
75658
  await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
75573
75659
 
75660
+ // authentication applicationAuth required
75661
+ // oauth required
75662
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
75663
+
75574
75664
  if (limit !== undefined) {
75575
75665
  localVarQueryParameter['limit'] = limit;
75576
75666
  }
@@ -75809,10 +75899,10 @@ export const RolesBetaApiFp = function(configuration?: Configuration) {
75809
75899
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
75810
75900
  },
75811
75901
  /**
75812
- * This API lists the Entitlements associated with a given role. A token with API, ORG_ADMIN, ROLE_ADMIN, or ROLE_SUBADMIN authority is required to call this API.
75813
- * @summary List role\'s Entitlements
75814
- * @param {string} id ID of the containing role
75815
- * @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.
75902
+ * Get a list of entitlements associated with a specified role.
75903
+ * @summary List Role\'s Entitlements
75904
+ * @param {string} id Containing role\&#39;s ID.
75905
+ * @param {number} [limit] Note that for this API the maximum value for limit is 50. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
75816
75906
  * @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.
75817
75907
  * @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.
75818
75908
  * @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, sw* **attribute**: *eq, sw* **value**: *eq, sw* **created**: *gt, lt, ge, le* **modified**: *gt, lt, ge, le* **owner.id**: *eq, in* **source.id**: *eq, in*
@@ -75921,8 +76011,8 @@ export const RolesBetaApiFactory = function (configuration?: Configuration, base
75921
76011
  return localVarFp.getRoleAssignedIdentities(requestParameters.id, requestParameters.limit, requestParameters.offset, requestParameters.count, requestParameters.filters, requestParameters.sorters, axiosOptions).then((request) => request(axios, basePath));
75922
76012
  },
75923
76013
  /**
75924
- * This API lists the Entitlements associated with a given role. A token with API, ORG_ADMIN, ROLE_ADMIN, or ROLE_SUBADMIN authority is required to call this API.
75925
- * @summary List role\'s Entitlements
76014
+ * Get a list of entitlements associated with a specified role.
76015
+ * @summary List Role\'s Entitlements
75926
76016
  * @param {RolesBetaApiGetRoleEntitlementsRequest} requestParameters Request parameters.
75927
76017
  * @param {*} [axiosOptions] Override http request option.
75928
76018
  * @throws {RequiredError}
@@ -76065,14 +76155,14 @@ export interface RolesBetaApiGetRoleAssignedIdentitiesRequest {
76065
76155
  */
76066
76156
  export interface RolesBetaApiGetRoleEntitlementsRequest {
76067
76157
  /**
76068
- * ID of the containing role
76158
+ * Containing role\&#39;s ID.
76069
76159
  * @type {string}
76070
76160
  * @memberof RolesBetaApiGetRoleEntitlements
76071
76161
  */
76072
76162
  readonly id: string
76073
76163
 
76074
76164
  /**
76075
- * Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
76165
+ * Note that for this API the maximum value for limit is 50. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
76076
76166
  * @type {number}
76077
76167
  * @memberof RolesBetaApiGetRoleEntitlements
76078
76168
  */
@@ -76259,8 +76349,8 @@ export class RolesBetaApi extends BaseAPI {
76259
76349
  }
76260
76350
 
76261
76351
  /**
76262
- * This API lists the Entitlements associated with a given role. A token with API, ORG_ADMIN, ROLE_ADMIN, or ROLE_SUBADMIN authority is required to call this API.
76263
- * @summary List role\'s Entitlements
76352
+ * Get a list of entitlements associated with a specified role.
76353
+ * @summary List Role\'s Entitlements
76264
76354
  * @param {RolesBetaApiGetRoleEntitlementsRequest} requestParameters Request parameters.
76265
76355
  * @param {*} [axiosOptions] Override http request option.
76266
76356
  * @throws {RequiredError}
@@ -79489,7 +79579,7 @@ export class SPConfigBetaApi extends BaseAPI {
79489
79579
  export const SearchAttributeConfigurationBetaApiAxiosParamCreator = function (configuration?: Configuration) {
79490
79580
  return {
79491
79581
  /**
79492
- * Create and configure extended search attributes. This API accepts an attribute name, an attribute display name and a list of name/value pair associates of application IDs to attribute names. It will then validate the inputs and configure/create and attribute promotion configuration in the Link ObjectConfig. A token with ORG_ADMIN authority is required to call this API.
79582
+ * Create and configure extended search attributes. This API accepts an attribute name, an attribute display name and a list of name/value pair associates of application IDs to attribute names. It will then validate the inputs and configure/create the attribute promotion configuration in the Link ObjectConfig. >**Note: Give searchable attributes unique names. Do not give them the same names used for account attributes or source attributes. Also, do not give them the same names present in account schema for a current or future source, regardless of whether that source is included in the searchable attributes\' `applicationAttributes`.**
79493
79583
  * @summary Create Extended Search Attributes
79494
79584
  * @param {SearchAttributeConfigBeta} searchAttributeConfigBeta
79495
79585
  * @param {*} [axiosOptions] Override http request option.
@@ -79512,11 +79602,11 @@ export const SearchAttributeConfigurationBetaApiAxiosParamCreator = function (co
79512
79602
 
79513
79603
  // authentication userAuth required
79514
79604
  // oauth required
79515
- await setOAuthToObject(localVarHeaderParameter, "userAuth", ["sp:scopes:all"], configuration)
79605
+ await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
79516
79606
 
79517
79607
  // authentication userAuth required
79518
79608
  // oauth required
79519
- await setOAuthToObject(localVarHeaderParameter, "userAuth", ["sp:scopes:all"], configuration)
79609
+ await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
79520
79610
 
79521
79611
 
79522
79612
 
@@ -79575,12 +79665,14 @@ export const SearchAttributeConfigurationBetaApiAxiosParamCreator = function (co
79575
79665
  };
79576
79666
  },
79577
79667
  /**
79578
- * Get a list of attribute/application associates currently configured in Identity Security Cloud (ISC). A token with ORG_ADMIN authority is required to call this API.
79668
+ * Get a list of attribute/application attributes currently configured in Identity Security Cloud (ISC). A token with ORG_ADMIN authority is required to call this API.
79579
79669
  * @summary List Extended Search Attributes
79670
+ * @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.
79671
+ * @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.
79580
79672
  * @param {*} [axiosOptions] Override http request option.
79581
79673
  * @throws {RequiredError}
79582
79674
  */
79583
- getSearchAttributeConfig: async (axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
79675
+ getSearchAttributeConfig: async (limit?: number, offset?: number, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
79584
79676
  const localVarPath = `/accounts/search-attribute-config`;
79585
79677
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
79586
79678
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
@@ -79595,11 +79687,19 @@ export const SearchAttributeConfigurationBetaApiAxiosParamCreator = function (co
79595
79687
 
79596
79688
  // authentication userAuth required
79597
79689
  // oauth required
79598
- await setOAuthToObject(localVarHeaderParameter, "userAuth", ["sp:scopes:all"], configuration)
79690
+ await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
79599
79691
 
79600
79692
  // authentication userAuth required
79601
79693
  // oauth required
79602
- await setOAuthToObject(localVarHeaderParameter, "userAuth", ["sp:scopes:all"], configuration)
79694
+ await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
79695
+
79696
+ if (limit !== undefined) {
79697
+ localVarQueryParameter['limit'] = limit;
79698
+ }
79699
+
79700
+ if (offset !== undefined) {
79701
+ localVarQueryParameter['offset'] = offset;
79702
+ }
79603
79703
 
79604
79704
 
79605
79705
 
@@ -79713,7 +79813,7 @@ export const SearchAttributeConfigurationBetaApiFp = function(configuration?: Co
79713
79813
  const localVarAxiosParamCreator = SearchAttributeConfigurationBetaApiAxiosParamCreator(configuration)
79714
79814
  return {
79715
79815
  /**
79716
- * Create and configure extended search attributes. This API accepts an attribute name, an attribute display name and a list of name/value pair associates of application IDs to attribute names. It will then validate the inputs and configure/create and attribute promotion configuration in the Link ObjectConfig. A token with ORG_ADMIN authority is required to call this API.
79816
+ * Create and configure extended search attributes. This API accepts an attribute name, an attribute display name and a list of name/value pair associates of application IDs to attribute names. It will then validate the inputs and configure/create the attribute promotion configuration in the Link ObjectConfig. >**Note: Give searchable attributes unique names. Do not give them the same names used for account attributes or source attributes. Also, do not give them the same names present in account schema for a current or future source, regardless of whether that source is included in the searchable attributes\' `applicationAttributes`.**
79717
79817
  * @summary Create Extended Search Attributes
79718
79818
  * @param {SearchAttributeConfigBeta} searchAttributeConfigBeta
79719
79819
  * @param {*} [axiosOptions] Override http request option.
@@ -79739,13 +79839,15 @@ export const SearchAttributeConfigurationBetaApiFp = function(configuration?: Co
79739
79839
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
79740
79840
  },
79741
79841
  /**
79742
- * Get a list of attribute/application associates currently configured in Identity Security Cloud (ISC). A token with ORG_ADMIN authority is required to call this API.
79842
+ * Get a list of attribute/application attributes currently configured in Identity Security Cloud (ISC). A token with ORG_ADMIN authority is required to call this API.
79743
79843
  * @summary List Extended Search Attributes
79844
+ * @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.
79845
+ * @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.
79744
79846
  * @param {*} [axiosOptions] Override http request option.
79745
79847
  * @throws {RequiredError}
79746
79848
  */
79747
- async getSearchAttributeConfig(axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<SearchAttributeConfigBeta>>> {
79748
- const localVarAxiosArgs = await localVarAxiosParamCreator.getSearchAttributeConfig(axiosOptions);
79849
+ async getSearchAttributeConfig(limit?: number, offset?: number, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<SearchAttributeConfigBeta>>> {
79850
+ const localVarAxiosArgs = await localVarAxiosParamCreator.getSearchAttributeConfig(limit, offset, axiosOptions);
79749
79851
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
79750
79852
  const localVarOperationServerBasePath = operationServerMap['SearchAttributeConfigurationBetaApi.getSearchAttributeConfig']?.[localVarOperationServerIndex]?.url;
79751
79853
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
@@ -79788,7 +79890,7 @@ export const SearchAttributeConfigurationBetaApiFactory = function (configuratio
79788
79890
  const localVarFp = SearchAttributeConfigurationBetaApiFp(configuration)
79789
79891
  return {
79790
79892
  /**
79791
- * Create and configure extended search attributes. This API accepts an attribute name, an attribute display name and a list of name/value pair associates of application IDs to attribute names. It will then validate the inputs and configure/create and attribute promotion configuration in the Link ObjectConfig. A token with ORG_ADMIN authority is required to call this API.
79893
+ * Create and configure extended search attributes. This API accepts an attribute name, an attribute display name and a list of name/value pair associates of application IDs to attribute names. It will then validate the inputs and configure/create the attribute promotion configuration in the Link ObjectConfig. >**Note: Give searchable attributes unique names. Do not give them the same names used for account attributes or source attributes. Also, do not give them the same names present in account schema for a current or future source, regardless of whether that source is included in the searchable attributes\' `applicationAttributes`.**
79792
79894
  * @summary Create Extended Search Attributes
79793
79895
  * @param {SearchAttributeConfigurationBetaApiCreateSearchAttributeConfigRequest} requestParameters Request parameters.
79794
79896
  * @param {*} [axiosOptions] Override http request option.
@@ -79808,13 +79910,14 @@ export const SearchAttributeConfigurationBetaApiFactory = function (configuratio
79808
79910
  return localVarFp.deleteSearchAttributeConfig(requestParameters.name, axiosOptions).then((request) => request(axios, basePath));
79809
79911
  },
79810
79912
  /**
79811
- * Get a list of attribute/application associates currently configured in Identity Security Cloud (ISC). A token with ORG_ADMIN authority is required to call this API.
79913
+ * Get a list of attribute/application attributes currently configured in Identity Security Cloud (ISC). A token with ORG_ADMIN authority is required to call this API.
79812
79914
  * @summary List Extended Search Attributes
79915
+ * @param {SearchAttributeConfigurationBetaApiGetSearchAttributeConfigRequest} requestParameters Request parameters.
79813
79916
  * @param {*} [axiosOptions] Override http request option.
79814
79917
  * @throws {RequiredError}
79815
79918
  */
79816
- getSearchAttributeConfig(axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<SearchAttributeConfigBeta>> {
79817
- return localVarFp.getSearchAttributeConfig(axiosOptions).then((request) => request(axios, basePath));
79919
+ getSearchAttributeConfig(requestParameters: SearchAttributeConfigurationBetaApiGetSearchAttributeConfigRequest = {}, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<SearchAttributeConfigBeta>> {
79920
+ return localVarFp.getSearchAttributeConfig(requestParameters.limit, requestParameters.offset, axiosOptions).then((request) => request(axios, basePath));
79818
79921
  },
79819
79922
  /**
79820
79923
  * Get an extended attribute configuration by name.
@@ -79867,6 +79970,27 @@ export interface SearchAttributeConfigurationBetaApiDeleteSearchAttributeConfigR
79867
79970
  readonly name: string
79868
79971
  }
79869
79972
 
79973
+ /**
79974
+ * Request parameters for getSearchAttributeConfig operation in SearchAttributeConfigurationBetaApi.
79975
+ * @export
79976
+ * @interface SearchAttributeConfigurationBetaApiGetSearchAttributeConfigRequest
79977
+ */
79978
+ export interface SearchAttributeConfigurationBetaApiGetSearchAttributeConfigRequest {
79979
+ /**
79980
+ * Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
79981
+ * @type {number}
79982
+ * @memberof SearchAttributeConfigurationBetaApiGetSearchAttributeConfig
79983
+ */
79984
+ readonly limit?: number
79985
+
79986
+ /**
79987
+ * 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.
79988
+ * @type {number}
79989
+ * @memberof SearchAttributeConfigurationBetaApiGetSearchAttributeConfig
79990
+ */
79991
+ readonly offset?: number
79992
+ }
79993
+
79870
79994
  /**
79871
79995
  * Request parameters for getSingleSearchAttributeConfig operation in SearchAttributeConfigurationBetaApi.
79872
79996
  * @export
@@ -79910,7 +80034,7 @@ export interface SearchAttributeConfigurationBetaApiPatchSearchAttributeConfigRe
79910
80034
  */
79911
80035
  export class SearchAttributeConfigurationBetaApi extends BaseAPI {
79912
80036
  /**
79913
- * Create and configure extended search attributes. This API accepts an attribute name, an attribute display name and a list of name/value pair associates of application IDs to attribute names. It will then validate the inputs and configure/create and attribute promotion configuration in the Link ObjectConfig. A token with ORG_ADMIN authority is required to call this API.
80037
+ * Create and configure extended search attributes. This API accepts an attribute name, an attribute display name and a list of name/value pair associates of application IDs to attribute names. It will then validate the inputs and configure/create the attribute promotion configuration in the Link ObjectConfig. >**Note: Give searchable attributes unique names. Do not give them the same names used for account attributes or source attributes. Also, do not give them the same names present in account schema for a current or future source, regardless of whether that source is included in the searchable attributes\' `applicationAttributes`.**
79914
80038
  * @summary Create Extended Search Attributes
79915
80039
  * @param {SearchAttributeConfigurationBetaApiCreateSearchAttributeConfigRequest} requestParameters Request parameters.
79916
80040
  * @param {*} [axiosOptions] Override http request option.
@@ -79934,14 +80058,15 @@ export class SearchAttributeConfigurationBetaApi extends BaseAPI {
79934
80058
  }
79935
80059
 
79936
80060
  /**
79937
- * Get a list of attribute/application associates currently configured in Identity Security Cloud (ISC). A token with ORG_ADMIN authority is required to call this API.
80061
+ * Get a list of attribute/application attributes currently configured in Identity Security Cloud (ISC). A token with ORG_ADMIN authority is required to call this API.
79938
80062
  * @summary List Extended Search Attributes
80063
+ * @param {SearchAttributeConfigurationBetaApiGetSearchAttributeConfigRequest} requestParameters Request parameters.
79939
80064
  * @param {*} [axiosOptions] Override http request option.
79940
80065
  * @throws {RequiredError}
79941
80066
  * @memberof SearchAttributeConfigurationBetaApi
79942
80067
  */
79943
- public getSearchAttributeConfig(axiosOptions?: RawAxiosRequestConfig) {
79944
- return SearchAttributeConfigurationBetaApiFp(this.configuration).getSearchAttributeConfig(axiosOptions).then((request) => request(this.axios, this.basePath));
80068
+ public getSearchAttributeConfig(requestParameters: SearchAttributeConfigurationBetaApiGetSearchAttributeConfigRequest = {}, axiosOptions?: RawAxiosRequestConfig) {
80069
+ return SearchAttributeConfigurationBetaApiFp(this.configuration).getSearchAttributeConfig(requestParameters.limit, requestParameters.offset, axiosOptions).then((request) => request(this.axios, this.basePath));
79945
80070
  }
79946
80071
 
79947
80072
  /**