sailpoint-api-client 1.4.14 → 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/README.md +2 -2
- package/beta/api.ts +608 -414
- package/beta/common.ts +3 -3
- package/beta/package.json +1 -1
- package/configuration.ts +5 -1
- package/dist/beta/api.d.ts +538 -382
- package/dist/beta/api.js +222 -139
- package/dist/beta/api.js.map +1 -1
- package/dist/beta/common.js +2 -2
- package/dist/beta/common.js.map +1 -1
- package/dist/configuration.js +6 -2
- package/dist/configuration.js.map +1 -1
- package/dist/v2024/api.d.ts +1872 -1642
- package/dist/v2024/api.js +815 -442
- package/dist/v2024/api.js.map +1 -1
- package/dist/v2024/common.js +2 -2
- package/dist/v2024/common.js.map +1 -1
- package/dist/v3/api.d.ts +492 -168
- package/dist/v3/api.js +117 -69
- package/dist/v3/api.js.map +1 -1
- package/dist/v3/common.js +2 -2
- package/dist/v3/common.js.map +1 -1
- package/package.json +9 -3
- package/v2024/README.md +2 -2
- package/v2024/api.ts +2307 -1902
- package/v2024/common.ts +3 -3
- package/v2024/package.json +1 -1
- package/v3/README.md +2 -2
- package/v3/api.ts +531 -175
- package/v3/common.ts +3 -3
- package/v3/package.json +1 -1
package/beta/api.ts
CHANGED
|
@@ -280,25 +280,25 @@ export interface AccessItemAppResponseBeta {
|
|
|
280
280
|
'appRoleId'?: string;
|
|
281
281
|
}
|
|
282
282
|
/**
|
|
283
|
-
*
|
|
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
|
-
*
|
|
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
|
-
*
|
|
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<
|
|
1450
|
+
* @type {Array<AccessItemRequestedForDto1Beta>}
|
|
1387
1451
|
* @memberof AccessRequestDynamicApproverBeta
|
|
1388
1452
|
*/
|
|
1389
|
-
'requestedFor': Array<
|
|
1453
|
+
'requestedFor': Array<AccessItemRequestedForDto1Beta>;
|
|
1390
1454
|
/**
|
|
1391
|
-
*
|
|
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 {
|
|
1462
|
+
* @type {AccessItemRequesterDto1Beta}
|
|
1399
1463
|
* @memberof AccessRequestDynamicApproverBeta
|
|
1400
1464
|
*/
|
|
1401
|
-
'requestedBy':
|
|
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
|
-
*
|
|
1474
|
+
* Access item\'s unique identifier.
|
|
1411
1475
|
* @type {string}
|
|
1412
1476
|
* @memberof AccessRequestDynamicApproverRequestedItemsInnerBeta
|
|
1413
1477
|
*/
|
|
1414
1478
|
'id': string;
|
|
1415
1479
|
/**
|
|
1416
|
-
*
|
|
1480
|
+
* Access item\'s name.
|
|
1417
1481
|
* @type {string}
|
|
1418
1482
|
* @memberof AccessRequestDynamicApproverRequestedItemsInnerBeta
|
|
1419
1483
|
*/
|
|
1420
1484
|
'name': string;
|
|
1421
1485
|
/**
|
|
1422
|
-
*
|
|
1486
|
+
* Access item\'s extended description.
|
|
1423
1487
|
* @type {string}
|
|
1424
1488
|
* @memberof AccessRequestDynamicApproverRequestedItemsInnerBeta
|
|
1425
1489
|
*/
|
|
1426
1490
|
'description'?: string | null;
|
|
1427
1491
|
/**
|
|
1428
|
-
*
|
|
1492
|
+
* Type of access item being requested.
|
|
1429
1493
|
* @type {object}
|
|
1430
1494
|
* @memberof AccessRequestDynamicApproverRequestedItemsInnerBeta
|
|
1431
1495
|
*/
|
|
1432
1496
|
'type': AccessRequestDynamicApproverRequestedItemsInnerBetaTypeBeta;
|
|
1433
1497
|
/**
|
|
1434
|
-
*
|
|
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
|
-
*
|
|
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
|
-
*
|
|
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<
|
|
1707
|
+
* Identities whom access was requested for.
|
|
1708
|
+
* @type {Array<AccessItemRequestedForDto1Beta>}
|
|
1645
1709
|
* @memberof AccessRequestPostApprovalBeta
|
|
1646
1710
|
*/
|
|
1647
|
-
'requestedFor': Array<
|
|
1711
|
+
'requestedFor': Array<AccessItemRequestedForDto1Beta>;
|
|
1648
1712
|
/**
|
|
1649
|
-
* Details
|
|
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 {
|
|
1720
|
+
* @type {AccessItemRequesterDto1Beta}
|
|
1657
1721
|
* @memberof AccessRequestPostApprovalBeta
|
|
1658
1722
|
*/
|
|
1659
|
-
'requestedBy':
|
|
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
|
-
*
|
|
1732
|
+
* Approver\'s comment.
|
|
1701
1733
|
* @type {string}
|
|
1702
1734
|
* @memberof AccessRequestPostApprovalRequestedItemsStatusInnerApprovalInfoInnerBeta
|
|
1703
1735
|
*/
|
|
1704
1736
|
'approvalComment'?: string | null;
|
|
1705
1737
|
/**
|
|
1706
|
-
*
|
|
1738
|
+
* Approver\'s final decision.
|
|
1707
1739
|
* @type {object}
|
|
1708
1740
|
* @memberof AccessRequestPostApprovalRequestedItemsStatusInnerApprovalInfoInnerBeta
|
|
1709
1741
|
*/
|
|
1710
1742
|
'approvalDecision': AccessRequestPostApprovalRequestedItemsStatusInnerApprovalInfoInnerBetaApprovalDecisionBeta;
|
|
1711
1743
|
/**
|
|
1712
|
-
*
|
|
1744
|
+
* Approver\'s name.
|
|
1713
1745
|
* @type {string}
|
|
1714
1746
|
* @memberof AccessRequestPostApprovalRequestedItemsStatusInnerApprovalInfoInnerBeta
|
|
1715
1747
|
*/
|
|
1716
1748
|
'approverName': string;
|
|
1717
1749
|
/**
|
|
1718
|
-
*
|
|
1719
|
-
* @type {
|
|
1750
|
+
* Approver\'s identity.
|
|
1751
|
+
* @type {AccessItemApproverDtoBeta}
|
|
1720
1752
|
* @memberof AccessRequestPostApprovalRequestedItemsStatusInnerApprovalInfoInnerBeta
|
|
1721
1753
|
*/
|
|
1722
|
-
'approver':
|
|
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
|
-
*
|
|
1771
|
+
* Access item\'s unique ID.
|
|
1740
1772
|
* @type {string}
|
|
1741
1773
|
* @memberof AccessRequestPostApprovalRequestedItemsStatusInnerBeta
|
|
1742
1774
|
*/
|
|
1743
1775
|
'id': string;
|
|
1744
1776
|
/**
|
|
1745
|
-
*
|
|
1777
|
+
* Access item\'s name.
|
|
1746
1778
|
* @type {string}
|
|
1747
1779
|
* @memberof AccessRequestPostApprovalRequestedItemsStatusInnerBeta
|
|
1748
1780
|
*/
|
|
1749
1781
|
'name': string;
|
|
1750
1782
|
/**
|
|
1751
|
-
*
|
|
1783
|
+
* Access item\'s description.
|
|
1752
1784
|
* @type {string}
|
|
1753
1785
|
* @memberof AccessRequestPostApprovalRequestedItemsStatusInnerBeta
|
|
1754
1786
|
*/
|
|
1755
1787
|
'description'?: string | null;
|
|
1756
1788
|
/**
|
|
1757
|
-
*
|
|
1789
|
+
* Access item\'s type.
|
|
1758
1790
|
* @type {object}
|
|
1759
1791
|
* @memberof AccessRequestPostApprovalRequestedItemsStatusInnerBeta
|
|
1760
1792
|
*/
|
|
1761
1793
|
'type': AccessRequestPostApprovalRequestedItemsStatusInnerBetaTypeBeta;
|
|
1762
1794
|
/**
|
|
1763
|
-
*
|
|
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
|
-
*
|
|
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
|
-
*
|
|
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
|
-
*
|
|
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<
|
|
1872
|
+
* Identities whom access was requested for.
|
|
1873
|
+
* @type {Array<AccessItemRequestedForDto1Beta>}
|
|
1842
1874
|
* @memberof AccessRequestPreApprovalBeta
|
|
1843
1875
|
*/
|
|
1844
|
-
'requestedFor': Array<
|
|
1876
|
+
'requestedFor': Array<AccessItemRequestedForDto1Beta>;
|
|
1845
1877
|
/**
|
|
1846
|
-
* Details
|
|
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 {
|
|
1885
|
+
* @type {AccessItemRequesterDto1Beta}
|
|
1854
1886
|
* @memberof AccessRequestPreApprovalBeta
|
|
1855
1887
|
*/
|
|
1856
|
-
'requestedBy':
|
|
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
|
-
*
|
|
1897
|
+
* Access item\'s unique ID.
|
|
1866
1898
|
* @type {string}
|
|
1867
1899
|
* @memberof AccessRequestPreApprovalRequestedItemsInnerBeta
|
|
1868
1900
|
*/
|
|
1869
1901
|
'id': string;
|
|
1870
1902
|
/**
|
|
1871
|
-
*
|
|
1903
|
+
* Access item\'s name.
|
|
1872
1904
|
* @type {string}
|
|
1873
1905
|
* @memberof AccessRequestPreApprovalRequestedItemsInnerBeta
|
|
1874
1906
|
*/
|
|
1875
1907
|
'name': string;
|
|
1876
1908
|
/**
|
|
1877
|
-
*
|
|
1909
|
+
* Access item\'s description.
|
|
1878
1910
|
* @type {string}
|
|
1879
1911
|
* @memberof AccessRequestPreApprovalRequestedItemsInnerBeta
|
|
1880
1912
|
*/
|
|
1881
1913
|
'description'?: string | null;
|
|
1882
1914
|
/**
|
|
1883
|
-
*
|
|
1915
|
+
* Access item\'s type.
|
|
1884
1916
|
* @type {object}
|
|
1885
1917
|
* @memberof AccessRequestPreApprovalRequestedItemsInnerBeta
|
|
1886
1918
|
*/
|
|
1887
1919
|
'type': AccessRequestPreApprovalRequestedItemsInnerBetaTypeBeta;
|
|
1888
1920
|
/**
|
|
1889
|
-
*
|
|
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
|
-
*
|
|
1927
|
+
* Comment from the identity requesting access.
|
|
1896
1928
|
* @type {string}
|
|
1897
1929
|
* @memberof AccessRequestPreApprovalRequestedItemsInnerBeta
|
|
1898
1930
|
*/
|
|
@@ -2138,10 +2170,10 @@ export interface AccessRequestTrackingBeta {
|
|
|
2138
2170
|
'requestedItemsDetails'?: Array<RequestedItemDetailsBeta>;
|
|
2139
2171
|
/**
|
|
2140
2172
|
* a hash representation of the access requested, useful for longer term tracking client side.
|
|
2141
|
-
* @type {
|
|
2173
|
+
* @type {number}
|
|
2142
2174
|
* @memberof AccessRequestTrackingBeta
|
|
2143
2175
|
*/
|
|
2144
|
-
'attributesHash'?:
|
|
2176
|
+
'attributesHash'?: number;
|
|
2145
2177
|
/**
|
|
2146
2178
|
* a list of access request identifiers, generally only one will be populated, but high volume requested may result in multiple ids.
|
|
2147
2179
|
* @type {Array<string>}
|
|
@@ -2436,31 +2468,31 @@ export interface AccountAggregationCompletedBeta {
|
|
|
2436
2468
|
*/
|
|
2437
2469
|
'source': AccountAggregationCompletedSourceBeta;
|
|
2438
2470
|
/**
|
|
2439
|
-
*
|
|
2471
|
+
* Aggregation\'s overall status.
|
|
2440
2472
|
* @type {object}
|
|
2441
2473
|
* @memberof AccountAggregationCompletedBeta
|
|
2442
2474
|
*/
|
|
2443
2475
|
'status': AccountAggregationCompletedBetaStatusBeta;
|
|
2444
2476
|
/**
|
|
2445
|
-
*
|
|
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
|
-
*
|
|
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
|
-
*
|
|
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
|
-
*
|
|
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
|
-
*
|
|
2517
|
+
* Source ISC is aggregating accounts from.
|
|
2486
2518
|
* @export
|
|
2487
2519
|
* @interface AccountAggregationCompletedSourceBeta
|
|
2488
2520
|
*/
|
|
2489
2521
|
export interface AccountAggregationCompletedSourceBeta {
|
|
2490
2522
|
/**
|
|
2491
|
-
*
|
|
2523
|
+
* Source\'s DTO type.
|
|
2492
2524
|
* @type {string}
|
|
2493
2525
|
* @memberof AccountAggregationCompletedSourceBeta
|
|
2494
2526
|
*/
|
|
2495
2527
|
'type': AccountAggregationCompletedSourceBetaTypeBeta;
|
|
2496
2528
|
/**
|
|
2497
|
-
*
|
|
2529
|
+
* Source\'s unique ID.
|
|
2498
2530
|
* @type {string}
|
|
2499
2531
|
* @memberof AccountAggregationCompletedSourceBeta
|
|
2500
2532
|
*/
|
|
2501
2533
|
'id': string;
|
|
2502
2534
|
/**
|
|
2503
|
-
*
|
|
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
|
-
*
|
|
2555
|
+
* Number of accounts scanned/iterated over.
|
|
2524
2556
|
* @type {number}
|
|
2525
2557
|
* @memberof AccountAggregationCompletedStatsBeta
|
|
2526
2558
|
*/
|
|
2527
2559
|
'scanned': number;
|
|
2528
2560
|
/**
|
|
2529
|
-
*
|
|
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
|
-
*
|
|
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
|
-
*
|
|
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
|
-
*
|
|
2579
|
+
* Number accounts that existed before but were removed and no longer exist.
|
|
2548
2580
|
* @type {number}
|
|
2549
2581
|
* @memberof AccountAggregationCompletedStatsBeta
|
|
2550
2582
|
*/
|
|
@@ -2890,7 +2922,7 @@ export interface AccountBeta {
|
|
|
2890
2922
|
* @type {string}
|
|
2891
2923
|
* @memberof AccountBeta
|
|
2892
2924
|
*/
|
|
2893
|
-
'name': string;
|
|
2925
|
+
'name': string | null;
|
|
2894
2926
|
/**
|
|
2895
2927
|
* Creation date of the Object
|
|
2896
2928
|
* @type {string}
|
|
@@ -5094,7 +5126,7 @@ export interface BaseCommonDto1Beta {
|
|
|
5094
5126
|
* @type {string}
|
|
5095
5127
|
* @memberof BaseCommonDto1Beta
|
|
5096
5128
|
*/
|
|
5097
|
-
'name': string;
|
|
5129
|
+
'name': string | null;
|
|
5098
5130
|
/**
|
|
5099
5131
|
* Creation date of the Object
|
|
5100
5132
|
* @type {string}
|
|
@@ -5125,7 +5157,7 @@ export interface BaseCommonDtoBeta {
|
|
|
5125
5157
|
* @type {string}
|
|
5126
5158
|
* @memberof BaseCommonDtoBeta
|
|
5127
5159
|
*/
|
|
5128
|
-
'name': string;
|
|
5160
|
+
'name': string | null;
|
|
5129
5161
|
/**
|
|
5130
5162
|
* Creation date of the Object
|
|
5131
5163
|
* @type {string}
|
|
@@ -5359,43 +5391,43 @@ export interface CampaignActivatedBeta {
|
|
|
5359
5391
|
*/
|
|
5360
5392
|
export interface CampaignActivatedCampaignBeta {
|
|
5361
5393
|
/**
|
|
5362
|
-
*
|
|
5394
|
+
* Campaign\'s unique ID.
|
|
5363
5395
|
* @type {string}
|
|
5364
5396
|
* @memberof CampaignActivatedCampaignBeta
|
|
5365
5397
|
*/
|
|
5366
5398
|
'id': string;
|
|
5367
5399
|
/**
|
|
5368
|
-
*
|
|
5400
|
+
* Campaign\'s name.
|
|
5369
5401
|
* @type {string}
|
|
5370
5402
|
* @memberof CampaignActivatedCampaignBeta
|
|
5371
5403
|
*/
|
|
5372
5404
|
'name': string;
|
|
5373
5405
|
/**
|
|
5374
|
-
*
|
|
5406
|
+
* Campaign\'s extended description.
|
|
5375
5407
|
* @type {string}
|
|
5376
5408
|
* @memberof CampaignActivatedCampaignBeta
|
|
5377
5409
|
*/
|
|
5378
5410
|
'description': string;
|
|
5379
5411
|
/**
|
|
5380
|
-
*
|
|
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
|
-
*
|
|
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
|
-
*
|
|
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
|
-
*
|
|
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
|
-
*
|
|
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
|
|
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
|
-
*
|
|
5470
|
+
* Identity\'s unique ID.
|
|
5439
5471
|
* @type {string}
|
|
5440
5472
|
* @memberof CampaignActivatedCampaignCampaignOwnerBeta
|
|
5441
5473
|
*/
|
|
5442
5474
|
'id': string;
|
|
5443
5475
|
/**
|
|
5444
|
-
*
|
|
5476
|
+
* Identity\'s name.
|
|
5445
5477
|
* @type {string}
|
|
5446
5478
|
* @memberof CampaignActivatedCampaignCampaignOwnerBeta
|
|
5447
5479
|
*/
|
|
5448
5480
|
'displayName': string;
|
|
5449
5481
|
/**
|
|
5450
|
-
*
|
|
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
|
-
*
|
|
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
|
-
*
|
|
5724
|
+
* Campaign\'s unique ID.
|
|
5693
5725
|
* @type {string}
|
|
5694
5726
|
* @memberof CampaignEndedCampaignBeta
|
|
5695
5727
|
*/
|
|
5696
5728
|
'name': string;
|
|
5697
5729
|
/**
|
|
5698
|
-
*
|
|
5730
|
+
* Campaign\'s extended description.
|
|
5699
5731
|
* @type {string}
|
|
5700
5732
|
* @memberof CampaignEndedCampaignBeta
|
|
5701
5733
|
*/
|
|
5702
5734
|
'description': string;
|
|
5703
5735
|
/**
|
|
5704
|
-
*
|
|
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
|
-
*
|
|
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
|
-
*
|
|
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
|
-
*
|
|
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
|
-
*
|
|
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
|
-
*
|
|
5807
|
+
* Campaign\'s unique ID.
|
|
5776
5808
|
* @type {string}
|
|
5777
5809
|
* @memberof CampaignGeneratedCampaignBeta
|
|
5778
5810
|
*/
|
|
5779
5811
|
'id': string;
|
|
5780
5812
|
/**
|
|
5781
|
-
*
|
|
5813
|
+
* Campaign\'s name.
|
|
5782
5814
|
* @type {string}
|
|
5783
5815
|
* @memberof CampaignGeneratedCampaignBeta
|
|
5784
5816
|
*/
|
|
5785
5817
|
'name': string;
|
|
5786
5818
|
/**
|
|
5787
|
-
*
|
|
5819
|
+
* Campaign\'s extended description.
|
|
5788
5820
|
* @type {string}
|
|
5789
5821
|
* @memberof CampaignGeneratedCampaignBeta
|
|
5790
5822
|
*/
|
|
5791
5823
|
'description': string;
|
|
5792
5824
|
/**
|
|
5793
|
-
*
|
|
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
|
-
*
|
|
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
|
-
*
|
|
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
|
-
*
|
|
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
|
-
*
|
|
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
|
-
*
|
|
5879
|
+
* Identity who owns the campaign.
|
|
5848
5880
|
* @export
|
|
5849
5881
|
* @interface CampaignGeneratedCampaignCampaignOwnerBeta
|
|
5850
5882
|
*/
|
|
5851
5883
|
export interface CampaignGeneratedCampaignCampaignOwnerBeta {
|
|
5852
5884
|
/**
|
|
5853
|
-
*
|
|
5885
|
+
* Identity\'s unique ID.
|
|
5854
5886
|
* @type {string}
|
|
5855
5887
|
* @memberof CampaignGeneratedCampaignCampaignOwnerBeta
|
|
5856
5888
|
*/
|
|
5857
5889
|
'id': string;
|
|
5858
5890
|
/**
|
|
5859
|
-
*
|
|
5891
|
+
* Identity\'s name.
|
|
5860
5892
|
* @type {string}
|
|
5861
5893
|
* @memberof CampaignGeneratedCampaignCampaignOwnerBeta
|
|
5862
5894
|
*/
|
|
5863
5895
|
'displayName': string;
|
|
5864
5896
|
/**
|
|
5865
|
-
*
|
|
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
|
-
*
|
|
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
|
-
*
|
|
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
|
|
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
|
-
*
|
|
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
|
|
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
|
-
*
|
|
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
|
-
*
|
|
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
|
-
*
|
|
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
|
-
*
|
|
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
|
-
*
|
|
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
|
-
*
|
|
6492
|
+
* Certification\'s unique ID.
|
|
6461
6493
|
* @type {string}
|
|
6462
6494
|
* @memberof CertificationSignedOffCertificationBeta
|
|
6463
6495
|
*/
|
|
6464
6496
|
'id': string;
|
|
6465
6497
|
/**
|
|
6466
|
-
*
|
|
6498
|
+
* Certification\'s name.
|
|
6467
6499
|
* @type {string}
|
|
6468
6500
|
* @memberof CertificationSignedOffCertificationBeta
|
|
6469
6501
|
*/
|
|
6470
6502
|
'name': string;
|
|
6471
6503
|
/**
|
|
6472
|
-
*
|
|
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
|
-
*
|
|
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
|
-
*
|
|
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
|
-
*
|
|
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
|
|
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
|
-
*
|
|
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
|
|
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
|
-
*
|
|
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
|
-
*
|
|
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
|
-
*
|
|
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
|
-
*
|
|
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
|
*
|
|
@@ -10246,6 +10290,7 @@ export const ExportOptionsBetaExcludeTypesBeta = {
|
|
|
10246
10290
|
AttrSyncSourceConfig: 'ATTR_SYNC_SOURCE_CONFIG',
|
|
10247
10291
|
AuthOrg: 'AUTH_ORG',
|
|
10248
10292
|
CampaignFilter: 'CAMPAIGN_FILTER',
|
|
10293
|
+
ConnectorRule: 'CONNECTOR_RULE',
|
|
10249
10294
|
FormDefinition: 'FORM_DEFINITION',
|
|
10250
10295
|
GovernanceGroup: 'GOVERNANCE_GROUP',
|
|
10251
10296
|
IdentityObjectConfig: 'IDENTITY_OBJECT_CONFIG',
|
|
@@ -10274,6 +10319,7 @@ export const ExportOptionsBetaIncludeTypesBeta = {
|
|
|
10274
10319
|
AttrSyncSourceConfig: 'ATTR_SYNC_SOURCE_CONFIG',
|
|
10275
10320
|
AuthOrg: 'AUTH_ORG',
|
|
10276
10321
|
CampaignFilter: 'CAMPAIGN_FILTER',
|
|
10322
|
+
ConnectorRule: 'CONNECTOR_RULE',
|
|
10277
10323
|
FormDefinition: 'FORM_DEFINITION',
|
|
10278
10324
|
GovernanceGroup: 'GOVERNANCE_GROUP',
|
|
10279
10325
|
IdentityObjectConfig: 'IDENTITY_OBJECT_CONFIG',
|
|
@@ -10335,6 +10381,7 @@ export const ExportPayloadBetaExcludeTypesBeta = {
|
|
|
10335
10381
|
AttrSyncSourceConfig: 'ATTR_SYNC_SOURCE_CONFIG',
|
|
10336
10382
|
AuthOrg: 'AUTH_ORG',
|
|
10337
10383
|
CampaignFilter: 'CAMPAIGN_FILTER',
|
|
10384
|
+
ConnectorRule: 'CONNECTOR_RULE',
|
|
10338
10385
|
FormDefinition: 'FORM_DEFINITION',
|
|
10339
10386
|
GovernanceGroup: 'GOVERNANCE_GROUP',
|
|
10340
10387
|
IdentityObjectConfig: 'IDENTITY_OBJECT_CONFIG',
|
|
@@ -10363,6 +10410,7 @@ export const ExportPayloadBetaIncludeTypesBeta = {
|
|
|
10363
10410
|
AttrSyncSourceConfig: 'ATTR_SYNC_SOURCE_CONFIG',
|
|
10364
10411
|
AuthOrg: 'AUTH_ORG',
|
|
10365
10412
|
CampaignFilter: 'CAMPAIGN_FILTER',
|
|
10413
|
+
ConnectorRule: 'CONNECTOR_RULE',
|
|
10366
10414
|
FormDefinition: 'FORM_DEFINITION',
|
|
10367
10415
|
GovernanceGroup: 'GOVERNANCE_GROUP',
|
|
10368
10416
|
IdentityObjectConfig: 'IDENTITY_OBJECT_CONFIG',
|
|
@@ -10832,7 +10880,8 @@ export interface FormDefinitionInputBeta {
|
|
|
10832
10880
|
}
|
|
10833
10881
|
|
|
10834
10882
|
export const FormDefinitionInputBetaTypeBeta = {
|
|
10835
|
-
String: 'STRING'
|
|
10883
|
+
String: 'STRING',
|
|
10884
|
+
Array: 'ARRAY'
|
|
10836
10885
|
} as const;
|
|
10837
10886
|
|
|
10838
10887
|
export type FormDefinitionInputBetaTypeBeta = typeof FormDefinitionInputBetaTypeBeta[keyof typeof FormDefinitionInputBetaTypeBeta];
|
|
@@ -12858,7 +12907,7 @@ export interface IdentityAttributesChangedBeta {
|
|
|
12858
12907
|
*/
|
|
12859
12908
|
'identity': IdentityAttributesChangedIdentityBeta;
|
|
12860
12909
|
/**
|
|
12861
|
-
*
|
|
12910
|
+
* List of identity\'s attributes that changed.
|
|
12862
12911
|
* @type {Array<IdentityAttributesChangedChangesInnerBeta>}
|
|
12863
12912
|
* @memberof IdentityAttributesChangedBeta
|
|
12864
12913
|
*/
|
|
@@ -12871,7 +12920,7 @@ export interface IdentityAttributesChangedBeta {
|
|
|
12871
12920
|
*/
|
|
12872
12921
|
export interface IdentityAttributesChangedChangesInnerBeta {
|
|
12873
12922
|
/**
|
|
12874
|
-
*
|
|
12923
|
+
* Identity attribute\'s name.
|
|
12875
12924
|
* @type {string}
|
|
12876
12925
|
* @memberof IdentityAttributesChangedChangesInnerBeta
|
|
12877
12926
|
*/
|
|
@@ -12891,14 +12940,14 @@ export interface IdentityAttributesChangedChangesInnerBeta {
|
|
|
12891
12940
|
}
|
|
12892
12941
|
/**
|
|
12893
12942
|
* @type IdentityAttributesChangedChangesInnerNewValueBeta
|
|
12894
|
-
*
|
|
12943
|
+
* Identity attribute\'s new value after the change.
|
|
12895
12944
|
* @export
|
|
12896
12945
|
*/
|
|
12897
12946
|
export type IdentityAttributesChangedChangesInnerNewValueBeta = Array<string> | boolean | string | { [key: string]: IdentityAttributesChangedChangesInnerOldValueOneOfValueBeta; };
|
|
12898
12947
|
|
|
12899
12948
|
/**
|
|
12900
12949
|
* @type IdentityAttributesChangedChangesInnerOldValueBeta
|
|
12901
|
-
*
|
|
12950
|
+
* Identity attribute\'s previous value before the change.
|
|
12902
12951
|
* @export
|
|
12903
12952
|
*/
|
|
12904
12953
|
export type IdentityAttributesChangedChangesInnerOldValueBeta = Array<string> | boolean | string | { [key: string]: IdentityAttributesChangedChangesInnerOldValueOneOfValueBeta; };
|
|
@@ -12928,7 +12977,7 @@ export interface IdentityAttributesChangedIdentityBeta {
|
|
|
12928
12977
|
*/
|
|
12929
12978
|
'id': string;
|
|
12930
12979
|
/**
|
|
12931
|
-
*
|
|
12980
|
+
* Name of identity whose attributes changed.
|
|
12932
12981
|
* @type {string}
|
|
12933
12982
|
* @memberof IdentityAttributesChangedIdentityBeta
|
|
12934
12983
|
*/
|
|
@@ -13181,7 +13230,7 @@ export interface IdentityCreatedBeta {
|
|
|
13181
13230
|
*/
|
|
13182
13231
|
'identity': IdentityCreatedIdentityBeta;
|
|
13183
13232
|
/**
|
|
13184
|
-
*
|
|
13233
|
+
* Attributes assigned to the identity. These attributes are determined by the identity profile.
|
|
13185
13234
|
* @type {{ [key: string]: any; }}
|
|
13186
13235
|
* @memberof IdentityCreatedBeta
|
|
13187
13236
|
*/
|
|
@@ -13194,19 +13243,19 @@ export interface IdentityCreatedBeta {
|
|
|
13194
13243
|
*/
|
|
13195
13244
|
export interface IdentityCreatedIdentityBeta {
|
|
13196
13245
|
/**
|
|
13197
|
-
*
|
|
13246
|
+
* Identity\'s DTO type.
|
|
13198
13247
|
* @type {string}
|
|
13199
13248
|
* @memberof IdentityCreatedIdentityBeta
|
|
13200
13249
|
*/
|
|
13201
13250
|
'type': IdentityCreatedIdentityBetaTypeBeta;
|
|
13202
13251
|
/**
|
|
13203
|
-
*
|
|
13252
|
+
* Identity\'s unique ID.
|
|
13204
13253
|
* @type {string}
|
|
13205
13254
|
* @memberof IdentityCreatedIdentityBeta
|
|
13206
13255
|
*/
|
|
13207
13256
|
'id': string;
|
|
13208
13257
|
/**
|
|
13209
|
-
*
|
|
13258
|
+
* Identity\'s name.
|
|
13210
13259
|
* @type {string}
|
|
13211
13260
|
* @memberof IdentityCreatedIdentityBeta
|
|
13212
13261
|
*/
|
|
@@ -13232,7 +13281,7 @@ export interface IdentityDeletedBeta {
|
|
|
13232
13281
|
*/
|
|
13233
13282
|
'identity': IdentityDeletedIdentityBeta;
|
|
13234
13283
|
/**
|
|
13235
|
-
*
|
|
13284
|
+
* Identity attributes. The attributes are determined by the identity profile.
|
|
13236
13285
|
* @type {{ [key: string]: any; }}
|
|
13237
13286
|
* @memberof IdentityDeletedBeta
|
|
13238
13287
|
*/
|
|
@@ -13257,7 +13306,7 @@ export interface IdentityDeletedIdentityBeta {
|
|
|
13257
13306
|
*/
|
|
13258
13307
|
'id': string;
|
|
13259
13308
|
/**
|
|
13260
|
-
* Deleted identity\'s
|
|
13309
|
+
* Deleted identity\'s name.
|
|
13261
13310
|
* @type {string}
|
|
13262
13311
|
* @memberof IdentityDeletedIdentityBeta
|
|
13263
13312
|
*/
|
|
@@ -13634,7 +13683,7 @@ export interface IdentityProfile1Beta {
|
|
|
13634
13683
|
* @type {string}
|
|
13635
13684
|
* @memberof IdentityProfile1Beta
|
|
13636
13685
|
*/
|
|
13637
|
-
'name': string;
|
|
13686
|
+
'name': string | null;
|
|
13638
13687
|
/**
|
|
13639
13688
|
* Creation date of the Object
|
|
13640
13689
|
* @type {string}
|
|
@@ -13783,7 +13832,7 @@ export interface IdentityProfileBeta {
|
|
|
13783
13832
|
* @type {string}
|
|
13784
13833
|
* @memberof IdentityProfileBeta
|
|
13785
13834
|
*/
|
|
13786
|
-
'name': string;
|
|
13835
|
+
'name': string | null;
|
|
13787
13836
|
/**
|
|
13788
13837
|
* Creation date of the Object
|
|
13789
13838
|
* @type {string}
|
|
@@ -14299,6 +14348,7 @@ export interface ImportObjectBeta {
|
|
|
14299
14348
|
}
|
|
14300
14349
|
|
|
14301
14350
|
export const ImportObjectBetaTypeBeta = {
|
|
14351
|
+
ConnectorRule: 'CONNECTOR_RULE',
|
|
14302
14352
|
IdentityObjectConfig: 'IDENTITY_OBJECT_CONFIG',
|
|
14303
14353
|
IdentityProfile: 'IDENTITY_PROFILE',
|
|
14304
14354
|
Rule: 'RULE',
|
|
@@ -14348,6 +14398,7 @@ export interface ImportOptionsBeta {
|
|
|
14348
14398
|
}
|
|
14349
14399
|
|
|
14350
14400
|
export const ImportOptionsBetaExcludeTypesBeta = {
|
|
14401
|
+
ConnectorRule: 'CONNECTOR_RULE',
|
|
14351
14402
|
IdentityObjectConfig: 'IDENTITY_OBJECT_CONFIG',
|
|
14352
14403
|
IdentityProfile: 'IDENTITY_PROFILE',
|
|
14353
14404
|
Rule: 'RULE',
|
|
@@ -14358,6 +14409,7 @@ export const ImportOptionsBetaExcludeTypesBeta = {
|
|
|
14358
14409
|
|
|
14359
14410
|
export type ImportOptionsBetaExcludeTypesBeta = typeof ImportOptionsBetaExcludeTypesBeta[keyof typeof ImportOptionsBetaExcludeTypesBeta];
|
|
14360
14411
|
export const ImportOptionsBetaIncludeTypesBeta = {
|
|
14412
|
+
ConnectorRule: 'CONNECTOR_RULE',
|
|
14361
14413
|
IdentityObjectConfig: 'IDENTITY_OBJECT_CONFIG',
|
|
14362
14414
|
IdentityProfile: 'IDENTITY_PROFILE',
|
|
14363
14415
|
Rule: 'RULE',
|
|
@@ -14368,6 +14420,7 @@ export const ImportOptionsBetaIncludeTypesBeta = {
|
|
|
14368
14420
|
|
|
14369
14421
|
export type ImportOptionsBetaIncludeTypesBeta = typeof ImportOptionsBetaIncludeTypesBeta[keyof typeof ImportOptionsBetaIncludeTypesBeta];
|
|
14370
14422
|
export const ImportOptionsBetaDefaultReferencesBeta = {
|
|
14423
|
+
ConnectorRule: 'CONNECTOR_RULE',
|
|
14371
14424
|
IdentityObjectConfig: 'IDENTITY_OBJECT_CONFIG',
|
|
14372
14425
|
IdentityProfile: 'IDENTITY_PROFILE',
|
|
14373
14426
|
Rule: 'RULE',
|
|
@@ -20507,6 +20560,12 @@ export interface PendingApprovalBeta {
|
|
|
20507
20560
|
* @memberof PendingApprovalBeta
|
|
20508
20561
|
*/
|
|
20509
20562
|
'sodViolationContext'?: SodViolationContextCheckCompleted1Beta | null;
|
|
20563
|
+
/**
|
|
20564
|
+
* Arbitrary key-value pairs, if any were included in the corresponding access request item
|
|
20565
|
+
* @type {{ [key: string]: string; }}
|
|
20566
|
+
* @memberof PendingApprovalBeta
|
|
20567
|
+
*/
|
|
20568
|
+
'clientMetadata'?: { [key: string]: string; } | null;
|
|
20510
20569
|
}
|
|
20511
20570
|
|
|
20512
20571
|
|
|
@@ -20769,20 +20828,20 @@ export type ProductBetaOrgTypeBeta = typeof ProductBetaOrgTypeBeta[keyof typeof
|
|
|
20769
20828
|
*/
|
|
20770
20829
|
export interface ProvisioningCompletedAccountRequestsInnerAttributeRequestsInnerBeta {
|
|
20771
20830
|
/**
|
|
20772
|
-
*
|
|
20831
|
+
* Name of the attribute being provisioned.
|
|
20773
20832
|
* @type {string}
|
|
20774
20833
|
* @memberof ProvisioningCompletedAccountRequestsInnerAttributeRequestsInnerBeta
|
|
20775
20834
|
*/
|
|
20776
20835
|
'attributeName': string;
|
|
20777
20836
|
/**
|
|
20778
|
-
*
|
|
20837
|
+
* Value of the attribute being provisioned.
|
|
20779
20838
|
* @type {string}
|
|
20780
20839
|
* @memberof ProvisioningCompletedAccountRequestsInnerAttributeRequestsInnerBeta
|
|
20781
20840
|
*/
|
|
20782
20841
|
'attributeValue'?: string | null;
|
|
20783
20842
|
/**
|
|
20784
20843
|
* The operation to handle the attribute.
|
|
20785
|
-
* @type {
|
|
20844
|
+
* @type {string}
|
|
20786
20845
|
* @memberof ProvisioningCompletedAccountRequestsInnerAttributeRequestsInnerBeta
|
|
20787
20846
|
*/
|
|
20788
20847
|
'operation': ProvisioningCompletedAccountRequestsInnerAttributeRequestsInnerBetaOperationBeta;
|
|
@@ -20809,43 +20868,53 @@ export interface ProvisioningCompletedAccountRequestsInnerBeta {
|
|
|
20809
20868
|
*/
|
|
20810
20869
|
'source': ProvisioningCompletedAccountRequestsInnerSourceBeta;
|
|
20811
20870
|
/**
|
|
20812
|
-
*
|
|
20871
|
+
* Unique idenfier of the account being provisioned.
|
|
20813
20872
|
* @type {string}
|
|
20814
20873
|
* @memberof ProvisioningCompletedAccountRequestsInnerBeta
|
|
20815
20874
|
*/
|
|
20816
20875
|
'accountId'?: string;
|
|
20817
20876
|
/**
|
|
20818
|
-
*
|
|
20877
|
+
* Provisioning operation.
|
|
20819
20878
|
* @type {string}
|
|
20820
20879
|
* @memberof ProvisioningCompletedAccountRequestsInnerBeta
|
|
20821
20880
|
*/
|
|
20822
|
-
'accountOperation':
|
|
20881
|
+
'accountOperation': ProvisioningCompletedAccountRequestsInnerBetaAccountOperationBeta;
|
|
20823
20882
|
/**
|
|
20824
|
-
*
|
|
20883
|
+
* Overall result of the provisioning transaction.
|
|
20825
20884
|
* @type {object}
|
|
20826
20885
|
* @memberof ProvisioningCompletedAccountRequestsInnerBeta
|
|
20827
20886
|
*/
|
|
20828
20887
|
'provisioningResult': ProvisioningCompletedAccountRequestsInnerBetaProvisioningResultBeta;
|
|
20829
20888
|
/**
|
|
20830
|
-
*
|
|
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).
|
|
20831
20890
|
* @type {string}
|
|
20832
20891
|
* @memberof ProvisioningCompletedAccountRequestsInnerBeta
|
|
20833
20892
|
*/
|
|
20834
20893
|
'provisioningTarget': string;
|
|
20835
20894
|
/**
|
|
20836
|
-
*
|
|
20895
|
+
* Reference to a tracking number for if this is sent to a SDIM.
|
|
20837
20896
|
* @type {string}
|
|
20838
20897
|
* @memberof ProvisioningCompletedAccountRequestsInnerBeta
|
|
20839
20898
|
*/
|
|
20840
20899
|
'ticketId'?: string | null;
|
|
20841
20900
|
/**
|
|
20842
|
-
*
|
|
20901
|
+
* List of attributes to include in the provisioning transaction.
|
|
20843
20902
|
* @type {Array<ProvisioningCompletedAccountRequestsInnerAttributeRequestsInnerBeta>}
|
|
20844
20903
|
* @memberof ProvisioningCompletedAccountRequestsInnerBeta
|
|
20845
20904
|
*/
|
|
20846
20905
|
'attributeRequests'?: Array<ProvisioningCompletedAccountRequestsInnerAttributeRequestsInnerBeta> | null;
|
|
20847
20906
|
}
|
|
20848
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];
|
|
20849
20918
|
export const ProvisioningCompletedAccountRequestsInnerBetaProvisioningResultBeta = {
|
|
20850
20919
|
Success: 'SUCCESS',
|
|
20851
20920
|
Pending: 'PENDING',
|
|
@@ -20855,25 +20924,25 @@ export const ProvisioningCompletedAccountRequestsInnerBetaProvisioningResultBeta
|
|
|
20855
20924
|
export type ProvisioningCompletedAccountRequestsInnerBetaProvisioningResultBeta = typeof ProvisioningCompletedAccountRequestsInnerBetaProvisioningResultBeta[keyof typeof ProvisioningCompletedAccountRequestsInnerBetaProvisioningResultBeta];
|
|
20856
20925
|
|
|
20857
20926
|
/**
|
|
20858
|
-
*
|
|
20927
|
+
* Source that ISC is provisioning access on.
|
|
20859
20928
|
* @export
|
|
20860
20929
|
* @interface ProvisioningCompletedAccountRequestsInnerSourceBeta
|
|
20861
20930
|
*/
|
|
20862
20931
|
export interface ProvisioningCompletedAccountRequestsInnerSourceBeta {
|
|
20863
20932
|
/**
|
|
20864
|
-
* ID
|
|
20933
|
+
* Source ID.
|
|
20865
20934
|
* @type {string}
|
|
20866
20935
|
* @memberof ProvisioningCompletedAccountRequestsInnerSourceBeta
|
|
20867
20936
|
*/
|
|
20868
20937
|
'id': string;
|
|
20869
20938
|
/**
|
|
20870
|
-
*
|
|
20939
|
+
* Source DTO type.
|
|
20871
20940
|
* @type {string}
|
|
20872
20941
|
* @memberof ProvisioningCompletedAccountRequestsInnerSourceBeta
|
|
20873
20942
|
*/
|
|
20874
20943
|
'type': ProvisioningCompletedAccountRequestsInnerSourceBetaTypeBeta;
|
|
20875
20944
|
/**
|
|
20876
|
-
*
|
|
20945
|
+
* Source name.
|
|
20877
20946
|
* @type {string}
|
|
20878
20947
|
* @memberof ProvisioningCompletedAccountRequestsInnerSourceBeta
|
|
20879
20948
|
*/
|
|
@@ -20893,31 +20962,31 @@ export type ProvisioningCompletedAccountRequestsInnerSourceBetaTypeBeta = typeof
|
|
|
20893
20962
|
*/
|
|
20894
20963
|
export interface ProvisioningCompletedBeta {
|
|
20895
20964
|
/**
|
|
20896
|
-
*
|
|
20965
|
+
* Provisioning request\'s reference number. Useful for tracking status in the \'Account Activity\' search interface.
|
|
20897
20966
|
* @type {string}
|
|
20898
20967
|
* @memberof ProvisioningCompletedBeta
|
|
20899
20968
|
*/
|
|
20900
20969
|
'trackingNumber': string;
|
|
20901
20970
|
/**
|
|
20902
|
-
*
|
|
20971
|
+
* Sources the provisioning transactions were performed on. Sources are comma separated.
|
|
20903
20972
|
* @type {string}
|
|
20904
20973
|
* @memberof ProvisioningCompletedBeta
|
|
20905
20974
|
*/
|
|
20906
20975
|
'sources': string;
|
|
20907
20976
|
/**
|
|
20908
|
-
* Origin of
|
|
20977
|
+
* Origin of the provisioning request.
|
|
20909
20978
|
* @type {string}
|
|
20910
20979
|
* @memberof ProvisioningCompletedBeta
|
|
20911
20980
|
*/
|
|
20912
20981
|
'action'?: string | null;
|
|
20913
20982
|
/**
|
|
20914
|
-
*
|
|
20983
|
+
* List of any accumulated error messages that occurred during provisioning.
|
|
20915
20984
|
* @type {Array<string>}
|
|
20916
20985
|
* @memberof ProvisioningCompletedBeta
|
|
20917
20986
|
*/
|
|
20918
20987
|
'errors'?: Array<string> | null;
|
|
20919
20988
|
/**
|
|
20920
|
-
*
|
|
20989
|
+
* List of any accumulated warning messages that occurred during provisioning.
|
|
20921
20990
|
* @type {Array<string>}
|
|
20922
20991
|
* @memberof ProvisioningCompletedBeta
|
|
20923
20992
|
*/
|
|
@@ -20935,7 +21004,7 @@ export interface ProvisioningCompletedBeta {
|
|
|
20935
21004
|
*/
|
|
20936
21005
|
'requester'?: ProvisioningCompletedRequesterBeta | null;
|
|
20937
21006
|
/**
|
|
20938
|
-
*
|
|
21007
|
+
* List of provisioning instructions to perform on an account-by-account basis.
|
|
20939
21008
|
* @type {Array<ProvisioningCompletedAccountRequestsInnerBeta>}
|
|
20940
21009
|
* @memberof ProvisioningCompletedBeta
|
|
20941
21010
|
*/
|
|
@@ -20960,7 +21029,7 @@ export interface ProvisioningCompletedRecipientBeta {
|
|
|
20960
21029
|
*/
|
|
20961
21030
|
'id': string;
|
|
20962
21031
|
/**
|
|
20963
|
-
* Provisioning recipient\'s
|
|
21032
|
+
* Provisioning recipient\'s name.
|
|
20964
21033
|
* @type {string}
|
|
20965
21034
|
* @memberof ProvisioningCompletedRecipientBeta
|
|
20966
21035
|
*/
|
|
@@ -20992,7 +21061,7 @@ export interface ProvisioningCompletedRequesterBeta {
|
|
|
20992
21061
|
*/
|
|
20993
21062
|
'id': string;
|
|
20994
21063
|
/**
|
|
20995
|
-
* Provisioning
|
|
21064
|
+
* Provisioning requester\'s name.
|
|
20996
21065
|
* @type {string}
|
|
20997
21066
|
* @memberof ProvisioningCompletedRequesterBeta
|
|
20998
21067
|
*/
|
|
@@ -22214,7 +22283,7 @@ export type RequestableObjectRequestStatusBeta = typeof RequestableObjectRequest
|
|
|
22214
22283
|
|
|
22215
22284
|
|
|
22216
22285
|
/**
|
|
22217
|
-
*
|
|
22286
|
+
* Currently supported requestable object types.
|
|
22218
22287
|
* @export
|
|
22219
22288
|
* @enum {string}
|
|
22220
22289
|
*/
|
|
@@ -22262,6 +22331,12 @@ export type RequestedItemDetailsBetaTypeBeta = typeof RequestedItemDetailsBetaTy
|
|
|
22262
22331
|
* @interface RequestedItemStatusBeta
|
|
22263
22332
|
*/
|
|
22264
22333
|
export interface RequestedItemStatusBeta {
|
|
22334
|
+
/**
|
|
22335
|
+
* The ID of the access request.
|
|
22336
|
+
* @type {string}
|
|
22337
|
+
* @memberof RequestedItemStatusBeta
|
|
22338
|
+
*/
|
|
22339
|
+
'id'?: string;
|
|
22265
22340
|
/**
|
|
22266
22341
|
* Human-readable display name of the item being requested.
|
|
22267
22342
|
* @type {string}
|
|
@@ -22784,31 +22859,31 @@ export interface ReviewReassignBeta {
|
|
|
22784
22859
|
'reason': string;
|
|
22785
22860
|
}
|
|
22786
22861
|
/**
|
|
22787
|
-
* Details of the reviewer for certification.
|
|
22862
|
+
* Details of the reviewer for a certification.
|
|
22788
22863
|
* @export
|
|
22789
22864
|
* @interface ReviewerBeta
|
|
22790
22865
|
*/
|
|
22791
22866
|
export interface ReviewerBeta {
|
|
22792
22867
|
/**
|
|
22793
|
-
*
|
|
22868
|
+
* Reviewer\'s DTO type.
|
|
22794
22869
|
* @type {string}
|
|
22795
22870
|
* @memberof ReviewerBeta
|
|
22796
22871
|
*/
|
|
22797
22872
|
'type': ReviewerBetaTypeBeta;
|
|
22798
22873
|
/**
|
|
22799
|
-
*
|
|
22874
|
+
* Reviewer\'s ID.
|
|
22800
22875
|
* @type {string}
|
|
22801
22876
|
* @memberof ReviewerBeta
|
|
22802
22877
|
*/
|
|
22803
22878
|
'id': string;
|
|
22804
22879
|
/**
|
|
22805
|
-
*
|
|
22880
|
+
* Reviewer\'s display name.
|
|
22806
22881
|
* @type {string}
|
|
22807
22882
|
* @memberof ReviewerBeta
|
|
22808
22883
|
*/
|
|
22809
22884
|
'name': string;
|
|
22810
22885
|
/**
|
|
22811
|
-
*
|
|
22886
|
+
* Reviewing identity\'s email. This is only applicable to reviewers of the `IDENTITY` type.
|
|
22812
22887
|
* @type {string}
|
|
22813
22888
|
* @memberof ReviewerBeta
|
|
22814
22889
|
*/
|
|
@@ -24789,31 +24864,31 @@ export type RuleBeta = GenerateRandomStringBeta | GetReferenceIdentityAttributeB
|
|
|
24789
24864
|
*/
|
|
24790
24865
|
export interface SavedSearchCompleteBeta {
|
|
24791
24866
|
/**
|
|
24792
|
-
*
|
|
24867
|
+
* Report file name.
|
|
24793
24868
|
* @type {string}
|
|
24794
24869
|
* @memberof SavedSearchCompleteBeta
|
|
24795
24870
|
*/
|
|
24796
24871
|
'fileName': string;
|
|
24797
24872
|
/**
|
|
24798
|
-
*
|
|
24873
|
+
* Email address of the identity who owns the saved search.
|
|
24799
24874
|
* @type {string}
|
|
24800
24875
|
* @memberof SavedSearchCompleteBeta
|
|
24801
24876
|
*/
|
|
24802
24877
|
'ownerEmail': string;
|
|
24803
24878
|
/**
|
|
24804
|
-
*
|
|
24879
|
+
* Name of the identity who owns the saved search.
|
|
24805
24880
|
* @type {string}
|
|
24806
24881
|
* @memberof SavedSearchCompleteBeta
|
|
24807
24882
|
*/
|
|
24808
24883
|
'ownerName': string;
|
|
24809
24884
|
/**
|
|
24810
|
-
*
|
|
24885
|
+
* Search query used to generate the report.
|
|
24811
24886
|
* @type {string}
|
|
24812
24887
|
* @memberof SavedSearchCompleteBeta
|
|
24813
24888
|
*/
|
|
24814
24889
|
'query': string;
|
|
24815
24890
|
/**
|
|
24816
|
-
*
|
|
24891
|
+
* Saved search name.
|
|
24817
24892
|
* @type {string}
|
|
24818
24893
|
* @memberof SavedSearchCompleteBeta
|
|
24819
24894
|
*/
|
|
@@ -24832,32 +24907,32 @@ export interface SavedSearchCompleteBeta {
|
|
|
24832
24907
|
'signedS3Url': string;
|
|
24833
24908
|
}
|
|
24834
24909
|
/**
|
|
24835
|
-
*
|
|
24910
|
+
* Table of accounts matching the search criteria.
|
|
24836
24911
|
* @export
|
|
24837
24912
|
* @interface SavedSearchCompleteSearchResultsAccountBeta
|
|
24838
24913
|
*/
|
|
24839
24914
|
export interface SavedSearchCompleteSearchResultsAccountBeta {
|
|
24840
24915
|
/**
|
|
24841
|
-
*
|
|
24916
|
+
* Number of rows in the table.
|
|
24842
24917
|
* @type {string}
|
|
24843
24918
|
* @memberof SavedSearchCompleteSearchResultsAccountBeta
|
|
24844
24919
|
*/
|
|
24845
24920
|
'count': string;
|
|
24846
24921
|
/**
|
|
24847
|
-
*
|
|
24922
|
+
* Type of object represented in the table.
|
|
24848
24923
|
* @type {string}
|
|
24849
24924
|
* @memberof SavedSearchCompleteSearchResultsAccountBeta
|
|
24850
24925
|
*/
|
|
24851
24926
|
'noun': string;
|
|
24852
24927
|
/**
|
|
24853
|
-
*
|
|
24928
|
+
* Sample of table data.
|
|
24854
24929
|
* @type {Array<Array<string>>}
|
|
24855
24930
|
* @memberof SavedSearchCompleteSearchResultsAccountBeta
|
|
24856
24931
|
*/
|
|
24857
24932
|
'preview': Array<Array<string>>;
|
|
24858
24933
|
}
|
|
24859
24934
|
/**
|
|
24860
|
-
*
|
|
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.
|
|
24861
24936
|
* @export
|
|
24862
24937
|
* @interface SavedSearchCompleteSearchResultsBeta
|
|
24863
24938
|
*/
|
|
@@ -24882,50 +24957,50 @@ export interface SavedSearchCompleteSearchResultsBeta {
|
|
|
24882
24957
|
'Identity'?: SavedSearchCompleteSearchResultsIdentityBeta | null;
|
|
24883
24958
|
}
|
|
24884
24959
|
/**
|
|
24885
|
-
*
|
|
24960
|
+
* Table of entitlements matching the search criteria.
|
|
24886
24961
|
* @export
|
|
24887
24962
|
* @interface SavedSearchCompleteSearchResultsEntitlementBeta
|
|
24888
24963
|
*/
|
|
24889
24964
|
export interface SavedSearchCompleteSearchResultsEntitlementBeta {
|
|
24890
24965
|
/**
|
|
24891
|
-
*
|
|
24966
|
+
* Number of rows in the table.
|
|
24892
24967
|
* @type {string}
|
|
24893
24968
|
* @memberof SavedSearchCompleteSearchResultsEntitlementBeta
|
|
24894
24969
|
*/
|
|
24895
24970
|
'count': string;
|
|
24896
24971
|
/**
|
|
24897
|
-
*
|
|
24972
|
+
* Type of object represented in the table.
|
|
24898
24973
|
* @type {string}
|
|
24899
24974
|
* @memberof SavedSearchCompleteSearchResultsEntitlementBeta
|
|
24900
24975
|
*/
|
|
24901
24976
|
'noun': string;
|
|
24902
24977
|
/**
|
|
24903
|
-
*
|
|
24978
|
+
* Sample of table data.
|
|
24904
24979
|
* @type {Array<Array<string>>}
|
|
24905
24980
|
* @memberof SavedSearchCompleteSearchResultsEntitlementBeta
|
|
24906
24981
|
*/
|
|
24907
24982
|
'preview': Array<Array<string>>;
|
|
24908
24983
|
}
|
|
24909
24984
|
/**
|
|
24910
|
-
*
|
|
24985
|
+
* Table of identities matching the search criteria.
|
|
24911
24986
|
* @export
|
|
24912
24987
|
* @interface SavedSearchCompleteSearchResultsIdentityBeta
|
|
24913
24988
|
*/
|
|
24914
24989
|
export interface SavedSearchCompleteSearchResultsIdentityBeta {
|
|
24915
24990
|
/**
|
|
24916
|
-
*
|
|
24991
|
+
* Number of rows in the table.
|
|
24917
24992
|
* @type {string}
|
|
24918
24993
|
* @memberof SavedSearchCompleteSearchResultsIdentityBeta
|
|
24919
24994
|
*/
|
|
24920
24995
|
'count': string;
|
|
24921
24996
|
/**
|
|
24922
|
-
*
|
|
24997
|
+
* Type of object represented in the table.
|
|
24923
24998
|
* @type {string}
|
|
24924
24999
|
* @memberof SavedSearchCompleteSearchResultsIdentityBeta
|
|
24925
25000
|
*/
|
|
24926
25001
|
'noun': string;
|
|
24927
25002
|
/**
|
|
24928
|
-
*
|
|
25003
|
+
* Sample of the table data.
|
|
24929
25004
|
* @type {Array<Array<string>>}
|
|
24930
25005
|
* @memberof SavedSearchCompleteSearchResultsIdentityBeta
|
|
24931
25006
|
*/
|
|
@@ -25221,7 +25296,7 @@ export interface ScheduledAttributesBeta {
|
|
|
25221
25296
|
*/
|
|
25222
25297
|
'timeZone'?: string;
|
|
25223
25298
|
/**
|
|
25224
|
-
*
|
|
25299
|
+
* A valid CRON expression
|
|
25225
25300
|
* @type {string}
|
|
25226
25301
|
* @memberof ScheduledAttributesBeta
|
|
25227
25302
|
*/
|
|
@@ -25238,6 +25313,12 @@ export interface ScheduledAttributesBeta {
|
|
|
25238
25313
|
* @memberof ScheduledAttributesBeta
|
|
25239
25314
|
*/
|
|
25240
25315
|
'weeklyTimes'?: Array<string>;
|
|
25316
|
+
/**
|
|
25317
|
+
* Scheduled execution times
|
|
25318
|
+
* @type {Array<string>}
|
|
25319
|
+
* @memberof ScheduledAttributesBeta
|
|
25320
|
+
*/
|
|
25321
|
+
'yearlyTimes'?: Array<string>;
|
|
25241
25322
|
}
|
|
25242
25323
|
|
|
25243
25324
|
export const ScheduledAttributesBetaFrequencyBeta = {
|
|
@@ -25882,7 +25963,7 @@ export interface SelectorBeta {
|
|
|
25882
25963
|
*/
|
|
25883
25964
|
export interface SelfImportExportDtoBeta {
|
|
25884
25965
|
/**
|
|
25885
|
-
* Imported/exported object\'s DTO type. Import is currently only possible with the IDENTITY_OBJECT_CONFIG, IDENTITY_PROFILE, RULE, SOURCE, TRANSFORM, and TRIGGER_SUBSCRIPTION object types.
|
|
25966
|
+
* Imported/exported object\'s DTO type. Import is currently only possible with the CONNECTOR_RULE, IDENTITY_OBJECT_CONFIG, IDENTITY_PROFILE, RULE, SOURCE, TRANSFORM, and TRIGGER_SUBSCRIPTION object types.
|
|
25886
25967
|
* @type {string}
|
|
25887
25968
|
* @memberof SelfImportExportDtoBeta
|
|
25888
25969
|
*/
|
|
@@ -25907,6 +25988,7 @@ export const SelfImportExportDtoBetaTypeBeta = {
|
|
|
25907
25988
|
AttrSyncSourceConfig: 'ATTR_SYNC_SOURCE_CONFIG',
|
|
25908
25989
|
AuthOrg: 'AUTH_ORG',
|
|
25909
25990
|
CampaignFilter: 'CAMPAIGN_FILTER',
|
|
25991
|
+
ConnectorRule: 'CONNECTOR_RULE',
|
|
25910
25992
|
FormDefinition: 'FORM_DEFINITION',
|
|
25911
25993
|
GovernanceGroup: 'GOVERNANCE_GROUP',
|
|
25912
25994
|
IdentityObjectConfig: 'IDENTITY_OBJECT_CONFIG',
|
|
@@ -26143,7 +26225,7 @@ export interface ServiceDeskIntegrationTemplateDtoBeta {
|
|
|
26143
26225
|
* @type {string}
|
|
26144
26226
|
* @memberof ServiceDeskIntegrationTemplateDtoBeta
|
|
26145
26227
|
*/
|
|
26146
|
-
'name': string;
|
|
26228
|
+
'name': string | null;
|
|
26147
26229
|
/**
|
|
26148
26230
|
* Creation date of the Object
|
|
26149
26231
|
* @type {string}
|
|
@@ -26302,7 +26384,7 @@ export interface SimIntegrationDetailsBeta {
|
|
|
26302
26384
|
* @type {string}
|
|
26303
26385
|
* @memberof SimIntegrationDetailsBeta
|
|
26304
26386
|
*/
|
|
26305
|
-
'name': string;
|
|
26387
|
+
'name': string | null;
|
|
26306
26388
|
/**
|
|
26307
26389
|
* Creation date of the Object
|
|
26308
26390
|
* @type {string}
|
|
@@ -27206,11 +27288,11 @@ export interface Source1Beta {
|
|
|
27206
27288
|
*/
|
|
27207
27289
|
export interface SourceAccountCreatedBeta {
|
|
27208
27290
|
/**
|
|
27209
|
-
*
|
|
27291
|
+
* Identity\'s universal unique identifier (UUID) on the source. The source system generates the UUID.
|
|
27210
27292
|
* @type {string}
|
|
27211
27293
|
* @memberof SourceAccountCreatedBeta
|
|
27212
27294
|
*/
|
|
27213
|
-
'uuid'
|
|
27295
|
+
'uuid': string;
|
|
27214
27296
|
/**
|
|
27215
27297
|
* SailPoint generated unique identifier.
|
|
27216
27298
|
* @type {string}
|
|
@@ -27218,37 +27300,37 @@ export interface SourceAccountCreatedBeta {
|
|
|
27218
27300
|
*/
|
|
27219
27301
|
'id': string;
|
|
27220
27302
|
/**
|
|
27221
|
-
*
|
|
27303
|
+
* Account\'s unique ID on the source.
|
|
27222
27304
|
* @type {string}
|
|
27223
27305
|
* @memberof SourceAccountCreatedBeta
|
|
27224
27306
|
*/
|
|
27225
27307
|
'nativeIdentifier': string;
|
|
27226
27308
|
/**
|
|
27227
|
-
*
|
|
27309
|
+
* Source ID.
|
|
27228
27310
|
* @type {string}
|
|
27229
27311
|
* @memberof SourceAccountCreatedBeta
|
|
27230
27312
|
*/
|
|
27231
27313
|
'sourceId': string;
|
|
27232
27314
|
/**
|
|
27233
|
-
*
|
|
27315
|
+
* Source name.
|
|
27234
27316
|
* @type {string}
|
|
27235
27317
|
* @memberof SourceAccountCreatedBeta
|
|
27236
27318
|
*/
|
|
27237
27319
|
'sourceName': string;
|
|
27238
27320
|
/**
|
|
27239
|
-
*
|
|
27321
|
+
* ID of the identity correlated with the account.
|
|
27240
27322
|
* @type {string}
|
|
27241
27323
|
* @memberof SourceAccountCreatedBeta
|
|
27242
27324
|
*/
|
|
27243
27325
|
'identityId': string;
|
|
27244
27326
|
/**
|
|
27245
|
-
*
|
|
27327
|
+
* Name of the identity correlated with the account.
|
|
27246
27328
|
* @type {string}
|
|
27247
27329
|
* @memberof SourceAccountCreatedBeta
|
|
27248
27330
|
*/
|
|
27249
27331
|
'identityName': string;
|
|
27250
27332
|
/**
|
|
27251
|
-
*
|
|
27333
|
+
* Account attributes. The attributes\' contents depend on the source\'s account schema.
|
|
27252
27334
|
* @type {{ [key: string]: any; }}
|
|
27253
27335
|
* @memberof SourceAccountCreatedBeta
|
|
27254
27336
|
*/
|
|
@@ -27261,11 +27343,11 @@ export interface SourceAccountCreatedBeta {
|
|
|
27261
27343
|
*/
|
|
27262
27344
|
export interface SourceAccountDeletedBeta {
|
|
27263
27345
|
/**
|
|
27264
|
-
*
|
|
27346
|
+
* Identity\'s universal unique identifier (UUID) on the source. The source system generates the UUID.
|
|
27265
27347
|
* @type {string}
|
|
27266
27348
|
* @memberof SourceAccountDeletedBeta
|
|
27267
27349
|
*/
|
|
27268
|
-
'uuid'
|
|
27350
|
+
'uuid': string;
|
|
27269
27351
|
/**
|
|
27270
27352
|
* SailPoint generated unique identifier.
|
|
27271
27353
|
* @type {string}
|
|
@@ -27273,37 +27355,37 @@ export interface SourceAccountDeletedBeta {
|
|
|
27273
27355
|
*/
|
|
27274
27356
|
'id': string;
|
|
27275
27357
|
/**
|
|
27276
|
-
*
|
|
27358
|
+
* Account\'s unique ID on the source.
|
|
27277
27359
|
* @type {string}
|
|
27278
27360
|
* @memberof SourceAccountDeletedBeta
|
|
27279
27361
|
*/
|
|
27280
27362
|
'nativeIdentifier': string;
|
|
27281
27363
|
/**
|
|
27282
|
-
*
|
|
27364
|
+
* Source ID.
|
|
27283
27365
|
* @type {string}
|
|
27284
27366
|
* @memberof SourceAccountDeletedBeta
|
|
27285
27367
|
*/
|
|
27286
27368
|
'sourceId': string;
|
|
27287
27369
|
/**
|
|
27288
|
-
*
|
|
27370
|
+
* Source name.
|
|
27289
27371
|
* @type {string}
|
|
27290
27372
|
* @memberof SourceAccountDeletedBeta
|
|
27291
27373
|
*/
|
|
27292
27374
|
'sourceName': string;
|
|
27293
27375
|
/**
|
|
27294
|
-
*
|
|
27376
|
+
* ID of the identity correlated with the account.
|
|
27295
27377
|
* @type {string}
|
|
27296
27378
|
* @memberof SourceAccountDeletedBeta
|
|
27297
27379
|
*/
|
|
27298
27380
|
'identityId': string;
|
|
27299
27381
|
/**
|
|
27300
|
-
*
|
|
27382
|
+
* Name of the identity correlated with the account.
|
|
27301
27383
|
* @type {string}
|
|
27302
27384
|
* @memberof SourceAccountDeletedBeta
|
|
27303
27385
|
*/
|
|
27304
27386
|
'identityName': string;
|
|
27305
27387
|
/**
|
|
27306
|
-
*
|
|
27388
|
+
* Account attributes. The attributes\' contents depend on the source\'s account schema.
|
|
27307
27389
|
* @type {{ [key: string]: any; }}
|
|
27308
27390
|
* @memberof SourceAccountDeletedBeta
|
|
27309
27391
|
*/
|
|
@@ -27316,11 +27398,11 @@ export interface SourceAccountDeletedBeta {
|
|
|
27316
27398
|
*/
|
|
27317
27399
|
export interface SourceAccountUpdatedBeta {
|
|
27318
27400
|
/**
|
|
27319
|
-
*
|
|
27401
|
+
* Identity\'s universal unique identifier (UUID) on the source. The source system generates the UUID.
|
|
27320
27402
|
* @type {string}
|
|
27321
27403
|
* @memberof SourceAccountUpdatedBeta
|
|
27322
27404
|
*/
|
|
27323
|
-
'uuid'
|
|
27405
|
+
'uuid': string;
|
|
27324
27406
|
/**
|
|
27325
27407
|
* SailPoint generated unique identifier.
|
|
27326
27408
|
* @type {string}
|
|
@@ -27328,37 +27410,37 @@ export interface SourceAccountUpdatedBeta {
|
|
|
27328
27410
|
*/
|
|
27329
27411
|
'id': string;
|
|
27330
27412
|
/**
|
|
27331
|
-
*
|
|
27413
|
+
* Account\'s unique ID on the source.
|
|
27332
27414
|
* @type {string}
|
|
27333
27415
|
* @memberof SourceAccountUpdatedBeta
|
|
27334
27416
|
*/
|
|
27335
27417
|
'nativeIdentifier': string;
|
|
27336
27418
|
/**
|
|
27337
|
-
*
|
|
27419
|
+
* Source ID.
|
|
27338
27420
|
* @type {string}
|
|
27339
27421
|
* @memberof SourceAccountUpdatedBeta
|
|
27340
27422
|
*/
|
|
27341
27423
|
'sourceId': string;
|
|
27342
27424
|
/**
|
|
27343
|
-
*
|
|
27425
|
+
* Source name.
|
|
27344
27426
|
* @type {string}
|
|
27345
27427
|
* @memberof SourceAccountUpdatedBeta
|
|
27346
27428
|
*/
|
|
27347
27429
|
'sourceName': string;
|
|
27348
27430
|
/**
|
|
27349
|
-
*
|
|
27431
|
+
* ID of the identity correlated with the account.
|
|
27350
27432
|
* @type {string}
|
|
27351
27433
|
* @memberof SourceAccountUpdatedBeta
|
|
27352
27434
|
*/
|
|
27353
27435
|
'identityId': string;
|
|
27354
27436
|
/**
|
|
27355
|
-
*
|
|
27437
|
+
* Name of the identity correlated with the account.
|
|
27356
27438
|
* @type {string}
|
|
27357
27439
|
* @memberof SourceAccountUpdatedBeta
|
|
27358
27440
|
*/
|
|
27359
27441
|
'identityName': string;
|
|
27360
27442
|
/**
|
|
27361
|
-
*
|
|
27443
|
+
* Account attributes. The attributes\' contents depend on the source\'s account schema.
|
|
27362
27444
|
* @type {{ [key: string]: any; }}
|
|
27363
27445
|
* @memberof SourceAccountUpdatedBeta
|
|
27364
27446
|
*/
|
|
@@ -27943,19 +28025,19 @@ export interface SourceCodeBeta {
|
|
|
27943
28025
|
*/
|
|
27944
28026
|
export interface SourceCreatedActorBeta {
|
|
27945
28027
|
/**
|
|
27946
|
-
* DTO type of identity who created the source.
|
|
28028
|
+
* DTO type of the identity who created the source.
|
|
27947
28029
|
* @type {string}
|
|
27948
28030
|
* @memberof SourceCreatedActorBeta
|
|
27949
28031
|
*/
|
|
27950
28032
|
'type': SourceCreatedActorBetaTypeBeta;
|
|
27951
28033
|
/**
|
|
27952
|
-
* ID of identity who created the source.
|
|
28034
|
+
* ID of the identity who created the source.
|
|
27953
28035
|
* @type {string}
|
|
27954
28036
|
* @memberof SourceCreatedActorBeta
|
|
27955
28037
|
*/
|
|
27956
28038
|
'id': string;
|
|
27957
28039
|
/**
|
|
27958
|
-
*
|
|
28040
|
+
* Name of the identity who created the source.
|
|
27959
28041
|
* @type {string}
|
|
27960
28042
|
* @memberof SourceCreatedActorBeta
|
|
27961
28043
|
*/
|
|
@@ -27975,31 +28057,31 @@ export type SourceCreatedActorBetaTypeBeta = typeof SourceCreatedActorBetaTypeBe
|
|
|
27975
28057
|
*/
|
|
27976
28058
|
export interface SourceCreatedBeta {
|
|
27977
28059
|
/**
|
|
27978
|
-
*
|
|
28060
|
+
* Source\'s unique ID.
|
|
27979
28061
|
* @type {string}
|
|
27980
28062
|
* @memberof SourceCreatedBeta
|
|
27981
28063
|
*/
|
|
27982
28064
|
'id': string;
|
|
27983
28065
|
/**
|
|
27984
|
-
*
|
|
28066
|
+
* Source name.
|
|
27985
28067
|
* @type {string}
|
|
27986
28068
|
* @memberof SourceCreatedBeta
|
|
27987
28069
|
*/
|
|
27988
28070
|
'name': string;
|
|
27989
28071
|
/**
|
|
27990
|
-
*
|
|
28072
|
+
* Connection type.
|
|
27991
28073
|
* @type {string}
|
|
27992
28074
|
* @memberof SourceCreatedBeta
|
|
27993
28075
|
*/
|
|
27994
28076
|
'type': string;
|
|
27995
28077
|
/**
|
|
27996
|
-
*
|
|
28078
|
+
* Date and time when the source was created.
|
|
27997
28079
|
* @type {string}
|
|
27998
28080
|
* @memberof SourceCreatedBeta
|
|
27999
28081
|
*/
|
|
28000
28082
|
'created': string;
|
|
28001
28083
|
/**
|
|
28002
|
-
*
|
|
28084
|
+
* Connector type used to connect to the source.
|
|
28003
28085
|
* @type {string}
|
|
28004
28086
|
* @memberof SourceCreatedBeta
|
|
28005
28087
|
*/
|
|
@@ -28061,19 +28143,19 @@ export interface SourceCreationErrorsBeta {
|
|
|
28061
28143
|
*/
|
|
28062
28144
|
export interface SourceDeletedActorBeta {
|
|
28063
28145
|
/**
|
|
28064
|
-
* DTO type of identity who deleted the source.
|
|
28146
|
+
* DTO type of the identity who deleted the source.
|
|
28065
28147
|
* @type {string}
|
|
28066
28148
|
* @memberof SourceDeletedActorBeta
|
|
28067
28149
|
*/
|
|
28068
28150
|
'type': SourceDeletedActorBetaTypeBeta;
|
|
28069
28151
|
/**
|
|
28070
|
-
* ID of identity who deleted the source.
|
|
28152
|
+
* ID of the identity who deleted the source.
|
|
28071
28153
|
* @type {string}
|
|
28072
28154
|
* @memberof SourceDeletedActorBeta
|
|
28073
28155
|
*/
|
|
28074
28156
|
'id': string;
|
|
28075
28157
|
/**
|
|
28076
|
-
*
|
|
28158
|
+
* Name of the identity who deleted the source.
|
|
28077
28159
|
* @type {string}
|
|
28078
28160
|
* @memberof SourceDeletedActorBeta
|
|
28079
28161
|
*/
|
|
@@ -28093,31 +28175,31 @@ export type SourceDeletedActorBetaTypeBeta = typeof SourceDeletedActorBetaTypeBe
|
|
|
28093
28175
|
*/
|
|
28094
28176
|
export interface SourceDeletedBeta {
|
|
28095
28177
|
/**
|
|
28096
|
-
*
|
|
28178
|
+
* Source\'s unique ID.
|
|
28097
28179
|
* @type {string}
|
|
28098
28180
|
* @memberof SourceDeletedBeta
|
|
28099
28181
|
*/
|
|
28100
28182
|
'id': string;
|
|
28101
28183
|
/**
|
|
28102
|
-
*
|
|
28184
|
+
* Source name.
|
|
28103
28185
|
* @type {string}
|
|
28104
28186
|
* @memberof SourceDeletedBeta
|
|
28105
28187
|
*/
|
|
28106
28188
|
'name': string;
|
|
28107
28189
|
/**
|
|
28108
|
-
*
|
|
28190
|
+
* Connection type.
|
|
28109
28191
|
* @type {string}
|
|
28110
28192
|
* @memberof SourceDeletedBeta
|
|
28111
28193
|
*/
|
|
28112
28194
|
'type': string;
|
|
28113
28195
|
/**
|
|
28114
|
-
*
|
|
28196
|
+
* Date and time when the source was deleted.
|
|
28115
28197
|
* @type {string}
|
|
28116
28198
|
* @memberof SourceDeletedBeta
|
|
28117
28199
|
*/
|
|
28118
28200
|
'deleted': string;
|
|
28119
28201
|
/**
|
|
28120
|
-
*
|
|
28202
|
+
* Connector type used to connect to the source.
|
|
28121
28203
|
* @type {string}
|
|
28122
28204
|
* @memberof SourceDeletedBeta
|
|
28123
28205
|
*/
|
|
@@ -28203,19 +28285,19 @@ export interface SourceSyncPayloadBeta {
|
|
|
28203
28285
|
*/
|
|
28204
28286
|
export interface SourceUpdatedActorBeta {
|
|
28205
28287
|
/**
|
|
28206
|
-
* DTO type of identity who updated the source.
|
|
28288
|
+
* DTO type of the identity who updated the source.
|
|
28207
28289
|
* @type {string}
|
|
28208
28290
|
* @memberof SourceUpdatedActorBeta
|
|
28209
28291
|
*/
|
|
28210
28292
|
'type': SourceUpdatedActorBetaTypeBeta;
|
|
28211
28293
|
/**
|
|
28212
|
-
* ID of identity who updated the source.
|
|
28294
|
+
* ID of the identity who updated the source.
|
|
28213
28295
|
* @type {string}
|
|
28214
28296
|
* @memberof SourceUpdatedActorBeta
|
|
28215
28297
|
*/
|
|
28216
|
-
'id'
|
|
28298
|
+
'id': string;
|
|
28217
28299
|
/**
|
|
28218
|
-
*
|
|
28300
|
+
* Name of the identity who updated the source.
|
|
28219
28301
|
* @type {string}
|
|
28220
28302
|
* @memberof SourceUpdatedActorBeta
|
|
28221
28303
|
*/
|
|
@@ -28235,31 +28317,31 @@ export type SourceUpdatedActorBetaTypeBeta = typeof SourceUpdatedActorBetaTypeBe
|
|
|
28235
28317
|
*/
|
|
28236
28318
|
export interface SourceUpdatedBeta {
|
|
28237
28319
|
/**
|
|
28238
|
-
*
|
|
28320
|
+
* Source\'s unique ID.
|
|
28239
28321
|
* @type {string}
|
|
28240
28322
|
* @memberof SourceUpdatedBeta
|
|
28241
28323
|
*/
|
|
28242
28324
|
'id': string;
|
|
28243
28325
|
/**
|
|
28244
|
-
*
|
|
28326
|
+
* Source name.
|
|
28245
28327
|
* @type {string}
|
|
28246
28328
|
* @memberof SourceUpdatedBeta
|
|
28247
28329
|
*/
|
|
28248
28330
|
'name': string;
|
|
28249
28331
|
/**
|
|
28250
|
-
*
|
|
28332
|
+
* Connection type.
|
|
28251
28333
|
* @type {string}
|
|
28252
28334
|
* @memberof SourceUpdatedBeta
|
|
28253
28335
|
*/
|
|
28254
28336
|
'type': string;
|
|
28255
28337
|
/**
|
|
28256
|
-
*
|
|
28338
|
+
* Date and time when the source was modified.
|
|
28257
28339
|
* @type {string}
|
|
28258
28340
|
* @memberof SourceUpdatedBeta
|
|
28259
28341
|
*/
|
|
28260
28342
|
'modified': string;
|
|
28261
28343
|
/**
|
|
28262
|
-
*
|
|
28344
|
+
* Connector type used to connect to the source.
|
|
28263
28345
|
* @type {string}
|
|
28264
28346
|
* @memberof SourceUpdatedBeta
|
|
28265
28347
|
*/
|
|
@@ -29481,7 +29563,7 @@ export interface TaskDefinitionSummaryBeta {
|
|
|
29481
29563
|
* @type {string}
|
|
29482
29564
|
* @memberof TaskDefinitionSummaryBeta
|
|
29483
29565
|
*/
|
|
29484
|
-
'description': string;
|
|
29566
|
+
'description': string | null;
|
|
29485
29567
|
/**
|
|
29486
29568
|
* Name of the parent of the TaskDefinition
|
|
29487
29569
|
* @type {string}
|
|
@@ -31300,25 +31382,25 @@ export interface V3ConnectorDtoBeta {
|
|
|
31300
31382
|
'status'?: string;
|
|
31301
31383
|
}
|
|
31302
31384
|
/**
|
|
31303
|
-
* Details about the `CLUSTER` or `SOURCE` that initiated
|
|
31385
|
+
* Details about the `CLUSTER` or `SOURCE` that initiated the event.
|
|
31304
31386
|
* @export
|
|
31305
31387
|
* @interface VAClusterStatusChangeEventApplicationBeta
|
|
31306
31388
|
*/
|
|
31307
31389
|
export interface VAClusterStatusChangeEventApplicationBeta {
|
|
31308
31390
|
/**
|
|
31309
|
-
*
|
|
31391
|
+
* Application\'s globally unique identifier (GUID).
|
|
31310
31392
|
* @type {string}
|
|
31311
31393
|
* @memberof VAClusterStatusChangeEventApplicationBeta
|
|
31312
31394
|
*/
|
|
31313
31395
|
'id': string;
|
|
31314
31396
|
/**
|
|
31315
|
-
*
|
|
31397
|
+
* Application name.
|
|
31316
31398
|
* @type {string}
|
|
31317
31399
|
* @memberof VAClusterStatusChangeEventApplicationBeta
|
|
31318
31400
|
*/
|
|
31319
31401
|
'name': string;
|
|
31320
31402
|
/**
|
|
31321
|
-
* Custom map of attributes for a source.
|
|
31403
|
+
* Custom map of attributes for a source. Attributes only populate if the type is `SOURCE` and the source has a proxy.
|
|
31322
31404
|
* @type {{ [key: string]: any; }}
|
|
31323
31405
|
* @memberof VAClusterStatusChangeEventApplicationBeta
|
|
31324
31406
|
*/
|
|
@@ -31331,13 +31413,13 @@ export interface VAClusterStatusChangeEventApplicationBeta {
|
|
|
31331
31413
|
*/
|
|
31332
31414
|
export interface VAClusterStatusChangeEventBeta {
|
|
31333
31415
|
/**
|
|
31334
|
-
*
|
|
31416
|
+
* Date and time when the status change occurred.
|
|
31335
31417
|
* @type {string}
|
|
31336
31418
|
* @memberof VAClusterStatusChangeEventBeta
|
|
31337
31419
|
*/
|
|
31338
31420
|
'created': string;
|
|
31339
31421
|
/**
|
|
31340
|
-
*
|
|
31422
|
+
* Type of the object that initiated the event.
|
|
31341
31423
|
* @type {object}
|
|
31342
31424
|
* @memberof VAClusterStatusChangeEventBeta
|
|
31343
31425
|
*/
|
|
@@ -31370,26 +31452,26 @@ export const VAClusterStatusChangeEventBetaTypeBeta = {
|
|
|
31370
31452
|
export type VAClusterStatusChangeEventBetaTypeBeta = typeof VAClusterStatusChangeEventBetaTypeBeta[keyof typeof VAClusterStatusChangeEventBetaTypeBeta];
|
|
31371
31453
|
|
|
31372
31454
|
/**
|
|
31373
|
-
*
|
|
31455
|
+
* Results of the most recent health check.
|
|
31374
31456
|
* @export
|
|
31375
31457
|
* @interface VAClusterStatusChangeEventHealthCheckResultBeta
|
|
31376
31458
|
*/
|
|
31377
31459
|
export interface VAClusterStatusChangeEventHealthCheckResultBeta {
|
|
31378
31460
|
/**
|
|
31379
|
-
* Detailed message of the
|
|
31461
|
+
* Detailed message of the health check result..
|
|
31380
31462
|
* @type {string}
|
|
31381
31463
|
* @memberof VAClusterStatusChangeEventHealthCheckResultBeta
|
|
31382
31464
|
*/
|
|
31383
31465
|
'message': string;
|
|
31384
31466
|
/**
|
|
31385
|
-
*
|
|
31467
|
+
* Health check result type.
|
|
31386
31468
|
* @type {string}
|
|
31387
31469
|
* @memberof VAClusterStatusChangeEventHealthCheckResultBeta
|
|
31388
31470
|
*/
|
|
31389
31471
|
'resultType': string;
|
|
31390
31472
|
/**
|
|
31391
|
-
*
|
|
31392
|
-
* @type {
|
|
31473
|
+
* Health check status.
|
|
31474
|
+
* @type {string}
|
|
31393
31475
|
* @memberof VAClusterStatusChangeEventHealthCheckResultBeta
|
|
31394
31476
|
*/
|
|
31395
31477
|
'status': VAClusterStatusChangeEventHealthCheckResultBetaStatusBeta;
|
|
@@ -31403,26 +31485,26 @@ export const VAClusterStatusChangeEventHealthCheckResultBetaStatusBeta = {
|
|
|
31403
31485
|
export type VAClusterStatusChangeEventHealthCheckResultBetaStatusBeta = typeof VAClusterStatusChangeEventHealthCheckResultBetaStatusBeta[keyof typeof VAClusterStatusChangeEventHealthCheckResultBetaStatusBeta];
|
|
31404
31486
|
|
|
31405
31487
|
/**
|
|
31406
|
-
*
|
|
31488
|
+
* Results of the last health check.
|
|
31407
31489
|
* @export
|
|
31408
31490
|
* @interface VAClusterStatusChangeEventPreviousHealthCheckResultBeta
|
|
31409
31491
|
*/
|
|
31410
31492
|
export interface VAClusterStatusChangeEventPreviousHealthCheckResultBeta {
|
|
31411
31493
|
/**
|
|
31412
|
-
* Detailed message of the
|
|
31494
|
+
* Detailed message of the health check result.
|
|
31413
31495
|
* @type {string}
|
|
31414
31496
|
* @memberof VAClusterStatusChangeEventPreviousHealthCheckResultBeta
|
|
31415
31497
|
*/
|
|
31416
31498
|
'message': string;
|
|
31417
31499
|
/**
|
|
31418
|
-
*
|
|
31500
|
+
* Health check result type.
|
|
31419
31501
|
* @type {string}
|
|
31420
31502
|
* @memberof VAClusterStatusChangeEventPreviousHealthCheckResultBeta
|
|
31421
31503
|
*/
|
|
31422
31504
|
'resultType': string;
|
|
31423
31505
|
/**
|
|
31424
|
-
*
|
|
31425
|
-
* @type {
|
|
31506
|
+
* Health check status.
|
|
31507
|
+
* @type {string}
|
|
31426
31508
|
* @memberof VAClusterStatusChangeEventPreviousHealthCheckResultBeta
|
|
31427
31509
|
*/
|
|
31428
31510
|
'status': VAClusterStatusChangeEventPreviousHealthCheckResultBetaStatusBeta;
|
|
@@ -32731,6 +32813,18 @@ export interface WorkflowTriggerAttributesBeta {
|
|
|
32731
32813
|
* @memberof WorkflowTriggerAttributesBeta
|
|
32732
32814
|
*/
|
|
32733
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;
|
|
32734
32828
|
/**
|
|
32735
32829
|
* A unique name for the external trigger
|
|
32736
32830
|
* @type {string}
|
|
@@ -32762,7 +32856,7 @@ export interface WorkflowTriggerAttributesBeta {
|
|
|
32762
32856
|
*/
|
|
32763
32857
|
'timeZone'?: string;
|
|
32764
32858
|
/**
|
|
32765
|
-
*
|
|
32859
|
+
* A valid CRON expression
|
|
32766
32860
|
* @type {string}
|
|
32767
32861
|
* @memberof WorkflowTriggerAttributesBeta
|
|
32768
32862
|
*/
|
|
@@ -32779,6 +32873,12 @@ export interface WorkflowTriggerAttributesBeta {
|
|
|
32779
32873
|
* @memberof WorkflowTriggerAttributesBeta
|
|
32780
32874
|
*/
|
|
32781
32875
|
'weeklyTimes'?: Array<string>;
|
|
32876
|
+
/**
|
|
32877
|
+
* Scheduled execution times
|
|
32878
|
+
* @type {Array<string>}
|
|
32879
|
+
* @memberof WorkflowTriggerAttributesBeta
|
|
32880
|
+
*/
|
|
32881
|
+
'yearlyTimes'?: Array<string>;
|
|
32782
32882
|
}
|
|
32783
32883
|
|
|
32784
32884
|
export const WorkflowTriggerAttributesBetaFrequencyBeta = {
|
|
@@ -33465,7 +33565,7 @@ export class AccessModelMetadataBetaApi extends BaseAPI {
|
|
|
33465
33565
|
export const AccessProfilesBetaApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
33466
33566
|
return {
|
|
33467
33567
|
/**
|
|
33468
|
-
*
|
|
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.
|
|
33469
33569
|
* @summary Create Access Profile
|
|
33470
33570
|
* @param {AccessProfileBeta} accessProfileBeta
|
|
33471
33571
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -33494,6 +33594,10 @@ export const AccessProfilesBetaApiAxiosParamCreator = function (configuration?:
|
|
|
33494
33594
|
// oauth required
|
|
33495
33595
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
33496
33596
|
|
|
33597
|
+
// authentication applicationAuth required
|
|
33598
|
+
// oauth required
|
|
33599
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
33600
|
+
|
|
33497
33601
|
|
|
33498
33602
|
|
|
33499
33603
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
@@ -33716,16 +33820,16 @@ export const AccessProfilesBetaApiAxiosParamCreator = function (configuration?:
|
|
|
33716
33820
|
};
|
|
33717
33821
|
},
|
|
33718
33822
|
/**
|
|
33719
|
-
*
|
|
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.
|
|
33720
33824
|
* @summary List Access Profiles
|
|
33721
|
-
* @param {string} [forSubadmin]
|
|
33722
|
-
* @param {number} [limit]
|
|
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\'s ID. If you specify an identity that isn\'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.
|
|
33723
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.
|
|
33724
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=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.
|
|
33725
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 \'+\' symbol in their names.
|
|
33726
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**
|
|
33727
|
-
* @param {string} [forSegmentIds]
|
|
33728
|
-
* @param {boolean} [includeUnsegmented] Indicates whether the response list should contain unsegmented access profiles. If
|
|
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 `for-segment-ids` is absent or empty, specifying *include-unsegmented* as `false` results in an error.
|
|
33729
33833
|
* @param {*} [axiosOptions] Override http request option.
|
|
33730
33834
|
* @throws {RequiredError}
|
|
33731
33835
|
*/
|
|
@@ -33750,6 +33854,10 @@ export const AccessProfilesBetaApiAxiosParamCreator = function (configuration?:
|
|
|
33750
33854
|
// oauth required
|
|
33751
33855
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
33752
33856
|
|
|
33857
|
+
// authentication applicationAuth required
|
|
33858
|
+
// oauth required
|
|
33859
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
33860
|
+
|
|
33753
33861
|
if (forSubadmin !== undefined) {
|
|
33754
33862
|
localVarQueryParameter['for-subadmin'] = forSubadmin;
|
|
33755
33863
|
}
|
|
@@ -33900,7 +34008,7 @@ export const AccessProfilesBetaApiFp = function(configuration?: Configuration) {
|
|
|
33900
34008
|
const localVarAxiosParamCreator = AccessProfilesBetaApiAxiosParamCreator(configuration)
|
|
33901
34009
|
return {
|
|
33902
34010
|
/**
|
|
33903
|
-
*
|
|
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.
|
|
33904
34012
|
* @summary Create Access Profile
|
|
33905
34013
|
* @param {AccessProfileBeta} accessProfileBeta
|
|
33906
34014
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -33970,16 +34078,16 @@ export const AccessProfilesBetaApiFp = function(configuration?: Configuration) {
|
|
|
33970
34078
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
33971
34079
|
},
|
|
33972
34080
|
/**
|
|
33973
|
-
*
|
|
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.
|
|
33974
34082
|
* @summary List Access Profiles
|
|
33975
|
-
* @param {string} [forSubadmin]
|
|
33976
|
-
* @param {number} [limit]
|
|
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\'s ID. If you specify an identity that isn\'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.
|
|
33977
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.
|
|
33978
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=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.
|
|
33979
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 \'+\' symbol in their names.
|
|
33980
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**
|
|
33981
|
-
* @param {string} [forSegmentIds]
|
|
33982
|
-
* @param {boolean} [includeUnsegmented] Indicates whether the response list should contain unsegmented access profiles. If
|
|
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 `for-segment-ids` is absent or empty, specifying *include-unsegmented* as `false` results in an error.
|
|
33983
34091
|
* @param {*} [axiosOptions] Override http request option.
|
|
33984
34092
|
* @throws {RequiredError}
|
|
33985
34093
|
*/
|
|
@@ -34027,7 +34135,7 @@ export const AccessProfilesBetaApiFactory = function (configuration?: Configurat
|
|
|
34027
34135
|
const localVarFp = AccessProfilesBetaApiFp(configuration)
|
|
34028
34136
|
return {
|
|
34029
34137
|
/**
|
|
34030
|
-
*
|
|
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.
|
|
34031
34139
|
* @summary Create Access Profile
|
|
34032
34140
|
* @param {AccessProfilesBetaApiCreateAccessProfileRequest} requestParameters Request parameters.
|
|
34033
34141
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -34077,7 +34185,7 @@ export const AccessProfilesBetaApiFactory = function (configuration?: Configurat
|
|
|
34077
34185
|
return localVarFp.getAccessProfileEntitlements(requestParameters.id, requestParameters.limit, requestParameters.offset, requestParameters.count, requestParameters.filters, requestParameters.sorters, axiosOptions).then((request) => request(axios, basePath));
|
|
34078
34186
|
},
|
|
34079
34187
|
/**
|
|
34080
|
-
*
|
|
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.
|
|
34081
34189
|
* @summary List Access Profiles
|
|
34082
34190
|
* @param {AccessProfilesBetaApiListAccessProfilesRequest} requestParameters Request parameters.
|
|
34083
34191
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -34221,14 +34329,14 @@ export interface AccessProfilesBetaApiGetAccessProfileEntitlementsRequest {
|
|
|
34221
34329
|
*/
|
|
34222
34330
|
export interface AccessProfilesBetaApiListAccessProfilesRequest {
|
|
34223
34331
|
/**
|
|
34224
|
-
*
|
|
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\'s ID. If you specify an identity that isn\'t a subadmin, the API returns a 400 Bad Request error.
|
|
34225
34333
|
* @type {string}
|
|
34226
34334
|
* @memberof AccessProfilesBetaApiListAccessProfiles
|
|
34227
34335
|
*/
|
|
34228
34336
|
readonly forSubadmin?: string
|
|
34229
34337
|
|
|
34230
34338
|
/**
|
|
34231
|
-
*
|
|
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.
|
|
34232
34340
|
* @type {number}
|
|
34233
34341
|
* @memberof AccessProfilesBetaApiListAccessProfiles
|
|
34234
34342
|
*/
|
|
@@ -34263,14 +34371,14 @@ export interface AccessProfilesBetaApiListAccessProfilesRequest {
|
|
|
34263
34371
|
readonly sorters?: string
|
|
34264
34372
|
|
|
34265
34373
|
/**
|
|
34266
|
-
*
|
|
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.
|
|
34267
34375
|
* @type {string}
|
|
34268
34376
|
* @memberof AccessProfilesBetaApiListAccessProfiles
|
|
34269
34377
|
*/
|
|
34270
34378
|
readonly forSegmentIds?: string
|
|
34271
34379
|
|
|
34272
34380
|
/**
|
|
34273
|
-
* Indicates whether the response list should contain unsegmented access profiles. If
|
|
34381
|
+
* 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.
|
|
34274
34382
|
* @type {boolean}
|
|
34275
34383
|
* @memberof AccessProfilesBetaApiListAccessProfiles
|
|
34276
34384
|
*/
|
|
@@ -34320,7 +34428,7 @@ export interface AccessProfilesBetaApiUpdateAccessProfilesInBulkRequest {
|
|
|
34320
34428
|
*/
|
|
34321
34429
|
export class AccessProfilesBetaApi extends BaseAPI {
|
|
34322
34430
|
/**
|
|
34323
|
-
*
|
|
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.
|
|
34324
34432
|
* @summary Create Access Profile
|
|
34325
34433
|
* @param {AccessProfilesBetaApiCreateAccessProfileRequest} requestParameters Request parameters.
|
|
34326
34434
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -34380,7 +34488,7 @@ export class AccessProfilesBetaApi extends BaseAPI {
|
|
|
34380
34488
|
}
|
|
34381
34489
|
|
|
34382
34490
|
/**
|
|
34383
|
-
*
|
|
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.
|
|
34384
34492
|
* @summary List Access Profiles
|
|
34385
34493
|
* @param {AccessProfilesBetaApiListAccessProfilesRequest} requestParameters Request parameters.
|
|
34386
34494
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -50068,7 +50176,7 @@ export const IAIAccessRequestRecommendationsBetaApiAxiosParamCreator = function
|
|
|
50068
50176
|
return {
|
|
50069
50177
|
/**
|
|
50070
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.
|
|
50071
|
-
* @summary
|
|
50179
|
+
* @summary Ignore Access Request Recommendation
|
|
50072
50180
|
* @param {AccessRequestRecommendationActionItemDtoBeta} accessRequestRecommendationActionItemDtoBeta The recommended access item to ignore for an identity.
|
|
50073
50181
|
* @param {*} [axiosOptions] Override http request option.
|
|
50074
50182
|
* @throws {RequiredError}
|
|
@@ -50090,11 +50198,11 @@ export const IAIAccessRequestRecommendationsBetaApiAxiosParamCreator = function
|
|
|
50090
50198
|
|
|
50091
50199
|
// authentication userAuth required
|
|
50092
50200
|
// oauth required
|
|
50093
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
50201
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
50094
50202
|
|
|
50095
50203
|
// authentication userAuth required
|
|
50096
50204
|
// oauth required
|
|
50097
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
50205
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
50098
50206
|
|
|
50099
50207
|
|
|
50100
50208
|
|
|
@@ -50112,7 +50220,7 @@ export const IAIAccessRequestRecommendationsBetaApiAxiosParamCreator = function
|
|
|
50112
50220
|
},
|
|
50113
50221
|
/**
|
|
50114
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.
|
|
50115
|
-
* @summary
|
|
50223
|
+
* @summary Accept Access Request Recommendation
|
|
50116
50224
|
* @param {AccessRequestRecommendationActionItemDtoBeta} accessRequestRecommendationActionItemDtoBeta The recommended access item that was requested for an identity.
|
|
50117
50225
|
* @param {*} [axiosOptions] Override http request option.
|
|
50118
50226
|
* @throws {RequiredError}
|
|
@@ -50134,11 +50242,11 @@ export const IAIAccessRequestRecommendationsBetaApiAxiosParamCreator = function
|
|
|
50134
50242
|
|
|
50135
50243
|
// authentication userAuth required
|
|
50136
50244
|
// oauth required
|
|
50137
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
50245
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
50138
50246
|
|
|
50139
50247
|
// authentication userAuth required
|
|
50140
50248
|
// oauth required
|
|
50141
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
50249
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
50142
50250
|
|
|
50143
50251
|
|
|
50144
50252
|
|
|
@@ -50156,7 +50264,7 @@ export const IAIAccessRequestRecommendationsBetaApiAxiosParamCreator = function
|
|
|
50156
50264
|
},
|
|
50157
50265
|
/**
|
|
50158
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.
|
|
50159
|
-
* @summary
|
|
50267
|
+
* @summary Mark Viewed Access Request Recommendations
|
|
50160
50268
|
* @param {AccessRequestRecommendationActionItemDtoBeta} accessRequestRecommendationActionItemDtoBeta The recommended access that was viewed for an identity.
|
|
50161
50269
|
* @param {*} [axiosOptions] Override http request option.
|
|
50162
50270
|
* @throws {RequiredError}
|
|
@@ -50178,11 +50286,11 @@ export const IAIAccessRequestRecommendationsBetaApiAxiosParamCreator = function
|
|
|
50178
50286
|
|
|
50179
50287
|
// authentication userAuth required
|
|
50180
50288
|
// oauth required
|
|
50181
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
50289
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
50182
50290
|
|
|
50183
50291
|
// authentication userAuth required
|
|
50184
50292
|
// oauth required
|
|
50185
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
50293
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
50186
50294
|
|
|
50187
50295
|
|
|
50188
50296
|
|
|
@@ -50200,7 +50308,7 @@ export const IAIAccessRequestRecommendationsBetaApiAxiosParamCreator = function
|
|
|
50200
50308
|
},
|
|
50201
50309
|
/**
|
|
50202
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.
|
|
50203
|
-
* @summary
|
|
50311
|
+
* @summary Bulk Mark Viewed Access Request Recommendations
|
|
50204
50312
|
* @param {Array<AccessRequestRecommendationActionItemDtoBeta>} accessRequestRecommendationActionItemDtoBeta The recommended access items that were viewed for an identity.
|
|
50205
50313
|
* @param {*} [axiosOptions] Override http request option.
|
|
50206
50314
|
* @throws {RequiredError}
|
|
@@ -50222,11 +50330,11 @@ export const IAIAccessRequestRecommendationsBetaApiAxiosParamCreator = function
|
|
|
50222
50330
|
|
|
50223
50331
|
// authentication userAuth required
|
|
50224
50332
|
// oauth required
|
|
50225
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
50333
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
50226
50334
|
|
|
50227
50335
|
// authentication userAuth required
|
|
50228
50336
|
// oauth required
|
|
50229
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
50337
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
50230
50338
|
|
|
50231
50339
|
|
|
50232
50340
|
|
|
@@ -50270,11 +50378,11 @@ export const IAIAccessRequestRecommendationsBetaApiAxiosParamCreator = function
|
|
|
50270
50378
|
|
|
50271
50379
|
// authentication userAuth required
|
|
50272
50380
|
// oauth required
|
|
50273
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
50381
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
50274
50382
|
|
|
50275
50383
|
// authentication userAuth required
|
|
50276
50384
|
// oauth required
|
|
50277
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
50385
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
50278
50386
|
|
|
50279
50387
|
if (identityId !== undefined) {
|
|
50280
50388
|
localVarQueryParameter['identity-id'] = identityId;
|
|
@@ -50317,7 +50425,7 @@ export const IAIAccessRequestRecommendationsBetaApiAxiosParamCreator = function
|
|
|
50317
50425
|
},
|
|
50318
50426
|
/**
|
|
50319
50427
|
* This API returns the list of ignored access request recommendations.
|
|
50320
|
-
* @summary List
|
|
50428
|
+
* @summary List Ignored Access Request Recommendations
|
|
50321
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.
|
|
50322
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.
|
|
50323
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=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.
|
|
@@ -50341,11 +50449,11 @@ export const IAIAccessRequestRecommendationsBetaApiAxiosParamCreator = function
|
|
|
50341
50449
|
|
|
50342
50450
|
// authentication userAuth required
|
|
50343
50451
|
// oauth required
|
|
50344
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
50452
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
50345
50453
|
|
|
50346
50454
|
// authentication userAuth required
|
|
50347
50455
|
// oauth required
|
|
50348
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
50456
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
50349
50457
|
|
|
50350
50458
|
if (limit !== undefined) {
|
|
50351
50459
|
localVarQueryParameter['limit'] = limit;
|
|
@@ -50380,7 +50488,7 @@ export const IAIAccessRequestRecommendationsBetaApiAxiosParamCreator = function
|
|
|
50380
50488
|
},
|
|
50381
50489
|
/**
|
|
50382
50490
|
* This API returns a list of requested access request recommendations.
|
|
50383
|
-
* @summary List
|
|
50491
|
+
* @summary List Accepted Access Request Recommendations
|
|
50384
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.
|
|
50385
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.
|
|
50386
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=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.
|
|
@@ -50404,11 +50512,11 @@ export const IAIAccessRequestRecommendationsBetaApiAxiosParamCreator = function
|
|
|
50404
50512
|
|
|
50405
50513
|
// authentication userAuth required
|
|
50406
50514
|
// oauth required
|
|
50407
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
50515
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
50408
50516
|
|
|
50409
50517
|
// authentication userAuth required
|
|
50410
50518
|
// oauth required
|
|
50411
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
50519
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
50412
50520
|
|
|
50413
50521
|
if (limit !== undefined) {
|
|
50414
50522
|
localVarQueryParameter['limit'] = limit;
|
|
@@ -50443,7 +50551,7 @@ export const IAIAccessRequestRecommendationsBetaApiAxiosParamCreator = function
|
|
|
50443
50551
|
},
|
|
50444
50552
|
/**
|
|
50445
50553
|
* This API returns the list of viewed access request recommendations.
|
|
50446
|
-
* @summary List
|
|
50554
|
+
* @summary List Viewed Access Request Recommendations
|
|
50447
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.
|
|
50448
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.
|
|
50449
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=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.
|
|
@@ -50467,11 +50575,11 @@ export const IAIAccessRequestRecommendationsBetaApiAxiosParamCreator = function
|
|
|
50467
50575
|
|
|
50468
50576
|
// authentication userAuth required
|
|
50469
50577
|
// oauth required
|
|
50470
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
50578
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
50471
50579
|
|
|
50472
50580
|
// authentication userAuth required
|
|
50473
50581
|
// oauth required
|
|
50474
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
50582
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
50475
50583
|
|
|
50476
50584
|
if (limit !== undefined) {
|
|
50477
50585
|
localVarQueryParameter['limit'] = limit;
|
|
@@ -50516,7 +50624,7 @@ export const IAIAccessRequestRecommendationsBetaApiFp = function(configuration?:
|
|
|
50516
50624
|
return {
|
|
50517
50625
|
/**
|
|
50518
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.
|
|
50519
|
-
* @summary
|
|
50627
|
+
* @summary Ignore Access Request Recommendation
|
|
50520
50628
|
* @param {AccessRequestRecommendationActionItemDtoBeta} accessRequestRecommendationActionItemDtoBeta The recommended access item to ignore for an identity.
|
|
50521
50629
|
* @param {*} [axiosOptions] Override http request option.
|
|
50522
50630
|
* @throws {RequiredError}
|
|
@@ -50529,7 +50637,7 @@ export const IAIAccessRequestRecommendationsBetaApiFp = function(configuration?:
|
|
|
50529
50637
|
},
|
|
50530
50638
|
/**
|
|
50531
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.
|
|
50532
|
-
* @summary
|
|
50640
|
+
* @summary Accept Access Request Recommendation
|
|
50533
50641
|
* @param {AccessRequestRecommendationActionItemDtoBeta} accessRequestRecommendationActionItemDtoBeta The recommended access item that was requested for an identity.
|
|
50534
50642
|
* @param {*} [axiosOptions] Override http request option.
|
|
50535
50643
|
* @throws {RequiredError}
|
|
@@ -50542,7 +50650,7 @@ export const IAIAccessRequestRecommendationsBetaApiFp = function(configuration?:
|
|
|
50542
50650
|
},
|
|
50543
50651
|
/**
|
|
50544
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.
|
|
50545
|
-
* @summary
|
|
50653
|
+
* @summary Mark Viewed Access Request Recommendations
|
|
50546
50654
|
* @param {AccessRequestRecommendationActionItemDtoBeta} accessRequestRecommendationActionItemDtoBeta The recommended access that was viewed for an identity.
|
|
50547
50655
|
* @param {*} [axiosOptions] Override http request option.
|
|
50548
50656
|
* @throws {RequiredError}
|
|
@@ -50555,7 +50663,7 @@ export const IAIAccessRequestRecommendationsBetaApiFp = function(configuration?:
|
|
|
50555
50663
|
},
|
|
50556
50664
|
/**
|
|
50557
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.
|
|
50558
|
-
* @summary
|
|
50666
|
+
* @summary Bulk Mark Viewed Access Request Recommendations
|
|
50559
50667
|
* @param {Array<AccessRequestRecommendationActionItemDtoBeta>} accessRequestRecommendationActionItemDtoBeta The recommended access items that were viewed for an identity.
|
|
50560
50668
|
* @param {*} [axiosOptions] Override http request option.
|
|
50561
50669
|
* @throws {RequiredError}
|
|
@@ -50587,7 +50695,7 @@ export const IAIAccessRequestRecommendationsBetaApiFp = function(configuration?:
|
|
|
50587
50695
|
},
|
|
50588
50696
|
/**
|
|
50589
50697
|
* This API returns the list of ignored access request recommendations.
|
|
50590
|
-
* @summary List
|
|
50698
|
+
* @summary List Ignored Access Request Recommendations
|
|
50591
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.
|
|
50592
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.
|
|
50593
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=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.
|
|
@@ -50604,7 +50712,7 @@ export const IAIAccessRequestRecommendationsBetaApiFp = function(configuration?:
|
|
|
50604
50712
|
},
|
|
50605
50713
|
/**
|
|
50606
50714
|
* This API returns a list of requested access request recommendations.
|
|
50607
|
-
* @summary List
|
|
50715
|
+
* @summary List Accepted Access Request Recommendations
|
|
50608
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.
|
|
50609
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.
|
|
50610
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=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.
|
|
@@ -50621,7 +50729,7 @@ export const IAIAccessRequestRecommendationsBetaApiFp = function(configuration?:
|
|
|
50621
50729
|
},
|
|
50622
50730
|
/**
|
|
50623
50731
|
* This API returns the list of viewed access request recommendations.
|
|
50624
|
-
* @summary List
|
|
50732
|
+
* @summary List Viewed Access Request Recommendations
|
|
50625
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.
|
|
50626
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.
|
|
50627
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=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.
|
|
@@ -50648,7 +50756,7 @@ export const IAIAccessRequestRecommendationsBetaApiFactory = function (configura
|
|
|
50648
50756
|
return {
|
|
50649
50757
|
/**
|
|
50650
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.
|
|
50651
|
-
* @summary
|
|
50759
|
+
* @summary Ignore Access Request Recommendation
|
|
50652
50760
|
* @param {IAIAccessRequestRecommendationsBetaApiAddAccessRequestRecommendationsIgnoredItemRequest} requestParameters Request parameters.
|
|
50653
50761
|
* @param {*} [axiosOptions] Override http request option.
|
|
50654
50762
|
* @throws {RequiredError}
|
|
@@ -50658,7 +50766,7 @@ export const IAIAccessRequestRecommendationsBetaApiFactory = function (configura
|
|
|
50658
50766
|
},
|
|
50659
50767
|
/**
|
|
50660
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.
|
|
50661
|
-
* @summary
|
|
50769
|
+
* @summary Accept Access Request Recommendation
|
|
50662
50770
|
* @param {IAIAccessRequestRecommendationsBetaApiAddAccessRequestRecommendationsRequestedItemRequest} requestParameters Request parameters.
|
|
50663
50771
|
* @param {*} [axiosOptions] Override http request option.
|
|
50664
50772
|
* @throws {RequiredError}
|
|
@@ -50668,7 +50776,7 @@ export const IAIAccessRequestRecommendationsBetaApiFactory = function (configura
|
|
|
50668
50776
|
},
|
|
50669
50777
|
/**
|
|
50670
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.
|
|
50671
|
-
* @summary
|
|
50779
|
+
* @summary Mark Viewed Access Request Recommendations
|
|
50672
50780
|
* @param {IAIAccessRequestRecommendationsBetaApiAddAccessRequestRecommendationsViewedItemRequest} requestParameters Request parameters.
|
|
50673
50781
|
* @param {*} [axiosOptions] Override http request option.
|
|
50674
50782
|
* @throws {RequiredError}
|
|
@@ -50678,7 +50786,7 @@ export const IAIAccessRequestRecommendationsBetaApiFactory = function (configura
|
|
|
50678
50786
|
},
|
|
50679
50787
|
/**
|
|
50680
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.
|
|
50681
|
-
* @summary
|
|
50789
|
+
* @summary Bulk Mark Viewed Access Request Recommendations
|
|
50682
50790
|
* @param {IAIAccessRequestRecommendationsBetaApiAddAccessRequestRecommendationsViewedItemsRequest} requestParameters Request parameters.
|
|
50683
50791
|
* @param {*} [axiosOptions] Override http request option.
|
|
50684
50792
|
* @throws {RequiredError}
|
|
@@ -50698,7 +50806,7 @@ export const IAIAccessRequestRecommendationsBetaApiFactory = function (configura
|
|
|
50698
50806
|
},
|
|
50699
50807
|
/**
|
|
50700
50808
|
* This API returns the list of ignored access request recommendations.
|
|
50701
|
-
* @summary List
|
|
50809
|
+
* @summary List Ignored Access Request Recommendations
|
|
50702
50810
|
* @param {IAIAccessRequestRecommendationsBetaApiGetAccessRequestRecommendationsIgnoredItemsRequest} requestParameters Request parameters.
|
|
50703
50811
|
* @param {*} [axiosOptions] Override http request option.
|
|
50704
50812
|
* @throws {RequiredError}
|
|
@@ -50708,7 +50816,7 @@ export const IAIAccessRequestRecommendationsBetaApiFactory = function (configura
|
|
|
50708
50816
|
},
|
|
50709
50817
|
/**
|
|
50710
50818
|
* This API returns a list of requested access request recommendations.
|
|
50711
|
-
* @summary List
|
|
50819
|
+
* @summary List Accepted Access Request Recommendations
|
|
50712
50820
|
* @param {IAIAccessRequestRecommendationsBetaApiGetAccessRequestRecommendationsRequestedItemsRequest} requestParameters Request parameters.
|
|
50713
50821
|
* @param {*} [axiosOptions] Override http request option.
|
|
50714
50822
|
* @throws {RequiredError}
|
|
@@ -50718,7 +50826,7 @@ export const IAIAccessRequestRecommendationsBetaApiFactory = function (configura
|
|
|
50718
50826
|
},
|
|
50719
50827
|
/**
|
|
50720
50828
|
* This API returns the list of viewed access request recommendations.
|
|
50721
|
-
* @summary List
|
|
50829
|
+
* @summary List Viewed Access Request Recommendations
|
|
50722
50830
|
* @param {IAIAccessRequestRecommendationsBetaApiGetAccessRequestRecommendationsViewedItemsRequest} requestParameters Request parameters.
|
|
50723
50831
|
* @param {*} [axiosOptions] Override http request option.
|
|
50724
50832
|
* @throws {RequiredError}
|
|
@@ -50976,7 +51084,7 @@ export interface IAIAccessRequestRecommendationsBetaApiGetAccessRequestRecommend
|
|
|
50976
51084
|
export class IAIAccessRequestRecommendationsBetaApi extends BaseAPI {
|
|
50977
51085
|
/**
|
|
50978
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.
|
|
50979
|
-
* @summary
|
|
51087
|
+
* @summary Ignore Access Request Recommendation
|
|
50980
51088
|
* @param {IAIAccessRequestRecommendationsBetaApiAddAccessRequestRecommendationsIgnoredItemRequest} requestParameters Request parameters.
|
|
50981
51089
|
* @param {*} [axiosOptions] Override http request option.
|
|
50982
51090
|
* @throws {RequiredError}
|
|
@@ -50988,7 +51096,7 @@ export class IAIAccessRequestRecommendationsBetaApi extends BaseAPI {
|
|
|
50988
51096
|
|
|
50989
51097
|
/**
|
|
50990
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.
|
|
50991
|
-
* @summary
|
|
51099
|
+
* @summary Accept Access Request Recommendation
|
|
50992
51100
|
* @param {IAIAccessRequestRecommendationsBetaApiAddAccessRequestRecommendationsRequestedItemRequest} requestParameters Request parameters.
|
|
50993
51101
|
* @param {*} [axiosOptions] Override http request option.
|
|
50994
51102
|
* @throws {RequiredError}
|
|
@@ -51000,7 +51108,7 @@ export class IAIAccessRequestRecommendationsBetaApi extends BaseAPI {
|
|
|
51000
51108
|
|
|
51001
51109
|
/**
|
|
51002
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.
|
|
51003
|
-
* @summary
|
|
51111
|
+
* @summary Mark Viewed Access Request Recommendations
|
|
51004
51112
|
* @param {IAIAccessRequestRecommendationsBetaApiAddAccessRequestRecommendationsViewedItemRequest} requestParameters Request parameters.
|
|
51005
51113
|
* @param {*} [axiosOptions] Override http request option.
|
|
51006
51114
|
* @throws {RequiredError}
|
|
@@ -51012,7 +51120,7 @@ export class IAIAccessRequestRecommendationsBetaApi extends BaseAPI {
|
|
|
51012
51120
|
|
|
51013
51121
|
/**
|
|
51014
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.
|
|
51015
|
-
* @summary
|
|
51123
|
+
* @summary Bulk Mark Viewed Access Request Recommendations
|
|
51016
51124
|
* @param {IAIAccessRequestRecommendationsBetaApiAddAccessRequestRecommendationsViewedItemsRequest} requestParameters Request parameters.
|
|
51017
51125
|
* @param {*} [axiosOptions] Override http request option.
|
|
51018
51126
|
* @throws {RequiredError}
|
|
@@ -51036,7 +51144,7 @@ export class IAIAccessRequestRecommendationsBetaApi extends BaseAPI {
|
|
|
51036
51144
|
|
|
51037
51145
|
/**
|
|
51038
51146
|
* This API returns the list of ignored access request recommendations.
|
|
51039
|
-
* @summary List
|
|
51147
|
+
* @summary List Ignored Access Request Recommendations
|
|
51040
51148
|
* @param {IAIAccessRequestRecommendationsBetaApiGetAccessRequestRecommendationsIgnoredItemsRequest} requestParameters Request parameters.
|
|
51041
51149
|
* @param {*} [axiosOptions] Override http request option.
|
|
51042
51150
|
* @throws {RequiredError}
|
|
@@ -51048,7 +51156,7 @@ export class IAIAccessRequestRecommendationsBetaApi extends BaseAPI {
|
|
|
51048
51156
|
|
|
51049
51157
|
/**
|
|
51050
51158
|
* This API returns a list of requested access request recommendations.
|
|
51051
|
-
* @summary List
|
|
51159
|
+
* @summary List Accepted Access Request Recommendations
|
|
51052
51160
|
* @param {IAIAccessRequestRecommendationsBetaApiGetAccessRequestRecommendationsRequestedItemsRequest} requestParameters Request parameters.
|
|
51053
51161
|
* @param {*} [axiosOptions] Override http request option.
|
|
51054
51162
|
* @throws {RequiredError}
|
|
@@ -51060,7 +51168,7 @@ export class IAIAccessRequestRecommendationsBetaApi extends BaseAPI {
|
|
|
51060
51168
|
|
|
51061
51169
|
/**
|
|
51062
51170
|
* This API returns the list of viewed access request recommendations.
|
|
51063
|
-
* @summary List
|
|
51171
|
+
* @summary List Viewed Access Request Recommendations
|
|
51064
51172
|
* @param {IAIAccessRequestRecommendationsBetaApiGetAccessRequestRecommendationsViewedItemsRequest} requestParameters Request parameters.
|
|
51065
51173
|
* @param {*} [axiosOptions] Override http request option.
|
|
51066
51174
|
* @throws {RequiredError}
|
|
@@ -52973,7 +53081,7 @@ export const IAIRecommendationsBetaApiAxiosParamCreator = function (configuratio
|
|
|
52973
53081
|
return {
|
|
52974
53082
|
/**
|
|
52975
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.
|
|
52976
|
-
* @summary Returns
|
|
53084
|
+
* @summary Returns Recommendation Based on Object
|
|
52977
53085
|
* @param {RecommendationRequestDtoBeta} recommendationRequestDtoBeta
|
|
52978
53086
|
* @param {*} [axiosOptions] Override http request option.
|
|
52979
53087
|
* @throws {RequiredError}
|
|
@@ -53109,7 +53217,7 @@ export const IAIRecommendationsBetaApiFp = function(configuration?: Configuratio
|
|
|
53109
53217
|
return {
|
|
53110
53218
|
/**
|
|
53111
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.
|
|
53112
|
-
* @summary Returns
|
|
53220
|
+
* @summary Returns Recommendation Based on Object
|
|
53113
53221
|
* @param {RecommendationRequestDtoBeta} recommendationRequestDtoBeta
|
|
53114
53222
|
* @param {*} [axiosOptions] Override http request option.
|
|
53115
53223
|
* @throws {RequiredError}
|
|
@@ -53157,7 +53265,7 @@ export const IAIRecommendationsBetaApiFactory = function (configuration?: Config
|
|
|
53157
53265
|
return {
|
|
53158
53266
|
/**
|
|
53159
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.
|
|
53160
|
-
* @summary Returns
|
|
53268
|
+
* @summary Returns Recommendation Based on Object
|
|
53161
53269
|
* @param {IAIRecommendationsBetaApiGetRecommendationsRequest} requestParameters Request parameters.
|
|
53162
53270
|
* @param {*} [axiosOptions] Override http request option.
|
|
53163
53271
|
* @throws {RequiredError}
|
|
@@ -53224,7 +53332,7 @@ export interface IAIRecommendationsBetaApiUpdateRecommendationsConfigRequest {
|
|
|
53224
53332
|
export class IAIRecommendationsBetaApi extends BaseAPI {
|
|
53225
53333
|
/**
|
|
53226
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.
|
|
53227
|
-
* @summary Returns
|
|
53335
|
+
* @summary Returns Recommendation Based on Object
|
|
53228
53336
|
* @param {IAIRecommendationsBetaApiGetRecommendationsRequest} requestParameters Request parameters.
|
|
53229
53337
|
* @param {*} [axiosOptions] Override http request option.
|
|
53230
53338
|
* @throws {RequiredError}
|
|
@@ -74008,12 +74116,12 @@ export class PublicIdentitiesConfigBetaApi extends BaseAPI {
|
|
|
74008
74116
|
export const RequestableObjectsBetaApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
74009
74117
|
return {
|
|
74010
74118
|
/**
|
|
74011
|
-
*
|
|
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.
|
|
74012
74120
|
* @summary Requestable Objects List
|
|
74013
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.
|
|
74014
|
-
* @param {Array<RequestableObjectTypeBeta>} [types] Filters the results to the specified type/types, where each type is one of ROLE or ACCESS_PROFILE
|
|
74015
|
-
* @param {string} [term]
|
|
74016
|
-
* @param {Array<RequestableObjectRequestStatusBeta>} [statuses] Filters the result to the specified status/statuses, where each status is one of AVAILABLE
|
|
74122
|
+
* @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. 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 `term` is provided, then the API will ignore the `filter` query parameter.
|
|
74124
|
+
* @param {Array<RequestableObjectRequestStatusBeta>} [statuses] Filters the result to the specified status/statuses, where each status is one of `AVAILABLE`, `ASSIGNED`, or `PENDING`. Specifying this parameter without also specifying an `identity-id` parameter results in an error. SailPoint may add additional statuses in the future without notice.
|
|
74017
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.
|
|
74018
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.
|
|
74019
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=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.
|
|
@@ -74101,12 +74209,12 @@ export const RequestableObjectsBetaApiFp = function(configuration?: Configuratio
|
|
|
74101
74209
|
const localVarAxiosParamCreator = RequestableObjectsBetaApiAxiosParamCreator(configuration)
|
|
74102
74210
|
return {
|
|
74103
74211
|
/**
|
|
74104
|
-
*
|
|
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.
|
|
74105
74213
|
* @summary Requestable Objects List
|
|
74106
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.
|
|
74107
|
-
* @param {Array<RequestableObjectTypeBeta>} [types] Filters the results to the specified type/types, where each type is one of ROLE or ACCESS_PROFILE
|
|
74108
|
-
* @param {string} [term]
|
|
74109
|
-
* @param {Array<RequestableObjectRequestStatusBeta>} [statuses] Filters the result to the specified status/statuses, where each status is one of AVAILABLE
|
|
74215
|
+
* @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. 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 `term` is provided, then the API will ignore the `filter` query parameter.
|
|
74217
|
+
* @param {Array<RequestableObjectRequestStatusBeta>} [statuses] Filters the result to the specified status/statuses, where each status is one of `AVAILABLE`, `ASSIGNED`, or `PENDING`. Specifying this parameter without also specifying an `identity-id` parameter results in an error. SailPoint may add additional statuses in the future without notice.
|
|
74110
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.
|
|
74111
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.
|
|
74112
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=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.
|
|
@@ -74132,7 +74240,7 @@ export const RequestableObjectsBetaApiFactory = function (configuration?: Config
|
|
|
74132
74240
|
const localVarFp = RequestableObjectsBetaApiFp(configuration)
|
|
74133
74241
|
return {
|
|
74134
74242
|
/**
|
|
74135
|
-
*
|
|
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.
|
|
74136
74244
|
* @summary Requestable Objects List
|
|
74137
74245
|
* @param {RequestableObjectsBetaApiListRequestableObjectsRequest} requestParameters Request parameters.
|
|
74138
74246
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -74158,21 +74266,21 @@ export interface RequestableObjectsBetaApiListRequestableObjectsRequest {
|
|
|
74158
74266
|
readonly identityId?: string
|
|
74159
74267
|
|
|
74160
74268
|
/**
|
|
74161
|
-
* Filters the results to the specified type/types, where each type is one of ROLE or ACCESS_PROFILE
|
|
74269
|
+
* Filters the results to the specified type/types, where each type is one of `ROLE` or `ACCESS_PROFILE`. If absent, all types are returned. SailPoint may add support for additional types in the future without notice.
|
|
74162
74270
|
* @type {Array<RequestableObjectTypeBeta>}
|
|
74163
74271
|
* @memberof RequestableObjectsBetaApiListRequestableObjects
|
|
74164
74272
|
*/
|
|
74165
74273
|
readonly types?: Array<RequestableObjectTypeBeta>
|
|
74166
74274
|
|
|
74167
74275
|
/**
|
|
74168
|
-
*
|
|
74276
|
+
* Allows searching requestable access items with a partial match on the name or description. If `term` is provided, then the API will ignore the `filter` query parameter.
|
|
74169
74277
|
* @type {string}
|
|
74170
74278
|
* @memberof RequestableObjectsBetaApiListRequestableObjects
|
|
74171
74279
|
*/
|
|
74172
74280
|
readonly term?: string
|
|
74173
74281
|
|
|
74174
74282
|
/**
|
|
74175
|
-
* Filters the result to the specified status/statuses, where each status is one of AVAILABLE
|
|
74283
|
+
* Filters the result to the specified status/statuses, where each status is one of `AVAILABLE`, `ASSIGNED`, or `PENDING`. Specifying this parameter without also specifying an `identity-id` parameter results in an error. SailPoint may add additional statuses in the future without notice.
|
|
74176
74284
|
* @type {Array<RequestableObjectRequestStatusBeta>}
|
|
74177
74285
|
* @memberof RequestableObjectsBetaApiListRequestableObjects
|
|
74178
74286
|
*/
|
|
@@ -74222,7 +74330,7 @@ export interface RequestableObjectsBetaApiListRequestableObjectsRequest {
|
|
|
74222
74330
|
*/
|
|
74223
74331
|
export class RequestableObjectsBetaApi extends BaseAPI {
|
|
74224
74332
|
/**
|
|
74225
|
-
*
|
|
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.
|
|
74226
74334
|
* @summary Requestable Objects List
|
|
74227
74335
|
* @param {RequestableObjectsBetaApiListRequestableObjectsRequest} requestParameters Request parameters.
|
|
74228
74336
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -75514,10 +75622,10 @@ export const RolesBetaApiAxiosParamCreator = function (configuration?: Configura
|
|
|
75514
75622
|
};
|
|
75515
75623
|
},
|
|
75516
75624
|
/**
|
|
75517
|
-
*
|
|
75518
|
-
* @summary List
|
|
75519
|
-
* @param {string} id
|
|
75520
|
-
* @param {number} [limit]
|
|
75625
|
+
* Get a list of entitlements associated with a specified role.
|
|
75626
|
+
* @summary List Role\'s Entitlements
|
|
75627
|
+
* @param {string} id Containing role\'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.
|
|
75521
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.
|
|
75522
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=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.
|
|
75523
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*
|
|
@@ -75549,6 +75657,10 @@ export const RolesBetaApiAxiosParamCreator = function (configuration?: Configura
|
|
|
75549
75657
|
// oauth required
|
|
75550
75658
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
75551
75659
|
|
|
75660
|
+
// authentication applicationAuth required
|
|
75661
|
+
// oauth required
|
|
75662
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
75663
|
+
|
|
75552
75664
|
if (limit !== undefined) {
|
|
75553
75665
|
localVarQueryParameter['limit'] = limit;
|
|
75554
75666
|
}
|
|
@@ -75787,10 +75899,10 @@ export const RolesBetaApiFp = function(configuration?: Configuration) {
|
|
|
75787
75899
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
75788
75900
|
},
|
|
75789
75901
|
/**
|
|
75790
|
-
*
|
|
75791
|
-
* @summary List
|
|
75792
|
-
* @param {string} id
|
|
75793
|
-
* @param {number} [limit]
|
|
75902
|
+
* Get a list of entitlements associated with a specified role.
|
|
75903
|
+
* @summary List Role\'s Entitlements
|
|
75904
|
+
* @param {string} id Containing role\'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.
|
|
75794
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.
|
|
75795
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=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.
|
|
75796
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*
|
|
@@ -75899,8 +76011,8 @@ export const RolesBetaApiFactory = function (configuration?: Configuration, base
|
|
|
75899
76011
|
return localVarFp.getRoleAssignedIdentities(requestParameters.id, requestParameters.limit, requestParameters.offset, requestParameters.count, requestParameters.filters, requestParameters.sorters, axiosOptions).then((request) => request(axios, basePath));
|
|
75900
76012
|
},
|
|
75901
76013
|
/**
|
|
75902
|
-
*
|
|
75903
|
-
* @summary List
|
|
76014
|
+
* Get a list of entitlements associated with a specified role.
|
|
76015
|
+
* @summary List Role\'s Entitlements
|
|
75904
76016
|
* @param {RolesBetaApiGetRoleEntitlementsRequest} requestParameters Request parameters.
|
|
75905
76017
|
* @param {*} [axiosOptions] Override http request option.
|
|
75906
76018
|
* @throws {RequiredError}
|
|
@@ -76043,14 +76155,14 @@ export interface RolesBetaApiGetRoleAssignedIdentitiesRequest {
|
|
|
76043
76155
|
*/
|
|
76044
76156
|
export interface RolesBetaApiGetRoleEntitlementsRequest {
|
|
76045
76157
|
/**
|
|
76046
|
-
*
|
|
76158
|
+
* Containing role\'s ID.
|
|
76047
76159
|
* @type {string}
|
|
76048
76160
|
* @memberof RolesBetaApiGetRoleEntitlements
|
|
76049
76161
|
*/
|
|
76050
76162
|
readonly id: string
|
|
76051
76163
|
|
|
76052
76164
|
/**
|
|
76053
|
-
*
|
|
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.
|
|
76054
76166
|
* @type {number}
|
|
76055
76167
|
* @memberof RolesBetaApiGetRoleEntitlements
|
|
76056
76168
|
*/
|
|
@@ -76237,8 +76349,8 @@ export class RolesBetaApi extends BaseAPI {
|
|
|
76237
76349
|
}
|
|
76238
76350
|
|
|
76239
76351
|
/**
|
|
76240
|
-
*
|
|
76241
|
-
* @summary List
|
|
76352
|
+
* Get a list of entitlements associated with a specified role.
|
|
76353
|
+
* @summary List Role\'s Entitlements
|
|
76242
76354
|
* @param {RolesBetaApiGetRoleEntitlementsRequest} requestParameters Request parameters.
|
|
76243
76355
|
* @param {*} [axiosOptions] Override http request option.
|
|
76244
76356
|
* @throws {RequiredError}
|
|
@@ -79467,7 +79579,7 @@ export class SPConfigBetaApi extends BaseAPI {
|
|
|
79467
79579
|
export const SearchAttributeConfigurationBetaApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
79468
79580
|
return {
|
|
79469
79581
|
/**
|
|
79470
|
-
* Create and configure extended search attributes.
|
|
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`.**
|
|
79471
79583
|
* @summary Create Extended Search Attributes
|
|
79472
79584
|
* @param {SearchAttributeConfigBeta} searchAttributeConfigBeta
|
|
79473
79585
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -79490,11 +79602,11 @@ export const SearchAttributeConfigurationBetaApiAxiosParamCreator = function (co
|
|
|
79490
79602
|
|
|
79491
79603
|
// authentication userAuth required
|
|
79492
79604
|
// oauth required
|
|
79493
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
79605
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
79494
79606
|
|
|
79495
79607
|
// authentication userAuth required
|
|
79496
79608
|
// oauth required
|
|
79497
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
79609
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
79498
79610
|
|
|
79499
79611
|
|
|
79500
79612
|
|
|
@@ -79553,12 +79665,14 @@ export const SearchAttributeConfigurationBetaApiAxiosParamCreator = function (co
|
|
|
79553
79665
|
};
|
|
79554
79666
|
},
|
|
79555
79667
|
/**
|
|
79556
|
-
* Get a list of attribute/application
|
|
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.
|
|
79557
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.
|
|
79558
79672
|
* @param {*} [axiosOptions] Override http request option.
|
|
79559
79673
|
* @throws {RequiredError}
|
|
79560
79674
|
*/
|
|
79561
|
-
getSearchAttributeConfig: async (axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
79675
|
+
getSearchAttributeConfig: async (limit?: number, offset?: number, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
79562
79676
|
const localVarPath = `/accounts/search-attribute-config`;
|
|
79563
79677
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
79564
79678
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -79573,11 +79687,19 @@ export const SearchAttributeConfigurationBetaApiAxiosParamCreator = function (co
|
|
|
79573
79687
|
|
|
79574
79688
|
// authentication userAuth required
|
|
79575
79689
|
// oauth required
|
|
79576
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
79690
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
79577
79691
|
|
|
79578
79692
|
// authentication userAuth required
|
|
79579
79693
|
// oauth required
|
|
79580
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
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
|
+
}
|
|
79581
79703
|
|
|
79582
79704
|
|
|
79583
79705
|
|
|
@@ -79691,7 +79813,7 @@ export const SearchAttributeConfigurationBetaApiFp = function(configuration?: Co
|
|
|
79691
79813
|
const localVarAxiosParamCreator = SearchAttributeConfigurationBetaApiAxiosParamCreator(configuration)
|
|
79692
79814
|
return {
|
|
79693
79815
|
/**
|
|
79694
|
-
* Create and configure extended search attributes.
|
|
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`.**
|
|
79695
79817
|
* @summary Create Extended Search Attributes
|
|
79696
79818
|
* @param {SearchAttributeConfigBeta} searchAttributeConfigBeta
|
|
79697
79819
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -79717,13 +79839,15 @@ export const SearchAttributeConfigurationBetaApiFp = function(configuration?: Co
|
|
|
79717
79839
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
79718
79840
|
},
|
|
79719
79841
|
/**
|
|
79720
|
-
* Get a list of attribute/application
|
|
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.
|
|
79721
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.
|
|
79722
79846
|
* @param {*} [axiosOptions] Override http request option.
|
|
79723
79847
|
* @throws {RequiredError}
|
|
79724
79848
|
*/
|
|
79725
|
-
async getSearchAttributeConfig(axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<SearchAttributeConfigBeta>>> {
|
|
79726
|
-
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);
|
|
79727
79851
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
79728
79852
|
const localVarOperationServerBasePath = operationServerMap['SearchAttributeConfigurationBetaApi.getSearchAttributeConfig']?.[localVarOperationServerIndex]?.url;
|
|
79729
79853
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -79766,7 +79890,7 @@ export const SearchAttributeConfigurationBetaApiFactory = function (configuratio
|
|
|
79766
79890
|
const localVarFp = SearchAttributeConfigurationBetaApiFp(configuration)
|
|
79767
79891
|
return {
|
|
79768
79892
|
/**
|
|
79769
|
-
* Create and configure extended search attributes.
|
|
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`.**
|
|
79770
79894
|
* @summary Create Extended Search Attributes
|
|
79771
79895
|
* @param {SearchAttributeConfigurationBetaApiCreateSearchAttributeConfigRequest} requestParameters Request parameters.
|
|
79772
79896
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -79786,13 +79910,14 @@ export const SearchAttributeConfigurationBetaApiFactory = function (configuratio
|
|
|
79786
79910
|
return localVarFp.deleteSearchAttributeConfig(requestParameters.name, axiosOptions).then((request) => request(axios, basePath));
|
|
79787
79911
|
},
|
|
79788
79912
|
/**
|
|
79789
|
-
* Get a list of attribute/application
|
|
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.
|
|
79790
79914
|
* @summary List Extended Search Attributes
|
|
79915
|
+
* @param {SearchAttributeConfigurationBetaApiGetSearchAttributeConfigRequest} requestParameters Request parameters.
|
|
79791
79916
|
* @param {*} [axiosOptions] Override http request option.
|
|
79792
79917
|
* @throws {RequiredError}
|
|
79793
79918
|
*/
|
|
79794
|
-
getSearchAttributeConfig(axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<SearchAttributeConfigBeta>> {
|
|
79795
|
-
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));
|
|
79796
79921
|
},
|
|
79797
79922
|
/**
|
|
79798
79923
|
* Get an extended attribute configuration by name.
|
|
@@ -79845,6 +79970,27 @@ export interface SearchAttributeConfigurationBetaApiDeleteSearchAttributeConfigR
|
|
|
79845
79970
|
readonly name: string
|
|
79846
79971
|
}
|
|
79847
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
|
+
|
|
79848
79994
|
/**
|
|
79849
79995
|
* Request parameters for getSingleSearchAttributeConfig operation in SearchAttributeConfigurationBetaApi.
|
|
79850
79996
|
* @export
|
|
@@ -79888,7 +80034,7 @@ export interface SearchAttributeConfigurationBetaApiPatchSearchAttributeConfigRe
|
|
|
79888
80034
|
*/
|
|
79889
80035
|
export class SearchAttributeConfigurationBetaApi extends BaseAPI {
|
|
79890
80036
|
/**
|
|
79891
|
-
* Create and configure extended search attributes.
|
|
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`.**
|
|
79892
80038
|
* @summary Create Extended Search Attributes
|
|
79893
80039
|
* @param {SearchAttributeConfigurationBetaApiCreateSearchAttributeConfigRequest} requestParameters Request parameters.
|
|
79894
80040
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -79912,14 +80058,15 @@ export class SearchAttributeConfigurationBetaApi extends BaseAPI {
|
|
|
79912
80058
|
}
|
|
79913
80059
|
|
|
79914
80060
|
/**
|
|
79915
|
-
* Get a list of attribute/application
|
|
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.
|
|
79916
80062
|
* @summary List Extended Search Attributes
|
|
80063
|
+
* @param {SearchAttributeConfigurationBetaApiGetSearchAttributeConfigRequest} requestParameters Request parameters.
|
|
79917
80064
|
* @param {*} [axiosOptions] Override http request option.
|
|
79918
80065
|
* @throws {RequiredError}
|
|
79919
80066
|
* @memberof SearchAttributeConfigurationBetaApi
|
|
79920
80067
|
*/
|
|
79921
|
-
public getSearchAttributeConfig(axiosOptions?: RawAxiosRequestConfig) {
|
|
79922
|
-
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));
|
|
79923
80070
|
}
|
|
79924
80071
|
|
|
79925
80072
|
/**
|
|
@@ -91567,10 +91714,11 @@ export const WorkItemsBetaApiAxiosParamCreator = function (configuration?: Confi
|
|
|
91567
91714
|
* This API completes a work item. Either an admin, or the owning/current user must make this request.
|
|
91568
91715
|
* @summary Complete a Work Item
|
|
91569
91716
|
* @param {string} id The ID of the work item
|
|
91717
|
+
* @param {string | null} [body] Body is the request payload to create form definition request
|
|
91570
91718
|
* @param {*} [axiosOptions] Override http request option.
|
|
91571
91719
|
* @throws {RequiredError}
|
|
91572
91720
|
*/
|
|
91573
|
-
completeWorkItem: async (id: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
91721
|
+
completeWorkItem: async (id: string, body?: string | null, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
91574
91722
|
// verify required parameter 'id' is not null or undefined
|
|
91575
91723
|
assertParamExists('completeWorkItem', 'id', id)
|
|
91576
91724
|
const localVarPath = `/work-items/{id}`
|
|
@@ -91596,9 +91744,12 @@ export const WorkItemsBetaApiAxiosParamCreator = function (configuration?: Confi
|
|
|
91596
91744
|
|
|
91597
91745
|
|
|
91598
91746
|
|
|
91747
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
91748
|
+
|
|
91599
91749
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
91600
91750
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
91601
91751
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
|
|
91752
|
+
localVarRequestOptions.data = serializeDataIfNeeded(body, localVarRequestOptions, configuration)
|
|
91602
91753
|
|
|
91603
91754
|
return {
|
|
91604
91755
|
url: toPathString(localVarUrlObj),
|
|
@@ -92122,11 +92273,12 @@ export const WorkItemsBetaApiFp = function(configuration?: Configuration) {
|
|
|
92122
92273
|
* This API completes a work item. Either an admin, or the owning/current user must make this request.
|
|
92123
92274
|
* @summary Complete a Work Item
|
|
92124
92275
|
* @param {string} id The ID of the work item
|
|
92276
|
+
* @param {string | null} [body] Body is the request payload to create form definition request
|
|
92125
92277
|
* @param {*} [axiosOptions] Override http request option.
|
|
92126
92278
|
* @throws {RequiredError}
|
|
92127
92279
|
*/
|
|
92128
|
-
async completeWorkItem(id: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WorkItemsBeta>> {
|
|
92129
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.completeWorkItem(id, axiosOptions);
|
|
92280
|
+
async completeWorkItem(id: string, body?: string | null, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WorkItemsBeta>> {
|
|
92281
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.completeWorkItem(id, body, axiosOptions);
|
|
92130
92282
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
92131
92283
|
const localVarOperationServerBasePath = operationServerMap['WorkItemsBetaApi.completeWorkItem']?.[localVarOperationServerIndex]?.url;
|
|
92132
92284
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -92195,7 +92347,7 @@ export const WorkItemsBetaApiFp = function(configuration?: Configuration) {
|
|
|
92195
92347
|
* @param {*} [axiosOptions] Override http request option.
|
|
92196
92348
|
* @throws {RequiredError}
|
|
92197
92349
|
*/
|
|
92198
|
-
async getWorkItem(id: string, ownerId?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
92350
|
+
async getWorkItem(id: string, ownerId?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>> {
|
|
92199
92351
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getWorkItem(id, ownerId, axiosOptions);
|
|
92200
92352
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
92201
92353
|
const localVarOperationServerBasePath = operationServerMap['WorkItemsBetaApi.getWorkItem']?.[localVarOperationServerIndex]?.url;
|
|
@@ -92309,7 +92461,7 @@ export const WorkItemsBetaApiFactory = function (configuration?: Configuration,
|
|
|
92309
92461
|
* @throws {RequiredError}
|
|
92310
92462
|
*/
|
|
92311
92463
|
completeWorkItem(requestParameters: WorkItemsBetaApiCompleteWorkItemRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<WorkItemsBeta> {
|
|
92312
|
-
return localVarFp.completeWorkItem(requestParameters.id, axiosOptions).then((request) => request(axios, basePath));
|
|
92464
|
+
return localVarFp.completeWorkItem(requestParameters.id, requestParameters.body, axiosOptions).then((request) => request(axios, basePath));
|
|
92313
92465
|
},
|
|
92314
92466
|
/**
|
|
92315
92467
|
* This API forwards a work item to a new owner. Either an admin, or the owning/current user must make this request.
|
|
@@ -92358,7 +92510,7 @@ export const WorkItemsBetaApiFactory = function (configuration?: Configuration,
|
|
|
92358
92510
|
* @param {*} [axiosOptions] Override http request option.
|
|
92359
92511
|
* @throws {RequiredError}
|
|
92360
92512
|
*/
|
|
92361
|
-
getWorkItem(requestParameters: WorkItemsBetaApiGetWorkItemRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<
|
|
92513
|
+
getWorkItem(requestParameters: WorkItemsBetaApiGetWorkItemRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<object> {
|
|
92362
92514
|
return localVarFp.getWorkItem(requestParameters.id, requestParameters.ownerId, axiosOptions).then((request) => request(axios, basePath));
|
|
92363
92515
|
},
|
|
92364
92516
|
/**
|
|
@@ -92461,6 +92613,13 @@ export interface WorkItemsBetaApiCompleteWorkItemRequest {
|
|
|
92461
92613
|
* @memberof WorkItemsBetaApiCompleteWorkItem
|
|
92462
92614
|
*/
|
|
92463
92615
|
readonly id: string
|
|
92616
|
+
|
|
92617
|
+
/**
|
|
92618
|
+
* Body is the request payload to create form definition request
|
|
92619
|
+
* @type {string}
|
|
92620
|
+
* @memberof WorkItemsBetaApiCompleteWorkItem
|
|
92621
|
+
*/
|
|
92622
|
+
readonly body?: string | null
|
|
92464
92623
|
}
|
|
92465
92624
|
|
|
92466
92625
|
/**
|
|
@@ -92713,7 +92872,7 @@ export class WorkItemsBetaApi extends BaseAPI {
|
|
|
92713
92872
|
* @memberof WorkItemsBetaApi
|
|
92714
92873
|
*/
|
|
92715
92874
|
public completeWorkItem(requestParameters: WorkItemsBetaApiCompleteWorkItemRequest, axiosOptions?: RawAxiosRequestConfig) {
|
|
92716
|
-
return WorkItemsBetaApiFp(this.configuration).completeWorkItem(requestParameters.id, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
92875
|
+
return WorkItemsBetaApiFp(this.configuration).completeWorkItem(requestParameters.id, requestParameters.body, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
92717
92876
|
}
|
|
92718
92877
|
|
|
92719
92878
|
/**
|
|
@@ -93107,10 +93266,12 @@ export const WorkReassignmentBetaApiAxiosParamCreator = function (configuration?
|
|
|
93107
93266
|
/**
|
|
93108
93267
|
* Gets all Reassignment configuration for the current org.
|
|
93109
93268
|
* @summary List Reassignment Configurations
|
|
93269
|
+
* @param {number} [limit] Max number of results to return.
|
|
93270
|
+
* @param {number} [offset] Offset into the full result set. Usually specified with *limit* to paginate through the results. Defaults to 0 if not specified.
|
|
93110
93271
|
* @param {*} [axiosOptions] Override http request option.
|
|
93111
93272
|
* @throws {RequiredError}
|
|
93112
93273
|
*/
|
|
93113
|
-
listReassignmentConfigurations: async (axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
93274
|
+
listReassignmentConfigurations: async (limit?: number, offset?: number, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
93114
93275
|
const localVarPath = `/reassignment-configurations`;
|
|
93115
93276
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
93116
93277
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -93131,6 +93292,14 @@ export const WorkReassignmentBetaApiAxiosParamCreator = function (configuration?
|
|
|
93131
93292
|
// oauth required
|
|
93132
93293
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
93133
93294
|
|
|
93295
|
+
if (limit !== undefined) {
|
|
93296
|
+
localVarQueryParameter['limit'] = limit;
|
|
93297
|
+
}
|
|
93298
|
+
|
|
93299
|
+
if (offset !== undefined) {
|
|
93300
|
+
localVarQueryParameter['offset'] = offset;
|
|
93301
|
+
}
|
|
93302
|
+
|
|
93134
93303
|
|
|
93135
93304
|
|
|
93136
93305
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
@@ -93326,11 +93495,13 @@ export const WorkReassignmentBetaApiFp = function(configuration?: Configuration)
|
|
|
93326
93495
|
/**
|
|
93327
93496
|
* Gets all Reassignment configuration for the current org.
|
|
93328
93497
|
* @summary List Reassignment Configurations
|
|
93498
|
+
* @param {number} [limit] Max number of results to return.
|
|
93499
|
+
* @param {number} [offset] Offset into the full result set. Usually specified with *limit* to paginate through the results. Defaults to 0 if not specified.
|
|
93329
93500
|
* @param {*} [axiosOptions] Override http request option.
|
|
93330
93501
|
* @throws {RequiredError}
|
|
93331
93502
|
*/
|
|
93332
|
-
async listReassignmentConfigurations(axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<ConfigurationResponseBeta>>> {
|
|
93333
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.listReassignmentConfigurations(axiosOptions);
|
|
93503
|
+
async listReassignmentConfigurations(limit?: number, offset?: number, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<ConfigurationResponseBeta>>> {
|
|
93504
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listReassignmentConfigurations(limit, offset, axiosOptions);
|
|
93334
93505
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
93335
93506
|
const localVarOperationServerBasePath = operationServerMap['WorkReassignmentBetaApi.listReassignmentConfigurations']?.[localVarOperationServerIndex]?.url;
|
|
93336
93507
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -93433,11 +93604,12 @@ export const WorkReassignmentBetaApiFactory = function (configuration?: Configur
|
|
|
93433
93604
|
/**
|
|
93434
93605
|
* Gets all Reassignment configuration for the current org.
|
|
93435
93606
|
* @summary List Reassignment Configurations
|
|
93607
|
+
* @param {WorkReassignmentBetaApiListReassignmentConfigurationsRequest} requestParameters Request parameters.
|
|
93436
93608
|
* @param {*} [axiosOptions] Override http request option.
|
|
93437
93609
|
* @throws {RequiredError}
|
|
93438
93610
|
*/
|
|
93439
|
-
listReassignmentConfigurations(axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<ConfigurationResponseBeta>> {
|
|
93440
|
-
return localVarFp.listReassignmentConfigurations(axiosOptions).then((request) => request(axios, basePath));
|
|
93611
|
+
listReassignmentConfigurations(requestParameters: WorkReassignmentBetaApiListReassignmentConfigurationsRequest = {}, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<ConfigurationResponseBeta>> {
|
|
93612
|
+
return localVarFp.listReassignmentConfigurations(requestParameters.limit, requestParameters.offset, axiosOptions).then((request) => request(axios, basePath));
|
|
93441
93613
|
},
|
|
93442
93614
|
/**
|
|
93443
93615
|
* Replaces existing Reassignment configuration for an identity with the newly provided configuration.
|
|
@@ -93539,6 +93711,27 @@ export interface WorkReassignmentBetaApiGetReassignmentConfigurationRequest {
|
|
|
93539
93711
|
readonly identityId: string
|
|
93540
93712
|
}
|
|
93541
93713
|
|
|
93714
|
+
/**
|
|
93715
|
+
* Request parameters for listReassignmentConfigurations operation in WorkReassignmentBetaApi.
|
|
93716
|
+
* @export
|
|
93717
|
+
* @interface WorkReassignmentBetaApiListReassignmentConfigurationsRequest
|
|
93718
|
+
*/
|
|
93719
|
+
export interface WorkReassignmentBetaApiListReassignmentConfigurationsRequest {
|
|
93720
|
+
/**
|
|
93721
|
+
* Max number of results to return.
|
|
93722
|
+
* @type {number}
|
|
93723
|
+
* @memberof WorkReassignmentBetaApiListReassignmentConfigurations
|
|
93724
|
+
*/
|
|
93725
|
+
readonly limit?: number
|
|
93726
|
+
|
|
93727
|
+
/**
|
|
93728
|
+
* Offset into the full result set. Usually specified with *limit* to paginate through the results. Defaults to 0 if not specified.
|
|
93729
|
+
* @type {number}
|
|
93730
|
+
* @memberof WorkReassignmentBetaApiListReassignmentConfigurations
|
|
93731
|
+
*/
|
|
93732
|
+
readonly offset?: number
|
|
93733
|
+
}
|
|
93734
|
+
|
|
93542
93735
|
/**
|
|
93543
93736
|
* Request parameters for putReassignmentConfig operation in WorkReassignmentBetaApi.
|
|
93544
93737
|
* @export
|
|
@@ -93654,12 +93847,13 @@ export class WorkReassignmentBetaApi extends BaseAPI {
|
|
|
93654
93847
|
/**
|
|
93655
93848
|
* Gets all Reassignment configuration for the current org.
|
|
93656
93849
|
* @summary List Reassignment Configurations
|
|
93850
|
+
* @param {WorkReassignmentBetaApiListReassignmentConfigurationsRequest} requestParameters Request parameters.
|
|
93657
93851
|
* @param {*} [axiosOptions] Override http request option.
|
|
93658
93852
|
* @throws {RequiredError}
|
|
93659
93853
|
* @memberof WorkReassignmentBetaApi
|
|
93660
93854
|
*/
|
|
93661
|
-
public listReassignmentConfigurations(axiosOptions?: RawAxiosRequestConfig) {
|
|
93662
|
-
return WorkReassignmentBetaApiFp(this.configuration).listReassignmentConfigurations(axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
93855
|
+
public listReassignmentConfigurations(requestParameters: WorkReassignmentBetaApiListReassignmentConfigurationsRequest = {}, axiosOptions?: RawAxiosRequestConfig) {
|
|
93856
|
+
return WorkReassignmentBetaApiFp(this.configuration).listReassignmentConfigurations(requestParameters.limit, requestParameters.offset, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
93663
93857
|
}
|
|
93664
93858
|
|
|
93665
93859
|
/**
|