sailpoint-api-client 1.4.14 → 1.4.16
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/beta/README.md +2 -2
- package/beta/api.ts +608 -414
- package/beta/common.ts +3 -3
- package/beta/package.json +1 -1
- package/configuration.ts +5 -1
- package/dist/beta/api.d.ts +538 -382
- package/dist/beta/api.js +222 -139
- package/dist/beta/api.js.map +1 -1
- package/dist/beta/common.js +2 -2
- package/dist/beta/common.js.map +1 -1
- package/dist/configuration.js +6 -2
- package/dist/configuration.js.map +1 -1
- package/dist/v2024/api.d.ts +1872 -1642
- package/dist/v2024/api.js +815 -442
- package/dist/v2024/api.js.map +1 -1
- package/dist/v2024/common.js +2 -2
- package/dist/v2024/common.js.map +1 -1
- package/dist/v3/api.d.ts +492 -168
- package/dist/v3/api.js +117 -69
- package/dist/v3/api.js.map +1 -1
- package/dist/v3/common.js +2 -2
- package/dist/v3/common.js.map +1 -1
- package/package.json +9 -3
- package/v2024/README.md +2 -2
- package/v2024/api.ts +2307 -1902
- package/v2024/common.ts +3 -3
- package/v2024/package.json +1 -1
- package/v3/README.md +2 -2
- package/v3/api.ts +531 -175
- package/v3/common.ts +3 -3
- package/v3/package.json +1 -1
package/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
|
*/
|
|
@@ -2049,10 +2078,10 @@ export interface AccessRequestTrackingBeta {
|
|
|
2049
2078
|
'requestedItemsDetails'?: Array<RequestedItemDetailsBeta>;
|
|
2050
2079
|
/**
|
|
2051
2080
|
* a hash representation of the access requested, useful for longer term tracking client side.
|
|
2052
|
-
* @type {
|
|
2081
|
+
* @type {number}
|
|
2053
2082
|
* @memberof AccessRequestTrackingBeta
|
|
2054
2083
|
*/
|
|
2055
|
-
'attributesHash'?:
|
|
2084
|
+
'attributesHash'?: number;
|
|
2056
2085
|
/**
|
|
2057
2086
|
* a list of access request identifiers, generally only one will be populated, but high volume requested may result in multiple ids.
|
|
2058
2087
|
* @type {Array<string>}
|
|
@@ -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
|
*/
|
|
@@ -2760,7 +2789,7 @@ export interface AccountBeta {
|
|
|
2760
2789
|
* @type {string}
|
|
2761
2790
|
* @memberof AccountBeta
|
|
2762
2791
|
*/
|
|
2763
|
-
'name': string;
|
|
2792
|
+
'name': string | null;
|
|
2764
2793
|
/**
|
|
2765
2794
|
* Creation date of the Object
|
|
2766
2795
|
* @type {string}
|
|
@@ -4888,7 +4917,7 @@ export interface BaseCommonDto1Beta {
|
|
|
4888
4917
|
* @type {string}
|
|
4889
4918
|
* @memberof BaseCommonDto1Beta
|
|
4890
4919
|
*/
|
|
4891
|
-
'name': string;
|
|
4920
|
+
'name': string | null;
|
|
4892
4921
|
/**
|
|
4893
4922
|
* Creation date of the Object
|
|
4894
4923
|
* @type {string}
|
|
@@ -4919,7 +4948,7 @@ export interface BaseCommonDtoBeta {
|
|
|
4919
4948
|
* @type {string}
|
|
4920
4949
|
* @memberof BaseCommonDtoBeta
|
|
4921
4950
|
*/
|
|
4922
|
-
'name': string;
|
|
4951
|
+
'name': string | null;
|
|
4923
4952
|
/**
|
|
4924
4953
|
* Creation date of the Object
|
|
4925
4954
|
* @type {string}
|
|
@@ -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
|
*
|
|
@@ -9855,6 +9896,7 @@ export declare const ExportOptionsBetaExcludeTypesBeta: {
|
|
|
9855
9896
|
readonly AttrSyncSourceConfig: "ATTR_SYNC_SOURCE_CONFIG";
|
|
9856
9897
|
readonly AuthOrg: "AUTH_ORG";
|
|
9857
9898
|
readonly CampaignFilter: "CAMPAIGN_FILTER";
|
|
9899
|
+
readonly ConnectorRule: "CONNECTOR_RULE";
|
|
9858
9900
|
readonly FormDefinition: "FORM_DEFINITION";
|
|
9859
9901
|
readonly GovernanceGroup: "GOVERNANCE_GROUP";
|
|
9860
9902
|
readonly IdentityObjectConfig: "IDENTITY_OBJECT_CONFIG";
|
|
@@ -9882,6 +9924,7 @@ export declare const ExportOptionsBetaIncludeTypesBeta: {
|
|
|
9882
9924
|
readonly AttrSyncSourceConfig: "ATTR_SYNC_SOURCE_CONFIG";
|
|
9883
9925
|
readonly AuthOrg: "AUTH_ORG";
|
|
9884
9926
|
readonly CampaignFilter: "CAMPAIGN_FILTER";
|
|
9927
|
+
readonly ConnectorRule: "CONNECTOR_RULE";
|
|
9885
9928
|
readonly FormDefinition: "FORM_DEFINITION";
|
|
9886
9929
|
readonly GovernanceGroup: "GOVERNANCE_GROUP";
|
|
9887
9930
|
readonly IdentityObjectConfig: "IDENTITY_OBJECT_CONFIG";
|
|
@@ -9942,6 +9985,7 @@ export declare const ExportPayloadBetaExcludeTypesBeta: {
|
|
|
9942
9985
|
readonly AttrSyncSourceConfig: "ATTR_SYNC_SOURCE_CONFIG";
|
|
9943
9986
|
readonly AuthOrg: "AUTH_ORG";
|
|
9944
9987
|
readonly CampaignFilter: "CAMPAIGN_FILTER";
|
|
9988
|
+
readonly ConnectorRule: "CONNECTOR_RULE";
|
|
9945
9989
|
readonly FormDefinition: "FORM_DEFINITION";
|
|
9946
9990
|
readonly GovernanceGroup: "GOVERNANCE_GROUP";
|
|
9947
9991
|
readonly IdentityObjectConfig: "IDENTITY_OBJECT_CONFIG";
|
|
@@ -9969,6 +10013,7 @@ export declare const ExportPayloadBetaIncludeTypesBeta: {
|
|
|
9969
10013
|
readonly AttrSyncSourceConfig: "ATTR_SYNC_SOURCE_CONFIG";
|
|
9970
10014
|
readonly AuthOrg: "AUTH_ORG";
|
|
9971
10015
|
readonly CampaignFilter: "CAMPAIGN_FILTER";
|
|
10016
|
+
readonly ConnectorRule: "CONNECTOR_RULE";
|
|
9972
10017
|
readonly FormDefinition: "FORM_DEFINITION";
|
|
9973
10018
|
readonly GovernanceGroup: "GOVERNANCE_GROUP";
|
|
9974
10019
|
readonly IdentityObjectConfig: "IDENTITY_OBJECT_CONFIG";
|
|
@@ -10432,6 +10477,7 @@ export interface FormDefinitionInputBeta {
|
|
|
10432
10477
|
}
|
|
10433
10478
|
export declare const FormDefinitionInputBetaTypeBeta: {
|
|
10434
10479
|
readonly String: "STRING";
|
|
10480
|
+
readonly Array: "ARRAY";
|
|
10435
10481
|
};
|
|
10436
10482
|
export type FormDefinitionInputBetaTypeBeta = typeof FormDefinitionInputBetaTypeBeta[keyof typeof FormDefinitionInputBetaTypeBeta];
|
|
10437
10483
|
/**
|
|
@@ -12392,7 +12438,7 @@ export interface IdentityAttributesChangedBeta {
|
|
|
12392
12438
|
*/
|
|
12393
12439
|
'identity': IdentityAttributesChangedIdentityBeta;
|
|
12394
12440
|
/**
|
|
12395
|
-
*
|
|
12441
|
+
* List of identity\'s attributes that changed.
|
|
12396
12442
|
* @type {Array<IdentityAttributesChangedChangesInnerBeta>}
|
|
12397
12443
|
* @memberof IdentityAttributesChangedBeta
|
|
12398
12444
|
*/
|
|
@@ -12405,7 +12451,7 @@ export interface IdentityAttributesChangedBeta {
|
|
|
12405
12451
|
*/
|
|
12406
12452
|
export interface IdentityAttributesChangedChangesInnerBeta {
|
|
12407
12453
|
/**
|
|
12408
|
-
*
|
|
12454
|
+
* Identity attribute\'s name.
|
|
12409
12455
|
* @type {string}
|
|
12410
12456
|
* @memberof IdentityAttributesChangedChangesInnerBeta
|
|
12411
12457
|
*/
|
|
@@ -12425,7 +12471,7 @@ export interface IdentityAttributesChangedChangesInnerBeta {
|
|
|
12425
12471
|
}
|
|
12426
12472
|
/**
|
|
12427
12473
|
* @type IdentityAttributesChangedChangesInnerNewValueBeta
|
|
12428
|
-
*
|
|
12474
|
+
* Identity attribute\'s new value after the change.
|
|
12429
12475
|
* @export
|
|
12430
12476
|
*/
|
|
12431
12477
|
export type IdentityAttributesChangedChangesInnerNewValueBeta = Array<string> | boolean | string | {
|
|
@@ -12433,7 +12479,7 @@ export type IdentityAttributesChangedChangesInnerNewValueBeta = Array<string> |
|
|
|
12433
12479
|
};
|
|
12434
12480
|
/**
|
|
12435
12481
|
* @type IdentityAttributesChangedChangesInnerOldValueBeta
|
|
12436
|
-
*
|
|
12482
|
+
* Identity attribute\'s previous value before the change.
|
|
12437
12483
|
* @export
|
|
12438
12484
|
*/
|
|
12439
12485
|
export type IdentityAttributesChangedChangesInnerOldValueBeta = Array<string> | boolean | string | {
|
|
@@ -12463,7 +12509,7 @@ export interface IdentityAttributesChangedIdentityBeta {
|
|
|
12463
12509
|
*/
|
|
12464
12510
|
'id': string;
|
|
12465
12511
|
/**
|
|
12466
|
-
*
|
|
12512
|
+
* Name of identity whose attributes changed.
|
|
12467
12513
|
* @type {string}
|
|
12468
12514
|
* @memberof IdentityAttributesChangedIdentityBeta
|
|
12469
12515
|
*/
|
|
@@ -12707,7 +12753,7 @@ export interface IdentityCreatedBeta {
|
|
|
12707
12753
|
*/
|
|
12708
12754
|
'identity': IdentityCreatedIdentityBeta;
|
|
12709
12755
|
/**
|
|
12710
|
-
*
|
|
12756
|
+
* Attributes assigned to the identity. These attributes are determined by the identity profile.
|
|
12711
12757
|
* @type {{ [key: string]: any; }}
|
|
12712
12758
|
* @memberof IdentityCreatedBeta
|
|
12713
12759
|
*/
|
|
@@ -12722,19 +12768,19 @@ export interface IdentityCreatedBeta {
|
|
|
12722
12768
|
*/
|
|
12723
12769
|
export interface IdentityCreatedIdentityBeta {
|
|
12724
12770
|
/**
|
|
12725
|
-
*
|
|
12771
|
+
* Identity\'s DTO type.
|
|
12726
12772
|
* @type {string}
|
|
12727
12773
|
* @memberof IdentityCreatedIdentityBeta
|
|
12728
12774
|
*/
|
|
12729
12775
|
'type': IdentityCreatedIdentityBetaTypeBeta;
|
|
12730
12776
|
/**
|
|
12731
|
-
*
|
|
12777
|
+
* Identity\'s unique ID.
|
|
12732
12778
|
* @type {string}
|
|
12733
12779
|
* @memberof IdentityCreatedIdentityBeta
|
|
12734
12780
|
*/
|
|
12735
12781
|
'id': string;
|
|
12736
12782
|
/**
|
|
12737
|
-
*
|
|
12783
|
+
* Identity\'s name.
|
|
12738
12784
|
* @type {string}
|
|
12739
12785
|
* @memberof IdentityCreatedIdentityBeta
|
|
12740
12786
|
*/
|
|
@@ -12757,7 +12803,7 @@ export interface IdentityDeletedBeta {
|
|
|
12757
12803
|
*/
|
|
12758
12804
|
'identity': IdentityDeletedIdentityBeta;
|
|
12759
12805
|
/**
|
|
12760
|
-
*
|
|
12806
|
+
* Identity attributes. The attributes are determined by the identity profile.
|
|
12761
12807
|
* @type {{ [key: string]: any; }}
|
|
12762
12808
|
* @memberof IdentityDeletedBeta
|
|
12763
12809
|
*/
|
|
@@ -12784,7 +12830,7 @@ export interface IdentityDeletedIdentityBeta {
|
|
|
12784
12830
|
*/
|
|
12785
12831
|
'id': string;
|
|
12786
12832
|
/**
|
|
12787
|
-
* Deleted identity\'s
|
|
12833
|
+
* Deleted identity\'s name.
|
|
12788
12834
|
* @type {string}
|
|
12789
12835
|
* @memberof IdentityDeletedIdentityBeta
|
|
12790
12836
|
*/
|
|
@@ -13153,7 +13199,7 @@ export interface IdentityProfile1Beta {
|
|
|
13153
13199
|
* @type {string}
|
|
13154
13200
|
* @memberof IdentityProfile1Beta
|
|
13155
13201
|
*/
|
|
13156
|
-
'name': string;
|
|
13202
|
+
'name': string | null;
|
|
13157
13203
|
/**
|
|
13158
13204
|
* Creation date of the Object
|
|
13159
13205
|
* @type {string}
|
|
@@ -13296,7 +13342,7 @@ export interface IdentityProfileBeta {
|
|
|
13296
13342
|
* @type {string}
|
|
13297
13343
|
* @memberof IdentityProfileBeta
|
|
13298
13344
|
*/
|
|
13299
|
-
'name': string;
|
|
13345
|
+
'name': string | null;
|
|
13300
13346
|
/**
|
|
13301
13347
|
* Creation date of the Object
|
|
13302
13348
|
* @type {string}
|
|
@@ -13797,6 +13843,7 @@ export interface ImportObjectBeta {
|
|
|
13797
13843
|
'name'?: string;
|
|
13798
13844
|
}
|
|
13799
13845
|
export declare const ImportObjectBetaTypeBeta: {
|
|
13846
|
+
readonly ConnectorRule: "CONNECTOR_RULE";
|
|
13800
13847
|
readonly IdentityObjectConfig: "IDENTITY_OBJECT_CONFIG";
|
|
13801
13848
|
readonly IdentityProfile: "IDENTITY_PROFILE";
|
|
13802
13849
|
readonly Rule: "RULE";
|
|
@@ -13845,6 +13892,7 @@ export interface ImportOptionsBeta {
|
|
|
13845
13892
|
'excludeBackup'?: boolean;
|
|
13846
13893
|
}
|
|
13847
13894
|
export declare const ImportOptionsBetaExcludeTypesBeta: {
|
|
13895
|
+
readonly ConnectorRule: "CONNECTOR_RULE";
|
|
13848
13896
|
readonly IdentityObjectConfig: "IDENTITY_OBJECT_CONFIG";
|
|
13849
13897
|
readonly IdentityProfile: "IDENTITY_PROFILE";
|
|
13850
13898
|
readonly Rule: "RULE";
|
|
@@ -13854,6 +13902,7 @@ export declare const ImportOptionsBetaExcludeTypesBeta: {
|
|
|
13854
13902
|
};
|
|
13855
13903
|
export type ImportOptionsBetaExcludeTypesBeta = typeof ImportOptionsBetaExcludeTypesBeta[keyof typeof ImportOptionsBetaExcludeTypesBeta];
|
|
13856
13904
|
export declare const ImportOptionsBetaIncludeTypesBeta: {
|
|
13905
|
+
readonly ConnectorRule: "CONNECTOR_RULE";
|
|
13857
13906
|
readonly IdentityObjectConfig: "IDENTITY_OBJECT_CONFIG";
|
|
13858
13907
|
readonly IdentityProfile: "IDENTITY_PROFILE";
|
|
13859
13908
|
readonly Rule: "RULE";
|
|
@@ -13863,6 +13912,7 @@ export declare const ImportOptionsBetaIncludeTypesBeta: {
|
|
|
13863
13912
|
};
|
|
13864
13913
|
export type ImportOptionsBetaIncludeTypesBeta = typeof ImportOptionsBetaIncludeTypesBeta[keyof typeof ImportOptionsBetaIncludeTypesBeta];
|
|
13865
13914
|
export declare const ImportOptionsBetaDefaultReferencesBeta: {
|
|
13915
|
+
readonly ConnectorRule: "CONNECTOR_RULE";
|
|
13866
13916
|
readonly IdentityObjectConfig: "IDENTITY_OBJECT_CONFIG";
|
|
13867
13917
|
readonly IdentityProfile: "IDENTITY_PROFILE";
|
|
13868
13918
|
readonly Rule: "RULE";
|
|
@@ -19827,6 +19877,14 @@ export interface PendingApprovalBeta {
|
|
|
19827
19877
|
* @memberof PendingApprovalBeta
|
|
19828
19878
|
*/
|
|
19829
19879
|
'sodViolationContext'?: SodViolationContextCheckCompleted1Beta | null;
|
|
19880
|
+
/**
|
|
19881
|
+
* Arbitrary key-value pairs, if any were included in the corresponding access request item
|
|
19882
|
+
* @type {{ [key: string]: string; }}
|
|
19883
|
+
* @memberof PendingApprovalBeta
|
|
19884
|
+
*/
|
|
19885
|
+
'clientMetadata'?: {
|
|
19886
|
+
[key: string]: string;
|
|
19887
|
+
} | null;
|
|
19830
19888
|
}
|
|
19831
19889
|
/**
|
|
19832
19890
|
* Simplified DTO for the Permission objects stored in SailPoint\'s database. The data is aggregated from customer systems and is free-form, so its appearance can vary largely between different clients/customers.
|
|
@@ -20083,20 +20141,20 @@ export type ProductBetaOrgTypeBeta = typeof ProductBetaOrgTypeBeta[keyof typeof
|
|
|
20083
20141
|
*/
|
|
20084
20142
|
export interface ProvisioningCompletedAccountRequestsInnerAttributeRequestsInnerBeta {
|
|
20085
20143
|
/**
|
|
20086
|
-
*
|
|
20144
|
+
* Name of the attribute being provisioned.
|
|
20087
20145
|
* @type {string}
|
|
20088
20146
|
* @memberof ProvisioningCompletedAccountRequestsInnerAttributeRequestsInnerBeta
|
|
20089
20147
|
*/
|
|
20090
20148
|
'attributeName': string;
|
|
20091
20149
|
/**
|
|
20092
|
-
*
|
|
20150
|
+
* Value of the attribute being provisioned.
|
|
20093
20151
|
* @type {string}
|
|
20094
20152
|
* @memberof ProvisioningCompletedAccountRequestsInnerAttributeRequestsInnerBeta
|
|
20095
20153
|
*/
|
|
20096
20154
|
'attributeValue'?: string | null;
|
|
20097
20155
|
/**
|
|
20098
20156
|
* The operation to handle the attribute.
|
|
20099
|
-
* @type {
|
|
20157
|
+
* @type {string}
|
|
20100
20158
|
* @memberof ProvisioningCompletedAccountRequestsInnerAttributeRequestsInnerBeta
|
|
20101
20159
|
*/
|
|
20102
20160
|
'operation': ProvisioningCompletedAccountRequestsInnerAttributeRequestsInnerBetaOperationBeta;
|
|
@@ -20120,42 +20178,51 @@ export interface ProvisioningCompletedAccountRequestsInnerBeta {
|
|
|
20120
20178
|
*/
|
|
20121
20179
|
'source': ProvisioningCompletedAccountRequestsInnerSourceBeta;
|
|
20122
20180
|
/**
|
|
20123
|
-
*
|
|
20181
|
+
* Unique idenfier of the account being provisioned.
|
|
20124
20182
|
* @type {string}
|
|
20125
20183
|
* @memberof ProvisioningCompletedAccountRequestsInnerBeta
|
|
20126
20184
|
*/
|
|
20127
20185
|
'accountId'?: string;
|
|
20128
20186
|
/**
|
|
20129
|
-
*
|
|
20187
|
+
* Provisioning operation.
|
|
20130
20188
|
* @type {string}
|
|
20131
20189
|
* @memberof ProvisioningCompletedAccountRequestsInnerBeta
|
|
20132
20190
|
*/
|
|
20133
|
-
'accountOperation':
|
|
20191
|
+
'accountOperation': ProvisioningCompletedAccountRequestsInnerBetaAccountOperationBeta;
|
|
20134
20192
|
/**
|
|
20135
|
-
*
|
|
20193
|
+
* Overall result of the provisioning transaction.
|
|
20136
20194
|
* @type {object}
|
|
20137
20195
|
* @memberof ProvisioningCompletedAccountRequestsInnerBeta
|
|
20138
20196
|
*/
|
|
20139
20197
|
'provisioningResult': ProvisioningCompletedAccountRequestsInnerBetaProvisioningResultBeta;
|
|
20140
20198
|
/**
|
|
20141
|
-
*
|
|
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).
|
|
20142
20200
|
* @type {string}
|
|
20143
20201
|
* @memberof ProvisioningCompletedAccountRequestsInnerBeta
|
|
20144
20202
|
*/
|
|
20145
20203
|
'provisioningTarget': string;
|
|
20146
20204
|
/**
|
|
20147
|
-
*
|
|
20205
|
+
* Reference to a tracking number for if this is sent to a SDIM.
|
|
20148
20206
|
* @type {string}
|
|
20149
20207
|
* @memberof ProvisioningCompletedAccountRequestsInnerBeta
|
|
20150
20208
|
*/
|
|
20151
20209
|
'ticketId'?: string | null;
|
|
20152
20210
|
/**
|
|
20153
|
-
*
|
|
20211
|
+
* List of attributes to include in the provisioning transaction.
|
|
20154
20212
|
* @type {Array<ProvisioningCompletedAccountRequestsInnerAttributeRequestsInnerBeta>}
|
|
20155
20213
|
* @memberof ProvisioningCompletedAccountRequestsInnerBeta
|
|
20156
20214
|
*/
|
|
20157
20215
|
'attributeRequests'?: Array<ProvisioningCompletedAccountRequestsInnerAttributeRequestsInnerBeta> | null;
|
|
20158
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];
|
|
20159
20226
|
export declare const ProvisioningCompletedAccountRequestsInnerBetaProvisioningResultBeta: {
|
|
20160
20227
|
readonly Success: "SUCCESS";
|
|
20161
20228
|
readonly Pending: "PENDING";
|
|
@@ -20163,25 +20230,25 @@ export declare const ProvisioningCompletedAccountRequestsInnerBetaProvisioningRe
|
|
|
20163
20230
|
};
|
|
20164
20231
|
export type ProvisioningCompletedAccountRequestsInnerBetaProvisioningResultBeta = typeof ProvisioningCompletedAccountRequestsInnerBetaProvisioningResultBeta[keyof typeof ProvisioningCompletedAccountRequestsInnerBetaProvisioningResultBeta];
|
|
20165
20232
|
/**
|
|
20166
|
-
*
|
|
20233
|
+
* Source that ISC is provisioning access on.
|
|
20167
20234
|
* @export
|
|
20168
20235
|
* @interface ProvisioningCompletedAccountRequestsInnerSourceBeta
|
|
20169
20236
|
*/
|
|
20170
20237
|
export interface ProvisioningCompletedAccountRequestsInnerSourceBeta {
|
|
20171
20238
|
/**
|
|
20172
|
-
* ID
|
|
20239
|
+
* Source ID.
|
|
20173
20240
|
* @type {string}
|
|
20174
20241
|
* @memberof ProvisioningCompletedAccountRequestsInnerSourceBeta
|
|
20175
20242
|
*/
|
|
20176
20243
|
'id': string;
|
|
20177
20244
|
/**
|
|
20178
|
-
*
|
|
20245
|
+
* Source DTO type.
|
|
20179
20246
|
* @type {string}
|
|
20180
20247
|
* @memberof ProvisioningCompletedAccountRequestsInnerSourceBeta
|
|
20181
20248
|
*/
|
|
20182
20249
|
'type': ProvisioningCompletedAccountRequestsInnerSourceBetaTypeBeta;
|
|
20183
20250
|
/**
|
|
20184
|
-
*
|
|
20251
|
+
* Source name.
|
|
20185
20252
|
* @type {string}
|
|
20186
20253
|
* @memberof ProvisioningCompletedAccountRequestsInnerSourceBeta
|
|
20187
20254
|
*/
|
|
@@ -20198,31 +20265,31 @@ export type ProvisioningCompletedAccountRequestsInnerSourceBetaTypeBeta = typeof
|
|
|
20198
20265
|
*/
|
|
20199
20266
|
export interface ProvisioningCompletedBeta {
|
|
20200
20267
|
/**
|
|
20201
|
-
*
|
|
20268
|
+
* Provisioning request\'s reference number. Useful for tracking status in the \'Account Activity\' search interface.
|
|
20202
20269
|
* @type {string}
|
|
20203
20270
|
* @memberof ProvisioningCompletedBeta
|
|
20204
20271
|
*/
|
|
20205
20272
|
'trackingNumber': string;
|
|
20206
20273
|
/**
|
|
20207
|
-
*
|
|
20274
|
+
* Sources the provisioning transactions were performed on. Sources are comma separated.
|
|
20208
20275
|
* @type {string}
|
|
20209
20276
|
* @memberof ProvisioningCompletedBeta
|
|
20210
20277
|
*/
|
|
20211
20278
|
'sources': string;
|
|
20212
20279
|
/**
|
|
20213
|
-
* Origin of
|
|
20280
|
+
* Origin of the provisioning request.
|
|
20214
20281
|
* @type {string}
|
|
20215
20282
|
* @memberof ProvisioningCompletedBeta
|
|
20216
20283
|
*/
|
|
20217
20284
|
'action'?: string | null;
|
|
20218
20285
|
/**
|
|
20219
|
-
*
|
|
20286
|
+
* List of any accumulated error messages that occurred during provisioning.
|
|
20220
20287
|
* @type {Array<string>}
|
|
20221
20288
|
* @memberof ProvisioningCompletedBeta
|
|
20222
20289
|
*/
|
|
20223
20290
|
'errors'?: Array<string> | null;
|
|
20224
20291
|
/**
|
|
20225
|
-
*
|
|
20292
|
+
* List of any accumulated warning messages that occurred during provisioning.
|
|
20226
20293
|
* @type {Array<string>}
|
|
20227
20294
|
* @memberof ProvisioningCompletedBeta
|
|
20228
20295
|
*/
|
|
@@ -20240,7 +20307,7 @@ export interface ProvisioningCompletedBeta {
|
|
|
20240
20307
|
*/
|
|
20241
20308
|
'requester'?: ProvisioningCompletedRequesterBeta | null;
|
|
20242
20309
|
/**
|
|
20243
|
-
*
|
|
20310
|
+
* List of provisioning instructions to perform on an account-by-account basis.
|
|
20244
20311
|
* @type {Array<ProvisioningCompletedAccountRequestsInnerBeta>}
|
|
20245
20312
|
* @memberof ProvisioningCompletedBeta
|
|
20246
20313
|
*/
|
|
@@ -20265,7 +20332,7 @@ export interface ProvisioningCompletedRecipientBeta {
|
|
|
20265
20332
|
*/
|
|
20266
20333
|
'id': string;
|
|
20267
20334
|
/**
|
|
20268
|
-
* Provisioning recipient\'s
|
|
20335
|
+
* Provisioning recipient\'s name.
|
|
20269
20336
|
* @type {string}
|
|
20270
20337
|
* @memberof ProvisioningCompletedRecipientBeta
|
|
20271
20338
|
*/
|
|
@@ -20294,7 +20361,7 @@ export interface ProvisioningCompletedRequesterBeta {
|
|
|
20294
20361
|
*/
|
|
20295
20362
|
'id': string;
|
|
20296
20363
|
/**
|
|
20297
|
-
* Provisioning
|
|
20364
|
+
* Provisioning requester\'s name.
|
|
20298
20365
|
* @type {string}
|
|
20299
20366
|
* @memberof ProvisioningCompletedRequesterBeta
|
|
20300
20367
|
*/
|
|
@@ -21475,7 +21542,7 @@ export declare const RequestableObjectRequestStatusBeta: {
|
|
|
21475
21542
|
};
|
|
21476
21543
|
export type RequestableObjectRequestStatusBeta = typeof RequestableObjectRequestStatusBeta[keyof typeof RequestableObjectRequestStatusBeta];
|
|
21477
21544
|
/**
|
|
21478
|
-
*
|
|
21545
|
+
* Currently supported requestable object types.
|
|
21479
21546
|
* @export
|
|
21480
21547
|
* @enum {string}
|
|
21481
21548
|
*/
|
|
@@ -21516,6 +21583,12 @@ export type RequestedItemDetailsBetaTypeBeta = typeof RequestedItemDetailsBetaTy
|
|
|
21516
21583
|
* @interface RequestedItemStatusBeta
|
|
21517
21584
|
*/
|
|
21518
21585
|
export interface RequestedItemStatusBeta {
|
|
21586
|
+
/**
|
|
21587
|
+
* The ID of the access request.
|
|
21588
|
+
* @type {string}
|
|
21589
|
+
* @memberof RequestedItemStatusBeta
|
|
21590
|
+
*/
|
|
21591
|
+
'id'?: string;
|
|
21519
21592
|
/**
|
|
21520
21593
|
* Human-readable display name of the item being requested.
|
|
21521
21594
|
* @type {string}
|
|
@@ -22024,31 +22097,31 @@ export interface ReviewReassignBeta {
|
|
|
22024
22097
|
'reason': string;
|
|
22025
22098
|
}
|
|
22026
22099
|
/**
|
|
22027
|
-
* Details of the reviewer for certification.
|
|
22100
|
+
* Details of the reviewer for a certification.
|
|
22028
22101
|
* @export
|
|
22029
22102
|
* @interface ReviewerBeta
|
|
22030
22103
|
*/
|
|
22031
22104
|
export interface ReviewerBeta {
|
|
22032
22105
|
/**
|
|
22033
|
-
*
|
|
22106
|
+
* Reviewer\'s DTO type.
|
|
22034
22107
|
* @type {string}
|
|
22035
22108
|
* @memberof ReviewerBeta
|
|
22036
22109
|
*/
|
|
22037
22110
|
'type': ReviewerBetaTypeBeta;
|
|
22038
22111
|
/**
|
|
22039
|
-
*
|
|
22112
|
+
* Reviewer\'s ID.
|
|
22040
22113
|
* @type {string}
|
|
22041
22114
|
* @memberof ReviewerBeta
|
|
22042
22115
|
*/
|
|
22043
22116
|
'id': string;
|
|
22044
22117
|
/**
|
|
22045
|
-
*
|
|
22118
|
+
* Reviewer\'s display name.
|
|
22046
22119
|
* @type {string}
|
|
22047
22120
|
* @memberof ReviewerBeta
|
|
22048
22121
|
*/
|
|
22049
22122
|
'name': string;
|
|
22050
22123
|
/**
|
|
22051
|
-
*
|
|
22124
|
+
* Reviewing identity\'s email. This is only applicable to reviewers of the `IDENTITY` type.
|
|
22052
22125
|
* @type {string}
|
|
22053
22126
|
* @memberof ReviewerBeta
|
|
22054
22127
|
*/
|
|
@@ -23964,31 +24037,31 @@ export type RuleBeta = GenerateRandomStringBeta | GetReferenceIdentityAttributeB
|
|
|
23964
24037
|
*/
|
|
23965
24038
|
export interface SavedSearchCompleteBeta {
|
|
23966
24039
|
/**
|
|
23967
|
-
*
|
|
24040
|
+
* Report file name.
|
|
23968
24041
|
* @type {string}
|
|
23969
24042
|
* @memberof SavedSearchCompleteBeta
|
|
23970
24043
|
*/
|
|
23971
24044
|
'fileName': string;
|
|
23972
24045
|
/**
|
|
23973
|
-
*
|
|
24046
|
+
* Email address of the identity who owns the saved search.
|
|
23974
24047
|
* @type {string}
|
|
23975
24048
|
* @memberof SavedSearchCompleteBeta
|
|
23976
24049
|
*/
|
|
23977
24050
|
'ownerEmail': string;
|
|
23978
24051
|
/**
|
|
23979
|
-
*
|
|
24052
|
+
* Name of the identity who owns the saved search.
|
|
23980
24053
|
* @type {string}
|
|
23981
24054
|
* @memberof SavedSearchCompleteBeta
|
|
23982
24055
|
*/
|
|
23983
24056
|
'ownerName': string;
|
|
23984
24057
|
/**
|
|
23985
|
-
*
|
|
24058
|
+
* Search query used to generate the report.
|
|
23986
24059
|
* @type {string}
|
|
23987
24060
|
* @memberof SavedSearchCompleteBeta
|
|
23988
24061
|
*/
|
|
23989
24062
|
'query': string;
|
|
23990
24063
|
/**
|
|
23991
|
-
*
|
|
24064
|
+
* Saved search name.
|
|
23992
24065
|
* @type {string}
|
|
23993
24066
|
* @memberof SavedSearchCompleteBeta
|
|
23994
24067
|
*/
|
|
@@ -24007,32 +24080,32 @@ export interface SavedSearchCompleteBeta {
|
|
|
24007
24080
|
'signedS3Url': string;
|
|
24008
24081
|
}
|
|
24009
24082
|
/**
|
|
24010
|
-
*
|
|
24083
|
+
* Table of accounts matching the search criteria.
|
|
24011
24084
|
* @export
|
|
24012
24085
|
* @interface SavedSearchCompleteSearchResultsAccountBeta
|
|
24013
24086
|
*/
|
|
24014
24087
|
export interface SavedSearchCompleteSearchResultsAccountBeta {
|
|
24015
24088
|
/**
|
|
24016
|
-
*
|
|
24089
|
+
* Number of rows in the table.
|
|
24017
24090
|
* @type {string}
|
|
24018
24091
|
* @memberof SavedSearchCompleteSearchResultsAccountBeta
|
|
24019
24092
|
*/
|
|
24020
24093
|
'count': string;
|
|
24021
24094
|
/**
|
|
24022
|
-
*
|
|
24095
|
+
* Type of object represented in the table.
|
|
24023
24096
|
* @type {string}
|
|
24024
24097
|
* @memberof SavedSearchCompleteSearchResultsAccountBeta
|
|
24025
24098
|
*/
|
|
24026
24099
|
'noun': string;
|
|
24027
24100
|
/**
|
|
24028
|
-
*
|
|
24101
|
+
* Sample of table data.
|
|
24029
24102
|
* @type {Array<Array<string>>}
|
|
24030
24103
|
* @memberof SavedSearchCompleteSearchResultsAccountBeta
|
|
24031
24104
|
*/
|
|
24032
24105
|
'preview': Array<Array<string>>;
|
|
24033
24106
|
}
|
|
24034
24107
|
/**
|
|
24035
|
-
*
|
|
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.
|
|
24036
24109
|
* @export
|
|
24037
24110
|
* @interface SavedSearchCompleteSearchResultsBeta
|
|
24038
24111
|
*/
|
|
@@ -24057,50 +24130,50 @@ export interface SavedSearchCompleteSearchResultsBeta {
|
|
|
24057
24130
|
'Identity'?: SavedSearchCompleteSearchResultsIdentityBeta | null;
|
|
24058
24131
|
}
|
|
24059
24132
|
/**
|
|
24060
|
-
*
|
|
24133
|
+
* Table of entitlements matching the search criteria.
|
|
24061
24134
|
* @export
|
|
24062
24135
|
* @interface SavedSearchCompleteSearchResultsEntitlementBeta
|
|
24063
24136
|
*/
|
|
24064
24137
|
export interface SavedSearchCompleteSearchResultsEntitlementBeta {
|
|
24065
24138
|
/**
|
|
24066
|
-
*
|
|
24139
|
+
* Number of rows in the table.
|
|
24067
24140
|
* @type {string}
|
|
24068
24141
|
* @memberof SavedSearchCompleteSearchResultsEntitlementBeta
|
|
24069
24142
|
*/
|
|
24070
24143
|
'count': string;
|
|
24071
24144
|
/**
|
|
24072
|
-
*
|
|
24145
|
+
* Type of object represented in the table.
|
|
24073
24146
|
* @type {string}
|
|
24074
24147
|
* @memberof SavedSearchCompleteSearchResultsEntitlementBeta
|
|
24075
24148
|
*/
|
|
24076
24149
|
'noun': string;
|
|
24077
24150
|
/**
|
|
24078
|
-
*
|
|
24151
|
+
* Sample of table data.
|
|
24079
24152
|
* @type {Array<Array<string>>}
|
|
24080
24153
|
* @memberof SavedSearchCompleteSearchResultsEntitlementBeta
|
|
24081
24154
|
*/
|
|
24082
24155
|
'preview': Array<Array<string>>;
|
|
24083
24156
|
}
|
|
24084
24157
|
/**
|
|
24085
|
-
*
|
|
24158
|
+
* Table of identities matching the search criteria.
|
|
24086
24159
|
* @export
|
|
24087
24160
|
* @interface SavedSearchCompleteSearchResultsIdentityBeta
|
|
24088
24161
|
*/
|
|
24089
24162
|
export interface SavedSearchCompleteSearchResultsIdentityBeta {
|
|
24090
24163
|
/**
|
|
24091
|
-
*
|
|
24164
|
+
* Number of rows in the table.
|
|
24092
24165
|
* @type {string}
|
|
24093
24166
|
* @memberof SavedSearchCompleteSearchResultsIdentityBeta
|
|
24094
24167
|
*/
|
|
24095
24168
|
'count': string;
|
|
24096
24169
|
/**
|
|
24097
|
-
*
|
|
24170
|
+
* Type of object represented in the table.
|
|
24098
24171
|
* @type {string}
|
|
24099
24172
|
* @memberof SavedSearchCompleteSearchResultsIdentityBeta
|
|
24100
24173
|
*/
|
|
24101
24174
|
'noun': string;
|
|
24102
24175
|
/**
|
|
24103
|
-
*
|
|
24176
|
+
* Sample of the table data.
|
|
24104
24177
|
* @type {Array<Array<string>>}
|
|
24105
24178
|
* @memberof SavedSearchCompleteSearchResultsIdentityBeta
|
|
24106
24179
|
*/
|
|
@@ -24378,7 +24451,7 @@ export interface ScheduledAttributesBeta {
|
|
|
24378
24451
|
*/
|
|
24379
24452
|
'timeZone'?: string;
|
|
24380
24453
|
/**
|
|
24381
|
-
*
|
|
24454
|
+
* A valid CRON expression
|
|
24382
24455
|
* @type {string}
|
|
24383
24456
|
* @memberof ScheduledAttributesBeta
|
|
24384
24457
|
*/
|
|
@@ -24395,6 +24468,12 @@ export interface ScheduledAttributesBeta {
|
|
|
24395
24468
|
* @memberof ScheduledAttributesBeta
|
|
24396
24469
|
*/
|
|
24397
24470
|
'weeklyTimes'?: Array<string>;
|
|
24471
|
+
/**
|
|
24472
|
+
* Scheduled execution times
|
|
24473
|
+
* @type {Array<string>}
|
|
24474
|
+
* @memberof ScheduledAttributesBeta
|
|
24475
|
+
*/
|
|
24476
|
+
'yearlyTimes'?: Array<string>;
|
|
24398
24477
|
}
|
|
24399
24478
|
export declare const ScheduledAttributesBetaFrequencyBeta: {
|
|
24400
24479
|
readonly Daily: "daily";
|
|
@@ -25030,7 +25109,7 @@ export interface SelectorBeta {
|
|
|
25030
25109
|
*/
|
|
25031
25110
|
export interface SelfImportExportDtoBeta {
|
|
25032
25111
|
/**
|
|
25033
|
-
* Imported/exported object\'s DTO type. Import is currently only possible with the IDENTITY_OBJECT_CONFIG, IDENTITY_PROFILE, RULE, SOURCE, TRANSFORM, and TRIGGER_SUBSCRIPTION object types.
|
|
25112
|
+
* Imported/exported object\'s DTO type. Import is currently only possible with the CONNECTOR_RULE, IDENTITY_OBJECT_CONFIG, IDENTITY_PROFILE, RULE, SOURCE, TRANSFORM, and TRIGGER_SUBSCRIPTION object types.
|
|
25034
25113
|
* @type {string}
|
|
25035
25114
|
* @memberof SelfImportExportDtoBeta
|
|
25036
25115
|
*/
|
|
@@ -25054,6 +25133,7 @@ export declare const SelfImportExportDtoBetaTypeBeta: {
|
|
|
25054
25133
|
readonly AttrSyncSourceConfig: "ATTR_SYNC_SOURCE_CONFIG";
|
|
25055
25134
|
readonly AuthOrg: "AUTH_ORG";
|
|
25056
25135
|
readonly CampaignFilter: "CAMPAIGN_FILTER";
|
|
25136
|
+
readonly ConnectorRule: "CONNECTOR_RULE";
|
|
25057
25137
|
readonly FormDefinition: "FORM_DEFINITION";
|
|
25058
25138
|
readonly GovernanceGroup: "GOVERNANCE_GROUP";
|
|
25059
25139
|
readonly IdentityObjectConfig: "IDENTITY_OBJECT_CONFIG";
|
|
@@ -25278,7 +25358,7 @@ export interface ServiceDeskIntegrationTemplateDtoBeta {
|
|
|
25278
25358
|
* @type {string}
|
|
25279
25359
|
* @memberof ServiceDeskIntegrationTemplateDtoBeta
|
|
25280
25360
|
*/
|
|
25281
|
-
'name': string;
|
|
25361
|
+
'name': string | null;
|
|
25282
25362
|
/**
|
|
25283
25363
|
* Creation date of the Object
|
|
25284
25364
|
* @type {string}
|
|
@@ -25434,7 +25514,7 @@ export interface SimIntegrationDetailsBeta {
|
|
|
25434
25514
|
* @type {string}
|
|
25435
25515
|
* @memberof SimIntegrationDetailsBeta
|
|
25436
25516
|
*/
|
|
25437
|
-
'name': string;
|
|
25517
|
+
'name': string | null;
|
|
25438
25518
|
/**
|
|
25439
25519
|
* Creation date of the Object
|
|
25440
25520
|
* @type {string}
|
|
@@ -26311,11 +26391,11 @@ export interface Source1Beta {
|
|
|
26311
26391
|
*/
|
|
26312
26392
|
export interface SourceAccountCreatedBeta {
|
|
26313
26393
|
/**
|
|
26314
|
-
*
|
|
26394
|
+
* Identity\'s universal unique identifier (UUID) on the source. The source system generates the UUID.
|
|
26315
26395
|
* @type {string}
|
|
26316
26396
|
* @memberof SourceAccountCreatedBeta
|
|
26317
26397
|
*/
|
|
26318
|
-
'uuid'
|
|
26398
|
+
'uuid': string;
|
|
26319
26399
|
/**
|
|
26320
26400
|
* SailPoint generated unique identifier.
|
|
26321
26401
|
* @type {string}
|
|
@@ -26323,37 +26403,37 @@ export interface SourceAccountCreatedBeta {
|
|
|
26323
26403
|
*/
|
|
26324
26404
|
'id': string;
|
|
26325
26405
|
/**
|
|
26326
|
-
*
|
|
26406
|
+
* Account\'s unique ID on the source.
|
|
26327
26407
|
* @type {string}
|
|
26328
26408
|
* @memberof SourceAccountCreatedBeta
|
|
26329
26409
|
*/
|
|
26330
26410
|
'nativeIdentifier': string;
|
|
26331
26411
|
/**
|
|
26332
|
-
*
|
|
26412
|
+
* Source ID.
|
|
26333
26413
|
* @type {string}
|
|
26334
26414
|
* @memberof SourceAccountCreatedBeta
|
|
26335
26415
|
*/
|
|
26336
26416
|
'sourceId': string;
|
|
26337
26417
|
/**
|
|
26338
|
-
*
|
|
26418
|
+
* Source name.
|
|
26339
26419
|
* @type {string}
|
|
26340
26420
|
* @memberof SourceAccountCreatedBeta
|
|
26341
26421
|
*/
|
|
26342
26422
|
'sourceName': string;
|
|
26343
26423
|
/**
|
|
26344
|
-
*
|
|
26424
|
+
* ID of the identity correlated with the account.
|
|
26345
26425
|
* @type {string}
|
|
26346
26426
|
* @memberof SourceAccountCreatedBeta
|
|
26347
26427
|
*/
|
|
26348
26428
|
'identityId': string;
|
|
26349
26429
|
/**
|
|
26350
|
-
*
|
|
26430
|
+
* Name of the identity correlated with the account.
|
|
26351
26431
|
* @type {string}
|
|
26352
26432
|
* @memberof SourceAccountCreatedBeta
|
|
26353
26433
|
*/
|
|
26354
26434
|
'identityName': string;
|
|
26355
26435
|
/**
|
|
26356
|
-
*
|
|
26436
|
+
* Account attributes. The attributes\' contents depend on the source\'s account schema.
|
|
26357
26437
|
* @type {{ [key: string]: any; }}
|
|
26358
26438
|
* @memberof SourceAccountCreatedBeta
|
|
26359
26439
|
*/
|
|
@@ -26368,11 +26448,11 @@ export interface SourceAccountCreatedBeta {
|
|
|
26368
26448
|
*/
|
|
26369
26449
|
export interface SourceAccountDeletedBeta {
|
|
26370
26450
|
/**
|
|
26371
|
-
*
|
|
26451
|
+
* Identity\'s universal unique identifier (UUID) on the source. The source system generates the UUID.
|
|
26372
26452
|
* @type {string}
|
|
26373
26453
|
* @memberof SourceAccountDeletedBeta
|
|
26374
26454
|
*/
|
|
26375
|
-
'uuid'
|
|
26455
|
+
'uuid': string;
|
|
26376
26456
|
/**
|
|
26377
26457
|
* SailPoint generated unique identifier.
|
|
26378
26458
|
* @type {string}
|
|
@@ -26380,37 +26460,37 @@ export interface SourceAccountDeletedBeta {
|
|
|
26380
26460
|
*/
|
|
26381
26461
|
'id': string;
|
|
26382
26462
|
/**
|
|
26383
|
-
*
|
|
26463
|
+
* Account\'s unique ID on the source.
|
|
26384
26464
|
* @type {string}
|
|
26385
26465
|
* @memberof SourceAccountDeletedBeta
|
|
26386
26466
|
*/
|
|
26387
26467
|
'nativeIdentifier': string;
|
|
26388
26468
|
/**
|
|
26389
|
-
*
|
|
26469
|
+
* Source ID.
|
|
26390
26470
|
* @type {string}
|
|
26391
26471
|
* @memberof SourceAccountDeletedBeta
|
|
26392
26472
|
*/
|
|
26393
26473
|
'sourceId': string;
|
|
26394
26474
|
/**
|
|
26395
|
-
*
|
|
26475
|
+
* Source name.
|
|
26396
26476
|
* @type {string}
|
|
26397
26477
|
* @memberof SourceAccountDeletedBeta
|
|
26398
26478
|
*/
|
|
26399
26479
|
'sourceName': string;
|
|
26400
26480
|
/**
|
|
26401
|
-
*
|
|
26481
|
+
* ID of the identity correlated with the account.
|
|
26402
26482
|
* @type {string}
|
|
26403
26483
|
* @memberof SourceAccountDeletedBeta
|
|
26404
26484
|
*/
|
|
26405
26485
|
'identityId': string;
|
|
26406
26486
|
/**
|
|
26407
|
-
*
|
|
26487
|
+
* Name of the identity correlated with the account.
|
|
26408
26488
|
* @type {string}
|
|
26409
26489
|
* @memberof SourceAccountDeletedBeta
|
|
26410
26490
|
*/
|
|
26411
26491
|
'identityName': string;
|
|
26412
26492
|
/**
|
|
26413
|
-
*
|
|
26493
|
+
* Account attributes. The attributes\' contents depend on the source\'s account schema.
|
|
26414
26494
|
* @type {{ [key: string]: any; }}
|
|
26415
26495
|
* @memberof SourceAccountDeletedBeta
|
|
26416
26496
|
*/
|
|
@@ -26425,11 +26505,11 @@ export interface SourceAccountDeletedBeta {
|
|
|
26425
26505
|
*/
|
|
26426
26506
|
export interface SourceAccountUpdatedBeta {
|
|
26427
26507
|
/**
|
|
26428
|
-
*
|
|
26508
|
+
* Identity\'s universal unique identifier (UUID) on the source. The source system generates the UUID.
|
|
26429
26509
|
* @type {string}
|
|
26430
26510
|
* @memberof SourceAccountUpdatedBeta
|
|
26431
26511
|
*/
|
|
26432
|
-
'uuid'
|
|
26512
|
+
'uuid': string;
|
|
26433
26513
|
/**
|
|
26434
26514
|
* SailPoint generated unique identifier.
|
|
26435
26515
|
* @type {string}
|
|
@@ -26437,37 +26517,37 @@ export interface SourceAccountUpdatedBeta {
|
|
|
26437
26517
|
*/
|
|
26438
26518
|
'id': string;
|
|
26439
26519
|
/**
|
|
26440
|
-
*
|
|
26520
|
+
* Account\'s unique ID on the source.
|
|
26441
26521
|
* @type {string}
|
|
26442
26522
|
* @memberof SourceAccountUpdatedBeta
|
|
26443
26523
|
*/
|
|
26444
26524
|
'nativeIdentifier': string;
|
|
26445
26525
|
/**
|
|
26446
|
-
*
|
|
26526
|
+
* Source ID.
|
|
26447
26527
|
* @type {string}
|
|
26448
26528
|
* @memberof SourceAccountUpdatedBeta
|
|
26449
26529
|
*/
|
|
26450
26530
|
'sourceId': string;
|
|
26451
26531
|
/**
|
|
26452
|
-
*
|
|
26532
|
+
* Source name.
|
|
26453
26533
|
* @type {string}
|
|
26454
26534
|
* @memberof SourceAccountUpdatedBeta
|
|
26455
26535
|
*/
|
|
26456
26536
|
'sourceName': string;
|
|
26457
26537
|
/**
|
|
26458
|
-
*
|
|
26538
|
+
* ID of the identity correlated with the account.
|
|
26459
26539
|
* @type {string}
|
|
26460
26540
|
* @memberof SourceAccountUpdatedBeta
|
|
26461
26541
|
*/
|
|
26462
26542
|
'identityId': string;
|
|
26463
26543
|
/**
|
|
26464
|
-
*
|
|
26544
|
+
* Name of the identity correlated with the account.
|
|
26465
26545
|
* @type {string}
|
|
26466
26546
|
* @memberof SourceAccountUpdatedBeta
|
|
26467
26547
|
*/
|
|
26468
26548
|
'identityName': string;
|
|
26469
26549
|
/**
|
|
26470
|
-
*
|
|
26550
|
+
* Account attributes. The attributes\' contents depend on the source\'s account schema.
|
|
26471
26551
|
* @type {{ [key: string]: any; }}
|
|
26472
26552
|
* @memberof SourceAccountUpdatedBeta
|
|
26473
26553
|
*/
|
|
@@ -27047,19 +27127,19 @@ export interface SourceCodeBeta {
|
|
|
27047
27127
|
*/
|
|
27048
27128
|
export interface SourceCreatedActorBeta {
|
|
27049
27129
|
/**
|
|
27050
|
-
* DTO type of identity who created the source.
|
|
27130
|
+
* DTO type of the identity who created the source.
|
|
27051
27131
|
* @type {string}
|
|
27052
27132
|
* @memberof SourceCreatedActorBeta
|
|
27053
27133
|
*/
|
|
27054
27134
|
'type': SourceCreatedActorBetaTypeBeta;
|
|
27055
27135
|
/**
|
|
27056
|
-
* ID of identity who created the source.
|
|
27136
|
+
* ID of the identity who created the source.
|
|
27057
27137
|
* @type {string}
|
|
27058
27138
|
* @memberof SourceCreatedActorBeta
|
|
27059
27139
|
*/
|
|
27060
27140
|
'id': string;
|
|
27061
27141
|
/**
|
|
27062
|
-
*
|
|
27142
|
+
* Name of the identity who created the source.
|
|
27063
27143
|
* @type {string}
|
|
27064
27144
|
* @memberof SourceCreatedActorBeta
|
|
27065
27145
|
*/
|
|
@@ -27076,31 +27156,31 @@ export type SourceCreatedActorBetaTypeBeta = typeof SourceCreatedActorBetaTypeBe
|
|
|
27076
27156
|
*/
|
|
27077
27157
|
export interface SourceCreatedBeta {
|
|
27078
27158
|
/**
|
|
27079
|
-
*
|
|
27159
|
+
* Source\'s unique ID.
|
|
27080
27160
|
* @type {string}
|
|
27081
27161
|
* @memberof SourceCreatedBeta
|
|
27082
27162
|
*/
|
|
27083
27163
|
'id': string;
|
|
27084
27164
|
/**
|
|
27085
|
-
*
|
|
27165
|
+
* Source name.
|
|
27086
27166
|
* @type {string}
|
|
27087
27167
|
* @memberof SourceCreatedBeta
|
|
27088
27168
|
*/
|
|
27089
27169
|
'name': string;
|
|
27090
27170
|
/**
|
|
27091
|
-
*
|
|
27171
|
+
* Connection type.
|
|
27092
27172
|
* @type {string}
|
|
27093
27173
|
* @memberof SourceCreatedBeta
|
|
27094
27174
|
*/
|
|
27095
27175
|
'type': string;
|
|
27096
27176
|
/**
|
|
27097
|
-
*
|
|
27177
|
+
* Date and time when the source was created.
|
|
27098
27178
|
* @type {string}
|
|
27099
27179
|
* @memberof SourceCreatedBeta
|
|
27100
27180
|
*/
|
|
27101
27181
|
'created': string;
|
|
27102
27182
|
/**
|
|
27103
|
-
*
|
|
27183
|
+
* Connector type used to connect to the source.
|
|
27104
27184
|
* @type {string}
|
|
27105
27185
|
* @memberof SourceCreatedBeta
|
|
27106
27186
|
*/
|
|
@@ -27162,19 +27242,19 @@ export interface SourceCreationErrorsBeta {
|
|
|
27162
27242
|
*/
|
|
27163
27243
|
export interface SourceDeletedActorBeta {
|
|
27164
27244
|
/**
|
|
27165
|
-
* DTO type of identity who deleted the source.
|
|
27245
|
+
* DTO type of the identity who deleted the source.
|
|
27166
27246
|
* @type {string}
|
|
27167
27247
|
* @memberof SourceDeletedActorBeta
|
|
27168
27248
|
*/
|
|
27169
27249
|
'type': SourceDeletedActorBetaTypeBeta;
|
|
27170
27250
|
/**
|
|
27171
|
-
* ID of identity who deleted the source.
|
|
27251
|
+
* ID of the identity who deleted the source.
|
|
27172
27252
|
* @type {string}
|
|
27173
27253
|
* @memberof SourceDeletedActorBeta
|
|
27174
27254
|
*/
|
|
27175
27255
|
'id': string;
|
|
27176
27256
|
/**
|
|
27177
|
-
*
|
|
27257
|
+
* Name of the identity who deleted the source.
|
|
27178
27258
|
* @type {string}
|
|
27179
27259
|
* @memberof SourceDeletedActorBeta
|
|
27180
27260
|
*/
|
|
@@ -27191,31 +27271,31 @@ export type SourceDeletedActorBetaTypeBeta = typeof SourceDeletedActorBetaTypeBe
|
|
|
27191
27271
|
*/
|
|
27192
27272
|
export interface SourceDeletedBeta {
|
|
27193
27273
|
/**
|
|
27194
|
-
*
|
|
27274
|
+
* Source\'s unique ID.
|
|
27195
27275
|
* @type {string}
|
|
27196
27276
|
* @memberof SourceDeletedBeta
|
|
27197
27277
|
*/
|
|
27198
27278
|
'id': string;
|
|
27199
27279
|
/**
|
|
27200
|
-
*
|
|
27280
|
+
* Source name.
|
|
27201
27281
|
* @type {string}
|
|
27202
27282
|
* @memberof SourceDeletedBeta
|
|
27203
27283
|
*/
|
|
27204
27284
|
'name': string;
|
|
27205
27285
|
/**
|
|
27206
|
-
*
|
|
27286
|
+
* Connection type.
|
|
27207
27287
|
* @type {string}
|
|
27208
27288
|
* @memberof SourceDeletedBeta
|
|
27209
27289
|
*/
|
|
27210
27290
|
'type': string;
|
|
27211
27291
|
/**
|
|
27212
|
-
*
|
|
27292
|
+
* Date and time when the source was deleted.
|
|
27213
27293
|
* @type {string}
|
|
27214
27294
|
* @memberof SourceDeletedBeta
|
|
27215
27295
|
*/
|
|
27216
27296
|
'deleted': string;
|
|
27217
27297
|
/**
|
|
27218
|
-
*
|
|
27298
|
+
* Connector type used to connect to the source.
|
|
27219
27299
|
* @type {string}
|
|
27220
27300
|
* @memberof SourceDeletedBeta
|
|
27221
27301
|
*/
|
|
@@ -27298,19 +27378,19 @@ export interface SourceSyncPayloadBeta {
|
|
|
27298
27378
|
*/
|
|
27299
27379
|
export interface SourceUpdatedActorBeta {
|
|
27300
27380
|
/**
|
|
27301
|
-
* DTO type of identity who updated the source.
|
|
27381
|
+
* DTO type of the identity who updated the source.
|
|
27302
27382
|
* @type {string}
|
|
27303
27383
|
* @memberof SourceUpdatedActorBeta
|
|
27304
27384
|
*/
|
|
27305
27385
|
'type': SourceUpdatedActorBetaTypeBeta;
|
|
27306
27386
|
/**
|
|
27307
|
-
* ID of identity who updated the source.
|
|
27387
|
+
* ID of the identity who updated the source.
|
|
27308
27388
|
* @type {string}
|
|
27309
27389
|
* @memberof SourceUpdatedActorBeta
|
|
27310
27390
|
*/
|
|
27311
|
-
'id'
|
|
27391
|
+
'id': string;
|
|
27312
27392
|
/**
|
|
27313
|
-
*
|
|
27393
|
+
* Name of the identity who updated the source.
|
|
27314
27394
|
* @type {string}
|
|
27315
27395
|
* @memberof SourceUpdatedActorBeta
|
|
27316
27396
|
*/
|
|
@@ -27327,31 +27407,31 @@ export type SourceUpdatedActorBetaTypeBeta = typeof SourceUpdatedActorBetaTypeBe
|
|
|
27327
27407
|
*/
|
|
27328
27408
|
export interface SourceUpdatedBeta {
|
|
27329
27409
|
/**
|
|
27330
|
-
*
|
|
27410
|
+
* Source\'s unique ID.
|
|
27331
27411
|
* @type {string}
|
|
27332
27412
|
* @memberof SourceUpdatedBeta
|
|
27333
27413
|
*/
|
|
27334
27414
|
'id': string;
|
|
27335
27415
|
/**
|
|
27336
|
-
*
|
|
27416
|
+
* Source name.
|
|
27337
27417
|
* @type {string}
|
|
27338
27418
|
* @memberof SourceUpdatedBeta
|
|
27339
27419
|
*/
|
|
27340
27420
|
'name': string;
|
|
27341
27421
|
/**
|
|
27342
|
-
*
|
|
27422
|
+
* Connection type.
|
|
27343
27423
|
* @type {string}
|
|
27344
27424
|
* @memberof SourceUpdatedBeta
|
|
27345
27425
|
*/
|
|
27346
27426
|
'type': string;
|
|
27347
27427
|
/**
|
|
27348
|
-
*
|
|
27428
|
+
* Date and time when the source was modified.
|
|
27349
27429
|
* @type {string}
|
|
27350
27430
|
* @memberof SourceUpdatedBeta
|
|
27351
27431
|
*/
|
|
27352
27432
|
'modified': string;
|
|
27353
27433
|
/**
|
|
27354
|
-
*
|
|
27434
|
+
* Connector type used to connect to the source.
|
|
27355
27435
|
* @type {string}
|
|
27356
27436
|
* @memberof SourceUpdatedBeta
|
|
27357
27437
|
*/
|
|
@@ -28527,7 +28607,7 @@ export interface TaskDefinitionSummaryBeta {
|
|
|
28527
28607
|
* @type {string}
|
|
28528
28608
|
* @memberof TaskDefinitionSummaryBeta
|
|
28529
28609
|
*/
|
|
28530
|
-
'description': string;
|
|
28610
|
+
'description': string | null;
|
|
28531
28611
|
/**
|
|
28532
28612
|
* Name of the parent of the TaskDefinition
|
|
28533
28613
|
* @type {string}
|
|
@@ -30304,25 +30384,25 @@ export interface V3ConnectorDtoBeta {
|
|
|
30304
30384
|
'status'?: string;
|
|
30305
30385
|
}
|
|
30306
30386
|
/**
|
|
30307
|
-
* Details about the `CLUSTER` or `SOURCE` that initiated
|
|
30387
|
+
* Details about the `CLUSTER` or `SOURCE` that initiated the event.
|
|
30308
30388
|
* @export
|
|
30309
30389
|
* @interface VAClusterStatusChangeEventApplicationBeta
|
|
30310
30390
|
*/
|
|
30311
30391
|
export interface VAClusterStatusChangeEventApplicationBeta {
|
|
30312
30392
|
/**
|
|
30313
|
-
*
|
|
30393
|
+
* Application\'s globally unique identifier (GUID).
|
|
30314
30394
|
* @type {string}
|
|
30315
30395
|
* @memberof VAClusterStatusChangeEventApplicationBeta
|
|
30316
30396
|
*/
|
|
30317
30397
|
'id': string;
|
|
30318
30398
|
/**
|
|
30319
|
-
*
|
|
30399
|
+
* Application name.
|
|
30320
30400
|
* @type {string}
|
|
30321
30401
|
* @memberof VAClusterStatusChangeEventApplicationBeta
|
|
30322
30402
|
*/
|
|
30323
30403
|
'name': string;
|
|
30324
30404
|
/**
|
|
30325
|
-
* 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.
|
|
30326
30406
|
* @type {{ [key: string]: any; }}
|
|
30327
30407
|
* @memberof VAClusterStatusChangeEventApplicationBeta
|
|
30328
30408
|
*/
|
|
@@ -30337,13 +30417,13 @@ export interface VAClusterStatusChangeEventApplicationBeta {
|
|
|
30337
30417
|
*/
|
|
30338
30418
|
export interface VAClusterStatusChangeEventBeta {
|
|
30339
30419
|
/**
|
|
30340
|
-
*
|
|
30420
|
+
* Date and time when the status change occurred.
|
|
30341
30421
|
* @type {string}
|
|
30342
30422
|
* @memberof VAClusterStatusChangeEventBeta
|
|
30343
30423
|
*/
|
|
30344
30424
|
'created': string;
|
|
30345
30425
|
/**
|
|
30346
|
-
*
|
|
30426
|
+
* Type of the object that initiated the event.
|
|
30347
30427
|
* @type {object}
|
|
30348
30428
|
* @memberof VAClusterStatusChangeEventBeta
|
|
30349
30429
|
*/
|
|
@@ -30373,26 +30453,26 @@ export declare const VAClusterStatusChangeEventBetaTypeBeta: {
|
|
|
30373
30453
|
};
|
|
30374
30454
|
export type VAClusterStatusChangeEventBetaTypeBeta = typeof VAClusterStatusChangeEventBetaTypeBeta[keyof typeof VAClusterStatusChangeEventBetaTypeBeta];
|
|
30375
30455
|
/**
|
|
30376
|
-
*
|
|
30456
|
+
* Results of the most recent health check.
|
|
30377
30457
|
* @export
|
|
30378
30458
|
* @interface VAClusterStatusChangeEventHealthCheckResultBeta
|
|
30379
30459
|
*/
|
|
30380
30460
|
export interface VAClusterStatusChangeEventHealthCheckResultBeta {
|
|
30381
30461
|
/**
|
|
30382
|
-
* Detailed message of the
|
|
30462
|
+
* Detailed message of the health check result..
|
|
30383
30463
|
* @type {string}
|
|
30384
30464
|
* @memberof VAClusterStatusChangeEventHealthCheckResultBeta
|
|
30385
30465
|
*/
|
|
30386
30466
|
'message': string;
|
|
30387
30467
|
/**
|
|
30388
|
-
*
|
|
30468
|
+
* Health check result type.
|
|
30389
30469
|
* @type {string}
|
|
30390
30470
|
* @memberof VAClusterStatusChangeEventHealthCheckResultBeta
|
|
30391
30471
|
*/
|
|
30392
30472
|
'resultType': string;
|
|
30393
30473
|
/**
|
|
30394
|
-
*
|
|
30395
|
-
* @type {
|
|
30474
|
+
* Health check status.
|
|
30475
|
+
* @type {string}
|
|
30396
30476
|
* @memberof VAClusterStatusChangeEventHealthCheckResultBeta
|
|
30397
30477
|
*/
|
|
30398
30478
|
'status': VAClusterStatusChangeEventHealthCheckResultBetaStatusBeta;
|
|
@@ -30403,26 +30483,26 @@ export declare const VAClusterStatusChangeEventHealthCheckResultBetaStatusBeta:
|
|
|
30403
30483
|
};
|
|
30404
30484
|
export type VAClusterStatusChangeEventHealthCheckResultBetaStatusBeta = typeof VAClusterStatusChangeEventHealthCheckResultBetaStatusBeta[keyof typeof VAClusterStatusChangeEventHealthCheckResultBetaStatusBeta];
|
|
30405
30485
|
/**
|
|
30406
|
-
*
|
|
30486
|
+
* Results of the last health check.
|
|
30407
30487
|
* @export
|
|
30408
30488
|
* @interface VAClusterStatusChangeEventPreviousHealthCheckResultBeta
|
|
30409
30489
|
*/
|
|
30410
30490
|
export interface VAClusterStatusChangeEventPreviousHealthCheckResultBeta {
|
|
30411
30491
|
/**
|
|
30412
|
-
* Detailed message of the
|
|
30492
|
+
* Detailed message of the health check result.
|
|
30413
30493
|
* @type {string}
|
|
30414
30494
|
* @memberof VAClusterStatusChangeEventPreviousHealthCheckResultBeta
|
|
30415
30495
|
*/
|
|
30416
30496
|
'message': string;
|
|
30417
30497
|
/**
|
|
30418
|
-
*
|
|
30498
|
+
* Health check result type.
|
|
30419
30499
|
* @type {string}
|
|
30420
30500
|
* @memberof VAClusterStatusChangeEventPreviousHealthCheckResultBeta
|
|
30421
30501
|
*/
|
|
30422
30502
|
'resultType': string;
|
|
30423
30503
|
/**
|
|
30424
|
-
*
|
|
30425
|
-
* @type {
|
|
30504
|
+
* Health check status.
|
|
30505
|
+
* @type {string}
|
|
30426
30506
|
* @memberof VAClusterStatusChangeEventPreviousHealthCheckResultBeta
|
|
30427
30507
|
*/
|
|
30428
30508
|
'status': VAClusterStatusChangeEventPreviousHealthCheckResultBetaStatusBeta;
|
|
@@ -31686,6 +31766,18 @@ export interface WorkflowTriggerAttributesBeta {
|
|
|
31686
31766
|
* @memberof WorkflowTriggerAttributesBeta
|
|
31687
31767
|
*/
|
|
31688
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;
|
|
31689
31781
|
/**
|
|
31690
31782
|
* A unique name for the external trigger
|
|
31691
31783
|
* @type {string}
|
|
@@ -31717,7 +31809,7 @@ export interface WorkflowTriggerAttributesBeta {
|
|
|
31717
31809
|
*/
|
|
31718
31810
|
'timeZone'?: string;
|
|
31719
31811
|
/**
|
|
31720
|
-
*
|
|
31812
|
+
* A valid CRON expression
|
|
31721
31813
|
* @type {string}
|
|
31722
31814
|
* @memberof WorkflowTriggerAttributesBeta
|
|
31723
31815
|
*/
|
|
@@ -31734,6 +31826,12 @@ export interface WorkflowTriggerAttributesBeta {
|
|
|
31734
31826
|
* @memberof WorkflowTriggerAttributesBeta
|
|
31735
31827
|
*/
|
|
31736
31828
|
'weeklyTimes'?: Array<string>;
|
|
31829
|
+
/**
|
|
31830
|
+
* Scheduled execution times
|
|
31831
|
+
* @type {Array<string>}
|
|
31832
|
+
* @memberof WorkflowTriggerAttributesBeta
|
|
31833
|
+
*/
|
|
31834
|
+
'yearlyTimes'?: Array<string>;
|
|
31737
31835
|
}
|
|
31738
31836
|
export declare const WorkflowTriggerAttributesBetaFrequencyBeta: {
|
|
31739
31837
|
readonly Daily: "daily";
|
|
@@ -32208,7 +32306,7 @@ export declare class AccessModelMetadataBetaApi extends BaseAPI {
|
|
|
32208
32306
|
*/
|
|
32209
32307
|
export declare const AccessProfilesBetaApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
32210
32308
|
/**
|
|
32211
|
-
*
|
|
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.
|
|
32212
32310
|
* @summary Create Access Profile
|
|
32213
32311
|
* @param {AccessProfileBeta} accessProfileBeta
|
|
32214
32312
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -32253,16 +32351,16 @@ export declare const AccessProfilesBetaApiAxiosParamCreator: (configuration?: Co
|
|
|
32253
32351
|
*/
|
|
32254
32352
|
getAccessProfileEntitlements: (id: string, limit?: number, offset?: number, count?: boolean, filters?: string, sorters?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
32255
32353
|
/**
|
|
32256
|
-
*
|
|
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.
|
|
32257
32355
|
* @summary List Access Profiles
|
|
32258
|
-
* @param {string} [forSubadmin]
|
|
32259
|
-
* @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.
|
|
32260
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.
|
|
32261
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.
|
|
32262
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.
|
|
32263
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**
|
|
32264
|
-
* @param {string} [forSegmentIds]
|
|
32265
|
-
* @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.
|
|
32266
32364
|
* @param {*} [axiosOptions] Override http request option.
|
|
32267
32365
|
* @throws {RequiredError}
|
|
32268
32366
|
*/
|
|
@@ -32291,7 +32389,7 @@ export declare const AccessProfilesBetaApiAxiosParamCreator: (configuration?: Co
|
|
|
32291
32389
|
*/
|
|
32292
32390
|
export declare const AccessProfilesBetaApiFp: (configuration?: Configuration) => {
|
|
32293
32391
|
/**
|
|
32294
|
-
*
|
|
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.
|
|
32295
32393
|
* @summary Create Access Profile
|
|
32296
32394
|
* @param {AccessProfileBeta} accessProfileBeta
|
|
32297
32395
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -32336,16 +32434,16 @@ export declare const AccessProfilesBetaApiFp: (configuration?: Configuration) =>
|
|
|
32336
32434
|
*/
|
|
32337
32435
|
getAccessProfileEntitlements(id: string, limit?: number, offset?: number, count?: boolean, filters?: string, sorters?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<EntitlementBeta>>>;
|
|
32338
32436
|
/**
|
|
32339
|
-
*
|
|
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.
|
|
32340
32438
|
* @summary List Access Profiles
|
|
32341
|
-
* @param {string} [forSubadmin]
|
|
32342
|
-
* @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.
|
|
32343
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.
|
|
32344
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.
|
|
32345
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.
|
|
32346
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**
|
|
32347
|
-
* @param {string} [forSegmentIds]
|
|
32348
|
-
* @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.
|
|
32349
32447
|
* @param {*} [axiosOptions] Override http request option.
|
|
32350
32448
|
* @throws {RequiredError}
|
|
32351
32449
|
*/
|
|
@@ -32374,7 +32472,7 @@ export declare const AccessProfilesBetaApiFp: (configuration?: Configuration) =>
|
|
|
32374
32472
|
*/
|
|
32375
32473
|
export declare const AccessProfilesBetaApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
32376
32474
|
/**
|
|
32377
|
-
*
|
|
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.
|
|
32378
32476
|
* @summary Create Access Profile
|
|
32379
32477
|
* @param {AccessProfilesBetaApiCreateAccessProfileRequest} requestParameters Request parameters.
|
|
32380
32478
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -32414,7 +32512,7 @@ export declare const AccessProfilesBetaApiFactory: (configuration?: Configuratio
|
|
|
32414
32512
|
*/
|
|
32415
32513
|
getAccessProfileEntitlements(requestParameters: AccessProfilesBetaApiGetAccessProfileEntitlementsRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<EntitlementBeta>>;
|
|
32416
32514
|
/**
|
|
32417
|
-
*
|
|
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.
|
|
32418
32516
|
* @summary List Access Profiles
|
|
32419
32517
|
* @param {AccessProfilesBetaApiListAccessProfilesRequest} requestParameters Request parameters.
|
|
32420
32518
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -32540,13 +32638,13 @@ export interface AccessProfilesBetaApiGetAccessProfileEntitlementsRequest {
|
|
|
32540
32638
|
*/
|
|
32541
32639
|
export interface AccessProfilesBetaApiListAccessProfilesRequest {
|
|
32542
32640
|
/**
|
|
32543
|
-
*
|
|
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.
|
|
32544
32642
|
* @type {string}
|
|
32545
32643
|
* @memberof AccessProfilesBetaApiListAccessProfiles
|
|
32546
32644
|
*/
|
|
32547
32645
|
readonly forSubadmin?: string;
|
|
32548
32646
|
/**
|
|
32549
|
-
*
|
|
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.
|
|
32550
32648
|
* @type {number}
|
|
32551
32649
|
* @memberof AccessProfilesBetaApiListAccessProfiles
|
|
32552
32650
|
*/
|
|
@@ -32576,13 +32674,13 @@ export interface AccessProfilesBetaApiListAccessProfilesRequest {
|
|
|
32576
32674
|
*/
|
|
32577
32675
|
readonly sorters?: string;
|
|
32578
32676
|
/**
|
|
32579
|
-
*
|
|
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.
|
|
32580
32678
|
* @type {string}
|
|
32581
32679
|
* @memberof AccessProfilesBetaApiListAccessProfiles
|
|
32582
32680
|
*/
|
|
32583
32681
|
readonly forSegmentIds?: string;
|
|
32584
32682
|
/**
|
|
32585
|
-
* 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.
|
|
32586
32684
|
* @type {boolean}
|
|
32587
32685
|
* @memberof AccessProfilesBetaApiListAccessProfiles
|
|
32588
32686
|
*/
|
|
@@ -32628,7 +32726,7 @@ export interface AccessProfilesBetaApiUpdateAccessProfilesInBulkRequest {
|
|
|
32628
32726
|
*/
|
|
32629
32727
|
export declare class AccessProfilesBetaApi extends BaseAPI {
|
|
32630
32728
|
/**
|
|
32631
|
-
*
|
|
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.
|
|
32632
32730
|
* @summary Create Access Profile
|
|
32633
32731
|
* @param {AccessProfilesBetaApiCreateAccessProfileRequest} requestParameters Request parameters.
|
|
32634
32732
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -32673,7 +32771,7 @@ export declare class AccessProfilesBetaApi extends BaseAPI {
|
|
|
32673
32771
|
*/
|
|
32674
32772
|
getAccessProfileEntitlements(requestParameters: AccessProfilesBetaApiGetAccessProfileEntitlementsRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<EntitlementBeta[], any>>;
|
|
32675
32773
|
/**
|
|
32676
|
-
*
|
|
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.
|
|
32677
32775
|
* @summary List Access Profiles
|
|
32678
32776
|
* @param {AccessProfilesBetaApiListAccessProfilesRequest} requestParameters Request parameters.
|
|
32679
32777
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -41028,7 +41126,7 @@ export declare class GovernanceGroupsBetaApi extends BaseAPI {
|
|
|
41028
41126
|
export declare const IAIAccessRequestRecommendationsBetaApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
41029
41127
|
/**
|
|
41030
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.
|
|
41031
|
-
* @summary
|
|
41129
|
+
* @summary Ignore Access Request Recommendation
|
|
41032
41130
|
* @param {AccessRequestRecommendationActionItemDtoBeta} accessRequestRecommendationActionItemDtoBeta The recommended access item to ignore for an identity.
|
|
41033
41131
|
* @param {*} [axiosOptions] Override http request option.
|
|
41034
41132
|
* @throws {RequiredError}
|
|
@@ -41036,7 +41134,7 @@ export declare const IAIAccessRequestRecommendationsBetaApiAxiosParamCreator: (c
|
|
|
41036
41134
|
addAccessRequestRecommendationsIgnoredItem: (accessRequestRecommendationActionItemDtoBeta: AccessRequestRecommendationActionItemDtoBeta, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
41037
41135
|
/**
|
|
41038
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.
|
|
41039
|
-
* @summary
|
|
41137
|
+
* @summary Accept Access Request Recommendation
|
|
41040
41138
|
* @param {AccessRequestRecommendationActionItemDtoBeta} accessRequestRecommendationActionItemDtoBeta The recommended access item that was requested for an identity.
|
|
41041
41139
|
* @param {*} [axiosOptions] Override http request option.
|
|
41042
41140
|
* @throws {RequiredError}
|
|
@@ -41044,7 +41142,7 @@ export declare const IAIAccessRequestRecommendationsBetaApiAxiosParamCreator: (c
|
|
|
41044
41142
|
addAccessRequestRecommendationsRequestedItem: (accessRequestRecommendationActionItemDtoBeta: AccessRequestRecommendationActionItemDtoBeta, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
41045
41143
|
/**
|
|
41046
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.
|
|
41047
|
-
* @summary
|
|
41145
|
+
* @summary Mark Viewed Access Request Recommendations
|
|
41048
41146
|
* @param {AccessRequestRecommendationActionItemDtoBeta} accessRequestRecommendationActionItemDtoBeta The recommended access that was viewed for an identity.
|
|
41049
41147
|
* @param {*} [axiosOptions] Override http request option.
|
|
41050
41148
|
* @throws {RequiredError}
|
|
@@ -41052,7 +41150,7 @@ export declare const IAIAccessRequestRecommendationsBetaApiAxiosParamCreator: (c
|
|
|
41052
41150
|
addAccessRequestRecommendationsViewedItem: (accessRequestRecommendationActionItemDtoBeta: AccessRequestRecommendationActionItemDtoBeta, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
41053
41151
|
/**
|
|
41054
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.
|
|
41055
|
-
* @summary
|
|
41153
|
+
* @summary Bulk Mark Viewed Access Request Recommendations
|
|
41056
41154
|
* @param {Array<AccessRequestRecommendationActionItemDtoBeta>} accessRequestRecommendationActionItemDtoBeta The recommended access items that were viewed for an identity.
|
|
41057
41155
|
* @param {*} [axiosOptions] Override http request option.
|
|
41058
41156
|
* @throws {RequiredError}
|
|
@@ -41074,7 +41172,7 @@ export declare const IAIAccessRequestRecommendationsBetaApiAxiosParamCreator: (c
|
|
|
41074
41172
|
getAccessRequestRecommendations: (identityId?: string, limit?: number, offset?: number, count?: boolean, includeTranslationMessages?: boolean, filters?: string, sorters?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
41075
41173
|
/**
|
|
41076
41174
|
* This API returns the list of ignored access request recommendations.
|
|
41077
|
-
* @summary List
|
|
41175
|
+
* @summary List Ignored Access Request Recommendations
|
|
41078
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.
|
|
41079
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.
|
|
41080
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.
|
|
@@ -41086,7 +41184,7 @@ export declare const IAIAccessRequestRecommendationsBetaApiAxiosParamCreator: (c
|
|
|
41086
41184
|
getAccessRequestRecommendationsIgnoredItems: (limit?: number, offset?: number, count?: boolean, filters?: string, sorters?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
41087
41185
|
/**
|
|
41088
41186
|
* This API returns a list of requested access request recommendations.
|
|
41089
|
-
* @summary List
|
|
41187
|
+
* @summary List Accepted Access Request Recommendations
|
|
41090
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.
|
|
41091
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.
|
|
41092
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.
|
|
@@ -41098,7 +41196,7 @@ export declare const IAIAccessRequestRecommendationsBetaApiAxiosParamCreator: (c
|
|
|
41098
41196
|
getAccessRequestRecommendationsRequestedItems: (limit?: number, offset?: number, count?: boolean, filters?: string, sorters?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
41099
41197
|
/**
|
|
41100
41198
|
* This API returns the list of viewed access request recommendations.
|
|
41101
|
-
* @summary List
|
|
41199
|
+
* @summary List Viewed Access Request Recommendations
|
|
41102
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.
|
|
41103
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.
|
|
41104
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.
|
|
@@ -41116,7 +41214,7 @@ export declare const IAIAccessRequestRecommendationsBetaApiAxiosParamCreator: (c
|
|
|
41116
41214
|
export declare const IAIAccessRequestRecommendationsBetaApiFp: (configuration?: Configuration) => {
|
|
41117
41215
|
/**
|
|
41118
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.
|
|
41119
|
-
* @summary
|
|
41217
|
+
* @summary Ignore Access Request Recommendation
|
|
41120
41218
|
* @param {AccessRequestRecommendationActionItemDtoBeta} accessRequestRecommendationActionItemDtoBeta The recommended access item to ignore for an identity.
|
|
41121
41219
|
* @param {*} [axiosOptions] Override http request option.
|
|
41122
41220
|
* @throws {RequiredError}
|
|
@@ -41124,7 +41222,7 @@ export declare const IAIAccessRequestRecommendationsBetaApiFp: (configuration?:
|
|
|
41124
41222
|
addAccessRequestRecommendationsIgnoredItem(accessRequestRecommendationActionItemDtoBeta: AccessRequestRecommendationActionItemDtoBeta, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AccessRequestRecommendationActionItemResponseDtoBeta>>;
|
|
41125
41223
|
/**
|
|
41126
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.
|
|
41127
|
-
* @summary
|
|
41225
|
+
* @summary Accept Access Request Recommendation
|
|
41128
41226
|
* @param {AccessRequestRecommendationActionItemDtoBeta} accessRequestRecommendationActionItemDtoBeta The recommended access item that was requested for an identity.
|
|
41129
41227
|
* @param {*} [axiosOptions] Override http request option.
|
|
41130
41228
|
* @throws {RequiredError}
|
|
@@ -41132,7 +41230,7 @@ export declare const IAIAccessRequestRecommendationsBetaApiFp: (configuration?:
|
|
|
41132
41230
|
addAccessRequestRecommendationsRequestedItem(accessRequestRecommendationActionItemDtoBeta: AccessRequestRecommendationActionItemDtoBeta, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AccessRequestRecommendationActionItemResponseDtoBeta>>;
|
|
41133
41231
|
/**
|
|
41134
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.
|
|
41135
|
-
* @summary
|
|
41233
|
+
* @summary Mark Viewed Access Request Recommendations
|
|
41136
41234
|
* @param {AccessRequestRecommendationActionItemDtoBeta} accessRequestRecommendationActionItemDtoBeta The recommended access that was viewed for an identity.
|
|
41137
41235
|
* @param {*} [axiosOptions] Override http request option.
|
|
41138
41236
|
* @throws {RequiredError}
|
|
@@ -41140,7 +41238,7 @@ export declare const IAIAccessRequestRecommendationsBetaApiFp: (configuration?:
|
|
|
41140
41238
|
addAccessRequestRecommendationsViewedItem(accessRequestRecommendationActionItemDtoBeta: AccessRequestRecommendationActionItemDtoBeta, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AccessRequestRecommendationActionItemResponseDtoBeta>>;
|
|
41141
41239
|
/**
|
|
41142
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.
|
|
41143
|
-
* @summary
|
|
41241
|
+
* @summary Bulk Mark Viewed Access Request Recommendations
|
|
41144
41242
|
* @param {Array<AccessRequestRecommendationActionItemDtoBeta>} accessRequestRecommendationActionItemDtoBeta The recommended access items that were viewed for an identity.
|
|
41145
41243
|
* @param {*} [axiosOptions] Override http request option.
|
|
41146
41244
|
* @throws {RequiredError}
|
|
@@ -41162,7 +41260,7 @@ export declare const IAIAccessRequestRecommendationsBetaApiFp: (configuration?:
|
|
|
41162
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>>>;
|
|
41163
41261
|
/**
|
|
41164
41262
|
* This API returns the list of ignored access request recommendations.
|
|
41165
|
-
* @summary List
|
|
41263
|
+
* @summary List Ignored Access Request Recommendations
|
|
41166
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.
|
|
41167
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.
|
|
41168
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.
|
|
@@ -41174,7 +41272,7 @@ export declare const IAIAccessRequestRecommendationsBetaApiFp: (configuration?:
|
|
|
41174
41272
|
getAccessRequestRecommendationsIgnoredItems(limit?: number, offset?: number, count?: boolean, filters?: string, sorters?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<AccessRequestRecommendationActionItemResponseDtoBeta>>>;
|
|
41175
41273
|
/**
|
|
41176
41274
|
* This API returns a list of requested access request recommendations.
|
|
41177
|
-
* @summary List
|
|
41275
|
+
* @summary List Accepted Access Request Recommendations
|
|
41178
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.
|
|
41179
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.
|
|
41180
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.
|
|
@@ -41186,7 +41284,7 @@ export declare const IAIAccessRequestRecommendationsBetaApiFp: (configuration?:
|
|
|
41186
41284
|
getAccessRequestRecommendationsRequestedItems(limit?: number, offset?: number, count?: boolean, filters?: string, sorters?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<AccessRequestRecommendationActionItemResponseDtoBeta>>>;
|
|
41187
41285
|
/**
|
|
41188
41286
|
* This API returns the list of viewed access request recommendations.
|
|
41189
|
-
* @summary List
|
|
41287
|
+
* @summary List Viewed Access Request Recommendations
|
|
41190
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.
|
|
41191
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.
|
|
41192
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.
|
|
@@ -41204,7 +41302,7 @@ export declare const IAIAccessRequestRecommendationsBetaApiFp: (configuration?:
|
|
|
41204
41302
|
export declare const IAIAccessRequestRecommendationsBetaApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
41205
41303
|
/**
|
|
41206
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.
|
|
41207
|
-
* @summary
|
|
41305
|
+
* @summary Ignore Access Request Recommendation
|
|
41208
41306
|
* @param {IAIAccessRequestRecommendationsBetaApiAddAccessRequestRecommendationsIgnoredItemRequest} requestParameters Request parameters.
|
|
41209
41307
|
* @param {*} [axiosOptions] Override http request option.
|
|
41210
41308
|
* @throws {RequiredError}
|
|
@@ -41212,7 +41310,7 @@ export declare const IAIAccessRequestRecommendationsBetaApiFactory: (configurati
|
|
|
41212
41310
|
addAccessRequestRecommendationsIgnoredItem(requestParameters: IAIAccessRequestRecommendationsBetaApiAddAccessRequestRecommendationsIgnoredItemRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<AccessRequestRecommendationActionItemResponseDtoBeta>;
|
|
41213
41311
|
/**
|
|
41214
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.
|
|
41215
|
-
* @summary
|
|
41313
|
+
* @summary Accept Access Request Recommendation
|
|
41216
41314
|
* @param {IAIAccessRequestRecommendationsBetaApiAddAccessRequestRecommendationsRequestedItemRequest} requestParameters Request parameters.
|
|
41217
41315
|
* @param {*} [axiosOptions] Override http request option.
|
|
41218
41316
|
* @throws {RequiredError}
|
|
@@ -41220,7 +41318,7 @@ export declare const IAIAccessRequestRecommendationsBetaApiFactory: (configurati
|
|
|
41220
41318
|
addAccessRequestRecommendationsRequestedItem(requestParameters: IAIAccessRequestRecommendationsBetaApiAddAccessRequestRecommendationsRequestedItemRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<AccessRequestRecommendationActionItemResponseDtoBeta>;
|
|
41221
41319
|
/**
|
|
41222
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.
|
|
41223
|
-
* @summary
|
|
41321
|
+
* @summary Mark Viewed Access Request Recommendations
|
|
41224
41322
|
* @param {IAIAccessRequestRecommendationsBetaApiAddAccessRequestRecommendationsViewedItemRequest} requestParameters Request parameters.
|
|
41225
41323
|
* @param {*} [axiosOptions] Override http request option.
|
|
41226
41324
|
* @throws {RequiredError}
|
|
@@ -41228,7 +41326,7 @@ export declare const IAIAccessRequestRecommendationsBetaApiFactory: (configurati
|
|
|
41228
41326
|
addAccessRequestRecommendationsViewedItem(requestParameters: IAIAccessRequestRecommendationsBetaApiAddAccessRequestRecommendationsViewedItemRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<AccessRequestRecommendationActionItemResponseDtoBeta>;
|
|
41229
41327
|
/**
|
|
41230
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.
|
|
41231
|
-
* @summary
|
|
41329
|
+
* @summary Bulk Mark Viewed Access Request Recommendations
|
|
41232
41330
|
* @param {IAIAccessRequestRecommendationsBetaApiAddAccessRequestRecommendationsViewedItemsRequest} requestParameters Request parameters.
|
|
41233
41331
|
* @param {*} [axiosOptions] Override http request option.
|
|
41234
41332
|
* @throws {RequiredError}
|
|
@@ -41244,7 +41342,7 @@ export declare const IAIAccessRequestRecommendationsBetaApiFactory: (configurati
|
|
|
41244
41342
|
getAccessRequestRecommendations(requestParameters?: IAIAccessRequestRecommendationsBetaApiGetAccessRequestRecommendationsRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<AccessRequestRecommendationItemDetailBeta>>;
|
|
41245
41343
|
/**
|
|
41246
41344
|
* This API returns the list of ignored access request recommendations.
|
|
41247
|
-
* @summary List
|
|
41345
|
+
* @summary List Ignored Access Request Recommendations
|
|
41248
41346
|
* @param {IAIAccessRequestRecommendationsBetaApiGetAccessRequestRecommendationsIgnoredItemsRequest} requestParameters Request parameters.
|
|
41249
41347
|
* @param {*} [axiosOptions] Override http request option.
|
|
41250
41348
|
* @throws {RequiredError}
|
|
@@ -41252,7 +41350,7 @@ export declare const IAIAccessRequestRecommendationsBetaApiFactory: (configurati
|
|
|
41252
41350
|
getAccessRequestRecommendationsIgnoredItems(requestParameters?: IAIAccessRequestRecommendationsBetaApiGetAccessRequestRecommendationsIgnoredItemsRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<AccessRequestRecommendationActionItemResponseDtoBeta>>;
|
|
41253
41351
|
/**
|
|
41254
41352
|
* This API returns a list of requested access request recommendations.
|
|
41255
|
-
* @summary List
|
|
41353
|
+
* @summary List Accepted Access Request Recommendations
|
|
41256
41354
|
* @param {IAIAccessRequestRecommendationsBetaApiGetAccessRequestRecommendationsRequestedItemsRequest} requestParameters Request parameters.
|
|
41257
41355
|
* @param {*} [axiosOptions] Override http request option.
|
|
41258
41356
|
* @throws {RequiredError}
|
|
@@ -41260,7 +41358,7 @@ export declare const IAIAccessRequestRecommendationsBetaApiFactory: (configurati
|
|
|
41260
41358
|
getAccessRequestRecommendationsRequestedItems(requestParameters?: IAIAccessRequestRecommendationsBetaApiGetAccessRequestRecommendationsRequestedItemsRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<AccessRequestRecommendationActionItemResponseDtoBeta>>;
|
|
41261
41359
|
/**
|
|
41262
41360
|
* This API returns the list of viewed access request recommendations.
|
|
41263
|
-
* @summary List
|
|
41361
|
+
* @summary List Viewed Access Request Recommendations
|
|
41264
41362
|
* @param {IAIAccessRequestRecommendationsBetaApiGetAccessRequestRecommendationsViewedItemsRequest} requestParameters Request parameters.
|
|
41265
41363
|
* @param {*} [axiosOptions] Override http request option.
|
|
41266
41364
|
* @throws {RequiredError}
|
|
@@ -41488,7 +41586,7 @@ export interface IAIAccessRequestRecommendationsBetaApiGetAccessRequestRecommend
|
|
|
41488
41586
|
export declare class IAIAccessRequestRecommendationsBetaApi extends BaseAPI {
|
|
41489
41587
|
/**
|
|
41490
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.
|
|
41491
|
-
* @summary
|
|
41589
|
+
* @summary Ignore Access Request Recommendation
|
|
41492
41590
|
* @param {IAIAccessRequestRecommendationsBetaApiAddAccessRequestRecommendationsIgnoredItemRequest} requestParameters Request parameters.
|
|
41493
41591
|
* @param {*} [axiosOptions] Override http request option.
|
|
41494
41592
|
* @throws {RequiredError}
|
|
@@ -41497,7 +41595,7 @@ export declare class IAIAccessRequestRecommendationsBetaApi extends BaseAPI {
|
|
|
41497
41595
|
addAccessRequestRecommendationsIgnoredItem(requestParameters: IAIAccessRequestRecommendationsBetaApiAddAccessRequestRecommendationsIgnoredItemRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AccessRequestRecommendationActionItemResponseDtoBeta, any>>;
|
|
41498
41596
|
/**
|
|
41499
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.
|
|
41500
|
-
* @summary
|
|
41598
|
+
* @summary Accept Access Request Recommendation
|
|
41501
41599
|
* @param {IAIAccessRequestRecommendationsBetaApiAddAccessRequestRecommendationsRequestedItemRequest} requestParameters Request parameters.
|
|
41502
41600
|
* @param {*} [axiosOptions] Override http request option.
|
|
41503
41601
|
* @throws {RequiredError}
|
|
@@ -41506,7 +41604,7 @@ export declare class IAIAccessRequestRecommendationsBetaApi extends BaseAPI {
|
|
|
41506
41604
|
addAccessRequestRecommendationsRequestedItem(requestParameters: IAIAccessRequestRecommendationsBetaApiAddAccessRequestRecommendationsRequestedItemRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AccessRequestRecommendationActionItemResponseDtoBeta, any>>;
|
|
41507
41605
|
/**
|
|
41508
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.
|
|
41509
|
-
* @summary
|
|
41607
|
+
* @summary Mark Viewed Access Request Recommendations
|
|
41510
41608
|
* @param {IAIAccessRequestRecommendationsBetaApiAddAccessRequestRecommendationsViewedItemRequest} requestParameters Request parameters.
|
|
41511
41609
|
* @param {*} [axiosOptions] Override http request option.
|
|
41512
41610
|
* @throws {RequiredError}
|
|
@@ -41515,7 +41613,7 @@ export declare class IAIAccessRequestRecommendationsBetaApi extends BaseAPI {
|
|
|
41515
41613
|
addAccessRequestRecommendationsViewedItem(requestParameters: IAIAccessRequestRecommendationsBetaApiAddAccessRequestRecommendationsViewedItemRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AccessRequestRecommendationActionItemResponseDtoBeta, any>>;
|
|
41516
41614
|
/**
|
|
41517
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.
|
|
41518
|
-
* @summary
|
|
41616
|
+
* @summary Bulk Mark Viewed Access Request Recommendations
|
|
41519
41617
|
* @param {IAIAccessRequestRecommendationsBetaApiAddAccessRequestRecommendationsViewedItemsRequest} requestParameters Request parameters.
|
|
41520
41618
|
* @param {*} [axiosOptions] Override http request option.
|
|
41521
41619
|
* @throws {RequiredError}
|
|
@@ -41533,7 +41631,7 @@ export declare class IAIAccessRequestRecommendationsBetaApi extends BaseAPI {
|
|
|
41533
41631
|
getAccessRequestRecommendations(requestParameters?: IAIAccessRequestRecommendationsBetaApiGetAccessRequestRecommendationsRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AccessRequestRecommendationItemDetailBeta[], any>>;
|
|
41534
41632
|
/**
|
|
41535
41633
|
* This API returns the list of ignored access request recommendations.
|
|
41536
|
-
* @summary List
|
|
41634
|
+
* @summary List Ignored Access Request Recommendations
|
|
41537
41635
|
* @param {IAIAccessRequestRecommendationsBetaApiGetAccessRequestRecommendationsIgnoredItemsRequest} requestParameters Request parameters.
|
|
41538
41636
|
* @param {*} [axiosOptions] Override http request option.
|
|
41539
41637
|
* @throws {RequiredError}
|
|
@@ -41542,7 +41640,7 @@ export declare class IAIAccessRequestRecommendationsBetaApi extends BaseAPI {
|
|
|
41542
41640
|
getAccessRequestRecommendationsIgnoredItems(requestParameters?: IAIAccessRequestRecommendationsBetaApiGetAccessRequestRecommendationsIgnoredItemsRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AccessRequestRecommendationActionItemResponseDtoBeta[], any>>;
|
|
41543
41641
|
/**
|
|
41544
41642
|
* This API returns a list of requested access request recommendations.
|
|
41545
|
-
* @summary List
|
|
41643
|
+
* @summary List Accepted Access Request Recommendations
|
|
41546
41644
|
* @param {IAIAccessRequestRecommendationsBetaApiGetAccessRequestRecommendationsRequestedItemsRequest} requestParameters Request parameters.
|
|
41547
41645
|
* @param {*} [axiosOptions] Override http request option.
|
|
41548
41646
|
* @throws {RequiredError}
|
|
@@ -41551,7 +41649,7 @@ export declare class IAIAccessRequestRecommendationsBetaApi extends BaseAPI {
|
|
|
41551
41649
|
getAccessRequestRecommendationsRequestedItems(requestParameters?: IAIAccessRequestRecommendationsBetaApiGetAccessRequestRecommendationsRequestedItemsRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AccessRequestRecommendationActionItemResponseDtoBeta[], any>>;
|
|
41552
41650
|
/**
|
|
41553
41651
|
* This API returns the list of viewed access request recommendations.
|
|
41554
|
-
* @summary List
|
|
41652
|
+
* @summary List Viewed Access Request Recommendations
|
|
41555
41653
|
* @param {IAIAccessRequestRecommendationsBetaApiGetAccessRequestRecommendationsViewedItemsRequest} requestParameters Request parameters.
|
|
41556
41654
|
* @param {*} [axiosOptions] Override http request option.
|
|
41557
41655
|
* @throws {RequiredError}
|
|
@@ -42593,7 +42691,7 @@ export type GetPeerGroupOutliersStrategyBeta = typeof GetPeerGroupOutliersStrate
|
|
|
42593
42691
|
export declare const IAIRecommendationsBetaApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
42594
42692
|
/**
|
|
42595
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.
|
|
42596
|
-
* @summary Returns
|
|
42694
|
+
* @summary Returns Recommendation Based on Object
|
|
42597
42695
|
* @param {RecommendationRequestDtoBeta} recommendationRequestDtoBeta
|
|
42598
42696
|
* @param {*} [axiosOptions] Override http request option.
|
|
42599
42697
|
* @throws {RequiredError}
|
|
@@ -42622,7 +42720,7 @@ export declare const IAIRecommendationsBetaApiAxiosParamCreator: (configuration?
|
|
|
42622
42720
|
export declare const IAIRecommendationsBetaApiFp: (configuration?: Configuration) => {
|
|
42623
42721
|
/**
|
|
42624
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.
|
|
42625
|
-
* @summary Returns
|
|
42723
|
+
* @summary Returns Recommendation Based on Object
|
|
42626
42724
|
* @param {RecommendationRequestDtoBeta} recommendationRequestDtoBeta
|
|
42627
42725
|
* @param {*} [axiosOptions] Override http request option.
|
|
42628
42726
|
* @throws {RequiredError}
|
|
@@ -42651,7 +42749,7 @@ export declare const IAIRecommendationsBetaApiFp: (configuration?: Configuration
|
|
|
42651
42749
|
export declare const IAIRecommendationsBetaApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
42652
42750
|
/**
|
|
42653
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.
|
|
42654
|
-
* @summary Returns
|
|
42752
|
+
* @summary Returns Recommendation Based on Object
|
|
42655
42753
|
* @param {IAIRecommendationsBetaApiGetRecommendationsRequest} requestParameters Request parameters.
|
|
42656
42754
|
* @param {*} [axiosOptions] Override http request option.
|
|
42657
42755
|
* @throws {RequiredError}
|
|
@@ -42708,7 +42806,7 @@ export interface IAIRecommendationsBetaApiUpdateRecommendationsConfigRequest {
|
|
|
42708
42806
|
export declare class IAIRecommendationsBetaApi extends BaseAPI {
|
|
42709
42807
|
/**
|
|
42710
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.
|
|
42711
|
-
* @summary Returns
|
|
42809
|
+
* @summary Returns Recommendation Based on Object
|
|
42712
42810
|
* @param {IAIRecommendationsBetaApiGetRecommendationsRequest} requestParameters Request parameters.
|
|
42713
42811
|
* @param {*} [axiosOptions] Override http request option.
|
|
42714
42812
|
* @throws {RequiredError}
|
|
@@ -53616,12 +53714,12 @@ export declare class PublicIdentitiesConfigBetaApi extends BaseAPI {
|
|
|
53616
53714
|
*/
|
|
53617
53715
|
export declare const RequestableObjectsBetaApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
53618
53716
|
/**
|
|
53619
|
-
*
|
|
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.
|
|
53620
53718
|
* @summary Requestable Objects List
|
|
53621
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.
|
|
53622
|
-
* @param {Array<RequestableObjectTypeBeta>} [types] Filters the results to the specified type/types, where each type is one of ROLE or ACCESS_PROFILE
|
|
53623
|
-
* @param {string} [term]
|
|
53624
|
-
* @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.
|
|
53625
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.
|
|
53626
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.
|
|
53627
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.
|
|
@@ -53638,12 +53736,12 @@ export declare const RequestableObjectsBetaApiAxiosParamCreator: (configuration?
|
|
|
53638
53736
|
*/
|
|
53639
53737
|
export declare const RequestableObjectsBetaApiFp: (configuration?: Configuration) => {
|
|
53640
53738
|
/**
|
|
53641
|
-
*
|
|
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.
|
|
53642
53740
|
* @summary Requestable Objects List
|
|
53643
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.
|
|
53644
|
-
* @param {Array<RequestableObjectTypeBeta>} [types] Filters the results to the specified type/types, where each type is one of ROLE or ACCESS_PROFILE
|
|
53645
|
-
* @param {string} [term]
|
|
53646
|
-
* @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.
|
|
53647
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.
|
|
53648
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.
|
|
53649
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.
|
|
@@ -53660,7 +53758,7 @@ export declare const RequestableObjectsBetaApiFp: (configuration?: Configuration
|
|
|
53660
53758
|
*/
|
|
53661
53759
|
export declare const RequestableObjectsBetaApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
53662
53760
|
/**
|
|
53663
|
-
*
|
|
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.
|
|
53664
53762
|
* @summary Requestable Objects List
|
|
53665
53763
|
* @param {RequestableObjectsBetaApiListRequestableObjectsRequest} requestParameters Request parameters.
|
|
53666
53764
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -53681,19 +53779,19 @@ export interface RequestableObjectsBetaApiListRequestableObjectsRequest {
|
|
|
53681
53779
|
*/
|
|
53682
53780
|
readonly identityId?: string;
|
|
53683
53781
|
/**
|
|
53684
|
-
* 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.
|
|
53685
53783
|
* @type {Array<RequestableObjectTypeBeta>}
|
|
53686
53784
|
* @memberof RequestableObjectsBetaApiListRequestableObjects
|
|
53687
53785
|
*/
|
|
53688
53786
|
readonly types?: Array<RequestableObjectTypeBeta>;
|
|
53689
53787
|
/**
|
|
53690
|
-
*
|
|
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.
|
|
53691
53789
|
* @type {string}
|
|
53692
53790
|
* @memberof RequestableObjectsBetaApiListRequestableObjects
|
|
53693
53791
|
*/
|
|
53694
53792
|
readonly term?: string;
|
|
53695
53793
|
/**
|
|
53696
|
-
* 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.
|
|
53697
53795
|
* @type {Array<RequestableObjectRequestStatusBeta>}
|
|
53698
53796
|
* @memberof RequestableObjectsBetaApiListRequestableObjects
|
|
53699
53797
|
*/
|
|
@@ -53737,7 +53835,7 @@ export interface RequestableObjectsBetaApiListRequestableObjectsRequest {
|
|
|
53737
53835
|
*/
|
|
53738
53836
|
export declare class RequestableObjectsBetaApi extends BaseAPI {
|
|
53739
53837
|
/**
|
|
53740
|
-
*
|
|
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.
|
|
53741
53839
|
* @summary Requestable Objects List
|
|
53742
53840
|
* @param {RequestableObjectsBetaApiListRequestableObjectsRequest} requestParameters Request parameters.
|
|
53743
53841
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -54339,10 +54437,10 @@ export declare const RolesBetaApiAxiosParamCreator: (configuration?: Configurati
|
|
|
54339
54437
|
*/
|
|
54340
54438
|
getRoleAssignedIdentities: (id: string, limit?: number, offset?: number, count?: boolean, filters?: string, sorters?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
54341
54439
|
/**
|
|
54342
|
-
*
|
|
54343
|
-
* @summary List
|
|
54344
|
-
* @param {string} id
|
|
54345
|
-
* @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.
|
|
54346
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.
|
|
54347
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.
|
|
54348
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*
|
|
@@ -54427,10 +54525,10 @@ export declare const RolesBetaApiFp: (configuration?: Configuration) => {
|
|
|
54427
54525
|
*/
|
|
54428
54526
|
getRoleAssignedIdentities(id: string, limit?: number, offset?: number, count?: boolean, filters?: string, sorters?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<RoleIdentityBeta>>>;
|
|
54429
54527
|
/**
|
|
54430
|
-
*
|
|
54431
|
-
* @summary List
|
|
54432
|
-
* @param {string} id
|
|
54433
|
-
* @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.
|
|
54434
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.
|
|
54435
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.
|
|
54436
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*
|
|
@@ -54510,8 +54608,8 @@ export declare const RolesBetaApiFactory: (configuration?: Configuration, basePa
|
|
|
54510
54608
|
*/
|
|
54511
54609
|
getRoleAssignedIdentities(requestParameters: RolesBetaApiGetRoleAssignedIdentitiesRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<RoleIdentityBeta>>;
|
|
54512
54610
|
/**
|
|
54513
|
-
*
|
|
54514
|
-
* @summary List
|
|
54611
|
+
* Get a list of entitlements associated with a specified role.
|
|
54612
|
+
* @summary List Role\'s Entitlements
|
|
54515
54613
|
* @param {RolesBetaApiGetRoleEntitlementsRequest} requestParameters Request parameters.
|
|
54516
54614
|
* @param {*} [axiosOptions] Override http request option.
|
|
54517
54615
|
* @throws {RequiredError}
|
|
@@ -54636,13 +54734,13 @@ export interface RolesBetaApiGetRoleAssignedIdentitiesRequest {
|
|
|
54636
54734
|
*/
|
|
54637
54735
|
export interface RolesBetaApiGetRoleEntitlementsRequest {
|
|
54638
54736
|
/**
|
|
54639
|
-
*
|
|
54737
|
+
* Containing role\'s ID.
|
|
54640
54738
|
* @type {string}
|
|
54641
54739
|
* @memberof RolesBetaApiGetRoleEntitlements
|
|
54642
54740
|
*/
|
|
54643
54741
|
readonly id: string;
|
|
54644
54742
|
/**
|
|
54645
|
-
*
|
|
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.
|
|
54646
54744
|
* @type {number}
|
|
54647
54745
|
* @memberof RolesBetaApiGetRoleEntitlements
|
|
54648
54746
|
*/
|
|
@@ -54799,8 +54897,8 @@ export declare class RolesBetaApi extends BaseAPI {
|
|
|
54799
54897
|
*/
|
|
54800
54898
|
getRoleAssignedIdentities(requestParameters: RolesBetaApiGetRoleAssignedIdentitiesRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<RoleIdentityBeta[], any>>;
|
|
54801
54899
|
/**
|
|
54802
|
-
*
|
|
54803
|
-
* @summary List
|
|
54900
|
+
* Get a list of entitlements associated with a specified role.
|
|
54901
|
+
* @summary List Role\'s Entitlements
|
|
54804
54902
|
* @param {RolesBetaApiGetRoleEntitlementsRequest} requestParameters Request parameters.
|
|
54805
54903
|
* @param {*} [axiosOptions] Override http request option.
|
|
54806
54904
|
* @throws {RequiredError}
|
|
@@ -56491,7 +56589,7 @@ export declare class SPConfigBetaApi extends BaseAPI {
|
|
|
56491
56589
|
*/
|
|
56492
56590
|
export declare const SearchAttributeConfigurationBetaApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
56493
56591
|
/**
|
|
56494
|
-
* 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`.**
|
|
56495
56593
|
* @summary Create Extended Search Attributes
|
|
56496
56594
|
* @param {SearchAttributeConfigBeta} searchAttributeConfigBeta
|
|
56497
56595
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -56507,12 +56605,14 @@ export declare const SearchAttributeConfigurationBetaApiAxiosParamCreator: (conf
|
|
|
56507
56605
|
*/
|
|
56508
56606
|
deleteSearchAttributeConfig: (name: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
56509
56607
|
/**
|
|
56510
|
-
* 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.
|
|
56511
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.
|
|
56512
56612
|
* @param {*} [axiosOptions] Override http request option.
|
|
56513
56613
|
* @throws {RequiredError}
|
|
56514
56614
|
*/
|
|
56515
|
-
getSearchAttributeConfig: (axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
56615
|
+
getSearchAttributeConfig: (limit?: number, offset?: number, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
56516
56616
|
/**
|
|
56517
56617
|
* Get an extended attribute configuration by name.
|
|
56518
56618
|
* @summary Get Extended Search Attribute
|
|
@@ -56537,7 +56637,7 @@ export declare const SearchAttributeConfigurationBetaApiAxiosParamCreator: (conf
|
|
|
56537
56637
|
*/
|
|
56538
56638
|
export declare const SearchAttributeConfigurationBetaApiFp: (configuration?: Configuration) => {
|
|
56539
56639
|
/**
|
|
56540
|
-
* 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`.**
|
|
56541
56641
|
* @summary Create Extended Search Attributes
|
|
56542
56642
|
* @param {SearchAttributeConfigBeta} searchAttributeConfigBeta
|
|
56543
56643
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -56553,12 +56653,14 @@ export declare const SearchAttributeConfigurationBetaApiFp: (configuration?: Con
|
|
|
56553
56653
|
*/
|
|
56554
56654
|
deleteSearchAttributeConfig(name: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
56555
56655
|
/**
|
|
56556
|
-
* 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.
|
|
56557
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.
|
|
56558
56660
|
* @param {*} [axiosOptions] Override http request option.
|
|
56559
56661
|
* @throws {RequiredError}
|
|
56560
56662
|
*/
|
|
56561
|
-
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>>>;
|
|
56562
56664
|
/**
|
|
56563
56665
|
* Get an extended attribute configuration by name.
|
|
56564
56666
|
* @summary Get Extended Search Attribute
|
|
@@ -56583,7 +56685,7 @@ export declare const SearchAttributeConfigurationBetaApiFp: (configuration?: Con
|
|
|
56583
56685
|
*/
|
|
56584
56686
|
export declare const SearchAttributeConfigurationBetaApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
56585
56687
|
/**
|
|
56586
|
-
* 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`.**
|
|
56587
56689
|
* @summary Create Extended Search Attributes
|
|
56588
56690
|
* @param {SearchAttributeConfigurationBetaApiCreateSearchAttributeConfigRequest} requestParameters Request parameters.
|
|
56589
56691
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -56599,12 +56701,13 @@ export declare const SearchAttributeConfigurationBetaApiFactory: (configuration?
|
|
|
56599
56701
|
*/
|
|
56600
56702
|
deleteSearchAttributeConfig(requestParameters: SearchAttributeConfigurationBetaApiDeleteSearchAttributeConfigRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
56601
56703
|
/**
|
|
56602
|
-
* 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.
|
|
56603
56705
|
* @summary List Extended Search Attributes
|
|
56706
|
+
* @param {SearchAttributeConfigurationBetaApiGetSearchAttributeConfigRequest} requestParameters Request parameters.
|
|
56604
56707
|
* @param {*} [axiosOptions] Override http request option.
|
|
56605
56708
|
* @throws {RequiredError}
|
|
56606
56709
|
*/
|
|
56607
|
-
getSearchAttributeConfig(axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<SearchAttributeConfigBeta>>;
|
|
56710
|
+
getSearchAttributeConfig(requestParameters?: SearchAttributeConfigurationBetaApiGetSearchAttributeConfigRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<SearchAttributeConfigBeta>>;
|
|
56608
56711
|
/**
|
|
56609
56712
|
* Get an extended attribute configuration by name.
|
|
56610
56713
|
* @summary Get Extended Search Attribute
|
|
@@ -56648,6 +56751,25 @@ export interface SearchAttributeConfigurationBetaApiDeleteSearchAttributeConfigR
|
|
|
56648
56751
|
*/
|
|
56649
56752
|
readonly name: string;
|
|
56650
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
|
+
}
|
|
56651
56773
|
/**
|
|
56652
56774
|
* Request parameters for getSingleSearchAttributeConfig operation in SearchAttributeConfigurationBetaApi.
|
|
56653
56775
|
* @export
|
|
@@ -56688,7 +56810,7 @@ export interface SearchAttributeConfigurationBetaApiPatchSearchAttributeConfigRe
|
|
|
56688
56810
|
*/
|
|
56689
56811
|
export declare class SearchAttributeConfigurationBetaApi extends BaseAPI {
|
|
56690
56812
|
/**
|
|
56691
|
-
* 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`.**
|
|
56692
56814
|
* @summary Create Extended Search Attributes
|
|
56693
56815
|
* @param {SearchAttributeConfigurationBetaApiCreateSearchAttributeConfigRequest} requestParameters Request parameters.
|
|
56694
56816
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -56706,13 +56828,14 @@ export declare class SearchAttributeConfigurationBetaApi extends BaseAPI {
|
|
|
56706
56828
|
*/
|
|
56707
56829
|
deleteSearchAttributeConfig(requestParameters: SearchAttributeConfigurationBetaApiDeleteSearchAttributeConfigRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
56708
56830
|
/**
|
|
56709
|
-
* 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.
|
|
56710
56832
|
* @summary List Extended Search Attributes
|
|
56833
|
+
* @param {SearchAttributeConfigurationBetaApiGetSearchAttributeConfigRequest} requestParameters Request parameters.
|
|
56711
56834
|
* @param {*} [axiosOptions] Override http request option.
|
|
56712
56835
|
* @throws {RequiredError}
|
|
56713
56836
|
* @memberof SearchAttributeConfigurationBetaApi
|
|
56714
56837
|
*/
|
|
56715
|
-
getSearchAttributeConfig(axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SearchAttributeConfigBeta[], any>>;
|
|
56838
|
+
getSearchAttributeConfig(requestParameters?: SearchAttributeConfigurationBetaApiGetSearchAttributeConfigRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SearchAttributeConfigBeta[], any>>;
|
|
56716
56839
|
/**
|
|
56717
56840
|
* Get an extended attribute configuration by name.
|
|
56718
56841
|
* @summary Get Extended Search Attribute
|
|
@@ -62761,10 +62884,11 @@ export declare const WorkItemsBetaApiAxiosParamCreator: (configuration?: Configu
|
|
|
62761
62884
|
* This API completes a work item. Either an admin, or the owning/current user must make this request.
|
|
62762
62885
|
* @summary Complete a Work Item
|
|
62763
62886
|
* @param {string} id The ID of the work item
|
|
62887
|
+
* @param {string | null} [body] Body is the request payload to create form definition request
|
|
62764
62888
|
* @param {*} [axiosOptions] Override http request option.
|
|
62765
62889
|
* @throws {RequiredError}
|
|
62766
62890
|
*/
|
|
62767
|
-
completeWorkItem: (id: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
62891
|
+
completeWorkItem: (id: string, body?: string | null, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
62768
62892
|
/**
|
|
62769
62893
|
* This API forwards a work item to a new owner. Either an admin, or the owning/current user must make this request.
|
|
62770
62894
|
* @summary Forward a Work Item
|
|
@@ -62884,10 +63008,11 @@ export declare const WorkItemsBetaApiFp: (configuration?: Configuration) => {
|
|
|
62884
63008
|
* This API completes a work item. Either an admin, or the owning/current user must make this request.
|
|
62885
63009
|
* @summary Complete a Work Item
|
|
62886
63010
|
* @param {string} id The ID of the work item
|
|
63011
|
+
* @param {string | null} [body] Body is the request payload to create form definition request
|
|
62887
63012
|
* @param {*} [axiosOptions] Override http request option.
|
|
62888
63013
|
* @throws {RequiredError}
|
|
62889
63014
|
*/
|
|
62890
|
-
completeWorkItem(id: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WorkItemsBeta>>;
|
|
63015
|
+
completeWorkItem(id: string, body?: string | null, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WorkItemsBeta>>;
|
|
62891
63016
|
/**
|
|
62892
63017
|
* This API forwards a work item to a new owner. Either an admin, or the owning/current user must make this request.
|
|
62893
63018
|
* @summary Forward a Work Item
|
|
@@ -62932,7 +63057,7 @@ export declare const WorkItemsBetaApiFp: (configuration?: Configuration) => {
|
|
|
62932
63057
|
* @param {*} [axiosOptions] Override http request option.
|
|
62933
63058
|
* @throws {RequiredError}
|
|
62934
63059
|
*/
|
|
62935
|
-
getWorkItem(id: string, ownerId?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
63060
|
+
getWorkItem(id: string, ownerId?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>>;
|
|
62936
63061
|
/**
|
|
62937
63062
|
* This gets a summary of work items belonging to either the specified user(admin required), or the current user.
|
|
62938
63063
|
* @summary Work Items Summary
|
|
@@ -63049,7 +63174,7 @@ export declare const WorkItemsBetaApiFactory: (configuration?: Configuration, ba
|
|
|
63049
63174
|
* @param {*} [axiosOptions] Override http request option.
|
|
63050
63175
|
* @throws {RequiredError}
|
|
63051
63176
|
*/
|
|
63052
|
-
getWorkItem(requestParameters: WorkItemsBetaApiGetWorkItemRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<
|
|
63177
|
+
getWorkItem(requestParameters: WorkItemsBetaApiGetWorkItemRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<object>;
|
|
63053
63178
|
/**
|
|
63054
63179
|
* This gets a summary of work items belonging to either the specified user(admin required), or the current user.
|
|
63055
63180
|
* @summary Work Items Summary
|
|
@@ -63135,6 +63260,12 @@ export interface WorkItemsBetaApiCompleteWorkItemRequest {
|
|
|
63135
63260
|
* @memberof WorkItemsBetaApiCompleteWorkItem
|
|
63136
63261
|
*/
|
|
63137
63262
|
readonly id: string;
|
|
63263
|
+
/**
|
|
63264
|
+
* Body is the request payload to create form definition request
|
|
63265
|
+
* @type {string}
|
|
63266
|
+
* @memberof WorkItemsBetaApiCompleteWorkItem
|
|
63267
|
+
*/
|
|
63268
|
+
readonly body?: string | null;
|
|
63138
63269
|
}
|
|
63139
63270
|
/**
|
|
63140
63271
|
* Request parameters for forwardWorkItem operation in WorkItemsBetaApi.
|
|
@@ -63406,7 +63537,7 @@ export declare class WorkItemsBetaApi extends BaseAPI {
|
|
|
63406
63537
|
* @throws {RequiredError}
|
|
63407
63538
|
* @memberof WorkItemsBetaApi
|
|
63408
63539
|
*/
|
|
63409
|
-
getWorkItem(requestParameters: WorkItemsBetaApiGetWorkItemRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
63540
|
+
getWorkItem(requestParameters: WorkItemsBetaApiGetWorkItemRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any>>;
|
|
63410
63541
|
/**
|
|
63411
63542
|
* This gets a summary of work items belonging to either the specified user(admin required), or the current user.
|
|
63412
63543
|
* @summary Work Items Summary
|
|
@@ -63510,10 +63641,12 @@ export declare const WorkReassignmentBetaApiAxiosParamCreator: (configuration?:
|
|
|
63510
63641
|
/**
|
|
63511
63642
|
* Gets all Reassignment configuration for the current org.
|
|
63512
63643
|
* @summary List Reassignment Configurations
|
|
63644
|
+
* @param {number} [limit] Max number of results to return.
|
|
63645
|
+
* @param {number} [offset] Offset into the full result set. Usually specified with *limit* to paginate through the results. Defaults to 0 if not specified.
|
|
63513
63646
|
* @param {*} [axiosOptions] Override http request option.
|
|
63514
63647
|
* @throws {RequiredError}
|
|
63515
63648
|
*/
|
|
63516
|
-
listReassignmentConfigurations: (axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
63649
|
+
listReassignmentConfigurations: (limit?: number, offset?: number, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
63517
63650
|
/**
|
|
63518
63651
|
* Replaces existing Reassignment configuration for an identity with the newly provided configuration.
|
|
63519
63652
|
* @summary Update Reassignment Configuration
|
|
@@ -63589,10 +63722,12 @@ export declare const WorkReassignmentBetaApiFp: (configuration?: Configuration)
|
|
|
63589
63722
|
/**
|
|
63590
63723
|
* Gets all Reassignment configuration for the current org.
|
|
63591
63724
|
* @summary List Reassignment Configurations
|
|
63725
|
+
* @param {number} [limit] Max number of results to return.
|
|
63726
|
+
* @param {number} [offset] Offset into the full result set. Usually specified with *limit* to paginate through the results. Defaults to 0 if not specified.
|
|
63592
63727
|
* @param {*} [axiosOptions] Override http request option.
|
|
63593
63728
|
* @throws {RequiredError}
|
|
63594
63729
|
*/
|
|
63595
|
-
listReassignmentConfigurations(axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<ConfigurationResponseBeta>>>;
|
|
63730
|
+
listReassignmentConfigurations(limit?: number, offset?: number, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<ConfigurationResponseBeta>>>;
|
|
63596
63731
|
/**
|
|
63597
63732
|
* Replaces existing Reassignment configuration for an identity with the newly provided configuration.
|
|
63598
63733
|
* @summary Update Reassignment Configuration
|
|
@@ -63665,10 +63800,11 @@ export declare const WorkReassignmentBetaApiFactory: (configuration?: Configurat
|
|
|
63665
63800
|
/**
|
|
63666
63801
|
* Gets all Reassignment configuration for the current org.
|
|
63667
63802
|
* @summary List Reassignment Configurations
|
|
63803
|
+
* @param {WorkReassignmentBetaApiListReassignmentConfigurationsRequest} requestParameters Request parameters.
|
|
63668
63804
|
* @param {*} [axiosOptions] Override http request option.
|
|
63669
63805
|
* @throws {RequiredError}
|
|
63670
63806
|
*/
|
|
63671
|
-
listReassignmentConfigurations(axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<ConfigurationResponseBeta>>;
|
|
63807
|
+
listReassignmentConfigurations(requestParameters?: WorkReassignmentBetaApiListReassignmentConfigurationsRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<ConfigurationResponseBeta>>;
|
|
63672
63808
|
/**
|
|
63673
63809
|
* Replaces existing Reassignment configuration for an identity with the newly provided configuration.
|
|
63674
63810
|
* @summary Update Reassignment Configuration
|
|
@@ -63756,6 +63892,25 @@ export interface WorkReassignmentBetaApiGetReassignmentConfigurationRequest {
|
|
|
63756
63892
|
*/
|
|
63757
63893
|
readonly identityId: string;
|
|
63758
63894
|
}
|
|
63895
|
+
/**
|
|
63896
|
+
* Request parameters for listReassignmentConfigurations operation in WorkReassignmentBetaApi.
|
|
63897
|
+
* @export
|
|
63898
|
+
* @interface WorkReassignmentBetaApiListReassignmentConfigurationsRequest
|
|
63899
|
+
*/
|
|
63900
|
+
export interface WorkReassignmentBetaApiListReassignmentConfigurationsRequest {
|
|
63901
|
+
/**
|
|
63902
|
+
* Max number of results to return.
|
|
63903
|
+
* @type {number}
|
|
63904
|
+
* @memberof WorkReassignmentBetaApiListReassignmentConfigurations
|
|
63905
|
+
*/
|
|
63906
|
+
readonly limit?: number;
|
|
63907
|
+
/**
|
|
63908
|
+
* Offset into the full result set. Usually specified with *limit* to paginate through the results. Defaults to 0 if not specified.
|
|
63909
|
+
* @type {number}
|
|
63910
|
+
* @memberof WorkReassignmentBetaApiListReassignmentConfigurations
|
|
63911
|
+
*/
|
|
63912
|
+
readonly offset?: number;
|
|
63913
|
+
}
|
|
63759
63914
|
/**
|
|
63760
63915
|
* Request parameters for putReassignmentConfig operation in WorkReassignmentBetaApi.
|
|
63761
63916
|
* @export
|
|
@@ -63850,11 +64005,12 @@ export declare class WorkReassignmentBetaApi extends BaseAPI {
|
|
|
63850
64005
|
/**
|
|
63851
64006
|
* Gets all Reassignment configuration for the current org.
|
|
63852
64007
|
* @summary List Reassignment Configurations
|
|
64008
|
+
* @param {WorkReassignmentBetaApiListReassignmentConfigurationsRequest} requestParameters Request parameters.
|
|
63853
64009
|
* @param {*} [axiosOptions] Override http request option.
|
|
63854
64010
|
* @throws {RequiredError}
|
|
63855
64011
|
* @memberof WorkReassignmentBetaApi
|
|
63856
64012
|
*/
|
|
63857
|
-
listReassignmentConfigurations(axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ConfigurationResponseBeta[], any>>;
|
|
64013
|
+
listReassignmentConfigurations(requestParameters?: WorkReassignmentBetaApiListReassignmentConfigurationsRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ConfigurationResponseBeta[], any>>;
|
|
63858
64014
|
/**
|
|
63859
64015
|
* Replaces existing Reassignment configuration for an identity with the newly provided configuration.
|
|
63860
64016
|
* @summary Update Reassignment Configuration
|