sailpoint-api-client 1.7.0 → 1.7.1
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 +2109 -201
- package/beta/common.ts +2 -2
- package/beta/package.json +1 -1
- package/dist/beta/api.d.ts +995 -70
- package/dist/beta/api.js +2743 -397
- package/dist/beta/api.js.map +1 -1
- package/dist/beta/common.js +1 -1
- package/dist/v2024/api.d.ts +206 -60
- package/dist/v2024/api.js +3283 -760
- package/dist/v2024/api.js.map +1 -1
- package/dist/v2024/common.js +1 -1
- package/dist/v2025/api.d.ts +4215 -146
- package/dist/v2025/api.js +6582 -965
- package/dist/v2025/api.js.map +1 -1
- package/dist/v2025/common.js +1 -1
- package/dist/v2026/api.d.ts +23 -15
- package/dist/v2026/api.js +22 -14
- package/dist/v2026/api.js.map +1 -1
- package/dist/v2026/common.js +1 -1
- package/dist/v3/api.d.ts +176 -8
- package/dist/v3/api.js +1270 -281
- package/dist/v3/api.js.map +1 -1
- package/dist/v3/common.js +1 -1
- package/package.json +1 -1
- package/v2024/README.md +2 -2
- package/v2024/api.ts +1443 -288
- package/v2024/common.ts +2 -2
- package/v2024/package.json +1 -1
- package/v2025/README.md +2 -2
- package/v2025/api.ts +6947 -444
- package/v2025/common.ts +2 -2
- package/v2025/package.json +1 -1
- package/v2026/README.md +2 -2
- package/v2026/api.ts +23 -15
- package/v2026/common.ts +2 -2
- package/v2026/package.json +1 -1
- package/v3/README.md +2 -2
- package/v3/api.ts +667 -105
- package/v3/common.ts +2 -2
- package/v3/package.json +1 -1
package/dist/beta/api.d.ts
CHANGED
|
@@ -97,6 +97,32 @@ export declare const AccessCriteriaCriteriaListInnerBetaTypeBeta: {
|
|
|
97
97
|
readonly Entitlement: "ENTITLEMENT";
|
|
98
98
|
};
|
|
99
99
|
export type AccessCriteriaCriteriaListInnerBetaTypeBeta = typeof AccessCriteriaCriteriaListInnerBetaTypeBeta[keyof typeof AccessCriteriaCriteriaListInnerBetaTypeBeta];
|
|
100
|
+
/**
|
|
101
|
+
*
|
|
102
|
+
* @export
|
|
103
|
+
* @interface AccessDurationBeta
|
|
104
|
+
*/
|
|
105
|
+
export interface AccessDurationBeta {
|
|
106
|
+
/**
|
|
107
|
+
* The numeric value representing the amount of time, which is defined in the **timeUnit**.
|
|
108
|
+
* @type {number}
|
|
109
|
+
* @memberof AccessDurationBeta
|
|
110
|
+
*/
|
|
111
|
+
'value'?: number;
|
|
112
|
+
/**
|
|
113
|
+
* The unit of time that corresponds to the **value**. It defines the scale of the time period.
|
|
114
|
+
* @type {string}
|
|
115
|
+
* @memberof AccessDurationBeta
|
|
116
|
+
*/
|
|
117
|
+
'timeUnit'?: AccessDurationBetaTimeUnitBeta;
|
|
118
|
+
}
|
|
119
|
+
export declare const AccessDurationBetaTimeUnitBeta: {
|
|
120
|
+
readonly Hours: "HOURS";
|
|
121
|
+
readonly Days: "DAYS";
|
|
122
|
+
readonly Weeks: "WEEKS";
|
|
123
|
+
readonly Months: "MONTHS";
|
|
124
|
+
};
|
|
125
|
+
export type AccessDurationBetaTimeUnitBeta = typeof AccessDurationBetaTimeUnitBeta[keyof typeof AccessDurationBetaTimeUnitBeta];
|
|
100
126
|
/**
|
|
101
127
|
*
|
|
102
128
|
* @export
|
|
@@ -1025,12 +1051,24 @@ export interface AccessProfileBeta {
|
|
|
1025
1051
|
* @memberof AccessProfileBeta
|
|
1026
1052
|
*/
|
|
1027
1053
|
'segments'?: Array<string> | null;
|
|
1054
|
+
/**
|
|
1055
|
+
*
|
|
1056
|
+
* @type {AttributeDTOListBeta}
|
|
1057
|
+
* @memberof AccessProfileBeta
|
|
1058
|
+
*/
|
|
1059
|
+
'accessModelMetadata'?: AttributeDTOListBeta;
|
|
1028
1060
|
/**
|
|
1029
1061
|
*
|
|
1030
1062
|
* @type {ProvisioningCriteriaLevel1Beta}
|
|
1031
1063
|
* @memberof AccessProfileBeta
|
|
1032
1064
|
*/
|
|
1033
1065
|
'provisioningCriteria'?: ProvisioningCriteriaLevel1Beta | null;
|
|
1066
|
+
/**
|
|
1067
|
+
*
|
|
1068
|
+
* @type {Array<OwnerReferenceBeta>}
|
|
1069
|
+
* @memberof AccessProfileBeta
|
|
1070
|
+
*/
|
|
1071
|
+
'additionalOwners'?: Array<OwnerReferenceBeta> | null;
|
|
1034
1072
|
}
|
|
1035
1073
|
/**
|
|
1036
1074
|
*
|
|
@@ -1403,6 +1441,226 @@ export interface AccessRecommendationMessageBeta {
|
|
|
1403
1441
|
*/
|
|
1404
1442
|
'interpretation'?: string;
|
|
1405
1443
|
}
|
|
1444
|
+
/**
|
|
1445
|
+
*
|
|
1446
|
+
* @export
|
|
1447
|
+
* @interface AccessRequestAdminItemStatusBeta
|
|
1448
|
+
*/
|
|
1449
|
+
export interface AccessRequestAdminItemStatusBeta {
|
|
1450
|
+
/**
|
|
1451
|
+
* ID of the access request. This is a new property as of 2025. Older access requests may not have an ID.
|
|
1452
|
+
* @type {string}
|
|
1453
|
+
* @memberof AccessRequestAdminItemStatusBeta
|
|
1454
|
+
*/
|
|
1455
|
+
'id'?: string | null;
|
|
1456
|
+
/**
|
|
1457
|
+
* Human-readable display name of the item being requested.
|
|
1458
|
+
* @type {string}
|
|
1459
|
+
* @memberof AccessRequestAdminItemStatusBeta
|
|
1460
|
+
*/
|
|
1461
|
+
'name'?: string | null;
|
|
1462
|
+
/**
|
|
1463
|
+
* Type of requested object.
|
|
1464
|
+
* @type {string}
|
|
1465
|
+
* @memberof AccessRequestAdminItemStatusBeta
|
|
1466
|
+
*/
|
|
1467
|
+
'type'?: AccessRequestAdminItemStatusBetaTypeBeta | null;
|
|
1468
|
+
/**
|
|
1469
|
+
*
|
|
1470
|
+
* @type {AccessRequestAdminItemStatusCancelledRequestDetailsBeta}
|
|
1471
|
+
* @memberof AccessRequestAdminItemStatusBeta
|
|
1472
|
+
*/
|
|
1473
|
+
'cancelledRequestDetails'?: AccessRequestAdminItemStatusCancelledRequestDetailsBeta;
|
|
1474
|
+
/**
|
|
1475
|
+
* List of localized error messages, if any, encountered during the approval/provisioning process.
|
|
1476
|
+
* @type {Array<Array<ErrorMessageDto1Beta>>}
|
|
1477
|
+
* @memberof AccessRequestAdminItemStatusBeta
|
|
1478
|
+
*/
|
|
1479
|
+
'errorMessages'?: Array<Array<ErrorMessageDto1Beta>> | null;
|
|
1480
|
+
/**
|
|
1481
|
+
*
|
|
1482
|
+
* @type {RequestedItemStatusRequestStateBeta}
|
|
1483
|
+
* @memberof AccessRequestAdminItemStatusBeta
|
|
1484
|
+
*/
|
|
1485
|
+
'state'?: RequestedItemStatusRequestStateBeta;
|
|
1486
|
+
/**
|
|
1487
|
+
* Approval details for each item.
|
|
1488
|
+
* @type {Array<ApprovalStatusDto1Beta>}
|
|
1489
|
+
* @memberof AccessRequestAdminItemStatusBeta
|
|
1490
|
+
*/
|
|
1491
|
+
'approvalDetails'?: Array<ApprovalStatusDto1Beta>;
|
|
1492
|
+
/**
|
|
1493
|
+
* Manual work items created for provisioning the item.
|
|
1494
|
+
* @type {Array<ManualWorkItemDetails1Beta>}
|
|
1495
|
+
* @memberof AccessRequestAdminItemStatusBeta
|
|
1496
|
+
*/
|
|
1497
|
+
'manualWorkItemDetails'?: Array<ManualWorkItemDetails1Beta> | null;
|
|
1498
|
+
/**
|
|
1499
|
+
* Id of associated account activity item.
|
|
1500
|
+
* @type {string}
|
|
1501
|
+
* @memberof AccessRequestAdminItemStatusBeta
|
|
1502
|
+
*/
|
|
1503
|
+
'accountActivityItemId'?: string;
|
|
1504
|
+
/**
|
|
1505
|
+
*
|
|
1506
|
+
* @type {AccessRequestTypeBeta}
|
|
1507
|
+
* @memberof AccessRequestAdminItemStatusBeta
|
|
1508
|
+
*/
|
|
1509
|
+
'requestType'?: AccessRequestTypeBeta | null;
|
|
1510
|
+
/**
|
|
1511
|
+
* When the request was last modified.
|
|
1512
|
+
* @type {string}
|
|
1513
|
+
* @memberof AccessRequestAdminItemStatusBeta
|
|
1514
|
+
*/
|
|
1515
|
+
'modified'?: string | null;
|
|
1516
|
+
/**
|
|
1517
|
+
* When the request was created.
|
|
1518
|
+
* @type {string}
|
|
1519
|
+
* @memberof AccessRequestAdminItemStatusBeta
|
|
1520
|
+
*/
|
|
1521
|
+
'created'?: string;
|
|
1522
|
+
/**
|
|
1523
|
+
*
|
|
1524
|
+
* @type {AccessItemRequesterBeta}
|
|
1525
|
+
* @memberof AccessRequestAdminItemStatusBeta
|
|
1526
|
+
*/
|
|
1527
|
+
'requester'?: AccessItemRequesterBeta;
|
|
1528
|
+
/**
|
|
1529
|
+
*
|
|
1530
|
+
* @type {RequestedItemStatusRequestedForBeta}
|
|
1531
|
+
* @memberof AccessRequestAdminItemStatusBeta
|
|
1532
|
+
*/
|
|
1533
|
+
'requestedFor'?: RequestedItemStatusRequestedForBeta;
|
|
1534
|
+
/**
|
|
1535
|
+
*
|
|
1536
|
+
* @type {RequestedItemStatusRequesterCommentBeta}
|
|
1537
|
+
* @memberof AccessRequestAdminItemStatusBeta
|
|
1538
|
+
*/
|
|
1539
|
+
'requesterComment'?: RequestedItemStatusRequesterCommentBeta;
|
|
1540
|
+
/**
|
|
1541
|
+
*
|
|
1542
|
+
* @type {AccessRequestAdminItemStatusSodViolationContextBeta}
|
|
1543
|
+
* @memberof AccessRequestAdminItemStatusBeta
|
|
1544
|
+
*/
|
|
1545
|
+
'sodViolationContext'?: AccessRequestAdminItemStatusSodViolationContextBeta;
|
|
1546
|
+
/**
|
|
1547
|
+
*
|
|
1548
|
+
* @type {RequestedItemStatusProvisioningDetailsBeta}
|
|
1549
|
+
* @memberof AccessRequestAdminItemStatusBeta
|
|
1550
|
+
*/
|
|
1551
|
+
'provisioningDetails'?: RequestedItemStatusProvisioningDetailsBeta;
|
|
1552
|
+
/**
|
|
1553
|
+
*
|
|
1554
|
+
* @type {RequestedItemStatusPreApprovalTriggerDetailsBeta}
|
|
1555
|
+
* @memberof AccessRequestAdminItemStatusBeta
|
|
1556
|
+
*/
|
|
1557
|
+
'preApprovalTriggerDetails'?: RequestedItemStatusPreApprovalTriggerDetailsBeta;
|
|
1558
|
+
/**
|
|
1559
|
+
* A list of Phases that the Access Request has gone through in order, to help determine the status of the request.
|
|
1560
|
+
* @type {Array<AccessRequestPhasesBeta>}
|
|
1561
|
+
* @memberof AccessRequestAdminItemStatusBeta
|
|
1562
|
+
*/
|
|
1563
|
+
'accessRequestPhases'?: Array<AccessRequestPhasesBeta> | null;
|
|
1564
|
+
/**
|
|
1565
|
+
* Description associated to the requested object.
|
|
1566
|
+
* @type {string}
|
|
1567
|
+
* @memberof AccessRequestAdminItemStatusBeta
|
|
1568
|
+
*/
|
|
1569
|
+
'description'?: string | null;
|
|
1570
|
+
/**
|
|
1571
|
+
* When the role access is scheduled for removal.
|
|
1572
|
+
* @type {string}
|
|
1573
|
+
* @memberof AccessRequestAdminItemStatusBeta
|
|
1574
|
+
*/
|
|
1575
|
+
'removeDate'?: string | null;
|
|
1576
|
+
/**
|
|
1577
|
+
* True if the request can be canceled.
|
|
1578
|
+
* @type {boolean}
|
|
1579
|
+
* @memberof AccessRequestAdminItemStatusBeta
|
|
1580
|
+
*/
|
|
1581
|
+
'cancelable'?: boolean;
|
|
1582
|
+
/**
|
|
1583
|
+
* True if re-auth is required.
|
|
1584
|
+
* @type {boolean}
|
|
1585
|
+
* @memberof AccessRequestAdminItemStatusBeta
|
|
1586
|
+
*/
|
|
1587
|
+
'reauthorizationRequired'?: boolean;
|
|
1588
|
+
/**
|
|
1589
|
+
* This is the account activity id.
|
|
1590
|
+
* @type {string}
|
|
1591
|
+
* @memberof AccessRequestAdminItemStatusBeta
|
|
1592
|
+
*/
|
|
1593
|
+
'accessRequestId'?: string;
|
|
1594
|
+
/**
|
|
1595
|
+
* Arbitrary key-value pairs, if any were included in the corresponding access request
|
|
1596
|
+
* @type {{ [key: string]: string; }}
|
|
1597
|
+
* @memberof AccessRequestAdminItemStatusBeta
|
|
1598
|
+
*/
|
|
1599
|
+
'clientMetadata'?: {
|
|
1600
|
+
[key: string]: string;
|
|
1601
|
+
} | null;
|
|
1602
|
+
}
|
|
1603
|
+
export declare const AccessRequestAdminItemStatusBetaTypeBeta: {
|
|
1604
|
+
readonly AccessProfile: "ACCESS_PROFILE";
|
|
1605
|
+
readonly Role: "ROLE";
|
|
1606
|
+
readonly Entitlement: "ENTITLEMENT";
|
|
1607
|
+
};
|
|
1608
|
+
export type AccessRequestAdminItemStatusBetaTypeBeta = typeof AccessRequestAdminItemStatusBetaTypeBeta[keyof typeof AccessRequestAdminItemStatusBetaTypeBeta];
|
|
1609
|
+
/**
|
|
1610
|
+
*
|
|
1611
|
+
* @export
|
|
1612
|
+
* @interface AccessRequestAdminItemStatusCancelledRequestDetailsBeta
|
|
1613
|
+
*/
|
|
1614
|
+
export interface AccessRequestAdminItemStatusCancelledRequestDetailsBeta {
|
|
1615
|
+
/**
|
|
1616
|
+
* Comment made by the owner when cancelling the associated request.
|
|
1617
|
+
* @type {string}
|
|
1618
|
+
* @memberof AccessRequestAdminItemStatusCancelledRequestDetailsBeta
|
|
1619
|
+
*/
|
|
1620
|
+
'comment'?: string;
|
|
1621
|
+
/**
|
|
1622
|
+
*
|
|
1623
|
+
* @type {OwnerDtoBeta}
|
|
1624
|
+
* @memberof AccessRequestAdminItemStatusCancelledRequestDetailsBeta
|
|
1625
|
+
*/
|
|
1626
|
+
'owner'?: OwnerDtoBeta;
|
|
1627
|
+
/**
|
|
1628
|
+
* Date comment was added by the owner when cancelling the associated request.
|
|
1629
|
+
* @type {string}
|
|
1630
|
+
* @memberof AccessRequestAdminItemStatusCancelledRequestDetailsBeta
|
|
1631
|
+
*/
|
|
1632
|
+
'modified'?: string;
|
|
1633
|
+
}
|
|
1634
|
+
/**
|
|
1635
|
+
*
|
|
1636
|
+
* @export
|
|
1637
|
+
* @interface AccessRequestAdminItemStatusSodViolationContextBeta
|
|
1638
|
+
*/
|
|
1639
|
+
export interface AccessRequestAdminItemStatusSodViolationContextBeta {
|
|
1640
|
+
/**
|
|
1641
|
+
* The status of SOD violation check
|
|
1642
|
+
* @type {string}
|
|
1643
|
+
* @memberof AccessRequestAdminItemStatusSodViolationContextBeta
|
|
1644
|
+
*/
|
|
1645
|
+
'state'?: AccessRequestAdminItemStatusSodViolationContextBetaStateBeta | null;
|
|
1646
|
+
/**
|
|
1647
|
+
* The id of the Violation check event
|
|
1648
|
+
* @type {string}
|
|
1649
|
+
* @memberof AccessRequestAdminItemStatusSodViolationContextBeta
|
|
1650
|
+
*/
|
|
1651
|
+
'uuid'?: string | null;
|
|
1652
|
+
/**
|
|
1653
|
+
*
|
|
1654
|
+
* @type {SodViolationCheckResult1Beta}
|
|
1655
|
+
* @memberof AccessRequestAdminItemStatusSodViolationContextBeta
|
|
1656
|
+
*/
|
|
1657
|
+
'violationCheckResult'?: SodViolationCheckResult1Beta;
|
|
1658
|
+
}
|
|
1659
|
+
export declare const AccessRequestAdminItemStatusSodViolationContextBetaStateBeta: {
|
|
1660
|
+
readonly Success: "SUCCESS";
|
|
1661
|
+
readonly Error: "ERROR";
|
|
1662
|
+
};
|
|
1663
|
+
export type AccessRequestAdminItemStatusSodViolationContextBetaStateBeta = typeof AccessRequestAdminItemStatusSodViolationContextBetaStateBeta[keyof typeof AccessRequestAdminItemStatusSodViolationContextBetaStateBeta];
|
|
1406
1664
|
/**
|
|
1407
1665
|
*
|
|
1408
1666
|
* @export
|
|
@@ -3910,6 +4168,49 @@ export interface AppAccountDetailsSourceAccountBeta {
|
|
|
3910
4168
|
*/
|
|
3911
4169
|
'sourceDisplayName'?: string;
|
|
3912
4170
|
}
|
|
4171
|
+
/**
|
|
4172
|
+
*
|
|
4173
|
+
* @export
|
|
4174
|
+
* @interface ApprovalForwardHistory1Beta
|
|
4175
|
+
*/
|
|
4176
|
+
export interface ApprovalForwardHistory1Beta {
|
|
4177
|
+
/**
|
|
4178
|
+
* Display name of approver from whom the approval was forwarded.
|
|
4179
|
+
* @type {string}
|
|
4180
|
+
* @memberof ApprovalForwardHistory1Beta
|
|
4181
|
+
*/
|
|
4182
|
+
'oldApproverName'?: string;
|
|
4183
|
+
/**
|
|
4184
|
+
* Display name of approver to whom the approval was forwarded.
|
|
4185
|
+
* @type {string}
|
|
4186
|
+
* @memberof ApprovalForwardHistory1Beta
|
|
4187
|
+
*/
|
|
4188
|
+
'newApproverName'?: string;
|
|
4189
|
+
/**
|
|
4190
|
+
* Comment made while forwarding.
|
|
4191
|
+
* @type {string}
|
|
4192
|
+
* @memberof ApprovalForwardHistory1Beta
|
|
4193
|
+
*/
|
|
4194
|
+
'comment'?: string | null;
|
|
4195
|
+
/**
|
|
4196
|
+
* Time at which approval was forwarded.
|
|
4197
|
+
* @type {string}
|
|
4198
|
+
* @memberof ApprovalForwardHistory1Beta
|
|
4199
|
+
*/
|
|
4200
|
+
'modified'?: string;
|
|
4201
|
+
/**
|
|
4202
|
+
* Display name of forwarder who forwarded the approval.
|
|
4203
|
+
* @type {string}
|
|
4204
|
+
* @memberof ApprovalForwardHistory1Beta
|
|
4205
|
+
*/
|
|
4206
|
+
'forwarderName'?: string | null;
|
|
4207
|
+
/**
|
|
4208
|
+
*
|
|
4209
|
+
* @type {ReassignmentTypeBeta}
|
|
4210
|
+
* @memberof ApprovalForwardHistory1Beta
|
|
4211
|
+
*/
|
|
4212
|
+
'reassignmentType'?: ReassignmentTypeBeta;
|
|
4213
|
+
}
|
|
3913
4214
|
/**
|
|
3914
4215
|
*
|
|
3915
4216
|
* @export
|
|
@@ -4161,6 +4462,67 @@ export declare const ApprovalStatusBeta: {
|
|
|
4161
4462
|
readonly Cancelled: "CANCELLED";
|
|
4162
4463
|
};
|
|
4163
4464
|
export type ApprovalStatusBeta = typeof ApprovalStatusBeta[keyof typeof ApprovalStatusBeta];
|
|
4465
|
+
/**
|
|
4466
|
+
*
|
|
4467
|
+
* @export
|
|
4468
|
+
* @interface ApprovalStatusDto1Beta
|
|
4469
|
+
*/
|
|
4470
|
+
export interface ApprovalStatusDto1Beta {
|
|
4471
|
+
/**
|
|
4472
|
+
* True if the request for this item was forwarded from one owner to another.
|
|
4473
|
+
* @type {boolean}
|
|
4474
|
+
* @memberof ApprovalStatusDto1Beta
|
|
4475
|
+
*/
|
|
4476
|
+
'forwarded'?: boolean;
|
|
4477
|
+
/**
|
|
4478
|
+
*
|
|
4479
|
+
* @type {ApprovalStatusDtoOriginalOwnerBeta}
|
|
4480
|
+
* @memberof ApprovalStatusDto1Beta
|
|
4481
|
+
*/
|
|
4482
|
+
'originalOwner'?: ApprovalStatusDtoOriginalOwnerBeta;
|
|
4483
|
+
/**
|
|
4484
|
+
*
|
|
4485
|
+
* @type {ApprovalStatusDtoCurrentOwnerBeta}
|
|
4486
|
+
* @memberof ApprovalStatusDto1Beta
|
|
4487
|
+
*/
|
|
4488
|
+
'currentOwner'?: ApprovalStatusDtoCurrentOwnerBeta;
|
|
4489
|
+
/**
|
|
4490
|
+
* Time at which item was modified.
|
|
4491
|
+
* @type {string}
|
|
4492
|
+
* @memberof ApprovalStatusDto1Beta
|
|
4493
|
+
*/
|
|
4494
|
+
'modified'?: string | null;
|
|
4495
|
+
/**
|
|
4496
|
+
*
|
|
4497
|
+
* @type {ManualWorkItemStateBeta}
|
|
4498
|
+
* @memberof ApprovalStatusDto1Beta
|
|
4499
|
+
*/
|
|
4500
|
+
'status'?: ManualWorkItemStateBeta;
|
|
4501
|
+
/**
|
|
4502
|
+
*
|
|
4503
|
+
* @type {ApprovalSchemeBeta}
|
|
4504
|
+
* @memberof ApprovalStatusDto1Beta
|
|
4505
|
+
*/
|
|
4506
|
+
'scheme'?: ApprovalSchemeBeta;
|
|
4507
|
+
/**
|
|
4508
|
+
* If the request failed, includes any error messages that were generated.
|
|
4509
|
+
* @type {Array<ErrorMessageDto1Beta>}
|
|
4510
|
+
* @memberof ApprovalStatusDto1Beta
|
|
4511
|
+
*/
|
|
4512
|
+
'errorMessages'?: Array<ErrorMessageDto1Beta> | null;
|
|
4513
|
+
/**
|
|
4514
|
+
* Comment, if any, provided by the approver.
|
|
4515
|
+
* @type {string}
|
|
4516
|
+
* @memberof ApprovalStatusDto1Beta
|
|
4517
|
+
*/
|
|
4518
|
+
'comment'?: string | null;
|
|
4519
|
+
/**
|
|
4520
|
+
* The date the role or access profile or entitlement is no longer assigned to the specified identity.
|
|
4521
|
+
* @type {string}
|
|
4522
|
+
* @memberof ApprovalStatusDto1Beta
|
|
4523
|
+
*/
|
|
4524
|
+
'removeDate'?: string | null;
|
|
4525
|
+
}
|
|
4164
4526
|
/**
|
|
4165
4527
|
*
|
|
4166
4528
|
* @export
|
|
@@ -5992,6 +6354,31 @@ export interface CancelableAccountActivityBeta {
|
|
|
5992
6354
|
*/
|
|
5993
6355
|
'cancelComment'?: CommentBeta | null;
|
|
5994
6356
|
}
|
|
6357
|
+
/**
|
|
6358
|
+
* Provides additional details for a request that has been cancelled.
|
|
6359
|
+
* @export
|
|
6360
|
+
* @interface CancelledRequestDetails1Beta
|
|
6361
|
+
*/
|
|
6362
|
+
export interface CancelledRequestDetails1Beta {
|
|
6363
|
+
/**
|
|
6364
|
+
* Comment made by the owner when cancelling the associated request.
|
|
6365
|
+
* @type {string}
|
|
6366
|
+
* @memberof CancelledRequestDetails1Beta
|
|
6367
|
+
*/
|
|
6368
|
+
'comment'?: string;
|
|
6369
|
+
/**
|
|
6370
|
+
*
|
|
6371
|
+
* @type {OwnerDtoBeta}
|
|
6372
|
+
* @memberof CancelledRequestDetails1Beta
|
|
6373
|
+
*/
|
|
6374
|
+
'owner'?: OwnerDtoBeta;
|
|
6375
|
+
/**
|
|
6376
|
+
* Date comment was added by the owner when cancelling the associated request.
|
|
6377
|
+
* @type {string}
|
|
6378
|
+
* @memberof CancelledRequestDetails1Beta
|
|
6379
|
+
*/
|
|
6380
|
+
'modified'?: string;
|
|
6381
|
+
}
|
|
5995
6382
|
/**
|
|
5996
6383
|
* Provides additional details for a request that has been cancelled.
|
|
5997
6384
|
* @export
|
|
@@ -7046,10 +7433,10 @@ export interface CompletedApprovalBeta {
|
|
|
7046
7433
|
'currentRemoveDate'?: string | null;
|
|
7047
7434
|
/**
|
|
7048
7435
|
*
|
|
7049
|
-
* @type {
|
|
7436
|
+
* @type {SodViolationContextCheckCompleted2Beta}
|
|
7050
7437
|
* @memberof CompletedApprovalBeta
|
|
7051
7438
|
*/
|
|
7052
|
-
'sodViolationContext'?:
|
|
7439
|
+
'sodViolationContext'?: SodViolationContextCheckCompleted2Beta | null;
|
|
7053
7440
|
/**
|
|
7054
7441
|
*
|
|
7055
7442
|
* @type {CompletedApprovalPreApprovalTriggerResultBeta}
|
|
@@ -7076,6 +7463,12 @@ export interface CompletedApprovalBeta {
|
|
|
7076
7463
|
* @memberof CompletedApprovalBeta
|
|
7077
7464
|
*/
|
|
7078
7465
|
'privilegeLevel'?: string | null;
|
|
7466
|
+
/**
|
|
7467
|
+
*
|
|
7468
|
+
* @type {PendingApprovalMaxPermittedAccessDurationBeta}
|
|
7469
|
+
* @memberof CompletedApprovalBeta
|
|
7470
|
+
*/
|
|
7471
|
+
'maxPermittedAccessDuration'?: PendingApprovalMaxPermittedAccessDurationBeta | null;
|
|
7079
7472
|
}
|
|
7080
7473
|
/**
|
|
7081
7474
|
* If the access request submitted event trigger is configured and this access request was intercepted by it, then this is the result of the trigger\'s decision to either approve or deny the request.
|
|
@@ -9194,6 +9587,18 @@ export interface EntitlementAccessRequestConfigBeta {
|
|
|
9194
9587
|
* @memberof EntitlementAccessRequestConfigBeta
|
|
9195
9588
|
*/
|
|
9196
9589
|
'reauthorizationRequired'?: boolean;
|
|
9590
|
+
/**
|
|
9591
|
+
* If true, then remove date or sunset date is required in access request of the entitlement.
|
|
9592
|
+
* @type {boolean}
|
|
9593
|
+
* @memberof EntitlementAccessRequestConfigBeta
|
|
9594
|
+
*/
|
|
9595
|
+
'requireEndDate'?: boolean;
|
|
9596
|
+
/**
|
|
9597
|
+
*
|
|
9598
|
+
* @type {PendingApprovalMaxPermittedAccessDurationBeta}
|
|
9599
|
+
* @memberof EntitlementAccessRequestConfigBeta
|
|
9600
|
+
*/
|
|
9601
|
+
'maxPermittedAccessDuration'?: PendingApprovalMaxPermittedAccessDurationBeta | null;
|
|
9197
9602
|
}
|
|
9198
9603
|
/**
|
|
9199
9604
|
*
|
|
@@ -9617,6 +10022,31 @@ export interface ErrorMessageBeta {
|
|
|
9617
10022
|
*/
|
|
9618
10023
|
'text'?: string;
|
|
9619
10024
|
}
|
|
10025
|
+
/**
|
|
10026
|
+
*
|
|
10027
|
+
* @export
|
|
10028
|
+
* @interface ErrorMessageDto1Beta
|
|
10029
|
+
*/
|
|
10030
|
+
export interface ErrorMessageDto1Beta {
|
|
10031
|
+
/**
|
|
10032
|
+
* The locale for the message text, a BCP 47 language tag.
|
|
10033
|
+
* @type {string}
|
|
10034
|
+
* @memberof ErrorMessageDto1Beta
|
|
10035
|
+
*/
|
|
10036
|
+
'locale'?: string | null;
|
|
10037
|
+
/**
|
|
10038
|
+
*
|
|
10039
|
+
* @type {LocaleOriginBeta}
|
|
10040
|
+
* @memberof ErrorMessageDto1Beta
|
|
10041
|
+
*/
|
|
10042
|
+
'localeOrigin'?: LocaleOriginBeta | null;
|
|
10043
|
+
/**
|
|
10044
|
+
* Actual text of the error message in the indicated locale.
|
|
10045
|
+
* @type {string}
|
|
10046
|
+
* @memberof ErrorMessageDto1Beta
|
|
10047
|
+
*/
|
|
10048
|
+
'text'?: string;
|
|
10049
|
+
}
|
|
9620
10050
|
/**
|
|
9621
10051
|
*
|
|
9622
10052
|
* @export
|
|
@@ -14352,12 +14782,8 @@ export interface JsonPatchOperationBeta {
|
|
|
14352
14782
|
'value'?: UpdateMultiHostSourcesRequestInnerValueBeta;
|
|
14353
14783
|
}
|
|
14354
14784
|
export declare const JsonPatchOperationBetaOpBeta: {
|
|
14355
|
-
readonly Add: "add";
|
|
14356
14785
|
readonly Remove: "remove";
|
|
14357
14786
|
readonly Replace: "replace";
|
|
14358
|
-
readonly Move: "move";
|
|
14359
|
-
readonly Copy: "copy";
|
|
14360
|
-
readonly Test: "test";
|
|
14361
14787
|
};
|
|
14362
14788
|
export type JsonPatchOperationBetaOpBeta = typeof JsonPatchOperationBetaOpBeta[keyof typeof JsonPatchOperationBetaOpBeta];
|
|
14363
14789
|
/**
|
|
@@ -16187,7 +16613,73 @@ export interface ManagedClusterBeta {
|
|
|
16187
16613
|
* @memberof ManagedClusterBeta
|
|
16188
16614
|
*/
|
|
16189
16615
|
'updatedAt'?: string | null;
|
|
16616
|
+
/**
|
|
16617
|
+
* The date/time this cluster was notified for the last release
|
|
16618
|
+
* @type {string}
|
|
16619
|
+
* @memberof ManagedClusterBeta
|
|
16620
|
+
*/
|
|
16621
|
+
'lastReleaseNotifiedAt'?: string | null;
|
|
16622
|
+
/**
|
|
16623
|
+
*
|
|
16624
|
+
* @type {ManagedClusterUpdatePreferencesBeta}
|
|
16625
|
+
* @memberof ManagedClusterBeta
|
|
16626
|
+
*/
|
|
16627
|
+
'updatePreferences'?: ManagedClusterUpdatePreferencesBeta;
|
|
16628
|
+
/**
|
|
16629
|
+
* The current installed release on the Managed cluster
|
|
16630
|
+
* @type {string}
|
|
16631
|
+
* @memberof ManagedClusterBeta
|
|
16632
|
+
*/
|
|
16633
|
+
'currentInstalledReleaseVersion'?: string | null;
|
|
16634
|
+
/**
|
|
16635
|
+
* New available updates for the Managed cluster
|
|
16636
|
+
* @type {string}
|
|
16637
|
+
* @memberof ManagedClusterBeta
|
|
16638
|
+
*/
|
|
16639
|
+
'updatePackage'?: string | null;
|
|
16640
|
+
/**
|
|
16641
|
+
* The time at which out of date notification was sent for the Managed cluster
|
|
16642
|
+
* @type {string}
|
|
16643
|
+
* @memberof ManagedClusterBeta
|
|
16644
|
+
*/
|
|
16645
|
+
'isOutOfDateNotifiedAt'?: string | null;
|
|
16646
|
+
/**
|
|
16647
|
+
* The consolidated Health Status for the Managed cluster
|
|
16648
|
+
* @type {string}
|
|
16649
|
+
* @memberof ManagedClusterBeta
|
|
16650
|
+
*/
|
|
16651
|
+
'consolidatedHealthIndicatorsStatus'?: ManagedClusterBetaConsolidatedHealthIndicatorsStatusBeta | null;
|
|
16652
|
+
/**
|
|
16653
|
+
*
|
|
16654
|
+
* @type {ManagedClusterEncryptionConfigBeta}
|
|
16655
|
+
* @memberof ManagedClusterBeta
|
|
16656
|
+
*/
|
|
16657
|
+
'encryptionConfiguration'?: ManagedClusterEncryptionConfigBeta;
|
|
16190
16658
|
}
|
|
16659
|
+
export declare const ManagedClusterBetaConsolidatedHealthIndicatorsStatusBeta: {
|
|
16660
|
+
readonly Normal: "NORMAL";
|
|
16661
|
+
readonly Warning: "WARNING";
|
|
16662
|
+
readonly Error: "ERROR";
|
|
16663
|
+
};
|
|
16664
|
+
export type ManagedClusterBetaConsolidatedHealthIndicatorsStatusBeta = typeof ManagedClusterBetaConsolidatedHealthIndicatorsStatusBeta[keyof typeof ManagedClusterBetaConsolidatedHealthIndicatorsStatusBeta];
|
|
16665
|
+
/**
|
|
16666
|
+
* Defines the encryption settings for a managed cluster, including the format used for storing and processing encrypted data.
|
|
16667
|
+
* @export
|
|
16668
|
+
* @interface ManagedClusterEncryptionConfigBeta
|
|
16669
|
+
*/
|
|
16670
|
+
export interface ManagedClusterEncryptionConfigBeta {
|
|
16671
|
+
/**
|
|
16672
|
+
* Specifies the format used for encrypted data, such as secrets. The format determines how the encrypted data is structured and processed.
|
|
16673
|
+
* @type {string}
|
|
16674
|
+
* @memberof ManagedClusterEncryptionConfigBeta
|
|
16675
|
+
*/
|
|
16676
|
+
'format'?: ManagedClusterEncryptionConfigBetaFormatBeta;
|
|
16677
|
+
}
|
|
16678
|
+
export declare const ManagedClusterEncryptionConfigBetaFormatBeta: {
|
|
16679
|
+
readonly V2: "V2";
|
|
16680
|
+
readonly V3: "V3";
|
|
16681
|
+
};
|
|
16682
|
+
export type ManagedClusterEncryptionConfigBetaFormatBeta = typeof ManagedClusterEncryptionConfigBetaFormatBeta[keyof typeof ManagedClusterEncryptionConfigBetaFormatBeta];
|
|
16191
16683
|
/**
|
|
16192
16684
|
* Managed Cluster key pair for Cluster
|
|
16193
16685
|
* @export
|
|
@@ -16252,15 +16744,53 @@ export interface ManagedClusterRedisBeta {
|
|
|
16252
16744
|
'redisPort'?: number;
|
|
16253
16745
|
}
|
|
16254
16746
|
/**
|
|
16255
|
-
* The Type of Cluster
|
|
16747
|
+
* The Type of Cluster: * `idn` - IDN VA type * `iai` - IAI harvester VA * `spConnectCluster` - Saas 2.0 connector cluster (this should be one per org) * `sqsCluster` - This should be unused * `das-rc` - Data Access Security Resources Collector * `das-pc` - Data Access Security Permissions Collector * `das-dc` - Data Access Security Data Classification Collector * `pag` - Privilege Action Gateway VA * `das-am` - Data Access Security Activity Monitor * `standard` - Standard Cluster type for running multiple products
|
|
16256
16748
|
* @export
|
|
16257
16749
|
* @enum {string}
|
|
16258
16750
|
*/
|
|
16259
16751
|
export declare const ManagedClusterTypesBeta: {
|
|
16260
16752
|
readonly Idn: "idn";
|
|
16261
16753
|
readonly Iai: "iai";
|
|
16754
|
+
readonly SpConnectCluster: "spConnectCluster";
|
|
16755
|
+
readonly SqsCluster: "sqsCluster";
|
|
16756
|
+
readonly DasRc: "das-rc";
|
|
16757
|
+
readonly DasPc: "das-pc";
|
|
16758
|
+
readonly DasDc: "das-dc";
|
|
16759
|
+
readonly Pag: "pag";
|
|
16760
|
+
readonly DasAm: "das-am";
|
|
16761
|
+
readonly Standard: "standard";
|
|
16262
16762
|
};
|
|
16263
16763
|
export type ManagedClusterTypesBeta = typeof ManagedClusterTypesBeta[keyof typeof ManagedClusterTypesBeta];
|
|
16764
|
+
/**
|
|
16765
|
+
* The preference for applying updates for the cluster
|
|
16766
|
+
* @export
|
|
16767
|
+
* @interface ManagedClusterUpdatePreferencesBeta
|
|
16768
|
+
*/
|
|
16769
|
+
export interface ManagedClusterUpdatePreferencesBeta {
|
|
16770
|
+
/**
|
|
16771
|
+
* The processGroups for updatePreferences
|
|
16772
|
+
* @type {string}
|
|
16773
|
+
* @memberof ManagedClusterUpdatePreferencesBeta
|
|
16774
|
+
*/
|
|
16775
|
+
'processGroups'?: string | null;
|
|
16776
|
+
/**
|
|
16777
|
+
* The current updateState for the cluster
|
|
16778
|
+
* @type {string}
|
|
16779
|
+
* @memberof ManagedClusterUpdatePreferencesBeta
|
|
16780
|
+
*/
|
|
16781
|
+
'updateState'?: ManagedClusterUpdatePreferencesBetaUpdateStateBeta | null;
|
|
16782
|
+
/**
|
|
16783
|
+
* The mail id to which new releases will be notified
|
|
16784
|
+
* @type {string}
|
|
16785
|
+
* @memberof ManagedClusterUpdatePreferencesBeta
|
|
16786
|
+
*/
|
|
16787
|
+
'notificationEmail'?: string | null;
|
|
16788
|
+
}
|
|
16789
|
+
export declare const ManagedClusterUpdatePreferencesBetaUpdateStateBeta: {
|
|
16790
|
+
readonly Auto: "AUTO";
|
|
16791
|
+
readonly Disabled: "DISABLED";
|
|
16792
|
+
};
|
|
16793
|
+
export type ManagedClusterUpdatePreferencesBetaUpdateStateBeta = typeof ManagedClusterUpdatePreferencesBetaUpdateStateBeta[keyof typeof ManagedClusterUpdatePreferencesBetaUpdateStateBeta];
|
|
16264
16794
|
/**
|
|
16265
16795
|
*
|
|
16266
16796
|
* @export
|
|
@@ -16312,6 +16842,49 @@ export interface ManualDiscoverApplicationsTemplateBeta {
|
|
|
16312
16842
|
*/
|
|
16313
16843
|
'description'?: string;
|
|
16314
16844
|
}
|
|
16845
|
+
/**
|
|
16846
|
+
*
|
|
16847
|
+
* @export
|
|
16848
|
+
* @interface ManualWorkItemDetails1Beta
|
|
16849
|
+
*/
|
|
16850
|
+
export interface ManualWorkItemDetails1Beta {
|
|
16851
|
+
/**
|
|
16852
|
+
* True if the request for this item was forwarded from one owner to another.
|
|
16853
|
+
* @type {boolean}
|
|
16854
|
+
* @memberof ManualWorkItemDetails1Beta
|
|
16855
|
+
*/
|
|
16856
|
+
'forwarded'?: boolean;
|
|
16857
|
+
/**
|
|
16858
|
+
*
|
|
16859
|
+
* @type {ManualWorkItemDetailsOriginalOwnerBeta}
|
|
16860
|
+
* @memberof ManualWorkItemDetails1Beta
|
|
16861
|
+
*/
|
|
16862
|
+
'originalOwner'?: ManualWorkItemDetailsOriginalOwnerBeta | null;
|
|
16863
|
+
/**
|
|
16864
|
+
*
|
|
16865
|
+
* @type {ManualWorkItemDetailsCurrentOwnerBeta}
|
|
16866
|
+
* @memberof ManualWorkItemDetails1Beta
|
|
16867
|
+
*/
|
|
16868
|
+
'currentOwner'?: ManualWorkItemDetailsCurrentOwnerBeta | null;
|
|
16869
|
+
/**
|
|
16870
|
+
* Time at which item was modified.
|
|
16871
|
+
* @type {string}
|
|
16872
|
+
* @memberof ManualWorkItemDetails1Beta
|
|
16873
|
+
*/
|
|
16874
|
+
'modified'?: string;
|
|
16875
|
+
/**
|
|
16876
|
+
*
|
|
16877
|
+
* @type {ManualWorkItemStateBeta}
|
|
16878
|
+
* @memberof ManualWorkItemDetails1Beta
|
|
16879
|
+
*/
|
|
16880
|
+
'status'?: ManualWorkItemStateBeta;
|
|
16881
|
+
/**
|
|
16882
|
+
* The history of approval forward action.
|
|
16883
|
+
* @type {Array<ApprovalForwardHistory1Beta>}
|
|
16884
|
+
* @memberof ManualWorkItemDetails1Beta
|
|
16885
|
+
*/
|
|
16886
|
+
'forwardHistory'?: Array<ApprovalForwardHistory1Beta> | null;
|
|
16887
|
+
}
|
|
16315
16888
|
/**
|
|
16316
16889
|
*
|
|
16317
16890
|
* @export
|
|
@@ -20017,33 +20590,33 @@ export type PatOwnerBetaTypeBeta = typeof PatOwnerBetaTypeBeta[keyof typeof PatO
|
|
|
20017
20590
|
/**
|
|
20018
20591
|
*
|
|
20019
20592
|
* @export
|
|
20020
|
-
* @interface
|
|
20593
|
+
* @interface PatchRoleMiningPotentialRoleRequestInnerBeta
|
|
20021
20594
|
*/
|
|
20022
|
-
export interface
|
|
20595
|
+
export interface PatchRoleMiningPotentialRoleRequestInnerBeta {
|
|
20023
20596
|
/**
|
|
20024
20597
|
* The operation to be performed
|
|
20025
20598
|
* @type {string}
|
|
20026
|
-
* @memberof
|
|
20599
|
+
* @memberof PatchRoleMiningPotentialRoleRequestInnerBeta
|
|
20027
20600
|
*/
|
|
20028
|
-
'op'?:
|
|
20601
|
+
'op'?: PatchRoleMiningPotentialRoleRequestInnerBetaOpBeta;
|
|
20029
20602
|
/**
|
|
20030
20603
|
* A string JSON Pointer representing the target path to an element to be affected by the operation
|
|
20031
20604
|
* @type {string}
|
|
20032
|
-
* @memberof
|
|
20605
|
+
* @memberof PatchRoleMiningPotentialRoleRequestInnerBeta
|
|
20033
20606
|
*/
|
|
20034
20607
|
'path': string;
|
|
20035
20608
|
/**
|
|
20036
20609
|
*
|
|
20037
20610
|
* @type {UpdateMultiHostSourcesRequestInnerValueBeta}
|
|
20038
|
-
* @memberof
|
|
20611
|
+
* @memberof PatchRoleMiningPotentialRoleRequestInnerBeta
|
|
20039
20612
|
*/
|
|
20040
20613
|
'value'?: UpdateMultiHostSourcesRequestInnerValueBeta;
|
|
20041
20614
|
}
|
|
20042
|
-
export declare const
|
|
20615
|
+
export declare const PatchRoleMiningPotentialRoleRequestInnerBetaOpBeta: {
|
|
20043
20616
|
readonly Remove: "remove";
|
|
20044
20617
|
readonly Replace: "replace";
|
|
20045
20618
|
};
|
|
20046
|
-
export type
|
|
20619
|
+
export type PatchRoleMiningPotentialRoleRequestInnerBetaOpBeta = typeof PatchRoleMiningPotentialRoleRequestInnerBetaOpBeta[keyof typeof PatchRoleMiningPotentialRoleRequestInnerBetaOpBeta];
|
|
20047
20620
|
/**
|
|
20048
20621
|
*
|
|
20049
20622
|
* @export
|
|
@@ -20204,10 +20777,10 @@ export interface PendingApprovalBeta {
|
|
|
20204
20777
|
'currentRemoveDate'?: string;
|
|
20205
20778
|
/**
|
|
20206
20779
|
*
|
|
20207
|
-
* @type {
|
|
20780
|
+
* @type {SodViolationContextCheckCompleted2Beta}
|
|
20208
20781
|
* @memberof PendingApprovalBeta
|
|
20209
20782
|
*/
|
|
20210
|
-
'sodViolationContext'?:
|
|
20783
|
+
'sodViolationContext'?: SodViolationContextCheckCompleted2Beta | null;
|
|
20211
20784
|
/**
|
|
20212
20785
|
* Arbitrary key-value pairs, if any were included in the corresponding access request item
|
|
20213
20786
|
* @type {{ [key: string]: string; }}
|
|
@@ -20228,7 +20801,39 @@ export interface PendingApprovalBeta {
|
|
|
20228
20801
|
* @memberof PendingApprovalBeta
|
|
20229
20802
|
*/
|
|
20230
20803
|
'privilegeLevel'?: string | null;
|
|
20804
|
+
/**
|
|
20805
|
+
*
|
|
20806
|
+
* @type {PendingApprovalMaxPermittedAccessDurationBeta}
|
|
20807
|
+
* @memberof PendingApprovalBeta
|
|
20808
|
+
*/
|
|
20809
|
+
'maxPermittedAccessDuration'?: PendingApprovalMaxPermittedAccessDurationBeta | null;
|
|
20231
20810
|
}
|
|
20811
|
+
/**
|
|
20812
|
+
* The maximum duration for which the access is permitted.
|
|
20813
|
+
* @export
|
|
20814
|
+
* @interface PendingApprovalMaxPermittedAccessDurationBeta
|
|
20815
|
+
*/
|
|
20816
|
+
export interface PendingApprovalMaxPermittedAccessDurationBeta {
|
|
20817
|
+
/**
|
|
20818
|
+
* The numeric value of the duration.
|
|
20819
|
+
* @type {number}
|
|
20820
|
+
* @memberof PendingApprovalMaxPermittedAccessDurationBeta
|
|
20821
|
+
*/
|
|
20822
|
+
'value'?: number;
|
|
20823
|
+
/**
|
|
20824
|
+
* The time unit for the duration.
|
|
20825
|
+
* @type {string}
|
|
20826
|
+
* @memberof PendingApprovalMaxPermittedAccessDurationBeta
|
|
20827
|
+
*/
|
|
20828
|
+
'timeUnit'?: PendingApprovalMaxPermittedAccessDurationBetaTimeUnitBeta;
|
|
20829
|
+
}
|
|
20830
|
+
export declare const PendingApprovalMaxPermittedAccessDurationBetaTimeUnitBeta: {
|
|
20831
|
+
readonly Hours: "HOURS";
|
|
20832
|
+
readonly Days: "DAYS";
|
|
20833
|
+
readonly Weeks: "WEEKS";
|
|
20834
|
+
readonly Months: "MONTHS";
|
|
20835
|
+
};
|
|
20836
|
+
export type PendingApprovalMaxPermittedAccessDurationBetaTimeUnitBeta = typeof PendingApprovalMaxPermittedAccessDurationBetaTimeUnitBeta[keyof typeof PendingApprovalMaxPermittedAccessDurationBetaTimeUnitBeta];
|
|
20232
20837
|
/**
|
|
20233
20838
|
* Simplified DTO for the Permission objects stored in SailPoint\'s database. The data is aggregated from customer systems and is free-form, so its appearance can vary largely between different clients/customers.
|
|
20234
20839
|
* @export
|
|
@@ -21743,6 +22348,18 @@ export interface RequestabilityBeta {
|
|
|
21743
22348
|
* @memberof RequestabilityBeta
|
|
21744
22349
|
*/
|
|
21745
22350
|
'reauthorizationRequired'?: boolean | null;
|
|
22351
|
+
/**
|
|
22352
|
+
* Indicates whether the requester of the containing object must provide access end date.
|
|
22353
|
+
* @type {boolean}
|
|
22354
|
+
* @memberof RequestabilityBeta
|
|
22355
|
+
*/
|
|
22356
|
+
'requireEndDate'?: boolean | null;
|
|
22357
|
+
/**
|
|
22358
|
+
*
|
|
22359
|
+
* @type {AccessDurationBeta}
|
|
22360
|
+
* @memberof RequestabilityBeta
|
|
22361
|
+
*/
|
|
22362
|
+
'maxPermittedAccessDuration'?: AccessDurationBeta | null;
|
|
21746
22363
|
/**
|
|
21747
22364
|
* List describing the steps involved in approving the request.
|
|
21748
22365
|
* @type {Array<AccessProfileApprovalSchemeBeta>}
|
|
@@ -23686,12 +24303,29 @@ export interface RoleMiningIdentityDistributionBeta {
|
|
|
23686
24303
|
'attributeName'?: string;
|
|
23687
24304
|
/**
|
|
23688
24305
|
*
|
|
23689
|
-
* @type {Array<
|
|
24306
|
+
* @type {Array<RoleMiningIdentityDistributionDistributionInnerBeta>}
|
|
23690
24307
|
* @memberof RoleMiningIdentityDistributionBeta
|
|
23691
24308
|
*/
|
|
23692
|
-
'distribution'?: Array<
|
|
23693
|
-
|
|
23694
|
-
|
|
24309
|
+
'distribution'?: Array<RoleMiningIdentityDistributionDistributionInnerBeta>;
|
|
24310
|
+
}
|
|
24311
|
+
/**
|
|
24312
|
+
*
|
|
24313
|
+
* @export
|
|
24314
|
+
* @interface RoleMiningIdentityDistributionDistributionInnerBeta
|
|
24315
|
+
*/
|
|
24316
|
+
export interface RoleMiningIdentityDistributionDistributionInnerBeta {
|
|
24317
|
+
/**
|
|
24318
|
+
* The attribute value that identities are grouped by
|
|
24319
|
+
* @type {string}
|
|
24320
|
+
* @memberof RoleMiningIdentityDistributionDistributionInnerBeta
|
|
24321
|
+
*/
|
|
24322
|
+
'attributeValue'?: string;
|
|
24323
|
+
/**
|
|
24324
|
+
* The number of identities that have this attribute value
|
|
24325
|
+
* @type {number}
|
|
24326
|
+
* @memberof RoleMiningIdentityDistributionDistributionInnerBeta
|
|
24327
|
+
*/
|
|
24328
|
+
'count'?: number;
|
|
23695
24329
|
}
|
|
23696
24330
|
/**
|
|
23697
24331
|
*
|
|
@@ -26499,6 +27133,37 @@ export interface SodExemptCriteria1Beta {
|
|
|
26499
27133
|
*/
|
|
26500
27134
|
'name'?: string;
|
|
26501
27135
|
}
|
|
27136
|
+
/**
|
|
27137
|
+
* Details of the Entitlement criteria
|
|
27138
|
+
* @export
|
|
27139
|
+
* @interface SodExemptCriteria2Beta
|
|
27140
|
+
*/
|
|
27141
|
+
export interface SodExemptCriteria2Beta {
|
|
27142
|
+
/**
|
|
27143
|
+
* If the entitlement already belonged to the user or not.
|
|
27144
|
+
* @type {boolean}
|
|
27145
|
+
* @memberof SodExemptCriteria2Beta
|
|
27146
|
+
*/
|
|
27147
|
+
'existing'?: boolean;
|
|
27148
|
+
/**
|
|
27149
|
+
*
|
|
27150
|
+
* @type {DtoTypeBeta}
|
|
27151
|
+
* @memberof SodExemptCriteria2Beta
|
|
27152
|
+
*/
|
|
27153
|
+
'type'?: DtoTypeBeta;
|
|
27154
|
+
/**
|
|
27155
|
+
* Entitlement ID
|
|
27156
|
+
* @type {string}
|
|
27157
|
+
* @memberof SodExemptCriteria2Beta
|
|
27158
|
+
*/
|
|
27159
|
+
'id'?: string;
|
|
27160
|
+
/**
|
|
27161
|
+
* Entitlement name
|
|
27162
|
+
* @type {string}
|
|
27163
|
+
* @memberof SodExemptCriteria2Beta
|
|
27164
|
+
*/
|
|
27165
|
+
'name'?: string;
|
|
27166
|
+
}
|
|
26502
27167
|
/**
|
|
26503
27168
|
* Details of the Entitlement criteria
|
|
26504
27169
|
* @export
|
|
@@ -26889,10 +27554,10 @@ export type SodReportResultDtoBetaTypeBeta = typeof SodReportResultDtoBetaTypeBe
|
|
|
26889
27554
|
export interface SodViolationCheckResult1Beta {
|
|
26890
27555
|
/**
|
|
26891
27556
|
*
|
|
26892
|
-
* @type {
|
|
27557
|
+
* @type {ErrorMessageDto1Beta}
|
|
26893
27558
|
* @memberof SodViolationCheckResult1Beta
|
|
26894
27559
|
*/
|
|
26895
|
-
'message'?:
|
|
27560
|
+
'message'?: ErrorMessageDto1Beta;
|
|
26896
27561
|
/**
|
|
26897
27562
|
* Arbitrary key-value pairs. They will never be processed by the IdentityNow system but will be returned on completion of the violation check.
|
|
26898
27563
|
* @type {{ [key: string]: string; }}
|
|
@@ -26900,18 +27565,51 @@ export interface SodViolationCheckResult1Beta {
|
|
|
26900
27565
|
*/
|
|
26901
27566
|
'clientMetadata'?: {
|
|
26902
27567
|
[key: string]: string;
|
|
26903
|
-
};
|
|
27568
|
+
} | null;
|
|
26904
27569
|
/**
|
|
26905
27570
|
*
|
|
26906
27571
|
* @type {Array<SodViolationContext1Beta>}
|
|
26907
27572
|
* @memberof SodViolationCheckResult1Beta
|
|
26908
27573
|
*/
|
|
26909
|
-
'violationContexts'?: Array<SodViolationContext1Beta
|
|
27574
|
+
'violationContexts'?: Array<SodViolationContext1Beta> | null;
|
|
26910
27575
|
/**
|
|
26911
|
-
* A list of the
|
|
27576
|
+
* A list of the SOD policies that were violated.
|
|
26912
27577
|
* @type {Array<SodPolicyDto1Beta>}
|
|
26913
27578
|
* @memberof SodViolationCheckResult1Beta
|
|
26914
27579
|
*/
|
|
27580
|
+
'violatedPolicies'?: Array<SodPolicyDto1Beta> | null;
|
|
27581
|
+
}
|
|
27582
|
+
/**
|
|
27583
|
+
* The inner object representing the completed SOD Violation check
|
|
27584
|
+
* @export
|
|
27585
|
+
* @interface SodViolationCheckResult2Beta
|
|
27586
|
+
*/
|
|
27587
|
+
export interface SodViolationCheckResult2Beta {
|
|
27588
|
+
/**
|
|
27589
|
+
*
|
|
27590
|
+
* @type {ErrorMessageDtoBeta}
|
|
27591
|
+
* @memberof SodViolationCheckResult2Beta
|
|
27592
|
+
*/
|
|
27593
|
+
'message'?: ErrorMessageDtoBeta;
|
|
27594
|
+
/**
|
|
27595
|
+
* Arbitrary key-value pairs. They will never be processed by the IdentityNow system but will be returned on completion of the violation check.
|
|
27596
|
+
* @type {{ [key: string]: string; }}
|
|
27597
|
+
* @memberof SodViolationCheckResult2Beta
|
|
27598
|
+
*/
|
|
27599
|
+
'clientMetadata'?: {
|
|
27600
|
+
[key: string]: string;
|
|
27601
|
+
};
|
|
27602
|
+
/**
|
|
27603
|
+
*
|
|
27604
|
+
* @type {Array<SodViolationContext2Beta>}
|
|
27605
|
+
* @memberof SodViolationCheckResult2Beta
|
|
27606
|
+
*/
|
|
27607
|
+
'violationContexts'?: Array<SodViolationContext2Beta>;
|
|
27608
|
+
/**
|
|
27609
|
+
* A list of the Policies that were violated.
|
|
27610
|
+
* @type {Array<SodPolicyDto1Beta>}
|
|
27611
|
+
* @memberof SodViolationCheckResult2Beta
|
|
27612
|
+
*/
|
|
26915
27613
|
'violatedPolicies'?: Array<SodPolicyDto1Beta>;
|
|
26916
27614
|
}
|
|
26917
27615
|
/**
|
|
@@ -26948,7 +27646,7 @@ export interface SodViolationCheckResultBeta {
|
|
|
26948
27646
|
'violatedPolicies'?: Array<SodPolicyDto1Beta> | null;
|
|
26949
27647
|
}
|
|
26950
27648
|
/**
|
|
26951
|
-
* The contextual information of the violated criteria
|
|
27649
|
+
* The contextual information of the violated criteria
|
|
26952
27650
|
* @export
|
|
26953
27651
|
* @interface SodViolationContext1Beta
|
|
26954
27652
|
*/
|
|
@@ -26998,6 +27696,57 @@ export interface SodViolationContext1ConflictingAccessCriteriaLeftCriteriaBeta {
|
|
|
26998
27696
|
*/
|
|
26999
27697
|
'criteriaList'?: Array<SodExemptCriteria1Beta>;
|
|
27000
27698
|
}
|
|
27699
|
+
/**
|
|
27700
|
+
* The contextual information of the violated criteria.
|
|
27701
|
+
* @export
|
|
27702
|
+
* @interface SodViolationContext2Beta
|
|
27703
|
+
*/
|
|
27704
|
+
export interface SodViolationContext2Beta {
|
|
27705
|
+
/**
|
|
27706
|
+
*
|
|
27707
|
+
* @type {SodPolicyDto1Beta}
|
|
27708
|
+
* @memberof SodViolationContext2Beta
|
|
27709
|
+
*/
|
|
27710
|
+
'policy'?: SodPolicyDto1Beta;
|
|
27711
|
+
/**
|
|
27712
|
+
*
|
|
27713
|
+
* @type {SodViolationContext2ConflictingAccessCriteriaBeta}
|
|
27714
|
+
* @memberof SodViolationContext2Beta
|
|
27715
|
+
*/
|
|
27716
|
+
'conflictingAccessCriteria'?: SodViolationContext2ConflictingAccessCriteriaBeta;
|
|
27717
|
+
}
|
|
27718
|
+
/**
|
|
27719
|
+
* The object which contains the left and right hand side of the entitlements that got violated according to the policy.
|
|
27720
|
+
* @export
|
|
27721
|
+
* @interface SodViolationContext2ConflictingAccessCriteriaBeta
|
|
27722
|
+
*/
|
|
27723
|
+
export interface SodViolationContext2ConflictingAccessCriteriaBeta {
|
|
27724
|
+
/**
|
|
27725
|
+
*
|
|
27726
|
+
* @type {SodViolationContext2ConflictingAccessCriteriaLeftCriteriaBeta}
|
|
27727
|
+
* @memberof SodViolationContext2ConflictingAccessCriteriaBeta
|
|
27728
|
+
*/
|
|
27729
|
+
'leftCriteria'?: SodViolationContext2ConflictingAccessCriteriaLeftCriteriaBeta;
|
|
27730
|
+
/**
|
|
27731
|
+
*
|
|
27732
|
+
* @type {SodViolationContext2ConflictingAccessCriteriaLeftCriteriaBeta}
|
|
27733
|
+
* @memberof SodViolationContext2ConflictingAccessCriteriaBeta
|
|
27734
|
+
*/
|
|
27735
|
+
'rightCriteria'?: SodViolationContext2ConflictingAccessCriteriaLeftCriteriaBeta;
|
|
27736
|
+
}
|
|
27737
|
+
/**
|
|
27738
|
+
*
|
|
27739
|
+
* @export
|
|
27740
|
+
* @interface SodViolationContext2ConflictingAccessCriteriaLeftCriteriaBeta
|
|
27741
|
+
*/
|
|
27742
|
+
export interface SodViolationContext2ConflictingAccessCriteriaLeftCriteriaBeta {
|
|
27743
|
+
/**
|
|
27744
|
+
*
|
|
27745
|
+
* @type {Array<SodExemptCriteria2Beta>}
|
|
27746
|
+
* @memberof SodViolationContext2ConflictingAccessCriteriaLeftCriteriaBeta
|
|
27747
|
+
*/
|
|
27748
|
+
'criteriaList'?: Array<SodExemptCriteria2Beta>;
|
|
27749
|
+
}
|
|
27001
27750
|
/**
|
|
27002
27751
|
* The contextual information of the violated criteria
|
|
27003
27752
|
* @export
|
|
@@ -27028,13 +27777,13 @@ export interface SodViolationContextCheckCompleted1Beta {
|
|
|
27028
27777
|
* @type {string}
|
|
27029
27778
|
* @memberof SodViolationContextCheckCompleted1Beta
|
|
27030
27779
|
*/
|
|
27031
|
-
'state'?: SodViolationContextCheckCompleted1BetaStateBeta;
|
|
27780
|
+
'state'?: SodViolationContextCheckCompleted1BetaStateBeta | null;
|
|
27032
27781
|
/**
|
|
27033
27782
|
* The id of the Violation check event
|
|
27034
27783
|
* @type {string}
|
|
27035
27784
|
* @memberof SodViolationContextCheckCompleted1Beta
|
|
27036
27785
|
*/
|
|
27037
|
-
'uuid'?: string;
|
|
27786
|
+
'uuid'?: string | null;
|
|
27038
27787
|
/**
|
|
27039
27788
|
*
|
|
27040
27789
|
* @type {SodViolationCheckResult1Beta}
|
|
@@ -27047,6 +27796,36 @@ export declare const SodViolationContextCheckCompleted1BetaStateBeta: {
|
|
|
27047
27796
|
readonly Error: "ERROR";
|
|
27048
27797
|
};
|
|
27049
27798
|
export type SodViolationContextCheckCompleted1BetaStateBeta = typeof SodViolationContextCheckCompleted1BetaStateBeta[keyof typeof SodViolationContextCheckCompleted1BetaStateBeta];
|
|
27799
|
+
/**
|
|
27800
|
+
* An object referencing a completed SOD violation check
|
|
27801
|
+
* @export
|
|
27802
|
+
* @interface SodViolationContextCheckCompleted2Beta
|
|
27803
|
+
*/
|
|
27804
|
+
export interface SodViolationContextCheckCompleted2Beta {
|
|
27805
|
+
/**
|
|
27806
|
+
* The status of SOD violation check
|
|
27807
|
+
* @type {string}
|
|
27808
|
+
* @memberof SodViolationContextCheckCompleted2Beta
|
|
27809
|
+
*/
|
|
27810
|
+
'state'?: SodViolationContextCheckCompleted2BetaStateBeta;
|
|
27811
|
+
/**
|
|
27812
|
+
* The id of the Violation check event
|
|
27813
|
+
* @type {string}
|
|
27814
|
+
* @memberof SodViolationContextCheckCompleted2Beta
|
|
27815
|
+
*/
|
|
27816
|
+
'uuid'?: string;
|
|
27817
|
+
/**
|
|
27818
|
+
*
|
|
27819
|
+
* @type {SodViolationCheckResult2Beta}
|
|
27820
|
+
* @memberof SodViolationContextCheckCompleted2Beta
|
|
27821
|
+
*/
|
|
27822
|
+
'violationCheckResult'?: SodViolationCheckResult2Beta;
|
|
27823
|
+
}
|
|
27824
|
+
export declare const SodViolationContextCheckCompleted2BetaStateBeta: {
|
|
27825
|
+
readonly Success: "SUCCESS";
|
|
27826
|
+
readonly Error: "ERROR";
|
|
27827
|
+
};
|
|
27828
|
+
export type SodViolationContextCheckCompleted2BetaStateBeta = typeof SodViolationContextCheckCompleted2BetaStateBeta[keyof typeof SodViolationContextCheckCompleted2BetaStateBeta];
|
|
27050
27829
|
/**
|
|
27051
27830
|
* An object referencing a completed SOD violation check
|
|
27052
27831
|
* @export
|
|
@@ -27379,7 +28158,7 @@ export interface SourceAppBeta {
|
|
|
27379
28158
|
*/
|
|
27380
28159
|
'enabled'?: boolean;
|
|
27381
28160
|
/**
|
|
27382
|
-
* True if the
|
|
28161
|
+
* True if the app allows access request
|
|
27383
28162
|
* @type {boolean}
|
|
27384
28163
|
* @memberof SourceAppBeta
|
|
27385
28164
|
*/
|
|
@@ -27397,7 +28176,7 @@ export interface SourceAppBeta {
|
|
|
27397
28176
|
*/
|
|
27398
28177
|
'matchAllAccounts'?: boolean;
|
|
27399
28178
|
/**
|
|
27400
|
-
* True if the
|
|
28179
|
+
* True if the app is visible in the request center
|
|
27401
28180
|
* @type {boolean}
|
|
27402
28181
|
* @memberof SourceAppBeta
|
|
27403
28182
|
*/
|
|
@@ -27533,7 +28312,7 @@ export interface SourceAppPatchDtoBeta {
|
|
|
27533
28312
|
*/
|
|
27534
28313
|
'enabled'?: boolean;
|
|
27535
28314
|
/**
|
|
27536
|
-
* True if the
|
|
28315
|
+
* True if the app allows access request
|
|
27537
28316
|
* @type {boolean}
|
|
27538
28317
|
* @memberof SourceAppPatchDtoBeta
|
|
27539
28318
|
*/
|
|
@@ -27551,7 +28330,7 @@ export interface SourceAppPatchDtoBeta {
|
|
|
27551
28330
|
*/
|
|
27552
28331
|
'matchAllAccounts'?: boolean;
|
|
27553
28332
|
/**
|
|
27554
|
-
* True if the
|
|
28333
|
+
* True if the app is visible in the request center
|
|
27555
28334
|
* @type {boolean}
|
|
27556
28335
|
* @memberof SourceAppPatchDtoBeta
|
|
27557
28336
|
*/
|
|
@@ -31011,13 +31790,13 @@ export interface UserAppBeta {
|
|
|
31011
31790
|
*/
|
|
31012
31791
|
'useForPasswordManagement'?: boolean;
|
|
31013
31792
|
/**
|
|
31014
|
-
* True if the
|
|
31793
|
+
* True if the app allows access request
|
|
31015
31794
|
* @type {boolean}
|
|
31016
31795
|
* @memberof UserAppBeta
|
|
31017
31796
|
*/
|
|
31018
31797
|
'provisionRequestEnabled'?: boolean;
|
|
31019
31798
|
/**
|
|
31020
|
-
* True if the
|
|
31799
|
+
* True if the app is visible in the request center
|
|
31021
31800
|
* @type {boolean}
|
|
31022
31801
|
* @memberof UserAppBeta
|
|
31023
31802
|
*/
|
|
@@ -34082,6 +34861,24 @@ export declare const AccessRequestsBetaApiAxiosParamCreator: (configuration?: Co
|
|
|
34082
34861
|
* @throws {RequiredError}
|
|
34083
34862
|
*/
|
|
34084
34863
|
listAccessRequestStatus: (requestedFor?: string, requestedBy?: string, regardingIdentity?: string, assignedTo?: string, count?: boolean, limit?: number, offset?: number, filters?: string, sorters?: string, requestState?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
34864
|
+
/**
|
|
34865
|
+
* Use this API to get access request statuses of all the access requests in the org based on the specified query parameters. Any user with user level ORG_ADMIN or scope idn:access-request-administration:read can access this endpoint to get the access request statuses
|
|
34866
|
+
* @summary Access request status for administrators
|
|
34867
|
+
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
34868
|
+
* @param {string} [requestedFor] Filter the results by the identity the requests were made for. *me* indicates the current user. Mutually exclusive with *regarding-identity*.
|
|
34869
|
+
* @param {string} [requestedBy] Filter the results by the identity who made the requests. *me* indicates the current user. Mutually exclusive with *regarding-identity*.
|
|
34870
|
+
* @param {string} [regardingIdentity] Filter the results by the specified identity who is either the requester or target of the requests. *me* indicates the current user. Mutually exclusive with *requested-for* and *requested-by*.
|
|
34871
|
+
* @param {string} [assignedTo] Filter the results by the specified identity who is the owner of the Identity Request Work Item. *me* indicates the current user.
|
|
34872
|
+
* @param {boolean} [count] If this is true, the *X-Total-Count* response header populates with the number of results that would be returned if limit and offset were ignored.
|
|
34873
|
+
* @param {number} [limit] Max number of results to return.
|
|
34874
|
+
* @param {number} [offset] Offset into the full result set. Usually specified with *limit* to paginate through the results. Defaults to 0 if not specified.
|
|
34875
|
+
* @param {string} [filters] Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **accountActivityItemId**: *eq, in, ge, gt, le, lt, ne, isnull, sw* **accessRequestId**: *in* **status**: *in, eq, ne* **created**: *eq, in, ge, gt, le, lt, ne, isnull, sw*
|
|
34876
|
+
* @param {string} [sorters] Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) Sorting is supported for the following fields: **created, modified, accountActivityItemId, name, accessRequestId**
|
|
34877
|
+
* @param {string} [requestState] Filter the results by the state of the request. The only valid value is *EXECUTING*.
|
|
34878
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
34879
|
+
* @throws {RequiredError}
|
|
34880
|
+
*/
|
|
34881
|
+
listAdministratorsAccessRequestStatus: (xSailPointExperimental: string, requestedFor?: string, requestedBy?: string, regardingIdentity?: string, assignedTo?: string, count?: boolean, limit?: number, offset?: number, filters?: string, sorters?: string, requestState?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
34085
34882
|
/**
|
|
34086
34883
|
* This endpoint replaces the current access-request configuration.
|
|
34087
34884
|
* @summary Update access request configuration
|
|
@@ -34144,6 +34941,24 @@ export declare const AccessRequestsBetaApiFp: (configuration?: Configuration) =>
|
|
|
34144
34941
|
* @throws {RequiredError}
|
|
34145
34942
|
*/
|
|
34146
34943
|
listAccessRequestStatus(requestedFor?: string, requestedBy?: string, regardingIdentity?: string, assignedTo?: string, count?: boolean, limit?: number, offset?: number, filters?: string, sorters?: string, requestState?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<RequestedItemStatusBeta>>>;
|
|
34944
|
+
/**
|
|
34945
|
+
* Use this API to get access request statuses of all the access requests in the org based on the specified query parameters. Any user with user level ORG_ADMIN or scope idn:access-request-administration:read can access this endpoint to get the access request statuses
|
|
34946
|
+
* @summary Access request status for administrators
|
|
34947
|
+
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
34948
|
+
* @param {string} [requestedFor] Filter the results by the identity the requests were made for. *me* indicates the current user. Mutually exclusive with *regarding-identity*.
|
|
34949
|
+
* @param {string} [requestedBy] Filter the results by the identity who made the requests. *me* indicates the current user. Mutually exclusive with *regarding-identity*.
|
|
34950
|
+
* @param {string} [regardingIdentity] Filter the results by the specified identity who is either the requester or target of the requests. *me* indicates the current user. Mutually exclusive with *requested-for* and *requested-by*.
|
|
34951
|
+
* @param {string} [assignedTo] Filter the results by the specified identity who is the owner of the Identity Request Work Item. *me* indicates the current user.
|
|
34952
|
+
* @param {boolean} [count] If this is true, the *X-Total-Count* response header populates with the number of results that would be returned if limit and offset were ignored.
|
|
34953
|
+
* @param {number} [limit] Max number of results to return.
|
|
34954
|
+
* @param {number} [offset] Offset into the full result set. Usually specified with *limit* to paginate through the results. Defaults to 0 if not specified.
|
|
34955
|
+
* @param {string} [filters] Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **accountActivityItemId**: *eq, in, ge, gt, le, lt, ne, isnull, sw* **accessRequestId**: *in* **status**: *in, eq, ne* **created**: *eq, in, ge, gt, le, lt, ne, isnull, sw*
|
|
34956
|
+
* @param {string} [sorters] Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) Sorting is supported for the following fields: **created, modified, accountActivityItemId, name, accessRequestId**
|
|
34957
|
+
* @param {string} [requestState] Filter the results by the state of the request. The only valid value is *EXECUTING*.
|
|
34958
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
34959
|
+
* @throws {RequiredError}
|
|
34960
|
+
*/
|
|
34961
|
+
listAdministratorsAccessRequestStatus(xSailPointExperimental: string, requestedFor?: string, requestedBy?: string, regardingIdentity?: string, assignedTo?: string, count?: boolean, limit?: number, offset?: number, filters?: string, sorters?: string, requestState?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<AccessRequestAdminItemStatusBeta>>>;
|
|
34147
34962
|
/**
|
|
34148
34963
|
* This endpoint replaces the current access-request configuration.
|
|
34149
34964
|
* @summary Update access request configuration
|
|
@@ -34197,6 +35012,14 @@ export declare const AccessRequestsBetaApiFactory: (configuration?: Configuratio
|
|
|
34197
35012
|
* @throws {RequiredError}
|
|
34198
35013
|
*/
|
|
34199
35014
|
listAccessRequestStatus(requestParameters?: AccessRequestsBetaApiListAccessRequestStatusRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<RequestedItemStatusBeta>>;
|
|
35015
|
+
/**
|
|
35016
|
+
* Use this API to get access request statuses of all the access requests in the org based on the specified query parameters. Any user with user level ORG_ADMIN or scope idn:access-request-administration:read can access this endpoint to get the access request statuses
|
|
35017
|
+
* @summary Access request status for administrators
|
|
35018
|
+
* @param {AccessRequestsBetaApiListAdministratorsAccessRequestStatusRequest} requestParameters Request parameters.
|
|
35019
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
35020
|
+
* @throws {RequiredError}
|
|
35021
|
+
*/
|
|
35022
|
+
listAdministratorsAccessRequestStatus(requestParameters: AccessRequestsBetaApiListAdministratorsAccessRequestStatusRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<AccessRequestAdminItemStatusBeta>>;
|
|
34200
35023
|
/**
|
|
34201
35024
|
* This endpoint replaces the current access-request configuration.
|
|
34202
35025
|
* @summary Update access request configuration
|
|
@@ -34312,6 +35135,79 @@ export interface AccessRequestsBetaApiListAccessRequestStatusRequest {
|
|
|
34312
35135
|
*/
|
|
34313
35136
|
readonly requestState?: string;
|
|
34314
35137
|
}
|
|
35138
|
+
/**
|
|
35139
|
+
* Request parameters for listAdministratorsAccessRequestStatus operation in AccessRequestsBetaApi.
|
|
35140
|
+
* @export
|
|
35141
|
+
* @interface AccessRequestsBetaApiListAdministratorsAccessRequestStatusRequest
|
|
35142
|
+
*/
|
|
35143
|
+
export interface AccessRequestsBetaApiListAdministratorsAccessRequestStatusRequest {
|
|
35144
|
+
/**
|
|
35145
|
+
* Use this header to enable this experimental API.
|
|
35146
|
+
* @type {string}
|
|
35147
|
+
* @memberof AccessRequestsBetaApiListAdministratorsAccessRequestStatus
|
|
35148
|
+
*/
|
|
35149
|
+
readonly xSailPointExperimental: string;
|
|
35150
|
+
/**
|
|
35151
|
+
* Filter the results by the identity the requests were made for. *me* indicates the current user. Mutually exclusive with *regarding-identity*.
|
|
35152
|
+
* @type {string}
|
|
35153
|
+
* @memberof AccessRequestsBetaApiListAdministratorsAccessRequestStatus
|
|
35154
|
+
*/
|
|
35155
|
+
readonly requestedFor?: string;
|
|
35156
|
+
/**
|
|
35157
|
+
* Filter the results by the identity who made the requests. *me* indicates the current user. Mutually exclusive with *regarding-identity*.
|
|
35158
|
+
* @type {string}
|
|
35159
|
+
* @memberof AccessRequestsBetaApiListAdministratorsAccessRequestStatus
|
|
35160
|
+
*/
|
|
35161
|
+
readonly requestedBy?: string;
|
|
35162
|
+
/**
|
|
35163
|
+
* Filter the results by the specified identity who is either the requester or target of the requests. *me* indicates the current user. Mutually exclusive with *requested-for* and *requested-by*.
|
|
35164
|
+
* @type {string}
|
|
35165
|
+
* @memberof AccessRequestsBetaApiListAdministratorsAccessRequestStatus
|
|
35166
|
+
*/
|
|
35167
|
+
readonly regardingIdentity?: string;
|
|
35168
|
+
/**
|
|
35169
|
+
* Filter the results by the specified identity who is the owner of the Identity Request Work Item. *me* indicates the current user.
|
|
35170
|
+
* @type {string}
|
|
35171
|
+
* @memberof AccessRequestsBetaApiListAdministratorsAccessRequestStatus
|
|
35172
|
+
*/
|
|
35173
|
+
readonly assignedTo?: string;
|
|
35174
|
+
/**
|
|
35175
|
+
* If this is true, the *X-Total-Count* response header populates with the number of results that would be returned if limit and offset were ignored.
|
|
35176
|
+
* @type {boolean}
|
|
35177
|
+
* @memberof AccessRequestsBetaApiListAdministratorsAccessRequestStatus
|
|
35178
|
+
*/
|
|
35179
|
+
readonly count?: boolean;
|
|
35180
|
+
/**
|
|
35181
|
+
* Max number of results to return.
|
|
35182
|
+
* @type {number}
|
|
35183
|
+
* @memberof AccessRequestsBetaApiListAdministratorsAccessRequestStatus
|
|
35184
|
+
*/
|
|
35185
|
+
readonly limit?: number;
|
|
35186
|
+
/**
|
|
35187
|
+
* Offset into the full result set. Usually specified with *limit* to paginate through the results. Defaults to 0 if not specified.
|
|
35188
|
+
* @type {number}
|
|
35189
|
+
* @memberof AccessRequestsBetaApiListAdministratorsAccessRequestStatus
|
|
35190
|
+
*/
|
|
35191
|
+
readonly offset?: number;
|
|
35192
|
+
/**
|
|
35193
|
+
* Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **accountActivityItemId**: *eq, in, ge, gt, le, lt, ne, isnull, sw* **accessRequestId**: *in* **status**: *in, eq, ne* **created**: *eq, in, ge, gt, le, lt, ne, isnull, sw*
|
|
35194
|
+
* @type {string}
|
|
35195
|
+
* @memberof AccessRequestsBetaApiListAdministratorsAccessRequestStatus
|
|
35196
|
+
*/
|
|
35197
|
+
readonly filters?: string;
|
|
35198
|
+
/**
|
|
35199
|
+
* Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) Sorting is supported for the following fields: **created, modified, accountActivityItemId, name, accessRequestId**
|
|
35200
|
+
* @type {string}
|
|
35201
|
+
* @memberof AccessRequestsBetaApiListAdministratorsAccessRequestStatus
|
|
35202
|
+
*/
|
|
35203
|
+
readonly sorters?: string;
|
|
35204
|
+
/**
|
|
35205
|
+
* Filter the results by the state of the request. The only valid value is *EXECUTING*.
|
|
35206
|
+
* @type {string}
|
|
35207
|
+
* @memberof AccessRequestsBetaApiListAdministratorsAccessRequestStatus
|
|
35208
|
+
*/
|
|
35209
|
+
readonly requestState?: string;
|
|
35210
|
+
}
|
|
34315
35211
|
/**
|
|
34316
35212
|
* Request parameters for setAccessRequestConfig operation in AccessRequestsBetaApi.
|
|
34317
35213
|
* @export
|
|
@@ -34376,6 +35272,15 @@ export declare class AccessRequestsBetaApi extends BaseAPI {
|
|
|
34376
35272
|
* @memberof AccessRequestsBetaApi
|
|
34377
35273
|
*/
|
|
34378
35274
|
listAccessRequestStatus(requestParameters?: AccessRequestsBetaApiListAccessRequestStatusRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<RequestedItemStatusBeta[], any>>;
|
|
35275
|
+
/**
|
|
35276
|
+
* Use this API to get access request statuses of all the access requests in the org based on the specified query parameters. Any user with user level ORG_ADMIN or scope idn:access-request-administration:read can access this endpoint to get the access request statuses
|
|
35277
|
+
* @summary Access request status for administrators
|
|
35278
|
+
* @param {AccessRequestsBetaApiListAdministratorsAccessRequestStatusRequest} requestParameters Request parameters.
|
|
35279
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
35280
|
+
* @throws {RequiredError}
|
|
35281
|
+
* @memberof AccessRequestsBetaApi
|
|
35282
|
+
*/
|
|
35283
|
+
listAdministratorsAccessRequestStatus(requestParameters: AccessRequestsBetaApiListAdministratorsAccessRequestStatusRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AccessRequestAdminItemStatusBeta[], any>>;
|
|
34379
35284
|
/**
|
|
34380
35285
|
* This endpoint replaces the current access-request configuration.
|
|
34381
35286
|
* @summary Update access request configuration
|
|
@@ -38283,6 +39188,7 @@ export declare const CertificationsBetaApiAxiosParamCreator: (configuration?: Co
|
|
|
38283
39188
|
* @summary Pending certification tasks
|
|
38284
39189
|
* @param {string} id The identity campaign certification ID
|
|
38285
39190
|
* @param {*} [axiosOptions] Override http request option.
|
|
39191
|
+
* @deprecated
|
|
38286
39192
|
* @throws {RequiredError}
|
|
38287
39193
|
*/
|
|
38288
39194
|
getIdentityCertificationPendingTasks: (id: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
@@ -38292,6 +39198,7 @@ export declare const CertificationsBetaApiAxiosParamCreator: (configuration?: Co
|
|
|
38292
39198
|
* @param {string} id The identity campaign certification ID
|
|
38293
39199
|
* @param {string} taskId The certification task ID
|
|
38294
39200
|
* @param {*} [axiosOptions] Override http request option.
|
|
39201
|
+
* @deprecated
|
|
38295
39202
|
* @throws {RequiredError}
|
|
38296
39203
|
*/
|
|
38297
39204
|
getIdentityCertificationTaskStatus: (id: string, taskId: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
@@ -38319,6 +39226,7 @@ export declare const CertificationsBetaApiAxiosParamCreator: (configuration?: Co
|
|
|
38319
39226
|
* @param {string} [filters] Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **id**: *eq, in* **phase**: *eq* **completed**: *eq, ne* **campaignRef.campaignType**: *eq, in* **campaignRef.id**: *eq, in*
|
|
38320
39227
|
* @param {string} [sorters] Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) Sorting is supported for the following fields: **name, due, signed**
|
|
38321
39228
|
* @param {*} [axiosOptions] Override http request option.
|
|
39229
|
+
* @deprecated
|
|
38322
39230
|
* @throws {RequiredError}
|
|
38323
39231
|
*/
|
|
38324
39232
|
listCertifications: (reviewerIdentitiy?: string, limit?: number, offset?: number, count?: boolean, filters?: string, sorters?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
@@ -38357,6 +39265,7 @@ export declare const CertificationsBetaApiFp: (configuration?: Configuration) =>
|
|
|
38357
39265
|
* @summary Pending certification tasks
|
|
38358
39266
|
* @param {string} id The identity campaign certification ID
|
|
38359
39267
|
* @param {*} [axiosOptions] Override http request option.
|
|
39268
|
+
* @deprecated
|
|
38360
39269
|
* @throws {RequiredError}
|
|
38361
39270
|
*/
|
|
38362
39271
|
getIdentityCertificationPendingTasks(id: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<IdentityCertificationTaskBeta>>>;
|
|
@@ -38366,6 +39275,7 @@ export declare const CertificationsBetaApiFp: (configuration?: Configuration) =>
|
|
|
38366
39275
|
* @param {string} id The identity campaign certification ID
|
|
38367
39276
|
* @param {string} taskId The certification task ID
|
|
38368
39277
|
* @param {*} [axiosOptions] Override http request option.
|
|
39278
|
+
* @deprecated
|
|
38369
39279
|
* @throws {RequiredError}
|
|
38370
39280
|
*/
|
|
38371
39281
|
getIdentityCertificationTaskStatus(id: string, taskId: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<IdentityCertificationTaskBeta>>;
|
|
@@ -38393,6 +39303,7 @@ export declare const CertificationsBetaApiFp: (configuration?: Configuration) =>
|
|
|
38393
39303
|
* @param {string} [filters] Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **id**: *eq, in* **phase**: *eq* **completed**: *eq, ne* **campaignRef.campaignType**: *eq, in* **campaignRef.id**: *eq, in*
|
|
38394
39304
|
* @param {string} [sorters] Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) Sorting is supported for the following fields: **name, due, signed**
|
|
38395
39305
|
* @param {*} [axiosOptions] Override http request option.
|
|
39306
|
+
* @deprecated
|
|
38396
39307
|
* @throws {RequiredError}
|
|
38397
39308
|
*/
|
|
38398
39309
|
listCertifications(reviewerIdentitiy?: string, limit?: number, offset?: number, count?: boolean, filters?: string, sorters?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<CertificationDtoBeta>>>;
|
|
@@ -38426,6 +39337,7 @@ export declare const CertificationsBetaApiFactory: (configuration?: Configuratio
|
|
|
38426
39337
|
* @summary Pending certification tasks
|
|
38427
39338
|
* @param {CertificationsBetaApiGetIdentityCertificationPendingTasksRequest} requestParameters Request parameters.
|
|
38428
39339
|
* @param {*} [axiosOptions] Override http request option.
|
|
39340
|
+
* @deprecated
|
|
38429
39341
|
* @throws {RequiredError}
|
|
38430
39342
|
*/
|
|
38431
39343
|
getIdentityCertificationPendingTasks(requestParameters: CertificationsBetaApiGetIdentityCertificationPendingTasksRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<IdentityCertificationTaskBeta>>;
|
|
@@ -38434,6 +39346,7 @@ export declare const CertificationsBetaApiFactory: (configuration?: Configuratio
|
|
|
38434
39346
|
* @summary Certification task status
|
|
38435
39347
|
* @param {CertificationsBetaApiGetIdentityCertificationTaskStatusRequest} requestParameters Request parameters.
|
|
38436
39348
|
* @param {*} [axiosOptions] Override http request option.
|
|
39349
|
+
* @deprecated
|
|
38437
39350
|
* @throws {RequiredError}
|
|
38438
39351
|
*/
|
|
38439
39352
|
getIdentityCertificationTaskStatus(requestParameters: CertificationsBetaApiGetIdentityCertificationTaskStatusRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<IdentityCertificationTaskBeta>;
|
|
@@ -38451,6 +39364,7 @@ export declare const CertificationsBetaApiFactory: (configuration?: Configuratio
|
|
|
38451
39364
|
* @summary Certifications by ids
|
|
38452
39365
|
* @param {CertificationsBetaApiListCertificationsRequest} requestParameters Request parameters.
|
|
38453
39366
|
* @param {*} [axiosOptions] Override http request option.
|
|
39367
|
+
* @deprecated
|
|
38454
39368
|
* @throws {RequiredError}
|
|
38455
39369
|
*/
|
|
38456
39370
|
listCertifications(requestParameters?: CertificationsBetaApiListCertificationsRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<CertificationDtoBeta>>;
|
|
@@ -38666,6 +39580,7 @@ export declare class CertificationsBetaApi extends BaseAPI {
|
|
|
38666
39580
|
* @summary Pending certification tasks
|
|
38667
39581
|
* @param {CertificationsBetaApiGetIdentityCertificationPendingTasksRequest} requestParameters Request parameters.
|
|
38668
39582
|
* @param {*} [axiosOptions] Override http request option.
|
|
39583
|
+
* @deprecated
|
|
38669
39584
|
* @throws {RequiredError}
|
|
38670
39585
|
* @memberof CertificationsBetaApi
|
|
38671
39586
|
*/
|
|
@@ -38675,6 +39590,7 @@ export declare class CertificationsBetaApi extends BaseAPI {
|
|
|
38675
39590
|
* @summary Certification task status
|
|
38676
39591
|
* @param {CertificationsBetaApiGetIdentityCertificationTaskStatusRequest} requestParameters Request parameters.
|
|
38677
39592
|
* @param {*} [axiosOptions] Override http request option.
|
|
39593
|
+
* @deprecated
|
|
38678
39594
|
* @throws {RequiredError}
|
|
38679
39595
|
* @memberof CertificationsBetaApi
|
|
38680
39596
|
*/
|
|
@@ -38694,6 +39610,7 @@ export declare class CertificationsBetaApi extends BaseAPI {
|
|
|
38694
39610
|
* @summary Certifications by ids
|
|
38695
39611
|
* @param {CertificationsBetaApiListCertificationsRequest} requestParameters Request parameters.
|
|
38696
39612
|
* @param {*} [axiosOptions] Override http request option.
|
|
39613
|
+
* @deprecated
|
|
38697
39614
|
* @throws {RequiredError}
|
|
38698
39615
|
* @memberof CertificationsBetaApi
|
|
38699
39616
|
*/
|
|
@@ -43719,20 +44636,20 @@ export declare const IAIRoleMiningBetaApiAxiosParamCreator: (configuration?: Con
|
|
|
43719
44636
|
* @summary Update a potential role in session
|
|
43720
44637
|
* @param {string} sessionId The role mining session id
|
|
43721
44638
|
* @param {string} potentialRoleId The potential role summary id
|
|
43722
|
-
* @param {Array<
|
|
44639
|
+
* @param {Array<JsonPatchOperationBeta>} jsonPatchOperationBeta
|
|
43723
44640
|
* @param {*} [axiosOptions] Override http request option.
|
|
43724
44641
|
* @throws {RequiredError}
|
|
43725
44642
|
*/
|
|
43726
|
-
|
|
44643
|
+
patchPotentialRoleSession: (sessionId: string, potentialRoleId: string, jsonPatchOperationBeta: Array<JsonPatchOperationBeta>, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
43727
44644
|
/**
|
|
43728
44645
|
* This method updates an existing potential role. The following fields can be modified: * `description` * `name` * `saved` >**NOTE: All other fields cannot be modified.**
|
|
43729
44646
|
* @summary Update a potential role
|
|
43730
44647
|
* @param {string} potentialRoleId The potential role summary id
|
|
43731
|
-
* @param {Array<
|
|
44648
|
+
* @param {Array<PatchRoleMiningPotentialRoleRequestInnerBeta>} patchRoleMiningPotentialRoleRequestInnerBeta
|
|
43732
44649
|
* @param {*} [axiosOptions] Override http request option.
|
|
43733
44650
|
* @throws {RequiredError}
|
|
43734
44651
|
*/
|
|
43735
|
-
patchRoleMiningPotentialRole: (potentialRoleId: string,
|
|
44652
|
+
patchRoleMiningPotentialRole: (potentialRoleId: string, patchRoleMiningPotentialRoleRequestInnerBeta: Array<PatchRoleMiningPotentialRoleRequestInnerBeta>, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
43736
44653
|
/**
|
|
43737
44654
|
* The method updates an existing role mining session using PATCH. Supports op in {\"replace\"} and changes to pruneThreshold and/or minNumIdentitiesInPotentialRole. The potential roles in this role mining session is then re-calculated.
|
|
43738
44655
|
* @summary Patch a role mining session
|
|
@@ -43997,20 +44914,20 @@ export declare const IAIRoleMiningBetaApiFp: (configuration?: Configuration) =>
|
|
|
43997
44914
|
* @summary Update a potential role in session
|
|
43998
44915
|
* @param {string} sessionId The role mining session id
|
|
43999
44916
|
* @param {string} potentialRoleId The potential role summary id
|
|
44000
|
-
* @param {Array<
|
|
44917
|
+
* @param {Array<JsonPatchOperationBeta>} jsonPatchOperationBeta
|
|
44001
44918
|
* @param {*} [axiosOptions] Override http request option.
|
|
44002
44919
|
* @throws {RequiredError}
|
|
44003
44920
|
*/
|
|
44004
|
-
|
|
44921
|
+
patchPotentialRoleSession(sessionId: string, potentialRoleId: string, jsonPatchOperationBeta: Array<JsonPatchOperationBeta>, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>>;
|
|
44005
44922
|
/**
|
|
44006
44923
|
* This method updates an existing potential role. The following fields can be modified: * `description` * `name` * `saved` >**NOTE: All other fields cannot be modified.**
|
|
44007
44924
|
* @summary Update a potential role
|
|
44008
44925
|
* @param {string} potentialRoleId The potential role summary id
|
|
44009
|
-
* @param {Array<
|
|
44926
|
+
* @param {Array<PatchRoleMiningPotentialRoleRequestInnerBeta>} patchRoleMiningPotentialRoleRequestInnerBeta
|
|
44010
44927
|
* @param {*} [axiosOptions] Override http request option.
|
|
44011
44928
|
* @throws {RequiredError}
|
|
44012
44929
|
*/
|
|
44013
|
-
patchRoleMiningPotentialRole(potentialRoleId: string,
|
|
44930
|
+
patchRoleMiningPotentialRole(potentialRoleId: string, patchRoleMiningPotentialRoleRequestInnerBeta: Array<PatchRoleMiningPotentialRoleRequestInnerBeta>, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>>;
|
|
44014
44931
|
/**
|
|
44015
44932
|
* The method updates an existing role mining session using PATCH. Supports op in {\"replace\"} and changes to pruneThreshold and/or minNumIdentitiesInPotentialRole. The potential roles in this role mining session is then re-calculated.
|
|
44016
44933
|
* @summary Patch a role mining session
|
|
@@ -44209,11 +45126,11 @@ export declare const IAIRoleMiningBetaApiFactory: (configuration?: Configuration
|
|
|
44209
45126
|
/**
|
|
44210
45127
|
* This method updates an existing potential role using the role mining session id and the potential role summary id. The following fields can be modified: * `description` * `name` * `saved` >**NOTE: All other fields cannot be modified.**
|
|
44211
45128
|
* @summary Update a potential role in session
|
|
44212
|
-
* @param {
|
|
45129
|
+
* @param {IAIRoleMiningBetaApiPatchPotentialRoleSessionRequest} requestParameters Request parameters.
|
|
44213
45130
|
* @param {*} [axiosOptions] Override http request option.
|
|
44214
45131
|
* @throws {RequiredError}
|
|
44215
45132
|
*/
|
|
44216
|
-
|
|
45133
|
+
patchPotentialRoleSession(requestParameters: IAIRoleMiningBetaApiPatchPotentialRoleSessionRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<object>;
|
|
44217
45134
|
/**
|
|
44218
45135
|
* This method updates an existing potential role. The following fields can be modified: * `description` * `name` * `saved` >**NOTE: All other fields cannot be modified.**
|
|
44219
45136
|
* @summary Update a potential role
|
|
@@ -44897,29 +45814,29 @@ export interface IAIRoleMiningBetaApiGetSavedPotentialRolesRequest {
|
|
|
44897
45814
|
readonly count?: boolean;
|
|
44898
45815
|
}
|
|
44899
45816
|
/**
|
|
44900
|
-
* Request parameters for
|
|
45817
|
+
* Request parameters for patchPotentialRoleSession operation in IAIRoleMiningBetaApi.
|
|
44901
45818
|
* @export
|
|
44902
|
-
* @interface
|
|
45819
|
+
* @interface IAIRoleMiningBetaApiPatchPotentialRoleSessionRequest
|
|
44903
45820
|
*/
|
|
44904
|
-
export interface
|
|
45821
|
+
export interface IAIRoleMiningBetaApiPatchPotentialRoleSessionRequest {
|
|
44905
45822
|
/**
|
|
44906
45823
|
* The role mining session id
|
|
44907
45824
|
* @type {string}
|
|
44908
|
-
* @memberof
|
|
45825
|
+
* @memberof IAIRoleMiningBetaApiPatchPotentialRoleSession
|
|
44909
45826
|
*/
|
|
44910
45827
|
readonly sessionId: string;
|
|
44911
45828
|
/**
|
|
44912
45829
|
* The potential role summary id
|
|
44913
45830
|
* @type {string}
|
|
44914
|
-
* @memberof
|
|
45831
|
+
* @memberof IAIRoleMiningBetaApiPatchPotentialRoleSession
|
|
44915
45832
|
*/
|
|
44916
45833
|
readonly potentialRoleId: string;
|
|
44917
45834
|
/**
|
|
44918
45835
|
*
|
|
44919
|
-
* @type {Array<
|
|
44920
|
-
* @memberof
|
|
45836
|
+
* @type {Array<JsonPatchOperationBeta>}
|
|
45837
|
+
* @memberof IAIRoleMiningBetaApiPatchPotentialRoleSession
|
|
44921
45838
|
*/
|
|
44922
|
-
readonly
|
|
45839
|
+
readonly jsonPatchOperationBeta: Array<JsonPatchOperationBeta>;
|
|
44923
45840
|
}
|
|
44924
45841
|
/**
|
|
44925
45842
|
* Request parameters for patchRoleMiningPotentialRole operation in IAIRoleMiningBetaApi.
|
|
@@ -44935,10 +45852,10 @@ export interface IAIRoleMiningBetaApiPatchRoleMiningPotentialRoleRequest {
|
|
|
44935
45852
|
readonly potentialRoleId: string;
|
|
44936
45853
|
/**
|
|
44937
45854
|
*
|
|
44938
|
-
* @type {Array<
|
|
45855
|
+
* @type {Array<PatchRoleMiningPotentialRoleRequestInnerBeta>}
|
|
44939
45856
|
* @memberof IAIRoleMiningBetaApiPatchRoleMiningPotentialRole
|
|
44940
45857
|
*/
|
|
44941
|
-
readonly
|
|
45858
|
+
readonly patchRoleMiningPotentialRoleRequestInnerBeta: Array<PatchRoleMiningPotentialRoleRequestInnerBeta>;
|
|
44942
45859
|
}
|
|
44943
45860
|
/**
|
|
44944
45861
|
* Request parameters for patchRoleMiningSession operation in IAIRoleMiningBetaApi.
|
|
@@ -45185,12 +46102,12 @@ export declare class IAIRoleMiningBetaApi extends BaseAPI {
|
|
|
45185
46102
|
/**
|
|
45186
46103
|
* This method updates an existing potential role using the role mining session id and the potential role summary id. The following fields can be modified: * `description` * `name` * `saved` >**NOTE: All other fields cannot be modified.**
|
|
45187
46104
|
* @summary Update a potential role in session
|
|
45188
|
-
* @param {
|
|
46105
|
+
* @param {IAIRoleMiningBetaApiPatchPotentialRoleSessionRequest} requestParameters Request parameters.
|
|
45189
46106
|
* @param {*} [axiosOptions] Override http request option.
|
|
45190
46107
|
* @throws {RequiredError}
|
|
45191
46108
|
* @memberof IAIRoleMiningBetaApi
|
|
45192
46109
|
*/
|
|
45193
|
-
|
|
46110
|
+
patchPotentialRoleSession(requestParameters: IAIRoleMiningBetaApiPatchPotentialRoleSessionRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any>>;
|
|
45194
46111
|
/**
|
|
45195
46112
|
* This method updates an existing potential role. The following fields can be modified: * `description` * `name` * `saved` >**NOTE: All other fields cannot be modified.**
|
|
45196
46113
|
* @summary Update a potential role
|
|
@@ -49194,7 +50111,7 @@ export declare const ManagedClustersBetaApiAxiosParamCreator: (configuration?: C
|
|
|
49194
50111
|
* @param {number} [offset] Offset into the full result set. Usually specified with *limit* to paginate through the results. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
49195
50112
|
* @param {number} [limit] Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
49196
50113
|
* @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.
|
|
49197
|
-
* @param {string} [filters] Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **operational**: *eq*
|
|
50114
|
+
* @param {string} [filters] Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **operational**: *eq* **name**: *eq* **type**: *eq* **status**: *eq*
|
|
49198
50115
|
* @param {*} [axiosOptions] Override http request option.
|
|
49199
50116
|
* @deprecated
|
|
49200
50117
|
* @throws {RequiredError}
|
|
@@ -49240,7 +50157,7 @@ export declare const ManagedClustersBetaApiFp: (configuration?: Configuration) =
|
|
|
49240
50157
|
* @param {number} [offset] Offset into the full result set. Usually specified with *limit* to paginate through the results. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
49241
50158
|
* @param {number} [limit] Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
49242
50159
|
* @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.
|
|
49243
|
-
* @param {string} [filters] Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **operational**: *eq*
|
|
50160
|
+
* @param {string} [filters] Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **operational**: *eq* **name**: *eq* **type**: *eq* **status**: *eq*
|
|
49244
50161
|
* @param {*} [axiosOptions] Override http request option.
|
|
49245
50162
|
* @deprecated
|
|
49246
50163
|
* @throws {RequiredError}
|
|
@@ -49350,7 +50267,7 @@ export interface ManagedClustersBetaApiGetManagedClustersRequest {
|
|
|
49350
50267
|
*/
|
|
49351
50268
|
readonly count?: boolean;
|
|
49352
50269
|
/**
|
|
49353
|
-
* Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **operational**: *eq*
|
|
50270
|
+
* Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **operational**: *eq* **name**: *eq* **type**: *eq* **status**: *eq*
|
|
49354
50271
|
* @type {string}
|
|
49355
50272
|
* @memberof ManagedClustersBetaApiGetManagedClusters
|
|
49356
50273
|
*/
|
|
@@ -59974,7 +60891,7 @@ export interface SourcesBetaApiGetSourceConfigRequest {
|
|
|
59974
60891
|
readonly id: string;
|
|
59975
60892
|
/**
|
|
59976
60893
|
* The locale to apply to the config. If no viable locale is given, it will default to \"en\"
|
|
59977
|
-
* @type {'de' | '
|
|
60894
|
+
* @type {'de' | 'no' | 'fi' | 'sv' | 'ru' | 'pt' | 'ko' | 'zh-TW' | 'en' | 'it' | 'fr' | 'zh-CN' | 'hu' | 'es' | 'cs' | 'ja' | 'pl' | 'da' | 'nl'}
|
|
59978
60895
|
* @memberof SourcesBetaApiGetSourceConfig
|
|
59979
60896
|
*/
|
|
59980
60897
|
readonly locale?: GetSourceConfigLocaleBeta;
|
|
@@ -60947,7 +61864,7 @@ export declare class SourcesBetaApi extends BaseAPI {
|
|
|
60947
61864
|
*/
|
|
60948
61865
|
export declare const GetSourceConfigLocaleBeta: {
|
|
60949
61866
|
readonly De: "de";
|
|
60950
|
-
readonly
|
|
61867
|
+
readonly No: "no";
|
|
60951
61868
|
readonly Fi: "fi";
|
|
60952
61869
|
readonly Sv: "sv";
|
|
60953
61870
|
readonly Ru: "ru";
|
|
@@ -62205,22 +63122,24 @@ export declare class TagsBetaApi extends BaseAPI {
|
|
|
62205
63122
|
*/
|
|
62206
63123
|
export declare const TaskManagementBetaApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
62207
63124
|
/**
|
|
62208
|
-
* Responds with headers only for list of task statuses for pending tasks.
|
|
63125
|
+
* This API is being deprecated. Please use the [task-status-list](https://developer.sailpoint.com/docs/api/v2025/get-task-status-list) endpoint with isnull filtering on the completionStatus field and count=true. Example: /v2025/task-status?count=true&filters=completionStatus isnull Responds with headers only for list of task statuses for pending tasks.
|
|
62209
63126
|
* @summary Retrieve pending task list headers
|
|
62210
63127
|
* @param {number} [offset] Offset into the full result set. Usually specified with *limit* to paginate through the results. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
62211
63128
|
* @param {number} [limit] Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
62212
63129
|
* @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.
|
|
62213
63130
|
* @param {*} [axiosOptions] Override http request option.
|
|
63131
|
+
* @deprecated
|
|
62214
63132
|
* @throws {RequiredError}
|
|
62215
63133
|
*/
|
|
62216
63134
|
getPendingTaskHeaders: (offset?: number, limit?: number, count?: boolean, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
62217
63135
|
/**
|
|
62218
|
-
* Retrieve a list of statuses for pending tasks. Types of tasks include account and entitlement aggregation and other general background processing tasks. Data for tasks older than 90 days will not be returned.
|
|
63136
|
+
* This API is being deprecated. Please use the [task-status-list](https://developer.sailpoint.com/docs/api/v2025/get-task-status-list) endpoint with isnull filtering on the completionStatus field to retrieve pending tasks. Example: /v2025/task-status?filters=completionStatus isnull Retrieve a list of statuses for pending tasks. Types of tasks include account and entitlement aggregation and other general background processing tasks. Data for tasks older than 90 days will not be returned.
|
|
62219
63137
|
* @summary Retrieve pending task status list
|
|
62220
63138
|
* @param {number} [offset] Offset into the full result set. Usually specified with *limit* to paginate through the results. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
62221
63139
|
* @param {number} [limit] Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
62222
63140
|
* @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.
|
|
62223
63141
|
* @param {*} [axiosOptions] Override http request option.
|
|
63142
|
+
* @deprecated
|
|
62224
63143
|
* @throws {RequiredError}
|
|
62225
63144
|
*/
|
|
62226
63145
|
getPendingTasks: (offset?: number, limit?: number, count?: boolean, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
@@ -62260,22 +63179,24 @@ export declare const TaskManagementBetaApiAxiosParamCreator: (configuration?: Co
|
|
|
62260
63179
|
*/
|
|
62261
63180
|
export declare const TaskManagementBetaApiFp: (configuration?: Configuration) => {
|
|
62262
63181
|
/**
|
|
62263
|
-
* Responds with headers only for list of task statuses for pending tasks.
|
|
63182
|
+
* This API is being deprecated. Please use the [task-status-list](https://developer.sailpoint.com/docs/api/v2025/get-task-status-list) endpoint with isnull filtering on the completionStatus field and count=true. Example: /v2025/task-status?count=true&filters=completionStatus isnull Responds with headers only for list of task statuses for pending tasks.
|
|
62264
63183
|
* @summary Retrieve pending task list headers
|
|
62265
63184
|
* @param {number} [offset] Offset into the full result set. Usually specified with *limit* to paginate through the results. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
62266
63185
|
* @param {number} [limit] Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
62267
63186
|
* @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.
|
|
62268
63187
|
* @param {*} [axiosOptions] Override http request option.
|
|
63188
|
+
* @deprecated
|
|
62269
63189
|
* @throws {RequiredError}
|
|
62270
63190
|
*/
|
|
62271
63191
|
getPendingTaskHeaders(offset?: number, limit?: number, count?: boolean, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
62272
63192
|
/**
|
|
62273
|
-
* Retrieve a list of statuses for pending tasks. Types of tasks include account and entitlement aggregation and other general background processing tasks. Data for tasks older than 90 days will not be returned.
|
|
63193
|
+
* This API is being deprecated. Please use the [task-status-list](https://developer.sailpoint.com/docs/api/v2025/get-task-status-list) endpoint with isnull filtering on the completionStatus field to retrieve pending tasks. Example: /v2025/task-status?filters=completionStatus isnull Retrieve a list of statuses for pending tasks. Types of tasks include account and entitlement aggregation and other general background processing tasks. Data for tasks older than 90 days will not be returned.
|
|
62274
63194
|
* @summary Retrieve pending task status list
|
|
62275
63195
|
* @param {number} [offset] Offset into the full result set. Usually specified with *limit* to paginate through the results. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
62276
63196
|
* @param {number} [limit] Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
62277
63197
|
* @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.
|
|
62278
63198
|
* @param {*} [axiosOptions] Override http request option.
|
|
63199
|
+
* @deprecated
|
|
62279
63200
|
* @throws {RequiredError}
|
|
62280
63201
|
*/
|
|
62281
63202
|
getPendingTasks(offset?: number, limit?: number, count?: boolean, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<TaskStatusBeta>>>;
|
|
@@ -62315,18 +63236,20 @@ export declare const TaskManagementBetaApiFp: (configuration?: Configuration) =>
|
|
|
62315
63236
|
*/
|
|
62316
63237
|
export declare const TaskManagementBetaApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
62317
63238
|
/**
|
|
62318
|
-
* Responds with headers only for list of task statuses for pending tasks.
|
|
63239
|
+
* This API is being deprecated. Please use the [task-status-list](https://developer.sailpoint.com/docs/api/v2025/get-task-status-list) endpoint with isnull filtering on the completionStatus field and count=true. Example: /v2025/task-status?count=true&filters=completionStatus isnull Responds with headers only for list of task statuses for pending tasks.
|
|
62319
63240
|
* @summary Retrieve pending task list headers
|
|
62320
63241
|
* @param {TaskManagementBetaApiGetPendingTaskHeadersRequest} requestParameters Request parameters.
|
|
62321
63242
|
* @param {*} [axiosOptions] Override http request option.
|
|
63243
|
+
* @deprecated
|
|
62322
63244
|
* @throws {RequiredError}
|
|
62323
63245
|
*/
|
|
62324
63246
|
getPendingTaskHeaders(requestParameters?: TaskManagementBetaApiGetPendingTaskHeadersRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
62325
63247
|
/**
|
|
62326
|
-
* Retrieve a list of statuses for pending tasks. Types of tasks include account and entitlement aggregation and other general background processing tasks. Data for tasks older than 90 days will not be returned.
|
|
63248
|
+
* This API is being deprecated. Please use the [task-status-list](https://developer.sailpoint.com/docs/api/v2025/get-task-status-list) endpoint with isnull filtering on the completionStatus field to retrieve pending tasks. Example: /v2025/task-status?filters=completionStatus isnull Retrieve a list of statuses for pending tasks. Types of tasks include account and entitlement aggregation and other general background processing tasks. Data for tasks older than 90 days will not be returned.
|
|
62327
63249
|
* @summary Retrieve pending task status list
|
|
62328
63250
|
* @param {TaskManagementBetaApiGetPendingTasksRequest} requestParameters Request parameters.
|
|
62329
63251
|
* @param {*} [axiosOptions] Override http request option.
|
|
63252
|
+
* @deprecated
|
|
62330
63253
|
* @throws {RequiredError}
|
|
62331
63254
|
*/
|
|
62332
63255
|
getPendingTasks(requestParameters?: TaskManagementBetaApiGetPendingTasksRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<TaskStatusBeta>>;
|
|
@@ -62482,19 +63405,21 @@ export interface TaskManagementBetaApiUpdateTaskStatusRequest {
|
|
|
62482
63405
|
*/
|
|
62483
63406
|
export declare class TaskManagementBetaApi extends BaseAPI {
|
|
62484
63407
|
/**
|
|
62485
|
-
* Responds with headers only for list of task statuses for pending tasks.
|
|
63408
|
+
* This API is being deprecated. Please use the [task-status-list](https://developer.sailpoint.com/docs/api/v2025/get-task-status-list) endpoint with isnull filtering on the completionStatus field and count=true. Example: /v2025/task-status?count=true&filters=completionStatus isnull Responds with headers only for list of task statuses for pending tasks.
|
|
62486
63409
|
* @summary Retrieve pending task list headers
|
|
62487
63410
|
* @param {TaskManagementBetaApiGetPendingTaskHeadersRequest} requestParameters Request parameters.
|
|
62488
63411
|
* @param {*} [axiosOptions] Override http request option.
|
|
63412
|
+
* @deprecated
|
|
62489
63413
|
* @throws {RequiredError}
|
|
62490
63414
|
* @memberof TaskManagementBetaApi
|
|
62491
63415
|
*/
|
|
62492
63416
|
getPendingTaskHeaders(requestParameters?: TaskManagementBetaApiGetPendingTaskHeadersRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
62493
63417
|
/**
|
|
62494
|
-
* Retrieve a list of statuses for pending tasks. Types of tasks include account and entitlement aggregation and other general background processing tasks. Data for tasks older than 90 days will not be returned.
|
|
63418
|
+
* This API is being deprecated. Please use the [task-status-list](https://developer.sailpoint.com/docs/api/v2025/get-task-status-list) endpoint with isnull filtering on the completionStatus field to retrieve pending tasks. Example: /v2025/task-status?filters=completionStatus isnull Retrieve a list of statuses for pending tasks. Types of tasks include account and entitlement aggregation and other general background processing tasks. Data for tasks older than 90 days will not be returned.
|
|
62495
63419
|
* @summary Retrieve pending task status list
|
|
62496
63420
|
* @param {TaskManagementBetaApiGetPendingTasksRequest} requestParameters Request parameters.
|
|
62497
63421
|
* @param {*} [axiosOptions] Override http request option.
|
|
63422
|
+
* @deprecated
|
|
62498
63423
|
* @throws {RequiredError}
|
|
62499
63424
|
* @memberof TaskManagementBetaApi
|
|
62500
63425
|
*/
|