sailpoint-api-client 1.6.10 → 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.
Files changed (71) hide show
  1. package/beta/README.md +2 -2
  2. package/beta/api.ts +2117 -205
  3. package/beta/common.ts +2 -2
  4. package/beta/package.json +1 -1
  5. package/dist/beta/api.d.ts +1003 -74
  6. package/dist/beta/api.js +2751 -401
  7. package/dist/beta/api.js.map +1 -1
  8. package/dist/beta/common.js +1 -1
  9. package/dist/beta/common.js.map +1 -1
  10. package/dist/index.d.ts +2 -0
  11. package/dist/index.js +6 -3
  12. package/dist/index.js.map +1 -1
  13. package/dist/index.spec.js +18 -0
  14. package/dist/index.spec.js.map +1 -1
  15. package/dist/v2024/api.d.ts +206 -60
  16. package/dist/v2024/api.js +3283 -760
  17. package/dist/v2024/api.js.map +1 -1
  18. package/dist/v2024/common.js +1 -1
  19. package/dist/v2024/common.js.map +1 -1
  20. package/dist/v2025/api.d.ts +4212 -143
  21. package/dist/v2025/api.js +6580 -963
  22. package/dist/v2025/api.js.map +1 -1
  23. package/dist/v2025/common.js +1 -1
  24. package/dist/v2025/common.js.map +1 -1
  25. package/dist/v2026/api.d.ts +818 -0
  26. package/dist/v2026/api.js +800 -0
  27. package/dist/v2026/api.js.map +1 -0
  28. package/dist/v2026/base.d.ts +66 -0
  29. package/dist/v2026/base.js +89 -0
  30. package/dist/v2026/base.js.map +1 -0
  31. package/dist/v2026/common.d.ts +65 -0
  32. package/dist/v2026/common.js +266 -0
  33. package/dist/v2026/common.js.map +1 -0
  34. package/dist/v2026/configuration.d.ts +91 -0
  35. package/dist/v2026/configuration.js +46 -0
  36. package/dist/v2026/configuration.js.map +1 -0
  37. package/dist/v2026/index.d.ts +13 -0
  38. package/dist/v2026/index.js +32 -0
  39. package/dist/v2026/index.js.map +1 -0
  40. package/dist/v3/api.d.ts +184 -12
  41. package/dist/v3/api.js +1278 -285
  42. package/dist/v3/api.js.map +1 -1
  43. package/dist/v3/common.js +1 -1
  44. package/dist/v3/common.js.map +1 -1
  45. package/index.spec.ts +11 -1
  46. package/index.ts +3 -0
  47. package/package.json +1 -1
  48. package/v2024/README.md +2 -2
  49. package/v2024/api.ts +1443 -288
  50. package/v2024/common.ts +2 -2
  51. package/v2024/package.json +1 -1
  52. package/v2025/README.md +2 -2
  53. package/v2025/api.ts +6944 -441
  54. package/v2025/common.ts +2 -2
  55. package/v2025/package.json +1 -1
  56. package/v2026/.openapi-generator/FILES +12 -0
  57. package/v2026/.openapi-generator/VERSION +1 -0
  58. package/v2026/.openapi-generator-ignore +23 -0
  59. package/v2026/README.md +46 -0
  60. package/v2026/api.ts +1188 -0
  61. package/v2026/base.ts +86 -0
  62. package/v2026/common.ts +165 -0
  63. package/v2026/configuration.ts +110 -0
  64. package/v2026/git_push.sh +57 -0
  65. package/v2026/index.ts +18 -0
  66. package/v2026/package.json +34 -0
  67. package/v2026/tsconfig.json +21 -0
  68. package/v3/README.md +2 -2
  69. package/v3/api.ts +675 -109
  70. package/v3/common.ts +2 -2
  71. package/v3/package.json +1 -1
package/beta/api.ts CHANGED
@@ -114,6 +114,35 @@ export const AccessCriteriaCriteriaListInnerBetaTypeBeta = {
114
114
 
115
115
  export type AccessCriteriaCriteriaListInnerBetaTypeBeta = typeof AccessCriteriaCriteriaListInnerBetaTypeBeta[keyof typeof AccessCriteriaCriteriaListInnerBetaTypeBeta];
116
116
 
117
+ /**
118
+ *
119
+ * @export
120
+ * @interface AccessDurationBeta
121
+ */
122
+ export interface AccessDurationBeta {
123
+ /**
124
+ * The numeric value representing the amount of time, which is defined in the **timeUnit**.
125
+ * @type {number}
126
+ * @memberof AccessDurationBeta
127
+ */
128
+ 'value'?: number;
129
+ /**
130
+ * The unit of time that corresponds to the **value**. It defines the scale of the time period.
131
+ * @type {string}
132
+ * @memberof AccessDurationBeta
133
+ */
134
+ 'timeUnit'?: AccessDurationBetaTimeUnitBeta;
135
+ }
136
+
137
+ export const AccessDurationBetaTimeUnitBeta = {
138
+ Hours: 'HOURS',
139
+ Days: 'DAYS',
140
+ Weeks: 'WEEKS',
141
+ Months: 'MONTHS'
142
+ } as const;
143
+
144
+ export type AccessDurationBetaTimeUnitBeta = typeof AccessDurationBetaTimeUnitBeta[keyof typeof AccessDurationBetaTimeUnitBeta];
145
+
117
146
  /**
118
147
  *
119
148
  * @export
@@ -1081,12 +1110,24 @@ export interface AccessProfileBeta {
1081
1110
  * @memberof AccessProfileBeta
1082
1111
  */
1083
1112
  'segments'?: Array<string> | null;
1113
+ /**
1114
+ *
1115
+ * @type {AttributeDTOListBeta}
1116
+ * @memberof AccessProfileBeta
1117
+ */
1118
+ 'accessModelMetadata'?: AttributeDTOListBeta;
1084
1119
  /**
1085
1120
  *
1086
1121
  * @type {ProvisioningCriteriaLevel1Beta}
1087
1122
  * @memberof AccessProfileBeta
1088
1123
  */
1089
1124
  'provisioningCriteria'?: ProvisioningCriteriaLevel1Beta | null;
1125
+ /**
1126
+ *
1127
+ * @type {Array<OwnerReferenceBeta>}
1128
+ * @memberof AccessProfileBeta
1129
+ */
1130
+ 'additionalOwners'?: Array<OwnerReferenceBeta> | null;
1090
1131
  }
1091
1132
  /**
1092
1133
  *
@@ -1468,6 +1509,230 @@ export interface AccessRecommendationMessageBeta {
1468
1509
  */
1469
1510
  'interpretation'?: string;
1470
1511
  }
1512
+ /**
1513
+ *
1514
+ * @export
1515
+ * @interface AccessRequestAdminItemStatusBeta
1516
+ */
1517
+ export interface AccessRequestAdminItemStatusBeta {
1518
+ /**
1519
+ * ID of the access request. This is a new property as of 2025. Older access requests may not have an ID.
1520
+ * @type {string}
1521
+ * @memberof AccessRequestAdminItemStatusBeta
1522
+ */
1523
+ 'id'?: string | null;
1524
+ /**
1525
+ * Human-readable display name of the item being requested.
1526
+ * @type {string}
1527
+ * @memberof AccessRequestAdminItemStatusBeta
1528
+ */
1529
+ 'name'?: string | null;
1530
+ /**
1531
+ * Type of requested object.
1532
+ * @type {string}
1533
+ * @memberof AccessRequestAdminItemStatusBeta
1534
+ */
1535
+ 'type'?: AccessRequestAdminItemStatusBetaTypeBeta | null;
1536
+ /**
1537
+ *
1538
+ * @type {AccessRequestAdminItemStatusCancelledRequestDetailsBeta}
1539
+ * @memberof AccessRequestAdminItemStatusBeta
1540
+ */
1541
+ 'cancelledRequestDetails'?: AccessRequestAdminItemStatusCancelledRequestDetailsBeta;
1542
+ /**
1543
+ * List of localized error messages, if any, encountered during the approval/provisioning process.
1544
+ * @type {Array<Array<ErrorMessageDto1Beta>>}
1545
+ * @memberof AccessRequestAdminItemStatusBeta
1546
+ */
1547
+ 'errorMessages'?: Array<Array<ErrorMessageDto1Beta>> | null;
1548
+ /**
1549
+ *
1550
+ * @type {RequestedItemStatusRequestStateBeta}
1551
+ * @memberof AccessRequestAdminItemStatusBeta
1552
+ */
1553
+ 'state'?: RequestedItemStatusRequestStateBeta;
1554
+ /**
1555
+ * Approval details for each item.
1556
+ * @type {Array<ApprovalStatusDto1Beta>}
1557
+ * @memberof AccessRequestAdminItemStatusBeta
1558
+ */
1559
+ 'approvalDetails'?: Array<ApprovalStatusDto1Beta>;
1560
+ /**
1561
+ * Manual work items created for provisioning the item.
1562
+ * @type {Array<ManualWorkItemDetails1Beta>}
1563
+ * @memberof AccessRequestAdminItemStatusBeta
1564
+ */
1565
+ 'manualWorkItemDetails'?: Array<ManualWorkItemDetails1Beta> | null;
1566
+ /**
1567
+ * Id of associated account activity item.
1568
+ * @type {string}
1569
+ * @memberof AccessRequestAdminItemStatusBeta
1570
+ */
1571
+ 'accountActivityItemId'?: string;
1572
+ /**
1573
+ *
1574
+ * @type {AccessRequestTypeBeta}
1575
+ * @memberof AccessRequestAdminItemStatusBeta
1576
+ */
1577
+ 'requestType'?: AccessRequestTypeBeta | null;
1578
+ /**
1579
+ * When the request was last modified.
1580
+ * @type {string}
1581
+ * @memberof AccessRequestAdminItemStatusBeta
1582
+ */
1583
+ 'modified'?: string | null;
1584
+ /**
1585
+ * When the request was created.
1586
+ * @type {string}
1587
+ * @memberof AccessRequestAdminItemStatusBeta
1588
+ */
1589
+ 'created'?: string;
1590
+ /**
1591
+ *
1592
+ * @type {AccessItemRequesterBeta}
1593
+ * @memberof AccessRequestAdminItemStatusBeta
1594
+ */
1595
+ 'requester'?: AccessItemRequesterBeta;
1596
+ /**
1597
+ *
1598
+ * @type {RequestedItemStatusRequestedForBeta}
1599
+ * @memberof AccessRequestAdminItemStatusBeta
1600
+ */
1601
+ 'requestedFor'?: RequestedItemStatusRequestedForBeta;
1602
+ /**
1603
+ *
1604
+ * @type {RequestedItemStatusRequesterCommentBeta}
1605
+ * @memberof AccessRequestAdminItemStatusBeta
1606
+ */
1607
+ 'requesterComment'?: RequestedItemStatusRequesterCommentBeta;
1608
+ /**
1609
+ *
1610
+ * @type {AccessRequestAdminItemStatusSodViolationContextBeta}
1611
+ * @memberof AccessRequestAdminItemStatusBeta
1612
+ */
1613
+ 'sodViolationContext'?: AccessRequestAdminItemStatusSodViolationContextBeta;
1614
+ /**
1615
+ *
1616
+ * @type {RequestedItemStatusProvisioningDetailsBeta}
1617
+ * @memberof AccessRequestAdminItemStatusBeta
1618
+ */
1619
+ 'provisioningDetails'?: RequestedItemStatusProvisioningDetailsBeta;
1620
+ /**
1621
+ *
1622
+ * @type {RequestedItemStatusPreApprovalTriggerDetailsBeta}
1623
+ * @memberof AccessRequestAdminItemStatusBeta
1624
+ */
1625
+ 'preApprovalTriggerDetails'?: RequestedItemStatusPreApprovalTriggerDetailsBeta;
1626
+ /**
1627
+ * A list of Phases that the Access Request has gone through in order, to help determine the status of the request.
1628
+ * @type {Array<AccessRequestPhasesBeta>}
1629
+ * @memberof AccessRequestAdminItemStatusBeta
1630
+ */
1631
+ 'accessRequestPhases'?: Array<AccessRequestPhasesBeta> | null;
1632
+ /**
1633
+ * Description associated to the requested object.
1634
+ * @type {string}
1635
+ * @memberof AccessRequestAdminItemStatusBeta
1636
+ */
1637
+ 'description'?: string | null;
1638
+ /**
1639
+ * When the role access is scheduled for removal.
1640
+ * @type {string}
1641
+ * @memberof AccessRequestAdminItemStatusBeta
1642
+ */
1643
+ 'removeDate'?: string | null;
1644
+ /**
1645
+ * True if the request can be canceled.
1646
+ * @type {boolean}
1647
+ * @memberof AccessRequestAdminItemStatusBeta
1648
+ */
1649
+ 'cancelable'?: boolean;
1650
+ /**
1651
+ * True if re-auth is required.
1652
+ * @type {boolean}
1653
+ * @memberof AccessRequestAdminItemStatusBeta
1654
+ */
1655
+ 'reauthorizationRequired'?: boolean;
1656
+ /**
1657
+ * This is the account activity id.
1658
+ * @type {string}
1659
+ * @memberof AccessRequestAdminItemStatusBeta
1660
+ */
1661
+ 'accessRequestId'?: string;
1662
+ /**
1663
+ * Arbitrary key-value pairs, if any were included in the corresponding access request
1664
+ * @type {{ [key: string]: string; }}
1665
+ * @memberof AccessRequestAdminItemStatusBeta
1666
+ */
1667
+ 'clientMetadata'?: { [key: string]: string; } | null;
1668
+ }
1669
+
1670
+ export const AccessRequestAdminItemStatusBetaTypeBeta = {
1671
+ AccessProfile: 'ACCESS_PROFILE',
1672
+ Role: 'ROLE',
1673
+ Entitlement: 'ENTITLEMENT'
1674
+ } as const;
1675
+
1676
+ export type AccessRequestAdminItemStatusBetaTypeBeta = typeof AccessRequestAdminItemStatusBetaTypeBeta[keyof typeof AccessRequestAdminItemStatusBetaTypeBeta];
1677
+
1678
+ /**
1679
+ *
1680
+ * @export
1681
+ * @interface AccessRequestAdminItemStatusCancelledRequestDetailsBeta
1682
+ */
1683
+ export interface AccessRequestAdminItemStatusCancelledRequestDetailsBeta {
1684
+ /**
1685
+ * Comment made by the owner when cancelling the associated request.
1686
+ * @type {string}
1687
+ * @memberof AccessRequestAdminItemStatusCancelledRequestDetailsBeta
1688
+ */
1689
+ 'comment'?: string;
1690
+ /**
1691
+ *
1692
+ * @type {OwnerDtoBeta}
1693
+ * @memberof AccessRequestAdminItemStatusCancelledRequestDetailsBeta
1694
+ */
1695
+ 'owner'?: OwnerDtoBeta;
1696
+ /**
1697
+ * Date comment was added by the owner when cancelling the associated request.
1698
+ * @type {string}
1699
+ * @memberof AccessRequestAdminItemStatusCancelledRequestDetailsBeta
1700
+ */
1701
+ 'modified'?: string;
1702
+ }
1703
+ /**
1704
+ *
1705
+ * @export
1706
+ * @interface AccessRequestAdminItemStatusSodViolationContextBeta
1707
+ */
1708
+ export interface AccessRequestAdminItemStatusSodViolationContextBeta {
1709
+ /**
1710
+ * The status of SOD violation check
1711
+ * @type {string}
1712
+ * @memberof AccessRequestAdminItemStatusSodViolationContextBeta
1713
+ */
1714
+ 'state'?: AccessRequestAdminItemStatusSodViolationContextBetaStateBeta | null;
1715
+ /**
1716
+ * The id of the Violation check event
1717
+ * @type {string}
1718
+ * @memberof AccessRequestAdminItemStatusSodViolationContextBeta
1719
+ */
1720
+ 'uuid'?: string | null;
1721
+ /**
1722
+ *
1723
+ * @type {SodViolationCheckResult1Beta}
1724
+ * @memberof AccessRequestAdminItemStatusSodViolationContextBeta
1725
+ */
1726
+ 'violationCheckResult'?: SodViolationCheckResult1Beta;
1727
+ }
1728
+
1729
+ export const AccessRequestAdminItemStatusSodViolationContextBetaStateBeta = {
1730
+ Success: 'SUCCESS',
1731
+ Error: 'ERROR'
1732
+ } as const;
1733
+
1734
+ export type AccessRequestAdminItemStatusSodViolationContextBetaStateBeta = typeof AccessRequestAdminItemStatusSodViolationContextBetaStateBeta[keyof typeof AccessRequestAdminItemStatusSodViolationContextBetaStateBeta];
1735
+
1471
1736
  /**
1472
1737
  *
1473
1738
  * @export
@@ -4080,6 +4345,51 @@ export interface AppAccountDetailsSourceAccountBeta {
4080
4345
  */
4081
4346
  'sourceDisplayName'?: string;
4082
4347
  }
4348
+ /**
4349
+ *
4350
+ * @export
4351
+ * @interface ApprovalForwardHistory1Beta
4352
+ */
4353
+ export interface ApprovalForwardHistory1Beta {
4354
+ /**
4355
+ * Display name of approver from whom the approval was forwarded.
4356
+ * @type {string}
4357
+ * @memberof ApprovalForwardHistory1Beta
4358
+ */
4359
+ 'oldApproverName'?: string;
4360
+ /**
4361
+ * Display name of approver to whom the approval was forwarded.
4362
+ * @type {string}
4363
+ * @memberof ApprovalForwardHistory1Beta
4364
+ */
4365
+ 'newApproverName'?: string;
4366
+ /**
4367
+ * Comment made while forwarding.
4368
+ * @type {string}
4369
+ * @memberof ApprovalForwardHistory1Beta
4370
+ */
4371
+ 'comment'?: string | null;
4372
+ /**
4373
+ * Time at which approval was forwarded.
4374
+ * @type {string}
4375
+ * @memberof ApprovalForwardHistory1Beta
4376
+ */
4377
+ 'modified'?: string;
4378
+ /**
4379
+ * Display name of forwarder who forwarded the approval.
4380
+ * @type {string}
4381
+ * @memberof ApprovalForwardHistory1Beta
4382
+ */
4383
+ 'forwarderName'?: string | null;
4384
+ /**
4385
+ *
4386
+ * @type {ReassignmentTypeBeta}
4387
+ * @memberof ApprovalForwardHistory1Beta
4388
+ */
4389
+ 'reassignmentType'?: ReassignmentTypeBeta;
4390
+ }
4391
+
4392
+
4083
4393
  /**
4084
4394
  *
4085
4395
  * @export
@@ -4348,6 +4658,69 @@ export const ApprovalStatusBeta = {
4348
4658
  export type ApprovalStatusBeta = typeof ApprovalStatusBeta[keyof typeof ApprovalStatusBeta];
4349
4659
 
4350
4660
 
4661
+ /**
4662
+ *
4663
+ * @export
4664
+ * @interface ApprovalStatusDto1Beta
4665
+ */
4666
+ export interface ApprovalStatusDto1Beta {
4667
+ /**
4668
+ * True if the request for this item was forwarded from one owner to another.
4669
+ * @type {boolean}
4670
+ * @memberof ApprovalStatusDto1Beta
4671
+ */
4672
+ 'forwarded'?: boolean;
4673
+ /**
4674
+ *
4675
+ * @type {ApprovalStatusDtoOriginalOwnerBeta}
4676
+ * @memberof ApprovalStatusDto1Beta
4677
+ */
4678
+ 'originalOwner'?: ApprovalStatusDtoOriginalOwnerBeta;
4679
+ /**
4680
+ *
4681
+ * @type {ApprovalStatusDtoCurrentOwnerBeta}
4682
+ * @memberof ApprovalStatusDto1Beta
4683
+ */
4684
+ 'currentOwner'?: ApprovalStatusDtoCurrentOwnerBeta;
4685
+ /**
4686
+ * Time at which item was modified.
4687
+ * @type {string}
4688
+ * @memberof ApprovalStatusDto1Beta
4689
+ */
4690
+ 'modified'?: string | null;
4691
+ /**
4692
+ *
4693
+ * @type {ManualWorkItemStateBeta}
4694
+ * @memberof ApprovalStatusDto1Beta
4695
+ */
4696
+ 'status'?: ManualWorkItemStateBeta;
4697
+ /**
4698
+ *
4699
+ * @type {ApprovalSchemeBeta}
4700
+ * @memberof ApprovalStatusDto1Beta
4701
+ */
4702
+ 'scheme'?: ApprovalSchemeBeta;
4703
+ /**
4704
+ * If the request failed, includes any error messages that were generated.
4705
+ * @type {Array<ErrorMessageDto1Beta>}
4706
+ * @memberof ApprovalStatusDto1Beta
4707
+ */
4708
+ 'errorMessages'?: Array<ErrorMessageDto1Beta> | null;
4709
+ /**
4710
+ * Comment, if any, provided by the approver.
4711
+ * @type {string}
4712
+ * @memberof ApprovalStatusDto1Beta
4713
+ */
4714
+ 'comment'?: string | null;
4715
+ /**
4716
+ * The date the role or access profile or entitlement is no longer assigned to the specified identity.
4717
+ * @type {string}
4718
+ * @memberof ApprovalStatusDto1Beta
4719
+ */
4720
+ 'removeDate'?: string | null;
4721
+ }
4722
+
4723
+
4351
4724
  /**
4352
4725
  *
4353
4726
  * @export
@@ -6243,6 +6616,31 @@ export interface CancelableAccountActivityBeta {
6243
6616
  }
6244
6617
 
6245
6618
 
6619
+ /**
6620
+ * Provides additional details for a request that has been cancelled.
6621
+ * @export
6622
+ * @interface CancelledRequestDetails1Beta
6623
+ */
6624
+ export interface CancelledRequestDetails1Beta {
6625
+ /**
6626
+ * Comment made by the owner when cancelling the associated request.
6627
+ * @type {string}
6628
+ * @memberof CancelledRequestDetails1Beta
6629
+ */
6630
+ 'comment'?: string;
6631
+ /**
6632
+ *
6633
+ * @type {OwnerDtoBeta}
6634
+ * @memberof CancelledRequestDetails1Beta
6635
+ */
6636
+ 'owner'?: OwnerDtoBeta;
6637
+ /**
6638
+ * Date comment was added by the owner when cancelling the associated request.
6639
+ * @type {string}
6640
+ * @memberof CancelledRequestDetails1Beta
6641
+ */
6642
+ 'modified'?: string;
6643
+ }
6246
6644
  /**
6247
6645
  * Provides additional details for a request that has been cancelled.
6248
6646
  * @export
@@ -7347,10 +7745,10 @@ export interface CompletedApprovalBeta {
7347
7745
  'currentRemoveDate'?: string | null;
7348
7746
  /**
7349
7747
  *
7350
- * @type {SodViolationContextCheckCompleted1Beta}
7748
+ * @type {SodViolationContextCheckCompleted2Beta}
7351
7749
  * @memberof CompletedApprovalBeta
7352
7750
  */
7353
- 'sodViolationContext'?: SodViolationContextCheckCompleted1Beta | null;
7751
+ 'sodViolationContext'?: SodViolationContextCheckCompleted2Beta | null;
7354
7752
  /**
7355
7753
  *
7356
7754
  * @type {CompletedApprovalPreApprovalTriggerResultBeta}
@@ -7375,6 +7773,12 @@ export interface CompletedApprovalBeta {
7375
7773
  * @memberof CompletedApprovalBeta
7376
7774
  */
7377
7775
  'privilegeLevel'?: string | null;
7776
+ /**
7777
+ *
7778
+ * @type {PendingApprovalMaxPermittedAccessDurationBeta}
7779
+ * @memberof CompletedApprovalBeta
7780
+ */
7781
+ 'maxPermittedAccessDuration'?: PendingApprovalMaxPermittedAccessDurationBeta | null;
7378
7782
  }
7379
7783
 
7380
7784
 
@@ -9568,6 +9972,18 @@ export interface EntitlementAccessRequestConfigBeta {
9568
9972
  * @memberof EntitlementAccessRequestConfigBeta
9569
9973
  */
9570
9974
  'reauthorizationRequired'?: boolean;
9975
+ /**
9976
+ * If true, then remove date or sunset date is required in access request of the entitlement.
9977
+ * @type {boolean}
9978
+ * @memberof EntitlementAccessRequestConfigBeta
9979
+ */
9980
+ 'requireEndDate'?: boolean;
9981
+ /**
9982
+ *
9983
+ * @type {PendingApprovalMaxPermittedAccessDurationBeta}
9984
+ * @memberof EntitlementAccessRequestConfigBeta
9985
+ */
9986
+ 'maxPermittedAccessDuration'?: PendingApprovalMaxPermittedAccessDurationBeta | null;
9571
9987
  }
9572
9988
  /**
9573
9989
  *
@@ -9998,6 +10414,33 @@ export interface ErrorMessageBeta {
9998
10414
  */
9999
10415
  'text'?: string;
10000
10416
  }
10417
+ /**
10418
+ *
10419
+ * @export
10420
+ * @interface ErrorMessageDto1Beta
10421
+ */
10422
+ export interface ErrorMessageDto1Beta {
10423
+ /**
10424
+ * The locale for the message text, a BCP 47 language tag.
10425
+ * @type {string}
10426
+ * @memberof ErrorMessageDto1Beta
10427
+ */
10428
+ 'locale'?: string | null;
10429
+ /**
10430
+ *
10431
+ * @type {LocaleOriginBeta}
10432
+ * @memberof ErrorMessageDto1Beta
10433
+ */
10434
+ 'localeOrigin'?: LocaleOriginBeta | null;
10435
+ /**
10436
+ * Actual text of the error message in the indicated locale.
10437
+ * @type {string}
10438
+ * @memberof ErrorMessageDto1Beta
10439
+ */
10440
+ 'text'?: string;
10441
+ }
10442
+
10443
+
10001
10444
  /**
10002
10445
  *
10003
10446
  * @export
@@ -14875,12 +15318,8 @@ export interface JsonPatchOperationBeta {
14875
15318
  }
14876
15319
 
14877
15320
  export const JsonPatchOperationBetaOpBeta = {
14878
- Add: 'add',
14879
15321
  Remove: 'remove',
14880
- Replace: 'replace',
14881
- Move: 'move',
14882
- Copy: 'copy',
14883
- Test: 'test'
15322
+ Replace: 'replace'
14884
15323
  } as const;
14885
15324
 
14886
15325
  export type JsonPatchOperationBetaOpBeta = typeof JsonPatchOperationBetaOpBeta[keyof typeof JsonPatchOperationBetaOpBeta];
@@ -16764,8 +17203,78 @@ export interface ManagedClusterBeta {
16764
17203
  * @memberof ManagedClusterBeta
16765
17204
  */
