sailpoint-api-client 1.4.15 → 1.4.16
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/beta/README.md +2 -2
- package/beta/api.ts +514 -389
- package/beta/common.ts +2 -2
- package/beta/package.json +1 -1
- package/dist/beta/api.d.ts +462 -363
- package/dist/beta/api.js +181 -126
- package/dist/beta/api.js.map +1 -1
- package/dist/beta/common.js +1 -1
- package/dist/v2024/api.d.ts +860 -124
- package/dist/v2024/api.js +364 -131
- package/dist/v2024/api.js.map +1 -1
- package/dist/v2024/common.js +1 -1
- package/dist/v3/api.d.ts +180 -65
- package/dist/v3/api.js +87 -62
- package/dist/v3/api.js.map +1 -1
- package/dist/v3/common.js +1 -1
- package/package.json +7 -2
- package/v2024/README.md +2 -2
- package/v2024/api.ts +994 -144
- package/v2024/common.ts +2 -2
- package/v2024/package.json +1 -1
- package/v3/README.md +2 -2
- package/v3/api.ts +202 -72
- package/v3/common.ts +2 -2
- package/v3/package.json +1 -1
package/dist/beta/api.d.ts
CHANGED
|
@@ -263,25 +263,25 @@ export interface AccessItemAppResponseBeta {
|
|
|
263
263
|
'appRoleId'?: string;
|
|
264
264
|
}
|
|
265
265
|
/**
|
|
266
|
-
*
|
|
266
|
+
*
|
|
267
267
|
* @export
|
|
268
268
|
* @interface AccessItemApproverDtoBeta
|
|
269
269
|
*/
|
|
270
270
|
export interface AccessItemApproverDtoBeta {
|
|
271
271
|
/**
|
|
272
|
-
* DTO type of identity who approved the access item request.
|
|
272
|
+
* DTO type of the identity who approved the access item request.
|
|
273
273
|
* @type {string}
|
|
274
274
|
* @memberof AccessItemApproverDtoBeta
|
|
275
275
|
*/
|
|
276
276
|
'type'?: AccessItemApproverDtoBetaTypeBeta;
|
|
277
277
|
/**
|
|
278
|
-
* ID of identity who approved the access item request.
|
|
278
|
+
* ID of the identity who approved the access item request.
|
|
279
279
|
* @type {string}
|
|
280
280
|
* @memberof AccessItemApproverDtoBeta
|
|
281
281
|
*/
|
|
282
282
|
'id'?: string;
|
|
283
283
|
/**
|
|
284
|
-
*
|
|
284
|
+
* Name of the identity who approved the access item request.
|
|
285
285
|
* @type {string}
|
|
286
286
|
* @memberof AccessItemApproverDtoBeta
|
|
287
287
|
*/
|
|
@@ -539,6 +539,35 @@ export interface AccessItemRemovedBeta {
|
|
|
539
539
|
*/
|
|
540
540
|
'governanceEvent'?: CorrelatedGovernanceEventBeta;
|
|
541
541
|
}
|
|
542
|
+
/**
|
|
543
|
+
* Identity whom the access item is requested for.
|
|
544
|
+
* @export
|
|
545
|
+
* @interface AccessItemRequestedForDto1Beta
|
|
546
|
+
*/
|
|
547
|
+
export interface AccessItemRequestedForDto1Beta {
|
|
548
|
+
/**
|
|
549
|
+
* DTO type of the identity whom the access item is requested for.
|
|
550
|
+
* @type {string}
|
|
551
|
+
* @memberof AccessItemRequestedForDto1Beta
|
|
552
|
+
*/
|
|
553
|
+
'type'?: AccessItemRequestedForDto1BetaTypeBeta;
|
|
554
|
+
/**
|
|
555
|
+
* ID of the identity whom the access item is requested for.
|
|
556
|
+
* @type {string}
|
|
557
|
+
* @memberof AccessItemRequestedForDto1Beta
|
|
558
|
+
*/
|
|
559
|
+
'id'?: string;
|
|
560
|
+
/**
|
|
561
|
+
* Name of the identity whom the access item is requested for.
|
|
562
|
+
* @type {string}
|
|
563
|
+
* @memberof AccessItemRequestedForDto1Beta
|
|
564
|
+
*/
|
|
565
|
+
'name'?: string;
|
|
566
|
+
}
|
|
567
|
+
export declare const AccessItemRequestedForDto1BetaTypeBeta: {
|
|
568
|
+
readonly Identity: "IDENTITY";
|
|
569
|
+
};
|
|
570
|
+
export type AccessItemRequestedForDto1BetaTypeBeta = typeof AccessItemRequestedForDto1BetaTypeBeta[keyof typeof AccessItemRequestedForDto1BetaTypeBeta];
|
|
542
571
|
/**
|
|
543
572
|
* Identity the access item is requested for.
|
|
544
573
|
* @export
|
|
@@ -597,6 +626,35 @@ export declare const AccessItemRequesterBetaTypeBeta: {
|
|
|
597
626
|
readonly Identity: "IDENTITY";
|
|
598
627
|
};
|
|
599
628
|
export type AccessItemRequesterBetaTypeBeta = typeof AccessItemRequesterBetaTypeBeta[keyof typeof AccessItemRequesterBetaTypeBeta];
|
|
629
|
+
/**
|
|
630
|
+
* Access item requester\'s identity.
|
|
631
|
+
* @export
|
|
632
|
+
* @interface AccessItemRequesterDto1Beta
|
|
633
|
+
*/
|
|
634
|
+
export interface AccessItemRequesterDto1Beta {
|
|
635
|
+
/**
|
|
636
|
+
* Access item requester\'s DTO type.
|
|
637
|
+
* @type {string}
|
|
638
|
+
* @memberof AccessItemRequesterDto1Beta
|
|
639
|
+
*/
|
|
640
|
+
'type'?: AccessItemRequesterDto1BetaTypeBeta;
|
|
641
|
+
/**
|
|
642
|
+
* Access item requester\'s identity ID.
|
|
643
|
+
* @type {string}
|
|
644
|
+
* @memberof AccessItemRequesterDto1Beta
|
|
645
|
+
*/
|
|
646
|
+
'id'?: string;
|
|
647
|
+
/**
|
|
648
|
+
* Access item requester\'s name.
|
|
649
|
+
* @type {string}
|
|
650
|
+
* @memberof AccessItemRequesterDto1Beta
|
|
651
|
+
*/
|
|
652
|
+
'name'?: string;
|
|
653
|
+
}
|
|
654
|
+
export declare const AccessItemRequesterDto1BetaTypeBeta: {
|
|
655
|
+
readonly Identity: "IDENTITY";
|
|
656
|
+
};
|
|
657
|
+
export type AccessItemRequesterDto1BetaTypeBeta = typeof AccessItemRequesterDto1BetaTypeBeta[keyof typeof AccessItemRequesterDto1BetaTypeBeta];
|
|
600
658
|
/**
|
|
601
659
|
* Access item requester\'s identity.
|
|
602
660
|
* @export
|
|
@@ -1319,29 +1377,29 @@ export type AccessRequestDynamicApprover1BetaTypeBeta = typeof AccessRequestDyna
|
|
|
1319
1377
|
*/
|
|
1320
1378
|
export interface AccessRequestDynamicApproverBeta {
|
|
1321
1379
|
/**
|
|
1322
|
-
*
|
|
1380
|
+
* 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.
|
|
1323
1381
|
* @type {string}
|
|
1324
1382
|
* @memberof AccessRequestDynamicApproverBeta
|
|
1325
1383
|
*/
|
|
1326
1384
|
'accessRequestId': string;
|
|
1327
1385
|
/**
|
|
1328
1386
|
* Identities access was requested for.
|
|
1329
|
-
* @type {Array<
|
|
1387
|
+
* @type {Array<AccessItemRequestedForDto1Beta>}
|
|
1330
1388
|
* @memberof AccessRequestDynamicApproverBeta
|
|
1331
1389
|
*/
|
|
1332
|
-
'requestedFor': Array<
|
|
1390
|
+
'requestedFor': Array<AccessItemRequestedForDto1Beta>;
|
|
1333
1391
|
/**
|
|
1334
|
-
*
|
|
1392
|
+
* Requested access items.
|
|
1335
1393
|
* @type {Array<AccessRequestDynamicApproverRequestedItemsInnerBeta>}
|
|
1336
1394
|
* @memberof AccessRequestDynamicApproverBeta
|
|
1337
1395
|
*/
|
|
1338
1396
|
'requestedItems': Array<AccessRequestDynamicApproverRequestedItemsInnerBeta>;
|
|
1339
1397
|
/**
|
|
1340
1398
|
*
|
|
1341
|
-
* @type {
|
|
1399
|
+
* @type {AccessItemRequesterDto1Beta}
|
|
1342
1400
|
* @memberof AccessRequestDynamicApproverBeta
|
|
1343
1401
|
*/
|
|
1344
|
-
'requestedBy':
|
|
1402
|
+
'requestedBy': AccessItemRequesterDto1Beta;
|
|
1345
1403
|
}
|
|
1346
1404
|
/**
|
|
1347
1405
|
*
|
|
@@ -1350,37 +1408,37 @@ export interface AccessRequestDynamicApproverBeta {
|
|
|
1350
1408
|
*/
|
|
1351
1409
|
export interface AccessRequestDynamicApproverRequestedItemsInnerBeta {
|
|
1352
1410
|
/**
|
|
1353
|
-
*
|
|
1411
|
+
* Access item\'s unique identifier.
|
|
1354
1412
|
* @type {string}
|
|
1355
1413
|
* @memberof AccessRequestDynamicApproverRequestedItemsInnerBeta
|
|
1356
1414
|
*/
|
|
1357
1415
|
'id': string;
|
|
1358
1416
|
/**
|
|
1359
|
-
*
|
|
1417
|
+
* Access item\'s name.
|
|
1360
1418
|
* @type {string}
|
|
1361
1419
|
* @memberof AccessRequestDynamicApproverRequestedItemsInnerBeta
|
|
1362
1420
|
*/
|
|
1363
1421
|
'name': string;
|
|
1364
1422
|
/**
|
|
1365
|
-
*
|
|
1423
|
+
* Access item\'s extended description.
|
|
1366
1424
|
* @type {string}
|
|
1367
1425
|
* @memberof AccessRequestDynamicApproverRequestedItemsInnerBeta
|
|
1368
1426
|
*/
|
|
1369
1427
|
'description'?: string | null;
|
|
1370
1428
|
/**
|
|
1371
|
-
*
|
|
1429
|
+
* Type of access item being requested.
|
|
1372
1430
|
* @type {object}
|
|
1373
1431
|
* @memberof AccessRequestDynamicApproverRequestedItemsInnerBeta
|
|
1374
1432
|
*/
|
|
1375
1433
|
'type': AccessRequestDynamicApproverRequestedItemsInnerBetaTypeBeta;
|
|
1376
1434
|
/**
|
|
1377
|
-
*
|
|
1435
|
+
* Action to perform on the requested access item.
|
|
1378
1436
|
* @type {object}
|
|
1379
1437
|
* @memberof AccessRequestDynamicApproverRequestedItemsInnerBeta
|
|
1380
1438
|
*/
|
|
1381
1439
|
'operation': AccessRequestDynamicApproverRequestedItemsInnerBetaOperationBeta;
|
|
1382
1440
|
/**
|
|
1383
|
-
*
|
|
1441
|
+
* Comment from the requester about why the access is necessary.
|
|
1384
1442
|
* @type {string}
|
|
1385
1443
|
* @memberof AccessRequestDynamicApproverRequestedItemsInnerBeta
|
|
1386
1444
|
*/
|
|
@@ -1565,59 +1623,30 @@ export type AccessRequestPhasesBetaResultBeta = typeof AccessRequestPhasesBetaRe
|
|
|
1565
1623
|
*/
|
|
1566
1624
|
export interface AccessRequestPostApprovalBeta {
|
|
1567
1625
|
/**
|
|
1568
|
-
*
|
|
1626
|
+
* Access request\'s unique ID.
|
|
1569
1627
|
* @type {string}
|
|
1570
1628
|
* @memberof AccessRequestPostApprovalBeta
|
|
1571
1629
|
*/
|
|
1572
1630
|
'accessRequestId': string;
|
|
1573
1631
|
/**
|
|
1574
|
-
* Identities access was requested for.
|
|
1575
|
-
* @type {Array<
|
|
1632
|
+
* Identities whom access was requested for.
|
|
1633
|
+
* @type {Array<AccessItemRequestedForDto1Beta>}
|
|
1576
1634
|
* @memberof AccessRequestPostApprovalBeta
|
|
1577
1635
|
*/
|
|
1578
|
-
'requestedFor': Array<
|
|
1636
|
+
'requestedFor': Array<AccessItemRequestedForDto1Beta>;
|
|
1579
1637
|
/**
|
|
1580
|
-
* Details
|
|
1638
|
+
* Details about the outcome of each requested access item.
|
|
1581
1639
|
* @type {Array<AccessRequestPostApprovalRequestedItemsStatusInnerBeta>}
|
|
1582
1640
|
* @memberof AccessRequestPostApprovalBeta
|
|
1583
1641
|
*/
|
|
1584
1642
|
'requestedItemsStatus': Array<AccessRequestPostApprovalRequestedItemsStatusInnerBeta>;
|
|
1585
1643
|
/**
|
|
1586
1644
|
*
|
|
1587
|
-
* @type {
|
|
1645
|
+
* @type {AccessItemRequesterDto1Beta}
|
|
1588
1646
|
* @memberof AccessRequestPostApprovalBeta
|
|
1589
1647
|
*/
|
|
1590
|
-
'requestedBy':
|
|
1648
|
+
'requestedBy': AccessItemRequesterDto1Beta;
|
|
1591
1649
|
}
|
|
1592
|
-
/**
|
|
1593
|
-
* The identity of the approver.
|
|
1594
|
-
* @export
|
|
1595
|
-
* @interface AccessRequestPostApprovalRequestedItemsStatusInnerApprovalInfoInnerApproverBeta
|
|
1596
|
-
*/
|
|
1597
|
-
export interface AccessRequestPostApprovalRequestedItemsStatusInnerApprovalInfoInnerApproverBeta {
|
|
1598
|
-
/**
|
|
1599
|
-
* The type of object that is referenced
|
|
1600
|
-
* @type {object}
|
|
1601
|
-
* @memberof AccessRequestPostApprovalRequestedItemsStatusInnerApprovalInfoInnerApproverBeta
|
|
1602
|
-
*/
|
|
1603
|
-
'type': AccessRequestPostApprovalRequestedItemsStatusInnerApprovalInfoInnerApproverBetaTypeBeta;
|
|
1604
|
-
/**
|
|
1605
|
-
* ID of identity who approved the access item request.
|
|
1606
|
-
* @type {string}
|
|
1607
|
-
* @memberof AccessRequestPostApprovalRequestedItemsStatusInnerApprovalInfoInnerApproverBeta
|
|
1608
|
-
*/
|
|
1609
|
-
'id': string;
|
|
1610
|
-
/**
|
|
1611
|
-
* Human-readable display name of identity who approved the access item request.
|
|
1612
|
-
* @type {string}
|
|
1613
|
-
* @memberof AccessRequestPostApprovalRequestedItemsStatusInnerApprovalInfoInnerApproverBeta
|
|
1614
|
-
*/
|
|
1615
|
-
'name': string;
|
|
1616
|
-
}
|
|
1617
|
-
export declare const AccessRequestPostApprovalRequestedItemsStatusInnerApprovalInfoInnerApproverBetaTypeBeta: {
|
|
1618
|
-
readonly Identity: "IDENTITY";
|
|
1619
|
-
};
|
|
1620
|
-
export type AccessRequestPostApprovalRequestedItemsStatusInnerApprovalInfoInnerApproverBetaTypeBeta = typeof AccessRequestPostApprovalRequestedItemsStatusInnerApprovalInfoInnerApproverBetaTypeBeta[keyof typeof AccessRequestPostApprovalRequestedItemsStatusInnerApprovalInfoInnerApproverBetaTypeBeta];
|
|
1621
1650
|
/**
|
|
1622
1651
|
*
|
|
1623
1652
|
* @export
|
|
@@ -1625,29 +1654,29 @@ export type AccessRequestPostApprovalRequestedItemsStatusInnerApprovalInfoInnerA
|
|
|
1625
1654
|
*/
|
|
1626
1655
|
export interface AccessRequestPostApprovalRequestedItemsStatusInnerApprovalInfoInnerBeta {
|
|
1627
1656
|
/**
|
|
1628
|
-
*
|
|
1657
|
+
* Approver\'s comment.
|
|
1629
1658
|
* @type {string}
|
|
1630
1659
|
* @memberof AccessRequestPostApprovalRequestedItemsStatusInnerApprovalInfoInnerBeta
|
|
1631
1660
|
*/
|
|
1632
1661
|
'approvalComment'?: string | null;
|
|
1633
1662
|
/**
|
|
1634
|
-
*
|
|
1663
|
+
* Approver\'s final decision.
|
|
1635
1664
|
* @type {object}
|
|
1636
1665
|
* @memberof AccessRequestPostApprovalRequestedItemsStatusInnerApprovalInfoInnerBeta
|
|
1637
1666
|
*/
|
|
1638
1667
|
'approvalDecision': AccessRequestPostApprovalRequestedItemsStatusInnerApprovalInfoInnerBetaApprovalDecisionBeta;
|
|
1639
1668
|
/**
|
|
1640
|
-
*
|
|
1669
|
+
* Approver\'s name.
|
|
1641
1670
|
* @type {string}
|
|
1642
1671
|
* @memberof AccessRequestPostApprovalRequestedItemsStatusInnerApprovalInfoInnerBeta
|
|
1643
1672
|
*/
|
|
1644
1673
|
'approverName': string;
|
|
1645
1674
|
/**
|
|
1646
|
-
*
|
|
1647
|
-
* @type {
|
|
1675
|
+
* Approver\'s identity.
|
|
1676
|
+
* @type {AccessItemApproverDtoBeta}
|
|
1648
1677
|
* @memberof AccessRequestPostApprovalRequestedItemsStatusInnerApprovalInfoInnerBeta
|
|
1649
1678
|
*/
|
|
1650
|
-
'approver':
|
|
1679
|
+
'approver': AccessItemApproverDtoBeta;
|
|
1651
1680
|
}
|
|
1652
1681
|
export declare const AccessRequestPostApprovalRequestedItemsStatusInnerApprovalInfoInnerBetaApprovalDecisionBeta: {
|
|
1653
1682
|
readonly Approved: "APPROVED";
|
|
@@ -1661,37 +1690,37 @@ export type AccessRequestPostApprovalRequestedItemsStatusInnerApprovalInfoInnerB
|
|
|
1661
1690
|
*/
|
|
1662
1691
|
export interface AccessRequestPostApprovalRequestedItemsStatusInnerBeta {
|
|
1663
1692
|
/**
|
|
1664
|
-
*
|
|
1693
|
+
* Access item\'s unique ID.
|
|
1665
1694
|
* @type {string}
|
|
1666
1695
|
* @memberof AccessRequestPostApprovalRequestedItemsStatusInnerBeta
|
|
1667
1696
|
*/
|
|
1668
1697
|
'id': string;
|
|
1669
1698
|
/**
|
|
1670
|
-
*
|
|
1699
|
+
* Access item\'s name.
|
|
1671
1700
|
* @type {string}
|
|
1672
1701
|
* @memberof AccessRequestPostApprovalRequestedItemsStatusInnerBeta
|
|
1673
1702
|
*/
|
|
1674
1703
|
'name': string;
|
|
1675
1704
|
/**
|
|
1676
|
-
*
|
|
1705
|
+
* Access item\'s description.
|
|
1677
1706
|
* @type {string}
|
|
1678
1707
|
* @memberof AccessRequestPostApprovalRequestedItemsStatusInnerBeta
|
|
1679
1708
|
*/
|
|
1680
1709
|
'description'?: string | null;
|
|
1681
1710
|
/**
|
|
1682
|
-
*
|
|
1711
|
+
* Access item\'s type.
|
|
1683
1712
|
* @type {object}
|
|
1684
1713
|
* @memberof AccessRequestPostApprovalRequestedItemsStatusInnerBeta
|
|
1685
1714
|
*/
|
|
1686
1715
|
'type': AccessRequestPostApprovalRequestedItemsStatusInnerBetaTypeBeta;
|
|
1687
1716
|
/**
|
|
1688
|
-
*
|
|
1717
|
+
* Action to perform on the requested access item.
|
|
1689
1718
|
* @type {object}
|
|
1690
1719
|
* @memberof AccessRequestPostApprovalRequestedItemsStatusInnerBeta
|
|
1691
1720
|
*/
|
|
1692
1721
|
'operation': AccessRequestPostApprovalRequestedItemsStatusInnerBetaOperationBeta;
|
|
1693
1722
|
/**
|
|
1694
|
-
*
|
|
1723
|
+
* Comment from the identity requesting access.
|
|
1695
1724
|
* @type {string}
|
|
1696
1725
|
* @memberof AccessRequestPostApprovalRequestedItemsStatusInnerBeta
|
|
1697
1726
|
*/
|
|
@@ -1705,7 +1734,7 @@ export interface AccessRequestPostApprovalRequestedItemsStatusInnerBeta {
|
|
|
1705
1734
|
[key: string]: any;
|
|
1706
1735
|
} | null;
|
|
1707
1736
|
/**
|
|
1708
|
-
*
|
|
1737
|
+
* List of approvers for the access request.
|
|
1709
1738
|
* @type {Array<AccessRequestPostApprovalRequestedItemsStatusInnerApprovalInfoInnerBeta>}
|
|
1710
1739
|
* @memberof AccessRequestPostApprovalRequestedItemsStatusInnerBeta
|
|
1711
1740
|
*/
|
|
@@ -1754,29 +1783,29 @@ export interface AccessRequestPreApproval1Beta {
|
|
|
1754
1783
|
*/
|
|
1755
1784
|
export interface AccessRequestPreApprovalBeta {
|
|
1756
1785
|
/**
|
|
1757
|
-
*
|
|
1786
|
+
* Access request\'s unique ID.
|
|
1758
1787
|
* @type {string}
|
|
1759
1788
|
* @memberof AccessRequestPreApprovalBeta
|
|
1760
1789
|
*/
|
|
1761
1790
|
'accessRequestId': string;
|
|
1762
1791
|
/**
|
|
1763
|
-
* Identities access was requested for.
|
|
1764
|
-
* @type {Array<
|
|
1792
|
+
* Identities whom access was requested for.
|
|
1793
|
+
* @type {Array<AccessItemRequestedForDto1Beta>}
|
|
1765
1794
|
* @memberof AccessRequestPreApprovalBeta
|
|
1766
1795
|
*/
|
|
1767
|
-
'requestedFor': Array<
|
|
1796
|
+
'requestedFor': Array<AccessItemRequestedForDto1Beta>;
|
|
1768
1797
|
/**
|
|
1769
|
-
* Details
|
|
1798
|
+
* Details about each requested access item.
|
|
1770
1799
|
* @type {Array<AccessRequestPreApprovalRequestedItemsInnerBeta>}
|
|
1771
1800
|
* @memberof AccessRequestPreApprovalBeta
|
|
1772
1801
|
*/
|
|
1773
1802
|
'requestedItems': Array<AccessRequestPreApprovalRequestedItemsInnerBeta>;
|
|
1774
1803
|
/**
|
|
1775
1804
|
*
|
|
1776
|
-
* @type {
|
|
1805
|
+
* @type {AccessItemRequesterDto1Beta}
|
|
1777
1806
|
* @memberof AccessRequestPreApprovalBeta
|
|
1778
1807
|
*/
|
|
1779
|
-
'requestedBy':
|
|
1808
|
+
'requestedBy': AccessItemRequesterDto1Beta;
|
|
1780
1809
|
}
|
|
1781
1810
|
/**
|
|
1782
1811
|
*
|
|
@@ -1785,37 +1814,37 @@ export interface AccessRequestPreApprovalBeta {
|
|
|
1785
1814
|
*/
|
|
1786
1815
|
export interface AccessRequestPreApprovalRequestedItemsInnerBeta {
|
|
1787
1816
|
/**
|
|
1788
|
-
*
|
|
1817
|
+
* Access item\'s unique ID.
|
|
1789
1818
|
* @type {string}
|
|
1790
1819
|
* @memberof AccessRequestPreApprovalRequestedItemsInnerBeta
|
|
1791
1820
|
*/
|
|
1792
1821
|
'id': string;
|
|
1793
1822
|
/**
|
|
1794
|
-
*
|
|
1823
|
+
* Access item\'s name.
|
|
1795
1824
|
* @type {string}
|
|
1796
1825
|
* @memberof AccessRequestPreApprovalRequestedItemsInnerBeta
|
|
1797
1826
|
*/
|
|
1798
1827
|
'name': string;
|
|
1799
1828
|
/**
|
|
1800
|
-
*
|
|
1829
|
+
* Access item\'s description.
|
|
1801
1830
|
* @type {string}
|
|
1802
1831
|
* @memberof AccessRequestPreApprovalRequestedItemsInnerBeta
|
|
1803
1832
|
*/
|
|
1804
1833
|
'description'?: string | null;
|
|
1805
1834
|
/**
|
|
1806
|
-
*
|
|
1835
|
+
* Access item\'s type.
|
|
1807
1836
|
* @type {object}
|
|
1808
1837
|
* @memberof AccessRequestPreApprovalRequestedItemsInnerBeta
|
|
1809
1838
|
*/
|
|
1810
1839
|
'type': AccessRequestPreApprovalRequestedItemsInnerBetaTypeBeta;
|
|
1811
1840
|
/**
|
|
1812
|
-
*
|
|
1841
|
+
* Action to perform on the access item.
|
|
1813
1842
|
* @type {object}
|
|
1814
1843
|
* @memberof AccessRequestPreApprovalRequestedItemsInnerBeta
|
|
1815
1844
|
*/
|
|
1816
1845
|
'operation': AccessRequestPreApprovalRequestedItemsInnerBetaOperationBeta;
|
|
1817
1846
|
/**
|
|
1818
|
-
*
|
|
1847
|
+
* Comment from the identity requesting access.
|
|
1819
1848
|
* @type {string}
|
|
1820
1849
|
* @memberof AccessRequestPreApprovalRequestedItemsInnerBeta
|
|
1821
1850
|
*/
|
|
@@ -2325,31 +2354,31 @@ export interface AccountAggregationCompletedBeta {
|
|
|
2325
2354
|
*/
|
|
2326
2355
|
'source': AccountAggregationCompletedSourceBeta;
|
|
2327
2356
|
/**
|
|
2328
|
-
*
|
|
2357
|
+
* Aggregation\'s overall status.
|
|
2329
2358
|
* @type {object}
|
|
2330
2359
|
* @memberof AccountAggregationCompletedBeta
|
|
2331
2360
|
*/
|
|
2332
2361
|
'status': AccountAggregationCompletedBetaStatusBeta;
|
|
2333
2362
|
/**
|
|
2334
|
-
*
|
|
2363
|
+
* Date and time when the account aggregation started.
|
|
2335
2364
|
* @type {string}
|
|
2336
2365
|
* @memberof AccountAggregationCompletedBeta
|
|
2337
2366
|
*/
|
|
2338
2367
|
'started': string;
|
|
2339
2368
|
/**
|
|
2340
|
-
*
|
|
2369
|
+
* Date and time when the account aggregation finished.
|
|
2341
2370
|
* @type {string}
|
|
2342
2371
|
* @memberof AccountAggregationCompletedBeta
|
|
2343
2372
|
*/
|
|
2344
2373
|
'completed': string;
|
|
2345
2374
|
/**
|
|
2346
|
-
*
|
|
2375
|
+
* List of errors that occurred during the aggregation.
|
|
2347
2376
|
* @type {Array<string>}
|
|
2348
2377
|
* @memberof AccountAggregationCompletedBeta
|
|
2349
2378
|
*/
|
|
2350
2379
|
'errors': Array<string> | null;
|
|
2351
2380
|
/**
|
|
2352
|
-
*
|
|
2381
|
+
* List of warnings that occurred during the aggregation.
|
|
2353
2382
|
* @type {Array<string>}
|
|
2354
2383
|
* @memberof AccountAggregationCompletedBeta
|
|
2355
2384
|
*/
|
|
@@ -2368,25 +2397,25 @@ export declare const AccountAggregationCompletedBetaStatusBeta: {
|
|
|
2368
2397
|
};
|
|
2369
2398
|
export type AccountAggregationCompletedBetaStatusBeta = typeof AccountAggregationCompletedBetaStatusBeta[keyof typeof AccountAggregationCompletedBetaStatusBeta];
|
|
2370
2399
|
/**
|
|
2371
|
-
*
|
|
2400
|
+
* Source ISC is aggregating accounts from.
|
|
2372
2401
|
* @export
|
|
2373
2402
|
* @interface AccountAggregationCompletedSourceBeta
|
|
2374
2403
|
*/
|
|
2375
2404
|
export interface AccountAggregationCompletedSourceBeta {
|
|
2376
2405
|
/**
|
|
2377
|
-
*
|
|
2406
|
+
* Source\'s DTO type.
|
|
2378
2407
|
* @type {string}
|
|
2379
2408
|
* @memberof AccountAggregationCompletedSourceBeta
|
|
2380
2409
|
*/
|
|
2381
2410
|
'type': AccountAggregationCompletedSourceBetaTypeBeta;
|
|
2382
2411
|
/**
|
|
2383
|
-
*
|
|
2412
|
+
* Source\'s unique ID.
|
|
2384
2413
|
* @type {string}
|
|
2385
2414
|
* @memberof AccountAggregationCompletedSourceBeta
|
|
2386
2415
|
*/
|
|
2387
2416
|
'id': string;
|
|
2388
2417
|
/**
|
|
2389
|
-
*
|
|
2418
|
+
* Source\'s name.
|
|
2390
2419
|
* @type {string}
|
|
2391
2420
|
* @memberof AccountAggregationCompletedSourceBeta
|
|
2392
2421
|
*/
|
|
@@ -2403,31 +2432,31 @@ export type AccountAggregationCompletedSourceBetaTypeBeta = typeof AccountAggreg
|
|
|
2403
2432
|
*/
|
|
2404
2433
|
export interface AccountAggregationCompletedStatsBeta {
|
|
2405
2434
|
/**
|
|
2406
|
-
*
|
|
2435
|
+
* Number of accounts scanned/iterated over.
|
|
2407
2436
|
* @type {number}
|
|
2408
2437
|
* @memberof AccountAggregationCompletedStatsBeta
|
|
2409
2438
|
*/
|
|
2410
2439
|
'scanned': number;
|
|
2411
2440
|
/**
|
|
2412
|
-
*
|
|
2441
|
+
* Number of accounts that existed before but had no changes.
|
|
2413
2442
|
* @type {number}
|
|
2414
2443
|
* @memberof AccountAggregationCompletedStatsBeta
|
|
2415
2444
|
*/
|
|
2416
2445
|
'unchanged': number;
|
|
2417
2446
|
/**
|
|
2418
|
-
*
|
|
2447
|
+
* Number of accounts that existed before but had changes.
|
|
2419
2448
|
* @type {number}
|
|
2420
2449
|
* @memberof AccountAggregationCompletedStatsBeta
|
|
2421
2450
|
*/
|
|
2422
2451
|
'changed': number;
|
|
2423
2452
|
/**
|
|
2424
|
-
*
|
|
2453
|
+
* Number of accounts that are new and didn\'t previously exist.
|
|
2425
2454
|
* @type {number}
|
|
2426
2455
|
* @memberof AccountAggregationCompletedStatsBeta
|
|
2427
2456
|
*/
|
|
2428
2457
|
'added': number;
|
|
2429
2458
|
/**
|
|
2430
|
-
*
|
|
2459
|
+
* Number accounts that existed before but were removed and no longer exist.
|
|
2431
2460
|
* @type {number}
|
|
2432
2461
|
* @memberof AccountAggregationCompletedStatsBeta
|
|
2433
2462
|
*/
|
|
@@ -5142,43 +5171,43 @@ export interface CampaignActivatedBeta {
|
|
|
5142
5171
|
*/
|
|
5143
5172
|
export interface CampaignActivatedCampaignBeta {
|
|
5144
5173
|
/**
|
|
5145
|
-
*
|
|
5174
|
+
* Campaign\'s unique ID.
|
|
5146
5175
|
* @type {string}
|
|
5147
5176
|
* @memberof CampaignActivatedCampaignBeta
|
|
5148
5177
|
*/
|
|
5149
5178
|
'id': string;
|
|
5150
5179
|
/**
|
|
5151
|
-
*
|
|
5180
|
+
* Campaign\'s name.
|
|
5152
5181
|
* @type {string}
|
|
5153
5182
|
* @memberof CampaignActivatedCampaignBeta
|
|
5154
5183
|
*/
|
|
5155
5184
|
'name': string;
|
|
5156
5185
|
/**
|
|
5157
|
-
*
|
|
5186
|
+
* Campaign\'s extended description.
|
|
5158
5187
|
* @type {string}
|
|
5159
5188
|
* @memberof CampaignActivatedCampaignBeta
|
|
5160
5189
|
*/
|
|
5161
5190
|
'description': string;
|
|
5162
5191
|
/**
|
|
5163
|
-
*
|
|
5192
|
+
* Date and time when the campaign was created.
|
|
5164
5193
|
* @type {string}
|
|
5165
5194
|
* @memberof CampaignActivatedCampaignBeta
|
|
5166
5195
|
*/
|
|
5167
5196
|
'created': string;
|
|
5168
5197
|
/**
|
|
5169
|
-
*
|
|
5198
|
+
* Date and time when the campaign was last modified.
|
|
5170
5199
|
* @type {string}
|
|
5171
5200
|
* @memberof CampaignActivatedCampaignBeta
|
|
5172
5201
|
*/
|
|
5173
5202
|
'modified'?: string | null;
|
|
5174
5203
|
/**
|
|
5175
|
-
*
|
|
5204
|
+
* Date and time when the campaign is due.
|
|
5176
5205
|
* @type {string}
|
|
5177
5206
|
* @memberof CampaignActivatedCampaignBeta
|
|
5178
5207
|
*/
|
|
5179
5208
|
'deadline': string;
|
|
5180
5209
|
/**
|
|
5181
|
-
*
|
|
5210
|
+
* Campaign\'s type.
|
|
5182
5211
|
* @type {object}
|
|
5183
5212
|
* @memberof CampaignActivatedCampaignBeta
|
|
5184
5213
|
*/
|
|
@@ -5190,7 +5219,7 @@ export interface CampaignActivatedCampaignBeta {
|
|
|
5190
5219
|
*/
|
|
5191
5220
|
'campaignOwner': CampaignActivatedCampaignCampaignOwnerBeta;
|
|
5192
5221
|
/**
|
|
5193
|
-
*
|
|
5222
|
+
* Campaign\'s current status.
|
|
5194
5223
|
* @type {object}
|
|
5195
5224
|
* @memberof CampaignActivatedCampaignBeta
|
|
5196
5225
|
*/
|
|
@@ -5208,25 +5237,25 @@ export declare const CampaignActivatedCampaignBetaStatusBeta: {
|
|
|
5208
5237
|
};
|
|
5209
5238
|
export type CampaignActivatedCampaignBetaStatusBeta = typeof CampaignActivatedCampaignBetaStatusBeta[keyof typeof CampaignActivatedCampaignBetaStatusBeta];
|
|
5210
5239
|
/**
|
|
5211
|
-
* Details of the identity
|
|
5240
|
+
* Details of the identity who owns the campaign.
|
|
5212
5241
|
* @export
|
|
5213
5242
|
* @interface CampaignActivatedCampaignCampaignOwnerBeta
|
|
5214
5243
|
*/
|
|
5215
5244
|
export interface CampaignActivatedCampaignCampaignOwnerBeta {
|
|
5216
5245
|
/**
|
|
5217
|
-
*
|
|
5246
|
+
* Identity\'s unique ID.
|
|
5218
5247
|
* @type {string}
|
|
5219
5248
|
* @memberof CampaignActivatedCampaignCampaignOwnerBeta
|
|
5220
5249
|
*/
|
|
5221
5250
|
'id': string;
|
|
5222
5251
|
/**
|
|
5223
|
-
*
|
|
5252
|
+
* Identity\'s name.
|
|
5224
5253
|
* @type {string}
|
|
5225
5254
|
* @memberof CampaignActivatedCampaignCampaignOwnerBeta
|
|
5226
5255
|
*/
|
|
5227
5256
|
'displayName': string;
|
|
5228
5257
|
/**
|
|
5229
|
-
*
|
|
5258
|
+
* Identity\'s primary email address.
|
|
5230
5259
|
* @type {string}
|
|
5231
5260
|
* @memberof CampaignActivatedCampaignCampaignOwnerBeta
|
|
5232
5261
|
*/
|
|
@@ -5453,43 +5482,43 @@ export interface CampaignEndedBeta {
|
|
|
5453
5482
|
*/
|
|
5454
5483
|
export interface CampaignEndedCampaignBeta {
|
|
5455
5484
|
/**
|
|
5456
|
-
*
|
|
5485
|
+
* Campaign\'s unique ID for the campaign.
|
|
5457
5486
|
* @type {string}
|
|
5458
5487
|
* @memberof CampaignEndedCampaignBeta
|
|
5459
5488
|
*/
|
|
5460
5489
|
'id': string;
|
|
5461
5490
|
/**
|
|
5462
|
-
*
|
|
5491
|
+
* Campaign\'s unique ID.
|
|
5463
5492
|
* @type {string}
|
|
5464
5493
|
* @memberof CampaignEndedCampaignBeta
|
|
5465
5494
|
*/
|
|
5466
5495
|
'name': string;
|
|
5467
5496
|
/**
|
|
5468
|
-
*
|
|
5497
|
+
* Campaign\'s extended description.
|
|
5469
5498
|
* @type {string}
|
|
5470
5499
|
* @memberof CampaignEndedCampaignBeta
|
|
5471
5500
|
*/
|
|
5472
5501
|
'description': string;
|
|
5473
5502
|
/**
|
|
5474
|
-
*
|
|
5503
|
+
* Date and time when the campaign was created.
|
|
5475
5504
|
* @type {string}
|
|
5476
5505
|
* @memberof CampaignEndedCampaignBeta
|
|
5477
5506
|
*/
|
|
5478
5507
|
'created': string;
|
|
5479
5508
|
/**
|
|
5480
|
-
*
|
|
5509
|
+
* Date and time when the campaign was last modified.
|
|
5481
5510
|
* @type {string}
|
|
5482
5511
|
* @memberof CampaignEndedCampaignBeta
|
|
5483
5512
|
*/
|
|
5484
5513
|
'modified'?: string | null;
|
|
5485
5514
|
/**
|
|
5486
|
-
*
|
|
5515
|
+
* Date and time when the campaign is due.
|
|
5487
5516
|
* @type {string}
|
|
5488
5517
|
* @memberof CampaignEndedCampaignBeta
|
|
5489
5518
|
*/
|
|
5490
5519
|
'deadline': string;
|
|
5491
5520
|
/**
|
|
5492
|
-
*
|
|
5521
|
+
* Campaign\'s type.
|
|
5493
5522
|
* @type {object}
|
|
5494
5523
|
* @memberof CampaignEndedCampaignBeta
|
|
5495
5524
|
*/
|
|
@@ -5501,7 +5530,7 @@ export interface CampaignEndedCampaignBeta {
|
|
|
5501
5530
|
*/
|
|
5502
5531
|
'campaignOwner': CampaignActivatedCampaignCampaignOwnerBeta;
|
|
5503
5532
|
/**
|
|
5504
|
-
*
|
|
5533
|
+
* Campaign\'s current status.
|
|
5505
5534
|
* @type {object}
|
|
5506
5535
|
* @memberof CampaignEndedCampaignBeta
|
|
5507
5536
|
*/
|
|
@@ -5538,43 +5567,43 @@ export interface CampaignGeneratedBeta {
|
|
|
5538
5567
|
*/
|
|
5539
5568
|
export interface CampaignGeneratedCampaignBeta {
|
|
5540
5569
|
/**
|
|
5541
|
-
*
|
|
5570
|
+
* Campaign\'s unique ID.
|
|
5542
5571
|
* @type {string}
|
|
5543
5572
|
* @memberof CampaignGeneratedCampaignBeta
|
|
5544
5573
|
*/
|
|
5545
5574
|
'id': string;
|
|
5546
5575
|
/**
|
|
5547
|
-
*
|
|
5576
|
+
* Campaign\'s name.
|
|
5548
5577
|
* @type {string}
|
|
5549
5578
|
* @memberof CampaignGeneratedCampaignBeta
|
|
5550
5579
|
*/
|
|
5551
5580
|
'name': string;
|
|
5552
5581
|
/**
|
|
5553
|
-
*
|
|
5582
|
+
* Campaign\'s extended description.
|
|
5554
5583
|
* @type {string}
|
|
5555
5584
|
* @memberof CampaignGeneratedCampaignBeta
|
|
5556
5585
|
*/
|
|
5557
5586
|
'description': string;
|
|
5558
5587
|
/**
|
|
5559
|
-
*
|
|
5588
|
+
* Date and time when the campaign was created.
|
|
5560
5589
|
* @type {string}
|
|
5561
5590
|
* @memberof CampaignGeneratedCampaignBeta
|
|
5562
5591
|
*/
|
|
5563
5592
|
'created': string;
|
|
5564
5593
|
/**
|
|
5565
|
-
*
|
|
5594
|
+
* Date and time when the campaign was last modified.
|
|
5566
5595
|
* @type {string}
|
|
5567
5596
|
* @memberof CampaignGeneratedCampaignBeta
|
|
5568
5597
|
*/
|
|
5569
5598
|
'modified'?: string | null;
|
|
5570
5599
|
/**
|
|
5571
|
-
*
|
|
5600
|
+
* Date and time when the campaign must be finished.
|
|
5572
5601
|
* @type {string}
|
|
5573
5602
|
* @memberof CampaignGeneratedCampaignBeta
|
|
5574
5603
|
*/
|
|
5575
5604
|
'deadline'?: string | null;
|
|
5576
5605
|
/**
|
|
5577
|
-
*
|
|
5606
|
+
* Campaign\'s type.
|
|
5578
5607
|
* @type {object}
|
|
5579
5608
|
* @memberof CampaignGeneratedCampaignBeta
|
|
5580
5609
|
*/
|
|
@@ -5586,7 +5615,7 @@ export interface CampaignGeneratedCampaignBeta {
|
|
|
5586
5615
|
*/
|
|
5587
5616
|
'campaignOwner': CampaignGeneratedCampaignCampaignOwnerBeta;
|
|
5588
5617
|
/**
|
|
5589
|
-
*
|
|
5618
|
+
* Campaign\'s current status.
|
|
5590
5619
|
* @type {object}
|
|
5591
5620
|
* @memberof CampaignGeneratedCampaignBeta
|
|
5592
5621
|
*/
|
|
@@ -5606,25 +5635,25 @@ export declare const CampaignGeneratedCampaignBetaStatusBeta: {
|
|
|
5606
5635
|
};
|
|
5607
5636
|
export type CampaignGeneratedCampaignBetaStatusBeta = typeof CampaignGeneratedCampaignBetaStatusBeta[keyof typeof CampaignGeneratedCampaignBetaStatusBeta];
|
|
5608
5637
|
/**
|
|
5609
|
-
*
|
|
5638
|
+
* Identity who owns the campaign.
|
|
5610
5639
|
* @export
|
|
5611
5640
|
* @interface CampaignGeneratedCampaignCampaignOwnerBeta
|
|
5612
5641
|
*/
|
|
5613
5642
|
export interface CampaignGeneratedCampaignCampaignOwnerBeta {
|
|
5614
5643
|
/**
|
|
5615
|
-
*
|
|
5644
|
+
* Identity\'s unique ID.
|
|
5616
5645
|
* @type {string}
|
|
5617
5646
|
* @memberof CampaignGeneratedCampaignCampaignOwnerBeta
|
|
5618
5647
|
*/
|
|
5619
5648
|
'id': string;
|
|
5620
5649
|
/**
|
|
5621
|
-
*
|
|
5650
|
+
* Identity\'s name.
|
|
5622
5651
|
* @type {string}
|
|
5623
5652
|
* @memberof CampaignGeneratedCampaignCampaignOwnerBeta
|
|
5624
5653
|
*/
|
|
5625
5654
|
'displayName': string;
|
|
5626
5655
|
/**
|
|
5627
|
-
*
|
|
5656
|
+
* Identity\'s primary email address.
|
|
5628
5657
|
* @type {string}
|
|
5629
5658
|
* @memberof CampaignGeneratedCampaignCampaignOwnerBeta
|
|
5630
5659
|
*/
|
|
@@ -6033,13 +6062,13 @@ export interface CertificationDtoBeta {
|
|
|
6033
6062
|
*/
|
|
6034
6063
|
'phase': CertificationPhaseBeta;
|
|
6035
6064
|
/**
|
|
6036
|
-
*
|
|
6065
|
+
* Date and time when the certification is due.
|
|
6037
6066
|
* @type {string}
|
|
6038
6067
|
* @memberof CertificationDtoBeta
|
|
6039
6068
|
*/
|
|
6040
6069
|
'due': string;
|
|
6041
6070
|
/**
|
|
6042
|
-
*
|
|
6071
|
+
* Date and time when the reviewer signed off on the certification.
|
|
6043
6072
|
* @type {string}
|
|
6044
6073
|
* @memberof CertificationDtoBeta
|
|
6045
6074
|
*/
|
|
@@ -6057,43 +6086,43 @@ export interface CertificationDtoBeta {
|
|
|
6057
6086
|
*/
|
|
6058
6087
|
'reassignment'?: ReassignmentBeta;
|
|
6059
6088
|
/**
|
|
6060
|
-
* Indicates
|
|
6089
|
+
* Indicates whether the certification has any errors.
|
|
6061
6090
|
* @type {boolean}
|
|
6062
6091
|
* @memberof CertificationDtoBeta
|
|
6063
6092
|
*/
|
|
6064
6093
|
'hasErrors': boolean;
|
|
6065
6094
|
/**
|
|
6066
|
-
*
|
|
6095
|
+
* Message indicating what the error is.
|
|
6067
6096
|
* @type {string}
|
|
6068
6097
|
* @memberof CertificationDtoBeta
|
|
6069
6098
|
*/
|
|
6070
6099
|
'errorMessage'?: string | null;
|
|
6071
6100
|
/**
|
|
6072
|
-
* Indicates
|
|
6101
|
+
* Indicates whether all certification decisions have been made.
|
|
6073
6102
|
* @type {boolean}
|
|
6074
6103
|
* @memberof CertificationDtoBeta
|
|
6075
6104
|
*/
|
|
6076
6105
|
'completed': boolean;
|
|
6077
6106
|
/**
|
|
6078
|
-
*
|
|
6107
|
+
* Number of approve/revoke/acknowledge decisions the reviewer has made.
|
|
6079
6108
|
* @type {number}
|
|
6080
6109
|
* @memberof CertificationDtoBeta
|
|
6081
6110
|
*/
|
|
6082
6111
|
'decisionsMade': number;
|
|
6083
6112
|
/**
|
|
6084
|
-
*
|
|
6113
|
+
* Total number of approve/revoke/acknowledge decisions for the certification.
|
|
6085
6114
|
* @type {number}
|
|
6086
6115
|
* @memberof CertificationDtoBeta
|
|
6087
6116
|
*/
|
|
6088
6117
|
'decisionsTotal': number;
|
|
6089
6118
|
/**
|
|
6090
|
-
*
|
|
6119
|
+
* Number of entities (identities, access profiles, roles, etc.) that are complete and all decisions have been made for.
|
|
6091
6120
|
* @type {number}
|
|
6092
6121
|
* @memberof CertificationDtoBeta
|
|
6093
6122
|
*/
|
|
6094
6123
|
'entitiesCompleted': number;
|
|
6095
6124
|
/**
|
|
6096
|
-
*
|
|
6125
|
+
* Total number of entities (identities, access profiles, roles, etc.) in the certification, both complete and incomplete.
|
|
6097
6126
|
* @type {number}
|
|
6098
6127
|
* @memberof CertificationDtoBeta
|
|
6099
6128
|
*/
|
|
@@ -6188,31 +6217,31 @@ export interface CertificationSignedOffBeta {
|
|
|
6188
6217
|
'certification': CertificationSignedOffCertificationBeta;
|
|
6189
6218
|
}
|
|
6190
6219
|
/**
|
|
6191
|
-
*
|
|
6220
|
+
* Certification campaign that was signed off on.
|
|
6192
6221
|
* @export
|
|
6193
6222
|
* @interface CertificationSignedOffCertificationBeta
|
|
6194
6223
|
*/
|
|
6195
6224
|
export interface CertificationSignedOffCertificationBeta {
|
|
6196
6225
|
/**
|
|
6197
|
-
*
|
|
6226
|
+
* Certification\'s unique ID.
|
|
6198
6227
|
* @type {string}
|
|
6199
6228
|
* @memberof CertificationSignedOffCertificationBeta
|
|
6200
6229
|
*/
|
|
6201
6230
|
'id': string;
|
|
6202
6231
|
/**
|
|
6203
|
-
*
|
|
6232
|
+
* Certification\'s name.
|
|
6204
6233
|
* @type {string}
|
|
6205
6234
|
* @memberof CertificationSignedOffCertificationBeta
|
|
6206
6235
|
*/
|
|
6207
6236
|
'name': string;
|
|
6208
6237
|
/**
|
|
6209
|
-
*
|
|
6238
|
+
* Date and time when the certification was created.
|
|
6210
6239
|
* @type {string}
|
|
6211
6240
|
* @memberof CertificationSignedOffCertificationBeta
|
|
6212
6241
|
*/
|
|
6213
6242
|
'created': string;
|
|
6214
6243
|
/**
|
|
6215
|
-
*
|
|
6244
|
+
* Date and time when the certification was last modified.
|
|
6216
6245
|
* @type {string}
|
|
6217
6246
|
* @memberof CertificationSignedOffCertificationBeta
|
|
6218
6247
|
*/
|
|
@@ -6230,13 +6259,13 @@ export interface CertificationSignedOffCertificationBeta {
|
|
|
6230
6259
|
*/
|
|
6231
6260
|
'phase': CertificationPhaseBeta;
|
|
6232
6261
|
/**
|
|
6233
|
-
*
|
|
6262
|
+
* Date and time when the certification is due.
|
|
6234
6263
|
* @type {string}
|
|
6235
6264
|
* @memberof CertificationSignedOffCertificationBeta
|
|
6236
6265
|
*/
|
|
6237
6266
|
'due': string;
|
|
6238
6267
|
/**
|
|
6239
|
-
*
|
|
6268
|
+
* Date and time when the reviewer signed off on the certification.
|
|
6240
6269
|
* @type {string}
|
|
6241
6270
|
* @memberof CertificationSignedOffCertificationBeta
|
|
6242
6271
|
*/
|
|
@@ -6254,43 +6283,43 @@ export interface CertificationSignedOffCertificationBeta {
|
|
|
6254
6283
|
*/
|
|
6255
6284
|
'reassignment'?: ReassignmentBeta;
|
|
6256
6285
|
/**
|
|
6257
|
-
* Indicates
|
|
6286
|
+
* Indicates whether the certification has any errors.
|
|
6258
6287
|
* @type {boolean}
|
|
6259
6288
|
* @memberof CertificationSignedOffCertificationBeta
|
|
6260
6289
|
*/
|
|
6261
6290
|
'hasErrors': boolean;
|
|
6262
6291
|
/**
|
|
6263
|
-
*
|
|
6292
|
+
* Message indicating what the error is.
|
|
6264
6293
|
* @type {string}
|
|
6265
6294
|
* @memberof CertificationSignedOffCertificationBeta
|
|
6266
6295
|
*/
|
|
6267
6296
|
'errorMessage'?: string | null;
|
|
6268
6297
|
/**
|
|
6269
|
-
* Indicates
|
|
6298
|
+
* Indicates whether all certification decisions have been made.
|
|
6270
6299
|
* @type {boolean}
|
|
6271
6300
|
* @memberof CertificationSignedOffCertificationBeta
|
|
6272
6301
|
*/
|
|
6273
6302
|
'completed': boolean;
|
|
6274
6303
|
/**
|
|
6275
|
-
*
|
|
6304
|
+
* Number of approve/revoke/acknowledge decisions the reviewer has made.
|
|
6276
6305
|
* @type {number}
|
|
6277
6306
|
* @memberof CertificationSignedOffCertificationBeta
|
|
6278
6307
|
*/
|
|
6279
6308
|
'decisionsMade': number;
|
|
6280
6309
|
/**
|
|
6281
|
-
*
|
|
6310
|
+
* Total number of approve/revoke/acknowledge decisions for the certification.
|
|
6282
6311
|
* @type {number}
|
|
6283
6312
|
* @memberof CertificationSignedOffCertificationBeta
|
|
6284
6313
|
*/
|
|
6285
6314
|
'decisionsTotal': number;
|
|
6286
6315
|
/**
|
|
6287
|
-
*
|
|
6316
|
+
* Number of entities (identities, access profiles, roles, etc.) that are complete and all decisions have been made for.
|
|
6288
6317
|
* @type {number}
|
|
6289
6318
|
* @memberof CertificationSignedOffCertificationBeta
|
|
6290
6319
|
*/
|
|
6291
6320
|
'entitiesCompleted': number;
|
|
6292
6321
|
/**
|
|
6293
|
-
*
|
|
6322
|
+
* Total number of entities (identities, access profiles, roles, etc.) in the certification, both complete and incomplete.
|
|
6294
6323
|
* @type {number}
|
|
6295
6324
|
* @memberof CertificationSignedOffCertificationBeta
|
|
6296
6325
|
*/
|
|
@@ -9667,6 +9696,18 @@ export interface EventAttributesBeta {
|
|
|
9667
9696
|
* @memberof EventAttributesBeta
|
|
9668
9697
|
*/
|
|
9669
9698
|
'description'?: string;
|
|
9699
|
+
/**
|
|
9700
|
+
* The attribute to filter on
|
|
9701
|
+
* @type {string}
|
|
9702
|
+
* @memberof EventAttributesBeta
|
|
9703
|
+
*/
|
|
9704
|
+
'attributeToFilter'?: string;
|
|
9705
|
+
/**
|
|
9706
|
+
* Form definition\'s unique identifier.
|
|
9707
|
+
* @type {string}
|
|
9708
|
+
* @memberof EventAttributesBeta
|
|
9709
|
+
*/
|
|
9710
|
+
'formDefinitionId'?: string;
|
|
9670
9711
|
}
|
|
9671
9712
|
/**
|
|
9672
9713
|
*
|
|
@@ -12397,7 +12438,7 @@ export interface IdentityAttributesChangedBeta {
|
|
|
12397
12438
|
*/
|
|
12398
12439
|
'identity': IdentityAttributesChangedIdentityBeta;
|
|
12399
12440
|
/**
|
|
12400
|
-
*
|
|
12441
|
+
* List of identity\'s attributes that changed.
|
|
12401
12442
|
* @type {Array<IdentityAttributesChangedChangesInnerBeta>}
|
|
12402
12443
|
* @memberof IdentityAttributesChangedBeta
|
|
12403
12444
|
*/
|
|
@@ -12410,7 +12451,7 @@ export interface IdentityAttributesChangedBeta {
|
|
|
12410
12451
|
*/
|
|
12411
12452
|
export interface IdentityAttributesChangedChangesInnerBeta {
|
|
12412
12453
|
/**
|
|
12413
|
-
*
|
|
12454
|
+
* Identity attribute\'s name.
|
|
12414
12455
|
* @type {string}
|
|
12415
12456
|
* @memberof IdentityAttributesChangedChangesInnerBeta
|
|
12416
12457
|
*/
|
|
@@ -12430,7 +12471,7 @@ export interface IdentityAttributesChangedChangesInnerBeta {
|
|
|
12430
12471
|
}
|
|
12431
12472
|
/**
|
|
12432
12473
|
* @type IdentityAttributesChangedChangesInnerNewValueBeta
|
|
12433
|
-
*
|
|
12474
|
+
* Identity attribute\'s new value after the change.
|
|
12434
12475
|
* @export
|
|
12435
12476
|
*/
|
|
12436
12477
|
export type IdentityAttributesChangedChangesInnerNewValueBeta = Array<string> | boolean | string | {
|
|
@@ -12438,7 +12479,7 @@ export type IdentityAttributesChangedChangesInnerNewValueBeta = Array<string> |
|
|
|
12438
12479
|
};
|
|
12439
12480
|
/**
|
|
12440
12481
|
* @type IdentityAttributesChangedChangesInnerOldValueBeta
|
|
12441
|
-
*
|
|
12482
|
+
* Identity attribute\'s previous value before the change.
|
|
12442
12483
|
* @export
|
|
12443
12484
|
*/
|
|
12444
12485
|
export type IdentityAttributesChangedChangesInnerOldValueBeta = Array<string> | boolean | string | {
|
|
@@ -12468,7 +12509,7 @@ export interface IdentityAttributesChangedIdentityBeta {
|
|
|
12468
12509
|
*/
|
|
12469
12510
|
'id': string;
|
|
12470
12511
|
/**
|
|
12471
|
-
*
|
|
12512
|
+
* Name of identity whose attributes changed.
|
|
12472
12513
|
* @type {string}
|
|
12473
12514
|
* @memberof IdentityAttributesChangedIdentityBeta
|
|
12474
12515
|
*/
|
|
@@ -12712,7 +12753,7 @@ export interface IdentityCreatedBeta {
|
|
|
12712
12753
|
*/
|
|
12713
12754
|
'identity': IdentityCreatedIdentityBeta;
|
|
12714
12755
|
/**
|
|
12715
|
-
*
|
|
12756
|
+
* Attributes assigned to the identity. These attributes are determined by the identity profile.
|
|
12716
12757
|
* @type {{ [key: string]: any; }}
|
|
12717
12758
|
* @memberof IdentityCreatedBeta
|
|
12718
12759
|
*/
|
|
@@ -12727,19 +12768,19 @@ export interface IdentityCreatedBeta {
|
|
|
12727
12768
|
*/
|
|
12728
12769
|
export interface IdentityCreatedIdentityBeta {
|
|
12729
12770
|
/**
|
|
12730
|
-
*
|
|
12771
|
+
* Identity\'s DTO type.
|
|
12731
12772
|
* @type {string}
|
|
12732
12773
|
* @memberof IdentityCreatedIdentityBeta
|
|
12733
12774
|
*/
|
|
12734
12775
|
'type': IdentityCreatedIdentityBetaTypeBeta;
|
|
12735
12776
|
/**
|
|
12736
|
-
*
|
|
12777
|
+
* Identity\'s unique ID.
|
|
12737
12778
|
* @type {string}
|
|
12738
12779
|
* @memberof IdentityCreatedIdentityBeta
|
|
12739
12780
|
*/
|
|
12740
12781
|
'id': string;
|
|
12741
12782
|
/**
|
|
12742
|
-
*
|
|
12783
|
+
* Identity\'s name.
|
|
12743
12784
|
* @type {string}
|
|
12744
12785
|
* @memberof IdentityCreatedIdentityBeta
|
|
12745
12786
|
*/
|
|
@@ -12762,7 +12803,7 @@ export interface IdentityDeletedBeta {
|
|
|
12762
12803
|
*/
|
|
12763
12804
|
'identity': IdentityDeletedIdentityBeta;
|
|
12764
12805
|
/**
|
|
12765
|
-
*
|
|
12806
|
+
* Identity attributes. The attributes are determined by the identity profile.
|
|
12766
12807
|
* @type {{ [key: string]: any; }}
|
|
12767
12808
|
* @memberof IdentityDeletedBeta
|
|
12768
12809
|
*/
|
|
@@ -12789,7 +12830,7 @@ export interface IdentityDeletedIdentityBeta {
|
|
|
12789
12830
|
*/
|
|
12790
12831
|
'id': string;
|
|
12791
12832
|
/**
|
|
12792
|
-
* Deleted identity\'s
|
|
12833
|
+
* Deleted identity\'s name.
|
|
12793
12834
|
* @type {string}
|
|
12794
12835
|
* @memberof IdentityDeletedIdentityBeta
|
|
12795
12836
|
*/
|
|
@@ -20100,20 +20141,20 @@ export type ProductBetaOrgTypeBeta = typeof ProductBetaOrgTypeBeta[keyof typeof
|
|
|
20100
20141
|
*/
|
|
20101
20142
|
export interface ProvisioningCompletedAccountRequestsInnerAttributeRequestsInnerBeta {
|
|
20102
20143
|
/**
|
|
20103
|
-
*
|
|
20144
|
+
* Name of the attribute being provisioned.
|
|
20104
20145
|
* @type {string}
|
|
20105
20146
|
* @memberof ProvisioningCompletedAccountRequestsInnerAttributeRequestsInnerBeta
|
|
20106
20147
|
*/
|
|
20107
20148
|
'attributeName': string;
|
|
20108
20149
|
/**
|
|
20109
|
-
*
|
|
20150
|
+
* Value of the attribute being provisioned.
|
|
20110
20151
|
* @type {string}
|
|
20111
20152
|
* @memberof ProvisioningCompletedAccountRequestsInnerAttributeRequestsInnerBeta
|
|
20112
20153
|
*/
|
|
20113
20154
|
'attributeValue'?: string | null;
|
|
20114
20155
|
/**
|
|
20115
20156
|
* The operation to handle the attribute.
|
|
20116
|
-
* @type {
|
|
20157
|
+
* @type {string}
|
|
20117
20158
|
* @memberof ProvisioningCompletedAccountRequestsInnerAttributeRequestsInnerBeta
|
|
20118
20159
|
*/
|
|
20119
20160
|
'operation': ProvisioningCompletedAccountRequestsInnerAttributeRequestsInnerBetaOperationBeta;
|
|
@@ -20137,42 +20178,51 @@ export interface ProvisioningCompletedAccountRequestsInnerBeta {
|
|
|
20137
20178
|
*/
|
|
20138
20179
|
'source': ProvisioningCompletedAccountRequestsInnerSourceBeta;
|
|
20139
20180
|
/**
|
|
20140
|
-
*
|
|
20181
|
+
* Unique idenfier of the account being provisioned.
|
|
20141
20182
|
* @type {string}
|
|
20142
20183
|
* @memberof ProvisioningCompletedAccountRequestsInnerBeta
|
|
20143
20184
|
*/
|
|
20144
20185
|
'accountId'?: string;
|
|
20145
20186
|
/**
|
|
20146
|
-
*
|
|
20187
|
+
* Provisioning operation.
|
|
20147
20188
|
* @type {string}
|
|
20148
20189
|
* @memberof ProvisioningCompletedAccountRequestsInnerBeta
|
|
20149
20190
|
*/
|
|
20150
|
-
'accountOperation':
|
|
20191
|
+
'accountOperation': ProvisioningCompletedAccountRequestsInnerBetaAccountOperationBeta;
|
|
20151
20192
|
/**
|
|
20152
|
-
*
|
|
20193
|
+
* Overall result of the provisioning transaction.
|
|
20153
20194
|
* @type {object}
|
|
20154
20195
|
* @memberof ProvisioningCompletedAccountRequestsInnerBeta
|
|
20155
20196
|
*/
|
|
20156
20197
|
'provisioningResult': ProvisioningCompletedAccountRequestsInnerBetaProvisioningResultBeta;
|
|
20157
20198
|
/**
|
|
20158
|
-
*
|
|
20199
|
+
* 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).
|
|
20159
20200
|
* @type {string}
|
|
20160
20201
|
* @memberof ProvisioningCompletedAccountRequestsInnerBeta
|
|
20161
20202
|
*/
|
|
20162
20203
|
'provisioningTarget': string;
|
|
20163
20204
|
/**
|
|
20164
|
-
*
|
|
20205
|
+
* Reference to a tracking number for if this is sent to a SDIM.
|
|
20165
20206
|
* @type {string}
|
|
20166
20207
|
* @memberof ProvisioningCompletedAccountRequestsInnerBeta
|
|
20167
20208
|
*/
|
|
20168
20209
|
'ticketId'?: string | null;
|
|
20169
20210
|
/**
|
|
20170
|
-
*
|
|
20211
|
+
* List of attributes to include in the provisioning transaction.
|
|
20171
20212
|
* @type {Array<ProvisioningCompletedAccountRequestsInnerAttributeRequestsInnerBeta>}
|
|
20172
20213
|
* @memberof ProvisioningCompletedAccountRequestsInnerBeta
|
|
20173
20214
|
*/
|
|
20174
20215
|
'attributeRequests'?: Array<ProvisioningCompletedAccountRequestsInnerAttributeRequestsInnerBeta> | null;
|
|
20175
20216
|
}
|
|
20217
|
+
export declare const ProvisioningCompletedAccountRequestsInnerBetaAccountOperationBeta: {
|
|
20218
|
+
readonly Create: "Create";
|
|
20219
|
+
readonly Modify: "Modify";
|
|
20220
|
+
readonly Enable: "Enable";
|
|
20221
|
+
readonly Disable: "Disable";
|
|
20222
|
+
readonly Unlock: "Unlock";
|
|
20223
|
+
readonly Delete: "Delete";
|
|
20224
|
+
};
|
|
20225
|
+
export type ProvisioningCompletedAccountRequestsInnerBetaAccountOperationBeta = typeof ProvisioningCompletedAccountRequestsInnerBetaAccountOperationBeta[keyof typeof ProvisioningCompletedAccountRequestsInnerBetaAccountOperationBeta];
|
|
20176
20226
|
export declare const ProvisioningCompletedAccountRequestsInnerBetaProvisioningResultBeta: {
|
|
20177
20227
|
readonly Success: "SUCCESS";
|
|
20178
20228
|
readonly Pending: "PENDING";
|
|
@@ -20180,25 +20230,25 @@ export declare const ProvisioningCompletedAccountRequestsInnerBetaProvisioningRe
|
|
|
20180
20230
|
};
|
|
20181
20231
|
export type ProvisioningCompletedAccountRequestsInnerBetaProvisioningResultBeta = typeof ProvisioningCompletedAccountRequestsInnerBetaProvisioningResultBeta[keyof typeof ProvisioningCompletedAccountRequestsInnerBetaProvisioningResultBeta];
|
|
20182
20232
|
/**
|
|
20183
|
-
*
|
|
20233
|
+
* Source that ISC is provisioning access on.
|
|
20184
20234
|
* @export
|
|
20185
20235
|
* @interface ProvisioningCompletedAccountRequestsInnerSourceBeta
|
|
20186
20236
|
*/
|
|
20187
20237
|
export interface ProvisioningCompletedAccountRequestsInnerSourceBeta {
|
|
20188
20238
|
/**
|
|
20189
|
-
* ID
|
|
20239
|
+
* Source ID.
|
|
20190
20240
|
* @type {string}
|
|
20191
20241
|
* @memberof ProvisioningCompletedAccountRequestsInnerSourceBeta
|
|
20192
20242
|
*/
|
|
20193
20243
|
'id': string;
|
|
20194
20244
|
/**
|
|
20195
|
-
*
|
|
20245
|
+
* Source DTO type.
|
|
20196
20246
|
* @type {string}
|
|
20197
20247
|
* @memberof ProvisioningCompletedAccountRequestsInnerSourceBeta
|
|
20198
20248
|
*/
|
|
20199
20249
|
'type': ProvisioningCompletedAccountRequestsInnerSourceBetaTypeBeta;
|
|
20200
20250
|
/**
|
|
20201
|
-
*
|
|
20251
|
+
* Source name.
|
|
20202
20252
|
* @type {string}
|
|
20203
20253
|
* @memberof ProvisioningCompletedAccountRequestsInnerSourceBeta
|
|
20204
20254
|
*/
|
|
@@ -20215,31 +20265,31 @@ export type ProvisioningCompletedAccountRequestsInnerSourceBetaTypeBeta = typeof
|
|
|
20215
20265
|
*/
|
|
20216
20266
|
export interface ProvisioningCompletedBeta {
|
|
20217
20267
|
/**
|
|
20218
|
-
*
|
|
20268
|
+
* Provisioning request\'s reference number. Useful for tracking status in the \'Account Activity\' search interface.
|
|
20219
20269
|
* @type {string}
|
|
20220
20270
|
* @memberof ProvisioningCompletedBeta
|
|
20221
20271
|
*/
|
|
20222
20272
|
'trackingNumber': string;
|
|
20223
20273
|
/**
|
|
20224
|
-
*
|
|
20274
|
+
* Sources the provisioning transactions were performed on. Sources are comma separated.
|
|
20225
20275
|
* @type {string}
|
|
20226
20276
|
* @memberof ProvisioningCompletedBeta
|
|
20227
20277
|
*/
|
|
20228
20278
|
'sources': string;
|
|
20229
20279
|
/**
|
|
20230
|
-
* Origin of
|
|
20280
|
+
* Origin of the provisioning request.
|
|
20231
20281
|
* @type {string}
|
|
20232
20282
|
* @memberof ProvisioningCompletedBeta
|
|
20233
20283
|
*/
|
|
20234
20284
|
'action'?: string | null;
|
|
20235
20285
|
/**
|
|
20236
|
-
*
|
|
20286
|
+
* List of any accumulated error messages that occurred during provisioning.
|
|
20237
20287
|
* @type {Array<string>}
|
|
20238
20288
|
* @memberof ProvisioningCompletedBeta
|
|
20239
20289
|
*/
|
|
20240
20290
|
'errors'?: Array<string> | null;
|
|
20241
20291
|
/**
|
|
20242
|
-
*
|
|
20292
|
+
* List of any accumulated warning messages that occurred during provisioning.
|
|
20243
20293
|
* @type {Array<string>}
|
|
20244
20294
|
* @memberof ProvisioningCompletedBeta
|
|
20245
20295
|
*/
|
|
@@ -20257,7 +20307,7 @@ export interface ProvisioningCompletedBeta {
|
|
|
20257
20307
|
*/
|
|
20258
20308
|
'requester'?: ProvisioningCompletedRequesterBeta | null;
|
|
20259
20309
|
/**
|
|
20260
|
-
*
|
|
20310
|
+
* List of provisioning instructions to perform on an account-by-account basis.
|
|
20261
20311
|
* @type {Array<ProvisioningCompletedAccountRequestsInnerBeta>}
|
|
20262
20312
|
* @memberof ProvisioningCompletedBeta
|
|
20263
20313
|
*/
|
|
@@ -20282,7 +20332,7 @@ export interface ProvisioningCompletedRecipientBeta {
|
|
|
20282
20332
|
*/
|
|
20283
20333
|
'id': string;
|
|
20284
20334
|
/**
|
|
20285
|
-
* Provisioning recipient\'s
|
|
20335
|
+
* Provisioning recipient\'s name.
|
|
20286
20336
|
* @type {string}
|
|
20287
20337
|
* @memberof ProvisioningCompletedRecipientBeta
|
|
20288
20338
|
*/
|
|
@@ -20311,7 +20361,7 @@ export interface ProvisioningCompletedRequesterBeta {
|
|
|
20311
20361
|
*/
|
|
20312
20362
|
'id': string;
|
|
20313
20363
|
/**
|
|
20314
|
-
* Provisioning
|
|
20364
|
+
* Provisioning requester\'s name.
|
|
20315
20365
|
* @type {string}
|
|
20316
20366
|
* @memberof ProvisioningCompletedRequesterBeta
|
|
20317
20367
|
*/
|
|
@@ -21492,7 +21542,7 @@ export declare const RequestableObjectRequestStatusBeta: {
|
|
|
21492
21542
|
};
|
|
21493
21543
|
export type RequestableObjectRequestStatusBeta = typeof RequestableObjectRequestStatusBeta[keyof typeof RequestableObjectRequestStatusBeta];
|
|
21494
21544
|
/**
|
|
21495
|
-
*
|
|
21545
|
+
* Currently supported requestable object types.
|
|
21496
21546
|
* @export
|
|
21497
21547
|
* @enum {string}
|
|
21498
21548
|
*/
|
|
@@ -22047,31 +22097,31 @@ export interface ReviewReassignBeta {
|
|
|
22047
22097
|
'reason': string;
|
|
22048
22098
|
}
|
|
22049
22099
|
/**
|
|
22050
|
-
* Details of the reviewer for certification.
|
|
22100
|
+
* Details of the reviewer for a certification.
|
|
22051
22101
|
* @export
|
|
22052
22102
|
* @interface ReviewerBeta
|
|
22053
22103
|
*/
|
|
22054
22104
|
export interface ReviewerBeta {
|
|
22055
22105
|
/**
|
|
22056
|
-
*
|
|
22106
|
+
* Reviewer\'s DTO type.
|
|
22057
22107
|
* @type {string}
|
|
22058
22108
|
* @memberof ReviewerBeta
|
|
22059
22109
|
*/
|
|
22060
22110
|
'type': ReviewerBetaTypeBeta;
|
|
22061
22111
|
/**
|
|
22062
|
-
*
|
|
22112
|
+
* Reviewer\'s ID.
|
|
22063
22113
|
* @type {string}
|
|
22064
22114
|
* @memberof ReviewerBeta
|
|
22065
22115
|
*/
|
|
22066
22116
|
'id': string;
|
|
22067
22117
|
/**
|
|
22068
|
-
*
|
|
22118
|
+
* Reviewer\'s display name.
|
|
22069
22119
|
* @type {string}
|
|
22070
22120
|
* @memberof ReviewerBeta
|
|
22071
22121
|
*/
|
|
22072
22122
|
'name': string;
|
|
22073
22123
|
/**
|
|
22074
|
-
*
|
|
22124
|
+
* Reviewing identity\'s email. This is only applicable to reviewers of the `IDENTITY` type.
|
|
22075
22125
|
* @type {string}
|
|
22076
22126
|
* @memberof ReviewerBeta
|
|
22077
22127
|
*/
|
|
@@ -23987,31 +24037,31 @@ export type RuleBeta = GenerateRandomStringBeta | GetReferenceIdentityAttributeB
|
|
|
23987
24037
|
*/
|
|
23988
24038
|
export interface SavedSearchCompleteBeta {
|
|
23989
24039
|
/**
|
|
23990
|
-
*
|
|
24040
|
+
* Report file name.
|
|
23991
24041
|
* @type {string}
|
|
23992
24042
|
* @memberof SavedSearchCompleteBeta
|
|
23993
24043
|
*/
|
|
23994
24044
|
'fileName': string;
|
|
23995
24045
|
/**
|
|
23996
|
-
*
|
|
24046
|
+
* Email address of the identity who owns the saved search.
|
|
23997
24047
|
* @type {string}
|
|
23998
24048
|
* @memberof SavedSearchCompleteBeta
|
|
23999
24049
|
*/
|
|
24000
24050
|
'ownerEmail': string;
|
|
24001
24051
|
/**
|
|
24002
|
-
*
|
|
24052
|
+
* Name of the identity who owns the saved search.
|
|
24003
24053
|
* @type {string}
|
|
24004
24054
|
* @memberof SavedSearchCompleteBeta
|
|
24005
24055
|
*/
|
|
24006
24056
|
'ownerName': string;
|
|
24007
24057
|
/**
|
|
24008
|
-
*
|
|
24058
|
+
* Search query used to generate the report.
|
|
24009
24059
|
* @type {string}
|
|
24010
24060
|
* @memberof SavedSearchCompleteBeta
|
|
24011
24061
|
*/
|
|
24012
24062
|
'query': string;
|
|
24013
24063
|
/**
|
|
24014
|
-
*
|
|
24064
|
+
* Saved search name.
|
|
24015
24065
|
* @type {string}
|
|
24016
24066
|
* @memberof SavedSearchCompleteBeta
|
|
24017
24067
|
*/
|
|
@@ -24030,32 +24080,32 @@ export interface SavedSearchCompleteBeta {
|
|
|
24030
24080
|
'signedS3Url': string;
|
|
24031
24081
|
}
|
|
24032
24082
|
/**
|
|
24033
|
-
*
|
|
24083
|
+
* Table of accounts matching the search criteria.
|
|
24034
24084
|
* @export
|
|
24035
24085
|
* @interface SavedSearchCompleteSearchResultsAccountBeta
|
|
24036
24086
|
*/
|
|
24037
24087
|
export interface SavedSearchCompleteSearchResultsAccountBeta {
|
|
24038
24088
|
/**
|
|
24039
|
-
*
|
|
24089
|
+
* Number of rows in the table.
|
|
24040
24090
|
* @type {string}
|
|
24041
24091
|
* @memberof SavedSearchCompleteSearchResultsAccountBeta
|
|
24042
24092
|
*/
|
|
24043
24093
|
'count': string;
|
|
24044
24094
|
/**
|
|
24045
|
-
*
|
|
24095
|
+
* Type of object represented in the table.
|
|
24046
24096
|
* @type {string}
|
|
24047
24097
|
* @memberof SavedSearchCompleteSearchResultsAccountBeta
|
|
24048
24098
|
*/
|
|
24049
24099
|
'noun': string;
|
|
24050
24100
|
/**
|
|
24051
|
-
*
|
|
24101
|
+
* Sample of table data.
|
|
24052
24102
|
* @type {Array<Array<string>>}
|
|
24053
24103
|
* @memberof SavedSearchCompleteSearchResultsAccountBeta
|
|
24054
24104
|
*/
|
|
24055
24105
|
'preview': Array<Array<string>>;
|
|
24056
24106
|
}
|
|
24057
24107
|
/**
|
|
24058
|
-
*
|
|
24108
|
+
* 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.
|
|
24059
24109
|
* @export
|
|
24060
24110
|
* @interface SavedSearchCompleteSearchResultsBeta
|
|
24061
24111
|
*/
|
|
@@ -24080,50 +24130,50 @@ export interface SavedSearchCompleteSearchResultsBeta {
|
|
|
24080
24130
|
'Identity'?: SavedSearchCompleteSearchResultsIdentityBeta | null;
|
|
24081
24131
|
}
|
|
24082
24132
|
/**
|
|
24083
|
-
*
|
|
24133
|
+
* Table of entitlements matching the search criteria.
|
|
24084
24134
|
* @export
|
|
24085
24135
|
* @interface SavedSearchCompleteSearchResultsEntitlementBeta
|
|
24086
24136
|
*/
|
|
24087
24137
|
export interface SavedSearchCompleteSearchResultsEntitlementBeta {
|
|
24088
24138
|
/**
|
|
24089
|
-
*
|
|
24139
|
+
* Number of rows in the table.
|
|
24090
24140
|
* @type {string}
|
|
24091
24141
|
* @memberof SavedSearchCompleteSearchResultsEntitlementBeta
|
|
24092
24142
|
*/
|
|
24093
24143
|
'count': string;
|
|
24094
24144
|
/**
|
|
24095
|
-
*
|
|
24145
|
+
* Type of object represented in the table.
|
|
24096
24146
|
* @type {string}
|
|
24097
24147
|
* @memberof SavedSearchCompleteSearchResultsEntitlementBeta
|
|
24098
24148
|
*/
|
|
24099
24149
|
'noun': string;
|
|
24100
24150
|
/**
|
|
24101
|
-
*
|
|
24151
|
+
* Sample of table data.
|
|
24102
24152
|
* @type {Array<Array<string>>}
|
|
24103
24153
|
* @memberof SavedSearchCompleteSearchResultsEntitlementBeta
|
|
24104
24154
|
*/
|
|
24105
24155
|
'preview': Array<Array<string>>;
|
|
24106
24156
|
}
|
|
24107
24157
|
/**
|
|
24108
|
-
*
|
|
24158
|
+
* Table of identities matching the search criteria.
|
|
24109
24159
|
* @export
|
|
24110
24160
|
* @interface SavedSearchCompleteSearchResultsIdentityBeta
|
|
24111
24161
|
*/
|
|
24112
24162
|
export interface SavedSearchCompleteSearchResultsIdentityBeta {
|
|
24113
24163
|
/**
|
|
24114
|
-
*
|
|
24164
|
+
* Number of rows in the table.
|
|
24115
24165
|
* @type {string}
|
|
24116
24166
|
* @memberof SavedSearchCompleteSearchResultsIdentityBeta
|
|
24117
24167
|
*/
|
|
24118
24168
|
'count': string;
|
|
24119
24169
|
/**
|
|
24120
|
-
*
|
|
24170
|
+
* Type of object represented in the table.
|
|
24121
24171
|
* @type {string}
|
|
24122
24172
|
* @memberof SavedSearchCompleteSearchResultsIdentityBeta
|
|
24123
24173
|
*/
|
|
24124
24174
|
'noun': string;
|
|
24125
24175
|
/**
|
|
24126
|
-
*
|
|
24176
|
+
* Sample of the table data.
|
|
24127
24177
|
* @type {Array<Array<string>>}
|
|
24128
24178
|
* @memberof SavedSearchCompleteSearchResultsIdentityBeta
|
|
24129
24179
|
*/
|
|
@@ -24401,7 +24451,7 @@ export interface ScheduledAttributesBeta {
|
|
|
24401
24451
|
*/
|
|
24402
24452
|
'timeZone'?: string;
|
|
24403
24453
|
/**
|
|
24404
|
-
*
|
|
24454
|
+
* A valid CRON expression
|
|
24405
24455
|
* @type {string}
|
|
24406
24456
|
* @memberof ScheduledAttributesBeta
|
|
24407
24457
|
*/
|
|
@@ -24418,6 +24468,12 @@ export interface ScheduledAttributesBeta {
|
|
|
24418
24468
|
* @memberof ScheduledAttributesBeta
|
|
24419
24469
|
*/
|
|
24420
24470
|
'weeklyTimes'?: Array<string>;
|
|
24471
|
+
/**
|
|
24472
|
+
* Scheduled execution times
|
|
24473
|
+
* @type {Array<string>}
|
|
24474
|
+
* @memberof ScheduledAttributesBeta
|
|
24475
|
+
*/
|
|
24476
|
+
'yearlyTimes'?: Array<string>;
|
|
24421
24477
|
}
|
|
24422
24478
|
export declare const ScheduledAttributesBetaFrequencyBeta: {
|
|
24423
24479
|
readonly Daily: "daily";
|
|
@@ -26335,11 +26391,11 @@ export interface Source1Beta {
|
|
|
26335
26391
|
*/
|
|
26336
26392
|
export interface SourceAccountCreatedBeta {
|
|
26337
26393
|
/**
|
|
26338
|
-
*
|
|
26394
|
+
* Identity\'s universal unique identifier (UUID) on the source. The source system generates the UUID.
|
|
26339
26395
|
* @type {string}
|
|
26340
26396
|
* @memberof SourceAccountCreatedBeta
|
|
26341
26397
|
*/
|
|
26342
|
-
'uuid'
|
|
26398
|
+
'uuid': string;
|
|
26343
26399
|
/**
|
|
26344
26400
|
* SailPoint generated unique identifier.
|
|
26345
26401
|
* @type {string}
|
|
@@ -26347,37 +26403,37 @@ export interface SourceAccountCreatedBeta {
|
|
|
26347
26403
|
*/
|
|
26348
26404
|
'id': string;
|
|
26349
26405
|
/**
|
|
26350
|
-
*
|
|
26406
|
+
* Account\'s unique ID on the source.
|
|
26351
26407
|
* @type {string}
|
|
26352
26408
|
* @memberof SourceAccountCreatedBeta
|
|
26353
26409
|
*/
|
|
26354
26410
|
'nativeIdentifier': string;
|
|
26355
26411
|
/**
|
|
26356
|
-
*
|
|
26412
|
+
* Source ID.
|
|
26357
26413
|
* @type {string}
|
|
26358
26414
|
* @memberof SourceAccountCreatedBeta
|
|
26359
26415
|
*/
|
|
26360
26416
|
'sourceId': string;
|
|
26361
26417
|
/**
|
|
26362
|
-
*
|
|
26418
|
+
* Source name.
|
|
26363
26419
|
* @type {string}
|
|
26364
26420
|
* @memberof SourceAccountCreatedBeta
|
|
26365
26421
|
*/
|
|
26366
26422
|
'sourceName': string;
|
|
26367
26423
|
/**
|
|
26368
|
-
*
|
|
26424
|
+
* ID of the identity correlated with the account.
|
|
26369
26425
|
* @type {string}
|
|
26370
26426
|
* @memberof SourceAccountCreatedBeta
|
|
26371
26427
|
*/
|
|
26372
26428
|
'identityId': string;
|
|
26373
26429
|
/**
|
|
26374
|
-
*
|
|
26430
|
+
* Name of the identity correlated with the account.
|
|
26375
26431
|
* @type {string}
|
|
26376
26432
|
* @memberof SourceAccountCreatedBeta
|
|
26377
26433
|
*/
|
|
26378
26434
|
'identityName': string;
|
|
26379
26435
|
/**
|
|
26380
|
-
*
|
|
26436
|
+
* Account attributes. The attributes\' contents depend on the source\'s account schema.
|
|
26381
26437
|
* @type {{ [key: string]: any; }}
|
|
26382
26438
|
* @memberof SourceAccountCreatedBeta
|
|
26383
26439
|
*/
|
|
@@ -26392,11 +26448,11 @@ export interface SourceAccountCreatedBeta {
|
|
|
26392
26448
|
*/
|
|
26393
26449
|
export interface SourceAccountDeletedBeta {
|
|
26394
26450
|
/**
|
|
26395
|
-
*
|
|
26451
|
+
* Identity\'s universal unique identifier (UUID) on the source. The source system generates the UUID.
|
|
26396
26452
|
* @type {string}
|
|
26397
26453
|
* @memberof SourceAccountDeletedBeta
|
|
26398
26454
|
*/
|
|
26399
|
-
'uuid'
|
|
26455
|
+
'uuid': string;
|
|
26400
26456
|
/**
|
|
26401
26457
|
* SailPoint generated unique identifier.
|
|
26402
26458
|
* @type {string}
|
|
@@ -26404,37 +26460,37 @@ export interface SourceAccountDeletedBeta {
|
|
|
26404
26460
|
*/
|
|
26405
26461
|
'id': string;
|
|
26406
26462
|
/**
|
|
26407
|
-
*
|
|
26463
|
+
* Account\'s unique ID on the source.
|
|
26408
26464
|
* @type {string}
|
|
26409
26465
|
* @memberof SourceAccountDeletedBeta
|
|
26410
26466
|
*/
|
|
26411
26467
|
'nativeIdentifier': string;
|
|
26412
26468
|
/**
|
|
26413
|
-
*
|
|
26469
|
+
* Source ID.
|
|
26414
26470
|
* @type {string}
|
|
26415
26471
|
* @memberof SourceAccountDeletedBeta
|
|
26416
26472
|
*/
|
|
26417
26473
|
'sourceId': string;
|
|
26418
26474
|
/**
|
|
26419
|
-
*
|
|
26475
|
+
* Source name.
|
|
26420
26476
|
* @type {string}
|
|
26421
26477
|
* @memberof SourceAccountDeletedBeta
|
|
26422
26478
|
*/
|
|
26423
26479
|
'sourceName': string;
|
|
26424
26480
|
/**
|
|
26425
|
-
*
|
|
26481
|
+
* ID of the identity correlated with the account.
|
|
26426
26482
|
* @type {string}
|
|
26427
26483
|
* @memberof SourceAccountDeletedBeta
|
|
26428
26484
|
*/
|
|
26429
26485
|
'identityId': string;
|
|
26430
26486
|
/**
|
|
26431
|
-
*
|
|
26487
|
+
* Name of the identity correlated with the account.
|
|
26432
26488
|
* @type {string}
|
|
26433
26489
|
* @memberof SourceAccountDeletedBeta
|
|
26434
26490
|
*/
|
|
26435
26491
|
'identityName': string;
|
|
26436
26492
|
/**
|
|
26437
|
-
*
|
|
26493
|
+
* Account attributes. The attributes\' contents depend on the source\'s account schema.
|
|
26438
26494
|
* @type {{ [key: string]: any; }}
|
|
26439
26495
|
* @memberof SourceAccountDeletedBeta
|
|
26440
26496
|
*/
|
|
@@ -26449,11 +26505,11 @@ export interface SourceAccountDeletedBeta {
|
|
|
26449
26505
|
*/
|
|
26450
26506
|
export interface SourceAccountUpdatedBeta {
|
|
26451
26507
|
/**
|
|
26452
|
-
*
|
|
26508
|
+
* Identity\'s universal unique identifier (UUID) on the source. The source system generates the UUID.
|
|
26453
26509
|
* @type {string}
|
|
26454
26510
|
* @memberof SourceAccountUpdatedBeta
|
|
26455
26511
|
*/
|
|
26456
|
-
'uuid'
|
|
26512
|
+
'uuid': string;
|
|
26457
26513
|
/**
|
|
26458
26514
|
* SailPoint generated unique identifier.
|
|
26459
26515
|
* @type {string}
|
|
@@ -26461,37 +26517,37 @@ export interface SourceAccountUpdatedBeta {
|
|
|
26461
26517
|
*/
|
|
26462
26518
|
'id': string;
|
|
26463
26519
|
/**
|
|
26464
|
-
*
|
|
26520
|
+
* Account\'s unique ID on the source.
|
|
26465
26521
|
* @type {string}
|
|
26466
26522
|
* @memberof SourceAccountUpdatedBeta
|
|
26467
26523
|
*/
|
|
26468
26524
|
'nativeIdentifier': string;
|
|
26469
26525
|
/**
|
|
26470
|
-
*
|
|
26526
|
+
* Source ID.
|
|
26471
26527
|
* @type {string}
|
|
26472
26528
|
* @memberof SourceAccountUpdatedBeta
|
|
26473
26529
|
*/
|
|
26474
26530
|
'sourceId': string;
|
|
26475
26531
|
/**
|
|
26476
|
-
*
|
|
26532
|
+
* Source name.
|
|
26477
26533
|
* @type {string}
|
|
26478
26534
|
* @memberof SourceAccountUpdatedBeta
|
|
26479
26535
|
*/
|
|
26480
26536
|
'sourceName': string;
|
|
26481
26537
|
/**
|
|
26482
|
-
*
|
|
26538
|
+
* ID of the identity correlated with the account.
|
|
26483
26539
|
* @type {string}
|
|
26484
26540
|
* @memberof SourceAccountUpdatedBeta
|
|
26485
26541
|
*/
|
|
26486
26542
|
'identityId': string;
|
|
26487
26543
|
/**
|
|
26488
|
-
*
|
|
26544
|
+
* Name of the identity correlated with the account.
|
|
26489
26545
|
* @type {string}
|
|
26490
26546
|
* @memberof SourceAccountUpdatedBeta
|
|
26491
26547
|
*/
|
|
26492
26548
|
'identityName': string;
|
|
26493
26549
|
/**
|
|
26494
|
-
*
|
|
26550
|
+
* Account attributes. The attributes\' contents depend on the source\'s account schema.
|
|
26495
26551
|
* @type {{ [key: string]: any; }}
|
|
26496
26552
|
* @memberof SourceAccountUpdatedBeta
|
|
26497
26553
|
*/
|
|
@@ -27071,19 +27127,19 @@ export interface SourceCodeBeta {
|
|
|
27071
27127
|
*/
|
|
27072
27128
|
export interface SourceCreatedActorBeta {
|
|
27073
27129
|
/**
|
|
27074
|
-
* DTO type of identity who created the source.
|
|
27130
|
+
* DTO type of the identity who created the source.
|
|
27075
27131
|
* @type {string}
|
|
27076
27132
|
* @memberof SourceCreatedActorBeta
|
|
27077
27133
|
*/
|
|
27078
27134
|
'type': SourceCreatedActorBetaTypeBeta;
|
|
27079
27135
|
/**
|
|
27080
|
-
* ID of identity who created the source.
|
|
27136
|
+
* ID of the identity who created the source.
|
|
27081
27137
|
* @type {string}
|
|
27082
27138
|
* @memberof SourceCreatedActorBeta
|
|
27083
27139
|
*/
|
|
27084
27140
|
'id': string;
|
|
27085
27141
|
/**
|
|
27086
|
-
*
|
|
27142
|
+
* Name of the identity who created the source.
|
|
27087
27143
|
* @type {string}
|
|
27088
27144
|
* @memberof SourceCreatedActorBeta
|
|
27089
27145
|
*/
|
|
@@ -27100,31 +27156,31 @@ export type SourceCreatedActorBetaTypeBeta = typeof SourceCreatedActorBetaTypeBe
|
|
|
27100
27156
|
*/
|
|
27101
27157
|
export interface SourceCreatedBeta {
|
|
27102
27158
|
/**
|
|
27103
|
-
*
|
|
27159
|
+
* Source\'s unique ID.
|
|
27104
27160
|
* @type {string}
|
|
27105
27161
|
* @memberof SourceCreatedBeta
|
|
27106
27162
|
*/
|
|
27107
27163
|
'id': string;
|
|
27108
27164
|
/**
|
|
27109
|
-
*
|
|
27165
|
+
* Source name.
|
|
27110
27166
|
* @type {string}
|
|
27111
27167
|
* @memberof SourceCreatedBeta
|
|
27112
27168
|
*/
|
|
27113
27169
|
'name': string;
|
|
27114
27170
|
/**
|
|
27115
|
-
*
|
|
27171
|
+
* Connection type.
|
|
27116
27172
|
* @type {string}
|
|
27117
27173
|
* @memberof SourceCreatedBeta
|
|
27118
27174
|
*/
|
|
27119
27175
|
'type': string;
|
|
27120
27176
|
/**
|
|
27121
|
-
*
|
|
27177
|
+
* Date and time when the source was created.
|
|
27122
27178
|
* @type {string}
|
|
27123
27179
|
* @memberof SourceCreatedBeta
|
|
27124
27180
|
*/
|
|
27125
27181
|
'created': string;
|
|
27126
27182
|
/**
|
|
27127
|
-
*
|
|
27183
|
+
* Connector type used to connect to the source.
|
|
27128
27184
|
* @type {string}
|
|
27129
27185
|
* @memberof SourceCreatedBeta
|
|
27130
27186
|
*/
|
|
@@ -27186,19 +27242,19 @@ export interface SourceCreationErrorsBeta {
|
|
|
27186
27242
|
*/
|
|
27187
27243
|
export interface SourceDeletedActorBeta {
|
|
27188
27244
|
/**
|
|
27189
|
-
* DTO type of identity who deleted the source.
|
|
27245
|
+
* DTO type of the identity who deleted the source.
|
|
27190
27246
|
* @type {string}
|
|
27191
27247
|
* @memberof SourceDeletedActorBeta
|
|
27192
27248
|
*/
|
|
27193
27249
|
'type': SourceDeletedActorBetaTypeBeta;
|
|
27194
27250
|
/**
|
|
27195
|
-
* ID of identity who deleted the source.
|
|
27251
|
+
* ID of the identity who deleted the source.
|
|
27196
27252
|
* @type {string}
|
|
27197
27253
|
* @memberof SourceDeletedActorBeta
|
|
27198
27254
|
*/
|
|
27199
27255
|
'id': string;
|
|
27200
27256
|
/**
|
|
27201
|
-
*
|
|
27257
|
+
* Name of the identity who deleted the source.
|
|
27202
27258
|
* @type {string}
|
|
27203
27259
|
* @memberof SourceDeletedActorBeta
|
|
27204
27260
|
*/
|
|
@@ -27215,31 +27271,31 @@ export type SourceDeletedActorBetaTypeBeta = typeof SourceDeletedActorBetaTypeBe
|
|
|
27215
27271
|
*/
|
|
27216
27272
|
export interface SourceDeletedBeta {
|
|
27217
27273
|
/**
|
|
27218
|
-
*
|
|
27274
|
+
* Source\'s unique ID.
|
|
27219
27275
|
* @type {string}
|
|
27220
27276
|
* @memberof SourceDeletedBeta
|
|
27221
27277
|
*/
|
|
27222
27278
|
'id': string;
|
|
27223
27279
|
/**
|
|
27224
|
-
*
|
|
27280
|
+
* Source name.
|
|
27225
27281
|
* @type {string}
|
|
27226
27282
|
* @memberof SourceDeletedBeta
|
|
27227
27283
|
*/
|
|
27228
27284
|
'name': string;
|
|
27229
27285
|
/**
|
|
27230
|
-
*
|
|
27286
|
+
* Connection type.
|
|
27231
27287
|
* @type {string}
|
|
27232
27288
|
* @memberof SourceDeletedBeta
|
|
27233
27289
|
*/
|
|
27234
27290
|
'type': string;
|
|
27235
27291
|
/**
|
|
27236
|
-
*
|
|
27292
|
+
* Date and time when the source was deleted.
|
|
27237
27293
|
* @type {string}
|
|
27238
27294
|
* @memberof SourceDeletedBeta
|
|
27239
27295
|
*/
|
|
27240
27296
|
'deleted': string;
|
|
27241
27297
|
/**
|
|
27242
|
-
*
|
|
27298
|
+
* Connector type used to connect to the source.
|
|
27243
27299
|
* @type {string}
|
|
27244
27300
|
* @memberof SourceDeletedBeta
|
|
27245
27301
|
*/
|
|
@@ -27322,19 +27378,19 @@ export interface SourceSyncPayloadBeta {
|
|
|
27322
27378
|
*/
|
|
27323
27379
|
export interface SourceUpdatedActorBeta {
|
|
27324
27380
|
/**
|
|
27325
|
-
* DTO type of identity who updated the source.
|
|
27381
|
+
* DTO type of the identity who updated the source.
|
|
27326
27382
|
* @type {string}
|
|
27327
27383
|
* @memberof SourceUpdatedActorBeta
|
|
27328
27384
|
*/
|
|
27329
27385
|
'type': SourceUpdatedActorBetaTypeBeta;
|
|
27330
27386
|
/**
|
|
27331
|
-
* ID of identity who updated the source.
|
|
27387
|
+
* ID of the identity who updated the source.
|
|
27332
27388
|
* @type {string}
|
|
27333
27389
|
* @memberof SourceUpdatedActorBeta
|
|
27334
27390
|
*/
|
|
27335
|
-
'id'
|
|
27391
|
+
'id': string;
|
|
27336
27392
|
/**
|
|
27337
|
-
*
|
|
27393
|
+
* Name of the identity who updated the source.
|
|
27338
27394
|
* @type {string}
|
|
27339
27395
|
* @memberof SourceUpdatedActorBeta
|
|
27340
27396
|
*/
|
|
@@ -27351,31 +27407,31 @@ export type SourceUpdatedActorBetaTypeBeta = typeof SourceUpdatedActorBetaTypeBe
|
|
|
27351
27407
|
*/
|
|
27352
27408
|
export interface SourceUpdatedBeta {
|
|
27353
27409
|
/**
|
|
27354
|
-
*
|
|
27410
|
+
* Source\'s unique ID.
|
|
27355
27411
|
* @type {string}
|
|
27356
27412
|
* @memberof SourceUpdatedBeta
|
|
27357
27413
|
*/
|
|
27358
27414
|
'id': string;
|
|
27359
27415
|
/**
|
|
27360
|
-
*
|
|
27416
|
+
* Source name.
|
|
27361
27417
|
* @type {string}
|
|
27362
27418
|
* @memberof SourceUpdatedBeta
|
|
27363
27419
|
*/
|
|
27364
27420
|
'name': string;
|
|
27365
27421
|
/**
|
|
27366
|
-
*
|
|
27422
|
+
* Connection type.
|
|
27367
27423
|
* @type {string}
|
|
27368
27424
|
* @memberof SourceUpdatedBeta
|
|
27369
27425
|
*/
|
|
27370
27426
|
'type': string;
|
|
27371
27427
|
/**
|
|
27372
|
-
*
|
|
27428
|
+
* Date and time when the source was modified.
|
|
27373
27429
|
* @type {string}
|
|
27374
27430
|
* @memberof SourceUpdatedBeta
|
|
27375
27431
|
*/
|
|
27376
27432
|
'modified': string;
|
|
27377
27433
|
/**
|
|
27378
|
-
*
|
|
27434
|
+
* Connector type used to connect to the source.
|
|
27379
27435
|
* @type {string}
|
|
27380
27436
|
* @memberof SourceUpdatedBeta
|
|
27381
27437
|
*/
|
|
@@ -28551,7 +28607,7 @@ export interface TaskDefinitionSummaryBeta {
|
|
|
28551
28607
|
* @type {string}
|
|
28552
28608
|
* @memberof TaskDefinitionSummaryBeta
|
|
28553
28609
|
*/
|
|
28554
|
-
'description': string;
|
|
28610
|
+
'description': string | null;
|
|
28555
28611
|
/**
|
|
28556
28612
|
* Name of the parent of the TaskDefinition
|
|
28557
28613
|
* @type {string}
|
|
@@ -30328,25 +30384,25 @@ export interface V3ConnectorDtoBeta {
|
|
|
30328
30384
|
'status'?: string;
|
|
30329
30385
|
}
|
|
30330
30386
|
/**
|
|
30331
|
-
* Details about the `CLUSTER` or `SOURCE` that initiated
|
|
30387
|
+
* Details about the `CLUSTER` or `SOURCE` that initiated the event.
|
|
30332
30388
|
* @export
|
|
30333
30389
|
* @interface VAClusterStatusChangeEventApplicationBeta
|
|
30334
30390
|
*/
|
|
30335
30391
|
export interface VAClusterStatusChangeEventApplicationBeta {
|
|
30336
30392
|
/**
|
|
30337
|
-
*
|
|
30393
|
+
* Application\'s globally unique identifier (GUID).
|
|
30338
30394
|
* @type {string}
|
|
30339
30395
|
* @memberof VAClusterStatusChangeEventApplicationBeta
|
|
30340
30396
|
*/
|
|
30341
30397
|
'id': string;
|
|
30342
30398
|
/**
|
|
30343
|
-
*
|
|
30399
|
+
* Application name.
|
|
30344
30400
|
* @type {string}
|
|
30345
30401
|
* @memberof VAClusterStatusChangeEventApplicationBeta
|
|
30346
30402
|
*/
|
|
30347
30403
|
'name': string;
|
|
30348
30404
|
/**
|
|
30349
|
-
* Custom map of attributes for a source.
|
|
30405
|
+
* Custom map of attributes for a source. Attributes only populate if the type is `SOURCE` and the source has a proxy.
|
|
30350
30406
|
* @type {{ [key: string]: any; }}
|
|
30351
30407
|
* @memberof VAClusterStatusChangeEventApplicationBeta
|
|
30352
30408
|
*/
|
|
@@ -30361,13 +30417,13 @@ export interface VAClusterStatusChangeEventApplicationBeta {
|
|
|
30361
30417
|
*/
|
|
30362
30418
|
export interface VAClusterStatusChangeEventBeta {
|
|
30363
30419
|
/**
|
|
30364
|
-
*
|
|
30420
|
+
* Date and time when the status change occurred.
|
|
30365
30421
|
* @type {string}
|
|
30366
30422
|
* @memberof VAClusterStatusChangeEventBeta
|
|
30367
30423
|
*/
|
|
30368
30424
|
'created': string;
|
|
30369
30425
|
/**
|
|
30370
|
-
*
|
|
30426
|
+
* Type of the object that initiated the event.
|
|
30371
30427
|
* @type {object}
|
|
30372
30428
|
* @memberof VAClusterStatusChangeEventBeta
|
|
30373
30429
|
*/
|
|
@@ -30397,26 +30453,26 @@ export declare const VAClusterStatusChangeEventBetaTypeBeta: {
|
|
|
30397
30453
|
};
|
|
30398
30454
|
export type VAClusterStatusChangeEventBetaTypeBeta = typeof VAClusterStatusChangeEventBetaTypeBeta[keyof typeof VAClusterStatusChangeEventBetaTypeBeta];
|
|
30399
30455
|
/**
|
|
30400
|
-
*
|
|
30456
|
+
* Results of the most recent health check.
|
|
30401
30457
|
* @export
|
|
30402
30458
|
* @interface VAClusterStatusChangeEventHealthCheckResultBeta
|
|
30403
30459
|
*/
|
|
30404
30460
|
export interface VAClusterStatusChangeEventHealthCheckResultBeta {
|
|
30405
30461
|
/**
|
|
30406
|
-
* Detailed message of the
|
|
30462
|
+
* Detailed message of the health check result..
|
|
30407
30463
|
* @type {string}
|
|
30408
30464
|
* @memberof VAClusterStatusChangeEventHealthCheckResultBeta
|
|
30409
30465
|
*/
|
|
30410
30466
|
'message': string;
|
|
30411
30467
|
/**
|
|
30412
|
-
*
|
|
30468
|
+
* Health check result type.
|
|
30413
30469
|
* @type {string}
|
|
30414
30470
|
* @memberof VAClusterStatusChangeEventHealthCheckResultBeta
|
|
30415
30471
|
*/
|
|
30416
30472
|
'resultType': string;
|
|
30417
30473
|
/**
|
|
30418
|
-
*
|
|
30419
|
-
* @type {
|
|
30474
|
+
* Health check status.
|
|
30475
|
+
* @type {string}
|
|
30420
30476
|
* @memberof VAClusterStatusChangeEventHealthCheckResultBeta
|
|
30421
30477
|
*/
|
|
30422
30478
|
'status': VAClusterStatusChangeEventHealthCheckResultBetaStatusBeta;
|
|
@@ -30427,26 +30483,26 @@ export declare const VAClusterStatusChangeEventHealthCheckResultBetaStatusBeta:
|
|
|
30427
30483
|
};
|
|
30428
30484
|
export type VAClusterStatusChangeEventHealthCheckResultBetaStatusBeta = typeof VAClusterStatusChangeEventHealthCheckResultBetaStatusBeta[keyof typeof VAClusterStatusChangeEventHealthCheckResultBetaStatusBeta];
|
|
30429
30485
|
/**
|
|
30430
|
-
*
|
|
30486
|
+
* Results of the last health check.
|
|
30431
30487
|
* @export
|
|
30432
30488
|
* @interface VAClusterStatusChangeEventPreviousHealthCheckResultBeta
|
|
30433
30489
|
*/
|
|
30434
30490
|
export interface VAClusterStatusChangeEventPreviousHealthCheckResultBeta {
|
|
30435
30491
|
/**
|
|
30436
|
-
* Detailed message of the
|
|
30492
|
+
* Detailed message of the health check result.
|
|
30437
30493
|
* @type {string}
|
|
30438
30494
|
* @memberof VAClusterStatusChangeEventPreviousHealthCheckResultBeta
|
|
30439
30495
|
*/
|
|
30440
30496
|
'message': string;
|
|
30441
30497
|
/**
|
|
30442
|
-
*
|
|
30498
|
+
* Health check result type.
|
|
30443
30499
|
* @type {string}
|
|
30444
30500
|
* @memberof VAClusterStatusChangeEventPreviousHealthCheckResultBeta
|
|
30445
30501
|
*/
|
|
30446
30502
|
'resultType': string;
|
|
30447
30503
|
/**
|
|
30448
|
-
*
|
|
30449
|
-
* @type {
|
|
30504
|
+
* Health check status.
|
|
30505
|
+
* @type {string}
|
|
30450
30506
|
* @memberof VAClusterStatusChangeEventPreviousHealthCheckResultBeta
|
|
30451
30507
|
*/
|
|
30452
30508
|
'status': VAClusterStatusChangeEventPreviousHealthCheckResultBetaStatusBeta;
|
|
@@ -31710,6 +31766,18 @@ export interface WorkflowTriggerAttributesBeta {
|
|
|
31710
31766
|
* @memberof WorkflowTriggerAttributesBeta
|
|
31711
31767
|
*/
|
|
31712
31768
|
'description'?: string;
|
|
31769
|
+
/**
|
|
31770
|
+
* The attribute to filter on
|
|
31771
|
+
* @type {string}
|
|
31772
|
+
* @memberof WorkflowTriggerAttributesBeta
|
|
31773
|
+
*/
|
|
31774
|
+
'attributeToFilter'?: string;
|
|
31775
|
+
/**
|
|
31776
|
+
* Form definition\'s unique identifier.
|
|
31777
|
+
* @type {string}
|
|
31778
|
+
* @memberof WorkflowTriggerAttributesBeta
|
|
31779
|
+
*/
|
|
31780
|
+
'formDefinitionId'?: string;
|
|
31713
31781
|
/**
|
|
31714
31782
|
* A unique name for the external trigger
|
|
31715
31783
|
* @type {string}
|
|
@@ -31741,7 +31809,7 @@ export interface WorkflowTriggerAttributesBeta {
|
|
|
31741
31809
|
*/
|
|
31742
31810
|
'timeZone'?: string;
|
|
31743
31811
|
/**
|
|
31744
|
-
*
|
|
31812
|
+
* A valid CRON expression
|
|
31745
31813
|
* @type {string}
|
|
31746
31814
|
* @memberof WorkflowTriggerAttributesBeta
|
|
31747
31815
|
*/
|
|
@@ -31758,6 +31826,12 @@ export interface WorkflowTriggerAttributesBeta {
|
|
|
31758
31826
|
* @memberof WorkflowTriggerAttributesBeta
|
|
31759
31827
|
*/
|
|
31760
31828
|
'weeklyTimes'?: Array<string>;
|
|
31829
|
+
/**
|
|
31830
|
+
* Scheduled execution times
|
|
31831
|
+
* @type {Array<string>}
|
|
31832
|
+
* @memberof WorkflowTriggerAttributesBeta
|
|
31833
|
+
*/
|
|
31834
|
+
'yearlyTimes'?: Array<string>;
|
|
31761
31835
|
}
|
|
31762
31836
|
export declare const WorkflowTriggerAttributesBetaFrequencyBeta: {
|
|
31763
31837
|
readonly Daily: "daily";
|
|
@@ -32232,7 +32306,7 @@ export declare class AccessModelMetadataBetaApi extends BaseAPI {
|
|
|
32232
32306
|
*/
|
|
32233
32307
|
export declare const AccessProfilesBetaApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
32234
32308
|
/**
|
|
32235
|
-
*
|
|
32309
|
+
* 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.
|
|
32236
32310
|
* @summary Create Access Profile
|
|
32237
32311
|
* @param {AccessProfileBeta} accessProfileBeta
|
|
32238
32312
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -32277,16 +32351,16 @@ export declare const AccessProfilesBetaApiAxiosParamCreator: (configuration?: Co
|
|
|
32277
32351
|
*/
|
|
32278
32352
|
getAccessProfileEntitlements: (id: string, limit?: number, offset?: number, count?: boolean, filters?: string, sorters?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
32279
32353
|
/**
|
|
32280
|
-
*
|
|
32354
|
+
* Get a list of access profiles. >**Note:** When you filter for access profiles that have the \'+\' symbol in their names, the response is blank.
|
|
32281
32355
|
* @summary List Access Profiles
|
|
32282
|
-
* @param {string} [forSubadmin]
|
|
32283
|
-
* @param {number} [limit]
|
|
32356
|
+
* @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.
|
|
32357
|
+
* @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.
|
|
32284
32358
|
* @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.
|
|
32285
32359
|
* @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.
|
|
32286
32360
|
* @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.
|
|
32287
32361
|
* @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**
|
|
32288
|
-
* @param {string} [forSegmentIds]
|
|
32289
|
-
* @param {boolean} [includeUnsegmented] Indicates whether the response list should contain unsegmented access profiles. If
|
|
32362
|
+
* @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.
|
|
32363
|
+
* @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.
|
|
32290
32364
|
* @param {*} [axiosOptions] Override http request option.
|
|
32291
32365
|
* @throws {RequiredError}
|
|
32292
32366
|
*/
|
|
@@ -32315,7 +32389,7 @@ export declare const AccessProfilesBetaApiAxiosParamCreator: (configuration?: Co
|
|
|
32315
32389
|
*/
|
|
32316
32390
|
export declare const AccessProfilesBetaApiFp: (configuration?: Configuration) => {
|
|
32317
32391
|
/**
|
|
32318
|
-
*
|
|
32392
|
+
* 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.
|
|
32319
32393
|
* @summary Create Access Profile
|
|
32320
32394
|
* @param {AccessProfileBeta} accessProfileBeta
|
|
32321
32395
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -32360,16 +32434,16 @@ export declare const AccessProfilesBetaApiFp: (configuration?: Configuration) =>
|
|
|
32360
32434
|
*/
|
|
32361
32435
|
getAccessProfileEntitlements(id: string, limit?: number, offset?: number, count?: boolean, filters?: string, sorters?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<EntitlementBeta>>>;
|
|
32362
32436
|
/**
|
|
32363
|
-
*
|
|
32437
|
+
* Get a list of access profiles. >**Note:** When you filter for access profiles that have the \'+\' symbol in their names, the response is blank.
|
|
32364
32438
|
* @summary List Access Profiles
|
|
32365
|
-
* @param {string} [forSubadmin]
|
|
32366
|
-
* @param {number} [limit]
|
|
32439
|
+
* @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.
|
|
32440
|
+
* @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.
|
|
32367
32441
|
* @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.
|
|
32368
32442
|
* @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.
|
|
32369
32443
|
* @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.
|
|
32370
32444
|
* @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**
|
|
32371
|
-
* @param {string} [forSegmentIds]
|
|
32372
|
-
* @param {boolean} [includeUnsegmented] Indicates whether the response list should contain unsegmented access profiles. If
|
|
32445
|
+
* @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.
|
|
32446
|
+
* @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.
|
|
32373
32447
|
* @param {*} [axiosOptions] Override http request option.
|
|
32374
32448
|
* @throws {RequiredError}
|
|
32375
32449
|
*/
|
|
@@ -32398,7 +32472,7 @@ export declare const AccessProfilesBetaApiFp: (configuration?: Configuration) =>
|
|
|
32398
32472
|
*/
|
|
32399
32473
|
export declare const AccessProfilesBetaApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
32400
32474
|
/**
|
|
32401
|
-
*
|
|
32475
|
+
* 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.
|
|
32402
32476
|
* @summary Create Access Profile
|
|
32403
32477
|
* @param {AccessProfilesBetaApiCreateAccessProfileRequest} requestParameters Request parameters.
|
|
32404
32478
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -32438,7 +32512,7 @@ export declare const AccessProfilesBetaApiFactory: (configuration?: Configuratio
|
|
|
32438
32512
|
*/
|
|
32439
32513
|
getAccessProfileEntitlements(requestParameters: AccessProfilesBetaApiGetAccessProfileEntitlementsRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<EntitlementBeta>>;
|
|
32440
32514
|
/**
|
|
32441
|
-
*
|
|
32515
|
+
* Get a list of access profiles. >**Note:** When you filter for access profiles that have the \'+\' symbol in their names, the response is blank.
|
|
32442
32516
|
* @summary List Access Profiles
|
|
32443
32517
|
* @param {AccessProfilesBetaApiListAccessProfilesRequest} requestParameters Request parameters.
|
|
32444
32518
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -32564,13 +32638,13 @@ export interface AccessProfilesBetaApiGetAccessProfileEntitlementsRequest {
|
|
|
32564
32638
|
*/
|
|
32565
32639
|
export interface AccessProfilesBetaApiListAccessProfilesRequest {
|
|
32566
32640
|
/**
|
|
32567
|
-
*
|
|
32641
|
+
* 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.
|
|
32568
32642
|
* @type {string}
|
|
32569
32643
|
* @memberof AccessProfilesBetaApiListAccessProfiles
|
|
32570
32644
|
*/
|
|
32571
32645
|
readonly forSubadmin?: string;
|
|
32572
32646
|
/**
|
|
32573
|
-
*
|
|
32647
|
+
* Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
32574
32648
|
* @type {number}
|
|
32575
32649
|
* @memberof AccessProfilesBetaApiListAccessProfiles
|
|
32576
32650
|
*/
|
|
@@ -32600,13 +32674,13 @@ export interface AccessProfilesBetaApiListAccessProfilesRequest {
|
|
|
32600
32674
|
*/
|
|
32601
32675
|
readonly sorters?: string;
|
|
32602
32676
|
/**
|
|
32603
|
-
*
|
|
32677
|
+
* 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.
|
|
32604
32678
|
* @type {string}
|
|
32605
32679
|
* @memberof AccessProfilesBetaApiListAccessProfiles
|
|
32606
32680
|
*/
|
|
32607
32681
|
readonly forSegmentIds?: string;
|
|
32608
32682
|
/**
|
|
32609
|
-
* Indicates whether the response list should contain unsegmented access profiles. If
|
|
32683
|
+
* 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.
|
|
32610
32684
|
* @type {boolean}
|
|
32611
32685
|
* @memberof AccessProfilesBetaApiListAccessProfiles
|
|
32612
32686
|
*/
|
|
@@ -32652,7 +32726,7 @@ export interface AccessProfilesBetaApiUpdateAccessProfilesInBulkRequest {
|
|
|
32652
32726
|
*/
|
|
32653
32727
|
export declare class AccessProfilesBetaApi extends BaseAPI {
|
|
32654
32728
|
/**
|
|
32655
|
-
*
|
|
32729
|
+
* 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.
|
|
32656
32730
|
* @summary Create Access Profile
|
|
32657
32731
|
* @param {AccessProfilesBetaApiCreateAccessProfileRequest} requestParameters Request parameters.
|
|
32658
32732
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -32697,7 +32771,7 @@ export declare class AccessProfilesBetaApi extends BaseAPI {
|
|
|
32697
32771
|
*/
|
|
32698
32772
|
getAccessProfileEntitlements(requestParameters: AccessProfilesBetaApiGetAccessProfileEntitlementsRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<EntitlementBeta[], any>>;
|
|
32699
32773
|
/**
|
|
32700
|
-
*
|
|
32774
|
+
* Get a list of access profiles. >**Note:** When you filter for access profiles that have the \'+\' symbol in their names, the response is blank.
|
|
32701
32775
|
* @summary List Access Profiles
|
|
32702
32776
|
* @param {AccessProfilesBetaApiListAccessProfilesRequest} requestParameters Request parameters.
|
|
32703
32777
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -41052,7 +41126,7 @@ export declare class GovernanceGroupsBetaApi extends BaseAPI {
|
|
|
41052
41126
|
export declare const IAIAccessRequestRecommendationsBetaApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
41053
41127
|
/**
|
|
41054
41128
|
* 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.
|
|
41055
|
-
* @summary
|
|
41129
|
+
* @summary Ignore Access Request Recommendation
|
|
41056
41130
|
* @param {AccessRequestRecommendationActionItemDtoBeta} accessRequestRecommendationActionItemDtoBeta The recommended access item to ignore for an identity.
|
|
41057
41131
|
* @param {*} [axiosOptions] Override http request option.
|
|
41058
41132
|
* @throws {RequiredError}
|
|
@@ -41060,7 +41134,7 @@ export declare const IAIAccessRequestRecommendationsBetaApiAxiosParamCreator: (c
|
|
|
41060
41134
|
addAccessRequestRecommendationsIgnoredItem: (accessRequestRecommendationActionItemDtoBeta: AccessRequestRecommendationActionItemDtoBeta, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
41061
41135
|
/**
|
|
41062
41136
|
* 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.
|
|
41063
|
-
* @summary
|
|
41137
|
+
* @summary Accept Access Request Recommendation
|
|
41064
41138
|
* @param {AccessRequestRecommendationActionItemDtoBeta} accessRequestRecommendationActionItemDtoBeta The recommended access item that was requested for an identity.
|
|
41065
41139
|
* @param {*} [axiosOptions] Override http request option.
|
|
41066
41140
|
* @throws {RequiredError}
|
|
@@ -41068,7 +41142,7 @@ export declare const IAIAccessRequestRecommendationsBetaApiAxiosParamCreator: (c
|
|
|
41068
41142
|
addAccessRequestRecommendationsRequestedItem: (accessRequestRecommendationActionItemDtoBeta: AccessRequestRecommendationActionItemDtoBeta, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
41069
41143
|
/**
|
|
41070
41144
|
* 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.
|
|
41071
|
-
* @summary
|
|
41145
|
+
* @summary Mark Viewed Access Request Recommendations
|
|
41072
41146
|
* @param {AccessRequestRecommendationActionItemDtoBeta} accessRequestRecommendationActionItemDtoBeta The recommended access that was viewed for an identity.
|
|
41073
41147
|
* @param {*} [axiosOptions] Override http request option.
|
|
41074
41148
|
* @throws {RequiredError}
|
|
@@ -41076,7 +41150,7 @@ export declare const IAIAccessRequestRecommendationsBetaApiAxiosParamCreator: (c
|
|
|
41076
41150
|
addAccessRequestRecommendationsViewedItem: (accessRequestRecommendationActionItemDtoBeta: AccessRequestRecommendationActionItemDtoBeta, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
41077
41151
|
/**
|
|
41078
41152
|
* 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.
|
|
41079
|
-
* @summary
|
|
41153
|
+
* @summary Bulk Mark Viewed Access Request Recommendations
|
|
41080
41154
|
* @param {Array<AccessRequestRecommendationActionItemDtoBeta>} accessRequestRecommendationActionItemDtoBeta The recommended access items that were viewed for an identity.
|
|
41081
41155
|
* @param {*} [axiosOptions] Override http request option.
|
|
41082
41156
|
* @throws {RequiredError}
|
|
@@ -41098,7 +41172,7 @@ export declare const IAIAccessRequestRecommendationsBetaApiAxiosParamCreator: (c
|
|
|
41098
41172
|
getAccessRequestRecommendations: (identityId?: string, limit?: number, offset?: number, count?: boolean, includeTranslationMessages?: boolean, filters?: string, sorters?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
41099
41173
|
/**
|
|
41100
41174
|
* This API returns the list of ignored access request recommendations.
|
|
41101
|
-
* @summary List
|
|
41175
|
+
* @summary List Ignored Access Request Recommendations
|
|
41102
41176
|
* @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.
|
|
41103
41177
|
* @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.
|
|
41104
41178
|
* @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.
|
|
@@ -41110,7 +41184,7 @@ export declare const IAIAccessRequestRecommendationsBetaApiAxiosParamCreator: (c
|
|
|
41110
41184
|
getAccessRequestRecommendationsIgnoredItems: (limit?: number, offset?: number, count?: boolean, filters?: string, sorters?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
41111
41185
|
/**
|
|
41112
41186
|
* This API returns a list of requested access request recommendations.
|
|
41113
|
-
* @summary List
|
|
41187
|
+
* @summary List Accepted Access Request Recommendations
|
|
41114
41188
|
* @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.
|
|
41115
41189
|
* @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.
|
|
41116
41190
|
* @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.
|
|
@@ -41122,7 +41196,7 @@ export declare const IAIAccessRequestRecommendationsBetaApiAxiosParamCreator: (c
|
|
|
41122
41196
|
getAccessRequestRecommendationsRequestedItems: (limit?: number, offset?: number, count?: boolean, filters?: string, sorters?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
41123
41197
|
/**
|
|
41124
41198
|
* This API returns the list of viewed access request recommendations.
|
|
41125
|
-
* @summary List
|
|
41199
|
+
* @summary List Viewed Access Request Recommendations
|
|
41126
41200
|
* @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.
|
|
41127
41201
|
* @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.
|
|
41128
41202
|
* @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.
|
|
@@ -41140,7 +41214,7 @@ export declare const IAIAccessRequestRecommendationsBetaApiAxiosParamCreator: (c
|
|
|
41140
41214
|
export declare const IAIAccessRequestRecommendationsBetaApiFp: (configuration?: Configuration) => {
|
|
41141
41215
|
/**
|
|
41142
41216
|
* 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.
|
|
41143
|
-
* @summary
|
|
41217
|
+
* @summary Ignore Access Request Recommendation
|
|
41144
41218
|
* @param {AccessRequestRecommendationActionItemDtoBeta} accessRequestRecommendationActionItemDtoBeta The recommended access item to ignore for an identity.
|
|
41145
41219
|
* @param {*} [axiosOptions] Override http request option.
|
|
41146
41220
|
* @throws {RequiredError}
|
|
@@ -41148,7 +41222,7 @@ export declare const IAIAccessRequestRecommendationsBetaApiFp: (configuration?:
|
|
|
41148
41222
|
addAccessRequestRecommendationsIgnoredItem(accessRequestRecommendationActionItemDtoBeta: AccessRequestRecommendationActionItemDtoBeta, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AccessRequestRecommendationActionItemResponseDtoBeta>>;
|
|
41149
41223
|
/**
|
|
41150
41224
|
* 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.
|
|
41151
|
-
* @summary
|
|
41225
|
+
* @summary Accept Access Request Recommendation
|
|
41152
41226
|
* @param {AccessRequestRecommendationActionItemDtoBeta} accessRequestRecommendationActionItemDtoBeta The recommended access item that was requested for an identity.
|
|
41153
41227
|
* @param {*} [axiosOptions] Override http request option.
|
|
41154
41228
|
* @throws {RequiredError}
|
|
@@ -41156,7 +41230,7 @@ export declare const IAIAccessRequestRecommendationsBetaApiFp: (configuration?:
|
|
|
41156
41230
|
addAccessRequestRecommendationsRequestedItem(accessRequestRecommendationActionItemDtoBeta: AccessRequestRecommendationActionItemDtoBeta, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AccessRequestRecommendationActionItemResponseDtoBeta>>;
|
|
41157
41231
|
/**
|
|
41158
41232
|
* 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.
|
|
41159
|
-
* @summary
|
|
41233
|
+
* @summary Mark Viewed Access Request Recommendations
|
|
41160
41234
|
* @param {AccessRequestRecommendationActionItemDtoBeta} accessRequestRecommendationActionItemDtoBeta The recommended access that was viewed for an identity.
|
|
41161
41235
|
* @param {*} [axiosOptions] Override http request option.
|
|
41162
41236
|
* @throws {RequiredError}
|
|
@@ -41164,7 +41238,7 @@ export declare const IAIAccessRequestRecommendationsBetaApiFp: (configuration?:
|
|
|
41164
41238
|
addAccessRequestRecommendationsViewedItem(accessRequestRecommendationActionItemDtoBeta: AccessRequestRecommendationActionItemDtoBeta, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AccessRequestRecommendationActionItemResponseDtoBeta>>;
|
|
41165
41239
|
/**
|
|
41166
41240
|
* 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.
|
|
41167
|
-
* @summary
|
|
41241
|
+
* @summary Bulk Mark Viewed Access Request Recommendations
|
|
41168
41242
|
* @param {Array<AccessRequestRecommendationActionItemDtoBeta>} accessRequestRecommendationActionItemDtoBeta The recommended access items that were viewed for an identity.
|
|
41169
41243
|
* @param {*} [axiosOptions] Override http request option.
|
|
41170
41244
|
* @throws {RequiredError}
|
|
@@ -41186,7 +41260,7 @@ export declare const IAIAccessRequestRecommendationsBetaApiFp: (configuration?:
|
|
|
41186
41260
|
getAccessRequestRecommendations(identityId?: string, limit?: number, offset?: number, count?: boolean, includeTranslationMessages?: boolean, filters?: string, sorters?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<AccessRequestRecommendationItemDetailBeta>>>;
|
|
41187
41261
|
/**
|
|
41188
41262
|
* This API returns the list of ignored access request recommendations.
|
|
41189
|
-
* @summary List
|
|
41263
|
+
* @summary List Ignored Access Request Recommendations
|
|
41190
41264
|
* @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.
|
|
41191
41265
|
* @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.
|
|
41192
41266
|
* @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.
|
|
@@ -41198,7 +41272,7 @@ export declare const IAIAccessRequestRecommendationsBetaApiFp: (configuration?:
|
|
|
41198
41272
|
getAccessRequestRecommendationsIgnoredItems(limit?: number, offset?: number, count?: boolean, filters?: string, sorters?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<AccessRequestRecommendationActionItemResponseDtoBeta>>>;
|
|
41199
41273
|
/**
|
|
41200
41274
|
* This API returns a list of requested access request recommendations.
|
|
41201
|
-
* @summary List
|
|
41275
|
+
* @summary List Accepted Access Request Recommendations
|
|
41202
41276
|
* @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.
|
|
41203
41277
|
* @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.
|
|
41204
41278
|
* @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.
|
|
@@ -41210,7 +41284,7 @@ export declare const IAIAccessRequestRecommendationsBetaApiFp: (configuration?:
|
|
|
41210
41284
|
getAccessRequestRecommendationsRequestedItems(limit?: number, offset?: number, count?: boolean, filters?: string, sorters?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<AccessRequestRecommendationActionItemResponseDtoBeta>>>;
|
|
41211
41285
|
/**
|
|
41212
41286
|
* This API returns the list of viewed access request recommendations.
|
|
41213
|
-
* @summary List
|
|
41287
|
+
* @summary List Viewed Access Request Recommendations
|
|
41214
41288
|
* @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.
|
|
41215
41289
|
* @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.
|
|
41216
41290
|
* @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.
|
|
@@ -41228,7 +41302,7 @@ export declare const IAIAccessRequestRecommendationsBetaApiFp: (configuration?:
|
|
|
41228
41302
|
export declare const IAIAccessRequestRecommendationsBetaApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
41229
41303
|
/**
|
|
41230
41304
|
* 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.
|
|
41231
|
-
* @summary
|
|
41305
|
+
* @summary Ignore Access Request Recommendation
|
|
41232
41306
|
* @param {IAIAccessRequestRecommendationsBetaApiAddAccessRequestRecommendationsIgnoredItemRequest} requestParameters Request parameters.
|
|
41233
41307
|
* @param {*} [axiosOptions] Override http request option.
|
|
41234
41308
|
* @throws {RequiredError}
|
|
@@ -41236,7 +41310,7 @@ export declare const IAIAccessRequestRecommendationsBetaApiFactory: (configurati
|
|
|
41236
41310
|
addAccessRequestRecommendationsIgnoredItem(requestParameters: IAIAccessRequestRecommendationsBetaApiAddAccessRequestRecommendationsIgnoredItemRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<AccessRequestRecommendationActionItemResponseDtoBeta>;
|
|
41237
41311
|
/**
|
|
41238
41312
|
* 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.
|
|
41239
|
-
* @summary
|
|
41313
|
+
* @summary Accept Access Request Recommendation
|
|
41240
41314
|
* @param {IAIAccessRequestRecommendationsBetaApiAddAccessRequestRecommendationsRequestedItemRequest} requestParameters Request parameters.
|
|
41241
41315
|
* @param {*} [axiosOptions] Override http request option.
|
|
41242
41316
|
* @throws {RequiredError}
|
|
@@ -41244,7 +41318,7 @@ export declare const IAIAccessRequestRecommendationsBetaApiFactory: (configurati
|
|
|
41244
41318
|
addAccessRequestRecommendationsRequestedItem(requestParameters: IAIAccessRequestRecommendationsBetaApiAddAccessRequestRecommendationsRequestedItemRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<AccessRequestRecommendationActionItemResponseDtoBeta>;
|
|
41245
41319
|
/**
|
|
41246
41320
|
* 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.
|
|
41247
|
-
* @summary
|
|
41321
|
+
* @summary Mark Viewed Access Request Recommendations
|
|
41248
41322
|
* @param {IAIAccessRequestRecommendationsBetaApiAddAccessRequestRecommendationsViewedItemRequest} requestParameters Request parameters.
|
|
41249
41323
|
* @param {*} [axiosOptions] Override http request option.
|
|
41250
41324
|
* @throws {RequiredError}
|
|
@@ -41252,7 +41326,7 @@ export declare const IAIAccessRequestRecommendationsBetaApiFactory: (configurati
|
|
|
41252
41326
|
addAccessRequestRecommendationsViewedItem(requestParameters: IAIAccessRequestRecommendationsBetaApiAddAccessRequestRecommendationsViewedItemRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<AccessRequestRecommendationActionItemResponseDtoBeta>;
|
|
41253
41327
|
/**
|
|
41254
41328
|
* 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.
|
|
41255
|
-
* @summary
|
|
41329
|
+
* @summary Bulk Mark Viewed Access Request Recommendations
|
|
41256
41330
|
* @param {IAIAccessRequestRecommendationsBetaApiAddAccessRequestRecommendationsViewedItemsRequest} requestParameters Request parameters.
|
|
41257
41331
|
* @param {*} [axiosOptions] Override http request option.
|
|
41258
41332
|
* @throws {RequiredError}
|
|
@@ -41268,7 +41342,7 @@ export declare const IAIAccessRequestRecommendationsBetaApiFactory: (configurati
|
|
|
41268
41342
|
getAccessRequestRecommendations(requestParameters?: IAIAccessRequestRecommendationsBetaApiGetAccessRequestRecommendationsRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<AccessRequestRecommendationItemDetailBeta>>;
|
|
41269
41343
|
/**
|
|
41270
41344
|
* This API returns the list of ignored access request recommendations.
|
|
41271
|
-
* @summary List
|
|
41345
|
+
* @summary List Ignored Access Request Recommendations
|
|
41272
41346
|
* @param {IAIAccessRequestRecommendationsBetaApiGetAccessRequestRecommendationsIgnoredItemsRequest} requestParameters Request parameters.
|
|
41273
41347
|
* @param {*} [axiosOptions] Override http request option.
|
|
41274
41348
|
* @throws {RequiredError}
|
|
@@ -41276,7 +41350,7 @@ export declare const IAIAccessRequestRecommendationsBetaApiFactory: (configurati
|
|
|
41276
41350
|
getAccessRequestRecommendationsIgnoredItems(requestParameters?: IAIAccessRequestRecommendationsBetaApiGetAccessRequestRecommendationsIgnoredItemsRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<AccessRequestRecommendationActionItemResponseDtoBeta>>;
|
|
41277
41351
|
/**
|
|
41278
41352
|
* This API returns a list of requested access request recommendations.
|
|
41279
|
-
* @summary List
|
|
41353
|
+
* @summary List Accepted Access Request Recommendations
|
|
41280
41354
|
* @param {IAIAccessRequestRecommendationsBetaApiGetAccessRequestRecommendationsRequestedItemsRequest} requestParameters Request parameters.
|
|
41281
41355
|
* @param {*} [axiosOptions] Override http request option.
|
|
41282
41356
|
* @throws {RequiredError}
|
|
@@ -41284,7 +41358,7 @@ export declare const IAIAccessRequestRecommendationsBetaApiFactory: (configurati
|
|
|
41284
41358
|
getAccessRequestRecommendationsRequestedItems(requestParameters?: IAIAccessRequestRecommendationsBetaApiGetAccessRequestRecommendationsRequestedItemsRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<AccessRequestRecommendationActionItemResponseDtoBeta>>;
|
|
41285
41359
|
/**
|
|
41286
41360
|
* This API returns the list of viewed access request recommendations.
|
|
41287
|
-
* @summary List
|
|
41361
|
+
* @summary List Viewed Access Request Recommendations
|
|
41288
41362
|
* @param {IAIAccessRequestRecommendationsBetaApiGetAccessRequestRecommendationsViewedItemsRequest} requestParameters Request parameters.
|
|
41289
41363
|
* @param {*} [axiosOptions] Override http request option.
|
|
41290
41364
|
* @throws {RequiredError}
|
|
@@ -41512,7 +41586,7 @@ export interface IAIAccessRequestRecommendationsBetaApiGetAccessRequestRecommend
|
|
|
41512
41586
|
export declare class IAIAccessRequestRecommendationsBetaApi extends BaseAPI {
|
|
41513
41587
|
/**
|
|
41514
41588
|
* 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.
|
|
41515
|
-
* @summary
|
|
41589
|
+
* @summary Ignore Access Request Recommendation
|
|
41516
41590
|
* @param {IAIAccessRequestRecommendationsBetaApiAddAccessRequestRecommendationsIgnoredItemRequest} requestParameters Request parameters.
|
|
41517
41591
|
* @param {*} [axiosOptions] Override http request option.
|
|
41518
41592
|
* @throws {RequiredError}
|
|
@@ -41521,7 +41595,7 @@ export declare class IAIAccessRequestRecommendationsBetaApi extends BaseAPI {
|
|
|
41521
41595
|
addAccessRequestRecommendationsIgnoredItem(requestParameters: IAIAccessRequestRecommendationsBetaApiAddAccessRequestRecommendationsIgnoredItemRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AccessRequestRecommendationActionItemResponseDtoBeta, any>>;
|
|
41522
41596
|
/**
|
|
41523
41597
|
* 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.
|
|
41524
|
-
* @summary
|
|
41598
|
+
* @summary Accept Access Request Recommendation
|
|
41525
41599
|
* @param {IAIAccessRequestRecommendationsBetaApiAddAccessRequestRecommendationsRequestedItemRequest} requestParameters Request parameters.
|
|
41526
41600
|
* @param {*} [axiosOptions] Override http request option.
|
|
41527
41601
|
* @throws {RequiredError}
|
|
@@ -41530,7 +41604,7 @@ export declare class IAIAccessRequestRecommendationsBetaApi extends BaseAPI {
|
|
|
41530
41604
|
addAccessRequestRecommendationsRequestedItem(requestParameters: IAIAccessRequestRecommendationsBetaApiAddAccessRequestRecommendationsRequestedItemRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AccessRequestRecommendationActionItemResponseDtoBeta, any>>;
|
|
41531
41605
|
/**
|
|
41532
41606
|
* 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.
|
|
41533
|
-
* @summary
|
|
41607
|
+
* @summary Mark Viewed Access Request Recommendations
|
|
41534
41608
|
* @param {IAIAccessRequestRecommendationsBetaApiAddAccessRequestRecommendationsViewedItemRequest} requestParameters Request parameters.
|
|
41535
41609
|
* @param {*} [axiosOptions] Override http request option.
|
|
41536
41610
|
* @throws {RequiredError}
|
|
@@ -41539,7 +41613,7 @@ export declare class IAIAccessRequestRecommendationsBetaApi extends BaseAPI {
|
|
|
41539
41613
|
addAccessRequestRecommendationsViewedItem(requestParameters: IAIAccessRequestRecommendationsBetaApiAddAccessRequestRecommendationsViewedItemRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AccessRequestRecommendationActionItemResponseDtoBeta, any>>;
|
|
41540
41614
|
/**
|
|
41541
41615
|
* 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.
|
|
41542
|
-
* @summary
|
|
41616
|
+
* @summary Bulk Mark Viewed Access Request Recommendations
|
|
41543
41617
|
* @param {IAIAccessRequestRecommendationsBetaApiAddAccessRequestRecommendationsViewedItemsRequest} requestParameters Request parameters.
|
|
41544
41618
|
* @param {*} [axiosOptions] Override http request option.
|
|
41545
41619
|
* @throws {RequiredError}
|
|
@@ -41557,7 +41631,7 @@ export declare class IAIAccessRequestRecommendationsBetaApi extends BaseAPI {
|
|
|
41557
41631
|
getAccessRequestRecommendations(requestParameters?: IAIAccessRequestRecommendationsBetaApiGetAccessRequestRecommendationsRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AccessRequestRecommendationItemDetailBeta[], any>>;
|
|
41558
41632
|
/**
|
|
41559
41633
|
* This API returns the list of ignored access request recommendations.
|
|
41560
|
-
* @summary List
|
|
41634
|
+
* @summary List Ignored Access Request Recommendations
|
|
41561
41635
|
* @param {IAIAccessRequestRecommendationsBetaApiGetAccessRequestRecommendationsIgnoredItemsRequest} requestParameters Request parameters.
|
|
41562
41636
|
* @param {*} [axiosOptions] Override http request option.
|
|
41563
41637
|
* @throws {RequiredError}
|
|
@@ -41566,7 +41640,7 @@ export declare class IAIAccessRequestRecommendationsBetaApi extends BaseAPI {
|
|
|
41566
41640
|
getAccessRequestRecommendationsIgnoredItems(requestParameters?: IAIAccessRequestRecommendationsBetaApiGetAccessRequestRecommendationsIgnoredItemsRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AccessRequestRecommendationActionItemResponseDtoBeta[], any>>;
|
|
41567
41641
|
/**
|
|
41568
41642
|
* This API returns a list of requested access request recommendations.
|
|
41569
|
-
* @summary List
|
|
41643
|
+
* @summary List Accepted Access Request Recommendations
|
|
41570
41644
|
* @param {IAIAccessRequestRecommendationsBetaApiGetAccessRequestRecommendationsRequestedItemsRequest} requestParameters Request parameters.
|
|
41571
41645
|
* @param {*} [axiosOptions] Override http request option.
|
|
41572
41646
|
* @throws {RequiredError}
|
|
@@ -41575,7 +41649,7 @@ export declare class IAIAccessRequestRecommendationsBetaApi extends BaseAPI {
|
|
|
41575
41649
|
getAccessRequestRecommendationsRequestedItems(requestParameters?: IAIAccessRequestRecommendationsBetaApiGetAccessRequestRecommendationsRequestedItemsRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AccessRequestRecommendationActionItemResponseDtoBeta[], any>>;
|
|
41576
41650
|
/**
|
|
41577
41651
|
* This API returns the list of viewed access request recommendations.
|
|
41578
|
-
* @summary List
|
|
41652
|
+
* @summary List Viewed Access Request Recommendations
|
|
41579
41653
|
* @param {IAIAccessRequestRecommendationsBetaApiGetAccessRequestRecommendationsViewedItemsRequest} requestParameters Request parameters.
|
|
41580
41654
|
* @param {*} [axiosOptions] Override http request option.
|
|
41581
41655
|
* @throws {RequiredError}
|
|
@@ -42617,7 +42691,7 @@ export type GetPeerGroupOutliersStrategyBeta = typeof GetPeerGroupOutliersStrate
|
|
|
42617
42691
|
export declare const IAIRecommendationsBetaApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
42618
42692
|
/**
|
|
42619
42693
|
* 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.
|
|
42620
|
-
* @summary Returns
|
|
42694
|
+
* @summary Returns Recommendation Based on Object
|
|
42621
42695
|
* @param {RecommendationRequestDtoBeta} recommendationRequestDtoBeta
|
|
42622
42696
|
* @param {*} [axiosOptions] Override http request option.
|
|
42623
42697
|
* @throws {RequiredError}
|
|
@@ -42646,7 +42720,7 @@ export declare const IAIRecommendationsBetaApiAxiosParamCreator: (configuration?
|
|
|
42646
42720
|
export declare const IAIRecommendationsBetaApiFp: (configuration?: Configuration) => {
|
|
42647
42721
|
/**
|
|
42648
42722
|
* 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.
|
|
42649
|
-
* @summary Returns
|
|
42723
|
+
* @summary Returns Recommendation Based on Object
|
|
42650
42724
|
* @param {RecommendationRequestDtoBeta} recommendationRequestDtoBeta
|
|
42651
42725
|
* @param {*} [axiosOptions] Override http request option.
|
|
42652
42726
|
* @throws {RequiredError}
|
|
@@ -42675,7 +42749,7 @@ export declare const IAIRecommendationsBetaApiFp: (configuration?: Configuration
|
|
|
42675
42749
|
export declare const IAIRecommendationsBetaApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
42676
42750
|
/**
|
|
42677
42751
|
* 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.
|
|
42678
|
-
* @summary Returns
|
|
42752
|
+
* @summary Returns Recommendation Based on Object
|
|
42679
42753
|
* @param {IAIRecommendationsBetaApiGetRecommendationsRequest} requestParameters Request parameters.
|
|
42680
42754
|
* @param {*} [axiosOptions] Override http request option.
|
|
42681
42755
|
* @throws {RequiredError}
|
|
@@ -42732,7 +42806,7 @@ export interface IAIRecommendationsBetaApiUpdateRecommendationsConfigRequest {
|
|
|
42732
42806
|
export declare class IAIRecommendationsBetaApi extends BaseAPI {
|
|
42733
42807
|
/**
|
|
42734
42808
|
* 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.
|
|
42735
|
-
* @summary Returns
|
|
42809
|
+
* @summary Returns Recommendation Based on Object
|
|
42736
42810
|
* @param {IAIRecommendationsBetaApiGetRecommendationsRequest} requestParameters Request parameters.
|
|
42737
42811
|
* @param {*} [axiosOptions] Override http request option.
|
|
42738
42812
|
* @throws {RequiredError}
|
|
@@ -53640,12 +53714,12 @@ export declare class PublicIdentitiesConfigBetaApi extends BaseAPI {
|
|
|
53640
53714
|
*/
|
|
53641
53715
|
export declare const RequestableObjectsBetaApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
53642
53716
|
/**
|
|
53643
|
-
*
|
|
53717
|
+
* 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.
|
|
53644
53718
|
* @summary Requestable Objects List
|
|
53645
53719
|
* @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.
|
|
53646
|
-
* @param {Array<RequestableObjectTypeBeta>} [types] Filters the results to the specified type/types, where each type is one of ROLE or ACCESS_PROFILE
|
|
53647
|
-
* @param {string} [term]
|
|
53648
|
-
* @param {Array<RequestableObjectRequestStatusBeta>} [statuses] Filters the result to the specified status/statuses, where each status is one of AVAILABLE
|
|
53720
|
+
* @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.
|
|
53721
|
+
* @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.
|
|
53722
|
+
* @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.
|
|
53649
53723
|
* @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.
|
|
53650
53724
|
* @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.
|
|
53651
53725
|
* @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.
|
|
@@ -53662,12 +53736,12 @@ export declare const RequestableObjectsBetaApiAxiosParamCreator: (configuration?
|
|
|
53662
53736
|
*/
|
|
53663
53737
|
export declare const RequestableObjectsBetaApiFp: (configuration?: Configuration) => {
|
|
53664
53738
|
/**
|
|
53665
|
-
*
|
|
53739
|
+
* 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.
|
|
53666
53740
|
* @summary Requestable Objects List
|
|
53667
53741
|
* @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.
|
|
53668
|
-
* @param {Array<RequestableObjectTypeBeta>} [types] Filters the results to the specified type/types, where each type is one of ROLE or ACCESS_PROFILE
|
|
53669
|
-
* @param {string} [term]
|
|
53670
|
-
* @param {Array<RequestableObjectRequestStatusBeta>} [statuses] Filters the result to the specified status/statuses, where each status is one of AVAILABLE
|
|
53742
|
+
* @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.
|
|
53743
|
+
* @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.
|
|
53744
|
+
* @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.
|
|
53671
53745
|
* @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.
|
|
53672
53746
|
* @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.
|
|
53673
53747
|
* @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.
|
|
@@ -53684,7 +53758,7 @@ export declare const RequestableObjectsBetaApiFp: (configuration?: Configuration
|
|
|
53684
53758
|
*/
|
|
53685
53759
|
export declare const RequestableObjectsBetaApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
53686
53760
|
/**
|
|
53687
|
-
*
|
|
53761
|
+
* 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.
|
|
53688
53762
|
* @summary Requestable Objects List
|
|
53689
53763
|
* @param {RequestableObjectsBetaApiListRequestableObjectsRequest} requestParameters Request parameters.
|
|
53690
53764
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -53705,19 +53779,19 @@ export interface RequestableObjectsBetaApiListRequestableObjectsRequest {
|
|
|
53705
53779
|
*/
|
|
53706
53780
|
readonly identityId?: string;
|
|
53707
53781
|
/**
|
|
53708
|
-
* Filters the results to the specified type/types, where each type is one of ROLE or ACCESS_PROFILE
|
|
53782
|
+
* 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.
|
|
53709
53783
|
* @type {Array<RequestableObjectTypeBeta>}
|
|
53710
53784
|
* @memberof RequestableObjectsBetaApiListRequestableObjects
|
|
53711
53785
|
*/
|
|
53712
53786
|
readonly types?: Array<RequestableObjectTypeBeta>;
|
|
53713
53787
|
/**
|
|
53714
|
-
*
|
|
53788
|
+
* 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.
|
|
53715
53789
|
* @type {string}
|
|
53716
53790
|
* @memberof RequestableObjectsBetaApiListRequestableObjects
|
|
53717
53791
|
*/
|
|
53718
53792
|
readonly term?: string;
|
|
53719
53793
|
/**
|
|
53720
|
-
* Filters the result to the specified status/statuses, where each status is one of AVAILABLE
|
|
53794
|
+
* 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.
|
|
53721
53795
|
* @type {Array<RequestableObjectRequestStatusBeta>}
|
|
53722
53796
|
* @memberof RequestableObjectsBetaApiListRequestableObjects
|
|
53723
53797
|
*/
|
|
@@ -53761,7 +53835,7 @@ export interface RequestableObjectsBetaApiListRequestableObjectsRequest {
|
|
|
53761
53835
|
*/
|
|
53762
53836
|
export declare class RequestableObjectsBetaApi extends BaseAPI {
|
|
53763
53837
|
/**
|
|
53764
|
-
*
|
|
53838
|
+
* 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.
|
|
53765
53839
|
* @summary Requestable Objects List
|
|
53766
53840
|
* @param {RequestableObjectsBetaApiListRequestableObjectsRequest} requestParameters Request parameters.
|
|
53767
53841
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -54363,10 +54437,10 @@ export declare const RolesBetaApiAxiosParamCreator: (configuration?: Configurati
|
|
|
54363
54437
|
*/
|
|
54364
54438
|
getRoleAssignedIdentities: (id: string, limit?: number, offset?: number, count?: boolean, filters?: string, sorters?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
54365
54439
|
/**
|
|
54366
|
-
*
|
|
54367
|
-
* @summary List
|
|
54368
|
-
* @param {string} id
|
|
54369
|
-
* @param {number} [limit]
|
|
54440
|
+
* Get a list of entitlements associated with a specified role.
|
|
54441
|
+
* @summary List Role\'s Entitlements
|
|
54442
|
+
* @param {string} id Containing role\'s ID.
|
|
54443
|
+
* @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.
|
|
54370
54444
|
* @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.
|
|
54371
54445
|
* @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.
|
|
54372
54446
|
* @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*
|
|
@@ -54451,10 +54525,10 @@ export declare const RolesBetaApiFp: (configuration?: Configuration) => {
|
|
|
54451
54525
|
*/
|
|
54452
54526
|
getRoleAssignedIdentities(id: string, limit?: number, offset?: number, count?: boolean, filters?: string, sorters?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<RoleIdentityBeta>>>;
|
|
54453
54527
|
/**
|
|
54454
|
-
*
|
|
54455
|
-
* @summary List
|
|
54456
|
-
* @param {string} id
|
|
54457
|
-
* @param {number} [limit]
|
|
54528
|
+
* Get a list of entitlements associated with a specified role.
|
|
54529
|
+
* @summary List Role\'s Entitlements
|
|
54530
|
+
* @param {string} id Containing role\'s ID.
|
|
54531
|
+
* @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.
|
|
54458
54532
|
* @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.
|
|
54459
54533
|
* @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.
|
|
54460
54534
|
* @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*
|
|
@@ -54534,8 +54608,8 @@ export declare const RolesBetaApiFactory: (configuration?: Configuration, basePa
|
|
|
54534
54608
|
*/
|
|
54535
54609
|
getRoleAssignedIdentities(requestParameters: RolesBetaApiGetRoleAssignedIdentitiesRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<RoleIdentityBeta>>;
|
|
54536
54610
|
/**
|
|
54537
|
-
*
|
|
54538
|
-
* @summary List
|
|
54611
|
+
* Get a list of entitlements associated with a specified role.
|
|
54612
|
+
* @summary List Role\'s Entitlements
|
|
54539
54613
|
* @param {RolesBetaApiGetRoleEntitlementsRequest} requestParameters Request parameters.
|
|
54540
54614
|
* @param {*} [axiosOptions] Override http request option.
|
|
54541
54615
|
* @throws {RequiredError}
|
|
@@ -54660,13 +54734,13 @@ export interface RolesBetaApiGetRoleAssignedIdentitiesRequest {
|
|
|
54660
54734
|
*/
|
|
54661
54735
|
export interface RolesBetaApiGetRoleEntitlementsRequest {
|
|
54662
54736
|
/**
|
|
54663
|
-
*
|
|
54737
|
+
* Containing role\'s ID.
|
|
54664
54738
|
* @type {string}
|
|
54665
54739
|
* @memberof RolesBetaApiGetRoleEntitlements
|
|
54666
54740
|
*/
|
|
54667
54741
|
readonly id: string;
|
|
54668
54742
|
/**
|
|
54669
|
-
*
|
|
54743
|
+
* 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.
|
|
54670
54744
|
* @type {number}
|
|
54671
54745
|
* @memberof RolesBetaApiGetRoleEntitlements
|
|
54672
54746
|
*/
|
|
@@ -54823,8 +54897,8 @@ export declare class RolesBetaApi extends BaseAPI {
|
|
|
54823
54897
|
*/
|
|
54824
54898
|
getRoleAssignedIdentities(requestParameters: RolesBetaApiGetRoleAssignedIdentitiesRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<RoleIdentityBeta[], any>>;
|
|
54825
54899
|
/**
|
|
54826
|
-
*
|
|
54827
|
-
* @summary List
|
|
54900
|
+
* Get a list of entitlements associated with a specified role.
|
|
54901
|
+
* @summary List Role\'s Entitlements
|
|
54828
54902
|
* @param {RolesBetaApiGetRoleEntitlementsRequest} requestParameters Request parameters.
|
|
54829
54903
|
* @param {*} [axiosOptions] Override http request option.
|
|
54830
54904
|
* @throws {RequiredError}
|
|
@@ -56515,7 +56589,7 @@ export declare class SPConfigBetaApi extends BaseAPI {
|
|
|
56515
56589
|
*/
|
|
56516
56590
|
export declare const SearchAttributeConfigurationBetaApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
56517
56591
|
/**
|
|
56518
|
-
* Create and configure extended search attributes.
|
|
56592
|
+
* 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`.**
|
|
56519
56593
|
* @summary Create Extended Search Attributes
|
|
56520
56594
|
* @param {SearchAttributeConfigBeta} searchAttributeConfigBeta
|
|
56521
56595
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -56531,12 +56605,14 @@ export declare const SearchAttributeConfigurationBetaApiAxiosParamCreator: (conf
|
|
|
56531
56605
|
*/
|
|
56532
56606
|
deleteSearchAttributeConfig: (name: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
56533
56607
|
/**
|
|
56534
|
-
* Get a list of attribute/application
|
|
56608
|
+
* 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.
|
|
56535
56609
|
* @summary List Extended Search Attributes
|
|
56610
|
+
* @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.
|
|
56611
|
+
* @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.
|
|
56536
56612
|
* @param {*} [axiosOptions] Override http request option.
|
|
56537
56613
|
* @throws {RequiredError}
|
|
56538
56614
|
*/
|
|
56539
|
-
getSearchAttributeConfig: (axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
56615
|
+
getSearchAttributeConfig: (limit?: number, offset?: number, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
56540
56616
|
/**
|
|
56541
56617
|
* Get an extended attribute configuration by name.
|
|
56542
56618
|
* @summary Get Extended Search Attribute
|
|
@@ -56561,7 +56637,7 @@ export declare const SearchAttributeConfigurationBetaApiAxiosParamCreator: (conf
|
|
|
56561
56637
|
*/
|
|
56562
56638
|
export declare const SearchAttributeConfigurationBetaApiFp: (configuration?: Configuration) => {
|
|
56563
56639
|
/**
|
|
56564
|
-
* Create and configure extended search attributes.
|
|
56640
|
+
* 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`.**
|
|
56565
56641
|
* @summary Create Extended Search Attributes
|
|
56566
56642
|
* @param {SearchAttributeConfigBeta} searchAttributeConfigBeta
|
|
56567
56643
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -56577,12 +56653,14 @@ export declare const SearchAttributeConfigurationBetaApiFp: (configuration?: Con
|
|
|
56577
56653
|
*/
|
|
56578
56654
|
deleteSearchAttributeConfig(name: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
56579
56655
|
/**
|
|
56580
|
-
* Get a list of attribute/application
|
|
56656
|
+
* 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.
|
|
56581
56657
|
* @summary List Extended Search Attributes
|
|
56658
|
+
* @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.
|
|
56659
|
+
* @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.
|
|
56582
56660
|
* @param {*} [axiosOptions] Override http request option.
|
|
56583
56661
|
* @throws {RequiredError}
|
|
56584
56662
|
*/
|
|
56585
|
-
getSearchAttributeConfig(axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<SearchAttributeConfigBeta>>>;
|
|
56663
|
+
getSearchAttributeConfig(limit?: number, offset?: number, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<SearchAttributeConfigBeta>>>;
|
|
56586
56664
|
/**
|
|
56587
56665
|
* Get an extended attribute configuration by name.
|
|
56588
56666
|
* @summary Get Extended Search Attribute
|
|
@@ -56607,7 +56685,7 @@ export declare const SearchAttributeConfigurationBetaApiFp: (configuration?: Con
|
|
|
56607
56685
|
*/
|
|
56608
56686
|
export declare const SearchAttributeConfigurationBetaApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
56609
56687
|
/**
|
|
56610
|
-
* Create and configure extended search attributes.
|
|
56688
|
+
* 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`.**
|
|
56611
56689
|
* @summary Create Extended Search Attributes
|
|
56612
56690
|
* @param {SearchAttributeConfigurationBetaApiCreateSearchAttributeConfigRequest} requestParameters Request parameters.
|
|
56613
56691
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -56623,12 +56701,13 @@ export declare const SearchAttributeConfigurationBetaApiFactory: (configuration?
|
|
|
56623
56701
|
*/
|
|
56624
56702
|
deleteSearchAttributeConfig(requestParameters: SearchAttributeConfigurationBetaApiDeleteSearchAttributeConfigRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
56625
56703
|
/**
|
|
56626
|
-
* Get a list of attribute/application
|
|
56704
|
+
* 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.
|
|
56627
56705
|
* @summary List Extended Search Attributes
|
|
56706
|
+
* @param {SearchAttributeConfigurationBetaApiGetSearchAttributeConfigRequest} requestParameters Request parameters.
|
|
56628
56707
|
* @param {*} [axiosOptions] Override http request option.
|
|
56629
56708
|
* @throws {RequiredError}
|
|
56630
56709
|
*/
|
|
56631
|
-
getSearchAttributeConfig(axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<SearchAttributeConfigBeta>>;
|
|
56710
|
+
getSearchAttributeConfig(requestParameters?: SearchAttributeConfigurationBetaApiGetSearchAttributeConfigRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<SearchAttributeConfigBeta>>;
|
|
56632
56711
|
/**
|
|
56633
56712
|
* Get an extended attribute configuration by name.
|
|
56634
56713
|
* @summary Get Extended Search Attribute
|
|
@@ -56672,6 +56751,25 @@ export interface SearchAttributeConfigurationBetaApiDeleteSearchAttributeConfigR
|
|
|
56672
56751
|
*/
|
|
56673
56752
|
readonly name: string;
|
|
56674
56753
|
}
|
|
56754
|
+
/**
|
|
56755
|
+
* Request parameters for getSearchAttributeConfig operation in SearchAttributeConfigurationBetaApi.
|
|
56756
|
+
* @export
|
|
56757
|
+
* @interface SearchAttributeConfigurationBetaApiGetSearchAttributeConfigRequest
|
|
56758
|
+
*/
|
|
56759
|
+
export interface SearchAttributeConfigurationBetaApiGetSearchAttributeConfigRequest {
|
|
56760
|
+
/**
|
|
56761
|
+
* Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
56762
|
+
* @type {number}
|
|
56763
|
+
* @memberof SearchAttributeConfigurationBetaApiGetSearchAttributeConfig
|
|
56764
|
+
*/
|
|
56765
|
+
readonly limit?: number;
|
|
56766
|
+
/**
|
|
56767
|
+
* 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.
|
|
56768
|
+
* @type {number}
|
|
56769
|
+
* @memberof SearchAttributeConfigurationBetaApiGetSearchAttributeConfig
|
|
56770
|
+
*/
|
|
56771
|
+
readonly offset?: number;
|
|
56772
|
+
}
|
|
56675
56773
|
/**
|
|
56676
56774
|
* Request parameters for getSingleSearchAttributeConfig operation in SearchAttributeConfigurationBetaApi.
|
|
56677
56775
|
* @export
|
|
@@ -56712,7 +56810,7 @@ export interface SearchAttributeConfigurationBetaApiPatchSearchAttributeConfigRe
|
|
|
56712
56810
|
*/
|
|
56713
56811
|
export declare class SearchAttributeConfigurationBetaApi extends BaseAPI {
|
|
56714
56812
|
/**
|
|
56715
|
-
* Create and configure extended search attributes.
|
|
56813
|
+
* 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`.**
|
|
56716
56814
|
* @summary Create Extended Search Attributes
|
|
56717
56815
|
* @param {SearchAttributeConfigurationBetaApiCreateSearchAttributeConfigRequest} requestParameters Request parameters.
|
|
56718
56816
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -56730,13 +56828,14 @@ export declare class SearchAttributeConfigurationBetaApi extends BaseAPI {
|
|
|
56730
56828
|
*/
|
|
56731
56829
|
deleteSearchAttributeConfig(requestParameters: SearchAttributeConfigurationBetaApiDeleteSearchAttributeConfigRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
56732
56830
|
/**
|
|
56733
|
-
* Get a list of attribute/application
|
|
56831
|
+
* 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.
|
|
56734
56832
|
* @summary List Extended Search Attributes
|
|
56833
|
+
* @param {SearchAttributeConfigurationBetaApiGetSearchAttributeConfigRequest} requestParameters Request parameters.
|
|
56735
56834
|
* @param {*} [axiosOptions] Override http request option.
|
|
56736
56835
|
* @throws {RequiredError}
|
|
56737
56836
|
* @memberof SearchAttributeConfigurationBetaApi
|
|
56738
56837
|
*/
|
|
56739
|
-
getSearchAttributeConfig(axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SearchAttributeConfigBeta[], any>>;
|
|
56838
|
+
getSearchAttributeConfig(requestParameters?: SearchAttributeConfigurationBetaApiGetSearchAttributeConfigRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SearchAttributeConfigBeta[], any>>;
|
|
56740
56839
|
/**
|
|
56741
56840
|
* Get an extended attribute configuration by name.
|
|
56742
56841
|
* @summary Get Extended Search Attribute
|