16766
17205
  'updatedAt'?: string | null;
17206
+ /**
17207
+ * The date/time this cluster was notified for the last release
17208
+ * @type {string}
17209
+ * @memberof ManagedClusterBeta
17210
+ */
17211
+ 'lastReleaseNotifiedAt'?: string | null;
17212
+ /**
17213
+ *
17214
+ * @type {ManagedClusterUpdatePreferencesBeta}
17215
+ * @memberof ManagedClusterBeta
17216
+ */
17217
+ 'updatePreferences'?: ManagedClusterUpdatePreferencesBeta;
17218
+ /**
17219
+ * The current installed release on the Managed cluster
17220
+ * @type {string}
17221
+ * @memberof ManagedClusterBeta
17222
+ */
17223
+ 'currentInstalledReleaseVersion'?: string | null;
17224
+ /**
17225
+ * New available updates for the Managed cluster
17226
+ * @type {string}
17227
+ * @memberof ManagedClusterBeta
17228
+ */
17229
+ 'updatePackage'?: string | null;
17230
+ /**
17231
+ * The time at which out of date notification was sent for the Managed cluster
17232
+ * @type {string}
17233
+ * @memberof ManagedClusterBeta
17234
+ */
17235
+ 'isOutOfDateNotifiedAt'?: string | null;
17236
+ /**
17237
+ * The consolidated Health Status for the Managed cluster
17238
+ * @type {string}
17239
+ * @memberof ManagedClusterBeta
17240
+ */
17241
+ 'consolidatedHealthIndicatorsStatus'?: ManagedClusterBetaConsolidatedHealthIndicatorsStatusBeta | null;
17242
+ /**
17243
+ *
17244
+ * @type {ManagedClusterEncryptionConfigBeta}
17245
+ * @memberof ManagedClusterBeta
17246
+ */
17247
+ 'encryptionConfiguration'?: ManagedClusterEncryptionConfigBeta;
17248
+ }
17249
+
17250
+ export const ManagedClusterBetaConsolidatedHealthIndicatorsStatusBeta = {
17251
+ Normal: 'NORMAL',
17252
+ Warning: 'WARNING',
17253
+ Error: 'ERROR'
17254
+ } as const;
17255
+
17256
+ export type ManagedClusterBetaConsolidatedHealthIndicatorsStatusBeta = typeof ManagedClusterBetaConsolidatedHealthIndicatorsStatusBeta[keyof typeof ManagedClusterBetaConsolidatedHealthIndicatorsStatusBeta];
17257
+
17258
+ /**
17259
+ * Defines the encryption settings for a managed cluster, including the format used for storing and processing encrypted data.
17260
+ * @export
17261
+ * @interface ManagedClusterEncryptionConfigBeta
17262
+ */
17263
+ export interface ManagedClusterEncryptionConfigBeta {
17264
+ /**
17265
+ * Specifies the format used for encrypted data, such as secrets. The format determines how the encrypted data is structured and processed.
17266
+ * @type {string}
17267
+ * @memberof ManagedClusterEncryptionConfigBeta
17268
+ */
17269
+ 'format'?: ManagedClusterEncryptionConfigBetaFormatBeta;
16767
17270
  }
16768
17271
 
17272
+ export const ManagedClusterEncryptionConfigBetaFormatBeta = {
17273
+ V2: 'V2',
17274
+ V3: 'V3'
17275
+ } as const;
17276
+
17277
+ export type ManagedClusterEncryptionConfigBetaFormatBeta = typeof ManagedClusterEncryptionConfigBetaFormatBeta[keyof typeof ManagedClusterEncryptionConfigBetaFormatBeta];
16769
17278
 
16770
17279
  /**
16771
17280
  * Managed Cluster key pair for Cluster
@@ -16831,19 +17340,60 @@ export interface ManagedClusterRedisBeta {
16831
17340
  'redisPort'?: number;
16832
17341
  }
16833
17342
  /**
16834
- * The Type of Cluster
17343
+ * 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
16835
17344
  * @export
16836
17345
  * @enum {string}
16837
17346
  */
16838
17347
 
16839
17348
  export const ManagedClusterTypesBeta = {
16840
17349
  Idn: 'idn',
16841
- Iai: 'iai'
17350
+ Iai: 'iai',
17351
+ SpConnectCluster: 'spConnectCluster',
17352
+ SqsCluster: 'sqsCluster',
17353
+ DasRc: 'das-rc',
17354
+ DasPc: 'das-pc',
17355
+ DasDc: 'das-dc',
17356
+ Pag: 'pag',
17357
+ DasAm: 'das-am',
17358
+ Standard: 'standard'
16842
17359
  } as const;
16843
17360
 
16844
17361
  export type ManagedClusterTypesBeta = typeof ManagedClusterTypesBeta[keyof typeof ManagedClusterTypesBeta];
16845
17362
 
16846
17363
 
17364
+ /**
17365
+ * The preference for applying updates for the cluster
17366
+ * @export
17367
+ * @interface ManagedClusterUpdatePreferencesBeta
17368
+ */
17369
+ export interface ManagedClusterUpdatePreferencesBeta {
17370
+ /**
17371
+ * The processGroups for updatePreferences
17372
+ * @type {string}
17373
+ * @memberof ManagedClusterUpdatePreferencesBeta
17374
+ */
17375
+ 'processGroups'?: string | null;
17376
+ /**
17377
+ * The current updateState for the cluster
17378
+ * @type {string}
17379
+ * @memberof ManagedClusterUpdatePreferencesBeta
17380
+ */
17381
+ 'updateState'?: ManagedClusterUpdatePreferencesBetaUpdateStateBeta | null;
17382
+ /**
17383
+ * The mail id to which new releases will be notified
17384
+ * @type {string}
17385
+ * @memberof ManagedClusterUpdatePreferencesBeta
17386
+ */
17387
+ 'notificationEmail'?: string | null;
17388
+ }
17389
+
17390
+ export const ManagedClusterUpdatePreferencesBetaUpdateStateBeta = {
17391
+ Auto: 'AUTO',
17392
+ Disabled: 'DISABLED'
17393
+ } as const;
17394
+
17395
+ export type ManagedClusterUpdatePreferencesBetaUpdateStateBeta = typeof ManagedClusterUpdatePreferencesBetaUpdateStateBeta[keyof typeof ManagedClusterUpdatePreferencesBetaUpdateStateBeta];
17396
+
16847
17397
  /**
16848
17398
  *
16849
17399
  * @export
@@ -16895,6 +17445,51 @@ export interface ManualDiscoverApplicationsTemplateBeta {
16895
17445
  */
16896
17446
  'description'?: string;
16897
17447
  }
17448
+ /**
17449
+ *
17450
+ * @export
17451
+ * @interface ManualWorkItemDetails1Beta
17452
+ */
17453
+ export interface ManualWorkItemDetails1Beta {
17454
+ /**
17455
+ * True if the request for this item was forwarded from one owner to another.
17456
+ * @type {boolean}
17457
+ * @memberof ManualWorkItemDetails1Beta
17458
+ */
17459
+ 'forwarded'?: boolean;
17460
+ /**
17461
+ *
17462
+ * @type {ManualWorkItemDetailsOriginalOwnerBeta}
17463
+ * @memberof ManualWorkItemDetails1Beta
17464
+ */
17465
+ 'originalOwner'?: ManualWorkItemDetailsOriginalOwnerBeta | null;
17466
+ /**
17467
+ *
17468
+ * @type {ManualWorkItemDetailsCurrentOwnerBeta}
17469
+ * @memberof ManualWorkItemDetails1Beta
17470
+ */
17471
+ 'currentOwner'?: ManualWorkItemDetailsCurrentOwnerBeta | null;
17472
+ /**
17473
+ * Time at which item was modified.
17474
+ * @type {string}
17475
+ * @memberof ManualWorkItemDetails1Beta
17476
+ */
17477
+ 'modified'?: string;
17478
+ /**
17479
+ *
17480
+ * @type {ManualWorkItemStateBeta}
17481
+ * @memberof ManualWorkItemDetails1Beta
17482
+ */
17483
+ 'status'?: ManualWorkItemStateBeta;
17484
+ /**
17485
+ * The history of approval forward action.
17486
+ * @type {Array<ApprovalForwardHistory1Beta>}
17487
+ * @memberof ManualWorkItemDetails1Beta
17488
+ */
17489
+ 'forwardHistory'?: Array<ApprovalForwardHistory1Beta> | null;
17490
+ }
17491
+
17492
+
16898
17493
  /**
16899
17494
  *
16900
17495
  * @export
@@ -20703,35 +21298,35 @@ export type PatOwnerBetaTypeBeta = typeof PatOwnerBetaTypeBeta[keyof typeof PatO
20703
21298
  /**
20704
21299
  *
20705
21300
  * @export
20706
- * @interface PatchPotentialRoleRequestInnerBeta
21301
+ * @interface PatchRoleMiningPotentialRoleRequestInnerBeta
20707
21302
  */
20708
- export interface PatchPotentialRoleRequestInnerBeta {
21303
+ export interface PatchRoleMiningPotentialRoleRequestInnerBeta {
20709
21304
  /**
20710
21305
  * The operation to be performed
20711
21306
  * @type {string}
20712
- * @memberof PatchPotentialRoleRequestInnerBeta
21307
+ * @memberof PatchRoleMiningPotentialRoleRequestInnerBeta
20713
21308
  */
20714
- 'op'?: PatchPotentialRoleRequestInnerBetaOpBeta;
21309
+ 'op'?: PatchRoleMiningPotentialRoleRequestInnerBetaOpBeta;
20715
21310
  /**
20716
21311
  * A string JSON Pointer representing the target path to an element to be affected by the operation
20717
21312
  * @type {string}
20718
- * @memberof PatchPotentialRoleRequestInnerBeta
21313
+ * @memberof PatchRoleMiningPotentialRoleRequestInnerBeta
20719
21314
  */
20720
21315
  'path': string;
20721
21316
  /**
20722
21317
  *
20723
21318
  * @type {UpdateMultiHostSourcesRequestInnerValueBeta}
20724
- * @memberof PatchPotentialRoleRequestInnerBeta
21319
+ * @memberof PatchRoleMiningPotentialRoleRequestInnerBeta
20725
21320
  */
20726
21321
  'value'?: UpdateMultiHostSourcesRequestInnerValueBeta;
20727
21322
  }
20728
21323
 
20729
- export const PatchPotentialRoleRequestInnerBetaOpBeta = {
21324
+ export const PatchRoleMiningPotentialRoleRequestInnerBetaOpBeta = {
20730
21325
  Remove: 'remove',
20731
21326
  Replace: 'replace'
20732
21327
  } as const;
20733
21328
 
20734
- export type PatchPotentialRoleRequestInnerBetaOpBeta = typeof PatchPotentialRoleRequestInnerBetaOpBeta[keyof typeof PatchPotentialRoleRequestInnerBetaOpBeta];
21329
+ export type PatchRoleMiningPotentialRoleRequestInnerBetaOpBeta = typeof PatchRoleMiningPotentialRoleRequestInnerBetaOpBeta[keyof typeof PatchRoleMiningPotentialRoleRequestInnerBetaOpBeta];
20735
21330
 
20736
21331
  /**
20737
21332
  *
@@ -20895,10 +21490,10 @@ export interface PendingApprovalBeta {
20895
21490
  'currentRemoveDate'?: string;
20896
21491
  /**
20897
21492
  *
20898
- * @type {SodViolationContextCheckCompleted1Beta}
21493
+ * @type {SodViolationContextCheckCompleted2Beta}
20899
21494
  * @memberof PendingApprovalBeta
20900
21495
  */
20901
- 'sodViolationContext'?: SodViolationContextCheckCompleted1Beta | null;
21496
+ 'sodViolationContext'?: SodViolationContextCheckCompleted2Beta | null;
20902
21497
  /**
20903
21498
  * Arbitrary key-value pairs, if any were included in the corresponding access request item
20904
21499
  * @type {{ [key: string]: string; }}
@@ -20917,9 +21512,44 @@ export interface PendingApprovalBeta {
20917
21512
  * @memberof PendingApprovalBeta
20918
21513
  */
20919
21514
  'privilegeLevel'?: string | null;
21515
+ /**
21516
+ *
21517
+ * @type {PendingApprovalMaxPermittedAccessDurationBeta}
21518
+ * @memberof PendingApprovalBeta
21519
+ */
21520
+ 'maxPermittedAccessDuration'?: PendingApprovalMaxPermittedAccessDurationBeta | null;
20920
21521
  }
20921
21522
 
20922
21523
 
21524
+ /**
21525
+ * The maximum duration for which the access is permitted.
21526
+ * @export
21527
+ * @interface PendingApprovalMaxPermittedAccessDurationBeta
21528
+ */
21529
+ export interface PendingApprovalMaxPermittedAccessDurationBeta {
21530
+ /**
21531
+ * The numeric value of the duration.
21532
+ * @type {number}
21533
+ * @memberof PendingApprovalMaxPermittedAccessDurationBeta
21534
+ */
21535
+ 'value'?: number;
21536
+ /**
21537
+ * The time unit for the duration.
21538
+ * @type {string}
21539
+ * @memberof PendingApprovalMaxPermittedAccessDurationBeta
21540
+ */
21541
+ 'timeUnit'?: PendingApprovalMaxPermittedAccessDurationBetaTimeUnitBeta;
21542
+ }
21543
+
21544
+ export const PendingApprovalMaxPermittedAccessDurationBetaTimeUnitBeta = {
21545
+ Hours: 'HOURS',
21546
+ Days: 'DAYS',
21547
+ Weeks: 'WEEKS',
21548
+ Months: 'MONTHS'
21549
+ } as const;
21550
+
21551
+ export type PendingApprovalMaxPermittedAccessDurationBetaTimeUnitBeta = typeof PendingApprovalMaxPermittedAccessDurationBetaTimeUnitBeta[keyof typeof PendingApprovalMaxPermittedAccessDurationBetaTimeUnitBeta];
21552
+
20923
21553
  /**
20924
21554
  * 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.
20925
21555
  * @export
@@ -22483,6 +23113,18 @@ export interface RequestabilityBeta {
22483
23113
  * @memberof RequestabilityBeta
22484
23114
  */
22485
23115
  'reauthorizationRequired'?: boolean | null;
23116
+ /**
23117
+ * Indicates whether the requester of the containing object must provide access end date.
23118
+ * @type {boolean}
23119
+ * @memberof RequestabilityBeta
23120
+ */
23121
+ 'requireEndDate'?: boolean | null;
23122
+ /**
23123
+ *
23124
+ * @type {AccessDurationBeta}
23125
+ * @memberof RequestabilityBeta
23126
+ */
23127
+ 'maxPermittedAccessDuration'?: AccessDurationBeta | null;
22486
23128
  /**
22487
23129
  * List describing the steps involved in approving the request.
22488
23130
  * @type {Array<AccessProfileApprovalSchemeBeta>}
@@ -24490,10 +25132,29 @@ export interface RoleMiningIdentityDistributionBeta {
24490
25132
  'attributeName'?: string;
24491
25133
  /**
24492
25134
  *
24493
- * @type {Array<{ [key: string]: string; }>}
25135
+ * @type {Array<RoleMiningIdentityDistributionDistributionInnerBeta>}
24494
25136
  * @memberof RoleMiningIdentityDistributionBeta
24495
25137
  */
24496
- 'distribution'?: Array<{ [key: string]: string; }>;
25138
+ 'distribution'?: Array<RoleMiningIdentityDistributionDistributionInnerBeta>;
25139
+ }
25140
+ /**
25141
+ *
25142
+ * @export
25143
+ * @interface RoleMiningIdentityDistributionDistributionInnerBeta
25144
+ */
25145
+ export interface RoleMiningIdentityDistributionDistributionInnerBeta {
25146
+ /**
25147
+ * The attribute value that identities are grouped by
25148
+ * @type {string}
25149
+ * @memberof RoleMiningIdentityDistributionDistributionInnerBeta
25150
+ */
25151
+ 'attributeValue'?: string;
25152
+ /**
25153
+ * The number of identities that have this attribute value
25154
+ * @type {number}
25155
+ * @memberof RoleMiningIdentityDistributionDistributionInnerBeta
25156
+ */
25157
+ 'count'?: number;
24497
25158
  }
24498
25159
  /**
24499
25160
  *
@@ -27386,6 +28047,39 @@ export interface SodExemptCriteria1Beta {
27386
28047
  }
27387
28048
 
27388
28049
 
28050
+ /**
28051
+ * Details of the Entitlement criteria
28052
+ * @export
28053
+ * @interface SodExemptCriteria2Beta
28054
+ */
28055
+ export interface SodExemptCriteria2Beta {
28056
+ /**
28057
+ * If the entitlement already belonged to the user or not.
28058
+ * @type {boolean}
28059
+ * @memberof SodExemptCriteria2Beta
28060
+ */
28061
+ 'existing'?: boolean;
28062
+ /**
28063
+ *
28064
+ * @type {DtoTypeBeta}
28065
+ * @memberof SodExemptCriteria2Beta
28066
+ */
28067
+ 'type'?: DtoTypeBeta;
28068
+ /**
28069
+ * Entitlement ID
28070
+ * @type {string}
28071
+ * @memberof SodExemptCriteria2Beta
28072
+ */
28073
+ 'id'?: string;
28074
+ /**
28075
+ * Entitlement name
28076
+ * @type {string}
28077
+ * @memberof SodExemptCriteria2Beta
28078
+ */
28079
+ 'name'?: string;
28080
+ }
28081
+
28082
+
27389
28083
  /**
27390
28084
  * Details of the Entitlement criteria
27391
28085
  * @export
@@ -27797,27 +28491,58 @@ export type SodReportResultDtoBetaTypeBeta = typeof SodReportResultDtoBetaTypeBe
27797
28491
  export interface SodViolationCheckResult1Beta {
27798
28492
  /**
27799
28493
  *
27800
- * @type {ErrorMessageDtoBeta}
28494
+ * @type {ErrorMessageDto1Beta}
27801
28495
  * @memberof SodViolationCheckResult1Beta
27802
28496
  */
27803
- 'message'?: ErrorMessageDtoBeta;
28497
+ 'message'?: ErrorMessageDto1Beta;
27804
28498
  /**
27805
28499
  * Arbitrary key-value pairs. They will never be processed by the IdentityNow system but will be returned on completion of the violation check.
27806
28500
  * @type {{ [key: string]: string; }}
27807
28501
  * @memberof SodViolationCheckResult1Beta
27808
28502
  */
27809
- 'clientMetadata'?: { [key: string]: string; };
28503
+ 'clientMetadata'?: { [key: string]: string; } | null;
27810
28504
  /**
27811
28505
  *
27812
28506
  * @type {Array<SodViolationContext1Beta>}
27813
28507
  * @memberof SodViolationCheckResult1Beta
27814
28508
  */
27815
- 'violationContexts'?: Array<SodViolationContext1Beta>;
28509
+ 'violationContexts'?: Array<SodViolationContext1Beta> | null;
27816
28510
  /**
27817
- * A list of the Policies that were violated.
28511
+ * A list of the SOD policies that were violated.
27818
28512
  * @type {Array<SodPolicyDto1Beta>}
27819
28513
  * @memberof SodViolationCheckResult1Beta
27820
28514
  */
28515
+ 'violatedPolicies'?: Array<SodPolicyDto1Beta> | null;
28516
+ }
28517
+ /**
28518
+ * The inner object representing the completed SOD Violation check
28519
+ * @export
28520
+ * @interface SodViolationCheckResult2Beta
28521
+ */
28522
+ export interface SodViolationCheckResult2Beta {
28523
+ /**
28524
+ *
28525
+ * @type {ErrorMessageDtoBeta}
28526
+ * @memberof SodViolationCheckResult2Beta
28527
+ */
28528
+ 'message'?: ErrorMessageDtoBeta;
28529
+ /**
28530
+ * Arbitrary key-value pairs. They will never be processed by the IdentityNow system but will be returned on completion of the violation check.
28531
+ * @type {{ [key: string]: string; }}
28532
+ * @memberof SodViolationCheckResult2Beta
28533
+ */
28534
+ 'clientMetadata'?: { [key: string]: string; };
28535
+ /**
28536
+ *
28537
+ * @type {Array<SodViolationContext2Beta>}
28538
+ * @memberof SodViolationCheckResult2Beta
28539
+ */
28540
+ 'violationContexts'?: Array<SodViolationContext2Beta>;
28541
+ /**
28542
+ * A list of the Policies that were violated.
28543
+ * @type {Array<SodPolicyDto1Beta>}
28544
+ * @memberof SodViolationCheckResult2Beta
28545
+ */
27821
28546
  'violatedPolicies'?: Array<SodPolicyDto1Beta>;
27822
28547
  }
27823
28548
  /**
@@ -27852,7 +28577,7 @@ export interface SodViolationCheckResultBeta {
27852
28577
  'violatedPolicies'?: Array<SodPolicyDto1Beta> | null;
27853
28578
  }
27854
28579
  /**
27855
- * The contextual information of the violated criteria.
28580
+ * The contextual information of the violated criteria
27856
28581
  * @export
27857
28582
  * @interface SodViolationContext1Beta
27858
28583
  */
@@ -27902,6 +28627,57 @@ export interface SodViolationContext1ConflictingAccessCriteriaLeftCriteriaBeta {
27902
28627
  */
27903
28628
  'criteriaList'?: Array<SodExemptCriteria1Beta>;
27904
28629
  }
28630
+ /**
28631
+ * The contextual information of the violated criteria.
28632
+ * @export
28633
+ * @interface SodViolationContext2Beta
28634
+ */
28635
+ export interface SodViolationContext2Beta {
28636
+ /**
28637
+ *
28638
+ * @type {SodPolicyDto1Beta}
28639
+ * @memberof SodViolationContext2Beta
28640
+ */
28641
+ 'policy'?: SodPolicyDto1Beta;
28642
+ /**
28643
+ *
28644
+ * @type {SodViolationContext2ConflictingAccessCriteriaBeta}
28645
+ * @memberof SodViolationContext2Beta
28646
+ */
28647
+ 'conflictingAccessCriteria'?: SodViolationContext2ConflictingAccessCriteriaBeta;
28648
+ }
28649
+ /**
28650
+ * The object which contains the left and right hand side of the entitlements that got violated according to the policy.
28651
+ * @export
28652
+ * @interface SodViolationContext2ConflictingAccessCriteriaBeta
28653
+ */
28654
+ export interface SodViolationContext2ConflictingAccessCriteriaBeta {
28655
+ /**
28656
+ *
28657
+ * @type {SodViolationContext2ConflictingAccessCriteriaLeftCriteriaBeta}
28658
+ * @memberof SodViolationContext2ConflictingAccessCriteriaBeta
28659
+ */
28660
+ 'leftCriteria'?: SodViolationContext2ConflictingAccessCriteriaLeftCriteriaBeta;
28661
+ /**
28662
+ *
28663
+ * @type {SodViolationContext2ConflictingAccessCriteriaLeftCriteriaBeta}
28664
+ * @memberof SodViolationContext2ConflictingAccessCriteriaBeta
28665
+ */
28666
+ 'rightCriteria'?: SodViolationContext2ConflictingAccessCriteriaLeftCriteriaBeta;
28667
+ }
28668
+ /**
28669
+ *
28670
+ * @export
28671
+ * @interface SodViolationContext2ConflictingAccessCriteriaLeftCriteriaBeta
28672
+ */
28673
+ export interface SodViolationContext2ConflictingAccessCriteriaLeftCriteriaBeta {
28674
+ /**
28675
+ *
28676
+ * @type {Array<SodExemptCriteria2Beta>}
28677
+ * @memberof SodViolationContext2ConflictingAccessCriteriaLeftCriteriaBeta
28678
+ */
28679
+ 'criteriaList'?: Array<SodExemptCriteria2Beta>;
28680
+ }
27905
28681
  /**
27906
28682
  * The contextual information of the violated criteria
27907
28683
  * @export
@@ -27932,13 +28708,13 @@ export interface SodViolationContextCheckCompleted1Beta {
27932
28708
  * @type {string}
27933
28709
  * @memberof SodViolationContextCheckCompleted1Beta
27934
28710
  */
27935
- 'state'?: SodViolationContextCheckCompleted1BetaStateBeta;
28711
+ 'state'?: SodViolationContextCheckCompleted1BetaStateBeta | null;
27936
28712
  /**
27937
28713
  * The id of the Violation check event
27938
28714
  * @type {string}
27939
28715
  * @memberof SodViolationContextCheckCompleted1Beta
27940
28716
  */
27941
- 'uuid'?: string;
28717
+ 'uuid'?: string | null;
27942
28718
  /**
27943
28719
  *
27944
28720
  * @type {SodViolationCheckResult1Beta}
@@ -27954,6 +28730,39 @@ export const SodViolationContextCheckCompleted1BetaStateBeta = {
27954
28730
 
27955
28731
  export type SodViolationContextCheckCompleted1BetaStateBeta = typeof SodViolationContextCheckCompleted1BetaStateBeta[keyof typeof SodViolationContextCheckCompleted1BetaStateBeta];
27956
28732
 
28733
+ /**
28734
+ * An object referencing a completed SOD violation check
28735
+ * @export
28736
+ * @interface SodViolationContextCheckCompleted2Beta
28737
+ */
28738
+ export interface SodViolationContextCheckCompleted2Beta {
28739
+ /**
28740
+ * The status of SOD violation check
28741
+ * @type {string}
28742
+ * @memberof SodViolationContextCheckCompleted2Beta
28743
+ */
28744
+ 'state'?: SodViolationContextCheckCompleted2BetaStateBeta;
28745
+ /**
28746
+ * The id of the Violation check event
28747
+ * @type {string}
28748
+ * @memberof SodViolationContextCheckCompleted2Beta
28749
+ */
28750
+ 'uuid'?: string;
28751
+ /**
28752
+ *
28753
+ * @type {SodViolationCheckResult2Beta}
28754
+ * @memberof SodViolationContextCheckCompleted2Beta
28755
+ */
28756
+ 'violationCheckResult'?: SodViolationCheckResult2Beta;
28757
+ }
28758
+
28759
+ export const SodViolationContextCheckCompleted2BetaStateBeta = {
28760
+ Success: 'SUCCESS',
28761
+ Error: 'ERROR'
28762
+ } as const;
28763
+
28764
+ export type SodViolationContextCheckCompleted2BetaStateBeta = typeof SodViolationContextCheckCompleted2BetaStateBeta[keyof typeof SodViolationContextCheckCompleted2BetaStateBeta];
28765
+
27957
28766
  /**
27958
28767
  * An object referencing a completed SOD violation check
27959
28768
  * @export
@@ -28283,7 +29092,7 @@ export interface SourceAppBeta {
28283
29092
  */
28284
29093
  'enabled'?: boolean;
28285
29094
  /**
28286
- * True if the source app is provision request enabled
29095
+ * True if the app allows access request
28287
29096
  * @type {boolean}
28288
29097
  * @memberof SourceAppBeta
28289
29098
  */
@@ -28301,7 +29110,7 @@ export interface SourceAppBeta {
28301
29110
  */
28302
29111
  'matchAllAccounts'?: boolean;
28303
29112
  /**
28304
- * True if the source app is shown in the app center
29113
+ * True if the app is visible in the request center
28305
29114
  * @type {boolean}
28306
29115
  * @memberof SourceAppBeta
28307
29116
  */
@@ -28437,7 +29246,7 @@ export interface SourceAppPatchDtoBeta {
28437
29246
  */
28438
29247
  'enabled'?: boolean;
28439
29248
  /**
28440
- * True if the source app is provision request enabled
29249
+ * True if the app allows access request
28441
29250
  * @type {boolean}
28442
29251
  * @memberof SourceAppPatchDtoBeta
28443
29252
  */
@@ -28455,7 +29264,7 @@ export interface SourceAppPatchDtoBeta {
28455
29264
  */
28456
29265
  'matchAllAccounts'?: boolean;
28457
29266
  /**
28458
- * True if the source app is shown in the app center
29267
+ * True if the app is visible in the request center
28459
29268
  * @type {boolean}
28460
29269
  * @memberof SourceAppPatchDtoBeta
28461
29270
  */
@@ -32025,13 +32834,13 @@ export interface UserAppBeta {
32025
32834
  */
32026
32835
  'useForPasswordManagement'?: boolean;
32027
32836
  /**
32028
- * True if the source app related to the user app is provision request enabled
32837
+ * True if the app allows access request
32029
32838
  * @type {boolean}
32030
32839
  * @memberof UserAppBeta
32031
32840
  */
32032
32841
  'provisionRequestEnabled'?: boolean;
32033
32842
  /**
32034
- * True if the source app related to the user app is shown in the app center
32843
+ * True if the app is visible in the request center
32035
32844
  * @type {boolean}
32036
32845
  * @memberof UserAppBeta
32037
32846
  */
@@ -33859,6 +34668,10 @@ export const AccessModelMetadataBetaApiAxiosParamCreator = function (configurati
33859
34668
  // oauth required
33860
34669
  await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
33861
34670
 
34671
+ // authentication applicationAuth required
34672
+ // oauth required
34673
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
34674
+
33862
34675
 
33863
34676
 
33864
34677
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -33905,6 +34718,10 @@ export const AccessModelMetadataBetaApiAxiosParamCreator = function (configurati
33905
34718
  // oauth required
33906
34719
  await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
33907
34720
 
34721
+ // authentication applicationAuth required
34722
+ // oauth required
34723
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
34724
+
33908
34725
 
33909
34726
 
33910
34727
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -33948,6 +34765,10 @@ export const AccessModelMetadataBetaApiAxiosParamCreator = function (configurati
33948
34765
  // oauth required
33949
34766
  await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
33950
34767
 
34768
+ // authentication applicationAuth required
34769
+ // oauth required
34770
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
34771
+
33951
34772
  if (filters !== undefined) {
33952
34773
  localVarQueryParameter['filters'] = filters;
33953
34774
  }
@@ -34013,6 +34834,10 @@ export const AccessModelMetadataBetaApiAxiosParamCreator = function (configurati
34013
34834
  // oauth required
34014
34835
  await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
34015
34836
 
34837
+ // authentication applicationAuth required
34838
+ // oauth required
34839
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
34840
+
34016
34841
  if (offset !== undefined) {
34017
34842
  localVarQueryParameter['offset'] = offset;
34018
34843
  }
@@ -34365,10 +35190,6 @@ export const AccessProfilesBetaApiAxiosParamCreator = function (configuration?:
34365
35190
  // oauth required
34366
35191
  await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
34367
35192
 
34368
- // authentication applicationAuth required
34369
- // oauth required
34370
- await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
34371
-
34372
35193
 
34373
35194
 
34374
35195
  localVarHeaderParameter['Content-Type'] = 'application/json';
@@ -34455,10 +35276,6 @@ export const AccessProfilesBetaApiAxiosParamCreator = function (configuration?:
34455
35276
  // oauth required
34456
35277
  await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
34457
35278
 
34458
- // authentication applicationAuth required
34459
- // oauth required
34460
- await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
34461
-
34462
35279
 
34463
35280
 
34464
35281
  localVarHeaderParameter['Content-Type'] = 'application/json';
@@ -34504,10 +35321,6 @@ export const AccessProfilesBetaApiAxiosParamCreator = function (configuration?:
34504
35321
  // oauth required
34505
35322
  await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
34506
35323
 
34507
- // authentication applicationAuth required
34508
- // oauth required
34509
- await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
34510
-
34511
35324
 
34512
35325
 
34513
35326
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -34555,10 +35368,6 @@ export const AccessProfilesBetaApiAxiosParamCreator = function (configuration?:
34555
35368
  // oauth required
34556
35369
  await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
34557
35370
 
34558
- // authentication applicationAuth required
34559
- // oauth required
34560
- await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
34561
-
34562
35371
  if (limit !== undefined) {
34563
35372
  localVarQueryParameter['limit'] = limit;
34564
35373
  }
@@ -34625,10 +35434,6 @@ export const AccessProfilesBetaApiAxiosParamCreator = function (configuration?:
34625
35434
  // oauth required
34626
35435
  await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
34627
35436
 
34628
- // authentication applicationAuth required
34629
- // oauth required
34630
- await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
34631
-
34632
35437
  if (forSubadmin !== undefined) {
34633
35438
  localVarQueryParameter['for-subadmin'] = forSubadmin;
34634
35439
  }
@@ -34750,10 +35555,6 @@ export const AccessProfilesBetaApiAxiosParamCreator = function (configuration?:
34750
35555
  // oauth required
34751
35556
  await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
34752
35557
 
34753
- // authentication applicationAuth required
34754
- // oauth required
34755
- await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
34756
-
34757
35558
 
34758
35559
 
34759
35560
  localVarHeaderParameter['Content-Type'] = 'application/json';
@@ -36488,6 +37289,104 @@ export const AccessRequestsBetaApiAxiosParamCreator = function (configuration?:
36488
37289
 
36489
37290
 
36490
37291
 
37292
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
37293
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
37294
+ localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
37295
+
37296
+ return {
37297
+ url: toPathString(localVarUrlObj),
37298
+ axiosOptions: localVarRequestOptions,
37299
+ };
37300
+ },
37301
+ /**
37302
+ * 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
37303
+ * @summary Access request status for administrators
37304
+ * @param {string} xSailPointExperimental Use this header to enable this experimental API.
37305
+ * @param {string} [requestedFor] Filter the results by the identity the requests were made for. *me* indicates the current user. Mutually exclusive with *regarding-identity*.
37306
+ * @param {string} [requestedBy] Filter the results by the identity who made the requests. *me* indicates the current user. Mutually exclusive with *regarding-identity*.
37307
+ * @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*.
37308
+ * @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.
37309
+ * @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.
37310
+ * @param {number} [limit] Max number of results to return.
37311
+ * @param {number} [offset] Offset into the full result set. Usually specified with *limit* to paginate through the results. Defaults to 0 if not specified.
37312
+ * @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*
37313
+ * @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**
37314
+ * @param {string} [requestState] Filter the results by the state of the request. The only valid value is *EXECUTING*.
37315
+ * @param {*} [axiosOptions] Override http request option.
37316
+ * @throws {RequiredError}
37317
+ */
37318
+ listAdministratorsAccessRequestStatus: async (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> => {
37319
+ if (xSailPointExperimental === undefined) {
37320
+ xSailPointExperimental = 'true';
37321
+ }
37322
+
37323
+ // verify required parameter 'xSailPointExperimental' is not null or undefined
37324
+ assertParamExists('listAdministratorsAccessRequestStatus', 'xSailPointExperimental', xSailPointExperimental)
37325
+ const localVarPath = `/access-request-administration`;
37326
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
37327
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
37328
+ let baseOptions;
37329
+ if (configuration) {
37330
+ baseOptions = configuration.baseOptions;
37331
+ }
37332
+
37333
+ const localVarRequestOptions = { method: 'GET', ...baseOptions, ...axiosOptions};
37334
+ const localVarHeaderParameter = {} as any;
37335
+ const localVarQueryParameter = {} as any;
37336
+
37337
+ // authentication userAuth required
37338
+ // oauth required
37339
+ await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
37340
+
37341
+ // authentication userAuth required
37342
+ // oauth required
37343
+ await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
37344
+
37345
+ if (requestedFor !== undefined) {
37346
+ localVarQueryParameter['requested-for'] = requestedFor;
37347
+ }
37348
+
37349
+ if (requestedBy !== undefined) {
37350
+ localVarQueryParameter['requested-by'] = requestedBy;
37351
+ }
37352
+
37353
+ if (regardingIdentity !== undefined) {
37354
+ localVarQueryParameter['regarding-identity'] = regardingIdentity;
37355
+ }
37356
+
37357
+ if (assignedTo !== undefined) {
37358
+ localVarQueryParameter['assigned-to'] = assignedTo;
37359
+ }
37360
+
37361
+ if (count !== undefined) {
37362
+ localVarQueryParameter['count'] = count;
37363
+ }
37364
+
37365
+ if (limit !== undefined) {
37366
+ localVarQueryParameter['limit'] = limit;
37367
+ }
37368
+
37369
+ if (offset !== undefined) {
37370
+ localVarQueryParameter['offset'] = offset;
37371
+ }
37372
+
37373
+ if (filters !== undefined) {
37374
+ localVarQueryParameter['filters'] = filters;
37375
+ }
37376
+
37377
+ if (sorters !== undefined) {
37378
+ localVarQueryParameter['sorters'] = sorters;
37379
+ }
37380
+
37381
+ if (requestState !== undefined) {
37382
+ localVarQueryParameter['request-state'] = requestState;
37383
+ }
37384
+
37385
+
37386
+
37387
+ if (xSailPointExperimental != null) {
37388
+ localVarHeaderParameter['X-SailPoint-Experimental'] = String(xSailPointExperimental);
37389
+ }
36491
37390
  setSearchParams(localVarUrlObj, localVarQueryParameter);
36492
37391
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
36493
37392
  localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
@@ -36624,6 +37523,29 @@ export const AccessRequestsBetaApiFp = function(configuration?: Configuration) {
36624
37523
  const localVarOperationServerBasePath = operationServerMap['AccessRequestsBetaApi.listAccessRequestStatus']?.[localVarOperationServerIndex]?.url;
36625
37524
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
36626
37525
  },
37526
+ /**
37527
+ * 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
37528
+ * @summary Access request status for administrators
37529
+ * @param {string} xSailPointExperimental Use this header to enable this experimental API.
37530
+ * @param {string} [requestedFor] Filter the results by the identity the requests were made for. *me* indicates the current user. Mutually exclusive with *regarding-identity*.
37531
+ * @param {string} [requestedBy] Filter the results by the identity who made the requests. *me* indicates the current user. Mutually exclusive with *regarding-identity*.
37532
+ * @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*.
37533
+ * @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.
37534
+ * @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.
37535
+ * @param {number} [limit] Max number of results to return.
37536
+ * @param {number} [offset] Offset into the full result set. Usually specified with *limit* to paginate through the results. Defaults to 0 if not specified.
37537
+ * @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*
37538
+ * @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**
37539
+ * @param {string} [requestState] Filter the results by the state of the request. The only valid value is *EXECUTING*.
37540
+ * @param {*} [axiosOptions] Override http request option.
37541
+ * @throws {RequiredError}
37542
+ */
37543
+ async 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>>> {
37544
+ const localVarAxiosArgs = await localVarAxiosParamCreator.listAdministratorsAccessRequestStatus(xSailPointExperimental, requestedFor, requestedBy, regardingIdentity, assignedTo, count, limit, offset, filters, sorters, requestState, axiosOptions);
37545
+ const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
37546
+ const localVarOperationServerBasePath = operationServerMap['AccessRequestsBetaApi.listAdministratorsAccessRequestStatus']?.[localVarOperationServerIndex]?.url;
37547
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
37548
+ },
36627
37549
  /**
36628
37550
  * This endpoint replaces the current access-request configuration.
36629
37551
  * @summary Update access request configuration
@@ -36696,6 +37618,16 @@ export const AccessRequestsBetaApiFactory = function (configuration?: Configurat
36696
37618
  listAccessRequestStatus(requestParameters: AccessRequestsBetaApiListAccessRequestStatusRequest = {}, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<RequestedItemStatusBeta>> {
36697
37619
  return localVarFp.listAccessRequestStatus(requestParameters.requestedFor, requestParameters.requestedBy, requestParameters.regardingIdentity, requestParameters.assignedTo, requestParameters.count, requestParameters.limit, requestParameters.offset, requestParameters.filters, requestParameters.sorters, requestParameters.requestState, axiosOptions).then((request) => request(axios, basePath));
36698
37620
  },
37621
+ /**
37622
+ * 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
37623
+ * @summary Access request status for administrators
37624
+ * @param {AccessRequestsBetaApiListAdministratorsAccessRequestStatusRequest} requestParameters Request parameters.
37625
+ * @param {*} [axiosOptions] Override http request option.
37626
+ * @throws {RequiredError}
37627
+ */
37628
+ listAdministratorsAccessRequestStatus(requestParameters: AccessRequestsBetaApiListAdministratorsAccessRequestStatusRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<AccessRequestAdminItemStatusBeta>> {
37629
+ return localVarFp.listAdministratorsAccessRequestStatus(requestParameters.xSailPointExperimental, requestParameters.requestedFor, requestParameters.requestedBy, requestParameters.regardingIdentity, requestParameters.assignedTo, requestParameters.count, requestParameters.limit, requestParameters.offset, requestParameters.filters, requestParameters.sorters, requestParameters.requestState, axiosOptions).then((request) => request(axios, basePath));
37630
+ },
36699
37631
  /**
36700
37632
  * This endpoint replaces the current access-request configuration.
36701
37633
  * @summary Update access request configuration
@@ -36828,6 +37760,90 @@ export interface AccessRequestsBetaApiListAccessRequestStatusRequest {
36828
37760
  readonly requestState?: string
36829
37761
  }
36830
37762
 
37763
+ /**
37764
+ * Request parameters for listAdministratorsAccessRequestStatus operation in AccessRequestsBetaApi.
37765
+ * @export
37766
+ * @interface AccessRequestsBetaApiListAdministratorsAccessRequestStatusRequest
37767
+ */
37768
+ export interface AccessRequestsBetaApiListAdministratorsAccessRequestStatusRequest {
37769
+ /**
37770
+ * Use this header to enable this experimental API.
37771
+ * @type {string}
37772
+ * @memberof AccessRequestsBetaApiListAdministratorsAccessRequestStatus
37773
+ */
37774
+ readonly xSailPointExperimental: string
37775
+
37776
+ /**
37777
+ * Filter the results by the identity the requests were made for. *me* indicates the current user. Mutually exclusive with *regarding-identity*.
37778
+ * @type {string}
37779
+ * @memberof AccessRequestsBetaApiListAdministratorsAccessRequestStatus
37780
+ */
37781
+ readonly requestedFor?: string
37782
+
37783
+ /**
37784
+ * Filter the results by the identity who made the requests. *me* indicates the current user. Mutually exclusive with *regarding-identity*.
37785
+ * @type {string}
37786
+ * @memberof AccessRequestsBetaApiListAdministratorsAccessRequestStatus
37787
+ */
37788
+ readonly requestedBy?: string
37789
+
37790
+ /**
37791
+ * 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*.
37792
+ * @type {string}
37793
+ * @memberof AccessRequestsBetaApiListAdministratorsAccessRequestStatus
37794
+ */
37795
+ readonly regardingIdentity?: string
37796
+
37797
+ /**
37798
+ * Filter the results by the specified identity who is the owner of the Identity Request Work Item. *me* indicates the current user.
37799
+ * @type {string}
37800
+ * @memberof AccessRequestsBetaApiListAdministratorsAccessRequestStatus
37801
+ */
37802
+ readonly assignedTo?: string
37803
+
37804
+ /**
37805
+ * 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.
37806
+ * @type {boolean}
37807
+ * @memberof AccessRequestsBetaApiListAdministratorsAccessRequestStatus
37808
+ */
37809
+ readonly count?: boolean
37810
+
37811
+ /**
37812
+ * Max number of results to return.
37813
+ * @type {number}
37814
+ * @memberof AccessRequestsBetaApiListAdministratorsAccessRequestStatus
37815
+ */
37816
+ readonly limit?: number
37817
+
37818
+ /**
37819
+ * Offset into the full result set. Usually specified with *limit* to paginate through the results. Defaults to 0 if not specified.
37820
+ * @type {number}
37821
+ * @memberof AccessRequestsBetaApiListAdministratorsAccessRequestStatus
37822
+ */
37823
+ readonly offset?: number
37824
+
37825
+ /**
37826
+ * 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*
37827
+ * @type {string}
37828
+ * @memberof AccessRequestsBetaApiListAdministratorsAccessRequestStatus
37829
+ */
37830
+ readonly filters?: string
37831
+
37832
+ /**
37833
+ * 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**
37834
+ * @type {string}
37835
+ * @memberof AccessRequestsBetaApiListAdministratorsAccessRequestStatus
37836
+ */
37837
+ readonly sorters?: string
37838
+
37839
+ /**
37840
+ * Filter the results by the state of the request. The only valid value is *EXECUTING*.
37841
+ * @type {string}
37842
+ * @memberof AccessRequestsBetaApiListAdministratorsAccessRequestStatus
37843
+ */
37844
+ readonly requestState?: string
37845
+ }
37846
+
36831
37847
  /**
36832
37848
  * Request parameters for setAccessRequestConfig operation in AccessRequestsBetaApi.
36833
37849
  * @export
@@ -36908,6 +37924,18 @@ export class AccessRequestsBetaApi extends BaseAPI {
36908
37924
  return AccessRequestsBetaApiFp(this.configuration).listAccessRequestStatus(requestParameters.requestedFor, requestParameters.requestedBy, requestParameters.regardingIdentity, requestParameters.assignedTo, requestParameters.count, requestParameters.limit, requestParameters.offset, requestParameters.filters, requestParameters.sorters, requestParameters.requestState, axiosOptions).then((request) => request(this.axios, this.basePath));
36909
37925
  }
36910
37926
 
37927
+ /**
37928
+ * 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
37929
+ * @summary Access request status for administrators
37930
+ * @param {AccessRequestsBetaApiListAdministratorsAccessRequestStatusRequest} requestParameters Request parameters.
37931
+ * @param {*} [axiosOptions] Override http request option.
37932
+ * @throws {RequiredError}
37933
+ * @memberof AccessRequestsBetaApi
37934
+ */
37935
+ public listAdministratorsAccessRequestStatus(requestParameters: AccessRequestsBetaApiListAdministratorsAccessRequestStatusRequest, axiosOptions?: RawAxiosRequestConfig) {
37936
+ return AccessRequestsBetaApiFp(this.configuration).listAdministratorsAccessRequestStatus(requestParameters.xSailPointExperimental, requestParameters.requestedFor, requestParameters.requestedBy, requestParameters.regardingIdentity, requestParameters.assignedTo, requestParameters.count, requestParameters.limit, requestParameters.offset, requestParameters.filters, requestParameters.sorters, requestParameters.requestState, axiosOptions).then((request) => request(this.axios, this.basePath));
37937
+ }
37938
+
36911
37939
  /**
36912
37940
  * This endpoint replaces the current access-request configuration.
36913
37941
  * @summary Update access request configuration
@@ -37420,6 +38448,10 @@ export const AccountUsagesBetaApiAxiosParamCreator = function (configuration?: C
37420
38448
  // oauth required
37421
38449
  await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
37422
38450
 
38451
+ // authentication applicationAuth required
38452
+ // oauth required
38453
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
38454
+
37423
38455
  if (limit !== undefined) {
37424
38456
  localVarQueryParameter['limit'] = limit;
37425
38457
  }
@@ -37598,6 +38630,10 @@ export const AccountsBetaApiAxiosParamCreator = function (configuration?: Config
37598
38630
  // oauth required
37599
38631
  await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
37600
38632
 
38633
+ // authentication applicationAuth required
38634
+ // oauth required
38635
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
38636
+
37601
38637
 
37602
38638
 
37603
38639
  localVarHeaderParameter['Content-Type'] = 'application/json';
@@ -37644,6 +38680,10 @@ export const AccountsBetaApiAxiosParamCreator = function (configuration?: Config
37644
38680
  // oauth required
37645
38681
  await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
37646
38682
 
38683
+ // authentication applicationAuth required
38684
+ // oauth required
38685
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
38686
+
37647
38687
 
37648
38688
 
37649
38689
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -37686,6 +38726,10 @@ export const AccountsBetaApiAxiosParamCreator = function (configuration?: Config
37686
38726
  // oauth required
37687
38727
  await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
37688
38728
 
38729
+ // authentication applicationAuth required
38730
+ // oauth required
38731
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
38732
+
37689
38733
 
37690
38734
 
37691
38735
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -37732,6 +38776,10 @@ export const AccountsBetaApiAxiosParamCreator = function (configuration?: Config
37732
38776
  // oauth required
37733
38777
  await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
37734
38778
 
38779
+ // authentication applicationAuth required
38780
+ // oauth required
38781
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
38782
+
37735
38783
 
37736
38784
 
37737
38785
  localVarHeaderParameter['Content-Type'] = 'application/json';
@@ -37778,6 +38826,10 @@ export const AccountsBetaApiAxiosParamCreator = function (configuration?: Config
37778
38826
  // oauth required
37779
38827
  await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
37780
38828
 
38829
+ // authentication applicationAuth required
38830
+ // oauth required
38831
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
38832
+
37781
38833
 
37782
38834
 
37783
38835
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -37820,6 +38872,10 @@ export const AccountsBetaApiAxiosParamCreator = function (configuration?: Config
37820
38872
  // oauth required
37821
38873
  await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
37822
38874
 
38875
+ // authentication applicationAuth required
38876
+ // oauth required
38877
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
38878
+
37823
38879
 
37824
38880
 
37825
38881
  localVarHeaderParameter['Content-Type'] = 'application/json';
@@ -37869,6 +38925,10 @@ export const AccountsBetaApiAxiosParamCreator = function (configuration?: Config
37869
38925
  // oauth required
37870
38926
  await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
37871
38927
 
38928
+ // authentication applicationAuth required
38929
+ // oauth required
38930
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
38931
+
37872
38932
 
37873
38933
 
37874
38934
  localVarHeaderParameter['Content-Type'] = 'application/json';
@@ -37915,6 +38975,10 @@ export const AccountsBetaApiAxiosParamCreator = function (configuration?: Config
37915
38975
  // oauth required
37916
38976
  await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
37917
38977
 
38978
+ // authentication applicationAuth required
38979
+ // oauth required
38980
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
38981
+
37918
38982
 
37919
38983
 
37920
38984
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -37957,6 +39021,10 @@ export const AccountsBetaApiAxiosParamCreator = function (configuration?: Config
37957
39021
  // oauth required
37958
39022
  await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
37959
39023
 
39024
+ // authentication applicationAuth required
39025
+ // oauth required
39026
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
39027
+
37960
39028
 
37961
39029
 
37962
39030
  localVarHeaderParameter['Content-Type'] = 'application/json';
@@ -38003,6 +39071,10 @@ export const AccountsBetaApiAxiosParamCreator = function (configuration?: Config
38003
39071
  // oauth required
38004
39072
  await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
38005
39073
 
39074
+ // authentication applicationAuth required
39075
+ // oauth required
39076
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
39077
+
38006
39078
 
38007
39079
 
38008
39080
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -38049,6 +39121,10 @@ export const AccountsBetaApiAxiosParamCreator = function (configuration?: Config
38049
39121
  // oauth required
38050
39122
  await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
38051
39123
 
39124
+ // authentication applicationAuth required
39125
+ // oauth required
39126
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
39127
+
38052
39128
  if (offset !== undefined) {
38053
39129
  localVarQueryParameter['offset'] = offset;
38054
39130
  }
@@ -38106,6 +39182,10 @@ export const AccountsBetaApiAxiosParamCreator = function (configuration?: Config
38106
39182
  // oauth required
38107
39183
  await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
38108
39184
 
39185
+ // authentication applicationAuth required
39186
+ // oauth required
39187
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
39188
+
38109
39189
  if (detailLevel !== undefined) {
38110
39190
  localVarQueryParameter['detailLevel'] = detailLevel;
38111
39191
  }
@@ -38176,6 +39256,10 @@ export const AccountsBetaApiAxiosParamCreator = function (configuration?: Config
38176
39256
  // oauth required
38177
39257
  await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
38178
39258
 
39259
+ // authentication applicationAuth required
39260
+ // oauth required
39261
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
39262
+
38179
39263
 
38180
39264
 
38181
39265
  localVarHeaderParameter['Content-Type'] = 'application/json';
@@ -38222,6 +39306,10 @@ export const AccountsBetaApiAxiosParamCreator = function (configuration?: Config
38222
39306
  // oauth required
38223
39307
  await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
38224
39308
 
39309
+ // authentication applicationAuth required
39310
+ // oauth required
39311
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
39312
+
38225
39313
 
38226
39314
 
38227
39315
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -38268,6 +39356,10 @@ export const AccountsBetaApiAxiosParamCreator = function (configuration?: Config
38268
39356
  // oauth required
38269
39357
  await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
38270
39358
 
39359
+ // authentication applicationAuth required
39360
+ // oauth required
39361
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
39362
+
38271
39363
 
38272
39364
 
38273
39365
  localVarHeaderParameter['Content-Type'] = 'application/json';
@@ -38317,6 +39409,10 @@ export const AccountsBetaApiAxiosParamCreator = function (configuration?: Config
38317
39409
  // oauth required
38318
39410
  await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
38319
39411
 
39412
+ // authentication applicationAuth required
39413
+ // oauth required
39414
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
39415
+
38320
39416
 
38321
39417
 
38322
39418
  localVarHeaderParameter['Content-Type'] = 'application/json-patch+json';
@@ -39531,6 +40627,10 @@ export const ApplicationDiscoveryBetaApiAxiosParamCreator = function (configurat
39531
40627
  // oauth required
39532
40628
  await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
39533
40629
 
40630
+ // authentication applicationAuth required
40631
+ // oauth required
40632
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
40633
+
39534
40634
 
39535
40635
  if (file !== undefined) {
39536
40636
  localVarFormParams.append('file', file as any);
@@ -39894,6 +40994,10 @@ export const AppsBetaApiAxiosParamCreator = function (configuration?: Configurat
39894
40994
  // oauth required
39895
40995
  await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
39896
40996
 
40997
+ // authentication applicationAuth required
40998
+ // oauth required
40999
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
41000
+
39897
41001
 
39898
41002
 
39899
41003
  localVarHeaderParameter['Content-Type'] = 'application/json';
@@ -39943,6 +41047,10 @@ export const AppsBetaApiAxiosParamCreator = function (configuration?: Configurat
39943
41047
  // oauth required
39944
41048
  await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
39945
41049
 
41050
+ // authentication applicationAuth required
41051
+ // oauth required
41052
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
41053
+
39946
41054
  if (limit !== undefined) {
39947
41055
  localVarQueryParameter['limit'] = limit;
39948
41056
  }
@@ -39992,6 +41100,10 @@ export const AppsBetaApiAxiosParamCreator = function (configuration?: Configurat
39992
41100
  // oauth required
39993
41101
  await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
39994
41102
 
41103
+ // authentication applicationAuth required
41104
+ // oauth required
41105
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
41106
+
39995
41107
 
39996
41108
 
39997
41109
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -40034,6 +41146,10 @@ export const AppsBetaApiAxiosParamCreator = function (configuration?: Configurat
40034
41146
  // oauth required
40035
41147
  await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
40036
41148
 
41149
+ // authentication applicationAuth required
41150
+ // oauth required
41151
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
41152
+
40037
41153
 
40038
41154
 
40039
41155
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -40079,6 +41195,10 @@ export const AppsBetaApiAxiosParamCreator = function (configuration?: Configurat
40079
41195
  // oauth required
40080
41196
  await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
40081
41197
 
41198
+ // authentication applicationAuth required
41199
+ // oauth required
41200
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
41201
+
40082
41202
  if (limit !== undefined) {
40083
41203
  localVarQueryParameter['limit'] = limit;
40084
41204
  }
@@ -40198,6 +41318,10 @@ export const AppsBetaApiAxiosParamCreator = function (configuration?: Configurat
40198
41318
  // oauth required
40199
41319
  await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
40200
41320
 
41321
+ // authentication applicationAuth required
41322
+ // oauth required
41323
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
41324
+
40201
41325
  if (limit !== undefined) {
40202
41326
  localVarQueryParameter['limit'] = limit;
40203
41327
  }
@@ -40257,6 +41381,10 @@ export const AppsBetaApiAxiosParamCreator = function (configuration?: Configurat
40257
41381
  // oauth required
40258
41382
  await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
40259
41383
 
41384
+ // authentication applicationAuth required
41385
+ // oauth required
41386
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
41387
+
40260
41388
  if (limit !== undefined) {
40261
41389
  localVarQueryParameter['limit'] = limit;
40262
41390
  }
@@ -40322,6 +41450,10 @@ export const AppsBetaApiAxiosParamCreator = function (configuration?: Configurat
40322
41450
  // oauth required
40323
41451
  await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
40324
41452
 
41453
+ // authentication applicationAuth required
41454
+ // oauth required
41455
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
41456
+
40325
41457
  if (limit !== undefined) {
40326
41458
  localVarQueryParameter['limit'] = limit;
40327
41459
  }
@@ -40377,6 +41509,10 @@ export const AppsBetaApiAxiosParamCreator = function (configuration?: Configurat
40377
41509
  // oauth required
40378
41510
  await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
40379
41511
 
41512
+ // authentication applicationAuth required
41513
+ // oauth required
41514
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
41515
+
40380
41516
  if (limit !== undefined) {
40381
41517
  localVarQueryParameter['limit'] = limit;
40382
41518
  }
@@ -40439,6 +41575,10 @@ export const AppsBetaApiAxiosParamCreator = function (configuration?: Configurat
40439
41575
  // oauth required
40440
41576
  await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
40441
41577
 
41578
+ // authentication applicationAuth required
41579
+ // oauth required
41580
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
41581
+
40442
41582
  if (limit !== undefined) {
40443
41583
  localVarQueryParameter['limit'] = limit;
40444
41584
  }
@@ -40498,6 +41638,10 @@ export const AppsBetaApiAxiosParamCreator = function (configuration?: Configurat
40498
41638
  // oauth required
40499
41639
  await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
40500
41640
 
41641
+ // authentication applicationAuth required
41642
+ // oauth required
41643
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
41644
+
40501
41645
 
40502
41646
 
40503
41647
  localVarHeaderParameter['Content-Type'] = 'application/json-patch+json';
@@ -40586,6 +41730,10 @@ export const AppsBetaApiAxiosParamCreator = function (configuration?: Configurat
40586
41730
  // oauth required
40587
41731
  await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
40588
41732
 
41733
+ // authentication applicationAuth required
41734
+ // oauth required
41735
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
41736
+
40589
41737
 
40590
41738
 
40591
41739
  localVarHeaderParameter['Content-Type'] = 'application/json';
@@ -44259,6 +45407,7 @@ export const CertificationsBetaApiAxiosParamCreator = function (configuration?:
44259
45407
  * @summary Pending certification tasks
44260
45408
  * @param {string} id The identity campaign certification ID
44261
45409
  * @param {*} [axiosOptions] Override http request option.
45410
+ * @deprecated
44262
45411
  * @throws {RequiredError}
44263
45412
  */
44264
45413
  getIdentityCertificationPendingTasks: async (id: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
@@ -44302,6 +45451,7 @@ export const CertificationsBetaApiAxiosParamCreator = function (configuration?:
44302
45451
  * @param {string} id The identity campaign certification ID
44303
45452
  * @param {string} taskId The certification task ID
44304
45453
  * @param {*} [axiosOptions] Override http request option.
45454
+ * @deprecated
44305
45455
  * @throws {RequiredError}
44306
45456
  */
44307
45457
  getIdentityCertificationTaskStatus: async (id: string, taskId: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
@@ -44420,6 +45570,7 @@ export const CertificationsBetaApiAxiosParamCreator = function (configuration?:
44420
45570
  * @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*
44421
45571
  * @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**
44422
45572
  * @param {*} [axiosOptions] Override http request option.
45573
+ * @deprecated
44423
45574
  * @throws {RequiredError}
44424
45575
  */
44425
45576
  listCertifications: async (reviewerIdentitiy?: string, limit?: number, offset?: number, count?: boolean, filters?: string, sorters?: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
@@ -44561,6 +45712,7 @@ export const CertificationsBetaApiFp = function(configuration?: Configuration) {
44561
45712
  * @summary Pending certification tasks
44562
45713
  * @param {string} id The identity campaign certification ID
44563
45714
  * @param {*} [axiosOptions] Override http request option.
45715
+ * @deprecated
44564
45716
  * @throws {RequiredError}
44565
45717
  */
44566
45718
  async getIdentityCertificationPendingTasks(id: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<IdentityCertificationTaskBeta>>> {
@@ -44575,6 +45727,7 @@ export const CertificationsBetaApiFp = function(configuration?: Configuration) {
44575
45727
  * @param {string} id The identity campaign certification ID
44576
45728
  * @param {string} taskId The certification task ID
44577
45729
  * @param {*} [axiosOptions] Override http request option.
45730
+ * @deprecated
44578
45731
  * @throws {RequiredError}
44579
45732
  */
44580
45733
  async getIdentityCertificationTaskStatus(id: string, taskId: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<IdentityCertificationTaskBeta>> {
@@ -44612,6 +45765,7 @@ export const CertificationsBetaApiFp = function(configuration?: Configuration) {
44612
45765
  * @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*
44613
45766
  * @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**
44614
45767
  * @param {*} [axiosOptions] Override http request option.
45768
+ * @deprecated
44615
45769
  * @throws {RequiredError}
44616
45770
  */
44617
45771
  async listCertifications(reviewerIdentitiy?: string, limit?: number, offset?: number, count?: boolean, filters?: string, sorters?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<CertificationDtoBeta>>> {
@@ -44661,6 +45815,7 @@ export const CertificationsBetaApiFactory = function (configuration?: Configurat
44661
45815
  * @summary Pending certification tasks
44662
45816
  * @param {CertificationsBetaApiGetIdentityCertificationPendingTasksRequest} requestParameters Request parameters.
44663
45817
  * @param {*} [axiosOptions] Override http request option.
45818
+ * @deprecated
44664
45819
  * @throws {RequiredError}
44665
45820
  */
44666
45821
  getIdentityCertificationPendingTasks(requestParameters: CertificationsBetaApiGetIdentityCertificationPendingTasksRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<IdentityCertificationTaskBeta>> {
@@ -44671,6 +45826,7 @@ export const CertificationsBetaApiFactory = function (configuration?: Configurat
44671
45826
  * @summary Certification task status
44672
45827
  * @param {CertificationsBetaApiGetIdentityCertificationTaskStatusRequest} requestParameters Request parameters.
44673
45828
  * @param {*} [axiosOptions] Override http request option.
45829
+ * @deprecated
44674
45830
  * @throws {RequiredError}
44675
45831
  */
44676
45832
  getIdentityCertificationTaskStatus(requestParameters: CertificationsBetaApiGetIdentityCertificationTaskStatusRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<IdentityCertificationTaskBeta> {
@@ -44692,6 +45848,7 @@ export const CertificationsBetaApiFactory = function (configuration?: Configurat
44692
45848
  * @summary Certifications by ids
44693
45849
  * @param {CertificationsBetaApiListCertificationsRequest} requestParameters Request parameters.
44694
45850
  * @param {*} [axiosOptions] Override http request option.
45851
+ * @deprecated
44695
45852
  * @throws {RequiredError}
44696
45853
  */
44697
45854
  listCertifications(requestParameters: CertificationsBetaApiListCertificationsRequest = {}, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<CertificationDtoBeta>> {
@@ -44939,6 +46096,7 @@ export class CertificationsBetaApi extends BaseAPI {
44939
46096
  * @summary Pending certification tasks
44940
46097
  * @param {CertificationsBetaApiGetIdentityCertificationPendingTasksRequest} requestParameters Request parameters.
44941
46098
  * @param {*} [axiosOptions] Override http request option.
46099
+ * @deprecated
44942
46100
  * @throws {RequiredError}
44943
46101
  * @memberof CertificationsBetaApi
44944
46102
  */
@@ -44951,6 +46109,7 @@ export class CertificationsBetaApi extends BaseAPI {
44951
46109
  * @summary Certification task status
44952
46110
  * @param {CertificationsBetaApiGetIdentityCertificationTaskStatusRequest} requestParameters Request parameters.
44953
46111
  * @param {*} [axiosOptions] Override http request option.
46112
+ * @deprecated
44954
46113
  * @throws {RequiredError}
44955
46114
  * @memberof CertificationsBetaApi
44956
46115
  */
@@ -44976,6 +46135,7 @@ export class CertificationsBetaApi extends BaseAPI {
44976
46135
  * @summary Certifications by ids
44977
46136
  * @param {CertificationsBetaApiListCertificationsRequest} requestParameters Request parameters.
44978
46137
  * @param {*} [axiosOptions] Override http request option.
46138
+ * @deprecated
44979
46139
  * @throws {RequiredError}
44980
46140
  * @memberof CertificationsBetaApi
44981
46141
  */
@@ -48275,6 +49435,10 @@ export const EntitlementsBetaApiAxiosParamCreator = function (configuration?: Co
48275
49435
  // oauth required
48276
49436
  await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
48277
49437
 
49438
+ // authentication applicationAuth required
49439
+ // oauth required
49440
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
49441
+
48278
49442
 
48279
49443
 
48280
49444
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -48317,6 +49481,10 @@ export const EntitlementsBetaApiAxiosParamCreator = function (configuration?: Co
48317
49481
  // oauth required
48318
49482
  await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
48319
49483
 
49484
+ // authentication applicationAuth required
49485
+ // oauth required
49486
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
49487
+
48320
49488
 
48321
49489
 
48322
49490
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -48416,6 +49584,10 @@ export const EntitlementsBetaApiAxiosParamCreator = function (configuration?: Co
48416
49584
  // oauth required
48417
49585
  await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
48418
49586
 
49587
+ // authentication applicationAuth required
49588
+ // oauth required
49589
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
49590
+
48419
49591
  if (limit !== undefined) {
48420
49592
  localVarQueryParameter['limit'] = limit;
48421
49593
  }
@@ -48483,6 +49655,10 @@ export const EntitlementsBetaApiAxiosParamCreator = function (configuration?: Co
48483
49655
  // oauth required
48484
49656
  await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
48485
49657
 
49658
+ // authentication applicationAuth required
49659
+ // oauth required
49660
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
49661
+
48486
49662
  if (limit !== undefined) {
48487
49663
  localVarQueryParameter['limit'] = limit;
48488
49664
  }
@@ -48550,6 +49726,10 @@ export const EntitlementsBetaApiAxiosParamCreator = function (configuration?: Co
48550
49726
  // oauth required
48551
49727
  await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
48552
49728
 
49729
+ // authentication applicationAuth required
49730
+ // oauth required
49731
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
49732
+
48553
49733
  if (accountId !== undefined) {
48554
49734
  localVarQueryParameter['account-id'] = accountId;
48555
49735
  }
@@ -49637,6 +50817,10 @@ export const GovernanceGroupsBetaApiAxiosParamCreator = function (configuration?
49637
50817
  // oauth required
49638
50818
  await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
49639
50819
 
50820
+ // authentication applicationAuth required
50821
+ // oauth required
50822
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
50823
+
49640
50824
 
49641
50825
 
49642
50826
  localVarHeaderParameter['Content-Type'] = 'application/json';
@@ -49682,6 +50866,10 @@ export const GovernanceGroupsBetaApiAxiosParamCreator = function (configuration?
49682
50866
  // oauth required
49683
50867
  await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
49684
50868
 
50869
+ // authentication applicationAuth required
50870
+ // oauth required
50871
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
50872
+
49685
50873
 
49686
50874
 
49687
50875
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -49771,6 +50959,10 @@ export const GovernanceGroupsBetaApiAxiosParamCreator = function (configuration?
49771
50959
  // oauth required
49772
50960
  await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
49773
50961
 
50962
+ // authentication applicationAuth required
50963
+ // oauth required
50964
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
50965
+
49774
50966
 
49775
50967
 
49776
50968
  localVarHeaderParameter['Content-Type'] = 'application/json';
@@ -49816,6 +51008,10 @@ export const GovernanceGroupsBetaApiAxiosParamCreator = function (configuration?
49816
51008
  // oauth required
49817
51009
  await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
49818
51010
 
51011
+ // authentication applicationAuth required
51012
+ // oauth required
51013
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
51014
+
49819
51015
 
49820
51016
 
49821
51017
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -49862,6 +51058,10 @@ export const GovernanceGroupsBetaApiAxiosParamCreator = function (configuration?
49862
51058
  // oauth required
49863
51059
  await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
49864
51060
 
51061
+ // authentication applicationAuth required
51062
+ // oauth required
51063
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
51064
+
49865
51065
  if (offset !== undefined) {
49866
51066
  localVarQueryParameter['offset'] = offset;
49867
51067
  }
@@ -49924,6 +51124,10 @@ export const GovernanceGroupsBetaApiAxiosParamCreator = function (configuration?
49924
51124
  // oauth required
49925
51125
  await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
49926
51126
 
51127
+ // authentication applicationAuth required
51128
+ // oauth required
51129
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
51130
+
49927
51131
  if (offset !== undefined) {
49928
51132
  localVarQueryParameter['offset'] = offset;
49929
51133
  }
@@ -49983,6 +51187,10 @@ export const GovernanceGroupsBetaApiAxiosParamCreator = function (configuration?
49983
51187
  // oauth required
49984
51188
  await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
49985
51189
 
51190
+ // authentication applicationAuth required
51191
+ // oauth required
51192
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
51193
+
49986
51194
  if (offset !== undefined) {
49987
51195
  localVarQueryParameter['offset'] = offset;
49988
51196
  }
@@ -50046,6 +51254,10 @@ export const GovernanceGroupsBetaApiAxiosParamCreator = function (configuration?
50046
51254
  // oauth required
50047
51255
  await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
50048
51256
 
51257
+ // authentication applicationAuth required
51258
+ // oauth required
51259
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
51260
+
50049
51261
 
50050
51262
 
50051
51263
  localVarHeaderParameter['Content-Type'] = 'application/json-patch+json';
@@ -50094,6 +51306,10 @@ export const GovernanceGroupsBetaApiAxiosParamCreator = function (configuration?
50094
51306
  // oauth required
50095
51307
  await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
50096
51308
 
51309
+ // authentication applicationAuth required
51310
+ // oauth required
51311
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
51312
+
50097
51313
 
50098
51314
 
50099
51315
  localVarHeaderParameter['Content-Type'] = 'application/json';
@@ -50787,6 +52003,10 @@ export const IAIAccessRequestRecommendationsBetaApiAxiosParamCreator = function
50787
52003
  // oauth required
50788
52004
  await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
50789
52005
 
52006
+ // authentication applicationAuth required
52007
+ // oauth required
52008
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
52009
+
50790
52010
 
50791
52011
 
50792
52012
  localVarHeaderParameter['Content-Type'] = 'application/json';
@@ -50831,6 +52051,10 @@ export const IAIAccessRequestRecommendationsBetaApiAxiosParamCreator = function
50831
52051
  // oauth required
50832
52052
  await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
50833
52053
 
52054
+ // authentication applicationAuth required
52055
+ // oauth required
52056
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
52057
+
50834
52058
 
50835
52059
 
50836
52060
  localVarHeaderParameter['Content-Type'] = 'application/json';
@@ -50875,6 +52099,10 @@ export const IAIAccessRequestRecommendationsBetaApiAxiosParamCreator = function
50875
52099
  // oauth required
50876
52100
  await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
50877
52101
 
52102
+ // authentication applicationAuth required
52103
+ // oauth required
52104
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
52105
+
50878
52106
 
50879
52107
 
50880
52108
  localVarHeaderParameter['Content-Type'] = 'application/json';
@@ -50919,6 +52147,10 @@ export const IAIAccessRequestRecommendationsBetaApiAxiosParamCreator = function
50919
52147
  // oauth required
50920
52148
  await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
50921
52149
 
52150
+ // authentication applicationAuth required
52151
+ // oauth required
52152
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
52153
+
50922
52154
 
50923
52155
 
50924
52156
  localVarHeaderParameter['Content-Type'] = 'application/json';
@@ -50967,6 +52199,10 @@ export const IAIAccessRequestRecommendationsBetaApiAxiosParamCreator = function
50967
52199
  // oauth required
50968
52200
  await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
50969
52201
 
52202
+ // authentication applicationAuth required
52203
+ // oauth required
52204
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
52205
+
50970
52206
  if (identityId !== undefined) {
50971
52207
  localVarQueryParameter['identity-id'] = identityId;
50972
52208
  }
@@ -51038,6 +52274,10 @@ export const IAIAccessRequestRecommendationsBetaApiAxiosParamCreator = function
51038
52274
  // oauth required
51039
52275
  await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
51040
52276
 
52277
+ // authentication applicationAuth required
52278
+ // oauth required
52279
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
52280
+
51041
52281
  if (limit !== undefined) {
51042
52282
  localVarQueryParameter['limit'] = limit;
51043
52283
  }
@@ -51101,6 +52341,10 @@ export const IAIAccessRequestRecommendationsBetaApiAxiosParamCreator = function
51101
52341
  // oauth required
51102
52342
  await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
51103
52343
 
52344
+ // authentication applicationAuth required
52345
+ // oauth required
52346
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
52347
+
51104
52348
  if (limit !== undefined) {
51105
52349
  localVarQueryParameter['limit'] = limit;
51106
52350
  }
@@ -51164,6 +52408,10 @@ export const IAIAccessRequestRecommendationsBetaApiAxiosParamCreator = function
51164
52408
  // oauth required
51165
52409
  await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
51166
52410
 
52411
+ // authentication applicationAuth required
52412
+ // oauth required
52413
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
52414
+
51167
52415
  if (limit !== undefined) {
51168
52416
  localVarQueryParameter['limit'] = limit;
51169
52417
  }
@@ -51794,11 +53042,15 @@ export const IAICommonAccessBetaApiAxiosParamCreator = function (configuration?:
51794
53042
 
51795
53043
  // authentication userAuth required
51796
53044
  // oauth required
51797
- await setOAuthToObject(localVarHeaderParameter, "userAuth", ["sp:scopes:all"], configuration)
53045
+ await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
51798
53046
 
51799
53047
  // authentication userAuth required
51800
53048
  // oauth required
51801
- await setOAuthToObject(localVarHeaderParameter, "userAuth", ["sp:scopes:all"], configuration)
53049
+ await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
53050
+
53051
+ // authentication applicationAuth required
53052
+ // oauth required
53053
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
51802
53054
 
51803
53055
 
51804
53056
 
@@ -51840,11 +53092,15 @@ export const IAICommonAccessBetaApiAxiosParamCreator = function (configuration?:
51840
53092
 
51841
53093
  // authentication userAuth required
51842
53094
  // oauth required
51843
- await setOAuthToObject(localVarHeaderParameter, "userAuth", ["sp:scopes:all"], configuration)
53095
+ await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
51844
53096
 
51845
53097
  // authentication userAuth required
51846
53098
  // oauth required
51847
- await setOAuthToObject(localVarHeaderParameter, "userAuth", ["sp:scopes:all"], configuration)
53099
+ await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
53100
+
53101
+ // authentication applicationAuth required
53102
+ // oauth required
53103
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
51848
53104
 
51849
53105
  if (offset !== undefined) {
51850
53106
  localVarQueryParameter['offset'] = offset;
@@ -51901,11 +53157,15 @@ export const IAICommonAccessBetaApiAxiosParamCreator = function (configuration?:
51901
53157
 
51902
53158
  // authentication userAuth required
51903
53159
  // oauth required
51904
- await setOAuthToObject(localVarHeaderParameter, "userAuth", ["sp:scopes:all"], configuration)
53160
+ await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
51905
53161
 
51906
53162
  // authentication userAuth required
51907
53163
  // oauth required
51908
- await setOAuthToObject(localVarHeaderParameter, "userAuth", ["sp:scopes:all"], configuration)
53164
+ await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
53165
+
53166
+ // authentication applicationAuth required
53167
+ // oauth required
53168
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
51909
53169
 
51910
53170
 
51911
53171
 
@@ -53989,11 +55249,15 @@ export const IAIRoleMiningBetaApiAxiosParamCreator = function (configuration?: C
53989
55249
 
53990
55250
  // authentication userAuth required
53991
55251
  // oauth required
53992
- await setOAuthToObject(localVarHeaderParameter, "userAuth", ["sp:scopes:all"], configuration)
55252
+ await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
53993
55253
 
53994
55254
  // authentication userAuth required
53995
55255
  // oauth required
53996
- await setOAuthToObject(localVarHeaderParameter, "userAuth", ["sp:scopes:all"], configuration)
55256
+ await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
55257
+
55258
+ // authentication applicationAuth required
55259
+ // oauth required
55260
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
53997
55261
 
53998
55262
  if (minEntitlementPopularity !== undefined) {
53999
55263
  localVarQueryParameter['min-entitlement-popularity'] = minEntitlementPopularity;
@@ -54041,11 +55305,15 @@ export const IAIRoleMiningBetaApiAxiosParamCreator = function (configuration?: C
54041
55305
 
54042
55306
  // authentication userAuth required
54043
55307
  // oauth required
54044
- await setOAuthToObject(localVarHeaderParameter, "userAuth", ["sp:scopes:all"], configuration)
55308
+ await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
54045
55309
 
54046
55310
  // authentication userAuth required
54047
55311
  // oauth required
54048
- await setOAuthToObject(localVarHeaderParameter, "userAuth", ["sp:scopes:all"], configuration)
55312
+ await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
55313
+
55314
+ // authentication applicationAuth required
55315
+ // oauth required
55316
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
54049
55317
 
54050
55318
 
54051
55319
 
@@ -54094,11 +55362,15 @@ export const IAIRoleMiningBetaApiAxiosParamCreator = function (configuration?: C
54094
55362
 
54095
55363
  // authentication userAuth required
54096
55364
  // oauth required
54097
- await setOAuthToObject(localVarHeaderParameter, "userAuth", ["sp:scopes:all"], configuration)
55365
+ await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
54098
55366
 
54099
55367
  // authentication userAuth required
54100
55368
  // oauth required
54101
- await setOAuthToObject(localVarHeaderParameter, "userAuth", ["sp:scopes:all"], configuration)
55369
+ await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
55370
+
55371
+ // authentication applicationAuth required
55372
+ // oauth required
55373
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
54102
55374
 
54103
55375
 
54104
55376
 
@@ -54140,11 +55412,15 @@ export const IAIRoleMiningBetaApiAxiosParamCreator = function (configuration?: C
54140
55412
 
54141
55413
  // authentication userAuth required
54142
55414
  // oauth required
54143
- await setOAuthToObject(localVarHeaderParameter, "userAuth", ["sp:scopes:all"], configuration)
55415
+ await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
54144
55416
 
54145
55417
  // authentication userAuth required
54146
55418
  // oauth required
54147
- await setOAuthToObject(localVarHeaderParameter, "userAuth", ["sp:scopes:all"], configuration)
55419
+ await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
55420
+
55421
+ // authentication applicationAuth required
55422
+ // oauth required
55423
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
54148
55424
 
54149
55425
 
54150
55426
 
@@ -54187,11 +55463,15 @@ export const IAIRoleMiningBetaApiAxiosParamCreator = function (configuration?: C
54187
55463
 
54188
55464
  // authentication userAuth required
54189
55465
  // oauth required
54190
- await setOAuthToObject(localVarHeaderParameter, "userAuth", ["sp:scopes:all"], configuration)
55466
+ await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
54191
55467
 
54192
55468
  // authentication userAuth required
54193
55469
  // oauth required
54194
- await setOAuthToObject(localVarHeaderParameter, "userAuth", ["sp:scopes:all"], configuration)
55470
+ await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
55471
+
55472
+ // authentication applicationAuth required
55473
+ // oauth required
55474
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
54195
55475
 
54196
55476
 
54197
55477
 
@@ -54240,11 +55520,15 @@ export const IAIRoleMiningBetaApiAxiosParamCreator = function (configuration?: C
54240
55520
 
54241
55521
  // authentication userAuth required
54242
55522
  // oauth required
54243
- await setOAuthToObject(localVarHeaderParameter, "userAuth", ["sp:scopes:all"], configuration)
55523
+ await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
54244
55524
 
54245
55525
  // authentication userAuth required
54246
55526
  // oauth required
54247
- await setOAuthToObject(localVarHeaderParameter, "userAuth", ["sp:scopes:all"], configuration)
55527
+ await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
55528
+
55529
+ // authentication applicationAuth required
55530
+ // oauth required
55531
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
54248
55532
 
54249
55533
 
54250
55534
 
@@ -54289,6 +55573,10 @@ export const IAIRoleMiningBetaApiAxiosParamCreator = function (configuration?: C
54289
55573
  // oauth required
54290
55574
  await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
54291
55575
 
55576
+ // authentication applicationAuth required
55577
+ // oauth required
55578
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
55579
+
54292
55580
  if (sorters !== undefined) {
54293
55581
  localVarQueryParameter['sorters'] = sorters;
54294
55582
  }
@@ -54350,11 +55638,15 @@ export const IAIRoleMiningBetaApiAxiosParamCreator = function (configuration?: C
54350
55638
 
54351
55639
  // authentication userAuth required
54352
55640
  // oauth required
54353
- await setOAuthToObject(localVarHeaderParameter, "userAuth", ["sp:scopes:all"], configuration)
55641
+ await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
54354
55642
 
54355
55643
  // authentication userAuth required
54356
55644
  // oauth required
54357
- await setOAuthToObject(localVarHeaderParameter, "userAuth", ["sp:scopes:all"], configuration)
55645
+ await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
55646
+
55647
+ // authentication applicationAuth required
55648
+ // oauth required
55649
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
54358
55650
 
54359
55651
  if (includeCommonAccess !== undefined) {
54360
55652
  localVarQueryParameter['includeCommonAccess'] = includeCommonAccess;
@@ -54412,6 +55704,10 @@ export const IAIRoleMiningBetaApiAxiosParamCreator = function (configuration?: C
54412
55704
  // oauth required
54413
55705
  await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
54414
55706
 
55707
+ // authentication applicationAuth required
55708
+ // oauth required
55709
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
55710
+
54415
55711
  if (includeCommonAccess !== undefined) {
54416
55712
  localVarQueryParameter['includeCommonAccess'] = includeCommonAccess;
54417
55713
  }
@@ -54481,11 +55777,15 @@ export const IAIRoleMiningBetaApiAxiosParamCreator = function (configuration?: C
54481
55777
 
54482
55778
  // authentication userAuth required
54483
55779
  // oauth required
54484
- await setOAuthToObject(localVarHeaderParameter, "userAuth", ["sp:scopes:all"], configuration)
55780
+ await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
54485
55781
 
54486
55782
  // authentication userAuth required
54487
55783
  // oauth required
54488
- await setOAuthToObject(localVarHeaderParameter, "userAuth", ["sp:scopes:all"], configuration)
55784
+ await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
55785
+
55786
+ // authentication applicationAuth required
55787
+ // oauth required
55788
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
54489
55789
 
54490
55790
  if (sorters !== undefined) {
54491
55791
  localVarQueryParameter['sorters'] = sorters;
@@ -54552,11 +55852,15 @@ export const IAIRoleMiningBetaApiAxiosParamCreator = function (configuration?: C
54552
55852
 
54553
55853
  // authentication userAuth required
54554
55854
  // oauth required
54555
- await setOAuthToObject(localVarHeaderParameter, "userAuth", ["sp:scopes:all"], configuration)
55855
+ await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
54556
55856
 
54557
55857
  // authentication userAuth required
54558
55858
  // oauth required
54559
- await setOAuthToObject(localVarHeaderParameter, "userAuth", ["sp:scopes:all"], configuration)
55859
+ await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
55860
+
55861
+ // authentication applicationAuth required
55862
+ // oauth required
55863
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
54560
55864
 
54561
55865
  if (sorters !== undefined) {
54562
55866
  localVarQueryParameter['sorters'] = sorters;
@@ -54618,11 +55922,15 @@ export const IAIRoleMiningBetaApiAxiosParamCreator = function (configuration?: C
54618
55922
 
54619
55923
  // authentication userAuth required
54620
55924
  // oauth required
54621
- await setOAuthToObject(localVarHeaderParameter, "userAuth", ["sp:scopes:all"], configuration)
55925
+ await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
54622
55926
 
54623
55927
  // authentication userAuth required
54624
55928
  // oauth required
54625
- await setOAuthToObject(localVarHeaderParameter, "userAuth", ["sp:scopes:all"], configuration)
55929
+ await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
55930
+
55931
+ // authentication applicationAuth required
55932
+ // oauth required
55933
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
54626
55934
 
54627
55935
 
54628
55936
 
@@ -54674,6 +55982,10 @@ export const IAIRoleMiningBetaApiAxiosParamCreator = function (configuration?: C
54674
55982
  // oauth required
54675
55983
  await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
54676
55984
 
55985
+ // authentication applicationAuth required
55986
+ // oauth required
55987
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
55988
+
54677
55989
  if (filters !== undefined) {
54678
55990
  localVarQueryParameter['filters'] = filters;
54679
55991
  }
@@ -54740,6 +56052,10 @@ export const IAIRoleMiningBetaApiAxiosParamCreator = function (configuration?: C
54740
56052
  // oauth required
54741
56053
  await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
54742
56054
 
56055
+ // authentication applicationAuth required
56056
+ // oauth required
56057
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
56058
+
54743
56059
  if (filters !== undefined) {
54744
56060
  localVarQueryParameter['filters'] = filters;
54745
56061
  }
@@ -54806,6 +56122,10 @@ export const IAIRoleMiningBetaApiAxiosParamCreator = function (configuration?: C
54806
56122
  // oauth required
54807
56123
  await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
54808
56124
 
56125
+ // authentication applicationAuth required
56126
+ // oauth required
56127
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
56128
+
54809
56129
  if (sorters !== undefined) {
54810
56130
  localVarQueryParameter['sorters'] = sorters;
54811
56131
  }
@@ -54863,11 +56183,15 @@ export const IAIRoleMiningBetaApiAxiosParamCreator = function (configuration?: C
54863
56183
 
54864
56184
  // authentication userAuth required
54865
56185
  // oauth required
54866
- await setOAuthToObject(localVarHeaderParameter, "userAuth", ["sp:scopes:all"], configuration)
56186
+ await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
54867
56187
 
54868
56188
  // authentication userAuth required
54869
56189
  // oauth required
54870
- await setOAuthToObject(localVarHeaderParameter, "userAuth", ["sp:scopes:all"], configuration)
56190
+ await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
56191
+
56192
+ // authentication applicationAuth required
56193
+ // oauth required
56194
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
54871
56195
 
54872
56196
  if (sorters !== undefined) {
54873
56197
  localVarQueryParameter['sorters'] = sorters;
@@ -54931,6 +56255,10 @@ export const IAIRoleMiningBetaApiAxiosParamCreator = function (configuration?: C
54931
56255
  // oauth required
54932
56256
  await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
54933
56257
 
56258
+ // authentication applicationAuth required
56259
+ // oauth required
56260
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
56261
+
54934
56262
 
54935
56263
 
54936
56264
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -54967,11 +56295,15 @@ export const IAIRoleMiningBetaApiAxiosParamCreator = function (configuration?: C
54967
56295
 
54968
56296
  // authentication userAuth required
54969
56297
  // oauth required
54970
- await setOAuthToObject(localVarHeaderParameter, "userAuth", ["sp:scopes:all"], configuration)
56298
+ await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
54971
56299
 
54972
56300
  // authentication userAuth required
54973
56301
  // oauth required
54974
- await setOAuthToObject(localVarHeaderParameter, "userAuth", ["sp:scopes:all"], configuration)
56302
+ await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
56303
+
56304
+ // authentication applicationAuth required
56305
+ // oauth required
56306
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
54975
56307
 
54976
56308
 
54977
56309
 
@@ -55009,11 +56341,15 @@ export const IAIRoleMiningBetaApiAxiosParamCreator = function (configuration?: C
55009
56341
 
55010
56342
  // authentication userAuth required
55011
56343
  // oauth required
55012
- await setOAuthToObject(localVarHeaderParameter, "userAuth", ["sp:scopes:all"], configuration)
56344
+ await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
55013
56345
 
55014
56346
  // authentication userAuth required
55015
56347
  // oauth required
55016
- await setOAuthToObject(localVarHeaderParameter, "userAuth", ["sp:scopes:all"], configuration)
56348
+ await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
56349
+
56350
+ // authentication applicationAuth required
56351
+ // oauth required
56352
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
55017
56353
 
55018
56354
 
55019
56355
 
@@ -55052,11 +56388,15 @@ export const IAIRoleMiningBetaApiAxiosParamCreator = function (configuration?: C
55052
56388
 
55053
56389
  // authentication userAuth required
55054
56390
  // oauth required
55055
- await setOAuthToObject(localVarHeaderParameter, "userAuth", ["sp:scopes:all"], configuration)
56391
+ await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
55056
56392
 
55057
56393
  // authentication userAuth required
55058
56394
  // oauth required
55059
- await setOAuthToObject(localVarHeaderParameter, "userAuth", ["sp:scopes:all"], configuration)
56395
+ await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
56396
+
56397
+ // authentication applicationAuth required
56398
+ // oauth required
56399
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
55060
56400
 
55061
56401
  if (filters !== undefined) {
55062
56402
  localVarQueryParameter['filters'] = filters;
@@ -55120,6 +56460,10 @@ export const IAIRoleMiningBetaApiAxiosParamCreator = function (configuration?: C
55120
56460
  // oauth required
55121
56461
  await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
55122
56462
 
56463
+ // authentication applicationAuth required
56464
+ // oauth required
56465
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
56466
+
55123
56467
  if (sorters !== undefined) {
55124
56468
  localVarQueryParameter['sorters'] = sorters;
55125
56469
  }
@@ -55152,17 +56496,17 @@ export const IAIRoleMiningBetaApiAxiosParamCreator = function (configuration?: C
55152
56496
  * @summary Update a potential role in session
55153
56497
  * @param {string} sessionId The role mining session id
55154
56498
  * @param {string} potentialRoleId The potential role summary id
55155
- * @param {Array<PatchPotentialRoleRequestInnerBeta>} patchPotentialRoleRequestInnerBeta
56499
+ * @param {Array<JsonPatchOperationBeta>} jsonPatchOperationBeta
55156
56500
  * @param {*} [axiosOptions] Override http request option.
55157
56501
  * @throws {RequiredError}
55158
56502
  */
55159
- patchPotentialRole: async (sessionId: string, potentialRoleId: string, patchPotentialRoleRequestInnerBeta: Array<PatchPotentialRoleRequestInnerBeta>, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
56503
+ patchPotentialRoleSession: async (sessionId: string, potentialRoleId: string, jsonPatchOperationBeta: Array<JsonPatchOperationBeta>, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
55160
56504
  // verify required parameter 'sessionId' is not null or undefined
55161
- assertParamExists('patchPotentialRole', 'sessionId', sessionId)
56505
+ assertParamExists('patchPotentialRoleSession', 'sessionId', sessionId)
55162
56506
  // verify required parameter 'potentialRoleId' is not null or undefined
55163
- assertParamExists('patchPotentialRole', 'potentialRoleId', potentialRoleId)
55164
- // verify required parameter 'patchPotentialRoleRequestInnerBeta' is not null or undefined
55165
- assertParamExists('patchPotentialRole', 'patchPotentialRoleRequestInnerBeta', patchPotentialRoleRequestInnerBeta)
56507
+ assertParamExists('patchPotentialRoleSession', 'potentialRoleId', potentialRoleId)
56508
+ // verify required parameter 'jsonPatchOperationBeta' is not null or undefined
56509
+ assertParamExists('patchPotentialRoleSession', 'jsonPatchOperationBeta', jsonPatchOperationBeta)
55166
56510
  const localVarPath = `/role-mining-sessions/{sessionId}/potential-role-summaries/{potentialRoleId}`
55167
56511
  .replace(`{${"sessionId"}}`, encodeURIComponent(String(sessionId)))
55168
56512
  .replace(`{${"potentialRoleId"}}`, encodeURIComponent(String(potentialRoleId)));
@@ -55179,11 +56523,15 @@ export const IAIRoleMiningBetaApiAxiosParamCreator = function (configuration?: C
55179
56523
 
55180
56524
  // authentication userAuth required
55181
56525
  // oauth required
55182
- await setOAuthToObject(localVarHeaderParameter, "userAuth", ["sp:scopes:all"], configuration)
56526
+ await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
55183
56527
 
55184
56528
  // authentication userAuth required
55185
56529
  // oauth required
55186
- await setOAuthToObject(localVarHeaderParameter, "userAuth", ["sp:scopes:all"], configuration)
56530
+ await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
56531
+
56532
+ // authentication applicationAuth required
56533
+ // oauth required
56534
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
55187
56535
 
55188
56536
 
55189
56537
 
@@ -55192,7 +56540,7 @@ export const IAIRoleMiningBetaApiAxiosParamCreator = function (configuration?: C
55192
56540
  setSearchParams(localVarUrlObj, localVarQueryParameter);
55193
56541
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
55194
56542
  localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
55195
- localVarRequestOptions.data = serializeDataIfNeeded(patchPotentialRoleRequestInnerBeta, localVarRequestOptions, configuration)
56543
+ localVarRequestOptions.data = serializeDataIfNeeded(jsonPatchOperationBeta, localVarRequestOptions, configuration)
55196
56544
 
55197
56545
  return {
55198
56546
  url: toPathString(localVarUrlObj),
@@ -55203,15 +56551,15 @@ export const IAIRoleMiningBetaApiAxiosParamCreator = function (configuration?: C
55203
56551
  * This method updates an existing potential role. The following fields can be modified: * `description` * `name` * `saved` >**NOTE: All other fields cannot be modified.**
55204
56552
  * @summary Update a potential role
55205
56553
  * @param {string} potentialRoleId The potential role summary id
55206
- * @param {Array<PatchPotentialRoleRequestInnerBeta>} patchPotentialRoleRequestInnerBeta
56554
+ * @param {Array<PatchRoleMiningPotentialRoleRequestInnerBeta>} patchRoleMiningPotentialRoleRequestInnerBeta
55207
56555
  * @param {*} [axiosOptions] Override http request option.
55208
56556
  * @throws {RequiredError}
55209
56557
  */
55210
- patchRoleMiningPotentialRole: async (potentialRoleId: string, patchPotentialRoleRequestInnerBeta: Array<PatchPotentialRoleRequestInnerBeta>, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
56558
+ patchRoleMiningPotentialRole: async (potentialRoleId: string, patchRoleMiningPotentialRoleRequestInnerBeta: Array<PatchRoleMiningPotentialRoleRequestInnerBeta>, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
55211
56559
  // verify required parameter 'potentialRoleId' is not null or undefined
55212
56560
  assertParamExists('patchRoleMiningPotentialRole', 'potentialRoleId', potentialRoleId)
55213
- // verify required parameter 'patchPotentialRoleRequestInnerBeta' is not null or undefined
55214
- assertParamExists('patchRoleMiningPotentialRole', 'patchPotentialRoleRequestInnerBeta', patchPotentialRoleRequestInnerBeta)
56561
+ // verify required parameter 'patchRoleMiningPotentialRoleRequestInnerBeta' is not null or undefined
56562
+ assertParamExists('patchRoleMiningPotentialRole', 'patchRoleMiningPotentialRoleRequestInnerBeta', patchRoleMiningPotentialRoleRequestInnerBeta)
55215
56563
  const localVarPath = `/role-mining-potential-roles/{potentialRoleId}`
55216
56564
  .replace(`{${"potentialRoleId"}}`, encodeURIComponent(String(potentialRoleId)));
55217
56565
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
@@ -55240,7 +56588,7 @@ export const IAIRoleMiningBetaApiAxiosParamCreator = function (configuration?: C
55240
56588
  setSearchParams(localVarUrlObj, localVarQueryParameter);
55241
56589
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
55242
56590
  localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
55243
- localVarRequestOptions.data = serializeDataIfNeeded(patchPotentialRoleRequestInnerBeta, localVarRequestOptions, configuration)
56591
+ localVarRequestOptions.data = serializeDataIfNeeded(patchRoleMiningPotentialRoleRequestInnerBeta, localVarRequestOptions, configuration)
55244
56592
 
55245
56593
  return {
55246
56594
  url: toPathString(localVarUrlObj),
@@ -55275,11 +56623,15 @@ export const IAIRoleMiningBetaApiAxiosParamCreator = function (configuration?: C
55275
56623
 
55276
56624
  // authentication userAuth required
55277
56625
  // oauth required
55278
- await setOAuthToObject(localVarHeaderParameter, "userAuth", ["sp:scopes:all"], configuration)
56626
+ await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
55279
56627
 
55280
56628
  // authentication userAuth required
55281
56629
  // oauth required
55282
- await setOAuthToObject(localVarHeaderParameter, "userAuth", ["sp:scopes:all"], configuration)
56630
+ await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
56631
+
56632
+ // authentication applicationAuth required
56633
+ // oauth required
56634
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
55283
56635
 
55284
56636
 
55285
56637
 
@@ -55327,11 +56679,15 @@ export const IAIRoleMiningBetaApiAxiosParamCreator = function (configuration?: C
55327
56679
 
55328
56680
  // authentication userAuth required
55329
56681
  // oauth required
55330
- await setOAuthToObject(localVarHeaderParameter, "userAuth", ["sp:scopes:all"], configuration)
56682
+ await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
55331
56683
 
55332
56684
  // authentication userAuth required
55333
56685
  // oauth required
55334
- await setOAuthToObject(localVarHeaderParameter, "userAuth", ["sp:scopes:all"], configuration)
56686
+ await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
56687
+
56688
+ // authentication applicationAuth required
56689
+ // oauth required
56690
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
55335
56691
 
55336
56692
 
55337
56693
 
@@ -55699,26 +57055,26 @@ export const IAIRoleMiningBetaApiFp = function(configuration?: Configuration) {
55699
57055
  * @summary Update a potential role in session
55700
57056
  * @param {string} sessionId The role mining session id
55701
57057
  * @param {string} potentialRoleId The potential role summary id
55702
- * @param {Array<PatchPotentialRoleRequestInnerBeta>} patchPotentialRoleRequestInnerBeta
57058
+ * @param {Array<JsonPatchOperationBeta>} jsonPatchOperationBeta
55703
57059
  * @param {*} [axiosOptions] Override http request option.
55704
57060
  * @throws {RequiredError}
55705
57061
  */
55706
- async patchPotentialRole(sessionId: string, potentialRoleId: string, patchPotentialRoleRequestInnerBeta: Array<PatchPotentialRoleRequestInnerBeta>, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>> {
55707
- const localVarAxiosArgs = await localVarAxiosParamCreator.patchPotentialRole(sessionId, potentialRoleId, patchPotentialRoleRequestInnerBeta, axiosOptions);
57062
+ async patchPotentialRoleSession(sessionId: string, potentialRoleId: string, jsonPatchOperationBeta: Array<JsonPatchOperationBeta>, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>> {
57063
+ const localVarAxiosArgs = await localVarAxiosParamCreator.patchPotentialRoleSession(sessionId, potentialRoleId, jsonPatchOperationBeta, axiosOptions);
55708
57064
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
55709
- const localVarOperationServerBasePath = operationServerMap['IAIRoleMiningBetaApi.patchPotentialRole']?.[localVarOperationServerIndex]?.url;
57065
+ const localVarOperationServerBasePath = operationServerMap['IAIRoleMiningBetaApi.patchPotentialRoleSession']?.[localVarOperationServerIndex]?.url;
55710
57066
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
55711
57067
  },
55712
57068
  /**
55713
57069
  * This method updates an existing potential role. The following fields can be modified: * `description` * `name` * `saved` >**NOTE: All other fields cannot be modified.**
55714
57070
  * @summary Update a potential role
55715
57071
  * @param {string} potentialRoleId The potential role summary id
55716
- * @param {Array<PatchPotentialRoleRequestInnerBeta>} patchPotentialRoleRequestInnerBeta
57072
+ * @param {Array<PatchRoleMiningPotentialRoleRequestInnerBeta>} patchRoleMiningPotentialRoleRequestInnerBeta
55717
57073
  * @param {*} [axiosOptions] Override http request option.
55718
57074
  * @throws {RequiredError}
55719
57075
  */
55720
- async patchRoleMiningPotentialRole(potentialRoleId: string, patchPotentialRoleRequestInnerBeta: Array<PatchPotentialRoleRequestInnerBeta>, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>> {
55721
- const localVarAxiosArgs = await localVarAxiosParamCreator.patchRoleMiningPotentialRole(potentialRoleId, patchPotentialRoleRequestInnerBeta, axiosOptions);
57076
+ async patchRoleMiningPotentialRole(potentialRoleId: string, patchRoleMiningPotentialRoleRequestInnerBeta: Array<PatchRoleMiningPotentialRoleRequestInnerBeta>, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>> {
57077
+ const localVarAxiosArgs = await localVarAxiosParamCreator.patchRoleMiningPotentialRole(potentialRoleId, patchRoleMiningPotentialRoleRequestInnerBeta, axiosOptions);
55722
57078
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
55723
57079
  const localVarOperationServerBasePath = operationServerMap['IAIRoleMiningBetaApi.patchRoleMiningPotentialRole']?.[localVarOperationServerIndex]?.url;
55724
57080
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
@@ -55975,12 +57331,12 @@ export const IAIRoleMiningBetaApiFactory = function (configuration?: Configurati
55975
57331
  /**
55976
57332
  * 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.**
55977
57333
  * @summary Update a potential role in session
55978
- * @param {IAIRoleMiningBetaApiPatchPotentialRoleRequest} requestParameters Request parameters.
57334
+ * @param {IAIRoleMiningBetaApiPatchPotentialRoleSessionRequest} requestParameters Request parameters.
55979
57335
  * @param {*} [axiosOptions] Override http request option.
55980
57336
  * @throws {RequiredError}
55981
57337
  */
55982
- patchPotentialRole(requestParameters: IAIRoleMiningBetaApiPatchPotentialRoleRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<object> {
55983
- return localVarFp.patchPotentialRole(requestParameters.sessionId, requestParameters.potentialRoleId, requestParameters.patchPotentialRoleRequestInnerBeta, axiosOptions).then((request) => request(axios, basePath));
57338
+ patchPotentialRoleSession(requestParameters: IAIRoleMiningBetaApiPatchPotentialRoleSessionRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<object> {
57339
+ return localVarFp.patchPotentialRoleSession(requestParameters.sessionId, requestParameters.potentialRoleId, requestParameters.jsonPatchOperationBeta, axiosOptions).then((request) => request(axios, basePath));
55984
57340
  },
55985
57341
  /**
55986
57342
  * This method updates an existing potential role. The following fields can be modified: * `description` * `name` * `saved` >**NOTE: All other fields cannot be modified.**
@@ -55990,7 +57346,7 @@ export const IAIRoleMiningBetaApiFactory = function (configuration?: Configurati
55990
57346
  * @throws {RequiredError}
55991
57347
  */
55992
57348
  patchRoleMiningPotentialRole(requestParameters: IAIRoleMiningBetaApiPatchRoleMiningPotentialRoleRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<object> {
55993
- return localVarFp.patchRoleMiningPotentialRole(requestParameters.potentialRoleId, requestParameters.patchPotentialRoleRequestInnerBeta, axiosOptions).then((request) => request(axios, basePath));
57349
+ return localVarFp.patchRoleMiningPotentialRole(requestParameters.potentialRoleId, requestParameters.patchRoleMiningPotentialRoleRequestInnerBeta, axiosOptions).then((request) => request(axios, basePath));
55994
57350
  },
55995
57351
  /**
55996
57352
  * 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.
@@ -56758,31 +58114,31 @@ export interface IAIRoleMiningBetaApiGetSavedPotentialRolesRequest {
56758
58114
  }
56759
58115
 
56760
58116
  /**
56761
- * Request parameters for patchPotentialRole operation in IAIRoleMiningBetaApi.
58117
+ * Request parameters for patchPotentialRoleSession operation in IAIRoleMiningBetaApi.
56762
58118
  * @export
56763
- * @interface IAIRoleMiningBetaApiPatchPotentialRoleRequest
58119
+ * @interface IAIRoleMiningBetaApiPatchPotentialRoleSessionRequest
56764
58120
  */
56765
- export interface IAIRoleMiningBetaApiPatchPotentialRoleRequest {
58121
+ export interface IAIRoleMiningBetaApiPatchPotentialRoleSessionRequest {
56766
58122
  /**
56767
58123
  * The role mining session id
56768
58124
  * @type {string}
56769
- * @memberof IAIRoleMiningBetaApiPatchPotentialRole
58125
+ * @memberof IAIRoleMiningBetaApiPatchPotentialRoleSession
56770
58126
  */
56771
58127
  readonly sessionId: string
56772
58128
 
56773
58129
  /**
56774
58130
  * The potential role summary id
56775
58131
  * @type {string}
56776
- * @memberof IAIRoleMiningBetaApiPatchPotentialRole
58132
+ * @memberof IAIRoleMiningBetaApiPatchPotentialRoleSession
56777
58133
  */
56778
58134
  readonly potentialRoleId: string
56779
58135
 
56780
58136
  /**
56781
58137
  *
56782
- * @type {Array<PatchPotentialRoleRequestInnerBeta>}
56783
- * @memberof IAIRoleMiningBetaApiPatchPotentialRole
58138
+ * @type {Array<JsonPatchOperationBeta>}
58139
+ * @memberof IAIRoleMiningBetaApiPatchPotentialRoleSession
56784
58140
  */
56785
- readonly patchPotentialRoleRequestInnerBeta: Array<PatchPotentialRoleRequestInnerBeta>
58141
+ readonly jsonPatchOperationBeta: Array<JsonPatchOperationBeta>
56786
58142
  }
56787
58143
 
56788
58144
  /**
@@ -56800,10 +58156,10 @@ export interface IAIRoleMiningBetaApiPatchRoleMiningPotentialRoleRequest {
56800
58156
 
56801
58157
  /**
56802
58158
  *
56803
- * @type {Array<PatchPotentialRoleRequestInnerBeta>}
58159
+ * @type {Array<PatchRoleMiningPotentialRoleRequestInnerBeta>}
56804
58160
  * @memberof IAIRoleMiningBetaApiPatchRoleMiningPotentialRole
56805
58161
  */
56806
- readonly patchPotentialRoleRequestInnerBeta: Array<PatchPotentialRoleRequestInnerBeta>
58162
+ readonly patchRoleMiningPotentialRoleRequestInnerBeta: Array<PatchRoleMiningPotentialRoleRequestInnerBeta>
56807
58163
  }
56808
58164
 
56809
58165
  /**
@@ -57117,13 +58473,13 @@ export class IAIRoleMiningBetaApi extends BaseAPI {
57117
58473
  /**
57118
58474
  * 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.**
57119
58475
  * @summary Update a potential role in session
57120
- * @param {IAIRoleMiningBetaApiPatchPotentialRoleRequest} requestParameters Request parameters.
58476
+ * @param {IAIRoleMiningBetaApiPatchPotentialRoleSessionRequest} requestParameters Request parameters.
57121
58477
  * @param {*} [axiosOptions] Override http request option.
57122
58478
  * @throws {RequiredError}
57123
58479
  * @memberof IAIRoleMiningBetaApi
57124
58480
  */
57125
- public patchPotentialRole(requestParameters: IAIRoleMiningBetaApiPatchPotentialRoleRequest, axiosOptions?: RawAxiosRequestConfig) {
57126
- return IAIRoleMiningBetaApiFp(this.configuration).patchPotentialRole(requestParameters.sessionId, requestParameters.potentialRoleId, requestParameters.patchPotentialRoleRequestInnerBeta, axiosOptions).then((request) => request(this.axios, this.basePath));
58481
+ public patchPotentialRoleSession(requestParameters: IAIRoleMiningBetaApiPatchPotentialRoleSessionRequest, axiosOptions?: RawAxiosRequestConfig) {
58482
+ return IAIRoleMiningBetaApiFp(this.configuration).patchPotentialRoleSession(requestParameters.sessionId, requestParameters.potentialRoleId, requestParameters.jsonPatchOperationBeta, axiosOptions).then((request) => request(this.axios, this.basePath));
57127
58483
  }
57128
58484
 
57129
58485
  /**
@@ -57135,7 +58491,7 @@ export class IAIRoleMiningBetaApi extends BaseAPI {
57135
58491
  * @memberof IAIRoleMiningBetaApi
57136
58492
  */
57137
58493
  public patchRoleMiningPotentialRole(requestParameters: IAIRoleMiningBetaApiPatchRoleMiningPotentialRoleRequest, axiosOptions?: RawAxiosRequestConfig) {
57138
- return IAIRoleMiningBetaApiFp(this.configuration).patchRoleMiningPotentialRole(requestParameters.potentialRoleId, requestParameters.patchPotentialRoleRequestInnerBeta, axiosOptions).then((request) => request(this.axios, this.basePath));
58494
+ return IAIRoleMiningBetaApiFp(this.configuration).patchRoleMiningPotentialRole(requestParameters.potentialRoleId, requestParameters.patchRoleMiningPotentialRoleRequestInnerBeta, axiosOptions).then((request) => request(this.axios, this.basePath));
57139
58495
  }
57140
58496
 
57141
58497
  /**
@@ -57206,6 +58562,10 @@ export const IconsBetaApiAxiosParamCreator = function (configuration?: Configura
57206
58562
  // oauth required
57207
58563
  await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
57208
58564
 
58565
+ // authentication applicationAuth required
58566
+ // oauth required
58567
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
58568
+
57209
58569
 
57210
58570
 
57211
58571
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -57256,6 +58616,10 @@ export const IconsBetaApiAxiosParamCreator = function (configuration?: Configura
57256
58616
  // oauth required
57257
58617
  await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
57258
58618
 
58619
+ // authentication applicationAuth required
58620
+ // oauth required
58621
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
58622
+
57259
58623
 
57260
58624
  if (image !== undefined) {
57261
58625
  localVarFormParams.append('image', image as any);
@@ -57480,6 +58844,10 @@ export const IdentitiesBetaApiAxiosParamCreator = function (configuration?: Conf
57480
58844
  // oauth required
57481
58845
  await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
57482
58846
 
58847
+ // authentication applicationAuth required
58848
+ // oauth required
58849
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
58850
+
57483
58851
 
57484
58852
 
57485
58853
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -57811,11 +59179,11 @@ export const IdentitiesBetaApiAxiosParamCreator = function (configuration?: Conf
57811
59179
 
57812
59180
  // authentication userAuth required
57813
59181
  // oauth required
57814
- await setOAuthToObject(localVarHeaderParameter, "userAuth", ["sp:scopes:all"], configuration)
59182
+ await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
57815
59183
 
57816
59184
  // authentication userAuth required
57817
59185
  // oauth required
57818
- await setOAuthToObject(localVarHeaderParameter, "userAuth", ["sp:scopes:all"], configuration)
59186
+ await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
57819
59187
 
57820
59188
 
57821
59189
 
@@ -57905,6 +59273,10 @@ export const IdentitiesBetaApiAxiosParamCreator = function (configuration?: Conf
57905
59273
  // oauth required
57906
59274
  await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
57907
59275
 
59276
+ // authentication applicationAuth required
59277
+ // oauth required
59278
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
59279
+
57908
59280
 
57909
59281
 
57910
59282
  localVarHeaderParameter['Content-Type'] = 'application/json';
@@ -58780,6 +60152,10 @@ export const IdentityAttributesBetaApiAxiosParamCreator = function (configuratio
58780
60152
  // oauth required
58781
60153
  await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
58782
60154
 
60155
+ // authentication applicationAuth required
60156
+ // oauth required
60157
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
60158
+
58783
60159
 
58784
60160
 
58785
60161
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -58822,6 +60198,10 @@ export const IdentityAttributesBetaApiAxiosParamCreator = function (configuratio
58822
60198
  // oauth required
58823
60199
  await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
58824
60200
 
60201
+ // authentication applicationAuth required
60202
+ // oauth required
60203
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
60204
+
58825
60205
  if (includeSystem !== undefined) {
58826
60206
  localVarQueryParameter['includeSystem'] = includeSystem;
58827
60207
  }
@@ -59293,11 +60673,15 @@ export const IdentityHistoryBetaApiAxiosParamCreator = function (configuration?:
59293
60673
 
59294
60674
  // authentication userAuth required
59295
60675
  // oauth required
59296
- await setOAuthToObject(localVarHeaderParameter, "userAuth", ["sp:scopes:all"], configuration)
60676
+ await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
59297
60677
 
59298
60678
  // authentication userAuth required
59299
60679
  // oauth required
59300
- await setOAuthToObject(localVarHeaderParameter, "userAuth", ["sp:scopes:all"], configuration)
60680
+ await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
60681
+
60682
+ // authentication applicationAuth required
60683
+ // oauth required
60684
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
59301
60685
 
59302
60686
  if (snapshot1 !== undefined) {
59303
60687
  localVarQueryParameter['snapshot1'] = snapshot1;
@@ -59441,6 +60825,10 @@ export const IdentityHistoryBetaApiAxiosParamCreator = function (configuration?:
59441
60825
  // oauth required
59442
60826
  await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
59443
60827
 
60828
+ // authentication applicationAuth required
60829
+ // oauth required
60830
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
60831
+
59444
60832
 
59445
60833
 
59446
60834
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -59489,6 +60877,10 @@ export const IdentityHistoryBetaApiAxiosParamCreator = function (configuration?:
59489
60877
  // oauth required
59490
60878
  await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
59491
60879
 
60880
+ // authentication applicationAuth required
60881
+ // oauth required
60882
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
60883
+
59492
60884
  if (from !== undefined) {
59493
60885
  localVarQueryParameter['from'] = from;
59494
60886
  }
@@ -59553,11 +60945,15 @@ export const IdentityHistoryBetaApiAxiosParamCreator = function (configuration?:
59553
60945
 
59554
60946
  // authentication userAuth required
59555
60947
  // oauth required
59556
- await setOAuthToObject(localVarHeaderParameter, "userAuth", ["sp:scopes:all"], configuration)
60948
+ await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
59557
60949
 
59558
60950
  // authentication userAuth required
59559
60951
  // oauth required
59560
- await setOAuthToObject(localVarHeaderParameter, "userAuth", ["sp:scopes:all"], configuration)
60952
+ await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
60953
+
60954
+ // authentication applicationAuth required
60955
+ // oauth required
60956
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
59561
60957
 
59562
60958
 
59563
60959
 
@@ -59601,11 +60997,15 @@ export const IdentityHistoryBetaApiAxiosParamCreator = function (configuration?:
59601
60997
 
59602
60998
  // authentication userAuth required
59603
60999
  // oauth required
59604
- await setOAuthToObject(localVarHeaderParameter, "userAuth", ["sp:scopes:all"], configuration)
61000
+ await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
59605
61001
 
59606
61002
  // authentication userAuth required
59607
61003
  // oauth required
59608
- await setOAuthToObject(localVarHeaderParameter, "userAuth", ["sp:scopes:all"], configuration)
61004
+ await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
61005
+
61006
+ // authentication applicationAuth required
61007
+ // oauth required
61008
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
59609
61009
 
59610
61010
  if (before !== undefined) {
59611
61011
  localVarQueryParameter['before'] = before;
@@ -59667,11 +61067,15 @@ export const IdentityHistoryBetaApiAxiosParamCreator = function (configuration?:
59667
61067
 
59668
61068
  // authentication userAuth required
59669
61069
  // oauth required
59670
- await setOAuthToObject(localVarHeaderParameter, "userAuth", ["sp:scopes:all"], configuration)
61070
+ await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
59671
61071
 
59672
61072
  // authentication userAuth required
59673
61073
  // oauth required
59674
- await setOAuthToObject(localVarHeaderParameter, "userAuth", ["sp:scopes:all"], configuration)
61074
+ await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
61075
+
61076
+ // authentication applicationAuth required
61077
+ // oauth required
61078
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
59675
61079
 
59676
61080
 
59677
61081
 
@@ -59716,6 +61120,10 @@ export const IdentityHistoryBetaApiAxiosParamCreator = function (configuration?:
59716
61120
  // oauth required
59717
61121
  await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
59718
61122
 
61123
+ // authentication applicationAuth required
61124
+ // oauth required
61125
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
61126
+
59719
61127
  if (startsWithQuery !== undefined) {
59720
61128
  localVarQueryParameter['starts-with-query'] = startsWithQuery;
59721
61129
  }
@@ -59785,6 +61193,10 @@ export const IdentityHistoryBetaApiAxiosParamCreator = function (configuration?:
59785
61193
  // oauth required
59786
61194
  await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
59787
61195
 
61196
+ // authentication applicationAuth required
61197
+ // oauth required
61198
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
61199
+
59788
61200
  if (type !== undefined) {
59789
61201
  localVarQueryParameter['type'] = type;
59790
61202
  }
@@ -59860,6 +61272,10 @@ export const IdentityHistoryBetaApiAxiosParamCreator = function (configuration?:
59860
61272
  // oauth required
59861
61273
  await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
59862
61274
 
61275
+ // authentication applicationAuth required
61276
+ // oauth required
61277
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
61278
+
59863
61279
  if (type !== undefined) {
59864
61280
  localVarQueryParameter['type'] = type;
59865
61281
  }
@@ -59905,11 +61321,15 @@ export const IdentityHistoryBetaApiAxiosParamCreator = function (configuration?:
59905
61321
 
59906
61322
  // authentication userAuth required
59907
61323
  // oauth required
59908
- await setOAuthToObject(localVarHeaderParameter, "userAuth", ["sp:scopes:all"], configuration)
61324
+ await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
59909
61325
 
59910
61326
  // authentication userAuth required
59911
61327
  // oauth required
59912
- await setOAuthToObject(localVarHeaderParameter, "userAuth", ["sp:scopes:all"], configuration)
61328
+ await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
61329
+
61330
+ // authentication applicationAuth required
61331
+ // oauth required
61332
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
59913
61333
 
59914
61334
  if (start !== undefined) {
59915
61335
  localVarQueryParameter['start'] = start;
@@ -64379,6 +65799,10 @@ export const ManagedClientsBetaApiAxiosParamCreator = function (configuration?:
64379
65799
  // oauth required
64380
65800
  await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
64381
65801
 
65802
+ // authentication applicationAuth required
65803
+ // oauth required
65804
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
65805
+
64382
65806
  if (type !== undefined) {
64383
65807
  localVarQueryParameter['type'] = type;
64384
65808
  }
@@ -64694,7 +66118,7 @@ export const ManagedClustersBetaApiAxiosParamCreator = function (configuration?:
64694
66118
  * @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.
64695
66119
  * @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.
64696
66120
  * @param {boolean} [count] If *true* it will populate the *X-Total-Count* response header with the number of results that would be returned if *limit* and *offset* were ignored. Since requesting a total count can have a performance impact, it is recommended not to send **count&#x3D;true** if that value will not be used. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
64697
- * @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*
66121
+ * @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*
64698
66122
  * @param {*} [axiosOptions] Override http request option.
64699
66123
  * @deprecated
64700
66124
  * @throws {RequiredError}
@@ -64840,7 +66264,7 @@ export const ManagedClustersBetaApiFp = function(configuration?: Configuration)
64840
66264
  * @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.
64841
66265
  * @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.
64842
66266
  * @param {boolean} [count] If *true* it will populate the *X-Total-Count* response header with the number of results that would be returned if *limit* and *offset* were ignored. Since requesting a total count can have a performance impact, it is recommended not to send **count&#x3D;true** if that value will not be used. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
64843
- * @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*
66267
+ * @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*
64844
66268
  * @param {*} [axiosOptions] Override http request option.
64845
66269
  * @deprecated
64846
66270
  * @throws {RequiredError}
@@ -64979,7 +66403,7 @@ export interface ManagedClustersBetaApiGetManagedClustersRequest {
64979
66403
  readonly count?: boolean
64980
66404
 
64981
66405
  /**
64982
- * 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*
66406
+ * 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*
64983
66407
  * @type {string}
64984
66408
  * @memberof ManagedClustersBetaApiGetManagedClusters
64985
66409
  */
@@ -65105,6 +66529,10 @@ export const MultiHostIntegrationBetaApiAxiosParamCreator = function (configurat
65105
66529
  // oauth required
65106
66530
  await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
65107
66531
 
66532
+ // authentication applicationAuth required
66533
+ // oauth required
66534
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
66535
+
65108
66536
 
65109
66537
 
65110
66538
  localVarHeaderParameter['Content-Type'] = 'application/json';
@@ -65153,6 +66581,10 @@ export const MultiHostIntegrationBetaApiAxiosParamCreator = function (configurat
65153
66581
  // oauth required
65154
66582
  await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
65155
66583
 
66584
+ // authentication applicationAuth required
66585
+ // oauth required
66586
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
66587
+
65156
66588
 
65157
66589
 
65158
66590
  localVarHeaderParameter['Content-Type'] = 'application/json';
@@ -65198,6 +66630,10 @@ export const MultiHostIntegrationBetaApiAxiosParamCreator = function (configurat
65198
66630
  // oauth required
65199
66631
  await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
65200
66632
 
66633
+ // authentication applicationAuth required
66634
+ // oauth required
66635
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
66636
+
65201
66637
 
65202
66638
 
65203
66639
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -65324,6 +66760,10 @@ export const MultiHostIntegrationBetaApiAxiosParamCreator = function (configurat
65324
66760
  // oauth required
65325
66761
  await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
65326
66762
 
66763
+ // authentication applicationAuth required
66764
+ // oauth required
66765
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
66766
+
65327
66767
 
65328
66768
 
65329
66769
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -65368,6 +66808,10 @@ export const MultiHostIntegrationBetaApiAxiosParamCreator = function (configurat
65368
66808
  // oauth required
65369
66809
  await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
65370
66810
 
66811
+ // authentication applicationAuth required
66812
+ // oauth required
66813
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
66814
+
65371
66815
  if (offset !== undefined) {
65372
66816
  localVarQueryParameter['offset'] = offset;
65373
66817
  }
@@ -65434,6 +66878,10 @@ export const MultiHostIntegrationBetaApiAxiosParamCreator = function (configurat
65434
66878
  // oauth required
65435
66879
  await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
65436
66880
 
66881
+ // authentication applicationAuth required
66882
+ // oauth required
66883
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
66884
+
65437
66885
 
65438
66886
 
65439
66887
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -65472,6 +66920,10 @@ export const MultiHostIntegrationBetaApiAxiosParamCreator = function (configurat
65472
66920
  // oauth required
65473
66921
  await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
65474
66922
 
66923
+ // authentication applicationAuth required
66924
+ // oauth required
66925
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
66926
+
65475
66927
 
65476
66928
 
65477
66929
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -65519,6 +66971,10 @@ export const MultiHostIntegrationBetaApiAxiosParamCreator = function (configurat
65519
66971
  // oauth required
65520
66972
  await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
65521
66973
 
66974
+ // authentication applicationAuth required
66975
+ // oauth required
66976
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
66977
+
65522
66978
  if (offset !== undefined) {
65523
66979
  localVarQueryParameter['offset'] = offset;
65524
66980
  }
@@ -65627,6 +67083,10 @@ export const MultiHostIntegrationBetaApiAxiosParamCreator = function (configurat
65627
67083
  // oauth required
65628
67084
  await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
65629
67085
 
67086
+ // authentication applicationAuth required
67087
+ // oauth required
67088
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
67089
+
65630
67090
 
65631
67091
 
65632
67092
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -66529,6 +67989,10 @@ export const NonEmployeeLifecycleManagementBetaApiAxiosParamCreator = function (
66529
67989
  // oauth required
66530
67990
  await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
66531
67991
 
67992
+ // authentication applicationAuth required
67993
+ // oauth required
67994
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
67995
+
66532
67996
 
66533
67997
 
66534
67998
  localVarHeaderParameter['Content-Type'] = 'application/json';
@@ -66574,6 +68038,10 @@ export const NonEmployeeLifecycleManagementBetaApiAxiosParamCreator = function (
66574
68038
  // oauth required
66575
68039
  await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
66576
68040
 
68041
+ // authentication applicationAuth required
68042
+ // oauth required
68043
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
68044
+
66577
68045
 
66578
68046
 
66579
68047
  localVarHeaderParameter['Content-Type'] = 'application/json';
@@ -66619,6 +68087,10 @@ export const NonEmployeeLifecycleManagementBetaApiAxiosParamCreator = function (
66619
68087
  // oauth required
66620
68088
  await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
66621
68089
 
68090
+ // authentication applicationAuth required
68091
+ // oauth required
68092
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
68093
+
66622
68094
 
66623
68095
 
66624
68096
  localVarHeaderParameter['Content-Type'] = 'application/json';
@@ -66668,6 +68140,10 @@ export const NonEmployeeLifecycleManagementBetaApiAxiosParamCreator = function (
66668
68140
  // oauth required
66669
68141
  await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
66670
68142
 
68143
+ // authentication applicationAuth required
68144
+ // oauth required
68145
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
68146
+
66671
68147
 
66672
68148
 
66673
68149
  localVarHeaderParameter['Content-Type'] = 'application/json';
@@ -66714,6 +68190,10 @@ export const NonEmployeeLifecycleManagementBetaApiAxiosParamCreator = function (
66714
68190
  // oauth required
66715
68191
  await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
66716
68192
 
68193
+ // authentication applicationAuth required
68194
+ // oauth required
68195
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
68196
+
66717
68197
 
66718
68198
 
66719
68199
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -66756,6 +68236,10 @@ export const NonEmployeeLifecycleManagementBetaApiAxiosParamCreator = function (
66756
68236
  // oauth required
66757
68237
  await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
66758
68238
 
68239
+ // authentication applicationAuth required
68240
+ // oauth required
68241
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
68242
+
66759
68243
 
66760
68244
 
66761
68245
  localVarHeaderParameter['Content-Type'] = 'application/json';
@@ -66802,6 +68286,10 @@ export const NonEmployeeLifecycleManagementBetaApiAxiosParamCreator = function (
66802
68286
  // oauth required
66803
68287
  await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
66804
68288
 
68289
+ // authentication applicationAuth required
68290
+ // oauth required
68291
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
68292
+
66805
68293
 
66806
68294
 
66807
68295
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -66849,6 +68337,10 @@ export const NonEmployeeLifecycleManagementBetaApiAxiosParamCreator = function (
66849
68337
  // oauth required
66850
68338
  await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
66851
68339
 
68340
+ // authentication applicationAuth required
68341
+ // oauth required
68342
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
68343
+
66852
68344
 
66853
68345
 
66854
68346
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -66892,6 +68384,10 @@ export const NonEmployeeLifecycleManagementBetaApiAxiosParamCreator = function (
66892
68384
  // oauth required
66893
68385
  await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
66894
68386
 
68387
+ // authentication applicationAuth required
68388
+ // oauth required
68389
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
68390
+
66895
68391
 
66896
68392
 
66897
68393
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -66935,6 +68431,10 @@ export const NonEmployeeLifecycleManagementBetaApiAxiosParamCreator = function (
66935
68431
  // oauth required
66936
68432
  await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
66937
68433
 
68434
+ // authentication applicationAuth required
68435
+ // oauth required
68436
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
68437
+
66938
68438
 
66939
68439
 
66940
68440
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -67026,6 +68526,10 @@ export const NonEmployeeLifecycleManagementBetaApiAxiosParamCreator = function (
67026
68526
  // oauth required
67027
68527
  await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
67028
68528
 
68529
+ // authentication applicationAuth required
68530
+ // oauth required
68531
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
68532
+
67029
68533
 
67030
68534
 
67031
68535
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -67069,6 +68573,10 @@ export const NonEmployeeLifecycleManagementBetaApiAxiosParamCreator = function (
67069
68573
  // oauth required
67070
68574
  await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
67071
68575
 
68576
+ // authentication applicationAuth required
68577
+ // oauth required
68578
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
68579
+
67072
68580
 
67073
68581
 
67074
68582
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -67112,6 +68620,10 @@ export const NonEmployeeLifecycleManagementBetaApiAxiosParamCreator = function (
67112
68620
  // oauth required
67113
68621
  await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
67114
68622
 
68623
+ // authentication applicationAuth required
68624
+ // oauth required
68625
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
68626
+
67115
68627
 
67116
68628
 
67117
68629
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -67155,6 +68667,10 @@ export const NonEmployeeLifecycleManagementBetaApiAxiosParamCreator = function (
67155
68667
  // oauth required
67156
68668
  await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
67157
68669
 
68670
+ // authentication applicationAuth required
68671
+ // oauth required
68672
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
68673
+
67158
68674
 
67159
68675
 
67160
68676
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -67198,6 +68714,10 @@ export const NonEmployeeLifecycleManagementBetaApiAxiosParamCreator = function (
67198
68714
  // oauth required
67199
68715
  await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
67200
68716
 
68717
+ // authentication applicationAuth required
68718
+ // oauth required
68719
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
68720
+
67201
68721
 
67202
68722
 
67203
68723
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -67241,6 +68761,10 @@ export const NonEmployeeLifecycleManagementBetaApiAxiosParamCreator = function (
67241
68761
  // oauth required
67242
68762
  await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
67243
68763
 
68764
+ // authentication applicationAuth required
68765
+ // oauth required
68766
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
68767
+
67244
68768
 
67245
68769
 
67246
68770
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -67284,6 +68808,10 @@ export const NonEmployeeLifecycleManagementBetaApiAxiosParamCreator = function (
67284
68808
  // oauth required
67285
68809
  await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
67286
68810
 
68811
+ // authentication applicationAuth required
68812
+ // oauth required
68813
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
68814
+
67287
68815
 
67288
68816
 
67289
68817
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -67331,6 +68859,10 @@ export const NonEmployeeLifecycleManagementBetaApiAxiosParamCreator = function (
67331
68859
  // oauth required
67332
68860
  await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
67333
68861
 
68862
+ // authentication applicationAuth required
68863
+ // oauth required
68864
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
68865
+
67334
68866
 
67335
68867
 
67336
68868
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -67374,6 +68906,10 @@ export const NonEmployeeLifecycleManagementBetaApiAxiosParamCreator = function (
67374
68906
  // oauth required
67375
68907
  await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
67376
68908
 
68909
+ // authentication applicationAuth required
68910
+ // oauth required
68911
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
68912
+
67377
68913
 
67378
68914
 
67379
68915
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -67419,6 +68955,10 @@ export const NonEmployeeLifecycleManagementBetaApiAxiosParamCreator = function (
67419
68955
  // oauth required
67420
68956
  await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
67421
68957
 
68958
+ // authentication applicationAuth required
68959
+ // oauth required
68960
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
68961
+
67422
68962
  if (limit !== undefined) {
67423
68963
  localVarQueryParameter['limit'] = limit;
67424
68964
  }
@@ -67474,6 +69014,10 @@ export const NonEmployeeLifecycleManagementBetaApiAxiosParamCreator = function (
67474
69014
  // oauth required
67475
69015
  await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
67476
69016
 
69017
+ // authentication applicationAuth required
69018
+ // oauth required
69019
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
69020
+
67477
69021
 
67478
69022
  if (data !== undefined) {
67479
69023
  localVarFormParams.append('data', data as any);
@@ -67526,6 +69070,10 @@ export const NonEmployeeLifecycleManagementBetaApiAxiosParamCreator = function (
67526
69070
  // oauth required
67527
69071
  await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
67528
69072
 
69073
+ // authentication applicationAuth required
69074
+ // oauth required
69075
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
69076
+
67529
69077
  if (requestedFor !== undefined) {
67530
69078
  localVarQueryParameter['requested-for'] = requestedFor;
67531
69079
  }
@@ -67594,6 +69142,10 @@ export const NonEmployeeLifecycleManagementBetaApiAxiosParamCreator = function (
67594
69142
  // oauth required
67595
69143
  await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
67596
69144
 
69145
+ // authentication applicationAuth required
69146
+ // oauth required
69147
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
69148
+
67597
69149
  if (limit !== undefined) {
67598
69150
  localVarQueryParameter['limit'] = limit;
67599
69151
  }
@@ -67661,6 +69213,10 @@ export const NonEmployeeLifecycleManagementBetaApiAxiosParamCreator = function (
67661
69213
  // oauth required
67662
69214
  await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
67663
69215
 
69216
+ // authentication applicationAuth required
69217
+ // oauth required
69218
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
69219
+
67664
69220
  if (limit !== undefined) {
67665
69221
  localVarQueryParameter['limit'] = limit;
67666
69222
  }
@@ -67730,6 +69286,10 @@ export const NonEmployeeLifecycleManagementBetaApiAxiosParamCreator = function (
67730
69286
  // oauth required
67731
69287
  await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
67732
69288
 
69289
+ // authentication applicationAuth required
69290
+ // oauth required
69291
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
69292
+
67733
69293
  if (limit !== undefined) {
67734
69294
  localVarQueryParameter['limit'] = limit;
67735
69295
  }
@@ -67853,6 +69413,10 @@ export const NonEmployeeLifecycleManagementBetaApiAxiosParamCreator = function (
67853
69413
  // oauth required
67854
69414
  await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
67855
69415
 
69416
+ // authentication applicationAuth required
69417
+ // oauth required
69418
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
69419
+
67856
69420
 
67857
69421
 
67858
69422
  localVarHeaderParameter['Content-Type'] = 'application/json-patch+json';
@@ -67902,6 +69466,10 @@ export const NonEmployeeLifecycleManagementBetaApiAxiosParamCreator = function (
67902
69466
  // oauth required
67903
69467
  await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
67904
69468
 
69469
+ // authentication applicationAuth required
69470
+ // oauth required
69471
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
69472
+
67905
69473
 
67906
69474
 
67907
69475
  localVarHeaderParameter['Content-Type'] = 'application/json-patch+json';
@@ -71592,6 +73160,10 @@ export const OAuthClientsBetaApiAxiosParamCreator = function (configuration?: Co
71592
73160
  // oauth required
71593
73161
  await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
71594
73162
 
73163
+ // authentication applicationAuth required
73164
+ // oauth required
73165
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
73166
+
71595
73167
 
71596
73168
 
71597
73169
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -72013,6 +73585,10 @@ export const OrgConfigBetaApiAxiosParamCreator = function (configuration?: Confi
72013
73585
  // oauth required
72014
73586
  await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
72015
73587
 
73588
+ // authentication applicationAuth required
73589
+ // oauth required
73590
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
73591
+
72016
73592
 
72017
73593
 
72018
73594
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -72051,6 +73627,10 @@ export const OrgConfigBetaApiAxiosParamCreator = function (configuration?: Confi
72051
73627
  // oauth required
72052
73628
  await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
72053
73629
 
73630
+ // authentication applicationAuth required
73631
+ // oauth required
73632
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
73633
+
72054
73634
 
72055
73635
 
72056
73636
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -72288,6 +73868,10 @@ export const PasswordConfigurationBetaApiAxiosParamCreator = function (configura
72288
73868
  // oauth required
72289
73869
  await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
72290
73870
 
73871
+ // authentication applicationAuth required
73872
+ // oauth required
73873
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
73874
+
72291
73875
 
72292
73876
 
72293
73877
  localVarHeaderParameter['Content-Type'] = 'application/json';
@@ -72329,6 +73913,10 @@ export const PasswordConfigurationBetaApiAxiosParamCreator = function (configura
72329
73913
  // oauth required
72330
73914
  await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
72331
73915
 
73916
+ // authentication applicationAuth required
73917
+ // oauth required
73918
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
73919
+
72332
73920
 
72333
73921
 
72334
73922
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -72370,6 +73958,10 @@ export const PasswordConfigurationBetaApiAxiosParamCreator = function (configura
72370
73958
  // oauth required
72371
73959
  await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
72372
73960
 
73961
+ // authentication applicationAuth required
73962
+ // oauth required
73963
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
73964
+
72373
73965
 
72374
73966
 
72375
73967
  localVarHeaderParameter['Content-Type'] = 'application/json';
@@ -72788,6 +74380,10 @@ export const PasswordManagementBetaApiAxiosParamCreator = function (configuratio
72788
74380
  // oauth required
72789
74381
  await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
72790
74382
 
74383
+ // authentication applicationAuth required
74384
+ // oauth required
74385
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
74386
+
72791
74387
 
72792
74388
 
72793
74389
  localVarHeaderParameter['Content-Type'] = 'application/json';
@@ -72827,11 +74423,15 @@ export const PasswordManagementBetaApiAxiosParamCreator = function (configuratio
72827
74423
 
72828
74424
  // authentication userAuth required
72829
74425
  // oauth required
72830
- await setOAuthToObject(localVarHeaderParameter, "userAuth", ["sp:scopes:all"], configuration)
74426
+ await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
72831
74427
 
72832
74428
  // authentication userAuth required
72833
74429
  // oauth required
72834
- await setOAuthToObject(localVarHeaderParameter, "userAuth", ["sp:scopes:all"], configuration)
74430
+ await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
74431
+
74432
+ // authentication applicationAuth required
74433
+ // oauth required
74434
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
72835
74435
 
72836
74436
 
72837
74437
 
@@ -72868,11 +74468,15 @@ export const PasswordManagementBetaApiAxiosParamCreator = function (configuratio
72868
74468
 
72869
74469
  // authentication userAuth required
72870
74470
  // oauth required
72871
- await setOAuthToObject(localVarHeaderParameter, "userAuth", ["sp:scopes:all"], configuration)
74471
+ await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
72872
74472
 
72873
74473
  // authentication userAuth required
72874
74474
  // oauth required
72875
- await setOAuthToObject(localVarHeaderParameter, "userAuth", ["sp:scopes:all"], configuration)
74475
+ await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
74476
+
74477
+ // authentication applicationAuth required
74478
+ // oauth required
74479
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
72876
74480
 
72877
74481
 
72878
74482
 
@@ -72918,6 +74522,10 @@ export const PasswordManagementBetaApiAxiosParamCreator = function (configuratio
72918
74522
  // oauth required
72919
74523
  await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
72920
74524
 
74525
+ // authentication applicationAuth required
74526
+ // oauth required
74527
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
74528
+
72921
74529
 
72922
74530
 
72923
74531
  localVarHeaderParameter['Content-Type'] = 'application/json';
@@ -73284,6 +74892,10 @@ export const PasswordPoliciesBetaApiAxiosParamCreator = function (configuration?
73284
74892
  // oauth required
73285
74893
  await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
73286
74894
 
74895
+ // authentication applicationAuth required
74896
+ // oauth required
74897
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
74898
+
73287
74899
 
73288
74900
 
73289
74901
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -73325,6 +74937,10 @@ export const PasswordPoliciesBetaApiAxiosParamCreator = function (configuration?
73325
74937
  // oauth required
73326
74938
  await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
73327
74939
 
74940
+ // authentication applicationAuth required
74941
+ // oauth required
74942
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
74943
+
73328
74944
  if (limit !== undefined) {
73329
74945
  localVarQueryParameter['limit'] = limit;
73330
74946
  }
@@ -73821,6 +75437,10 @@ export const PasswordSyncGroupsBetaApiAxiosParamCreator = function (configuratio
73821
75437
  // oauth required
73822
75438
  await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
73823
75439
 
75440
+ // authentication applicationAuth required
75441
+ // oauth required
75442
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
75443
+
73824
75444
 
73825
75445
 
73826
75446
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -73862,6 +75482,10 @@ export const PasswordSyncGroupsBetaApiAxiosParamCreator = function (configuratio
73862
75482
  // oauth required
73863
75483
  await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
73864
75484
 
75485
+ // authentication applicationAuth required
75486
+ // oauth required
75487
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
75488
+
73865
75489
  if (limit !== undefined) {
73866
75490
  localVarQueryParameter['limit'] = limit;
73867
75491
  }
@@ -75149,11 +76773,15 @@ export const RoleInsightsBetaApiAxiosParamCreator = function (configuration?: Co
75149
76773
 
75150
76774
  // authentication userAuth required
75151
76775
  // oauth required
75152
- await setOAuthToObject(localVarHeaderParameter, "userAuth", ["sp:scopes:all"], configuration)
76776
+ await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
75153
76777
 
75154
76778
  // authentication userAuth required
75155
76779
  // oauth required
75156
- await setOAuthToObject(localVarHeaderParameter, "userAuth", ["sp:scopes:all"], configuration)
76780
+ await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
76781
+
76782
+ // authentication applicationAuth required
76783
+ // oauth required
76784
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
75157
76785
 
75158
76786
 
75159
76787
 
@@ -75193,11 +76821,15 @@ export const RoleInsightsBetaApiAxiosParamCreator = function (configuration?: Co
75193
76821
 
75194
76822
  // authentication userAuth required
75195
76823
  // oauth required
75196
- await setOAuthToObject(localVarHeaderParameter, "userAuth", ["sp:scopes:all"], configuration)
76824
+ await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
75197
76825
 
75198
76826
  // authentication userAuth required
75199
76827
  // oauth required
75200
- await setOAuthToObject(localVarHeaderParameter, "userAuth", ["sp:scopes:all"], configuration)
76828
+ await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
76829
+
76830
+ // authentication applicationAuth required
76831
+ // oauth required
76832
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
75201
76833
 
75202
76834
  if (sorters !== undefined) {
75203
76835
  localVarQueryParameter['sorters'] = sorters;
@@ -75253,11 +76885,15 @@ export const RoleInsightsBetaApiAxiosParamCreator = function (configuration?: Co
75253
76885
 
75254
76886
  // authentication userAuth required
75255
76887
  // oauth required
75256
- await setOAuthToObject(localVarHeaderParameter, "userAuth", ["sp:scopes:all"], configuration)
76888
+ await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
75257
76889
 
75258
76890
  // authentication userAuth required
75259
76891
  // oauth required
75260
- await setOAuthToObject(localVarHeaderParameter, "userAuth", ["sp:scopes:all"], configuration)
76892
+ await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
76893
+
76894
+ // authentication applicationAuth required
76895
+ // oauth required
76896
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
75261
76897
 
75262
76898
  if (hasEntitlement !== undefined) {
75263
76899
  localVarQueryParameter['hasEntitlement'] = hasEntitlement;
@@ -75319,11 +76955,15 @@ export const RoleInsightsBetaApiAxiosParamCreator = function (configuration?: Co
75319
76955
 
75320
76956
  // authentication userAuth required
75321
76957
  // oauth required
75322
- await setOAuthToObject(localVarHeaderParameter, "userAuth", ["sp:scopes:all"], configuration)
76958
+ await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
75323
76959
 
75324
76960
  // authentication userAuth required
75325
76961
  // oauth required
75326
- await setOAuthToObject(localVarHeaderParameter, "userAuth", ["sp:scopes:all"], configuration)
76962
+ await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
76963
+
76964
+ // authentication applicationAuth required
76965
+ // oauth required
76966
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
75327
76967
 
75328
76968
 
75329
76969
 
@@ -75362,11 +77002,15 @@ export const RoleInsightsBetaApiAxiosParamCreator = function (configuration?: Co
75362
77002
 
75363
77003
  // authentication userAuth required
75364
77004
  // oauth required
75365
- await setOAuthToObject(localVarHeaderParameter, "userAuth", ["sp:scopes:all"], configuration)
77005
+ await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
75366
77006
 
75367
77007
  // authentication userAuth required
75368
77008
  // oauth required
75369
- await setOAuthToObject(localVarHeaderParameter, "userAuth", ["sp:scopes:all"], configuration)
77009
+ await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
77010
+
77011
+ // authentication applicationAuth required
77012
+ // oauth required
77013
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
75370
77014
 
75371
77015
  if (offset !== undefined) {
75372
77016
  localVarQueryParameter['offset'] = offset;
@@ -75425,11 +77069,15 @@ export const RoleInsightsBetaApiAxiosParamCreator = function (configuration?: Co
75425
77069
 
75426
77070
  // authentication userAuth required
75427
77071
  // oauth required
75428
- await setOAuthToObject(localVarHeaderParameter, "userAuth", ["sp:scopes:all"], configuration)
77072
+ await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
75429
77073
 
75430
77074
  // authentication userAuth required
75431
77075
  // oauth required
75432
- await setOAuthToObject(localVarHeaderParameter, "userAuth", ["sp:scopes:all"], configuration)
77076
+ await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
77077
+
77078
+ // authentication applicationAuth required
77079
+ // oauth required
77080
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
75433
77081
 
75434
77082
  if (filters !== undefined) {
75435
77083
  localVarQueryParameter['filters'] = filters;
@@ -75473,11 +77121,15 @@ export const RoleInsightsBetaApiAxiosParamCreator = function (configuration?: Co
75473
77121
 
75474
77122
  // authentication userAuth required
75475
77123
  // oauth required
75476
- await setOAuthToObject(localVarHeaderParameter, "userAuth", ["sp:scopes:all"], configuration)
77124
+ await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
75477
77125
 
75478
77126
  // authentication userAuth required
75479
77127
  // oauth required
75480
- await setOAuthToObject(localVarHeaderParameter, "userAuth", ["sp:scopes:all"], configuration)
77128
+ await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
77129
+
77130
+ // authentication applicationAuth required
77131
+ // oauth required
77132
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
75481
77133
 
75482
77134
  if (sorters !== undefined) {
75483
77135
  localVarQueryParameter['sorters'] = sorters;
@@ -75524,11 +77176,15 @@ export const RoleInsightsBetaApiAxiosParamCreator = function (configuration?: Co
75524
77176
 
75525
77177
  // authentication userAuth required
75526
77178
  // oauth required
75527
- await setOAuthToObject(localVarHeaderParameter, "userAuth", ["sp:scopes:all"], configuration)
77179
+ await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
75528
77180
 
75529
77181
  // authentication userAuth required
75530
77182
  // oauth required
75531
- await setOAuthToObject(localVarHeaderParameter, "userAuth", ["sp:scopes:all"], configuration)
77183
+ await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
77184
+
77185
+ // authentication applicationAuth required
77186
+ // oauth required
77187
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
75532
77188
 
75533
77189
 
75534
77190
 
@@ -75562,11 +77218,15 @@ export const RoleInsightsBetaApiAxiosParamCreator = function (configuration?: Co
75562
77218
 
75563
77219
  // authentication userAuth required
75564
77220
  // oauth required
75565
- await setOAuthToObject(localVarHeaderParameter, "userAuth", ["sp:scopes:all"], configuration)
77221
+ await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
75566
77222
 
75567
77223
  // authentication userAuth required
75568
77224
  // oauth required
75569
- await setOAuthToObject(localVarHeaderParameter, "userAuth", ["sp:scopes:all"], configuration)
77225
+ await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
77226
+
77227
+ // authentication applicationAuth required
77228
+ // oauth required
77229
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
75570
77230
 
75571
77231
 
75572
77232
 
@@ -76320,6 +77980,10 @@ export const RolesBetaApiAxiosParamCreator = function (configuration?: Configura
76320
77980
  // oauth required
76321
77981
  await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
76322
77982
 
77983
+ // authentication applicationAuth required
77984
+ // oauth required
77985
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
77986
+
76323
77987
 
76324
77988
 
76325
77989
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -76367,6 +78031,10 @@ export const RolesBetaApiAxiosParamCreator = function (configuration?: Configura
76367
78031
  // oauth required
76368
78032
  await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
76369
78033
 
78034
+ // authentication applicationAuth required
78035
+ // oauth required
78036
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
78037
+
76370
78038
  if (limit !== undefined) {
76371
78039
  localVarQueryParameter['limit'] = limit;
76372
78040
  }
@@ -76504,6 +78172,10 @@ export const RolesBetaApiAxiosParamCreator = function (configuration?: Configura
76504
78172
  // oauth required
76505
78173
  await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
76506
78174
 
78175
+ // authentication applicationAuth required
78176
+ // oauth required
78177
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
78178
+
76507
78179
  if (forSubadmin !== undefined) {
76508
78180
  localVarQueryParameter['for-subadmin'] = forSubadmin;
76509
78181
  }
@@ -78041,6 +79713,10 @@ export const SODPoliciesBetaApiAxiosParamCreator = function (configuration?: Con
78041
79713
  // oauth required
78042
79714
  await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
78043
79715
 
79716
+ // authentication applicationAuth required
79717
+ // oauth required
79718
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
79719
+
78044
79720
 
78045
79721
 
78046
79722
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -78084,6 +79760,10 @@ export const SODPoliciesBetaApiAxiosParamCreator = function (configuration?: Con
78084
79760
  // oauth required
78085
79761
  await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
78086
79762
 
79763
+ // authentication applicationAuth required
79764
+ // oauth required
79765
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
79766
+
78087
79767
 
78088
79768
 
78089
79769
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -78123,6 +79803,10 @@ export const SODPoliciesBetaApiAxiosParamCreator = function (configuration?: Con
78123
79803
  // oauth required
78124
79804
  await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
78125
79805
 
79806
+ // authentication applicationAuth required
79807
+ // oauth required
79808
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
79809
+
78126
79810
 
78127
79811
 
78128
79812
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -78252,6 +79936,10 @@ export const SODPoliciesBetaApiAxiosParamCreator = function (configuration?: Con
78252
79936
  // oauth required
78253
79937
  await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
78254
79938
 
79939
+ // authentication applicationAuth required
79940
+ // oauth required
79941
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
79942
+
78255
79943
 
78256
79944
 
78257
79945
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -78295,6 +79983,10 @@ export const SODPoliciesBetaApiAxiosParamCreator = function (configuration?: Con
78295
79983
  // oauth required
78296
79984
  await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
78297
79985
 
79986
+ // authentication applicationAuth required
79987
+ // oauth required
79988
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
79989
+
78298
79990
 
78299
79991
 
78300
79992
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -78546,6 +80238,10 @@ export const SODPoliciesBetaApiAxiosParamCreator = function (configuration?: Con
78546
80238
  // oauth required
78547
80239
  await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
78548
80240
 
80241
+ // authentication applicationAuth required
80242
+ // oauth required
80243
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
80244
+
78549
80245
 
78550
80246
 
78551
80247
  localVarHeaderParameter['Content-Type'] = 'application/json';
@@ -78592,6 +80288,10 @@ export const SODPoliciesBetaApiAxiosParamCreator = function (configuration?: Con
78592
80288
  // oauth required
78593
80289
  await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
78594
80290
 
80291
+ // authentication applicationAuth required
80292
+ // oauth required
80293
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
80294
+
78595
80295
 
78596
80296
 
78597
80297
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -79560,6 +81260,10 @@ export const SODViolationsBetaApiAxiosParamCreator = function (configuration?: C
79560
81260
  // oauth required
79561
81261
  await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
79562
81262
 
81263
+ // authentication applicationAuth required
81264
+ // oauth required
81265
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
81266
+
79563
81267
 
79564
81268
 
79565
81269
  localVarHeaderParameter['Content-Type'] = 'application/json';
@@ -82439,6 +84143,10 @@ export const SourceUsagesBetaApiAxiosParamCreator = function (configuration?: Co
82439
84143
  // oauth required
82440
84144
  await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
82441
84145
 
84146
+ // authentication applicationAuth required
84147
+ // oauth required
84148
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
84149
+
82442
84150
 
82443
84151
 
82444
84152
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -82485,6 +84193,10 @@ export const SourceUsagesBetaApiAxiosParamCreator = function (configuration?: Co
82485
84193
  // oauth required
82486
84194
  await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
82487
84195
 
84196
+ // authentication applicationAuth required
84197
+ // oauth required
84198
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
84199
+
82488
84200
  if (limit !== undefined) {
82489
84201
  localVarQueryParameter['limit'] = limit;
82490
84202
  }
@@ -82712,6 +84424,10 @@ export const SourcesBetaApiAxiosParamCreator = function (configuration?: Configu
82712
84424
  // oauth required
82713
84425
  await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
82714
84426
 
84427
+ // authentication applicationAuth required
84428
+ // oauth required
84429
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
84430
+
82715
84431
 
82716
84432
 
82717
84433
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -82757,6 +84473,10 @@ export const SourcesBetaApiAxiosParamCreator = function (configuration?: Configu
82757
84473
  // oauth required
82758
84474
  await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
82759
84475
 
84476
+ // authentication applicationAuth required
84477
+ // oauth required
84478
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
84479
+
82760
84480
 
82761
84481
 
82762
84482
  localVarHeaderParameter['Content-Type'] = 'application/json';
@@ -82802,6 +84522,10 @@ export const SourcesBetaApiAxiosParamCreator = function (configuration?: Configu
82802
84522
  // oauth required
82803
84523
  await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
82804
84524
 
84525
+ // authentication applicationAuth required
84526
+ // oauth required
84527
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
84528
+
82805
84529
  if (provisionAsCsv !== undefined) {
82806
84530
  localVarQueryParameter['provisionAsCsv'] = provisionAsCsv;
82807
84531
  }
@@ -82941,6 +84665,10 @@ export const SourcesBetaApiAxiosParamCreator = function (configuration?: Configu
82941
84665
  // oauth required
82942
84666
  await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
82943
84667
 
84668
+ // authentication applicationAuth required
84669
+ // oauth required
84670
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
84671
+
82944
84672
 
82945
84673
 
82946
84674
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -83031,11 +84759,11 @@ export const SourcesBetaApiAxiosParamCreator = function (configuration?: Configu
83031
84759
 
83032
84760
  // authentication userAuth required
83033
84761
  // oauth required
83034
- await setOAuthToObject(localVarHeaderParameter, "userAuth", ["sp:scopes:all"], configuration)
84762
+ await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
83035
84763
 
83036
84764
  // authentication userAuth required
83037
84765
  // oauth required
83038
- await setOAuthToObject(localVarHeaderParameter, "userAuth", ["sp:scopes:all"], configuration)
84766
+ await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
83039
84767
 
83040
84768
 
83041
84769
 
@@ -83121,6 +84849,10 @@ export const SourcesBetaApiAxiosParamCreator = function (configuration?: Configu
83121
84849
  // oauth required
83122
84850
  await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
83123
84851
 
84852
+ // authentication applicationAuth required
84853
+ // oauth required
84854
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
84855
+
83124
84856
 
83125
84857
 
83126
84858
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -83213,6 +84945,10 @@ export const SourcesBetaApiAxiosParamCreator = function (configuration?: Configu
83213
84945
  // oauth required
83214
84946
  await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
83215
84947
 
84948
+ // authentication applicationAuth required
84949
+ // oauth required
84950
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
84951
+
83216
84952
 
83217
84953
 
83218
84954
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -83334,11 +85070,11 @@ export const SourcesBetaApiAxiosParamCreator = function (configuration?: Configu
83334
85070
 
83335
85071
  // authentication userAuth required
83336
85072
  // oauth required
83337
- await setOAuthToObject(localVarHeaderParameter, "userAuth", ["sp:scopes:all"], configuration)
85073
+ await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
83338
85074
 
83339
85075
  // authentication userAuth required
83340
85076
  // oauth required
83341
- await setOAuthToObject(localVarHeaderParameter, "userAuth", ["sp:scopes:all"], configuration)
85077
+ await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
83342
85078
 
83343
85079
  if (locale !== undefined) {
83344
85080
  localVarQueryParameter['locale'] = locale;
@@ -83473,11 +85209,11 @@ export const SourcesBetaApiAxiosParamCreator = function (configuration?: Configu
83473
85209
 
83474
85210
  // authentication userAuth required
83475
85211
  // oauth required
83476
- await setOAuthToObject(localVarHeaderParameter, "userAuth", ["sp:scopes:all"], configuration)
85212
+ await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
83477
85213
 
83478
85214
  // authentication userAuth required
83479
85215
  // oauth required
83480
- await setOAuthToObject(localVarHeaderParameter, "userAuth", ["sp:scopes:all"], configuration)
85216
+ await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
83481
85217
 
83482
85218
 
83483
85219
 
@@ -84011,6 +85747,10 @@ export const SourcesBetaApiAxiosParamCreator = function (configuration?: Configu
84011
85747
  // oauth required
84012
85748
  await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
84013
85749
 
85750
+ // authentication applicationAuth required
85751
+ // oauth required
85752
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
85753
+
84014
85754
 
84015
85755
 
84016
85756
  localVarHeaderParameter['Content-Type'] = 'application/json';
@@ -84056,6 +85796,10 @@ export const SourcesBetaApiAxiosParamCreator = function (configuration?: Configu
84056
85796
  // oauth required
84057
85797
  await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
84058
85798
 
85799
+ // authentication applicationAuth required
85800
+ // oauth required
85801
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
85802
+
84059
85803
 
84060
85804
 
84061
85805
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -84149,6 +85893,10 @@ export const SourcesBetaApiAxiosParamCreator = function (configuration?: Configu
84149
85893
  // oauth required
84150
85894
  await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
84151
85895
 
85896
+ // authentication applicationAuth required
85897
+ // oauth required
85898
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
85899
+
84152
85900
 
84153
85901
 
84154
85902
  localVarHeaderParameter['Content-Type'] = 'application/json';
@@ -84253,6 +86001,10 @@ export const SourcesBetaApiAxiosParamCreator = function (configuration?: Configu
84253
86001
  // oauth required
84254
86002
  await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
84255
86003
 
86004
+ // authentication applicationAuth required
86005
+ // oauth required
86006
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
86007
+
84256
86008
 
84257
86009
 
84258
86010
  localVarHeaderParameter['Content-Type'] = 'application/json';
@@ -84347,11 +86099,11 @@ export const SourcesBetaApiAxiosParamCreator = function (configuration?: Configu
84347
86099
 
84348
86100
  // authentication userAuth required
84349
86101
  // oauth required
84350
- await setOAuthToObject(localVarHeaderParameter, "userAuth", ["sp:scopes:all"], configuration)
86102
+ await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
84351
86103
 
84352
86104
  // authentication userAuth required
84353
86105
  // oauth required
84354
- await setOAuthToObject(localVarHeaderParameter, "userAuth", ["sp:scopes:all"], configuration)
86106
+ await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
84355
86107
 
84356
86108
 
84357
86109
 
@@ -84440,6 +86192,10 @@ export const SourcesBetaApiAxiosParamCreator = function (configuration?: Configu
84440
86192
  // oauth required
84441
86193
  await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
84442
86194
 
86195
+ // authentication applicationAuth required
86196
+ // oauth required
86197
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
86198
+
84443
86199
 
84444
86200
 
84445
86201
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -84482,6 +86238,10 @@ export const SourcesBetaApiAxiosParamCreator = function (configuration?: Configu
84482
86238
  // oauth required
84483
86239
  await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
84484
86240
 
86241
+ // authentication applicationAuth required
86242
+ // oauth required
86243
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
86244
+
84485
86245
 
84486
86246
 
84487
86247
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -84635,6 +86395,10 @@ export const SourcesBetaApiAxiosParamCreator = function (configuration?: Configu
84635
86395
  // oauth required
84636
86396
  await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
84637
86397
 
86398
+ // authentication applicationAuth required
86399
+ // oauth required
86400
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
86401
+
84638
86402
 
84639
86403
 
84640
86404
  localVarHeaderParameter['Content-Type'] = 'application/json-patch+json';
@@ -84729,11 +86493,11 @@ export const SourcesBetaApiAxiosParamCreator = function (configuration?: Configu
84729
86493
 
84730
86494
  // authentication userAuth required
84731
86495
  // oauth required
84732
- await setOAuthToObject(localVarHeaderParameter, "userAuth", ["sp:scopes:all"], configuration)
86496
+ await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
84733
86497
 
84734
86498
  // authentication userAuth required
84735
86499
  // oauth required
84736
- await setOAuthToObject(localVarHeaderParameter, "userAuth", ["sp:scopes:all"], configuration)
86500
+ await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
84737
86501
 
84738
86502
 
84739
86503
 
@@ -86055,7 +87819,7 @@ export interface SourcesBetaApiGetSourceConfigRequest {
86055
87819
 
86056
87820
  /**
86057
87821
  * The locale to apply to the config. If no viable locale is given, it will default to \&quot;en\&quot;
86058
- * @type {'de' | 'false' | 'fi' | 'sv' | 'ru' | 'pt' | 'ko' | 'zh-TW' | 'en' | 'it' | 'fr' | 'zh-CN' | 'hu' | 'es' | 'cs' | 'ja' | 'pl' | 'da' | 'nl'}
87822
+ * @type {'de' | 'no' | 'fi' | 'sv' | 'ru' | 'pt' | 'ko' | 'zh-TW' | 'en' | 'it' | 'fr' | 'zh-CN' | 'hu' | 'es' | 'cs' | 'ja' | 'pl' | 'da' | 'nl'}
86059
87823
  * @memberof SourcesBetaApiGetSourceConfig
86060
87824
  */
86061
87825
  readonly locale?: GetSourceConfigLocaleBeta
@@ -87220,7 +88984,7 @@ export class SourcesBetaApi extends BaseAPI {
87220
88984
  */
87221
88985
  export const GetSourceConfigLocaleBeta = {
87222
88986
  De: 'de',
87223
- False: 'false',
88987
+ No: 'no',
87224
88988
  Fi: 'fi',
87225
88989
  Sv: 'sv',
87226
88990
  Ru: 'ru',
@@ -87295,6 +89059,10 @@ export const SuggestedEntitlementDescriptionBetaApiAxiosParamCreator = function
87295
89059
  // oauth required
87296
89060
  await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
87297
89061
 
89062
+ // authentication applicationAuth required
89063
+ // oauth required
89064
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
89065
+
87298
89066
 
87299
89067
 
87300
89068
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -87338,6 +89106,10 @@ export const SuggestedEntitlementDescriptionBetaApiAxiosParamCreator = function
87338
89106
  // oauth required
87339
89107
  await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
87340
89108
 
89109
+ // authentication applicationAuth required
89110
+ // oauth required
89111
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
89112
+
87341
89113
  if (offset !== undefined) {
87342
89114
  localVarQueryParameter['offset'] = offset;
87343
89115
  }
@@ -87403,6 +89175,10 @@ export const SuggestedEntitlementDescriptionBetaApiAxiosParamCreator = function
87403
89175
  // oauth required
87404
89176
  await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
87405
89177
 
89178
+ // authentication applicationAuth required
89179
+ // oauth required
89180
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
89181
+
87406
89182
  if (limit !== undefined) {
87407
89183
  localVarQueryParameter['limit'] = limit;
87408
89184
  }
@@ -87476,6 +89252,10 @@ export const SuggestedEntitlementDescriptionBetaApiAxiosParamCreator = function
87476
89252
  // oauth required
87477
89253
  await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
87478
89254
 
89255
+ // authentication applicationAuth required
89256
+ // oauth required
89257
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
89258
+
87479
89259
 
87480
89260
 
87481
89261
  localVarHeaderParameter['Content-Type'] = 'application/json-patch+json';
@@ -87520,6 +89300,10 @@ export const SuggestedEntitlementDescriptionBetaApiAxiosParamCreator = function
87520
89300
  // oauth required
87521
89301
  await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
87522
89302
 
89303
+ // authentication applicationAuth required
89304
+ // oauth required
89305
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
89306
+
87523
89307
 
87524
89308
 
87525
89309
  localVarHeaderParameter['Content-Type'] = 'application/json-patch+json';
@@ -87564,6 +89348,10 @@ export const SuggestedEntitlementDescriptionBetaApiAxiosParamCreator = function
87564
89348
  // oauth required
87565
89349
  await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
87566
89350
 
89351
+ // authentication applicationAuth required
89352
+ // oauth required
89353
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
89354
+
87567
89355
 
87568
89356
 
87569
89357
  localVarHeaderParameter['Content-Type'] = 'application/json-patch+json';
@@ -87606,6 +89394,10 @@ export const SuggestedEntitlementDescriptionBetaApiAxiosParamCreator = function
87606
89394
  // oauth required
87607
89395
  await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
87608
89396
 
89397
+ // authentication applicationAuth required
89398
+ // oauth required
89399
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
89400
+
87609
89401
 
87610
89402
 
87611
89403
  localVarHeaderParameter['Content-Type'] = 'application/json-patch+json';
@@ -88125,6 +89917,10 @@ export const TaggedObjectsBetaApiAxiosParamCreator = function (configuration?: C
88125
89917
  // oauth required
88126
89918
  await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
88127
89919
 
89920
+ // authentication applicationAuth required
89921
+ // oauth required
89922
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
89923
+
88128
89924
 
88129
89925
 
88130
89926
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -88215,6 +90011,10 @@ export const TaggedObjectsBetaApiAxiosParamCreator = function (configuration?: C
88215
90011
  // oauth required
88216
90012
  await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
88217
90013
 
90014
+ // authentication applicationAuth required
90015
+ // oauth required
90016
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
90017
+
88218
90018
 
88219
90019
 
88220
90020
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -88257,6 +90057,10 @@ export const TaggedObjectsBetaApiAxiosParamCreator = function (configuration?: C
88257
90057
  // oauth required
88258
90058
  await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
88259
90059
 
90060
+ // authentication applicationAuth required
90061
+ // oauth required
90062
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
90063
+
88260
90064
  if (limit !== undefined) {
88261
90065
  localVarQueryParameter['limit'] = limit;
88262
90066
  }
@@ -88319,6 +90123,10 @@ export const TaggedObjectsBetaApiAxiosParamCreator = function (configuration?: C
88319
90123
  // oauth required
88320
90124
  await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
88321
90125
 
90126
+ // authentication applicationAuth required
90127
+ // oauth required
90128
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
90129
+
88322
90130
  if (limit !== undefined) {
88323
90131
  localVarQueryParameter['limit'] = limit;
88324
90132
  }
@@ -88384,6 +90192,10 @@ export const TaggedObjectsBetaApiAxiosParamCreator = function (configuration?: C
88384
90192
  // oauth required
88385
90193
  await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
88386
90194
 
90195
+ // authentication applicationAuth required
90196
+ // oauth required
90197
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
90198
+
88387
90199
 
88388
90200
 
88389
90201
  localVarHeaderParameter['Content-Type'] = 'application/json';
@@ -88428,6 +90240,10 @@ export const TaggedObjectsBetaApiAxiosParamCreator = function (configuration?: C
88428
90240
  // oauth required
88429
90241
  await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
88430
90242
 
90243
+ // authentication applicationAuth required
90244
+ // oauth required
90245
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
90246
+
88431
90247
 
88432
90248
 
88433
90249
  localVarHeaderParameter['Content-Type'] = 'application/json';
@@ -89085,11 +90901,15 @@ export const TagsBetaApiAxiosParamCreator = function (configuration?: Configurat
89085
90901
 
89086
90902
  // authentication userAuth required
89087
90903
  // oauth required
89088
- await setOAuthToObject(localVarHeaderParameter, "userAuth", ["sp:scopes:all"], configuration)
90904
+ await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
89089
90905
 
89090
90906
  // authentication userAuth required
89091
90907
  // oauth required
89092
- await setOAuthToObject(localVarHeaderParameter, "userAuth", ["sp:scopes:all"], configuration)
90908
+ await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
90909
+
90910
+ // authentication applicationAuth required
90911
+ // oauth required
90912
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
89093
90913
 
89094
90914
 
89095
90915
 
@@ -89130,11 +90950,15 @@ export const TagsBetaApiAxiosParamCreator = function (configuration?: Configurat
89130
90950
 
89131
90951
  // authentication userAuth required
89132
90952
  // oauth required
89133
- await setOAuthToObject(localVarHeaderParameter, "userAuth", ["sp:scopes:all"], configuration)
90953
+ await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
89134
90954
 
89135
90955
  // authentication userAuth required
89136
90956
  // oauth required
89137
- await setOAuthToObject(localVarHeaderParameter, "userAuth", ["sp:scopes:all"], configuration)
90957
+ await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
90958
+
90959
+ // authentication applicationAuth required
90960
+ // oauth required
90961
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
89138
90962
 
89139
90963
 
89140
90964
 
@@ -89172,11 +90996,15 @@ export const TagsBetaApiAxiosParamCreator = function (configuration?: Configurat
89172
90996
 
89173
90997
  // authentication userAuth required
89174
90998
  // oauth required
89175
- await setOAuthToObject(localVarHeaderParameter, "userAuth", ["sp:scopes:all"], configuration)
90999
+ await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
89176
91000
 
89177
91001
  // authentication userAuth required
89178
91002
  // oauth required
89179
- await setOAuthToObject(localVarHeaderParameter, "userAuth", ["sp:scopes:all"], configuration)
91003
+ await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
91004
+
91005
+ // authentication applicationAuth required
91006
+ // oauth required
91007
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
89180
91008
 
89181
91009
 
89182
91010
 
@@ -89215,11 +91043,15 @@ export const TagsBetaApiAxiosParamCreator = function (configuration?: Configurat
89215
91043
 
89216
91044
  // authentication userAuth required
89217
91045
  // oauth required
89218
- await setOAuthToObject(localVarHeaderParameter, "userAuth", ["sp:scopes:all"], configuration)
91046
+ await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
89219
91047
 
89220
91048
  // authentication userAuth required
89221
91049
  // oauth required
89222
- await setOAuthToObject(localVarHeaderParameter, "userAuth", ["sp:scopes:all"], configuration)
91050
+ await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
91051
+
91052
+ // authentication applicationAuth required
91053
+ // oauth required
91054
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
89223
91055
 
89224
91056
  if (limit !== undefined) {
89225
91057
  localVarQueryParameter['limit'] = limit;
@@ -89520,12 +91352,13 @@ export class TagsBetaApi extends BaseAPI {
89520
91352
  export const TaskManagementBetaApiAxiosParamCreator = function (configuration?: Configuration) {
89521
91353
  return {
89522
91354
  /**
89523
- * Responds with headers only for list of task statuses for pending tasks.
91355
+ * 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.
89524
91356
  * @summary Retrieve pending task list headers
89525
91357
  * @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.
89526
91358
  * @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.
89527
91359
  * @param {boolean} [count] If *true* it will populate the *X-Total-Count* response header with the number of results that would be returned if *limit* and *offset* were ignored. Since requesting a total count can have a performance impact, it is recommended not to send **count&#x3D;true** if that value will not be used. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
89528
91360
  * @param {*} [axiosOptions] Override http request option.
91361
+ * @deprecated
89529
91362
  * @throws {RequiredError}
89530
91363
  */
89531
91364
  getPendingTaskHeaders: async (offset?: number, limit?: number, count?: boolean, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
@@ -89577,12 +91410,13 @@ export const TaskManagementBetaApiAxiosParamCreator = function (configuration?:
89577
91410
  };
89578
91411
  },
89579
91412
  /**
89580
- * 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.
91413
+ * 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.
89581
91414
  * @summary Retrieve pending task status list
89582
91415
  * @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.
89583
91416
  * @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.
89584
91417
  * @param {boolean} [count] If *true* it will populate the *X-Total-Count* response header with the number of results that would be returned if *limit* and *offset* were ignored. Since requesting a total count can have a performance impact, it is recommended not to send **count&#x3D;true** if that value will not be used. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
89585
91418
  * @param {*} [axiosOptions] Override http request option.
91419
+ * @deprecated
89586
91420
  * @throws {RequiredError}
89587
91421
  */
89588
91422
  getPendingTasks: async (offset?: number, limit?: number, count?: boolean, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
@@ -89805,12 +91639,13 @@ export const TaskManagementBetaApiFp = function(configuration?: Configuration) {
89805
91639
  const localVarAxiosParamCreator = TaskManagementBetaApiAxiosParamCreator(configuration)
89806
91640
  return {
89807
91641
  /**
89808
- * Responds with headers only for list of task statuses for pending tasks.
91642
+ * 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.
89809
91643
  * @summary Retrieve pending task list headers
89810
91644
  * @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.
89811
91645
  * @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.
89812
91646
  * @param {boolean} [count] If *true* it will populate the *X-Total-Count* response header with the number of results that would be returned if *limit* and *offset* were ignored. Since requesting a total count can have a performance impact, it is recommended not to send **count&#x3D;true** if that value will not be used. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
89813
91647
  * @param {*} [axiosOptions] Override http request option.
91648
+ * @deprecated
89814
91649
  * @throws {RequiredError}
89815
91650
  */
89816
91651
  async getPendingTaskHeaders(offset?: number, limit?: number, count?: boolean, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
@@ -89820,12 +91655,13 @@ export const TaskManagementBetaApiFp = function(configuration?: Configuration) {
89820
91655
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
89821
91656
  },
89822
91657
  /**
89823
- * 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.
91658
+ * 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.
89824
91659
  * @summary Retrieve pending task status list
89825
91660
  * @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.
89826
91661
  * @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.
89827
91662
  * @param {boolean} [count] If *true* it will populate the *X-Total-Count* response header with the number of results that would be returned if *limit* and *offset* were ignored. Since requesting a total count can have a performance impact, it is recommended not to send **count&#x3D;true** if that value will not be used. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
89828
91663
  * @param {*} [axiosOptions] Override http request option.
91664
+ * @deprecated
89829
91665
  * @throws {RequiredError}
89830
91666
  */
89831
91667
  async getPendingTasks(offset?: number, limit?: number, count?: boolean, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<TaskStatusBeta>>> {
@@ -89889,20 +91725,22 @@ export const TaskManagementBetaApiFactory = function (configuration?: Configurat
89889
91725
  const localVarFp = TaskManagementBetaApiFp(configuration)
89890
91726
  return {
89891
91727
  /**
89892
- * Responds with headers only for list of task statuses for pending tasks.
91728
+ * 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.
89893
91729
  * @summary Retrieve pending task list headers
89894
91730
  * @param {TaskManagementBetaApiGetPendingTaskHeadersRequest} requestParameters Request parameters.
89895
91731
  * @param {*} [axiosOptions] Override http request option.
91732
+ * @deprecated
89896
91733
  * @throws {RequiredError}
89897
91734
  */
89898
91735
  getPendingTaskHeaders(requestParameters: TaskManagementBetaApiGetPendingTaskHeadersRequest = {}, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<void> {
89899
91736
  return localVarFp.getPendingTaskHeaders(requestParameters.offset, requestParameters.limit, requestParameters.count, axiosOptions).then((request) => request(axios, basePath));
89900
91737
  },
89901
91738
  /**
89902
- * 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.
91739
+ * 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.
89903
91740
  * @summary Retrieve pending task status list
89904
91741
  * @param {TaskManagementBetaApiGetPendingTasksRequest} requestParameters Request parameters.
89905
91742
  * @param {*} [axiosOptions] Override http request option.
91743
+ * @deprecated
89906
91744
  * @throws {RequiredError}
89907
91745
  */
89908
91746
  getPendingTasks(requestParameters: TaskManagementBetaApiGetPendingTasksRequest = {}, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<TaskStatusBeta>> {
@@ -90082,10 +91920,11 @@ export interface TaskManagementBetaApiUpdateTaskStatusRequest {
90082
91920
  */
90083
91921
  export class TaskManagementBetaApi extends BaseAPI {
90084
91922
  /**
90085
- * Responds with headers only for list of task statuses for pending tasks.
91923
+ * 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.
90086
91924
  * @summary Retrieve pending task list headers
90087
91925
  * @param {TaskManagementBetaApiGetPendingTaskHeadersRequest} requestParameters Request parameters.
90088
91926
  * @param {*} [axiosOptions] Override http request option.
91927
+ * @deprecated
90089
91928
  * @throws {RequiredError}
90090
91929
  * @memberof TaskManagementBetaApi
90091
91930
  */
@@ -90094,10 +91933,11 @@ export class TaskManagementBetaApi extends BaseAPI {
90094
91933
  }
90095
91934
 
90096
91935
  /**
90097
- * 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.
91936
+ * 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.
90098
91937
  * @summary Retrieve pending task status list
90099
91938
  * @param {TaskManagementBetaApiGetPendingTasksRequest} requestParameters Request parameters.
90100
91939
  * @param {*} [axiosOptions] Override http request option.
91940
+ * @deprecated
90101
91941
  * @throws {RequiredError}
90102
91942
  * @memberof TaskManagementBetaApi
90103
91943
  */
@@ -90289,6 +92129,10 @@ export const TransformsBetaApiAxiosParamCreator = function (configuration?: Conf
90289
92129
  // oauth required
90290
92130
  await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
90291
92131
 
92132
+ // authentication applicationAuth required
92133
+ // oauth required
92134
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
92135
+
90292
92136
 
90293
92137
 
90294
92138
  localVarHeaderParameter['Content-Type'] = 'application/json';
@@ -90334,6 +92178,10 @@ export const TransformsBetaApiAxiosParamCreator = function (configuration?: Conf
90334
92178
  // oauth required
90335
92179
  await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
90336
92180
 
92181
+ // authentication applicationAuth required
92182
+ // oauth required
92183
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
92184
+
90337
92185
 
90338
92186
 
90339
92187
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -90376,6 +92224,10 @@ export const TransformsBetaApiAxiosParamCreator = function (configuration?: Conf
90376
92224
  // oauth required
90377
92225
  await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
90378
92226
 
92227
+ // authentication applicationAuth required
92228
+ // oauth required
92229
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
92230
+
90379
92231
 
90380
92232
 
90381
92233
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -90419,6 +92271,10 @@ export const TransformsBetaApiAxiosParamCreator = function (configuration?: Conf
90419
92271
  // oauth required
90420
92272
  await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
90421
92273
 
92274
+ // authentication applicationAuth required
92275
+ // oauth required
92276
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
92277
+
90422
92278
  if (offset !== undefined) {
90423
92279
  localVarQueryParameter['offset'] = offset;
90424
92280
  }
@@ -90482,6 +92338,10 @@ export const TransformsBetaApiAxiosParamCreator = function (configuration?: Conf
90482
92338
  // oauth required
90483
92339
  await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
90484
92340
 
92341
+ // authentication applicationAuth required
92342
+ // oauth required
92343
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
92344
+
90485
92345
 
90486
92346
 
90487
92347
  localVarHeaderParameter['Content-Type'] = 'application/json';
@@ -90898,6 +92758,10 @@ export const TriggersBetaApiAxiosParamCreator = function (configuration?: Config
90898
92758
  // oauth required
90899
92759
  await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
90900
92760
 
92761
+ // authentication applicationAuth required
92762
+ // oauth required
92763
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
92764
+
90901
92765
 
90902
92766
 
90903
92767
  localVarHeaderParameter['Content-Type'] = 'application/json';
@@ -90943,6 +92807,10 @@ export const TriggersBetaApiAxiosParamCreator = function (configuration?: Config
90943
92807
  // oauth required
90944
92808
  await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
90945
92809
 
92810
+ // authentication applicationAuth required
92811
+ // oauth required
92812
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
92813
+
90946
92814
 
90947
92815
 
90948
92816
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -90986,6 +92854,10 @@ export const TriggersBetaApiAxiosParamCreator = function (configuration?: Config
90986
92854
  // oauth required
90987
92855
  await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
90988
92856
 
92857
+ // authentication applicationAuth required
92858
+ // oauth required
92859
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
92860
+
90989
92861
  if (limit !== undefined) {
90990
92862
  localVarQueryParameter['limit'] = limit;
90991
92863
  }
@@ -91049,6 +92921,10 @@ export const TriggersBetaApiAxiosParamCreator = function (configuration?: Config
91049
92921
  // oauth required
91050
92922
  await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
91051
92923
 
92924
+ // authentication applicationAuth required
92925
+ // oauth required
92926
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
92927
+
91052
92928
  if (limit !== undefined) {
91053
92929
  localVarQueryParameter['limit'] = limit;
91054
92930
  }
@@ -91112,6 +92988,10 @@ export const TriggersBetaApiAxiosParamCreator = function (configuration?: Config
91112
92988
  // oauth required
91113
92989
  await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
91114
92990
 
92991
+ // authentication applicationAuth required
92992
+ // oauth required
92993
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
92994
+
91115
92995
  if (limit !== undefined) {
91116
92996
  localVarQueryParameter['limit'] = limit;
91117
92997
  }
@@ -91177,6 +93057,10 @@ export const TriggersBetaApiAxiosParamCreator = function (configuration?: Config
91177
93057
  // oauth required
91178
93058
  await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
91179
93059
 
93060
+ // authentication applicationAuth required
93061
+ // oauth required
93062
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
93063
+
91180
93064
 
91181
93065
 
91182
93066
  localVarHeaderParameter['Content-Type'] = 'application/json-patch+json';
@@ -91221,6 +93105,10 @@ export const TriggersBetaApiAxiosParamCreator = function (configuration?: Config
91221
93105
  // oauth required
91222
93106
  await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
91223
93107
 
93108
+ // authentication applicationAuth required
93109
+ // oauth required
93110
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
93111
+
91224
93112
 
91225
93113
 
91226
93114
  localVarHeaderParameter['Content-Type'] = 'application/json';
@@ -91265,6 +93153,10 @@ export const TriggersBetaApiAxiosParamCreator = function (configuration?: Config
91265
93153
  // oauth required
91266
93154
  await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
91267
93155
 
93156
+ // authentication applicationAuth required
93157
+ // oauth required
93158
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
93159
+
91268
93160
 
91269
93161
 
91270
93162
  localVarHeaderParameter['Content-Type'] = 'application/json';
@@ -91313,6 +93205,10 @@ export const TriggersBetaApiAxiosParamCreator = function (configuration?: Config
91313
93205
  // oauth required
91314
93206
  await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
91315
93207
 
93208
+ // authentication applicationAuth required
93209
+ // oauth required
93210
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
93211
+
91316
93212
 
91317
93213
 
91318
93214
  localVarHeaderParameter['Content-Type'] = 'application/json';
@@ -92003,6 +93899,10 @@ export const UIMetadataBetaApiAxiosParamCreator = function (configuration?: Conf
92003
93899
  // oauth required
92004
93900
  await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
92005
93901
 
93902
+ // authentication applicationAuth required
93903
+ // oauth required
93904
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
93905
+
92006
93906
 
92007
93907
 
92008
93908
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -94741,10 +96641,11 @@ export const WorkflowsBetaApiAxiosParamCreator = function (configuration?: Confi
94741
96641
  };
94742
96642
  },
94743
96643
  /**
94744
- * Get a detailed history of a single workflow execution. Workflow executions are available for up to 90 days before being archived. If you attempt to access a workflow execution that has been archived, you will receive a 404 Not Found.
96644
+ * [Deprecated] This endpoint will be removed in October 2027. Please use `/workflow-executions/{id}/history-v2` instead. Retrieves the detailed history of a single workflow execution. Workflow executions are available for up to 90 days before being archived; accessing an archived execution will return a 404 Not Found.
94745
96645
  * @summary Get workflow execution history
94746
96646
  * @param {string} id Id of the workflow execution
94747
96647
  * @param {*} [axiosOptions] Override http request option.
96648
+ * @deprecated
94748
96649
  * @throws {RequiredError}
94749
96650
  */
94750
96651
  getWorkflowExecutionHistory: async (id: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
@@ -95169,6 +97070,10 @@ export const WorkflowsBetaApiAxiosParamCreator = function (configuration?: Confi
95169
97070
  // oauth required
95170
97071
  await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
95171
97072
 
97073
+ // authentication applicationAuth required
97074
+ // oauth required
97075
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
97076
+
95172
97077
 
95173
97078
 
95174
97079
  localVarHeaderParameter['Content-Type'] = 'application/json';
@@ -95305,6 +97210,10 @@ export const WorkflowsBetaApiAxiosParamCreator = function (configuration?: Confi
95305
97210
  // oauth required
95306
97211
  await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
95307
97212
 
97213
+ // authentication applicationAuth required
97214
+ // oauth required
97215
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
97216
+
95308
97217
 
95309
97218
 
95310
97219
  localVarHeaderParameter['Content-Type'] = 'application/json';
@@ -95444,10 +97353,11 @@ export const WorkflowsBetaApiFp = function(configuration?: Configuration) {
95444
97353
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
95445
97354
  },
95446
97355
  /**
95447
- * Get a detailed history of a single workflow execution. Workflow executions are available for up to 90 days before being archived. If you attempt to access a workflow execution that has been archived, you will receive a 404 Not Found.
97356
+ * [Deprecated] This endpoint will be removed in October 2027. Please use `/workflow-executions/{id}/history-v2` instead. Retrieves the detailed history of a single workflow execution. Workflow executions are available for up to 90 days before being archived; accessing an archived execution will return a 404 Not Found.
95448
97357
  * @summary Get workflow execution history
95449
97358
  * @param {string} id Id of the workflow execution
95450
97359
  * @param {*} [axiosOptions] Override http request option.
97360
+ * @deprecated
95451
97361
  * @throws {RequiredError}
95452
97362
  */
95453
97363
  async getWorkflowExecutionHistory(id: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<WorkflowExecutionEventBeta>>> {
@@ -95688,10 +97598,11 @@ export const WorkflowsBetaApiFactory = function (configuration?: Configuration,
95688
97598
  return localVarFp.getWorkflowExecution(requestParameters.id, axiosOptions).then((request) => request(axios, basePath));
95689
97599
  },
95690
97600
  /**
95691
- * Get a detailed history of a single workflow execution. Workflow executions are available for up to 90 days before being archived. If you attempt to access a workflow execution that has been archived, you will receive a 404 Not Found.
97601
+ * [Deprecated] This endpoint will be removed in October 2027. Please use `/workflow-executions/{id}/history-v2` instead. Retrieves the detailed history of a single workflow execution. Workflow executions are available for up to 90 days before being archived; accessing an archived execution will return a 404 Not Found.
95692
97602
  * @summary Get workflow execution history
95693
97603
  * @param {WorkflowsBetaApiGetWorkflowExecutionHistoryRequest} requestParameters Request parameters.
95694
97604
  * @param {*} [axiosOptions] Override http request option.
97605
+ * @deprecated
95695
97606
  * @throws {RequiredError}
95696
97607
  */
95697
97608
  getWorkflowExecutionHistory(requestParameters: WorkflowsBetaApiGetWorkflowExecutionHistoryRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<WorkflowExecutionEventBeta>> {
@@ -96244,10 +98155,11 @@ export class WorkflowsBetaApi extends BaseAPI {
96244
98155
  }
96245
98156
 
96246
98157
  /**
96247
- * Get a detailed history of a single workflow execution. Workflow executions are available for up to 90 days before being archived. If you attempt to access a workflow execution that has been archived, you will receive a 404 Not Found.
98158
+ * [Deprecated] This endpoint will be removed in October 2027. Please use `/workflow-executions/{id}/history-v2` instead. Retrieves the detailed history of a single workflow execution. Workflow executions are available for up to 90 days before being archived; accessing an archived execution will return a 404 Not Found.
96248
98159
  * @summary Get workflow execution history
96249
98160
  * @param {WorkflowsBetaApiGetWorkflowExecutionHistoryRequest} requestParameters Request parameters.
96250
98161
  * @param {*} [axiosOptions] Override http request option.
98162
+ * @deprecated
96251
98163
  * @throws {RequiredError}
96252
98164
  * @memberof WorkflowsBetaApi
96253
98165
  */