sailpoint-api-client 1.6.5 → 1.6.7

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.
@@ -13,6 +13,19 @@ import type { Configuration } from '../configuration';
13
13
  import type { AxiosPromise, AxiosInstance, RawAxiosRequestConfig } from 'axios';
14
14
  import type { RequestArgs } from './base';
15
15
  import { BaseAPI } from './base';
16
+ /**
17
+ * This is used for access configuration for a lifecycle state
18
+ * @export
19
+ * @interface AccessActionConfigurationV2025
20
+ */
21
+ export interface AccessActionConfigurationV2025 {
22
+ /**
23
+ * If true, then all accesses are marked for removal.
24
+ * @type {boolean}
25
+ * @memberof AccessActionConfigurationV2025
26
+ */
27
+ 'removeAllAccessEnabled'?: boolean;
28
+ }
16
29
  /**
17
30
  * Owner\'s identity.
18
31
  * @export
@@ -166,15 +179,28 @@ export interface AccessCriteriaV2025 {
166
179
  /**
167
180
  *
168
181
  * @export
169
- * @interface AccessItemAccessProfileResponseV2025
182
+ * @interface AccessItemAccessProfileResponseAppRefsInnerV2025
170
183
  */
171
- export interface AccessItemAccessProfileResponseV2025 {
184
+ export interface AccessItemAccessProfileResponseAppRefsInnerV2025 {
172
185
  /**
173
- * the access item type. accessProfile in this case
186
+ * the cloud app id associated with the access profile
174
187
  * @type {string}
175
- * @memberof AccessItemAccessProfileResponseV2025
188
+ * @memberof AccessItemAccessProfileResponseAppRefsInnerV2025
176
189
  */
177
- 'accessType'?: string;
190
+ 'cloudAppId'?: string;
191
+ /**
192
+ * the cloud app name associated with the access profile
193
+ * @type {string}
194
+ * @memberof AccessItemAccessProfileResponseAppRefsInnerV2025
195
+ */
196
+ 'cloudAppName'?: string;
197
+ }
198
+ /**
199
+ *
200
+ * @export
201
+ * @interface AccessItemAccessProfileResponseV2025
202
+ */
203
+ export interface AccessItemAccessProfileResponseV2025 {
178
204
  /**
179
205
  * the access item id
180
206
  * @type {string}
@@ -182,65 +208,65 @@ export interface AccessItemAccessProfileResponseV2025 {
182
208
  */
183
209
  'id'?: string;
184
210
  /**
185
- * the access profile name
211
+ * the access item type. accessProfile in this case
186
212
  * @type {string}
187
213
  * @memberof AccessItemAccessProfileResponseV2025
188
214
  */
189
- 'name'?: string;
215
+ 'accessType'?: string;
190
216
  /**
191
- * the name of the source
217
+ * the display name of the identity
192
218
  * @type {string}
193
219
  * @memberof AccessItemAccessProfileResponseV2025
194
220
  */
195
- 'sourceName'?: string;
221
+ 'displayName'?: string;
196
222
  /**
197
- * the id of the source
223
+ * the name of the source
198
224
  * @type {string}
199
225
  * @memberof AccessItemAccessProfileResponseV2025
200
226
  */
201
- 'sourceId'?: string;
227
+ 'sourceName'?: string;
202
228
  /**
203
- * the description for the access profile
204
- * @type {string}
229
+ * the number of entitlements the access profile will create
230
+ * @type {number}
205
231
  * @memberof AccessItemAccessProfileResponseV2025
206
232
  */
207
- 'description'?: string;
233
+ 'entitlementCount': number;
208
234
  /**
209
- * the display name of the identity
235
+ * the description for the access profile
210
236
  * @type {string}
211
237
  * @memberof AccessItemAccessProfileResponseV2025
212
238
  */
213
- 'displayName'?: string;
239
+ 'description'?: string | null;
214
240
  /**
215
- * the number of entitlements the access profile will create
241
+ * the id of the source
216
242
  * @type {string}
217
243
  * @memberof AccessItemAccessProfileResponseV2025
218
244
  */
219
- 'entitlementCount'?: string;
245
+ 'sourceId'?: string;
220
246
  /**
221
- * the name of
222
- * @type {string}
247
+ * the list of app ids associated with the access profile
248
+ * @type {Array<AccessItemAccessProfileResponseAppRefsInnerV2025>}
223
249
  * @memberof AccessItemAccessProfileResponseV2025
224
250
  */
225
- 'appDisplayName'?: string;
251
+ 'appRefs': Array<AccessItemAccessProfileResponseAppRefsInnerV2025>;
226
252
  /**
227
253
  * the date the access profile is no longer assigned to the specified identity
228
254
  * @type {string}
229
255
  * @memberof AccessItemAccessProfileResponseV2025
230
256
  */
231
- 'removeDate'?: string;
257
+ 'removeDate'?: string | null;
232
258
  /**
233
259
  * indicates whether the access profile is standalone
234
260
  * @type {boolean}
235
261
  * @memberof AccessItemAccessProfileResponseV2025
236
262
  */
237
- 'standalone': boolean;
263
+ 'standalone': boolean | null;
238
264
  /**
239
- * indicates whether the access profile is
265
+ * indicates whether the access profile is revocable
240
266
  * @type {boolean}
241
267
  * @memberof AccessItemAccessProfileResponseV2025
242
268
  */
243
- 'revocable': boolean;
269
+ 'revocable': boolean | null;
244
270
  }
245
271
  /**
246
272
  *
@@ -249,23 +275,23 @@ export interface AccessItemAccessProfileResponseV2025 {
249
275
  */
250
276
  export interface AccessItemAccountResponseV2025 {
251
277
  /**
252
- * the access item type. account in this case
278
+ * the access item id
253
279
  * @type {string}
254
280
  * @memberof AccessItemAccountResponseV2025
255
281
  */
256
- 'accessType'?: string;
282
+ 'id'?: string;
257
283
  /**
258
- * the access item id
284
+ * the access item type. account in this case
259
285
  * @type {string}
260
286
  * @memberof AccessItemAccountResponseV2025
261
287
  */
262
- 'id'?: string;
288
+ 'accessType'?: string;
263
289
  /**
264
- * the native identifier used to uniquely identify an acccount
290
+ * the display name of the identity
265
291
  * @type {string}
266
292
  * @memberof AccessItemAccountResponseV2025
267
293
  */
268
- 'nativeIdentity'?: string;
294
+ 'displayName'?: string;
269
295
  /**
270
296
  * the name of the source
271
297
  * @type {string}
@@ -273,23 +299,23 @@ export interface AccessItemAccountResponseV2025 {
273
299
  */
274
300
  'sourceName'?: string;
275
301
  /**
276
- * the id of the source
302
+ * the native identifier used to uniquely identify an acccount
277
303
  * @type {string}
278
304
  * @memberof AccessItemAccountResponseV2025
279
305
  */
280
- 'sourceId'?: string;
306
+ 'nativeIdentity': string;
281
307
  /**
282
- * the number of entitlements the account will create
308
+ * the id of the source
283
309
  * @type {string}
284
310
  * @memberof AccessItemAccountResponseV2025
285
311
  */
286
- 'entitlementCount'?: string;
312
+ 'sourceId'?: string;
287
313
  /**
288
- * the display name of the identity
289
- * @type {string}
314
+ * the number of entitlements the account will create
315
+ * @type {number}
290
316
  * @memberof AccessItemAccountResponseV2025
291
317
  */
292
- 'displayName'?: string;
318
+ 'entitlementCount'?: number;
293
319
  }
294
320
  /**
295
321
  *
@@ -298,17 +324,17 @@ export interface AccessItemAccountResponseV2025 {
298
324
  */
299
325
  export interface AccessItemAppResponseV2025 {
300
326
  /**
301
- * the access item type. entitlement in this case
327
+ * the access item id
302
328
  * @type {string}
303
329
  * @memberof AccessItemAppResponseV2025
304
330
  */
305
- 'accessType'?: string;
331
+ 'id'?: string;
306
332
  /**
307
- * the access item id
333
+ * the access item type. entitlement in this case
308
334
  * @type {string}
309
335
  * @memberof AccessItemAppResponseV2025
310
336
  */
311
- 'id'?: string;
337
+ 'accessType'?: string;
312
338
  /**
313
339
  * the access item display name
314
340
  * @type {string}
@@ -320,13 +346,13 @@ export interface AccessItemAppResponseV2025 {
320
346
  * @type {string}
321
347
  * @memberof AccessItemAppResponseV2025
322
348
  */
323
- 'sourceName'?: string;
349
+ 'sourceName'?: string | null;
324
350
  /**
325
351
  * the app role id
326
352
  * @type {string}
327
353
  * @memberof AccessItemAppResponseV2025
328
354
  */
329
- 'appRoleId'?: string;
355
+ 'appRoleId': string | null;
330
356
  }
331
357
  /**
332
358
  * Identity who approved the access item request.
@@ -358,10 +384,120 @@ export declare const AccessItemApproverDtoV2025TypeV2025: {
358
384
  };
359
385
  export type AccessItemApproverDtoV2025TypeV2025 = typeof AccessItemApproverDtoV2025TypeV2025[keyof typeof AccessItemApproverDtoV2025TypeV2025];
360
386
  /**
361
- * @type AccessItemAssociatedAccessItemV2025
387
+ *
362
388
  * @export
389
+ * @interface AccessItemAssociatedAccessItemV2025
363
390
  */
364
- export type AccessItemAssociatedAccessItemV2025 = AccessItemAccessProfileResponseV2025 | AccessItemAccountResponseV2025 | AccessItemAppResponseV2025 | AccessItemEntitlementResponseV2025 | AccessItemRoleResponseV2025;
391
+ export interface AccessItemAssociatedAccessItemV2025 {
392
+ /**
393
+ * the access item id
394
+ * @type {string}
395
+ * @memberof AccessItemAssociatedAccessItemV2025
396
+ */
397
+ 'id'?: string;
398
+ /**
399
+ * the access item type. entitlement in this case
400
+ * @type {string}
401
+ * @memberof AccessItemAssociatedAccessItemV2025
402
+ */
403
+ 'accessType'?: string;
404
+ /**
405
+ * the access item display name
406
+ * @type {string}
407
+ * @memberof AccessItemAssociatedAccessItemV2025
408
+ */
409
+ 'displayName'?: string;
410
+ /**
411
+ * the associated source name if it exists
412
+ * @type {string}
413
+ * @memberof AccessItemAssociatedAccessItemV2025
414
+ */
415
+ 'sourceName'?: string | null;
416
+ /**
417
+ * the entitlement attribute
418
+ * @type {string}
419
+ * @memberof AccessItemAssociatedAccessItemV2025
420
+ */
421
+ 'attribute': string;
422
+ /**
423
+ * the associated value
424
+ * @type {string}
425
+ * @memberof AccessItemAssociatedAccessItemV2025
426
+ */
427
+ 'value': string;
428
+ /**
429
+ * the type of entitlement
430
+ * @type {string}
431
+ * @memberof AccessItemAssociatedAccessItemV2025
432
+ */
433
+ 'type': string;
434
+ /**
435
+ * the description for the role
436
+ * @type {string}
437
+ * @memberof AccessItemAssociatedAccessItemV2025
438
+ */
439
+ 'description'?: string;
440
+ /**
441
+ * the id of the source
442
+ * @type {string}
443
+ * @memberof AccessItemAssociatedAccessItemV2025
444
+ */
445
+ 'sourceId'?: string;
446
+ /**
447
+ * indicates whether the access profile is standalone
448
+ * @type {boolean}
449
+ * @memberof AccessItemAssociatedAccessItemV2025
450
+ */
451
+ 'standalone': boolean | null;
452
+ /**
453
+ * indicates whether the entitlement is privileged
454
+ * @type {boolean}
455
+ * @memberof AccessItemAssociatedAccessItemV2025
456
+ */
457
+ 'privileged': boolean | null;
458
+ /**
459
+ * indicates whether the entitlement is cloud governed
460
+ * @type {boolean}
461
+ * @memberof AccessItemAssociatedAccessItemV2025
462
+ */
463
+ 'cloudGoverned': boolean | null;
464
+ /**
465
+ * the number of entitlements the account will create
466
+ * @type {number}
467
+ * @memberof AccessItemAssociatedAccessItemV2025
468
+ */
469
+ 'entitlementCount': number;
470
+ /**
471
+ * the list of app ids associated with the access profile
472
+ * @type {Array<AccessItemAccessProfileResponseAppRefsInnerV2025>}
473
+ * @memberof AccessItemAssociatedAccessItemV2025
474
+ */
475
+ 'appRefs': Array<AccessItemAccessProfileResponseAppRefsInnerV2025>;
476
+ /**
477
+ * the date the role is no longer assigned to the specified identity
478
+ * @type {string}
479
+ * @memberof AccessItemAssociatedAccessItemV2025
480
+ */
481
+ 'removeDate'?: string;
482
+ /**
483
+ * indicates whether the role is revocable
484
+ * @type {boolean}
485
+ * @memberof AccessItemAssociatedAccessItemV2025
486
+ */
487
+ 'revocable': boolean;
488
+ /**
489
+ * the native identifier used to uniquely identify an acccount
490
+ * @type {string}
491
+ * @memberof AccessItemAssociatedAccessItemV2025
492
+ */
493
+ 'nativeIdentity': string;
494
+ /**
495
+ * the app role id
496
+ * @type {string}
497
+ * @memberof AccessItemAssociatedAccessItemV2025
498
+ */
499
+ 'appRoleId': string | null;
500
+ }
365
501
  /**
366
502
  *
367
503
  * @export
@@ -369,36 +505,50 @@ export type AccessItemAssociatedAccessItemV2025 = AccessItemAccessProfileRespons
369
505
  */
370
506
  export interface AccessItemAssociatedV2025 {
371
507
  /**
372
- *
373
- * @type {AccessItemAssociatedAccessItemV2025}
508
+ * the event type
509
+ * @type {string}
374
510
  * @memberof AccessItemAssociatedV2025
375
511
  */
376
- 'accessItem'?: AccessItemAssociatedAccessItemV2025;
512
+ 'eventType'?: string;
377
513
  /**
378
- * the identity id
514
+ * the date of event
379
515
  * @type {string}
380
516
  * @memberof AccessItemAssociatedV2025
381
517
  */
382
- 'identityId'?: string;
518
+ 'dateTime'?: string;
383
519
  /**
384
- * the event type
520
+ * the identity id
385
521
  * @type {string}
386
522
  * @memberof AccessItemAssociatedV2025
387
523
  */
388
- 'eventType'?: string;
524
+ 'identityId'?: string;
389
525
  /**
390
- * the date of event
391
- * @type {string}
526
+ *
527
+ * @type {AccessItemAssociatedAccessItemV2025}
392
528
  * @memberof AccessItemAssociatedV2025
393
529
  */
394
- 'dt'?: string;
530
+ 'accessItem': AccessItemAssociatedAccessItemV2025;
395
531
  /**
396
532
  *
397
533
  * @type {CorrelatedGovernanceEventV2025}
398
534
  * @memberof AccessItemAssociatedV2025
399
535
  */
400
- 'governanceEvent'?: CorrelatedGovernanceEventV2025;
536
+ 'governanceEvent': CorrelatedGovernanceEventV2025 | null;
537
+ /**
538
+ * the access item type
539
+ * @type {string}
540
+ * @memberof AccessItemAssociatedV2025
541
+ */
542
+ 'accessItemType'?: AccessItemAssociatedV2025AccessItemTypeV2025;
401
543
  }
544
+ export declare const AccessItemAssociatedV2025AccessItemTypeV2025: {
545
+ readonly Account: "account";
546
+ readonly App: "app";
547
+ readonly Entitlement: "entitlement";
548
+ readonly Role: "role";
549
+ readonly AccessProfile: "accessProfile";
550
+ };
551
+ export type AccessItemAssociatedV2025AccessItemTypeV2025 = typeof AccessItemAssociatedV2025AccessItemTypeV2025[keyof typeof AccessItemAssociatedV2025AccessItemTypeV2025];
402
552
  /**
403
553
  *
404
554
  * @export
@@ -442,77 +592,77 @@ export type AccessItemDiffV2025EventTypeV2025 = typeof AccessItemDiffV2025EventT
442
592
  */
443
593
  export interface AccessItemEntitlementResponseV2025 {
444
594
  /**
445
- * the access item type. entitlement in this case
595
+ * the access item id
446
596
  * @type {string}
447
597
  * @memberof AccessItemEntitlementResponseV2025
448
598
  */
449
- 'accessType'?: string;
599
+ 'id'?: string;
450
600
  /**
451
- * the access item id
601
+ * the access item type. entitlement in this case
452
602
  * @type {string}
453
603
  * @memberof AccessItemEntitlementResponseV2025
454
604
  */
455
- 'id'?: string;
605
+ 'accessType'?: string;
456
606
  /**
457
- * the entitlement attribute
607
+ * the display name of the identity
458
608
  * @type {string}
459
609
  * @memberof AccessItemEntitlementResponseV2025
460
610
  */
461
- 'attribute'?: string;
611
+ 'displayName'?: string;
462
612
  /**
463
- * the associated value
613
+ * the name of the source
464
614
  * @type {string}
465
615
  * @memberof AccessItemEntitlementResponseV2025
466
616
  */
467
- 'value'?: string;
617
+ 'sourceName'?: string;
468
618
  /**
469
- * the type of entitlement
619
+ * the entitlement attribute
470
620
  * @type {string}
471
621
  * @memberof AccessItemEntitlementResponseV2025
472
622
  */
473
- 'entitlementType'?: string;
623
+ 'attribute': string;
474
624
  /**
475
- * the name of the source
625
+ * the associated value
476
626
  * @type {string}
477
627
  * @memberof AccessItemEntitlementResponseV2025
478
628
  */
479
- 'sourceName'?: string;
629
+ 'value': string;
480
630
  /**
481
- * the id of the source
631
+ * the type of entitlement
482
632
  * @type {string}
483
633
  * @memberof AccessItemEntitlementResponseV2025
484
634
  */
485
- 'sourceId'?: string;
635
+ 'type': string;
486
636
  /**
487
637
  * the description for the entitlment
488
638
  * @type {string}
489
639
  * @memberof AccessItemEntitlementResponseV2025
490
640
  */
491
- 'description'?: string;
641
+ 'description'?: string | null;
492
642
  /**
493
- * the display name of the identity
643
+ * the id of the source
494
644
  * @type {string}
495
645
  * @memberof AccessItemEntitlementResponseV2025
496
646
  */
497
- 'displayName'?: string;
647
+ 'sourceId'?: string;
498
648
  /**
499
649
  * indicates whether the entitlement is standalone
500
650
  * @type {boolean}
501
651
  * @memberof AccessItemEntitlementResponseV2025
502
652
  */
503
- 'standalone': boolean;
653
+ 'standalone': boolean | null;
504
654
  /**
505
655
  * indicates whether the entitlement is privileged
506
656
  * @type {boolean}
507
657
  * @memberof AccessItemEntitlementResponseV2025
508
658
  */
509
- 'privileged': boolean;
659
+ 'privileged': boolean | null;
510
660
  /**
511
661
  * indicates whether the entitlement is cloud governed
512
662
  * @type {boolean}
513
663
  * @memberof AccessItemEntitlementResponseV2025
514
664
  */
515
- 'cloudGoverned': boolean;
665
+ 'cloudGoverned': boolean | null;
516
666
  }
517
667
  /**
518
668
  *
@@ -550,7 +700,7 @@ export interface AccessItemRemovedV2025 {
550
700
  * @type {AccessItemAssociatedAccessItemV2025}
551
701
  * @memberof AccessItemRemovedV2025
552
702
  */
553
- 'accessItem'?: AccessItemAssociatedAccessItemV2025;
703
+ 'accessItem': AccessItemAssociatedAccessItemV2025;
554
704
  /**
555
705
  * the identity id
556
706
  * @type {string}
@@ -568,14 +718,28 @@ export interface AccessItemRemovedV2025 {
568
718
  * @type {string}
569
719
  * @memberof AccessItemRemovedV2025
570
720
  */
571
- 'dt'?: string;
721
+ 'dateTime'?: string;
722
+ /**
723
+ * the access item type
724
+ * @type {string}
725
+ * @memberof AccessItemRemovedV2025
726
+ */
727
+ 'accessItemType'?: AccessItemRemovedV2025AccessItemTypeV2025;
572
728
  /**
573
729
  *
574
730
  * @type {CorrelatedGovernanceEventV2025}
575
731
  * @memberof AccessItemRemovedV2025
576
732
  */
577
- 'governanceEvent'?: CorrelatedGovernanceEventV2025;
733
+ 'governanceEvent'?: CorrelatedGovernanceEventV2025 | null;
578
734
  }
735
+ export declare const AccessItemRemovedV2025AccessItemTypeV2025: {
736
+ readonly Account: "account";
737
+ readonly App: "app";
738
+ readonly Entitlement: "entitlement";
739
+ readonly Role: "role";
740
+ readonly AccessProfile: "accessProfile";
741
+ };
742
+ export type AccessItemRemovedV2025AccessItemTypeV2025 = typeof AccessItemRemovedV2025AccessItemTypeV2025[keyof typeof AccessItemRemovedV2025AccessItemTypeV2025];
579
743
  /**
580
744
  * Identity the access item is requested for.
581
745
  * @export
@@ -728,17 +892,17 @@ export type AccessItemReviewedByV2025TypeV2025 = typeof AccessItemReviewedByV202
728
892
  */
729
893
  export interface AccessItemRoleResponseV2025 {
730
894
  /**
731
- * the access item type. role in this case
895
+ * the access item id
732
896
  * @type {string}
733
897
  * @memberof AccessItemRoleResponseV2025
734
898
  */
735
- 'accessType'?: string;
899
+ 'id'?: string;
736
900
  /**
737
- * the access item id
901
+ * the access item type. role in this case
738
902
  * @type {string}
739
903
  * @memberof AccessItemRoleResponseV2025
740
904
  */
741
- 'id'?: string;
905
+ 'accessType'?: string;
742
906
  /**
743
907
  * the role display name
744
908
  * @type {string}
@@ -746,17 +910,17 @@ export interface AccessItemRoleResponseV2025 {
746
910
  */
747
911
  'displayName'?: string;
748
912
  /**
749
- * the description for the role
913
+ * the associated source name if it exists
750
914
  * @type {string}
751
915
  * @memberof AccessItemRoleResponseV2025
752
916
  */
753
- 'description'?: string;
917
+ 'sourceName'?: string | null;
754
918
  /**
755
- * the associated source name if it exists
919
+ * the description for the role
756
920
  * @type {string}
757
921
  * @memberof AccessItemRoleResponseV2025
758
922
  */
759
- 'sourceName'?: string;
923
+ 'description'?: string;
760
924
  /**
761
925
  * the date the role is no longer assigned to the specified identity
762
926
  * @type {string}
@@ -770,6 +934,50 @@ export interface AccessItemRoleResponseV2025 {
770
934
  */
771
935
  'revocable': boolean;
772
936
  }
937
+ /**
938
+ *
939
+ * @export
940
+ * @interface AccessModelMetadataBulkUpdateResponseV2025
941
+ */
942
+ export interface AccessModelMetadataBulkUpdateResponseV2025 {
943
+ /**
944
+ * ID of the task which is executing the bulk update.
945
+ * @type {string}
946
+ * @memberof AccessModelMetadataBulkUpdateResponseV2025
947
+ */
948
+ 'id'?: string;
949
+ /**
950
+ * Type of the bulk update object.
951
+ * @type {string}
952
+ * @memberof AccessModelMetadataBulkUpdateResponseV2025
953
+ */
954
+ 'type'?: string;
955
+ /**
956
+ * The status of the bulk update request, only list unfinished request\'s status.
957
+ * @type {string}
958
+ * @memberof AccessModelMetadataBulkUpdateResponseV2025
959
+ */
960
+ 'status'?: AccessModelMetadataBulkUpdateResponseV2025StatusV2025;
961
+ /**
962
+ * Time when the bulk update request was created
963
+ * @type {string}
964
+ * @memberof AccessModelMetadataBulkUpdateResponseV2025
965
+ */
966
+ 'created'?: string;
967
+ }
968
+ export declare const AccessModelMetadataBulkUpdateResponseV2025StatusV2025: {
969
+ readonly Created: "CREATED";
970
+ readonly PreProcess: "PRE_PROCESS";
971
+ readonly PreProcessCompleted: "PRE_PROCESS_COMPLETED";
972
+ readonly PostProcess: "POST_PROCESS";
973
+ readonly Completed: "COMPLETED";
974
+ readonly ChunkPending: "CHUNK_PENDING";
975
+ readonly ChunkProcessing: "CHUNK_PROCESSING";
976
+ readonly ReProcessing: "RE_PROCESSING";
977
+ readonly PreProcessFailed: "PRE_PROCESS_FAILED";
978
+ readonly Failed: "FAILED";
979
+ };
980
+ export type AccessModelMetadataBulkUpdateResponseV2025StatusV2025 = typeof AccessModelMetadataBulkUpdateResponseV2025StatusV2025[keyof typeof AccessModelMetadataBulkUpdateResponseV2025StatusV2025];
773
981
  /**
774
982
  * Metadata that describes an access item
775
983
  * @export
@@ -2934,7 +3142,7 @@ export interface AccessRequestedV2025 {
2934
3142
  * @type {AccessRequestResponse1V2025}
2935
3143
  * @memberof AccessRequestedV2025
2936
3144
  */
2937
- 'accessRequest'?: AccessRequestResponse1V2025;
3145
+ 'accessRequest': AccessRequestResponse1V2025;
2938
3146
  /**
2939
3147
  * the identity id
2940
3148
  * @type {string}
@@ -2952,7 +3160,7 @@ export interface AccessRequestedV2025 {
2952
3160
  * @type {string}
2953
3161
  * @memberof AccessRequestedV2025
2954
3162
  */
2955
- 'dt'?: string;
3163
+ 'dateTime'?: string;
2956
3164
  }
2957
3165
  /**
2958
3166
  *
@@ -3138,11 +3346,23 @@ export interface AccountActionV2025 {
3138
3346
  */
3139
3347
  'action'?: AccountActionV2025ActionV2025;
3140
3348
  /**
3141
- * List of unique source IDs. The sources must have the ENABLE feature or flat file source. See \"/sources\" endpoint for source features.
3349
+ * A unique list of specific source IDs to apply the action to. The sources must have the ENABLE feature or flat file source. Required if allSources is not true. Must not be provided if allSources is true. Cannot be used together with excludeSourceIds See \"/sources\" endpoint for source features.
3142
3350
  * @type {Set<string>}
3143
3351
  * @memberof AccountActionV2025
3144
3352
  */
3145
- 'sourceIds'?: Set<string>;
3353
+ 'sourceIds'?: Set<string> | null;
3354
+ /**
3355
+ * A list of source IDs to exclude from the action. Cannot be used together with sourceIds.
3356
+ * @type {Set<string>}
3357
+ * @memberof AccountActionV2025
3358
+ */
3359
+ 'excludeSourceIds'?: Set<string> | null;
3360
+ /**
3361
+ * If true, the action applies to all available sources. If true, sourceIds must not be provided. If false or not set, sourceIds is required.
3362
+ * @type {boolean}
3363
+ * @memberof AccountActionV2025
3364
+ */
3365
+ 'allSources'?: boolean;
3146
3366
  }
3147
3367
  export declare const AccountActionV2025ActionV2025: {
3148
3368
  readonly Enable: "ENABLE";
@@ -3887,6 +4107,30 @@ export interface AccountAggregationStatusV2025 {
3887
4107
  * @memberof AccountAggregationStatusV2025
3888
4108
  */
3889
4109
  'processedAccounts'?: number;
4110
+ /**
4111
+ * The total number of accounts that have been marked for deletion during the aggregation. *Only available when status is ACCOUNTS_COLLECTED or COMPLETED.*
4112
+ * @type {number}
4113
+ * @memberof AccountAggregationStatusV2025
4114
+ */
4115
+ 'totalAccountsMarkedForDeletion'?: number;
4116
+ /**
4117
+ * The number of accounts that have been deleted during the aggregation. *Only available when status is ACCOUNTS_COLLECTED or COMPLETED.*
4118
+ * @type {number}
4119
+ * @memberof AccountAggregationStatusV2025
4120
+ */
4121
+ 'deletedAccounts'?: number;
4122
+ /**
4123
+ * The total number of unique identities that have been marked for refresh. *Only available when status is ACCOUNTS_COLLECTED or COMPLETED.*
4124
+ * @type {number}
4125
+ * @memberof AccountAggregationStatusV2025
4126
+ */
4127
+ 'totalIdentities'?: number;
4128
+ /**
4129
+ * The number of unique identities that have been refreshed at the time of the API call, and may increase on subsequent API calls while the status is ACCOUNTS_COLLECTED. *Only available when status is ACCOUNTS_COLLECTED or COMPLETED.*
4130
+ * @type {number}
4131
+ * @memberof AccountAggregationStatusV2025
4132
+ */
4133
+ 'processedIdentities'?: number;
3890
4134
  }
3891
4135
  export declare const AccountAggregationStatusV2025StatusV2025: {
3892
4136
  readonly Started: "STARTED";
@@ -4723,19 +4967,19 @@ export interface AccountStatusChangedV2025 {
4723
4967
  * @type {string}
4724
4968
  * @memberof AccountStatusChangedV2025
4725
4969
  */
4726
- 'dt'?: string;
4970
+ 'dateTime'?: string;
4727
4971
  /**
4728
4972
  *
4729
4973
  * @type {AccountStatusChangedAccountV2025}
4730
4974
  * @memberof AccountStatusChangedV2025
4731
4975
  */
4732
- 'account'?: AccountStatusChangedAccountV2025;
4976
+ 'account': AccountStatusChangedAccountV2025;
4733
4977
  /**
4734
4978
  *
4735
4979
  * @type {AccountStatusChangedStatusChangeV2025}
4736
4980
  * @memberof AccountStatusChangedV2025
4737
4981
  */
4738
- 'statusChange'?: AccountStatusChangedStatusChangeV2025;
4982
+ 'statusChange': AccountStatusChangedStatusChangeV2025;
4739
4983
  }
4740
4984
  /**
4741
4985
  * Request used for account enable/disable
@@ -6882,7 +7126,7 @@ export interface AttributesChangedV2025 {
6882
7126
  * @type {Array<AttributeChangeV2025>}
6883
7127
  * @memberof AttributesChangedV2025
6884
7128
  */
6885
- 'changes'?: Array<AttributeChangeV2025>;
7129
+ 'attributeChanges': Array<AttributeChangeV2025>;
6886
7130
  /**
6887
7131
  * the event type
6888
7132
  * @type {string}
@@ -6900,7 +7144,7 @@ export interface AttributesChangedV2025 {
6900
7144
  * @type {string}
6901
7145
  * @memberof AttributesChangedV2025
6902
7146
  */
6903
- 'dt'?: string;
7147
+ 'dateTime'?: string;
6904
7148
  }
6905
7149
  /**
6906
7150
  * Audit details for the reassignment configuration of an identity
@@ -8437,7 +8681,6 @@ export interface CampaignAllOfFilterV2025 {
8437
8681
  }
8438
8682
  export declare const CampaignAllOfFilterV2025TypeV2025: {
8439
8683
  readonly CampaignFilter: "CAMPAIGN_FILTER";
8440
- readonly Rule: "RULE";
8441
8684
  };
8442
8685
  export type CampaignAllOfFilterV2025TypeV2025 = typeof CampaignAllOfFilterV2025TypeV2025[keyof typeof CampaignAllOfFilterV2025TypeV2025];
8443
8686
  /**
@@ -12089,7 +12332,7 @@ export interface CorrelatedGovernanceEventV2025 {
12089
12332
  * @type {string}
12090
12333
  * @memberof CorrelatedGovernanceEventV2025
12091
12334
  */
12092
- 'dt'?: string;
12335
+ 'dateTime'?: string;
12093
12336
  /**
12094
12337
  * The type of governance event.
12095
12338
  * @type {string}
@@ -12635,7 +12878,13 @@ export interface CreatePersonalAccessTokenRequestV2025 {
12635
12878
  * @type {number}
12636
12879
  * @memberof CreatePersonalAccessTokenRequestV2025
12637
12880
  */
12638
- 'accessTokenValiditySeconds'?: number;
12881
+ 'accessTokenValiditySeconds'?: number | null;
12882
+ /**
12883
+ * Date and time, down to the millisecond, when this personal access token will expire. If not provided, the token will expire 6 months after its creation date. The value must be a valid date-time string between the current date and 6 months from the creation date.
12884
+ * @type {string}
12885
+ * @memberof CreatePersonalAccessTokenRequestV2025
12886
+ */
12887
+ 'expirationDate'?: string | null;
12639
12888
  }
12640
12889
  /**
12641
12890
  *
@@ -12685,6 +12934,12 @@ export interface CreatePersonalAccessTokenResponseV2025 {
12685
12934
  * @memberof CreatePersonalAccessTokenResponseV2025
12686
12935
  */
12687
12936
  'accessTokenValiditySeconds': number;
12937
+ /**
12938
+ * Date and time, down to the millisecond, when this personal access token will expire. If not provided, the token will expire 6 months after its creation date. The value must be a valid date-time string between the current date and 6 months from the creation date.
12939
+ * @type {string}
12940
+ * @memberof CreatePersonalAccessTokenResponseV2025
12941
+ */
12942
+ 'expirationDate': string;
12688
12943
  }
12689
12944
  /**
12690
12945
  *
@@ -14320,6 +14575,132 @@ export type EntitlementApprovalSchemeV2025ApproverTypeV2025 = typeof Entitlement
14320
14575
  /**
14321
14576
  *
14322
14577
  * @export
14578
+ * @interface EntitlementAttributeBulkUpdateFilterRequestV2025
14579
+ */
14580
+ export interface EntitlementAttributeBulkUpdateFilterRequestV2025 {
14581
+ /**
14582
+ * 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*
14583
+ * @type {string}
14584
+ * @memberof EntitlementAttributeBulkUpdateFilterRequestV2025
14585
+ */
14586
+ 'filters'?: string;
14587
+ /**
14588
+ * Operation to perform on the attributes in the bulk update request.
14589
+ * @type {string}
14590
+ * @memberof EntitlementAttributeBulkUpdateFilterRequestV2025
14591
+ */
14592
+ 'operation'?: EntitlementAttributeBulkUpdateFilterRequestV2025OperationV2025;
14593
+ /**
14594
+ * The choice of update scope.
14595
+ * @type {string}
14596
+ * @memberof EntitlementAttributeBulkUpdateFilterRequestV2025
14597
+ */
14598
+ 'replaceScope'?: EntitlementAttributeBulkUpdateFilterRequestV2025ReplaceScopeV2025;
14599
+ /**
14600
+ * The metadata to be updated, including attribute and values.
14601
+ * @type {Array<RoleMetadataBulkUpdateByIdRequestValuesInnerV2025>}
14602
+ * @memberof EntitlementAttributeBulkUpdateFilterRequestV2025
14603
+ */
14604
+ 'values'?: Array<RoleMetadataBulkUpdateByIdRequestValuesInnerV2025>;
14605
+ }
14606
+ export declare const EntitlementAttributeBulkUpdateFilterRequestV2025OperationV2025: {
14607
+ readonly Add: "ADD";
14608
+ readonly Remove: "REMOVE";
14609
+ readonly Replace: "REPLACE";
14610
+ };
14611
+ export type EntitlementAttributeBulkUpdateFilterRequestV2025OperationV2025 = typeof EntitlementAttributeBulkUpdateFilterRequestV2025OperationV2025[keyof typeof EntitlementAttributeBulkUpdateFilterRequestV2025OperationV2025];
14612
+ export declare const EntitlementAttributeBulkUpdateFilterRequestV2025ReplaceScopeV2025: {
14613
+ readonly All: "ALL";
14614
+ readonly Attribute: "ATTRIBUTE";
14615
+ };
14616
+ export type EntitlementAttributeBulkUpdateFilterRequestV2025ReplaceScopeV2025 = typeof EntitlementAttributeBulkUpdateFilterRequestV2025ReplaceScopeV2025[keyof typeof EntitlementAttributeBulkUpdateFilterRequestV2025ReplaceScopeV2025];
14617
+ /**
14618
+ *
14619
+ * @export
14620
+ * @interface EntitlementAttributeBulkUpdateIdsRequestV2025
14621
+ */
14622
+ export interface EntitlementAttributeBulkUpdateIdsRequestV2025 {
14623
+ /**
14624
+ * List of entitlement IDs to update.
14625
+ * @type {Array<string>}
14626
+ * @memberof EntitlementAttributeBulkUpdateIdsRequestV2025
14627
+ */
14628
+ 'entitlements'?: Array<string>;
14629
+ /**
14630
+ * Operation to perform on the attributes in the bulk update request.
14631
+ * @type {string}
14632
+ * @memberof EntitlementAttributeBulkUpdateIdsRequestV2025
14633
+ */
14634
+ 'operation'?: EntitlementAttributeBulkUpdateIdsRequestV2025OperationV2025;
14635
+ /**
14636
+ * The choice of update scope.
14637
+ * @type {string}
14638
+ * @memberof EntitlementAttributeBulkUpdateIdsRequestV2025
14639
+ */
14640
+ 'replaceScope'?: EntitlementAttributeBulkUpdateIdsRequestV2025ReplaceScopeV2025;
14641
+ /**
14642
+ * The metadata to be updated, including attribute and values.
14643
+ * @type {Array<RoleMetadataBulkUpdateByIdRequestValuesInnerV2025>}
14644
+ * @memberof EntitlementAttributeBulkUpdateIdsRequestV2025
14645
+ */
14646
+ 'values'?: Array<RoleMetadataBulkUpdateByIdRequestValuesInnerV2025>;
14647
+ }
14648
+ export declare const EntitlementAttributeBulkUpdateIdsRequestV2025OperationV2025: {
14649
+ readonly Add: "ADD";
14650
+ readonly Remove: "REMOVE";
14651
+ readonly Replace: "REPLACE";
14652
+ };
14653
+ export type EntitlementAttributeBulkUpdateIdsRequestV2025OperationV2025 = typeof EntitlementAttributeBulkUpdateIdsRequestV2025OperationV2025[keyof typeof EntitlementAttributeBulkUpdateIdsRequestV2025OperationV2025];
14654
+ export declare const EntitlementAttributeBulkUpdateIdsRequestV2025ReplaceScopeV2025: {
14655
+ readonly All: "ALL";
14656
+ readonly Attribute: "ATTRIBUTE";
14657
+ };
14658
+ export type EntitlementAttributeBulkUpdateIdsRequestV2025ReplaceScopeV2025 = typeof EntitlementAttributeBulkUpdateIdsRequestV2025ReplaceScopeV2025[keyof typeof EntitlementAttributeBulkUpdateIdsRequestV2025ReplaceScopeV2025];
14659
+ /**
14660
+ *
14661
+ * @export
14662
+ * @interface EntitlementAttributeBulkUpdateQueryRequestV2025
14663
+ */
14664
+ export interface EntitlementAttributeBulkUpdateQueryRequestV2025 {
14665
+ /**
14666
+ *
14667
+ * @type {SearchV2025}
14668
+ * @memberof EntitlementAttributeBulkUpdateQueryRequestV2025
14669
+ */
14670
+ 'query'?: SearchV2025;
14671
+ /**
14672
+ * Operation to perform on the attributes in the bulk update request.
14673
+ * @type {string}
14674
+ * @memberof EntitlementAttributeBulkUpdateQueryRequestV2025
14675
+ */
14676
+ 'operation'?: EntitlementAttributeBulkUpdateQueryRequestV2025OperationV2025;
14677
+ /**
14678
+ * The choice of update scope.
14679
+ * @type {string}
14680
+ * @memberof EntitlementAttributeBulkUpdateQueryRequestV2025
14681
+ */
14682
+ 'replaceScope'?: EntitlementAttributeBulkUpdateQueryRequestV2025ReplaceScopeV2025;
14683
+ /**
14684
+ * The metadata to be updated, including attribute and values.
14685
+ * @type {Array<RoleMetadataBulkUpdateByIdRequestValuesInnerV2025>}
14686
+ * @memberof EntitlementAttributeBulkUpdateQueryRequestV2025
14687
+ */
14688
+ 'values'?: Array<RoleMetadataBulkUpdateByIdRequestValuesInnerV2025>;
14689
+ }
14690
+ export declare const EntitlementAttributeBulkUpdateQueryRequestV2025OperationV2025: {
14691
+ readonly Add: "ADD";
14692
+ readonly Remove: "REMOVE";
14693
+ readonly Replace: "REPLACE";
14694
+ };
14695
+ export type EntitlementAttributeBulkUpdateQueryRequestV2025OperationV2025 = typeof EntitlementAttributeBulkUpdateQueryRequestV2025OperationV2025[keyof typeof EntitlementAttributeBulkUpdateQueryRequestV2025OperationV2025];
14696
+ export declare const EntitlementAttributeBulkUpdateQueryRequestV2025ReplaceScopeV2025: {
14697
+ readonly All: "ALL";
14698
+ readonly Attribute: "ATTRIBUTE";
14699
+ };
14700
+ export type EntitlementAttributeBulkUpdateQueryRequestV2025ReplaceScopeV2025 = typeof EntitlementAttributeBulkUpdateQueryRequestV2025ReplaceScopeV2025[keyof typeof EntitlementAttributeBulkUpdateQueryRequestV2025ReplaceScopeV2025];
14701
+ /**
14702
+ * Object for specifying the bulk update request
14703
+ * @export
14323
14704
  * @interface EntitlementBulkUpdateRequestV2025
14324
14705
  */
14325
14706
  export interface EntitlementBulkUpdateRequestV2025 {
@@ -17699,96 +18080,110 @@ export type GetDiscoveredApplications200ResponseInnerV2025 = FullDiscoveredAppli
17699
18080
  */
17700
18081
  export interface GetHistoricalIdentityEvents200ResponseInnerV2025 {
17701
18082
  /**
17702
- *
17703
- * @type {AccessItemAssociatedAccessItemV2025}
18083
+ * the id of the certification item
18084
+ * @type {string}
17704
18085
  * @memberof GetHistoricalIdentityEvents200ResponseInnerV2025
17705
18086
  */
17706
- 'accessItem'?: AccessItemAssociatedAccessItemV2025;
18087
+ 'certificationId': string;
17707
18088
  /**
17708
- * the identity id
18089
+ * the certification item name
17709
18090
  * @type {string}
17710
18091
  * @memberof GetHistoricalIdentityEvents200ResponseInnerV2025
17711
18092
  */
17712
- 'identityId'?: string;
18093
+ 'certificationName': string;
17713
18094
  /**
17714
- * the event type
18095
+ * the date ceritification was signed
17715
18096
  * @type {string}
17716
18097
  * @memberof GetHistoricalIdentityEvents200ResponseInnerV2025
17717
18098
  */
17718
- 'eventType'?: string;
18099
+ 'signedDate'?: string;
17719
18100
  /**
17720
- * the date of event
17721
- * @type {string}
18101
+ * this field is deprecated and may go away
18102
+ * @type {Array<CertifierResponseV2025>}
17722
18103
  * @memberof GetHistoricalIdentityEvents200ResponseInnerV2025
17723
18104
  */
17724
- 'dt'?: string;
18105
+ 'certifiers'?: Array<CertifierResponseV2025>;
17725
18106
  /**
17726
- *
17727
- * @type {CorrelatedGovernanceEventV2025}
18107
+ * The list of identities who review this certification
18108
+ * @type {Array<CertifierResponseV2025>}
17728
18109
  * @memberof GetHistoricalIdentityEvents200ResponseInnerV2025
17729
18110
  */
17730
- 'governanceEvent'?: CorrelatedGovernanceEventV2025;
18111
+ 'reviewers'?: Array<CertifierResponseV2025>;
17731
18112
  /**
17732
18113
  *
17733
- * @type {Array<AttributeChangeV2025>}
18114
+ * @type {CertifierResponseV2025}
17734
18115
  * @memberof GetHistoricalIdentityEvents200ResponseInnerV2025
17735
18116
  */
17736
- 'changes'?: Array<AttributeChangeV2025>;
18117
+ 'signer'?: CertifierResponseV2025;
17737
18118
  /**
17738
- *
17739
- * @type {AccessRequestResponse1V2025}
18119
+ * the event type
18120
+ * @type {string}
17740
18121
  * @memberof GetHistoricalIdentityEvents200ResponseInnerV2025
17741
18122
  */
17742
- 'accessRequest'?: AccessRequestResponse1V2025;
18123
+ 'eventType'?: string;
17743
18124
  /**
17744
- * the id of the certification item
18125
+ * the date of event
17745
18126
  * @type {string}
17746
18127
  * @memberof GetHistoricalIdentityEvents200ResponseInnerV2025
17747
18128
  */
17748
- 'certificationId'?: string;
18129
+ 'dateTime'?: string;
17749
18130
  /**
17750
- * the certification item name
18131
+ * the identity id
17751
18132
  * @type {string}
17752
18133
  * @memberof GetHistoricalIdentityEvents200ResponseInnerV2025
17753
18134
  */
17754
- 'certificationName'?: string;
18135
+ 'identityId'?: string;
17755
18136
  /**
17756
- * the date ceritification was signed
17757
- * @type {string}
18137
+ *
18138
+ * @type {AccessItemAssociatedAccessItemV2025}
17758
18139
  * @memberof GetHistoricalIdentityEvents200ResponseInnerV2025
17759
18140
  */
17760
- 'signedDate'?: string;
18141
+ 'accessItem': AccessItemAssociatedAccessItemV2025;
17761
18142
  /**
17762
- * this field is deprecated and may go away
17763
- * @type {Array<CertifierResponseV2025>}
18143
+ *
18144
+ * @type {CorrelatedGovernanceEventV2025}
17764
18145
  * @memberof GetHistoricalIdentityEvents200ResponseInnerV2025
17765
18146
  */
17766
- 'certifiers'?: Array<CertifierResponseV2025>;
18147
+ 'governanceEvent': CorrelatedGovernanceEventV2025 | null;
17767
18148
  /**
17768
- * The list of identities who review this certification
17769
- * @type {Array<CertifierResponseV2025>}
18149
+ * the access item type
18150
+ * @type {string}
17770
18151
  * @memberof GetHistoricalIdentityEvents200ResponseInnerV2025
17771
18152
  */
17772
- 'reviewers'?: Array<CertifierResponseV2025>;
18153
+ 'accessItemType'?: GetHistoricalIdentityEvents200ResponseInnerV2025AccessItemTypeV2025;
17773
18154
  /**
17774
18155
  *
17775
- * @type {CertifierResponseV2025}
18156
+ * @type {Array<AttributeChangeV2025>}
17776
18157
  * @memberof GetHistoricalIdentityEvents200ResponseInnerV2025
17777
18158
  */
17778
- 'signer'?: CertifierResponseV2025;
18159
+ 'attributeChanges': Array<AttributeChangeV2025>;
18160
+ /**
18161
+ *
18162
+ * @type {AccessRequestResponse1V2025}
18163
+ * @memberof GetHistoricalIdentityEvents200ResponseInnerV2025
18164
+ */
18165
+ 'accessRequest': AccessRequestResponse1V2025;
17779
18166
  /**
17780
18167
  *
17781
18168
  * @type {AccountStatusChangedAccountV2025}
17782
18169
  * @memberof GetHistoricalIdentityEvents200ResponseInnerV2025
17783
18170
  */
17784
- 'account'?: AccountStatusChangedAccountV2025;
18171
+ 'account': AccountStatusChangedAccountV2025;
17785
18172
  /**
17786
18173
  *
17787
18174
  * @type {AccountStatusChangedStatusChangeV2025}
17788
18175
  * @memberof GetHistoricalIdentityEvents200ResponseInnerV2025
17789
18176
  */
17790
- 'statusChange'?: AccountStatusChangedStatusChangeV2025;
18177
+ 'statusChange': AccountStatusChangedStatusChangeV2025;
17791
18178
  }
18179
+ export declare const GetHistoricalIdentityEvents200ResponseInnerV2025AccessItemTypeV2025: {
18180
+ readonly Account: "account";
18181
+ readonly App: "app";
18182
+ readonly Entitlement: "entitlement";
18183
+ readonly Role: "role";
18184
+ readonly AccessProfile: "accessProfile";
18185
+ };
18186
+ export type GetHistoricalIdentityEvents200ResponseInnerV2025AccessItemTypeV2025 = typeof GetHistoricalIdentityEvents200ResponseInnerV2025AccessItemTypeV2025[keyof typeof GetHistoricalIdentityEvents200ResponseInnerV2025AccessItemTypeV2025];
17792
18187
  /**
17793
18188
  *
17794
18189
  * @export
@@ -17970,6 +18365,18 @@ export interface GetPersonalAccessTokenResponseV2025 {
17970
18365
  * @memberof GetPersonalAccessTokenResponseV2025
17971
18366
  */
17972
18367
  'managed'?: boolean;
18368
+ /**
18369
+ * Number of seconds an access token is valid when generated using this Personal Access Token. If no value is specified, the token will be created with the default value of 43200.
18370
+ * @type {number}
18371
+ * @memberof GetPersonalAccessTokenResponseV2025
18372
+ */
18373
+ 'accessTokenValiditySeconds'?: number;
18374
+ /**
18375
+ * Date and time, down to the millisecond, when this personal access token will expire. If not provided, the token will expire 6 months after its creation date. The value must be a valid date-time string between the current date and 6 months from the creation date.
18376
+ * @type {string}
18377
+ * @memberof GetPersonalAccessTokenResponseV2025
18378
+ */
18379
+ 'expirationDate'?: string;
17973
18380
  }
17974
18381
  /**
17975
18382
  *
@@ -18093,6 +18500,49 @@ export declare const GrantTypeV2025: {
18093
18500
  readonly RefreshToken: "REFRESH_TOKEN";
18094
18501
  };
18095
18502
  export type GrantTypeV2025 = typeof GrantTypeV2025[keyof typeof GrantTypeV2025];
18503
+ /**
18504
+ * A HierarchicalRightSet
18505
+ * @export
18506
+ * @interface HierarchicalRightSetV2025
18507
+ */
18508
+ export interface HierarchicalRightSetV2025 {
18509
+ /**
18510
+ * The unique identifier of the RightSet.
18511
+ * @type {string}
18512
+ * @memberof HierarchicalRightSetV2025
18513
+ */
18514
+ 'id'?: string;
18515
+ /**
18516
+ * The human-readable name of the RightSet.
18517
+ * @type {string}
18518
+ * @memberof HierarchicalRightSetV2025
18519
+ */
18520
+ 'name'?: string;
18521
+ /**
18522
+ * A human-readable description of the RightSet.
18523
+ * @type {string}
18524
+ * @memberof HierarchicalRightSetV2025
18525
+ */
18526
+ 'description'?: string | null;
18527
+ /**
18528
+ * The category of the RightSet.
18529
+ * @type {string}
18530
+ * @memberof HierarchicalRightSetV2025
18531
+ */
18532
+ 'category'?: string;
18533
+ /**
18534
+ *
18535
+ * @type {NestedConfigV2025}
18536
+ * @memberof HierarchicalRightSetV2025
18537
+ */
18538
+ 'nestedConfig'?: NestedConfigV2025;
18539
+ /**
18540
+ * List of child HierarchicalRightSets.
18541
+ * @type {Array<HierarchicalRightSetV2025>}
18542
+ * @memberof HierarchicalRightSetV2025
18543
+ */
18544
+ 'children'?: Array<HierarchicalRightSetV2025>;
18545
+ }
18096
18546
  /**
18097
18547
  * Defines the HTTP Authentication type. Additional values may be added in the future. If *NO_AUTH* is selected, no extra information will be in HttpConfig. If *BASIC_AUTH* is selected, HttpConfig will include BasicAuthConfig with Username and Password as strings. If *BEARER_TOKEN* is selected, HttpConfig will include BearerTokenAuthConfig with Token as string.
18098
18548
  * @export
@@ -18804,13 +19254,13 @@ export interface IdentityCertifiedV2025 {
18804
19254
  * @type {string}
18805
19255
  * @memberof IdentityCertifiedV2025
18806
19256
  */
18807
- 'certificationId'?: string;
19257
+ 'certificationId': string;
18808
19258
  /**
18809
19259
  * the certification item name
18810
19260
  * @type {string}
18811
19261
  * @memberof IdentityCertifiedV2025
18812
19262
  */
18813
- 'certificationName'?: string;
19263
+ 'certificationName': string;
18814
19264
  /**
18815
19265
  * the date ceritification was signed
18816
19266
  * @type {string}
@@ -18846,7 +19296,7 @@ export interface IdentityCertifiedV2025 {
18846
19296
  * @type {string}
18847
19297
  * @memberof IdentityCertifiedV2025
18848
19298
  */
18849
- 'dt'?: string;
19299
+ 'dateTime'?: string;
18850
19300
  }
18851
19301
  /**
18852
19302
  *
@@ -19727,6 +20177,25 @@ export interface IdentityEntitlementDetailsV2025 {
19727
20177
  */
19728
20178
  'accountTargets'?: Array<IdentityEntitlementDetailsAccountTargetV2025>;
19729
20179
  }
20180
+ /**
20181
+ *
20182
+ * @export
20183
+ * @interface IdentityEntitlementsV2025
20184
+ */
20185
+ export interface IdentityEntitlementsV2025 {
20186
+ /**
20187
+ *
20188
+ * @type {TaggedObjectDtoV2025}
20189
+ * @memberof IdentityEntitlementsV2025
20190
+ */
20191
+ 'objectRef'?: TaggedObjectDtoV2025;
20192
+ /**
20193
+ * Labels to be applied to object.
20194
+ * @type {Array<string>}
20195
+ * @memberof IdentityEntitlementsV2025
20196
+ */
20197
+ 'tags'?: Array<string>;
20198
+ }
19730
20199
  /**
19731
20200
  *
19732
20201
  * @export
@@ -21451,8 +21920,26 @@ export interface LifecycleStateV2025 {
21451
21920
  * @type {string}
21452
21921
  * @memberof LifecycleStateV2025
21453
21922
  */
21454
- 'identityState'?: string | null;
21923
+ 'identityState'?: LifecycleStateV2025IdentityStateV2025 | null;
21924
+ /**
21925
+ *
21926
+ * @type {AccessActionConfigurationV2025}
21927
+ * @memberof LifecycleStateV2025
21928
+ */
21929
+ 'accessActionConfiguration'?: AccessActionConfigurationV2025;
21930
+ /**
21931
+ * Priority level used to determine which profile to assign when a user exists in multiple profiles. Lower numeric values have higher priority. By default, new profiles are assigned the lowest priority. The assigned profile also controls access granted or removed during provisioning based on lifecycle state changes.
21932
+ * @type {number}
21933
+ * @memberof LifecycleStateV2025
21934
+ */
21935
+ 'priority'?: number | null;
21455
21936
  }
21937
+ export declare const LifecycleStateV2025IdentityStateV2025: {
21938
+ readonly Active: "ACTIVE";
21939
+ readonly InactiveShortTerm: "INACTIVE_SHORT_TERM";
21940
+ readonly InactiveLongTerm: "INACTIVE_LONG_TERM";
21941
+ };
21942
+ export type LifecycleStateV2025IdentityStateV2025 = typeof LifecycleStateV2025IdentityStateV2025[keyof typeof LifecycleStateV2025IdentityStateV2025];
21456
21943
  /**
21457
21944
  * Deleted lifecycle state.
21458
21945
  * @export
@@ -21678,10 +22165,125 @@ export interface ListFormInstancesByTenantResponseV2025 {
21678
22165
  'results'?: Array<FormInstanceResponseV2025>;
21679
22166
  }
21680
22167
  /**
21681
- * @type ListIdentityAccessItems200ResponseInnerV2025
22168
+ *
22169
+ * @export
22170
+ * @interface ListIdentityAccessItems200ResponseInnerV2025
22171
+ */
22172
+ export interface ListIdentityAccessItems200ResponseInnerV2025 {
22173
+ /**
22174
+ * the access item id
22175
+ * @type {string}
22176
+ * @memberof ListIdentityAccessItems200ResponseInnerV2025
22177
+ */
22178
+ 'id'?: string;
22179
+ /**
22180
+ * the access item type. entitlement in this case
22181
+ * @type {string}
22182
+ * @memberof ListIdentityAccessItems200ResponseInnerV2025
22183
+ */
22184
+ 'accessType'?: string;
22185
+ /**
22186
+ * the access item display name
22187
+ * @type {string}
22188
+ * @memberof ListIdentityAccessItems200ResponseInnerV2025
22189
+ */
22190
+ 'displayName'?: string;
22191
+ /**
22192
+ * the associated source name if it exists
22193
+ * @type {string}
22194
+ * @memberof ListIdentityAccessItems200ResponseInnerV2025
22195
+ */
22196
+ 'sourceName'?: string | null;
22197
+ /**
22198
+ * the entitlement attribute
22199
+ * @type {string}
22200
+ * @memberof ListIdentityAccessItems200ResponseInnerV2025
22201
+ */
22202
+ 'attribute': string;
22203
+ /**
22204
+ * the associated value
22205
+ * @type {string}
22206
+ * @memberof ListIdentityAccessItems200ResponseInnerV2025
22207
+ */
22208
+ 'value': string;
22209
+ /**
22210
+ * the type of entitlement
22211
+ * @type {string}
22212
+ * @memberof ListIdentityAccessItems200ResponseInnerV2025
22213
+ */
22214
+ 'type': string;
22215
+ /**
22216
+ * the description for the role
22217
+ * @type {string}
22218
+ * @memberof ListIdentityAccessItems200ResponseInnerV2025
22219
+ */
22220
+ 'description'?: string;
22221
+ /**
22222
+ * the id of the source
22223
+ * @type {string}
22224
+ * @memberof ListIdentityAccessItems200ResponseInnerV2025
22225
+ */
22226
+ 'sourceId'?: string;
22227
+ /**
22228
+ * indicates whether the access profile is standalone
22229
+ * @type {boolean}
22230
+ * @memberof ListIdentityAccessItems200ResponseInnerV2025
22231
+ */
22232
+ 'standalone': boolean | null;
22233
+ /**
22234
+ * indicates whether the entitlement is privileged
22235
+ * @type {boolean}
22236
+ * @memberof ListIdentityAccessItems200ResponseInnerV2025
22237
+ */
22238
+ 'privileged': boolean | null;
22239
+ /**
22240
+ * indicates whether the entitlement is cloud governed
22241
+ * @type {boolean}
22242
+ * @memberof ListIdentityAccessItems200ResponseInnerV2025
22243
+ */
22244
+ 'cloudGoverned': boolean | null;
22245
+ /**
22246
+ * the number of entitlements the account will create
22247
+ * @type {number}
22248
+ * @memberof ListIdentityAccessItems200ResponseInnerV2025
22249
+ */
22250
+ 'entitlementCount': number;
22251
+ /**
22252
+ * the list of app ids associated with the access profile
22253
+ * @type {Array<AccessItemAccessProfileResponseAppRefsInnerV2025>}
22254
+ * @memberof ListIdentityAccessItems200ResponseInnerV2025
22255
+ */
22256
+ 'appRefs': Array<AccessItemAccessProfileResponseAppRefsInnerV2025>;
22257
+ /**
22258
+ * the date the role is no longer assigned to the specified identity
22259
+ * @type {string}
22260
+ * @memberof ListIdentityAccessItems200ResponseInnerV2025
22261
+ */
22262
+ 'removeDate'?: string;
22263
+ /**
22264
+ * indicates whether the role is revocable
22265
+ * @type {boolean}
22266
+ * @memberof ListIdentityAccessItems200ResponseInnerV2025
22267
+ */
22268
+ 'revocable': boolean;
22269
+ /**
22270
+ * the native identifier used to uniquely identify an acccount
22271
+ * @type {string}
22272
+ * @memberof ListIdentityAccessItems200ResponseInnerV2025
22273
+ */
22274
+ 'nativeIdentity': string;
22275
+ /**
22276
+ * the app role id
22277
+ * @type {string}
22278
+ * @memberof ListIdentityAccessItems200ResponseInnerV2025
22279
+ */
22280
+ 'appRoleId': string | null;
22281
+ }
22282
+ /**
22283
+ * @type ListIdentitySnapshotAccessItems200ResponseInnerV2025
21682
22284
  * @export
21683
22285
  */
21684
- export type ListIdentityAccessItems200ResponseInnerV2025 = AccessItemAccessProfileResponseV2025 | AccessItemAccountResponseV2025 | AccessItemAppResponseV2025 | AccessItemEntitlementResponseV2025 | AccessItemRoleResponseV2025;
22286
+ export type ListIdentitySnapshotAccessItems200ResponseInnerV2025 = AccessItemAccessProfileResponseV2025 | AccessItemAccountResponseV2025 | AccessItemAppResponseV2025 | AccessItemEntitlementResponseV2025 | AccessItemRoleResponseV2025;
21685
22287
  /**
21686
22288
  *
21687
22289
  * @export
@@ -22458,7 +23060,7 @@ export type MachineAccountV2025ClassificationMethodV2025 = typeof MachineAccount
22458
23060
  */
22459
23061
  export interface MachineClassificationConfigV2025 {
22460
23062
  /**
22461
- * Indicates if the Classification is enabled for a Source
23063
+ * Indicates whether Classification is enabled for a Source
22462
23064
  * @type {boolean}
22463
23065
  * @memberof MachineClassificationConfigV2025
22464
23066
  */
@@ -22470,19 +23072,19 @@ export interface MachineClassificationConfigV2025 {
22470
23072
  */
22471
23073
  'classificationMethod'?: MachineClassificationConfigV2025ClassificationMethodV2025;
22472
23074
  /**
22473
- * A classification criteria object
22474
- * @type {string}
23075
+ *
23076
+ * @type {MachineClassificationCriteriaLevel1V2025}
22475
23077
  * @memberof MachineClassificationConfigV2025
22476
23078
  */
22477
- 'criteria'?: string | null;
23079
+ 'criteria'?: MachineClassificationCriteriaLevel1V2025;
22478
23080
  /**
22479
- * Time when the config was created
23081
+ * Date the config was created
22480
23082
  * @type {string}
22481
23083
  * @memberof MachineClassificationConfigV2025
22482
23084
  */
22483
23085
  'created'?: string;
22484
23086
  /**
22485
- * Time when the config was last updated
23087
+ * Date the config was last updated
22486
23088
  * @type {string}
22487
23089
  * @memberof MachineClassificationConfigV2025
22488
23090
  */
@@ -22490,8 +23092,153 @@ export interface MachineClassificationConfigV2025 {
22490
23092
  }
22491
23093
  export declare const MachineClassificationConfigV2025ClassificationMethodV2025: {
22492
23094
  readonly Source: "SOURCE";
23095
+ readonly Criteria: "CRITERIA";
22493
23096
  };
22494
23097
  export type MachineClassificationConfigV2025ClassificationMethodV2025 = typeof MachineClassificationConfigV2025ClassificationMethodV2025[keyof typeof MachineClassificationConfigV2025ClassificationMethodV2025];
23098
+ /**
23099
+ *
23100
+ * @export
23101
+ * @interface MachineClassificationCriteriaLevel1V2025
23102
+ */
23103
+ export interface MachineClassificationCriteriaLevel1V2025 {
23104
+ /**
23105
+ *
23106
+ * @type {MachineClassificationCriteriaOperationV2025}
23107
+ * @memberof MachineClassificationCriteriaLevel1V2025
23108
+ */
23109
+ 'operation'?: MachineClassificationCriteriaOperationV2025;
23110
+ /**
23111
+ * Indicates whether case matters when evaluating the criteria
23112
+ * @type {boolean}
23113
+ * @memberof MachineClassificationCriteriaLevel1V2025
23114
+ */
23115
+ 'caseSensitive'?: boolean;
23116
+ /**
23117
+ * The data type of the attribute being evaluated
23118
+ * @type {string}
23119
+ * @memberof MachineClassificationCriteriaLevel1V2025
23120
+ */
23121
+ 'dataType'?: string | null;
23122
+ /**
23123
+ * The attribute to evaluate in the classification criteria
23124
+ * @type {string}
23125
+ * @memberof MachineClassificationCriteriaLevel1V2025
23126
+ */
23127
+ 'attribute'?: string | null;
23128
+ /**
23129
+ * The value to compare against the attribute in the classification criteria
23130
+ * @type {string}
23131
+ * @memberof MachineClassificationCriteriaLevel1V2025
23132
+ */
23133
+ 'value'?: string | null;
23134
+ /**
23135
+ * An array of child classification criteria objects
23136
+ * @type {Array<MachineClassificationCriteriaLevel2V2025>}
23137
+ * @memberof MachineClassificationCriteriaLevel1V2025
23138
+ */
23139
+ 'children'?: Array<MachineClassificationCriteriaLevel2V2025> | null;
23140
+ }
23141
+ /**
23142
+ *
23143
+ * @export
23144
+ * @interface MachineClassificationCriteriaLevel2V2025
23145
+ */
23146
+ export interface MachineClassificationCriteriaLevel2V2025 {
23147
+ /**
23148
+ *
23149
+ * @type {MachineClassificationCriteriaOperationV2025}
23150
+ * @memberof MachineClassificationCriteriaLevel2V2025
23151
+ */
23152
+ 'operation'?: MachineClassificationCriteriaOperationV2025;
23153
+ /**
23154
+ * Indicates whether case matters when evaluating the criteria
23155
+ * @type {boolean}
23156
+ * @memberof MachineClassificationCriteriaLevel2V2025
23157
+ */
23158
+ 'caseSensitive'?: boolean;
23159
+ /**
23160
+ * The data type of the attribute being evaluated
23161
+ * @type {string}
23162
+ * @memberof MachineClassificationCriteriaLevel2V2025
23163
+ */
23164
+ 'dataType'?: string | null;
23165
+ /**
23166
+ * The attribute to evaluate in the classification criteria
23167
+ * @type {string}
23168
+ * @memberof MachineClassificationCriteriaLevel2V2025
23169
+ */
23170
+ 'attribute'?: string | null;
23171
+ /**
23172
+ * The value to compare against the attribute in the classification criteria
23173
+ * @type {string}
23174
+ * @memberof MachineClassificationCriteriaLevel2V2025
23175
+ */
23176
+ 'value'?: string | null;
23177
+ /**
23178
+ * An array of child classification criteria objects
23179
+ * @type {Array<MachineClassificationCriteriaLevel3V2025>}
23180
+ * @memberof MachineClassificationCriteriaLevel2V2025
23181
+ */
23182
+ 'children'?: Array<MachineClassificationCriteriaLevel3V2025> | null;
23183
+ }
23184
+ /**
23185
+ *
23186
+ * @export
23187
+ * @interface MachineClassificationCriteriaLevel3V2025
23188
+ */
23189
+ export interface MachineClassificationCriteriaLevel3V2025 {
23190
+ /**
23191
+ *
23192
+ * @type {MachineClassificationCriteriaOperationV2025}
23193
+ * @memberof MachineClassificationCriteriaLevel3V2025
23194
+ */
23195
+ 'operation'?: MachineClassificationCriteriaOperationV2025;
23196
+ /**
23197
+ * Indicates whether or not case matters when evaluating the criteria
23198
+ * @type {boolean}
23199
+ * @memberof MachineClassificationCriteriaLevel3V2025
23200
+ */
23201
+ 'caseSensitive'?: boolean;
23202
+ /**
23203
+ * The data type of the attribute being evaluated
23204
+ * @type {string}
23205
+ * @memberof MachineClassificationCriteriaLevel3V2025
23206
+ */
23207
+ 'dataType'?: string | null;
23208
+ /**
23209
+ * The attribute to evaluate in the classification criteria
23210
+ * @type {string}
23211
+ * @memberof MachineClassificationCriteriaLevel3V2025
23212
+ */
23213
+ 'attribute'?: string | null;
23214
+ /**
23215
+ * The value to compare against the attribute in the classification criteria
23216
+ * @type {string}
23217
+ * @memberof MachineClassificationCriteriaLevel3V2025
23218
+ */
23219
+ 'value'?: string | null;
23220
+ /**
23221
+ * An array of child classification criteria objects
23222
+ * @type {Array<string>}
23223
+ * @memberof MachineClassificationCriteriaLevel3V2025
23224
+ */
23225
+ 'children'?: Array<string> | null;
23226
+ }
23227
+ /**
23228
+ * An operation to perform on the classification criteria
23229
+ * @export
23230
+ * @enum {string}
23231
+ */
23232
+ export declare const MachineClassificationCriteriaOperationV2025: {
23233
+ readonly Equals: "EQUALS";
23234
+ readonly NotEquals: "NOT_EQUALS";
23235
+ readonly StartsWith: "STARTS_WITH";
23236
+ readonly EndsWith: "ENDS_WITH";
23237
+ readonly Contains: "CONTAINS";
23238
+ readonly And: "AND";
23239
+ readonly Or: "OR";
23240
+ };
23241
+ export type MachineClassificationCriteriaOperationV2025 = typeof MachineClassificationCriteriaOperationV2025[keyof typeof MachineClassificationCriteriaOperationV2025];
22495
23242
  /**
22496
23243
  * The owner configuration associated to the machine identity
22497
23244
  * @export
@@ -24571,6 +25318,37 @@ export interface NestedAggregationV2025 {
24571
25318
  */
24572
25319
  'type': string;
24573
25320
  }
25321
+ /**
25322
+ * A NestedConfig
25323
+ * @export
25324
+ * @interface NestedConfigV2025
25325
+ */
25326
+ export interface NestedConfigV2025 {
25327
+ /**
25328
+ * The unique identifier of the ancestor RightSet.
25329
+ * @type {string}
25330
+ * @memberof NestedConfigV2025
25331
+ */
25332
+ 'ancestorId'?: string;
25333
+ /**
25334
+ * The depth level of the configuration.
25335
+ * @type {number}
25336
+ * @memberof NestedConfigV2025
25337
+ */
25338
+ 'depth'?: number;
25339
+ /**
25340
+ * The unique identifier of the parent RightSet.
25341
+ * @type {string}
25342
+ * @memberof NestedConfigV2025
25343
+ */
25344
+ 'parentId'?: string | null;
25345
+ /**
25346
+ * List of unique identifiers for child configurations.
25347
+ * @type {Array<string>}
25348
+ * @memberof NestedConfigV2025
25349
+ */
25350
+ 'childrenIds'?: Array<string>;
25351
+ }
24574
25352
  /**
24575
25353
  *
24576
25354
  * @export
@@ -28031,7 +28809,7 @@ export interface ProvisioningCompletedV2025 {
28031
28809
  */
28032
28810
  'requester'?: ProvisioningCompletedRequesterV2025 | null;
28033
28811
  /**
28034
- * A list of provisioning instructions to perform on an account-by-account basis.
28812
+ * A list of provisioning instructions to be executed on a per-account basis. The order in which operations are executed may not always be predictable.
28035
28813
  * @type {Array<ProvisioningCompletedAccountRequestsInnerV2025>}
28036
28814
  * @memberof ProvisioningCompletedV2025
28037
28815
  */
@@ -30946,6 +31724,79 @@ export interface RightPadV2025 {
30946
31724
  [key: string]: any;
30947
31725
  };
30948
31726
  }
31727
+ /**
31728
+ * A RightSetDTO represents a collection of rights that assigned to capability or scope, enabling them to possess specific rights to access corresponding APIs.
31729
+ * @export
31730
+ * @interface RightSetDTOV2025
31731
+ */
31732
+ export interface RightSetDTOV2025 {
31733
+ /**
31734
+ * The unique identifier of the RightSet.
31735
+ * @type {string}
31736
+ * @memberof RightSetDTOV2025
31737
+ */
31738
+ 'id'?: string;
31739
+ /**
31740
+ * The human-readable name of the RightSet.
31741
+ * @type {string}
31742
+ * @memberof RightSetDTOV2025
31743
+ */
31744
+ 'name'?: string;
31745
+ /**
31746
+ * A human-readable description of the RightSet.
31747
+ * @type {string}
31748
+ * @memberof RightSetDTOV2025
31749
+ */
31750
+ 'description'?: string;
31751
+ /**
31752
+ * The category of the RightSet.
31753
+ * @type {string}
31754
+ * @memberof RightSetDTOV2025
31755
+ */
31756
+ 'category'?: string;
31757
+ /**
31758
+ * Right is the most granular unit that determines specific API permissions, this is a list of rights associated with the RightSet.
31759
+ * @type {Array<string>}
31760
+ * @memberof RightSetDTOV2025
31761
+ */
31762
+ 'rights'?: Array<string>;
31763
+ /**
31764
+ * List of unique identifiers for related RightSets, current RightSet contains rights from these RightSets.
31765
+ * @type {Array<string>}
31766
+ * @memberof RightSetDTOV2025
31767
+ */
31768
+ 'rightSetIds'?: Array<string>;
31769
+ /**
31770
+ * List of unique identifiers for UI-assignable child RightSets, used to build UI components.
31771
+ * @type {Array<string>}
31772
+ * @memberof RightSetDTOV2025
31773
+ */
31774
+ 'uiAssignableChildRightSetIds'?: Array<string>;
31775
+ /**
31776
+ * Indicates whether the RightSet is UI-assignable.
31777
+ * @type {boolean}
31778
+ * @memberof RightSetDTOV2025
31779
+ */
31780
+ 'uiAssignable'?: boolean;
31781
+ /**
31782
+ * The translated name of the RightSet.
31783
+ * @type {string}
31784
+ * @memberof RightSetDTOV2025
31785
+ */
31786
+ 'translatedName'?: string;
31787
+ /**
31788
+ * The translated description of the RightSet.
31789
+ * @type {string}
31790
+ * @memberof RightSetDTOV2025
31791
+ */
31792
+ 'translatedDescription'?: string | null;
31793
+ /**
31794
+ * The unique identifier of the parent RightSet for UI Assignable RightSet.
31795
+ * @type {string}
31796
+ * @memberof RightSetDTOV2025
31797
+ */
31798
+ 'parentId'?: string | null;
31799
+ }
30949
31800
  /**
30950
31801
  * The identity that performed the assignment. This could be blank or system
30951
31802
  * @export
@@ -36798,6 +37649,35 @@ export interface SodPolicyConflictingAccessCriteriaV2025 {
36798
37649
  */
36799
37650
  'rightCriteria'?: AccessCriteriaV2025;
36800
37651
  }
37652
+ /**
37653
+ * SOD policy.
37654
+ * @export
37655
+ * @interface SodPolicyDto1V2025
37656
+ */
37657
+ export interface SodPolicyDto1V2025 {
37658
+ /**
37659
+ * SOD policy DTO type.
37660
+ * @type {string}
37661
+ * @memberof SodPolicyDto1V2025
37662
+ */
37663
+ 'type'?: SodPolicyDto1V2025TypeV2025;
37664
+ /**
37665
+ * SOD policy ID.
37666
+ * @type {string}
37667
+ * @memberof SodPolicyDto1V2025
37668
+ */
37669
+ 'id'?: string;
37670
+ /**
37671
+ * SOD policy display name.
37672
+ * @type {string}
37673
+ * @memberof SodPolicyDto1V2025
37674
+ */
37675
+ 'name'?: string;
37676
+ }
37677
+ export declare const SodPolicyDto1V2025TypeV2025: {
37678
+ readonly SodPolicy: "SOD_POLICY";
37679
+ };
37680
+ export type SodPolicyDto1V2025TypeV2025 = typeof SodPolicyDto1V2025TypeV2025[keyof typeof SodPolicyDto1V2025TypeV2025];
36801
37681
  /**
36802
37682
  * SOD policy.
36803
37683
  * @export
@@ -37129,10 +38009,10 @@ export interface SodViolationCheckResultV2025 {
37129
38009
  'violationContexts'?: Array<SodViolationContextV2025> | null;
37130
38010
  /**
37131
38011
  * A list of the SOD policies that were violated.
37132
- * @type {Array<SodPolicyDtoV2025>}
38012
+ * @type {Array<SodPolicyDto1V2025>}
37133
38013
  * @memberof SodViolationCheckResultV2025
37134
38014
  */
37135
- 'violatedPolicies'?: Array<SodPolicyDtoV2025> | null;
38015
+ 'violatedPolicies'?: Array<SodPolicyDto1V2025> | null;
37136
38016
  }
37137
38017
  /**
37138
38018
  * An object referencing an SOD violation check
@@ -37223,10 +38103,10 @@ export interface SodViolationContextConflictingAccessCriteriaV2025 {
37223
38103
  export interface SodViolationContextV2025 {
37224
38104
  /**
37225
38105
  *
37226
- * @type {SodPolicyDtoV2025}
38106
+ * @type {SodPolicyDto1V2025}
37227
38107
  * @memberof SodViolationContextV2025
37228
38108
  */
37229
- 'policy'?: SodPolicyDtoV2025;
38109
+ 'policy'?: SodPolicyDto1V2025;
37230
38110
  /**
37231
38111
  *
37232
38112
  * @type {SodViolationContextConflictingAccessCriteriaV2025}
@@ -41993,6 +42873,170 @@ export interface UserAppV2025 {
41993
42873
  */
41994
42874
  'owner'?: UserAppOwnerV2025;
41995
42875
  }
42876
+ /**
42877
+ * It represents a summary of a user level publish operation, including its metadata and status.
42878
+ * @export
42879
+ * @interface UserLevelPublishSummaryV2025
42880
+ */
42881
+ export interface UserLevelPublishSummaryV2025 {
42882
+ /**
42883
+ * The unique identifier of the UserLevel.
42884
+ * @type {string}
42885
+ * @memberof UserLevelPublishSummaryV2025
42886
+ */
42887
+ 'userLevelId'?: string;
42888
+ /**
42889
+ * Indicates whether the API call triggered a publish operation.
42890
+ * @type {boolean}
42891
+ * @memberof UserLevelPublishSummaryV2025
42892
+ */
42893
+ 'publish'?: boolean;
42894
+ /**
42895
+ * The status of the UserLevel publish operation.
42896
+ * @type {string}
42897
+ * @memberof UserLevelPublishSummaryV2025
42898
+ */
42899
+ 'status'?: string;
42900
+ /**
42901
+ * The last modification timestamp of the UserLevel.
42902
+ * @type {string}
42903
+ * @memberof UserLevelPublishSummaryV2025
42904
+ */
42905
+ 'modified'?: string;
42906
+ }
42907
+ /**
42908
+ * Payload containing details for creating a custom user level.
42909
+ * @export
42910
+ * @interface UserLevelRequestV2025
42911
+ */
42912
+ export interface UserLevelRequestV2025 {
42913
+ /**
42914
+ * The name of the user level.
42915
+ * @type {string}
42916
+ * @memberof UserLevelRequestV2025
42917
+ */
42918
+ 'name': string;
42919
+ /**
42920
+ * A brief description of the user level.
42921
+ * @type {string}
42922
+ * @memberof UserLevelRequestV2025
42923
+ */
42924
+ 'description': string;
42925
+ /**
42926
+ *
42927
+ * @type {BaseReferenceDtoV2025}
42928
+ * @memberof UserLevelRequestV2025
42929
+ */
42930
+ 'owner': BaseReferenceDtoV2025;
42931
+ /**
42932
+ * A list of rights associated with the user level.
42933
+ * @type {Array<string>}
42934
+ * @memberof UserLevelRequestV2025
42935
+ */
42936
+ 'rightSets'?: Array<string>;
42937
+ }
42938
+ /**
42939
+ * It represents a summary of a user level, including its metadata, attributes, and associated properties.
42940
+ * @export
42941
+ * @interface UserLevelSummaryDTOV2025
42942
+ */
42943
+ export interface UserLevelSummaryDTOV2025 {
42944
+ /**
42945
+ * The unique identifier of the UserLevel.
42946
+ * @type {string}
42947
+ * @memberof UserLevelSummaryDTOV2025
42948
+ */
42949
+ 'id'?: string;
42950
+ /**
42951
+ * The human-readable name of the UserLevel.
42952
+ * @type {string}
42953
+ * @memberof UserLevelSummaryDTOV2025
42954
+ */
42955
+ 'name'?: string;
42956
+ /**
42957
+ * A human-readable description of the UserLevel.
42958
+ * @type {string}
42959
+ * @memberof UserLevelSummaryDTOV2025
42960
+ */
42961
+ 'description'?: string | null;
42962
+ /**
42963
+ * The legacy group associated with the UserLevel, used for backward compatibility for the UserLevel id.
42964
+ * @type {string}
42965
+ * @memberof UserLevelSummaryDTOV2025
42966
+ */
42967
+ 'legacyGroup'?: string | null;
42968
+ /**
42969
+ * List of RightSets associated with the UserLevel.
42970
+ * @type {Array<RightSetDTOV2025>}
42971
+ * @memberof UserLevelSummaryDTOV2025
42972
+ */
42973
+ 'rightSets'?: Array<RightSetDTOV2025>;
42974
+ /**
42975
+ * Indicates whether the UserLevel is custom.
42976
+ * @type {boolean}
42977
+ * @memberof UserLevelSummaryDTOV2025
42978
+ */
42979
+ 'custom'?: boolean;
42980
+ /**
42981
+ * Indicates whether the UserLevel is admin-assignable.
42982
+ * @type {boolean}
42983
+ * @memberof UserLevelSummaryDTOV2025
42984
+ */
42985
+ 'adminAssignable'?: boolean;
42986
+ /**
42987
+ * The translated name of the UserLevel.
42988
+ * @type {string}
42989
+ * @memberof UserLevelSummaryDTOV2025
42990
+ */
42991
+ 'translatedName'?: string | null;
42992
+ /**
42993
+ * The translated grant message for the UserLevel.
42994
+ * @type {string}
42995
+ * @memberof UserLevelSummaryDTOV2025
42996
+ */
42997
+ 'translatedGrant'?: string | null;
42998
+ /**
42999
+ * The translated remove message for the UserLevel.
43000
+ * @type {string}
43001
+ * @memberof UserLevelSummaryDTOV2025
43002
+ */
43003
+ 'translatedRemove'?: string | null;
43004
+ /**
43005
+ *
43006
+ * @type {BaseReferenceDtoV2025}
43007
+ * @memberof UserLevelSummaryDTOV2025
43008
+ */
43009
+ 'owner'?: BaseReferenceDtoV2025;
43010
+ /**
43011
+ * The status of the UserLevel.
43012
+ * @type {string}
43013
+ * @memberof UserLevelSummaryDTOV2025
43014
+ */
43015
+ 'status'?: UserLevelSummaryDTOV2025StatusV2025;
43016
+ /**
43017
+ * The creation timestamp of the UserLevel.
43018
+ * @type {string}
43019
+ * @memberof UserLevelSummaryDTOV2025
43020
+ */
43021
+ 'created'?: string;
43022
+ /**
43023
+ * The last modification timestamp of the UserLevel.
43024
+ * @type {string}
43025
+ * @memberof UserLevelSummaryDTOV2025
43026
+ */
43027
+ 'modified'?: string;
43028
+ /**
43029
+ * The count of associated identities for the UserLevel.
43030
+ * @type {number}
43031
+ * @memberof UserLevelSummaryDTOV2025
43032
+ */
43033
+ 'associatedIdentitiesCount'?: number | null;
43034
+ }
43035
+ export declare const UserLevelSummaryDTOV2025StatusV2025: {
43036
+ readonly Active: "ACTIVE";
43037
+ readonly Draft: "DRAFT";
43038
+ };
43039
+ export type UserLevelSummaryDTOV2025StatusV2025 = typeof UserLevelSummaryDTOV2025StatusV2025[keyof typeof UserLevelSummaryDTOV2025StatusV2025];
41996
43040
  /**
41997
43041
  *
41998
43042
  * @export
@@ -43854,39 +44898,66 @@ export declare const AccessModelMetadataV2025ApiAxiosParamCreator: (configuratio
43854
44898
  * Get single Access Model Metadata Attribute
43855
44899
  * @summary Get access model metadata attribute
43856
44900
  * @param {string} key Technical name of the Attribute.
43857
- * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
43858
44901
  * @param {*} [axiosOptions] Override http request option.
43859
44902
  * @throws {RequiredError}
43860
44903
  */
43861
- getAccessModelMetadataAttribute: (key: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
44904
+ getAccessModelMetadataAttribute: (key: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
43862
44905
  /**
43863
44906
  * Get single Access Model Metadata Attribute Value
43864
44907
  * @summary Get access model metadata value
43865
44908
  * @param {string} key Technical name of the Attribute.
43866
44909
  * @param {string} value Technical name of the Attribute value.
43867
- * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
43868
44910
  * @param {*} [axiosOptions] Override http request option.
43869
44911
  * @throws {RequiredError}
43870
44912
  */
43871
- getAccessModelMetadataAttributeValue: (key: string, value: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
44913
+ getAccessModelMetadataAttributeValue: (key: string, value: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
43872
44914
  /**
43873
44915
  * Get a list of Access Model Metadata Attributes
43874
44916
  * @summary List access model metadata attributes
43875
- * @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: **name**: *eq* **type**: *eq* **status**: *eq* **objectTypes**: *eq* Supported composite operators: *and*
43876
- * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
44917
+ * @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: **key**: *eq* **name**: *eq* **type**: *eq* **status**: *eq* **objectTypes**: *eq* **Supported composite operators**: *and*
44918
+ * @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, key**
44919
+ * @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.
44920
+ * @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.
44921
+ * @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.
43877
44922
  * @param {*} [axiosOptions] Override http request option.
43878
44923
  * @throws {RequiredError}
43879
44924
  */
43880
- listAccessModelMetadataAttribute: (filters?: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
44925
+ listAccessModelMetadataAttribute: (filters?: string, sorters?: string, offset?: number, limit?: number, count?: boolean, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
43881
44926
  /**
43882
44927
  * Get a list of Access Model Metadata Attribute Values
43883
44928
  * @summary List access model metadata values
43884
44929
  * @param {string} key Technical name of the Attribute.
43885
- * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
44930
+ * @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.
44931
+ * @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.
44932
+ * @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.
43886
44933
  * @param {*} [axiosOptions] Override http request option.
43887
44934
  * @throws {RequiredError}
43888
44935
  */
43889
- listAccessModelMetadataAttributeValue: (key: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
44936
+ listAccessModelMetadataAttributeValue: (key: string, offset?: number, limit?: number, count?: boolean, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
44937
+ /**
44938
+ * Bulk update Access Model Metadata Attribute Values using a filter
44939
+ * @summary Metadata Attribute update by filter
44940
+ * @param {EntitlementAttributeBulkUpdateFilterRequestV2025} entitlementAttributeBulkUpdateFilterRequestV2025 Attribute metadata bulk update request body.
44941
+ * @param {*} [axiosOptions] Override http request option.
44942
+ * @throws {RequiredError}
44943
+ */
44944
+ updateAccessModelMetadataByFilter: (entitlementAttributeBulkUpdateFilterRequestV2025: EntitlementAttributeBulkUpdateFilterRequestV2025, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
44945
+ /**
44946
+ * Bulk update Access Model Metadata Attribute Values using ids.
44947
+ * @summary Metadata Attribute update by ids
44948
+ * @param {EntitlementAttributeBulkUpdateIdsRequestV2025} entitlementAttributeBulkUpdateIdsRequestV2025 Attribute metadata bulk update request body.
44949
+ * @param {*} [axiosOptions] Override http request option.
44950
+ * @throws {RequiredError}
44951
+ */
44952
+ updateAccessModelMetadataByIds: (entitlementAttributeBulkUpdateIdsRequestV2025: EntitlementAttributeBulkUpdateIdsRequestV2025, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
44953
+ /**
44954
+ * Bulk update Access Model Metadata Attribute Values using a query
44955
+ * @summary Metadata Attribute update by query
44956
+ * @param {EntitlementAttributeBulkUpdateQueryRequestV2025} entitlementAttributeBulkUpdateQueryRequestV2025 Attribute metadata bulk update request body.
44957
+ * @param {*} [axiosOptions] Override http request option.
44958
+ * @throws {RequiredError}
44959
+ */
44960
+ updateAccessModelMetadataByQuery: (entitlementAttributeBulkUpdateQueryRequestV2025: EntitlementAttributeBulkUpdateQueryRequestV2025, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
43890
44961
  };
43891
44962
  /**
43892
44963
  * AccessModelMetadataV2025Api - functional programming interface
@@ -43897,39 +44968,66 @@ export declare const AccessModelMetadataV2025ApiFp: (configuration?: Configurati
43897
44968
  * Get single Access Model Metadata Attribute
43898
44969
  * @summary Get access model metadata attribute
43899
44970
  * @param {string} key Technical name of the Attribute.
43900
- * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
43901
44971
  * @param {*} [axiosOptions] Override http request option.
43902
44972
  * @throws {RequiredError}
43903
44973
  */
43904
- getAccessModelMetadataAttribute(key: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AttributeDTOV2025>>;
44974
+ getAccessModelMetadataAttribute(key: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AttributeDTOV2025>>;
43905
44975
  /**
43906
44976
  * Get single Access Model Metadata Attribute Value
43907
44977
  * @summary Get access model metadata value
43908
44978
  * @param {string} key Technical name of the Attribute.
43909
44979
  * @param {string} value Technical name of the Attribute value.
43910
- * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
43911
44980
  * @param {*} [axiosOptions] Override http request option.
43912
44981
  * @throws {RequiredError}
43913
44982
  */
43914
- getAccessModelMetadataAttributeValue(key: string, value: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AttributeValueDTOV2025>>;
44983
+ getAccessModelMetadataAttributeValue(key: string, value: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AttributeValueDTOV2025>>;
43915
44984
  /**
43916
44985
  * Get a list of Access Model Metadata Attributes
43917
44986
  * @summary List access model metadata attributes
43918
- * @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: **name**: *eq* **type**: *eq* **status**: *eq* **objectTypes**: *eq* Supported composite operators: *and*
43919
- * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
44987
+ * @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: **key**: *eq* **name**: *eq* **type**: *eq* **status**: *eq* **objectTypes**: *eq* **Supported composite operators**: *and*
44988
+ * @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, key**
44989
+ * @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.
44990
+ * @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.
44991
+ * @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.
43920
44992
  * @param {*} [axiosOptions] Override http request option.
43921
44993
  * @throws {RequiredError}
43922
44994
  */
43923
- listAccessModelMetadataAttribute(filters?: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<AttributeDTOV2025>>>;
44995
+ listAccessModelMetadataAttribute(filters?: string, sorters?: string, offset?: number, limit?: number, count?: boolean, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<AttributeDTOV2025>>>;
43924
44996
  /**
43925
44997
  * Get a list of Access Model Metadata Attribute Values
43926
44998
  * @summary List access model metadata values
43927
44999
  * @param {string} key Technical name of the Attribute.
43928
- * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
45000
+ * @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.
45001
+ * @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.
45002
+ * @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.
43929
45003
  * @param {*} [axiosOptions] Override http request option.
43930
45004
  * @throws {RequiredError}
43931
45005
  */
43932
- listAccessModelMetadataAttributeValue(key: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<AttributeValueDTOV2025>>>;
45006
+ listAccessModelMetadataAttributeValue(key: string, offset?: number, limit?: number, count?: boolean, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<AttributeValueDTOV2025>>>;
45007
+ /**
45008
+ * Bulk update Access Model Metadata Attribute Values using a filter
45009
+ * @summary Metadata Attribute update by filter
45010
+ * @param {EntitlementAttributeBulkUpdateFilterRequestV2025} entitlementAttributeBulkUpdateFilterRequestV2025 Attribute metadata bulk update request body.
45011
+ * @param {*} [axiosOptions] Override http request option.
45012
+ * @throws {RequiredError}
45013
+ */
45014
+ updateAccessModelMetadataByFilter(entitlementAttributeBulkUpdateFilterRequestV2025: EntitlementAttributeBulkUpdateFilterRequestV2025, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AccessModelMetadataBulkUpdateResponseV2025>>;
45015
+ /**
45016
+ * Bulk update Access Model Metadata Attribute Values using ids.
45017
+ * @summary Metadata Attribute update by ids
45018
+ * @param {EntitlementAttributeBulkUpdateIdsRequestV2025} entitlementAttributeBulkUpdateIdsRequestV2025 Attribute metadata bulk update request body.
45019
+ * @param {*} [axiosOptions] Override http request option.
45020
+ * @throws {RequiredError}
45021
+ */
45022
+ updateAccessModelMetadataByIds(entitlementAttributeBulkUpdateIdsRequestV2025: EntitlementAttributeBulkUpdateIdsRequestV2025, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AccessModelMetadataBulkUpdateResponseV2025>>;
45023
+ /**
45024
+ * Bulk update Access Model Metadata Attribute Values using a query
45025
+ * @summary Metadata Attribute update by query
45026
+ * @param {EntitlementAttributeBulkUpdateQueryRequestV2025} entitlementAttributeBulkUpdateQueryRequestV2025 Attribute metadata bulk update request body.
45027
+ * @param {*} [axiosOptions] Override http request option.
45028
+ * @throws {RequiredError}
45029
+ */
45030
+ updateAccessModelMetadataByQuery(entitlementAttributeBulkUpdateQueryRequestV2025: EntitlementAttributeBulkUpdateQueryRequestV2025, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AccessModelMetadataBulkUpdateResponseV2025>>;
43933
45031
  };
43934
45032
  /**
43935
45033
  * AccessModelMetadataV2025Api - factory interface
@@ -43968,6 +45066,30 @@ export declare const AccessModelMetadataV2025ApiFactory: (configuration?: Config
43968
45066
  * @throws {RequiredError}
43969
45067
  */
43970
45068
  listAccessModelMetadataAttributeValue(requestParameters: AccessModelMetadataV2025ApiListAccessModelMetadataAttributeValueRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<AttributeValueDTOV2025>>;
45069
+ /**
45070
+ * Bulk update Access Model Metadata Attribute Values using a filter
45071
+ * @summary Metadata Attribute update by filter
45072
+ * @param {AccessModelMetadataV2025ApiUpdateAccessModelMetadataByFilterRequest} requestParameters Request parameters.
45073
+ * @param {*} [axiosOptions] Override http request option.
45074
+ * @throws {RequiredError}
45075
+ */
45076
+ updateAccessModelMetadataByFilter(requestParameters: AccessModelMetadataV2025ApiUpdateAccessModelMetadataByFilterRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<AccessModelMetadataBulkUpdateResponseV2025>;
45077
+ /**
45078
+ * Bulk update Access Model Metadata Attribute Values using ids.
45079
+ * @summary Metadata Attribute update by ids
45080
+ * @param {AccessModelMetadataV2025ApiUpdateAccessModelMetadataByIdsRequest} requestParameters Request parameters.
45081
+ * @param {*} [axiosOptions] Override http request option.
45082
+ * @throws {RequiredError}
45083
+ */
45084
+ updateAccessModelMetadataByIds(requestParameters: AccessModelMetadataV2025ApiUpdateAccessModelMetadataByIdsRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<AccessModelMetadataBulkUpdateResponseV2025>;
45085
+ /**
45086
+ * Bulk update Access Model Metadata Attribute Values using a query
45087
+ * @summary Metadata Attribute update by query
45088
+ * @param {AccessModelMetadataV2025ApiUpdateAccessModelMetadataByQueryRequest} requestParameters Request parameters.
45089
+ * @param {*} [axiosOptions] Override http request option.
45090
+ * @throws {RequiredError}
45091
+ */
45092
+ updateAccessModelMetadataByQuery(requestParameters: AccessModelMetadataV2025ApiUpdateAccessModelMetadataByQueryRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<AccessModelMetadataBulkUpdateResponseV2025>;
43971
45093
  };
43972
45094
  /**
43973
45095
  * Request parameters for getAccessModelMetadataAttribute operation in AccessModelMetadataV2025Api.
@@ -43981,12 +45103,6 @@ export interface AccessModelMetadataV2025ApiGetAccessModelMetadataAttributeReque
43981
45103
  * @memberof AccessModelMetadataV2025ApiGetAccessModelMetadataAttribute
43982
45104
  */
43983
45105
  readonly key: string;
43984
- /**
43985
- * Use this header to enable this experimental API.
43986
- * @type {string}
43987
- * @memberof AccessModelMetadataV2025ApiGetAccessModelMetadataAttribute
43988
- */
43989
- readonly xSailPointExperimental?: string;
43990
45106
  }
43991
45107
  /**
43992
45108
  * Request parameters for getAccessModelMetadataAttributeValue operation in AccessModelMetadataV2025Api.
@@ -44006,12 +45122,6 @@ export interface AccessModelMetadataV2025ApiGetAccessModelMetadataAttributeValue
44006
45122
  * @memberof AccessModelMetadataV2025ApiGetAccessModelMetadataAttributeValue
44007
45123
  */
44008
45124
  readonly value: string;
44009
- /**
44010
- * Use this header to enable this experimental API.
44011
- * @type {string}
44012
- * @memberof AccessModelMetadataV2025ApiGetAccessModelMetadataAttributeValue
44013
- */
44014
- readonly xSailPointExperimental?: string;
44015
45125
  }
44016
45126
  /**
44017
45127
  * Request parameters for listAccessModelMetadataAttribute operation in AccessModelMetadataV2025Api.
@@ -44020,17 +45130,35 @@ export interface AccessModelMetadataV2025ApiGetAccessModelMetadataAttributeValue
44020
45130
  */
44021
45131
  export interface AccessModelMetadataV2025ApiListAccessModelMetadataAttributeRequest {
44022
45132
  /**
44023
- * 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: **name**: *eq* **type**: *eq* **status**: *eq* **objectTypes**: *eq* Supported composite operators: *and*
45133
+ * 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: **key**: *eq* **name**: *eq* **type**: *eq* **status**: *eq* **objectTypes**: *eq* **Supported composite operators**: *and*
44024
45134
  * @type {string}
44025
45135
  * @memberof AccessModelMetadataV2025ApiListAccessModelMetadataAttribute
44026
45136
  */
44027
45137
  readonly filters?: string;
44028
45138
  /**
44029
- * Use this header to enable this experimental API.
45139
+ * 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, key**
44030
45140
  * @type {string}
44031
45141
  * @memberof AccessModelMetadataV2025ApiListAccessModelMetadataAttribute
44032
45142
  */
44033
- readonly xSailPointExperimental?: string;
45143
+ readonly sorters?: string;
45144
+ /**
45145
+ * 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.
45146
+ * @type {number}
45147
+ * @memberof AccessModelMetadataV2025ApiListAccessModelMetadataAttribute
45148
+ */
45149
+ readonly offset?: number;
45150
+ /**
45151
+ * Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
45152
+ * @type {number}
45153
+ * @memberof AccessModelMetadataV2025ApiListAccessModelMetadataAttribute
45154
+ */
45155
+ readonly limit?: number;
45156
+ /**
45157
+ * 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.
45158
+ * @type {boolean}
45159
+ * @memberof AccessModelMetadataV2025ApiListAccessModelMetadataAttribute
45160
+ */
45161
+ readonly count?: boolean;
44034
45162
  }
44035
45163
  /**
44036
45164
  * Request parameters for listAccessModelMetadataAttributeValue operation in AccessModelMetadataV2025Api.
@@ -44045,11 +45173,62 @@ export interface AccessModelMetadataV2025ApiListAccessModelMetadataAttributeValu
44045
45173
  */
44046
45174
  readonly key: string;
44047
45175
  /**
44048
- * Use this header to enable this experimental API.
44049
- * @type {string}
45176
+ * 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.
45177
+ * @type {number}
44050
45178
  * @memberof AccessModelMetadataV2025ApiListAccessModelMetadataAttributeValue
44051
45179
  */
44052
- readonly xSailPointExperimental?: string;
45180
+ readonly offset?: number;
45181
+ /**
45182
+ * Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
45183
+ * @type {number}
45184
+ * @memberof AccessModelMetadataV2025ApiListAccessModelMetadataAttributeValue
45185
+ */
45186
+ readonly limit?: number;
45187
+ /**
45188
+ * 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.
45189
+ * @type {boolean}
45190
+ * @memberof AccessModelMetadataV2025ApiListAccessModelMetadataAttributeValue
45191
+ */
45192
+ readonly count?: boolean;
45193
+ }
45194
+ /**
45195
+ * Request parameters for updateAccessModelMetadataByFilter operation in AccessModelMetadataV2025Api.
45196
+ * @export
45197
+ * @interface AccessModelMetadataV2025ApiUpdateAccessModelMetadataByFilterRequest
45198
+ */
45199
+ export interface AccessModelMetadataV2025ApiUpdateAccessModelMetadataByFilterRequest {
45200
+ /**
45201
+ * Attribute metadata bulk update request body.
45202
+ * @type {EntitlementAttributeBulkUpdateFilterRequestV2025}
45203
+ * @memberof AccessModelMetadataV2025ApiUpdateAccessModelMetadataByFilter
45204
+ */
45205
+ readonly entitlementAttributeBulkUpdateFilterRequestV2025: EntitlementAttributeBulkUpdateFilterRequestV2025;
45206
+ }
45207
+ /**
45208
+ * Request parameters for updateAccessModelMetadataByIds operation in AccessModelMetadataV2025Api.
45209
+ * @export
45210
+ * @interface AccessModelMetadataV2025ApiUpdateAccessModelMetadataByIdsRequest
45211
+ */
45212
+ export interface AccessModelMetadataV2025ApiUpdateAccessModelMetadataByIdsRequest {
45213
+ /**
45214
+ * Attribute metadata bulk update request body.
45215
+ * @type {EntitlementAttributeBulkUpdateIdsRequestV2025}
45216
+ * @memberof AccessModelMetadataV2025ApiUpdateAccessModelMetadataByIds
45217
+ */
45218
+ readonly entitlementAttributeBulkUpdateIdsRequestV2025: EntitlementAttributeBulkUpdateIdsRequestV2025;
45219
+ }
45220
+ /**
45221
+ * Request parameters for updateAccessModelMetadataByQuery operation in AccessModelMetadataV2025Api.
45222
+ * @export
45223
+ * @interface AccessModelMetadataV2025ApiUpdateAccessModelMetadataByQueryRequest
45224
+ */
45225
+ export interface AccessModelMetadataV2025ApiUpdateAccessModelMetadataByQueryRequest {
45226
+ /**
45227
+ * Attribute metadata bulk update request body.
45228
+ * @type {EntitlementAttributeBulkUpdateQueryRequestV2025}
45229
+ * @memberof AccessModelMetadataV2025ApiUpdateAccessModelMetadataByQuery
45230
+ */
45231
+ readonly entitlementAttributeBulkUpdateQueryRequestV2025: EntitlementAttributeBulkUpdateQueryRequestV2025;
44053
45232
  }
44054
45233
  /**
44055
45234
  * AccessModelMetadataV2025Api - object-oriented interface
@@ -44094,6 +45273,33 @@ export declare class AccessModelMetadataV2025Api extends BaseAPI {
44094
45273
  * @memberof AccessModelMetadataV2025Api
44095
45274
  */
44096
45275
  listAccessModelMetadataAttributeValue(requestParameters: AccessModelMetadataV2025ApiListAccessModelMetadataAttributeValueRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AttributeValueDTOV2025[], any>>;
45276
+ /**
45277
+ * Bulk update Access Model Metadata Attribute Values using a filter
45278
+ * @summary Metadata Attribute update by filter
45279
+ * @param {AccessModelMetadataV2025ApiUpdateAccessModelMetadataByFilterRequest} requestParameters Request parameters.
45280
+ * @param {*} [axiosOptions] Override http request option.
45281
+ * @throws {RequiredError}
45282
+ * @memberof AccessModelMetadataV2025Api
45283
+ */
45284
+ updateAccessModelMetadataByFilter(requestParameters: AccessModelMetadataV2025ApiUpdateAccessModelMetadataByFilterRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AccessModelMetadataBulkUpdateResponseV2025, any>>;
45285
+ /**
45286
+ * Bulk update Access Model Metadata Attribute Values using ids.
45287
+ * @summary Metadata Attribute update by ids
45288
+ * @param {AccessModelMetadataV2025ApiUpdateAccessModelMetadataByIdsRequest} requestParameters Request parameters.
45289
+ * @param {*} [axiosOptions] Override http request option.
45290
+ * @throws {RequiredError}
45291
+ * @memberof AccessModelMetadataV2025Api
45292
+ */
45293
+ updateAccessModelMetadataByIds(requestParameters: AccessModelMetadataV2025ApiUpdateAccessModelMetadataByIdsRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AccessModelMetadataBulkUpdateResponseV2025, any>>;
45294
+ /**
45295
+ * Bulk update Access Model Metadata Attribute Values using a query
45296
+ * @summary Metadata Attribute update by query
45297
+ * @param {AccessModelMetadataV2025ApiUpdateAccessModelMetadataByQueryRequest} requestParameters Request parameters.
45298
+ * @param {*} [axiosOptions] Override http request option.
45299
+ * @throws {RequiredError}
45300
+ * @memberof AccessModelMetadataV2025Api
45301
+ */
45302
+ updateAccessModelMetadataByQuery(requestParameters: AccessModelMetadataV2025ApiUpdateAccessModelMetadataByQueryRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AccessModelMetadataBulkUpdateResponseV2025, any>>;
44097
45303
  }
44098
45304
  /**
44099
45305
  * AccessProfilesV2025Api - axios parameter creator
@@ -45215,11 +46421,10 @@ export declare const AccessRequestsV2025ApiAxiosParamCreator: (configuration?: C
45215
46421
  * This endpoint closes access requests that are stuck in a pending state. It can be used throughout a request\'s lifecycle even after the approval state, unlike the [Cancel Access Request endpoint](https://developer.sailpoint.com/idn/api/v3/cancel-access-request/). To find pending access requests with the UI, navigate to Search and use this query: status: Pending AND \"Access Request\". Use the Column Chooser to select \'Tracking Number\', and use the \'Download\' button to export a CSV containing the tracking numbers. To find pending access requests with the API, use the [List Account Activities endpoint](https://developer.sailpoint.com/idn/api/v3/list-account-activities/). Input the IDs from either source. To track the status of endpoint requests, navigate to Search and use this query: name:\"Close Identity Requests\". Search will include \"Close Identity Requests Started\" audits when requests are initiated and \"Close Identity Requests Completed\" audits when requests are completed. The completion audit will list the identity request IDs that finished in error. This API triggers the [Provisioning Completed event trigger](https://developer.sailpoint.com/idn/docs/event-triggers/triggers/provisioning-completed/) for each access request that is closed.
45216
46422
  * @summary Close access request
45217
46423
  * @param {CloseAccessRequestV2025} closeAccessRequestV2025
45218
- * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
45219
46424
  * @param {*} [axiosOptions] Override http request option.
45220
46425
  * @throws {RequiredError}
45221
46426
  */
45222
- closeAccessRequest: (closeAccessRequestV2025: CloseAccessRequestV2025, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
46427
+ closeAccessRequest: (closeAccessRequestV2025: CloseAccessRequestV2025, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
45223
46428
  /**
45224
46429
  * Use this API to submit an access request in Identity Security Cloud (ISC), where it follows any ISC approval processes. :::info The ability to request access using this API is constrained by the Access Request Segments defined in the API token’s user context. ::: Access requests are processed asynchronously by ISC. A successful response from this endpoint means that the request has been submitted to ISC and is queued for processing. Because this endpoint is asynchronous, it doesn\'t return an error if you submit duplicate access requests in quick succession or submit an access request for access that is already in progress, approved, or rejected. It\'s best practice to check for any existing access requests that reference the same access items before submitting a new access request. This can be accomplished by using the [List Access Request Status](https://developer.sailpoint.com/idn/api/v3/list-access-request-status) or the [Pending Access Request Approvals](https://developer.sailpoint.com/idn/api/v3/list-pending-approvals) APIs. You can also use the [Search API](https://developer.sailpoint.com/idn/api/v3/search) to check the existing access items an identity has before submitting an access request to ensure that you aren\'t requesting access that is already granted. If you use this API to request access that an identity already has, without changing the account details or end date information from the existing assignment, the API will cancel the request as a duplicate. There are two types of access request: __GRANT_ACCESS__ * Can be requested for multiple identities in a single request. * Supports self request and request on behalf of other users. Refer to the [Get Access Request Configuration](https://developer.sailpoint.com/idn/api/v3/get-access-request-config) endpoint for request configuration options. * Allows any authenticated token (except API) to call this endpoint to request to grant access to themselves. Depending on the configuration, a user can request access for others. * Roles, access profiles and entitlements can be requested. * You can specify a `removeDate` to set or alter a sunset date-time on an assignment. The removeDate must be a future date-time, in the UTC timezone. Additionally, if the user already has the access assigned with a sunset date, you can also submit a request without a `removeDate` to request removal of the sunset date and time. * If a `removeDate` is specified, then the requested role, access profile, or entitlement will be removed on that date and time. * Now supports an alternate field \'requestedForWithRequestedItems\' for users to specify account selections while requesting items where they have more than one account on the source. :::caution If any entitlements are being requested, then the maximum number of entitlements that can be requested is 25, and the maximum number of identities that can be requested for is 10. If you exceed these limits, the request will fail with a 400 error. If you are not requesting any entitlements, then there are no limits. ::: __REVOKE_ACCESS__ * Can only be requested for a single identity at a time. * You cannot use an access request to revoke access from an identity if that access has been granted by role membership or by birthright provisioning. * Does not support self request. Only manager can request to revoke access for their directly managed employees. * If a `removeDate` is specified, then the requested role, access profile, or entitlement will be removed on that date and time. * Roles, access profiles, and entitlements can be requested for revocation. * Revoke requests for entitlements are limited to 1 entitlement per access request currently. * You can specify a `removeDate` to add or alter a sunset date and time on an assignment. The `removeDate` must be a future date-time, in the UTC timezone. If the user already has the access assigned with a sunset date and time, the removeDate must be a date-time earlier than the existing sunset date and time. * Allows a manager to request to revoke access for direct employees. A user with ORG_ADMIN authority can also request to revoke access from anyone. * Now supports REVOKE_ACCESS requests for identities with multiple accounts on a single source, with the help of \'assignmentId\' and \'nativeIdentity\' fields. These fields should be used within the \'requestedItems\' section for the revoke requests. * Usage of \'requestedForWithRequestedItems\' field is not supported for revoke requests.
45225
46430
  * @summary Submit access request
@@ -45329,11 +46534,10 @@ export declare const AccessRequestsV2025ApiFp: (configuration?: Configuration) =
45329
46534
  * This endpoint closes access requests that are stuck in a pending state. It can be used throughout a request\'s lifecycle even after the approval state, unlike the [Cancel Access Request endpoint](https://developer.sailpoint.com/idn/api/v3/cancel-access-request/). To find pending access requests with the UI, navigate to Search and use this query: status: Pending AND \"Access Request\". Use the Column Chooser to select \'Tracking Number\', and use the \'Download\' button to export a CSV containing the tracking numbers. To find pending access requests with the API, use the [List Account Activities endpoint](https://developer.sailpoint.com/idn/api/v3/list-account-activities/). Input the IDs from either source. To track the status of endpoint requests, navigate to Search and use this query: name:\"Close Identity Requests\". Search will include \"Close Identity Requests Started\" audits when requests are initiated and \"Close Identity Requests Completed\" audits when requests are completed. The completion audit will list the identity request IDs that finished in error. This API triggers the [Provisioning Completed event trigger](https://developer.sailpoint.com/idn/docs/event-triggers/triggers/provisioning-completed/) for each access request that is closed.
45330
46535
  * @summary Close access request
45331
46536
  * @param {CloseAccessRequestV2025} closeAccessRequestV2025
45332
- * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
45333
46537
  * @param {*} [axiosOptions] Override http request option.
45334
46538
  * @throws {RequiredError}
45335
46539
  */
45336
- closeAccessRequest(closeAccessRequestV2025: CloseAccessRequestV2025, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>>;
46540
+ closeAccessRequest(closeAccessRequestV2025: CloseAccessRequestV2025, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>>;
45337
46541
  /**
45338
46542
  * Use this API to submit an access request in Identity Security Cloud (ISC), where it follows any ISC approval processes. :::info The ability to request access using this API is constrained by the Access Request Segments defined in the API token’s user context. ::: Access requests are processed asynchronously by ISC. A successful response from this endpoint means that the request has been submitted to ISC and is queued for processing. Because this endpoint is asynchronous, it doesn\'t return an error if you submit duplicate access requests in quick succession or submit an access request for access that is already in progress, approved, or rejected. It\'s best practice to check for any existing access requests that reference the same access items before submitting a new access request. This can be accomplished by using the [List Access Request Status](https://developer.sailpoint.com/idn/api/v3/list-access-request-status) or the [Pending Access Request Approvals](https://developer.sailpoint.com/idn/api/v3/list-pending-approvals) APIs. You can also use the [Search API](https://developer.sailpoint.com/idn/api/v3/search) to check the existing access items an identity has before submitting an access request to ensure that you aren\'t requesting access that is already granted. If you use this API to request access that an identity already has, without changing the account details or end date information from the existing assignment, the API will cancel the request as a duplicate. There are two types of access request: __GRANT_ACCESS__ * Can be requested for multiple identities in a single request. * Supports self request and request on behalf of other users. Refer to the [Get Access Request Configuration](https://developer.sailpoint.com/idn/api/v3/get-access-request-config) endpoint for request configuration options. * Allows any authenticated token (except API) to call this endpoint to request to grant access to themselves. Depending on the configuration, a user can request access for others. * Roles, access profiles and entitlements can be requested. * You can specify a `removeDate` to set or alter a sunset date-time on an assignment. The removeDate must be a future date-time, in the UTC timezone. Additionally, if the user already has the access assigned with a sunset date, you can also submit a request without a `removeDate` to request removal of the sunset date and time. * If a `removeDate` is specified, then the requested role, access profile, or entitlement will be removed on that date and time. * Now supports an alternate field \'requestedForWithRequestedItems\' for users to specify account selections while requesting items where they have more than one account on the source. :::caution If any entitlements are being requested, then the maximum number of entitlements that can be requested is 25, and the maximum number of identities that can be requested for is 10. If you exceed these limits, the request will fail with a 400 error. If you are not requesting any entitlements, then there are no limits. ::: __REVOKE_ACCESS__ * Can only be requested for a single identity at a time. * You cannot use an access request to revoke access from an identity if that access has been granted by role membership or by birthright provisioning. * Does not support self request. Only manager can request to revoke access for their directly managed employees. * If a `removeDate` is specified, then the requested role, access profile, or entitlement will be removed on that date and time. * Roles, access profiles, and entitlements can be requested for revocation. * Revoke requests for entitlements are limited to 1 entitlement per access request currently. * You can specify a `removeDate` to add or alter a sunset date and time on an assignment. The `removeDate` must be a future date-time, in the UTC timezone. If the user already has the access assigned with a sunset date and time, the removeDate must be a date-time earlier than the existing sunset date and time. * Allows a manager to request to revoke access for direct employees. A user with ORG_ADMIN authority can also request to revoke access from anyone. * Now supports REVOKE_ACCESS requests for identities with multiple accounts on a single source, with the help of \'assignmentId\' and \'nativeIdentity\' fields. These fields should be used within the \'requestedItems\' section for the revoke requests. * Usage of \'requestedForWithRequestedItems\' field is not supported for revoke requests.
45339
46543
  * @summary Submit access request
@@ -45554,12 +46758,6 @@ export interface AccessRequestsV2025ApiCloseAccessRequestRequest {
45554
46758
  * @memberof AccessRequestsV2025ApiCloseAccessRequest
45555
46759
  */
45556
46760
  readonly closeAccessRequestV2025: CloseAccessRequestV2025;
45557
- /**
45558
- * Use this header to enable this experimental API.
45559
- * @type {string}
45560
- * @memberof AccessRequestsV2025ApiCloseAccessRequest
45561
- */
45562
- readonly xSailPointExperimental?: string;
45563
46761
  }
45564
46762
  /**
45565
46763
  * Request parameters for createAccessRequest operation in AccessRequestsV2025Api.
@@ -46048,11 +47246,10 @@ export declare const AccountAggregationsV2025ApiAxiosParamCreator: (configuratio
46048
47246
  * This API returns the status of an *in-progress* account aggregation, along with the total number of **NEW**, **CHANGED** and **DELETED** accounts found since the previous aggregation, and the number of those accounts that have been processed so far. Accounts that have not changed since the previous aggregation are not included in **totalAccounts** and **processedAccounts** counts returned by this API. This is distinct from **Accounts Scanned** shown in the Aggregation UI, which indicates total accounts scanned regardless of whether they changed or not. Since this endpoint reports on the status of an *in-progress* account aggregation, totalAccounts and processedAccounts may change between calls to this endpoint. *Only available up to an hour after the aggregation completes. May respond with *404 Not Found* after that.* required to call this API.
46049
47247
  * @summary In-progress account aggregation status
46050
47248
  * @param {string} id The account aggregation id
46051
- * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
46052
47249
  * @param {*} [axiosOptions] Override http request option.
46053
47250
  * @throws {RequiredError}
46054
47251
  */
46055
- getAccountAggregationStatus: (id: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
47252
+ getAccountAggregationStatus: (id: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
46056
47253
  };
46057
47254
  /**
46058
47255
  * AccountAggregationsV2025Api - functional programming interface
@@ -46063,11 +47260,10 @@ export declare const AccountAggregationsV2025ApiFp: (configuration?: Configurati
46063
47260
  * This API returns the status of an *in-progress* account aggregation, along with the total number of **NEW**, **CHANGED** and **DELETED** accounts found since the previous aggregation, and the number of those accounts that have been processed so far. Accounts that have not changed since the previous aggregation are not included in **totalAccounts** and **processedAccounts** counts returned by this API. This is distinct from **Accounts Scanned** shown in the Aggregation UI, which indicates total accounts scanned regardless of whether they changed or not. Since this endpoint reports on the status of an *in-progress* account aggregation, totalAccounts and processedAccounts may change between calls to this endpoint. *Only available up to an hour after the aggregation completes. May respond with *404 Not Found* after that.* required to call this API.
46064
47261
  * @summary In-progress account aggregation status
46065
47262
  * @param {string} id The account aggregation id
46066
- * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
46067
47263
  * @param {*} [axiosOptions] Override http request option.
46068
47264
  * @throws {RequiredError}
46069
47265
  */
46070
- getAccountAggregationStatus(id: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AccountAggregationStatusV2025>>;
47266
+ getAccountAggregationStatus(id: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AccountAggregationStatusV2025>>;
46071
47267
  };
46072
47268
  /**
46073
47269
  * AccountAggregationsV2025Api - factory interface
@@ -46095,12 +47291,6 @@ export interface AccountAggregationsV2025ApiGetAccountAggregationStatusRequest {
46095
47291
  * @memberof AccountAggregationsV2025ApiGetAccountAggregationStatus
46096
47292
  */
46097
47293
  readonly id: string;
46098
- /**
46099
- * Use this header to enable this experimental API.
46100
- * @type {string}
46101
- * @memberof AccountAggregationsV2025ApiGetAccountAggregationStatus
46102
- */
46103
- readonly xSailPointExperimental?: string;
46104
47294
  }
46105
47295
  /**
46106
47296
  * AccountAggregationsV2025Api - object-oriented interface
@@ -46248,11 +47438,10 @@ export declare const AccountsV2025ApiAxiosParamCreator: (configuration?: Configu
46248
47438
  * Use this endpoint to remove accounts from the system without provisioning changes to the source. Accounts that are removed could be re-created during the next aggregation. This endpoint is good for: * Removing accounts that no longer exist on the source. * Removing accounts that won\'t be aggregated following updates to the source configuration. * Forcing accounts to be re-created following the next aggregation to re-run account processing, support testing, etc.
46249
47439
  * @summary Remove account
46250
47440
  * @param {string} id The account id
46251
- * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
46252
47441
  * @param {*} [axiosOptions] Override http request option.
46253
47442
  * @throws {RequiredError}
46254
47443
  */
46255
- deleteAccountAsync: (id: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
47444
+ deleteAccountAsync: (id: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
46256
47445
  /**
46257
47446
  * This API submits a task to disable the account and returns the task ID.
46258
47447
  * @summary Disable account
@@ -46266,20 +47455,18 @@ export declare const AccountsV2025ApiAxiosParamCreator: (configuration?: Configu
46266
47455
  * This API submits a task to disable IDN account for a single identity.
46267
47456
  * @summary Disable idn account for identity
46268
47457
  * @param {string} id The identity id.
46269
- * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
46270
47458
  * @param {*} [axiosOptions] Override http request option.
46271
47459
  * @throws {RequiredError}
46272
47460
  */
46273
- disableAccountForIdentity: (id: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
47461
+ disableAccountForIdentity: (id: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
46274
47462
  /**
46275
47463
  * This API submits tasks to disable IDN account for each identity provided in the request body.
46276
47464
  * @summary Disable idn accounts for identities
46277
47465
  * @param {IdentitiesAccountsBulkRequestV2025} identitiesAccountsBulkRequestV2025
46278
- * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
46279
47466
  * @param {*} [axiosOptions] Override http request option.
46280
47467
  * @throws {RequiredError}
46281
47468
  */
46282
- disableAccountsForIdentities: (identitiesAccountsBulkRequestV2025: IdentitiesAccountsBulkRequestV2025, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
47469
+ disableAccountsForIdentities: (identitiesAccountsBulkRequestV2025: IdentitiesAccountsBulkRequestV2025, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
46283
47470
  /**
46284
47471
  * This API submits a task to enable account and returns the task ID.
46285
47472
  * @summary Enable account
@@ -46293,20 +47480,18 @@ export declare const AccountsV2025ApiAxiosParamCreator: (configuration?: Configu
46293
47480
  * This API submits a task to enable IDN account for a single identity.
46294
47481
  * @summary Enable idn account for identity
46295
47482
  * @param {string} id The identity id.
46296
- * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
46297
47483
  * @param {*} [axiosOptions] Override http request option.
46298
47484
  * @throws {RequiredError}
46299
47485
  */
46300
- enableAccountForIdentity: (id: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
47486
+ enableAccountForIdentity: (id: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
46301
47487
  /**
46302
47488
  * This API submits tasks to enable IDN account for each identity provided in the request body.
46303
47489
  * @summary Enable idn accounts for identities
46304
47490
  * @param {IdentitiesAccountsBulkRequestV2025} identitiesAccountsBulkRequestV2025
46305
- * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
46306
47491
  * @param {*} [axiosOptions] Override http request option.
46307
47492
  * @throws {RequiredError}
46308
47493
  */
46309
- enableAccountsForIdentities: (identitiesAccountsBulkRequestV2025: IdentitiesAccountsBulkRequestV2025, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
47494
+ enableAccountsForIdentities: (identitiesAccountsBulkRequestV2025: IdentitiesAccountsBulkRequestV2025, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
46310
47495
  /**
46311
47496
  * Use this API to return the details for a single account by its ID.
46312
47497
  * @summary Account details
@@ -46400,11 +47585,10 @@ export declare const AccountsV2025ApiFp: (configuration?: Configuration) => {
46400
47585
  * Use this endpoint to remove accounts from the system without provisioning changes to the source. Accounts that are removed could be re-created during the next aggregation. This endpoint is good for: * Removing accounts that no longer exist on the source. * Removing accounts that won\'t be aggregated following updates to the source configuration. * Forcing accounts to be re-created following the next aggregation to re-run account processing, support testing, etc.
46401
47586
  * @summary Remove account
46402
47587
  * @param {string} id The account id
46403
- * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
46404
47588
  * @param {*} [axiosOptions] Override http request option.
46405
47589
  * @throws {RequiredError}
46406
47590
  */
46407
- deleteAccountAsync(id: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TaskResultDtoV2025>>;
47591
+ deleteAccountAsync(id: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TaskResultDtoV2025>>;
46408
47592
  /**
46409
47593
  * This API submits a task to disable the account and returns the task ID.
46410
47594
  * @summary Disable account
@@ -46418,20 +47602,18 @@ export declare const AccountsV2025ApiFp: (configuration?: Configuration) => {
46418
47602
  * This API submits a task to disable IDN account for a single identity.
46419
47603
  * @summary Disable idn account for identity
46420
47604
  * @param {string} id The identity id.
46421
- * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
46422
47605
  * @param {*} [axiosOptions] Override http request option.
46423
47606
  * @throws {RequiredError}
46424
47607
  */
46425
- disableAccountForIdentity(id: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>>;
47608
+ disableAccountForIdentity(id: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>>;
46426
47609
  /**
46427
47610
  * This API submits tasks to disable IDN account for each identity provided in the request body.
46428
47611
  * @summary Disable idn accounts for identities
46429
47612
  * @param {IdentitiesAccountsBulkRequestV2025} identitiesAccountsBulkRequestV2025
46430
- * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
46431
47613
  * @param {*} [axiosOptions] Override http request option.
46432
47614
  * @throws {RequiredError}
46433
47615
  */
46434
- disableAccountsForIdentities(identitiesAccountsBulkRequestV2025: IdentitiesAccountsBulkRequestV2025, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<BulkIdentitiesAccountsResponseV2025>>>;
47616
+ disableAccountsForIdentities(identitiesAccountsBulkRequestV2025: IdentitiesAccountsBulkRequestV2025, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<BulkIdentitiesAccountsResponseV2025>>>;
46435
47617
  /**
46436
47618
  * This API submits a task to enable account and returns the task ID.
46437
47619
  * @summary Enable account
@@ -46445,20 +47627,18 @@ export declare const AccountsV2025ApiFp: (configuration?: Configuration) => {
46445
47627
  * This API submits a task to enable IDN account for a single identity.
46446
47628
  * @summary Enable idn account for identity
46447
47629
  * @param {string} id The identity id.
46448
- * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
46449
47630
  * @param {*} [axiosOptions] Override http request option.
46450
47631
  * @throws {RequiredError}
46451
47632
  */
46452
- enableAccountForIdentity(id: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>>;
47633
+ enableAccountForIdentity(id: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>>;
46453
47634
  /**
46454
47635
  * This API submits tasks to enable IDN account for each identity provided in the request body.
46455
47636
  * @summary Enable idn accounts for identities
46456
47637
  * @param {IdentitiesAccountsBulkRequestV2025} identitiesAccountsBulkRequestV2025
46457
- * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
46458
47638
  * @param {*} [axiosOptions] Override http request option.
46459
47639
  * @throws {RequiredError}
46460
47640
  */
46461
- enableAccountsForIdentities(identitiesAccountsBulkRequestV2025: IdentitiesAccountsBulkRequestV2025, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<BulkIdentitiesAccountsResponseV2025>>>;
47641
+ enableAccountsForIdentities(identitiesAccountsBulkRequestV2025: IdentitiesAccountsBulkRequestV2025, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<BulkIdentitiesAccountsResponseV2025>>>;
46462
47642
  /**
46463
47643
  * Use this API to return the details for a single account by its ID.
46464
47644
  * @summary Account details
@@ -46699,12 +47879,6 @@ export interface AccountsV2025ApiDeleteAccountAsyncRequest {
46699
47879
  * @memberof AccountsV2025ApiDeleteAccountAsync
46700
47880
  */
46701
47881
  readonly id: string;
46702
- /**
46703
- * Use this header to enable this experimental API.
46704
- * @type {string}
46705
- * @memberof AccountsV2025ApiDeleteAccountAsync
46706
- */
46707
- readonly xSailPointExperimental?: string;
46708
47882
  }
46709
47883
  /**
46710
47884
  * Request parameters for disableAccount operation in AccountsV2025Api.
@@ -46737,12 +47911,6 @@ export interface AccountsV2025ApiDisableAccountForIdentityRequest {
46737
47911
  * @memberof AccountsV2025ApiDisableAccountForIdentity
46738
47912
  */
46739
47913
  readonly id: string;
46740
- /**
46741
- * Use this header to enable this experimental API.
46742
- * @type {string}
46743
- * @memberof AccountsV2025ApiDisableAccountForIdentity
46744
- */
46745
- readonly xSailPointExperimental?: string;
46746
47914
  }
46747
47915
  /**
46748
47916
  * Request parameters for disableAccountsForIdentities operation in AccountsV2025Api.
@@ -46756,12 +47924,6 @@ export interface AccountsV2025ApiDisableAccountsForIdentitiesRequest {
46756
47924
  * @memberof AccountsV2025ApiDisableAccountsForIdentities
46757
47925
  */
46758
47926
  readonly identitiesAccountsBulkRequestV2025: IdentitiesAccountsBulkRequestV2025;
46759
- /**
46760
- * Use this header to enable this experimental API.
46761
- * @type {string}
46762
- * @memberof AccountsV2025ApiDisableAccountsForIdentities
46763
- */
46764
- readonly xSailPointExperimental?: string;
46765
47927
  }
46766
47928
  /**
46767
47929
  * Request parameters for enableAccount operation in AccountsV2025Api.
@@ -46794,12 +47956,6 @@ export interface AccountsV2025ApiEnableAccountForIdentityRequest {
46794
47956
  * @memberof AccountsV2025ApiEnableAccountForIdentity
46795
47957
  */
46796
47958
  readonly id: string;
46797
- /**
46798
- * Use this header to enable this experimental API.
46799
- * @type {string}
46800
- * @memberof AccountsV2025ApiEnableAccountForIdentity
46801
- */
46802
- readonly xSailPointExperimental?: string;
46803
47959
  }
46804
47960
  /**
46805
47961
  * Request parameters for enableAccountsForIdentities operation in AccountsV2025Api.
@@ -46813,12 +47969,6 @@ export interface AccountsV2025ApiEnableAccountsForIdentitiesRequest {
46813
47969
  * @memberof AccountsV2025ApiEnableAccountsForIdentities
46814
47970
  */
46815
47971
  readonly identitiesAccountsBulkRequestV2025: IdentitiesAccountsBulkRequestV2025;
46816
- /**
46817
- * Use this header to enable this experimental API.
46818
- * @type {string}
46819
- * @memberof AccountsV2025ApiEnableAccountsForIdentities
46820
- */
46821
- readonly xSailPointExperimental?: string;
46822
47972
  }
46823
47973
  /**
46824
47974
  * Request parameters for getAccount operation in AccountsV2025Api.
@@ -55497,6 +56647,482 @@ export declare const GetCustomPasswordInstructionsPageIdV2025: {
55497
56647
  readonly UnlockAccountFinish: "unlock-account:finish";
55498
56648
  };
55499
56649
  export type GetCustomPasswordInstructionsPageIdV2025 = typeof GetCustomPasswordInstructionsPageIdV2025[keyof typeof GetCustomPasswordInstructionsPageIdV2025];
56650
+ /**
56651
+ * CustomUserLevelsV2025Api - axios parameter creator
56652
+ * @export
56653
+ */
56654
+ export declare const CustomUserLevelsV2025ApiAxiosParamCreator: (configuration?: Configuration) => {
56655
+ /**
56656
+ * Creates a new custom user level for the tenant.
56657
+ * @summary Create a custom user level
56658
+ * @param {UserLevelRequestV2025} userLevelRequestV2025 Payload containing the details of the user level to be created.
56659
+ * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
56660
+ * @param {*} [axiosOptions] Override http request option.
56661
+ * @throws {RequiredError}
56662
+ */
56663
+ createCustomUserLevel: (userLevelRequestV2025: UserLevelRequestV2025, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
56664
+ /**
56665
+ * Deletes a specific user level by its ID.
56666
+ * @summary Delete a user level
56667
+ * @param {string} xSailPointExperimental Use this header to enable this experimental API.
56668
+ * @param {string} id The unique identifier of the user level.
56669
+ * @param {*} [axiosOptions] Override http request option.
56670
+ * @throws {RequiredError}
56671
+ */
56672
+ deleteUserLevel: (xSailPointExperimental: string, id: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
56673
+ /**
56674
+ * Fetches the details of a specific user level by its ID.
56675
+ * @summary Retrieve a user level
56676
+ * @param {string} id The unique identifier of the user level.
56677
+ * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
56678
+ * @param {*} [axiosOptions] Override http request option.
56679
+ * @throws {RequiredError}
56680
+ */
56681
+ getUserLevel: (id: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
56682
+ /**
56683
+ * Retrieves a list of authorization assignable right sets for the tenant.
56684
+ * @summary List all uiAssignable right sets
56685
+ * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
56686
+ * @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: **category**: *eq*
56687
+ * @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: **id, name, category**
56688
+ * @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.
56689
+ * @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.
56690
+ * @param {*} [axiosOptions] Override http request option.
56691
+ * @throws {RequiredError}
56692
+ */
56693
+ listAllAuthorizationRightSets: (xSailPointExperimental?: string, filters?: string, sorters?: string, limit?: number, offset?: number, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
56694
+ /**
56695
+ * Retrieves a list of user levels for the tenant.
56696
+ * @summary List user levels
56697
+ * @param {string} xSailPointExperimental Use this header to enable this experimental API.
56698
+ * @param {ListUserLevelsDetailLevelV2025} [detailLevel] Specifies the level of detail for the user levels.
56699
+ * @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: **name**: *co* **owner**: *co* **status**: *eq*
56700
+ * @param {string} [sorters] Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) Sorting is supported for the following fields: **name, created**
56701
+ * @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.
56702
+ * @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.
56703
+ * @param {*} [axiosOptions] Override http request option.
56704
+ * @throws {RequiredError}
56705
+ */
56706
+ listUserLevels: (xSailPointExperimental: string, detailLevel?: ListUserLevelsDetailLevelV2025, filters?: string, sorters?: string, limit?: number, offset?: number, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
56707
+ /**
56708
+ * Publishes a custom user level for the tenant, making it active and available.
56709
+ * @summary Publish a custom user level
56710
+ * @param {string} id The unique identifier of the user level to publish.
56711
+ * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
56712
+ * @param {*} [axiosOptions] Override http request option.
56713
+ * @throws {RequiredError}
56714
+ */
56715
+ publishCustomUserLevel: (id: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
56716
+ /**
56717
+ * Updates the details of a specific user level using JSON Patch.
56718
+ * @summary Update a user level
56719
+ * @param {string} xSailPointExperimental Use this header to enable this experimental API.
56720
+ * @param {string} id The unique identifier of the user level.
56721
+ * @param {JsonPatchV2025} jsonPatchV2025 JSON Patch payload for updating the user level.
56722
+ * @param {*} [axiosOptions] Override http request option.
56723
+ * @throws {RequiredError}
56724
+ */
56725
+ updateUserLevel: (xSailPointExperimental: string, id: string, jsonPatchV2025: JsonPatchV2025, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
56726
+ };
56727
+ /**
56728
+ * CustomUserLevelsV2025Api - functional programming interface
56729
+ * @export
56730
+ */
56731
+ export declare const CustomUserLevelsV2025ApiFp: (configuration?: Configuration) => {
56732
+ /**
56733
+ * Creates a new custom user level for the tenant.
56734
+ * @summary Create a custom user level
56735
+ * @param {UserLevelRequestV2025} userLevelRequestV2025 Payload containing the details of the user level to be created.
56736
+ * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
56737
+ * @param {*} [axiosOptions] Override http request option.
56738
+ * @throws {RequiredError}
56739
+ */
56740
+ createCustomUserLevel(userLevelRequestV2025: UserLevelRequestV2025, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UserLevelSummaryDTOV2025>>;
56741
+ /**
56742
+ * Deletes a specific user level by its ID.
56743
+ * @summary Delete a user level
56744
+ * @param {string} xSailPointExperimental Use this header to enable this experimental API.
56745
+ * @param {string} id The unique identifier of the user level.
56746
+ * @param {*} [axiosOptions] Override http request option.
56747
+ * @throws {RequiredError}
56748
+ */
56749
+ deleteUserLevel(xSailPointExperimental: string, id: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
56750
+ /**
56751
+ * Fetches the details of a specific user level by its ID.
56752
+ * @summary Retrieve a user level
56753
+ * @param {string} id The unique identifier of the user level.
56754
+ * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
56755
+ * @param {*} [axiosOptions] Override http request option.
56756
+ * @throws {RequiredError}
56757
+ */
56758
+ getUserLevel(id: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UserLevelSummaryDTOV2025>>;
56759
+ /**
56760
+ * Retrieves a list of authorization assignable right sets for the tenant.
56761
+ * @summary List all uiAssignable right sets
56762
+ * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
56763
+ * @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: **category**: *eq*
56764
+ * @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: **id, name, category**
56765
+ * @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.
56766
+ * @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.
56767
+ * @param {*} [axiosOptions] Override http request option.
56768
+ * @throws {RequiredError}
56769
+ */
56770
+ listAllAuthorizationRightSets(xSailPointExperimental?: string, filters?: string, sorters?: string, limit?: number, offset?: number, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<HierarchicalRightSetV2025>>>;
56771
+ /**
56772
+ * Retrieves a list of user levels for the tenant.
56773
+ * @summary List user levels
56774
+ * @param {string} xSailPointExperimental Use this header to enable this experimental API.
56775
+ * @param {ListUserLevelsDetailLevelV2025} [detailLevel] Specifies the level of detail for the user levels.
56776
+ * @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: **name**: *co* **owner**: *co* **status**: *eq*
56777
+ * @param {string} [sorters] Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) Sorting is supported for the following fields: **name, created**
56778
+ * @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.
56779
+ * @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.
56780
+ * @param {*} [axiosOptions] Override http request option.
56781
+ * @throws {RequiredError}
56782
+ */
56783
+ listUserLevels(xSailPointExperimental: string, detailLevel?: ListUserLevelsDetailLevelV2025, filters?: string, sorters?: string, limit?: number, offset?: number, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<UserLevelSummaryDTOV2025>>>;
56784
+ /**
56785
+ * Publishes a custom user level for the tenant, making it active and available.
56786
+ * @summary Publish a custom user level
56787
+ * @param {string} id The unique identifier of the user level to publish.
56788
+ * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
56789
+ * @param {*} [axiosOptions] Override http request option.
56790
+ * @throws {RequiredError}
56791
+ */
56792
+ publishCustomUserLevel(id: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UserLevelPublishSummaryV2025>>;
56793
+ /**
56794
+ * Updates the details of a specific user level using JSON Patch.
56795
+ * @summary Update a user level
56796
+ * @param {string} xSailPointExperimental Use this header to enable this experimental API.
56797
+ * @param {string} id The unique identifier of the user level.
56798
+ * @param {JsonPatchV2025} jsonPatchV2025 JSON Patch payload for updating the user level.
56799
+ * @param {*} [axiosOptions] Override http request option.
56800
+ * @throws {RequiredError}
56801
+ */
56802
+ updateUserLevel(xSailPointExperimental: string, id: string, jsonPatchV2025: JsonPatchV2025, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UserLevelSummaryDTOV2025>>;
56803
+ };
56804
+ /**
56805
+ * CustomUserLevelsV2025Api - factory interface
56806
+ * @export
56807
+ */
56808
+ export declare const CustomUserLevelsV2025ApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
56809
+ /**
56810
+ * Creates a new custom user level for the tenant.
56811
+ * @summary Create a custom user level
56812
+ * @param {CustomUserLevelsV2025ApiCreateCustomUserLevelRequest} requestParameters Request parameters.
56813
+ * @param {*} [axiosOptions] Override http request option.
56814
+ * @throws {RequiredError}
56815
+ */
56816
+ createCustomUserLevel(requestParameters: CustomUserLevelsV2025ApiCreateCustomUserLevelRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<UserLevelSummaryDTOV2025>;
56817
+ /**
56818
+ * Deletes a specific user level by its ID.
56819
+ * @summary Delete a user level
56820
+ * @param {CustomUserLevelsV2025ApiDeleteUserLevelRequest} requestParameters Request parameters.
56821
+ * @param {*} [axiosOptions] Override http request option.
56822
+ * @throws {RequiredError}
56823
+ */
56824
+ deleteUserLevel(requestParameters: CustomUserLevelsV2025ApiDeleteUserLevelRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<void>;
56825
+ /**
56826
+ * Fetches the details of a specific user level by its ID.
56827
+ * @summary Retrieve a user level
56828
+ * @param {CustomUserLevelsV2025ApiGetUserLevelRequest} requestParameters Request parameters.
56829
+ * @param {*} [axiosOptions] Override http request option.
56830
+ * @throws {RequiredError}
56831
+ */
56832
+ getUserLevel(requestParameters: CustomUserLevelsV2025ApiGetUserLevelRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<UserLevelSummaryDTOV2025>;
56833
+ /**
56834
+ * Retrieves a list of authorization assignable right sets for the tenant.
56835
+ * @summary List all uiAssignable right sets
56836
+ * @param {CustomUserLevelsV2025ApiListAllAuthorizationRightSetsRequest} requestParameters Request parameters.
56837
+ * @param {*} [axiosOptions] Override http request option.
56838
+ * @throws {RequiredError}
56839
+ */
56840
+ listAllAuthorizationRightSets(requestParameters?: CustomUserLevelsV2025ApiListAllAuthorizationRightSetsRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<HierarchicalRightSetV2025>>;
56841
+ /**
56842
+ * Retrieves a list of user levels for the tenant.
56843
+ * @summary List user levels
56844
+ * @param {CustomUserLevelsV2025ApiListUserLevelsRequest} requestParameters Request parameters.
56845
+ * @param {*} [axiosOptions] Override http request option.
56846
+ * @throws {RequiredError}
56847
+ */
56848
+ listUserLevels(requestParameters: CustomUserLevelsV2025ApiListUserLevelsRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<UserLevelSummaryDTOV2025>>;
56849
+ /**
56850
+ * Publishes a custom user level for the tenant, making it active and available.
56851
+ * @summary Publish a custom user level
56852
+ * @param {CustomUserLevelsV2025ApiPublishCustomUserLevelRequest} requestParameters Request parameters.
56853
+ * @param {*} [axiosOptions] Override http request option.
56854
+ * @throws {RequiredError}
56855
+ */
56856
+ publishCustomUserLevel(requestParameters: CustomUserLevelsV2025ApiPublishCustomUserLevelRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<UserLevelPublishSummaryV2025>;
56857
+ /**
56858
+ * Updates the details of a specific user level using JSON Patch.
56859
+ * @summary Update a user level
56860
+ * @param {CustomUserLevelsV2025ApiUpdateUserLevelRequest} requestParameters Request parameters.
56861
+ * @param {*} [axiosOptions] Override http request option.
56862
+ * @throws {RequiredError}
56863
+ */
56864
+ updateUserLevel(requestParameters: CustomUserLevelsV2025ApiUpdateUserLevelRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<UserLevelSummaryDTOV2025>;
56865
+ };
56866
+ /**
56867
+ * Request parameters for createCustomUserLevel operation in CustomUserLevelsV2025Api.
56868
+ * @export
56869
+ * @interface CustomUserLevelsV2025ApiCreateCustomUserLevelRequest
56870
+ */
56871
+ export interface CustomUserLevelsV2025ApiCreateCustomUserLevelRequest {
56872
+ /**
56873
+ * Payload containing the details of the user level to be created.
56874
+ * @type {UserLevelRequestV2025}
56875
+ * @memberof CustomUserLevelsV2025ApiCreateCustomUserLevel
56876
+ */
56877
+ readonly userLevelRequestV2025: UserLevelRequestV2025;
56878
+ /**
56879
+ * Use this header to enable this experimental API.
56880
+ * @type {string}
56881
+ * @memberof CustomUserLevelsV2025ApiCreateCustomUserLevel
56882
+ */
56883
+ readonly xSailPointExperimental?: string;
56884
+ }
56885
+ /**
56886
+ * Request parameters for deleteUserLevel operation in CustomUserLevelsV2025Api.
56887
+ * @export
56888
+ * @interface CustomUserLevelsV2025ApiDeleteUserLevelRequest
56889
+ */
56890
+ export interface CustomUserLevelsV2025ApiDeleteUserLevelRequest {
56891
+ /**
56892
+ * Use this header to enable this experimental API.
56893
+ * @type {string}
56894
+ * @memberof CustomUserLevelsV2025ApiDeleteUserLevel
56895
+ */
56896
+ readonly xSailPointExperimental: string;
56897
+ /**
56898
+ * The unique identifier of the user level.
56899
+ * @type {string}
56900
+ * @memberof CustomUserLevelsV2025ApiDeleteUserLevel
56901
+ */
56902
+ readonly id: string;
56903
+ }
56904
+ /**
56905
+ * Request parameters for getUserLevel operation in CustomUserLevelsV2025Api.
56906
+ * @export
56907
+ * @interface CustomUserLevelsV2025ApiGetUserLevelRequest
56908
+ */
56909
+ export interface CustomUserLevelsV2025ApiGetUserLevelRequest {
56910
+ /**
56911
+ * The unique identifier of the user level.
56912
+ * @type {string}
56913
+ * @memberof CustomUserLevelsV2025ApiGetUserLevel
56914
+ */
56915
+ readonly id: string;
56916
+ /**
56917
+ * Use this header to enable this experimental API.
56918
+ * @type {string}
56919
+ * @memberof CustomUserLevelsV2025ApiGetUserLevel
56920
+ */
56921
+ readonly xSailPointExperimental?: string;
56922
+ }
56923
+ /**
56924
+ * Request parameters for listAllAuthorizationRightSets operation in CustomUserLevelsV2025Api.
56925
+ * @export
56926
+ * @interface CustomUserLevelsV2025ApiListAllAuthorizationRightSetsRequest
56927
+ */
56928
+ export interface CustomUserLevelsV2025ApiListAllAuthorizationRightSetsRequest {
56929
+ /**
56930
+ * Use this header to enable this experimental API.
56931
+ * @type {string}
56932
+ * @memberof CustomUserLevelsV2025ApiListAllAuthorizationRightSets
56933
+ */
56934
+ readonly xSailPointExperimental?: string;
56935
+ /**
56936
+ * 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: **category**: *eq*
56937
+ * @type {string}
56938
+ * @memberof CustomUserLevelsV2025ApiListAllAuthorizationRightSets
56939
+ */
56940
+ readonly filters?: string;
56941
+ /**
56942
+ * 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: **id, name, category**
56943
+ * @type {string}
56944
+ * @memberof CustomUserLevelsV2025ApiListAllAuthorizationRightSets
56945
+ */
56946
+ readonly sorters?: string;
56947
+ /**
56948
+ * Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
56949
+ * @type {number}
56950
+ * @memberof CustomUserLevelsV2025ApiListAllAuthorizationRightSets
56951
+ */
56952
+ readonly limit?: number;
56953
+ /**
56954
+ * 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.
56955
+ * @type {number}
56956
+ * @memberof CustomUserLevelsV2025ApiListAllAuthorizationRightSets
56957
+ */
56958
+ readonly offset?: number;
56959
+ }
56960
+ /**
56961
+ * Request parameters for listUserLevels operation in CustomUserLevelsV2025Api.
56962
+ * @export
56963
+ * @interface CustomUserLevelsV2025ApiListUserLevelsRequest
56964
+ */
56965
+ export interface CustomUserLevelsV2025ApiListUserLevelsRequest {
56966
+ /**
56967
+ * Use this header to enable this experimental API.
56968
+ * @type {string}
56969
+ * @memberof CustomUserLevelsV2025ApiListUserLevels
56970
+ */
56971
+ readonly xSailPointExperimental: string;
56972
+ /**
56973
+ * Specifies the level of detail for the user levels.
56974
+ * @type {'FULL' | 'SLIM'}
56975
+ * @memberof CustomUserLevelsV2025ApiListUserLevels
56976
+ */
56977
+ readonly detailLevel?: ListUserLevelsDetailLevelV2025;
56978
+ /**
56979
+ * 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: **name**: *co* **owner**: *co* **status**: *eq*
56980
+ * @type {string}
56981
+ * @memberof CustomUserLevelsV2025ApiListUserLevels
56982
+ */
56983
+ readonly filters?: string;
56984
+ /**
56985
+ * Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) Sorting is supported for the following fields: **name, created**
56986
+ * @type {string}
56987
+ * @memberof CustomUserLevelsV2025ApiListUserLevels
56988
+ */
56989
+ readonly sorters?: string;
56990
+ /**
56991
+ * Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
56992
+ * @type {number}
56993
+ * @memberof CustomUserLevelsV2025ApiListUserLevels
56994
+ */
56995
+ readonly limit?: number;
56996
+ /**
56997
+ * 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.
56998
+ * @type {number}
56999
+ * @memberof CustomUserLevelsV2025ApiListUserLevels
57000
+ */
57001
+ readonly offset?: number;
57002
+ }
57003
+ /**
57004
+ * Request parameters for publishCustomUserLevel operation in CustomUserLevelsV2025Api.
57005
+ * @export
57006
+ * @interface CustomUserLevelsV2025ApiPublishCustomUserLevelRequest
57007
+ */
57008
+ export interface CustomUserLevelsV2025ApiPublishCustomUserLevelRequest {
57009
+ /**
57010
+ * The unique identifier of the user level to publish.
57011
+ * @type {string}
57012
+ * @memberof CustomUserLevelsV2025ApiPublishCustomUserLevel
57013
+ */
57014
+ readonly id: string;
57015
+ /**
57016
+ * Use this header to enable this experimental API.
57017
+ * @type {string}
57018
+ * @memberof CustomUserLevelsV2025ApiPublishCustomUserLevel
57019
+ */
57020
+ readonly xSailPointExperimental?: string;
57021
+ }
57022
+ /**
57023
+ * Request parameters for updateUserLevel operation in CustomUserLevelsV2025Api.
57024
+ * @export
57025
+ * @interface CustomUserLevelsV2025ApiUpdateUserLevelRequest
57026
+ */
57027
+ export interface CustomUserLevelsV2025ApiUpdateUserLevelRequest {
57028
+ /**
57029
+ * Use this header to enable this experimental API.
57030
+ * @type {string}
57031
+ * @memberof CustomUserLevelsV2025ApiUpdateUserLevel
57032
+ */
57033
+ readonly xSailPointExperimental: string;
57034
+ /**
57035
+ * The unique identifier of the user level.
57036
+ * @type {string}
57037
+ * @memberof CustomUserLevelsV2025ApiUpdateUserLevel
57038
+ */
57039
+ readonly id: string;
57040
+ /**
57041
+ * JSON Patch payload for updating the user level.
57042
+ * @type {JsonPatchV2025}
57043
+ * @memberof CustomUserLevelsV2025ApiUpdateUserLevel
57044
+ */
57045
+ readonly jsonPatchV2025: JsonPatchV2025;
57046
+ }
57047
+ /**
57048
+ * CustomUserLevelsV2025Api - object-oriented interface
57049
+ * @export
57050
+ * @class CustomUserLevelsV2025Api
57051
+ * @extends {BaseAPI}
57052
+ */
57053
+ export declare class CustomUserLevelsV2025Api extends BaseAPI {
57054
+ /**
57055
+ * Creates a new custom user level for the tenant.
57056
+ * @summary Create a custom user level
57057
+ * @param {CustomUserLevelsV2025ApiCreateCustomUserLevelRequest} requestParameters Request parameters.
57058
+ * @param {*} [axiosOptions] Override http request option.
57059
+ * @throws {RequiredError}
57060
+ * @memberof CustomUserLevelsV2025Api
57061
+ */
57062
+ createCustomUserLevel(requestParameters: CustomUserLevelsV2025ApiCreateCustomUserLevelRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<UserLevelSummaryDTOV2025, any>>;
57063
+ /**
57064
+ * Deletes a specific user level by its ID.
57065
+ * @summary Delete a user level
57066
+ * @param {CustomUserLevelsV2025ApiDeleteUserLevelRequest} requestParameters Request parameters.
57067
+ * @param {*} [axiosOptions] Override http request option.
57068
+ * @throws {RequiredError}
57069
+ * @memberof CustomUserLevelsV2025Api
57070
+ */
57071
+ deleteUserLevel(requestParameters: CustomUserLevelsV2025ApiDeleteUserLevelRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
57072
+ /**
57073
+ * Fetches the details of a specific user level by its ID.
57074
+ * @summary Retrieve a user level
57075
+ * @param {CustomUserLevelsV2025ApiGetUserLevelRequest} requestParameters Request parameters.
57076
+ * @param {*} [axiosOptions] Override http request option.
57077
+ * @throws {RequiredError}
57078
+ * @memberof CustomUserLevelsV2025Api
57079
+ */
57080
+ getUserLevel(requestParameters: CustomUserLevelsV2025ApiGetUserLevelRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<UserLevelSummaryDTOV2025, any>>;
57081
+ /**
57082
+ * Retrieves a list of authorization assignable right sets for the tenant.
57083
+ * @summary List all uiAssignable right sets
57084
+ * @param {CustomUserLevelsV2025ApiListAllAuthorizationRightSetsRequest} requestParameters Request parameters.
57085
+ * @param {*} [axiosOptions] Override http request option.
57086
+ * @throws {RequiredError}
57087
+ * @memberof CustomUserLevelsV2025Api
57088
+ */
57089
+ listAllAuthorizationRightSets(requestParameters?: CustomUserLevelsV2025ApiListAllAuthorizationRightSetsRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<HierarchicalRightSetV2025[], any>>;
57090
+ /**
57091
+ * Retrieves a list of user levels for the tenant.
57092
+ * @summary List user levels
57093
+ * @param {CustomUserLevelsV2025ApiListUserLevelsRequest} requestParameters Request parameters.
57094
+ * @param {*} [axiosOptions] Override http request option.
57095
+ * @throws {RequiredError}
57096
+ * @memberof CustomUserLevelsV2025Api
57097
+ */
57098
+ listUserLevels(requestParameters: CustomUserLevelsV2025ApiListUserLevelsRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<UserLevelSummaryDTOV2025[], any>>;
57099
+ /**
57100
+ * Publishes a custom user level for the tenant, making it active and available.
57101
+ * @summary Publish a custom user level
57102
+ * @param {CustomUserLevelsV2025ApiPublishCustomUserLevelRequest} requestParameters Request parameters.
57103
+ * @param {*} [axiosOptions] Override http request option.
57104
+ * @throws {RequiredError}
57105
+ * @memberof CustomUserLevelsV2025Api
57106
+ */
57107
+ publishCustomUserLevel(requestParameters: CustomUserLevelsV2025ApiPublishCustomUserLevelRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<UserLevelPublishSummaryV2025, any>>;
57108
+ /**
57109
+ * Updates the details of a specific user level using JSON Patch.
57110
+ * @summary Update a user level
57111
+ * @param {CustomUserLevelsV2025ApiUpdateUserLevelRequest} requestParameters Request parameters.
57112
+ * @param {*} [axiosOptions] Override http request option.
57113
+ * @throws {RequiredError}
57114
+ * @memberof CustomUserLevelsV2025Api
57115
+ */
57116
+ updateUserLevel(requestParameters: CustomUserLevelsV2025ApiUpdateUserLevelRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<UserLevelSummaryDTOV2025, any>>;
57117
+ }
57118
+ /**
57119
+ * @export
57120
+ */
57121
+ export declare const ListUserLevelsDetailLevelV2025: {
57122
+ readonly Full: "FULL";
57123
+ readonly Slim: "SLIM";
57124
+ };
57125
+ export type ListUserLevelsDetailLevelV2025 = typeof ListUserLevelsDetailLevelV2025[keyof typeof ListUserLevelsDetailLevelV2025];
55500
57126
  /**
55501
57127
  * DataSegmentationV2025Api - axios parameter creator
55502
57128
  * @export
@@ -56616,51 +58242,46 @@ export declare const EntitlementsV2025ApiAxiosParamCreator: (configuration?: Con
56616
58242
  * @param {string} id The entitlement id.
56617
58243
  * @param {string} attributeKey Technical name of the Attribute.
56618
58244
  * @param {string} attributeValue Technical name of the Attribute Value.
56619
- * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
56620
58245
  * @param {*} [axiosOptions] Override http request option.
56621
58246
  * @throws {RequiredError}
56622
58247
  */
56623
- createAccessModelMetadataForEntitlement: (id: string, attributeKey: string, attributeValue: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
58248
+ createAccessModelMetadataForEntitlement: (id: string, attributeKey: string, attributeValue: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
56624
58249
  /**
56625
58250
  * Remove single Access Model Metadata from an entitlement.
56626
58251
  * @summary Remove metadata from an entitlement.
56627
58252
  * @param {string} id The entitlement id.
56628
58253
  * @param {string} attributeKey Technical name of the Attribute.
56629
58254
  * @param {string} attributeValue Technical name of the Attribute Value.
56630
- * @param {string} xSailPointExperimental Use this header to enable this experimental API.
56631
58255
  * @param {*} [axiosOptions] Override http request option.
56632
58256
  * @throws {RequiredError}
56633
58257
  */
56634
- deleteAccessModelMetadataFromEntitlement: (id: string, attributeKey: string, attributeValue: string, xSailPointExperimental: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
58258
+ deleteAccessModelMetadataFromEntitlement: (id: string, attributeKey: string, attributeValue: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
56635
58259
  /**
56636
58260
  * This API returns an entitlement by its ID.
56637
58261
  * @summary Get an entitlement
56638
58262
  * @param {string} id The entitlement ID
56639
- * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
56640
58263
  * @param {*} [axiosOptions] Override http request option.
56641
58264
  * @throws {RequiredError}
56642
58265
  */
56643
- getEntitlement: (id: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
58266
+ getEntitlement: (id: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
56644
58267
  /**
56645
58268
  * This API returns the entitlement request config for a specified entitlement.
56646
58269
  * @summary Get entitlement request config
56647
58270
  * @param {string} id Entitlement Id
56648
- * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
56649
58271
  * @param {*} [axiosOptions] Override http request option.
56650
58272
  * @throws {RequiredError}
56651
58273
  */
56652
- getEntitlementRequestConfig: (id: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
58274
+ getEntitlementRequestConfig: (id: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
56653
58275
  /**
56654
58276
  * Starts an entitlement aggregation on the specified source. Though this endpoint has been deprecated, you can find its Beta equivalent [here](https://developer.sailpoint.com/docs/api/beta/import-entitlements). If the target source is a direct connection, then the request body must be empty. You will also need to make sure the Content-Type header is not set. If you set the Content-Type header without specifying a body, then you will receive a 500 error. If the target source is a delimited file source, then the CSV file needs to be included in the request body. You will also need to set the Content-Type header to `multipart/form-data`.
56655
58277
  * @summary Aggregate entitlements
56656
58278
  * @param {string} id Source Id
56657
- * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
56658
58279
  * @param {File} [csvFile] The CSV file containing the source entitlements to aggregate.
56659
58280
  * @param {*} [axiosOptions] Override http request option.
56660
58281
  * @deprecated
56661
58282
  * @throws {RequiredError}
56662
58283
  */
56663
- importEntitlementsBySource: (id: string, xSailPointExperimental?: string, csvFile?: File, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
58284
+ importEntitlementsBySource: (id: string, csvFile?: File, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
56664
58285
  /**
56665
58286
  * This API returns a list of all child entitlements of a given entitlement.
56666
58287
  * @summary List of entitlements children
@@ -56670,11 +58291,10 @@ export declare const EntitlementsV2025ApiAxiosParamCreator: (configuration?: Con
56670
58291
  * @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.
56671
58292
  * @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: **id, name, created, modified, type, attribute, value, source.id**
56672
58293
  * @param {string} [filters] Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **id**: *eq, in* **name**: *eq, in, sw* **type**: *eq, in* **attribute**: *eq, in* **value**: *eq, in, sw* **source.id**: *eq, in* **requestable**: *eq* **created**: *gt, lt, ge, le* **modified**: *gt, lt, ge, le*
56673
- * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
56674
58294
  * @param {*} [axiosOptions] Override http request option.
56675
58295
  * @throws {RequiredError}
56676
58296
  */
56677
- listEntitlementChildren: (id: string, limit?: number, offset?: number, count?: boolean, sorters?: string, filters?: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
58297
+ listEntitlementChildren: (id: string, limit?: number, offset?: number, count?: boolean, sorters?: string, filters?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
56678
58298
  /**
56679
58299
  * This API returns a list of all parent entitlements of a given entitlement.
56680
58300
  * @summary List of entitlements parents
@@ -56684,16 +58304,15 @@ export declare const EntitlementsV2025ApiAxiosParamCreator: (configuration?: Con
56684
58304
  * @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.
56685
58305
  * @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: **id, name, created, modified, type, attribute, value, source.id**
56686
58306
  * @param {string} [filters] Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **id**: *eq, in* **name**: *eq, in, sw* **type**: *eq, in* **attribute**: *eq, in* **value**: *eq, in, sw* **source.id**: *eq, in* **requestable**: *eq* **created**: *gt, lt, ge, le* **modified**: *gt, lt, ge, le*
56687
- * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
56688
58307
  * @param {*} [axiosOptions] Override http request option.
56689
58308
  * @throws {RequiredError}
56690
58309
  */
56691
- listEntitlementParents: (id: string, limit?: number, offset?: number, count?: boolean, sorters?: string, filters?: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
58310
+ listEntitlementParents: (id: string, limit?: number, offset?: number, count?: boolean, sorters?: string, filters?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
56692
58311
  /**
56693
58312
  * This API returns a list of entitlements. This API can be used in one of the two following ways: either getting entitlements for a specific **account-id**, or getting via use of **filters** (those two options are exclusive). Any authenticated token can call this API.
56694
58313
  * @summary Gets a list of entitlements.
56695
58314
  * @param {string} [accountId] The account ID. If specified, returns only entitlements associated with the given Account. Cannot be specified with the **filters**, **segmented-for-identity**, **for-segment-ids**, or **include-unsegmented** param(s).
56696
- * @param {string} [segmentedForIdentity] If present and not empty, additionally filters Entitlements to those which are assigned to the Segment(s) which are visible to the Identity with the specified ID. By convention, the value **me** can stand in for the current user\&#39;s Identity ID. Cannot be specified with the **account-id** or **for-segment-ids** param(s). It is also illegal to specify a value that refers to a different user\&#39;s Identity.
58315
+ * @param {string} [segmentedForIdentity] If present and not empty, additionally filters Entitlements to those which are assigned to the Segment(s) which are visible to the Identity with the specified ID. Cannot be specified with the **account-id** or **for-segment-ids** param(s). It is also illegal to specify a value that refers to a different user\&#39;s Identity.
56697
58316
  * @param {string} [forSegmentIds] If present and not empty, additionally filters Access Profiles to those which are assigned to the Segment(s) with the specified IDs. Cannot be specified with the **account-id** or **segmented-for-identity** param(s).
56698
58317
  * @param {boolean} [includeUnsegmented] Whether or not the response list should contain unsegmented Entitlements. If **for-segment-ids** and **segmented-for-identity** are both absent or empty, specifying **include-unsegmented&#x3D;false** results in an error.
56699
58318
  * @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.
@@ -56701,49 +58320,44 @@ export declare const EntitlementsV2025ApiAxiosParamCreator: (configuration?: Con
56701
58320
  * @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.
56702
58321
  * @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: **id, name, created, modified, type, attribute, value, source.id, requestable**
56703
58322
  * @param {string} [filters] Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **id**: *eq, in* **name**: *eq, in, sw* **type**: *eq, in* **attribute**: *eq, in* **value**: *eq, in, sw* **source.id**: *eq, in* **requestable**: *eq* **created**: *gt, lt, ge, le* **modified**: *gt, lt, ge, le* **owner.id**: *eq, in*
56704
- * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
56705
58323
  * @param {*} [axiosOptions] Override http request option.
56706
58324
  * @throws {RequiredError}
56707
58325
  */
56708
- listEntitlements: (accountId?: string, segmentedForIdentity?: string, forSegmentIds?: string, includeUnsegmented?: boolean, offset?: number, limit?: number, count?: boolean, sorters?: string, filters?: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
58326
+ listEntitlements: (accountId?: string, segmentedForIdentity?: string, forSegmentIds?: string, includeUnsegmented?: boolean, offset?: number, limit?: number, count?: boolean, sorters?: string, filters?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
56709
58327
  /**
56710
58328
  * This API updates an existing entitlement using [JSON Patch](https://tools.ietf.org/html/rfc6902) syntax. The following fields are patchable: **requestable**, **privileged**, **segments**, **owner**, **name**, **description**, and **manuallyUpdatedFields** When you\'re patching owner, only owner type and owner id must be provided. Owner name is optional, and it won\'t be modified. If the owner name is provided, it should correspond to the real name. The only owner type currently supported is IDENTITY.
56711
58329
  * @summary Patch an entitlement
56712
58330
  * @param {string} id ID of the entitlement to patch
56713
- * @param {string} xSailPointExperimental Use this header to enable this experimental API.
56714
58331
  * @param {Array<JsonPatchOperationV2025>} [jsonPatchOperationV2025]
56715
58332
  * @param {*} [axiosOptions] Override http request option.
56716
58333
  * @throws {RequiredError}
56717
58334
  */
56718
- patchEntitlement: (id: string, xSailPointExperimental: string, jsonPatchOperationV2025?: Array<JsonPatchOperationV2025>, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
58335
+ patchEntitlement: (id: string, jsonPatchOperationV2025?: Array<JsonPatchOperationV2025>, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
56719
58336
  /**
56720
58337
  * This API replaces the entitlement request config for a specified entitlement.
56721
58338
  * @summary Replace entitlement request config
56722
58339
  * @param {string} id Entitlement ID
56723
- * @param {string} xSailPointExperimental Use this header to enable this experimental API.
56724
58340
  * @param {EntitlementRequestConfigV2025} entitlementRequestConfigV2025
56725
58341
  * @param {*} [axiosOptions] Override http request option.
56726
58342
  * @throws {RequiredError}
56727
58343
  */
56728
- putEntitlementRequestConfig: (id: string, xSailPointExperimental: string, entitlementRequestConfigV2025: EntitlementRequestConfigV2025, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
58344
+ putEntitlementRequestConfig: (id: string, entitlementRequestConfigV2025: EntitlementRequestConfigV2025, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
56729
58345
  /**
56730
58346
  * Remove all entitlements from a specific source. To reload the accounts along with the entitlements you removed, you must run an unoptimized aggregation. To do so, use [Account Aggregation](https://developer.sailpoint.com/docs/api/v2024/import-accounts/) with `disableOptimization` = `true`.
56731
58347
  * @summary Reset source entitlements
56732
58348
  * @param {string} id ID of source for the entitlement reset
56733
- * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
56734
58349
  * @param {*} [axiosOptions] Override http request option.
56735
58350
  * @throws {RequiredError}
56736
58351
  */
56737
- resetSourceEntitlements: (id: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
58352
+ resetSourceEntitlements: (id: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
56738
58353
  /**
56739
- * \"This API applies an update to every entitlement of the list.\\n\\nThe\\ \\ number of entitlements to update is limited to 50 items maximum.\\n\\nThe JsonPatch\\ \\ update follows the [JSON Patch](https://tools.ietf.org/html/rfc6902) standard.\\ \\ allowed operations : `**{ \\\"op\\\": \\\"replace\\\", \\\"path\\\": \\\"/privileged\\\", \\\"\\ value\\\": boolean }** **{ \\\"op\\\": \\\"replace\\\", \\\"path\\\": \\\"/requestable\\\",\\\"value\\\"\\ : boolean }**`\"
58354
+ * This API applies an update to every entitlement of the list. The number of entitlements to update is limited to 50 items maximum. The JsonPatch update follows the [JSON Patch](https://tools.ietf.org/html/rfc6902) standard. examples of allowed operations : `**{ \"op\": \"replace\", \"path\": \"/privileged\", \"value\": boolean }**` `**{ \"op\": \"replace\", \"path\": \"/requestable\",\"value\": boolean }**` `**{ \"op\": \"replace\", \"path\": \"/privilegeOverride/overrideLevel\",\"value\": string }**` A token with ORG_ADMIN or API authority is required to call this API.
56740
58355
  * @summary Bulk update an entitlement list
56741
58356
  * @param {EntitlementBulkUpdateRequestV2025} entitlementBulkUpdateRequestV2025
56742
- * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
56743
58357
  * @param {*} [axiosOptions] Override http request option.
56744
58358
  * @throws {RequiredError}
56745
58359
  */
56746
- updateEntitlementsInBulk: (entitlementBulkUpdateRequestV2025: EntitlementBulkUpdateRequestV2025, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
58360
+ updateEntitlementsInBulk: (entitlementBulkUpdateRequestV2025: EntitlementBulkUpdateRequestV2025, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
56747
58361
  };
56748
58362
  /**
56749
58363
  * EntitlementsV2025Api - functional programming interface
@@ -56756,51 +58370,46 @@ export declare const EntitlementsV2025ApiFp: (configuration?: Configuration) =>
56756
58370
  * @param {string} id The entitlement id.
56757
58371
  * @param {string} attributeKey Technical name of the Attribute.
56758
58372
  * @param {string} attributeValue Technical name of the Attribute Value.
56759
- * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
56760
58373
  * @param {*} [axiosOptions] Override http request option.
56761
58374
  * @throws {RequiredError}
56762
58375
  */
56763
- createAccessModelMetadataForEntitlement(id: string, attributeKey: string, attributeValue: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EntitlementV2025>>;
58376
+ createAccessModelMetadataForEntitlement(id: string, attributeKey: string, attributeValue: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EntitlementV2025>>;
56764
58377
  /**
56765
58378
  * Remove single Access Model Metadata from an entitlement.
56766
58379
  * @summary Remove metadata from an entitlement.
56767
58380
  * @param {string} id The entitlement id.
56768
58381
  * @param {string} attributeKey Technical name of the Attribute.
56769
58382
  * @param {string} attributeValue Technical name of the Attribute Value.
56770
- * @param {string} xSailPointExperimental Use this header to enable this experimental API.
56771
58383
  * @param {*} [axiosOptions] Override http request option.
56772
58384
  * @throws {RequiredError}
56773
58385
  */
56774
- deleteAccessModelMetadataFromEntitlement(id: string, attributeKey: string, attributeValue: string, xSailPointExperimental: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
58386
+ deleteAccessModelMetadataFromEntitlement(id: string, attributeKey: string, attributeValue: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
56775
58387
  /**
56776
58388
  * This API returns an entitlement by its ID.
56777
58389
  * @summary Get an entitlement
56778
58390
  * @param {string} id The entitlement ID
56779
- * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
56780
58391
  * @param {*} [axiosOptions] Override http request option.
56781
58392
  * @throws {RequiredError}
56782
58393
  */
56783
- getEntitlement(id: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EntitlementV2025>>;
58394
+ getEntitlement(id: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EntitlementV2025>>;
56784
58395
  /**
56785
58396
  * This API returns the entitlement request config for a specified entitlement.
56786
58397
  * @summary Get entitlement request config
56787
58398
  * @param {string} id Entitlement Id
56788
- * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
56789
58399
  * @param {*} [axiosOptions] Override http request option.
56790
58400
  * @throws {RequiredError}
56791
58401
  */
56792
- getEntitlementRequestConfig(id: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EntitlementRequestConfigV2025>>;
58402
+ getEntitlementRequestConfig(id: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EntitlementRequestConfigV2025>>;
56793
58403
  /**
56794
58404
  * Starts an entitlement aggregation on the specified source. Though this endpoint has been deprecated, you can find its Beta equivalent [here](https://developer.sailpoint.com/docs/api/beta/import-entitlements). If the target source is a direct connection, then the request body must be empty. You will also need to make sure the Content-Type header is not set. If you set the Content-Type header without specifying a body, then you will receive a 500 error. If the target source is a delimited file source, then the CSV file needs to be included in the request body. You will also need to set the Content-Type header to `multipart/form-data`.
56795
58405
  * @summary Aggregate entitlements
56796
58406
  * @param {string} id Source Id
56797
- * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
56798
58407
  * @param {File} [csvFile] The CSV file containing the source entitlements to aggregate.
56799
58408
  * @param {*} [axiosOptions] Override http request option.
56800
58409
  * @deprecated
56801
58410
  * @throws {RequiredError}
56802
58411
  */
56803
- importEntitlementsBySource(id: string, xSailPointExperimental?: string, csvFile?: File, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<LoadEntitlementTaskV2025>>;
58412
+ importEntitlementsBySource(id: string, csvFile?: File, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<LoadEntitlementTaskV2025>>;
56804
58413
  /**
56805
58414
  * This API returns a list of all child entitlements of a given entitlement.
56806
58415
  * @summary List of entitlements children
@@ -56810,11 +58419,10 @@ export declare const EntitlementsV2025ApiFp: (configuration?: Configuration) =>
56810
58419
  * @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.
56811
58420
  * @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: **id, name, created, modified, type, attribute, value, source.id**
56812
58421
  * @param {string} [filters] Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **id**: *eq, in* **name**: *eq, in, sw* **type**: *eq, in* **attribute**: *eq, in* **value**: *eq, in, sw* **source.id**: *eq, in* **requestable**: *eq* **created**: *gt, lt, ge, le* **modified**: *gt, lt, ge, le*
56813
- * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
56814
58422
  * @param {*} [axiosOptions] Override http request option.
56815
58423
  * @throws {RequiredError}
56816
58424
  */
56817
- listEntitlementChildren(id: string, limit?: number, offset?: number, count?: boolean, sorters?: string, filters?: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<EntitlementV2025>>>;
58425
+ listEntitlementChildren(id: string, limit?: number, offset?: number, count?: boolean, sorters?: string, filters?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<EntitlementV2025>>>;
56818
58426
  /**
56819
58427
  * This API returns a list of all parent entitlements of a given entitlement.
56820
58428
  * @summary List of entitlements parents
@@ -56824,16 +58432,15 @@ export declare const EntitlementsV2025ApiFp: (configuration?: Configuration) =>
56824
58432
  * @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.
56825
58433
  * @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: **id, name, created, modified, type, attribute, value, source.id**
56826
58434
  * @param {string} [filters] Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **id**: *eq, in* **name**: *eq, in, sw* **type**: *eq, in* **attribute**: *eq, in* **value**: *eq, in, sw* **source.id**: *eq, in* **requestable**: *eq* **created**: *gt, lt, ge, le* **modified**: *gt, lt, ge, le*
56827
- * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
56828
58435
  * @param {*} [axiosOptions] Override http request option.
56829
58436
  * @throws {RequiredError}
56830
58437
  */
56831
- listEntitlementParents(id: string, limit?: number, offset?: number, count?: boolean, sorters?: string, filters?: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<EntitlementV2025>>>;
58438
+ listEntitlementParents(id: string, limit?: number, offset?: number, count?: boolean, sorters?: string, filters?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<EntitlementV2025>>>;
56832
58439
  /**
56833
58440
  * This API returns a list of entitlements. This API can be used in one of the two following ways: either getting entitlements for a specific **account-id**, or getting via use of **filters** (those two options are exclusive). Any authenticated token can call this API.
56834
58441
  * @summary Gets a list of entitlements.
56835
58442
  * @param {string} [accountId] The account ID. If specified, returns only entitlements associated with the given Account. Cannot be specified with the **filters**, **segmented-for-identity**, **for-segment-ids**, or **include-unsegmented** param(s).
56836
- * @param {string} [segmentedForIdentity] If present and not empty, additionally filters Entitlements to those which are assigned to the Segment(s) which are visible to the Identity with the specified ID. By convention, the value **me** can stand in for the current user\&#39;s Identity ID. Cannot be specified with the **account-id** or **for-segment-ids** param(s). It is also illegal to specify a value that refers to a different user\&#39;s Identity.
58443
+ * @param {string} [segmentedForIdentity] If present and not empty, additionally filters Entitlements to those which are assigned to the Segment(s) which are visible to the Identity with the specified ID. Cannot be specified with the **account-id** or **for-segment-ids** param(s). It is also illegal to specify a value that refers to a different user\&#39;s Identity.
56837
58444
  * @param {string} [forSegmentIds] If present and not empty, additionally filters Access Profiles to those which are assigned to the Segment(s) with the specified IDs. Cannot be specified with the **account-id** or **segmented-for-identity** param(s).
56838
58445
  * @param {boolean} [includeUnsegmented] Whether or not the response list should contain unsegmented Entitlements. If **for-segment-ids** and **segmented-for-identity** are both absent or empty, specifying **include-unsegmented&#x3D;false** results in an error.
56839
58446
  * @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.
@@ -56841,49 +58448,44 @@ export declare const EntitlementsV2025ApiFp: (configuration?: Configuration) =>
56841
58448
  * @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.
56842
58449
  * @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: **id, name, created, modified, type, attribute, value, source.id, requestable**
56843
58450
  * @param {string} [filters] Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **id**: *eq, in* **name**: *eq, in, sw* **type**: *eq, in* **attribute**: *eq, in* **value**: *eq, in, sw* **source.id**: *eq, in* **requestable**: *eq* **created**: *gt, lt, ge, le* **modified**: *gt, lt, ge, le* **owner.id**: *eq, in*
56844
- * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
56845
58451
  * @param {*} [axiosOptions] Override http request option.
56846
58452
  * @throws {RequiredError}
56847
58453
  */
56848
- listEntitlements(accountId?: string, segmentedForIdentity?: string, forSegmentIds?: string, includeUnsegmented?: boolean, offset?: number, limit?: number, count?: boolean, sorters?: string, filters?: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<EntitlementV2025>>>;
58454
+ listEntitlements(accountId?: string, segmentedForIdentity?: string, forSegmentIds?: string, includeUnsegmented?: boolean, offset?: number, limit?: number, count?: boolean, sorters?: string, filters?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<EntitlementV2025>>>;
56849
58455
  /**
56850
58456
  * This API updates an existing entitlement using [JSON Patch](https://tools.ietf.org/html/rfc6902) syntax. The following fields are patchable: **requestable**, **privileged**, **segments**, **owner**, **name**, **description**, and **manuallyUpdatedFields** When you\'re patching owner, only owner type and owner id must be provided. Owner name is optional, and it won\'t be modified. If the owner name is provided, it should correspond to the real name. The only owner type currently supported is IDENTITY.
56851
58457
  * @summary Patch an entitlement
56852
58458
  * @param {string} id ID of the entitlement to patch
56853
- * @param {string} xSailPointExperimental Use this header to enable this experimental API.
56854
58459
  * @param {Array<JsonPatchOperationV2025>} [jsonPatchOperationV2025]
56855
58460
  * @param {*} [axiosOptions] Override http request option.
56856
58461
  * @throws {RequiredError}
56857
58462
  */
56858
- patchEntitlement(id: string, xSailPointExperimental: string, jsonPatchOperationV2025?: Array<JsonPatchOperationV2025>, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EntitlementV2025>>;
58463
+ patchEntitlement(id: string, jsonPatchOperationV2025?: Array<JsonPatchOperationV2025>, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EntitlementV2025>>;
56859
58464
  /**
56860
58465
  * This API replaces the entitlement request config for a specified entitlement.
56861
58466
  * @summary Replace entitlement request config
56862
58467
  * @param {string} id Entitlement ID
56863
- * @param {string} xSailPointExperimental Use this header to enable this experimental API.
56864
58468
  * @param {EntitlementRequestConfigV2025} entitlementRequestConfigV2025
56865
58469
  * @param {*} [axiosOptions] Override http request option.
56866
58470
  * @throws {RequiredError}
56867
58471
  */
56868
- putEntitlementRequestConfig(id: string, xSailPointExperimental: string, entitlementRequestConfigV2025: EntitlementRequestConfigV2025, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EntitlementRequestConfigV2025>>;
58472
+ putEntitlementRequestConfig(id: string, entitlementRequestConfigV2025: EntitlementRequestConfigV2025, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EntitlementRequestConfigV2025>>;
56869
58473
  /**
56870
58474
  * Remove all entitlements from a specific source. To reload the accounts along with the entitlements you removed, you must run an unoptimized aggregation. To do so, use [Account Aggregation](https://developer.sailpoint.com/docs/api/v2024/import-accounts/) with `disableOptimization` = `true`.
56871
58475
  * @summary Reset source entitlements
56872
58476
  * @param {string} id ID of source for the entitlement reset
56873
- * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
56874
58477
  * @param {*} [axiosOptions] Override http request option.
56875
58478
  * @throws {RequiredError}
56876
58479
  */
56877
- resetSourceEntitlements(id: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EntitlementSourceResetBaseReferenceDtoV2025>>;
58480
+ resetSourceEntitlements(id: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EntitlementSourceResetBaseReferenceDtoV2025>>;
56878
58481
  /**
56879
- * \"This API applies an update to every entitlement of the list.\\n\\nThe\\ \\ number of entitlements to update is limited to 50 items maximum.\\n\\nThe JsonPatch\\ \\ update follows the [JSON Patch](https://tools.ietf.org/html/rfc6902) standard.\\ \\ allowed operations : `**{ \\\"op\\\": \\\"replace\\\", \\\"path\\\": \\\"/privileged\\\", \\\"\\ value\\\": boolean }** **{ \\\"op\\\": \\\"replace\\\", \\\"path\\\": \\\"/requestable\\\",\\\"value\\\"\\ : boolean }**`\"
58482
+ * This API applies an update to every entitlement of the list. The number of entitlements to update is limited to 50 items maximum. The JsonPatch update follows the [JSON Patch](https://tools.ietf.org/html/rfc6902) standard. examples of allowed operations : `**{ \"op\": \"replace\", \"path\": \"/privileged\", \"value\": boolean }**` `**{ \"op\": \"replace\", \"path\": \"/requestable\",\"value\": boolean }**` `**{ \"op\": \"replace\", \"path\": \"/privilegeOverride/overrideLevel\",\"value\": string }**` A token with ORG_ADMIN or API authority is required to call this API.
56880
58483
  * @summary Bulk update an entitlement list
56881
58484
  * @param {EntitlementBulkUpdateRequestV2025} entitlementBulkUpdateRequestV2025
56882
- * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
56883
58485
  * @param {*} [axiosOptions] Override http request option.
56884
58486
  * @throws {RequiredError}
56885
58487
  */
56886
- updateEntitlementsInBulk(entitlementBulkUpdateRequestV2025: EntitlementBulkUpdateRequestV2025, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
58488
+ updateEntitlementsInBulk(entitlementBulkUpdateRequestV2025: EntitlementBulkUpdateRequestV2025, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
56887
58489
  };
56888
58490
  /**
56889
58491
  * EntitlementsV2025Api - factory interface
@@ -56980,7 +58582,7 @@ export declare const EntitlementsV2025ApiFactory: (configuration?: Configuration
56980
58582
  */
56981
58583
  resetSourceEntitlements(requestParameters: EntitlementsV2025ApiResetSourceEntitlementsRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<EntitlementSourceResetBaseReferenceDtoV2025>;
56982
58584
  /**
56983
- * \"This API applies an update to every entitlement of the list.\\n\\nThe\\ \\ number of entitlements to update is limited to 50 items maximum.\\n\\nThe JsonPatch\\ \\ update follows the [JSON Patch](https://tools.ietf.org/html/rfc6902) standard.\\ \\ allowed operations : `**{ \\\"op\\\": \\\"replace\\\", \\\"path\\\": \\\"/privileged\\\", \\\"\\ value\\\": boolean }** **{ \\\"op\\\": \\\"replace\\\", \\\"path\\\": \\\"/requestable\\\",\\\"value\\\"\\ : boolean }**`\"
58585
+ * This API applies an update to every entitlement of the list. The number of entitlements to update is limited to 50 items maximum. The JsonPatch update follows the [JSON Patch](https://tools.ietf.org/html/rfc6902) standard. examples of allowed operations : `**{ \"op\": \"replace\", \"path\": \"/privileged\", \"value\": boolean }**` `**{ \"op\": \"replace\", \"path\": \"/requestable\",\"value\": boolean }**` `**{ \"op\": \"replace\", \"path\": \"/privilegeOverride/overrideLevel\",\"value\": string }**` A token with ORG_ADMIN or API authority is required to call this API.
56984
58586
  * @summary Bulk update an entitlement list
56985
58587
  * @param {EntitlementsV2025ApiUpdateEntitlementsInBulkRequest} requestParameters Request parameters.
56986
58588
  * @param {*} [axiosOptions] Override http request option.
@@ -57012,12 +58614,6 @@ export interface EntitlementsV2025ApiCreateAccessModelMetadataForEntitlementRequ
57012
58614
  * @memberof EntitlementsV2025ApiCreateAccessModelMetadataForEntitlement
57013
58615
  */
57014
58616
  readonly attributeValue: string;
57015
- /**
57016
- * Use this header to enable this experimental API.
57017
- * @type {string}
57018
- * @memberof EntitlementsV2025ApiCreateAccessModelMetadataForEntitlement
57019
- */
57020
- readonly xSailPointExperimental?: string;
57021
58617
  }
57022
58618
  /**
57023
58619
  * Request parameters for deleteAccessModelMetadataFromEntitlement operation in EntitlementsV2025Api.
@@ -57043,12 +58639,6 @@ export interface EntitlementsV2025ApiDeleteAccessModelMetadataFromEntitlementReq
57043
58639
  * @memberof EntitlementsV2025ApiDeleteAccessModelMetadataFromEntitlement
57044
58640
  */
57045
58641
  readonly attributeValue: string;
57046
- /**
57047
- * Use this header to enable this experimental API.
57048
- * @type {string}
57049
- * @memberof EntitlementsV2025ApiDeleteAccessModelMetadataFromEntitlement
57050
- */
57051
- readonly xSailPointExperimental: string;
57052
58642
  }
57053
58643
  /**
57054
58644
  * Request parameters for getEntitlement operation in EntitlementsV2025Api.
@@ -57062,12 +58652,6 @@ export interface EntitlementsV2025ApiGetEntitlementRequest {
57062
58652
  * @memberof EntitlementsV2025ApiGetEntitlement
57063
58653
  */
57064
58654
  readonly id: string;
57065
- /**
57066
- * Use this header to enable this experimental API.
57067
- * @type {string}
57068
- * @memberof EntitlementsV2025ApiGetEntitlement
57069
- */
57070
- readonly xSailPointExperimental?: string;
57071
58655
  }
57072
58656
  /**
57073
58657
  * Request parameters for getEntitlementRequestConfig operation in EntitlementsV2025Api.
@@ -57081,12 +58665,6 @@ export interface EntitlementsV2025ApiGetEntitlementRequestConfigRequest {
57081
58665
  * @memberof EntitlementsV2025ApiGetEntitlementRequestConfig
57082
58666
  */
57083
58667
  readonly id: string;
57084
- /**
57085
- * Use this header to enable this experimental API.
57086
- * @type {string}
57087
- * @memberof EntitlementsV2025ApiGetEntitlementRequestConfig
57088
- */
57089
- readonly xSailPointExperimental?: string;
57090
58668
  }
57091
58669
  /**
57092
58670
  * Request parameters for importEntitlementsBySource operation in EntitlementsV2025Api.
@@ -57100,12 +58678,6 @@ export interface EntitlementsV2025ApiImportEntitlementsBySourceRequest {
57100
58678
  * @memberof EntitlementsV2025ApiImportEntitlementsBySource
57101
58679
  */
57102
58680
  readonly id: string;
57103
- /**
57104
- * Use this header to enable this experimental API.
57105
- * @type {string}
57106
- * @memberof EntitlementsV2025ApiImportEntitlementsBySource
57107
- */
57108
- readonly xSailPointExperimental?: string;
57109
58681
  /**
57110
58682
  * The CSV file containing the source entitlements to aggregate.
57111
58683
  * @type {File}
@@ -57155,12 +58727,6 @@ export interface EntitlementsV2025ApiListEntitlementChildrenRequest {
57155
58727
  * @memberof EntitlementsV2025ApiListEntitlementChildren
57156
58728
  */
57157
58729
  readonly filters?: string;
57158
- /**
57159
- * Use this header to enable this experimental API.
57160
- * @type {string}
57161
- * @memberof EntitlementsV2025ApiListEntitlementChildren
57162
- */
57163
- readonly xSailPointExperimental?: string;
57164
58730
  }
57165
58731
  /**
57166
58732
  * Request parameters for listEntitlementParents operation in EntitlementsV2025Api.
@@ -57204,12 +58770,6 @@ export interface EntitlementsV2025ApiListEntitlementParentsRequest {
57204
58770
  * @memberof EntitlementsV2025ApiListEntitlementParents
57205
58771
  */
57206
58772
  readonly filters?: string;
57207
- /**
57208
- * Use this header to enable this experimental API.
57209
- * @type {string}
57210
- * @memberof EntitlementsV2025ApiListEntitlementParents
57211
- */
57212
- readonly xSailPointExperimental?: string;
57213
58773
  }
57214
58774
  /**
57215
58775
  * Request parameters for listEntitlements operation in EntitlementsV2025Api.
@@ -57224,7 +58784,7 @@ export interface EntitlementsV2025ApiListEntitlementsRequest {
57224
58784
  */
57225
58785
  readonly accountId?: string;
57226
58786
  /**
57227
- * If present and not empty, additionally filters Entitlements to those which are assigned to the Segment(s) which are visible to the Identity with the specified ID. By convention, the value **me** can stand in for the current user\&#39;s Identity ID. Cannot be specified with the **account-id** or **for-segment-ids** param(s). It is also illegal to specify a value that refers to a different user\&#39;s Identity.
58787
+ * If present and not empty, additionally filters Entitlements to those which are assigned to the Segment(s) which are visible to the Identity with the specified ID. Cannot be specified with the **account-id** or **for-segment-ids** param(s). It is also illegal to specify a value that refers to a different user\&#39;s Identity.
57228
58788
  * @type {string}
57229
58789
  * @memberof EntitlementsV2025ApiListEntitlements
57230
58790
  */
@@ -57271,12 +58831,6 @@ export interface EntitlementsV2025ApiListEntitlementsRequest {
57271
58831
  * @memberof EntitlementsV2025ApiListEntitlements
57272
58832
  */
57273
58833
  readonly filters?: string;
57274
- /**
57275
- * Use this header to enable this experimental API.
57276
- * @type {string}
57277
- * @memberof EntitlementsV2025ApiListEntitlements
57278
- */
57279
- readonly xSailPointExperimental?: string;
57280
58834
  }
57281
58835
  /**
57282
58836
  * Request parameters for patchEntitlement operation in EntitlementsV2025Api.
@@ -57290,12 +58844,6 @@ export interface EntitlementsV2025ApiPatchEntitlementRequest {
57290
58844
  * @memberof EntitlementsV2025ApiPatchEntitlement
57291
58845
  */
57292
58846
  readonly id: string;
57293
- /**
57294
- * Use this header to enable this experimental API.
57295
- * @type {string}
57296
- * @memberof EntitlementsV2025ApiPatchEntitlement
57297
- */
57298
- readonly xSailPointExperimental: string;
57299
58847
  /**
57300
58848
  *
57301
58849
  * @type {Array<JsonPatchOperationV2025>}
@@ -57315,12 +58863,6 @@ export interface EntitlementsV2025ApiPutEntitlementRequestConfigRequest {
57315
58863
  * @memberof EntitlementsV2025ApiPutEntitlementRequestConfig
57316
58864
  */
57317
58865
  readonly id: string;
57318
- /**
57319
- * Use this header to enable this experimental API.
57320
- * @type {string}
57321
- * @memberof EntitlementsV2025ApiPutEntitlementRequestConfig
57322
- */
57323
- readonly xSailPointExperimental: string;
57324
58866
  /**
57325
58867
  *
57326
58868
  * @type {EntitlementRequestConfigV2025}
@@ -57340,12 +58882,6 @@ export interface EntitlementsV2025ApiResetSourceEntitlementsRequest {
57340
58882
  * @memberof EntitlementsV2025ApiResetSourceEntitlements
57341
58883
  */
57342
58884
  readonly id: string;
57343
- /**
57344
- * Use this header to enable this experimental API.
57345
- * @type {string}
57346
- * @memberof EntitlementsV2025ApiResetSourceEntitlements
57347
- */
57348
- readonly xSailPointExperimental?: string;
57349
58885
  }
57350
58886
  /**
57351
58887
  * Request parameters for updateEntitlementsInBulk operation in EntitlementsV2025Api.
@@ -57359,12 +58895,6 @@ export interface EntitlementsV2025ApiUpdateEntitlementsInBulkRequest {
57359
58895
  * @memberof EntitlementsV2025ApiUpdateEntitlementsInBulk
57360
58896
  */
57361
58897
  readonly entitlementBulkUpdateRequestV2025: EntitlementBulkUpdateRequestV2025;
57362
- /**
57363
- * Use this header to enable this experimental API.
57364
- * @type {string}
57365
- * @memberof EntitlementsV2025ApiUpdateEntitlementsInBulk
57366
- */
57367
- readonly xSailPointExperimental?: string;
57368
58898
  }
57369
58899
  /**
57370
58900
  * EntitlementsV2025Api - object-oriented interface
@@ -57474,7 +59004,7 @@ export declare class EntitlementsV2025Api extends BaseAPI {
57474
59004
  */
57475
59005
  resetSourceEntitlements(requestParameters: EntitlementsV2025ApiResetSourceEntitlementsRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<EntitlementSourceResetBaseReferenceDtoV2025, any>>;
57476
59006
  /**
57477
- * \"This API applies an update to every entitlement of the list.\\n\\nThe\\ \\ number of entitlements to update is limited to 50 items maximum.\\n\\nThe JsonPatch\\ \\ update follows the [JSON Patch](https://tools.ietf.org/html/rfc6902) standard.\\ \\ allowed operations : `**{ \\\"op\\\": \\\"replace\\\", \\\"path\\\": \\\"/privileged\\\", \\\"\\ value\\\": boolean }** **{ \\\"op\\\": \\\"replace\\\", \\\"path\\\": \\\"/requestable\\\",\\\"value\\\"\\ : boolean }**`\"
59007
+ * This API applies an update to every entitlement of the list. The number of entitlements to update is limited to 50 items maximum. The JsonPatch update follows the [JSON Patch](https://tools.ietf.org/html/rfc6902) standard. examples of allowed operations : `**{ \"op\": \"replace\", \"path\": \"/privileged\", \"value\": boolean }**` `**{ \"op\": \"replace\", \"path\": \"/requestable\",\"value\": boolean }**` `**{ \"op\": \"replace\", \"path\": \"/privilegeOverride/overrideLevel\",\"value\": string }**` A token with ORG_ADMIN or API authority is required to call this API.
57478
59008
  * @summary Bulk update an entitlement list
57479
59009
  * @param {EntitlementsV2025ApiUpdateEntitlementsInBulkRequest} requestParameters Request parameters.
57480
59010
  * @param {*} [axiosOptions] Override http request option.
@@ -62645,6 +64175,17 @@ export declare const IdentitiesV2025ApiAxiosParamCreator: (configuration?: Confi
62645
64175
  * @throws {RequiredError}
62646
64176
  */
62647
64177
  getRoleAssignments: (identityId: string, roleId?: string, roleName?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
64178
+ /**
64179
+ * The API returns a list of all entitlements assigned to an identity, either directly or through the role or access profile. A token with ORG_ADMIN or API authority is required to call this API.
64180
+ * @summary List of entitlements by identity.
64181
+ * @param {string} id Identity Id
64182
+ * @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.
64183
+ * @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.
64184
+ * @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.
64185
+ * @param {*} [axiosOptions] Override http request option.
64186
+ * @throws {RequiredError}
64187
+ */
64188
+ listEntitlementsByIdentity: (id: string, limit?: number, offset?: number, count?: boolean, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
62648
64189
  /**
62649
64190
  * This API returns a list of identities.
62650
64191
  * @summary List identities
@@ -62752,6 +64293,17 @@ export declare const IdentitiesV2025ApiFp: (configuration?: Configuration) => {
62752
64293
  * @throws {RequiredError}
62753
64294
  */
62754
64295
  getRoleAssignments(identityId: string, roleId?: string, roleName?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<GetRoleAssignments200ResponseInnerV2025>>>;
64296
+ /**
64297
+ * The API returns a list of all entitlements assigned to an identity, either directly or through the role or access profile. A token with ORG_ADMIN or API authority is required to call this API.
64298
+ * @summary List of entitlements by identity.
64299
+ * @param {string} id Identity Id
64300
+ * @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.
64301
+ * @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.
64302
+ * @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.
64303
+ * @param {*} [axiosOptions] Override http request option.
64304
+ * @throws {RequiredError}
64305
+ */
64306
+ listEntitlementsByIdentity(id: string, limit?: number, offset?: number, count?: boolean, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<IdentityEntitlementsV2025>>>;
62755
64307
  /**
62756
64308
  * This API returns a list of identities.
62757
64309
  * @summary List identities
@@ -62855,6 +64407,14 @@ export declare const IdentitiesV2025ApiFactory: (configuration?: Configuration,
62855
64407
  * @throws {RequiredError}
62856
64408
  */
62857
64409
  getRoleAssignments(requestParameters: IdentitiesV2025ApiGetRoleAssignmentsRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<GetRoleAssignments200ResponseInnerV2025>>;
64410
+ /**
64411
+ * The API returns a list of all entitlements assigned to an identity, either directly or through the role or access profile. A token with ORG_ADMIN or API authority is required to call this API.
64412
+ * @summary List of entitlements by identity.
64413
+ * @param {IdentitiesV2025ApiListEntitlementsByIdentityRequest} requestParameters Request parameters.
64414
+ * @param {*} [axiosOptions] Override http request option.
64415
+ * @throws {RequiredError}
64416
+ */
64417
+ listEntitlementsByIdentity(requestParameters: IdentitiesV2025ApiListEntitlementsByIdentityRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<IdentityEntitlementsV2025>>;
62858
64418
  /**
62859
64419
  * This API returns a list of identities.
62860
64420
  * @summary List identities
@@ -62993,6 +64553,37 @@ export interface IdentitiesV2025ApiGetRoleAssignmentsRequest {
62993
64553
  */
62994
64554
  readonly roleName?: string;
62995
64555
  }
64556
+ /**
64557
+ * Request parameters for listEntitlementsByIdentity operation in IdentitiesV2025Api.
64558
+ * @export
64559
+ * @interface IdentitiesV2025ApiListEntitlementsByIdentityRequest
64560
+ */
64561
+ export interface IdentitiesV2025ApiListEntitlementsByIdentityRequest {
64562
+ /**
64563
+ * Identity Id
64564
+ * @type {string}
64565
+ * @memberof IdentitiesV2025ApiListEntitlementsByIdentity
64566
+ */
64567
+ readonly id: string;
64568
+ /**
64569
+ * Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
64570
+ * @type {number}
64571
+ * @memberof IdentitiesV2025ApiListEntitlementsByIdentity
64572
+ */
64573
+ readonly limit?: number;
64574
+ /**
64575
+ * 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.
64576
+ * @type {number}
64577
+ * @memberof IdentitiesV2025ApiListEntitlementsByIdentity
64578
+ */
64579
+ readonly offset?: number;
64580
+ /**
64581
+ * 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.
64582
+ * @type {boolean}
64583
+ * @memberof IdentitiesV2025ApiListEntitlementsByIdentity
64584
+ */
64585
+ readonly count?: boolean;
64586
+ }
62996
64587
  /**
62997
64588
  * Request parameters for listIdentities operation in IdentitiesV2025Api.
62998
64589
  * @export
@@ -63177,6 +64768,15 @@ export declare class IdentitiesV2025Api extends BaseAPI {
63177
64768
  * @memberof IdentitiesV2025Api
63178
64769
  */
63179
64770
  getRoleAssignments(requestParameters: IdentitiesV2025ApiGetRoleAssignmentsRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetRoleAssignments200ResponseInnerV2025[], any>>;
64771
+ /**
64772
+ * The API returns a list of all entitlements assigned to an identity, either directly or through the role or access profile. A token with ORG_ADMIN or API authority is required to call this API.
64773
+ * @summary List of entitlements by identity.
64774
+ * @param {IdentitiesV2025ApiListEntitlementsByIdentityRequest} requestParameters Request parameters.
64775
+ * @param {*} [axiosOptions] Override http request option.
64776
+ * @throws {RequiredError}
64777
+ * @memberof IdentitiesV2025Api
64778
+ */
64779
+ listEntitlementsByIdentity(requestParameters: IdentitiesV2025ApiListEntitlementsByIdentityRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<IdentityEntitlementsV2025[], any>>;
63180
64780
  /**
63181
64781
  * This API returns a list of identities.
63182
64782
  * @summary List identities
@@ -63621,7 +65221,7 @@ export declare const IdentityHistoryV2025ApiAxiosParamCreator: (configuration?:
63621
65221
  getHistoricalIdentity: (id: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
63622
65222
  /**
63623
65223
  * This method retrieves all access events for the identity Requires authorization scope of \'idn:identity-history:read\'
63624
- * @summary Lists all events for the given identity
65224
+ * @summary List identity event history
63625
65225
  * @param {string} id The identity id
63626
65226
  * @param {string} [from] The optional instant until which access events are returned
63627
65227
  * @param {Array<string>} [eventTypes] An optional list of event types to return. If null or empty, all events are returned
@@ -63685,7 +65285,7 @@ export declare const IdentityHistoryV2025ApiAxiosParamCreator: (configuration?:
63685
65285
  * This method retrieves a list of access item for the identity filtered by the access item type
63686
65286
  * @summary List access items by identity
63687
65287
  * @param {string} id The identity id
63688
- * @param {string} [type] The type of access item for the identity. If not provided, it defaults to account
65288
+ * @param {ListIdentityAccessItemsTypeV2025} [type] The type of access item for the identity. If not provided, it defaults to account
63689
65289
  * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
63690
65290
  * @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.
63691
65291
  * @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.
@@ -63693,7 +65293,7 @@ export declare const IdentityHistoryV2025ApiAxiosParamCreator: (configuration?:
63693
65293
  * @param {*} [axiosOptions] Override http request option.
63694
65294
  * @throws {RequiredError}
63695
65295
  */
63696
- listIdentityAccessItems: (id: string, type?: string, xSailPointExperimental?: string, limit?: number, count?: boolean, offset?: number, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
65296
+ listIdentityAccessItems: (id: string, type?: ListIdentityAccessItemsTypeV2025, xSailPointExperimental?: string, limit?: number, count?: boolean, offset?: number, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
63697
65297
  /**
63698
65298
  * This method retrieves the list of identity access items at a given date filterd by item type Requires authorization scope of \'idn:identity-history:read\'
63699
65299
  * @summary Gets the list of identity access items at a given date filterd by item type
@@ -63767,7 +65367,7 @@ export declare const IdentityHistoryV2025ApiFp: (configuration?: Configuration)
63767
65367
  getHistoricalIdentity(id: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<IdentityHistoryResponseV2025>>;
63768
65368
  /**
63769
65369
  * This method retrieves all access events for the identity Requires authorization scope of \'idn:identity-history:read\'
63770
- * @summary Lists all events for the given identity
65370
+ * @summary List identity event history
63771
65371
  * @param {string} id The identity id
63772
65372
  * @param {string} [from] The optional instant until which access events are returned
63773
65373
  * @param {Array<string>} [eventTypes] An optional list of event types to return. If null or empty, all events are returned
@@ -63831,7 +65431,7 @@ export declare const IdentityHistoryV2025ApiFp: (configuration?: Configuration)
63831
65431
  * This method retrieves a list of access item for the identity filtered by the access item type
63832
65432
  * @summary List access items by identity
63833
65433
  * @param {string} id The identity id
63834
- * @param {string} [type] The type of access item for the identity. If not provided, it defaults to account
65434
+ * @param {ListIdentityAccessItemsTypeV2025} [type] The type of access item for the identity. If not provided, it defaults to account
63835
65435
  * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
63836
65436
  * @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.
63837
65437
  * @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.
@@ -63839,7 +65439,7 @@ export declare const IdentityHistoryV2025ApiFp: (configuration?: Configuration)
63839
65439
  * @param {*} [axiosOptions] Override http request option.
63840
65440
  * @throws {RequiredError}
63841
65441
  */
63842
- listIdentityAccessItems(id: string, type?: string, xSailPointExperimental?: string, limit?: number, count?: boolean, offset?: number, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<ListIdentityAccessItems200ResponseInnerV2025>>>;
65442
+ listIdentityAccessItems(id: string, type?: ListIdentityAccessItemsTypeV2025, xSailPointExperimental?: string, limit?: number, count?: boolean, offset?: number, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<ListIdentityAccessItems200ResponseInnerV2025>>>;
63843
65443
  /**
63844
65444
  * This method retrieves the list of identity access items at a given date filterd by item type Requires authorization scope of \'idn:identity-history:read\'
63845
65445
  * @summary Gets the list of identity access items at a given date filterd by item type
@@ -63850,7 +65450,7 @@ export declare const IdentityHistoryV2025ApiFp: (configuration?: Configuration)
63850
65450
  * @param {*} [axiosOptions] Override http request option.
63851
65451
  * @throws {RequiredError}
63852
65452
  */
63853
- listIdentitySnapshotAccessItems(id: string, date: string, type?: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<ListIdentityAccessItems200ResponseInnerV2025>>>;
65453
+ listIdentitySnapshotAccessItems(id: string, date: string, type?: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<ListIdentitySnapshotAccessItems200ResponseInnerV2025>>>;
63854
65454
  /**
63855
65455
  * This method retrieves all the snapshots for the identity Requires authorization scope of \'idn:identity-history:read\'
63856
65456
  * @summary Lists all the snapshots for the identity
@@ -63897,7 +65497,7 @@ export declare const IdentityHistoryV2025ApiFactory: (configuration?: Configurat
63897
65497
  getHistoricalIdentity(requestParameters: IdentityHistoryV2025ApiGetHistoricalIdentityRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<IdentityHistoryResponseV2025>;
63898
65498
  /**
63899
65499
  * This method retrieves all access events for the identity Requires authorization scope of \'idn:identity-history:read\'
63900
- * @summary Lists all events for the given identity
65500
+ * @summary List identity event history
63901
65501
  * @param {IdentityHistoryV2025ApiGetHistoricalIdentityEventsRequest} requestParameters Request parameters.
63902
65502
  * @param {*} [axiosOptions] Override http request option.
63903
65503
  * @throws {RequiredError}
@@ -63950,7 +65550,7 @@ export declare const IdentityHistoryV2025ApiFactory: (configuration?: Configurat
63950
65550
  * @param {*} [axiosOptions] Override http request option.
63951
65551
  * @throws {RequiredError}
63952
65552
  */
63953
- listIdentitySnapshotAccessItems(requestParameters: IdentityHistoryV2025ApiListIdentitySnapshotAccessItemsRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<ListIdentityAccessItems200ResponseInnerV2025>>;
65553
+ listIdentitySnapshotAccessItems(requestParameters: IdentityHistoryV2025ApiListIdentitySnapshotAccessItemsRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<ListIdentitySnapshotAccessItems200ResponseInnerV2025>>;
63954
65554
  /**
63955
65555
  * This method retrieves all the snapshots for the identity Requires authorization scope of \'idn:identity-history:read\'
63956
65556
  * @summary Lists all the snapshots for the identity
@@ -64306,10 +65906,10 @@ export interface IdentityHistoryV2025ApiListIdentityAccessItemsRequest {
64306
65906
  readonly id: string;
64307
65907
  /**
64308
65908
  * The type of access item for the identity. If not provided, it defaults to account
64309
- * @type {string}
65909
+ * @type {'account' | 'entitlement' | 'app' | 'accessProfile' | 'role'}
64310
65910
  * @memberof IdentityHistoryV2025ApiListIdentityAccessItems
64311
65911
  */
64312
- readonly type?: string;
65912
+ readonly type?: ListIdentityAccessItemsTypeV2025;
64313
65913
  /**
64314
65914
  * Use this header to enable this experimental API.
64315
65915
  * @type {string}
@@ -64451,7 +66051,7 @@ export declare class IdentityHistoryV2025Api extends BaseAPI {
64451
66051
  getHistoricalIdentity(requestParameters: IdentityHistoryV2025ApiGetHistoricalIdentityRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<IdentityHistoryResponseV2025, any>>;
64452
66052
  /**
64453
66053
  * This method retrieves all access events for the identity Requires authorization scope of \'idn:identity-history:read\'
64454
- * @summary Lists all events for the given identity
66054
+ * @summary List identity event history
64455
66055
  * @param {IdentityHistoryV2025ApiGetHistoricalIdentityEventsRequest} requestParameters Request parameters.
64456
66056
  * @param {*} [axiosOptions] Override http request option.
64457
66057
  * @throws {RequiredError}
@@ -64511,7 +66111,7 @@ export declare class IdentityHistoryV2025Api extends BaseAPI {
64511
66111
  * @throws {RequiredError}
64512
66112
  * @memberof IdentityHistoryV2025Api
64513
66113
  */
64514
- listIdentitySnapshotAccessItems(requestParameters: IdentityHistoryV2025ApiListIdentitySnapshotAccessItemsRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ListIdentityAccessItems200ResponseInnerV2025[], any>>;
66114
+ listIdentitySnapshotAccessItems(requestParameters: IdentityHistoryV2025ApiListIdentitySnapshotAccessItemsRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ListIdentitySnapshotAccessItems200ResponseInnerV2025[], any>>;
64515
66115
  /**
64516
66116
  * This method retrieves all the snapshots for the identity Requires authorization scope of \'idn:identity-history:read\'
64517
66117
  * @summary Lists all the snapshots for the identity
@@ -64541,6 +66141,17 @@ export declare const GetIdentitySnapshotSummaryIntervalV2025: {
64541
66141
  readonly Month: "month";
64542
66142
  };
64543
66143
  export type GetIdentitySnapshotSummaryIntervalV2025 = typeof GetIdentitySnapshotSummaryIntervalV2025[keyof typeof GetIdentitySnapshotSummaryIntervalV2025];
66144
+ /**
66145
+ * @export
66146
+ */
66147
+ export declare const ListIdentityAccessItemsTypeV2025: {
66148
+ readonly Account: "account";
66149
+ readonly Entitlement: "entitlement";
66150
+ readonly App: "app";
66151
+ readonly AccessProfile: "accessProfile";
66152
+ readonly Role: "role";
66153
+ };
66154
+ export type ListIdentityAccessItemsTypeV2025 = typeof ListIdentityAccessItemsTypeV2025[keyof typeof ListIdentityAccessItemsTypeV2025];
64544
66155
  /**
64545
66156
  * @export
64546
66157
  */
@@ -65219,7 +66830,7 @@ export declare const LifecycleStatesV2025ApiAxiosParamCreator: (configuration?:
65219
66830
  * @summary Update lifecycle state
65220
66831
  * @param {string} identityProfileId Identity profile ID.
65221
66832
  * @param {string} lifecycleStateId Lifecycle state ID.
65222
- * @param {Array<JsonPatchOperationV2025>} jsonPatchOperationV2025 A list of lifecycle state update operations according to the [JSON Patch](https://tools.ietf.org/html/rfc6902) standard. The following fields can be updated: * enabled * description * accountActions * accessProfileIds * emailNotificationOption
66833
+ * @param {Array<JsonPatchOperationV2025>} jsonPatchOperationV2025 A list of lifecycle state update operations according to the [JSON Patch](https://tools.ietf.org/html/rfc6902) standard. The following fields can be updated: * enabled * description * accountActions * accessProfileIds * emailNotificationOption * accessActionConfiguration * priority
65223
66834
  * @param {*} [axiosOptions] Override http request option.
65224
66835
  * @throws {RequiredError}
65225
66836
  */
@@ -65283,7 +66894,7 @@ export declare const LifecycleStatesV2025ApiFp: (configuration?: Configuration)
65283
66894
  * @summary Update lifecycle state
65284
66895
  * @param {string} identityProfileId Identity profile ID.
65285
66896
  * @param {string} lifecycleStateId Lifecycle state ID.
65286
- * @param {Array<JsonPatchOperationV2025>} jsonPatchOperationV2025 A list of lifecycle state update operations according to the [JSON Patch](https://tools.ietf.org/html/rfc6902) standard. The following fields can be updated: * enabled * description * accountActions * accessProfileIds * emailNotificationOption
66897
+ * @param {Array<JsonPatchOperationV2025>} jsonPatchOperationV2025 A list of lifecycle state update operations according to the [JSON Patch](https://tools.ietf.org/html/rfc6902) standard. The following fields can be updated: * enabled * description * accountActions * accessProfileIds * emailNotificationOption * accessActionConfiguration * priority
65287
66898
  * @param {*} [axiosOptions] Override http request option.
65288
66899
  * @throws {RequiredError}
65289
66900
  */
@@ -65475,7 +67086,7 @@ export interface LifecycleStatesV2025ApiUpdateLifecycleStatesRequest {
65475
67086
  */
65476
67087
  readonly lifecycleStateId: string;
65477
67088
  /**
65478
- * A list of lifecycle state update operations according to the [JSON Patch](https://tools.ietf.org/html/rfc6902) standard. The following fields can be updated: * enabled * description * accountActions * accessProfileIds * emailNotificationOption
67089
+ * A list of lifecycle state update operations according to the [JSON Patch](https://tools.ietf.org/html/rfc6902) standard. The following fields can be updated: * enabled * description * accountActions * accessProfileIds * emailNotificationOption * accessActionConfiguration * priority
65479
67090
  * @type {Array<JsonPatchOperationV2025>}
65480
67091
  * @memberof LifecycleStatesV2025ApiUpdateLifecycleStates
65481
67092
  */
@@ -70517,7 +72128,7 @@ export declare const NotificationsV2025ApiAxiosParamCreator: (configuration?: Co
70517
72128
  */
70518
72129
  createDomainDkim: (xSailPointExperimental: string, domainAddressV2025: DomainAddressV2025, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
70519
72130
  /**
70520
- * This creates a template for your site. You can also use this endpoint to update a template. First, copy the response body from the [get notification template endpoint](https://developer.sailpoint.com/idn/api/beta/get-notification-template) for a template you wish to update and paste it into the request body for this endpoint. Modify the fields you want to change and submit the POST request when ready.
72131
+ * This will update notification templates that are available in your tenant. Note that you cannot create new templates in your tenant, but you can use this to create custom notifications from existing templates. First, copy the response body from the [get notification template endpoint](https://developer.sailpoint.com/idn/api/beta/get-notification-template) for a template you wish to update and paste it into the request body for this endpoint. Modify the fields you want to change and submit the POST request when ready.
70521
72132
  * @summary Create notification template
70522
72133
  * @param {string} xSailPointExperimental Use this header to enable this experimental API.
70523
72134
  * @param {TemplateDtoV2025} templateDtoV2025
@@ -70624,11 +72235,12 @@ export declare const NotificationsV2025ApiAxiosParamCreator: (configuration?: Co
70624
72235
  * @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.
70625
72236
  * @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.
70626
72237
  * @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: **key**: *eq, in, sw* **medium**: *eq, sw* **locale**: *eq, sw*
72238
+ * @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: **key, name, medium**
70627
72239
  * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
70628
72240
  * @param {*} [axiosOptions] Override http request option.
70629
72241
  * @throws {RequiredError}
70630
72242
  */
70631
- listNotificationTemplates: (limit?: number, offset?: number, filters?: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
72243
+ listNotificationTemplates: (limit?: number, offset?: number, filters?: string, sorters?: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
70632
72244
  /**
70633
72245
  * Change the MAIL FROM domain of an AWS SES email identity and provide the MX and TXT records to be placed in the caller\'s DNS
70634
72246
  * @summary Change mail from domain
@@ -70663,7 +72275,7 @@ export declare const NotificationsV2025ApiFp: (configuration?: Configuration) =>
70663
72275
  */
70664
72276
  createDomainDkim(xSailPointExperimental: string, domainAddressV2025: DomainAddressV2025, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DomainStatusDtoV2025>>;
70665
72277
  /**
70666
- * This creates a template for your site. You can also use this endpoint to update a template. First, copy the response body from the [get notification template endpoint](https://developer.sailpoint.com/idn/api/beta/get-notification-template) for a template you wish to update and paste it into the request body for this endpoint. Modify the fields you want to change and submit the POST request when ready.
72278
+ * This will update notification templates that are available in your tenant. Note that you cannot create new templates in your tenant, but you can use this to create custom notifications from existing templates. First, copy the response body from the [get notification template endpoint](https://developer.sailpoint.com/idn/api/beta/get-notification-template) for a template you wish to update and paste it into the request body for this endpoint. Modify the fields you want to change and submit the POST request when ready.
70667
72279
  * @summary Create notification template
70668
72280
  * @param {string} xSailPointExperimental Use this header to enable this experimental API.
70669
72281
  * @param {TemplateDtoV2025} templateDtoV2025
@@ -70770,11 +72382,12 @@ export declare const NotificationsV2025ApiFp: (configuration?: Configuration) =>
70770
72382
  * @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.
70771
72383
  * @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.
70772
72384
  * @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: **key**: *eq, in, sw* **medium**: *eq, sw* **locale**: *eq, sw*
72385
+ * @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: **key, name, medium**
70773
72386
  * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
70774
72387
  * @param {*} [axiosOptions] Override http request option.
70775
72388
  * @throws {RequiredError}
70776
72389
  */
70777
- listNotificationTemplates(limit?: number, offset?: number, filters?: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<TemplateDtoV2025>>>;
72390
+ listNotificationTemplates(limit?: number, offset?: number, filters?: string, sorters?: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<TemplateDtoV2025>>>;
70778
72391
  /**
70779
72392
  * Change the MAIL FROM domain of an AWS SES email identity and provide the MX and TXT records to be placed in the caller\'s DNS
70780
72393
  * @summary Change mail from domain
@@ -70808,7 +72421,7 @@ export declare const NotificationsV2025ApiFactory: (configuration?: Configuratio
70808
72421
  */
70809
72422
  createDomainDkim(requestParameters: NotificationsV2025ApiCreateDomainDkimRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<DomainStatusDtoV2025>;
70810
72423
  /**
70811
- * This creates a template for your site. You can also use this endpoint to update a template. First, copy the response body from the [get notification template endpoint](https://developer.sailpoint.com/idn/api/beta/get-notification-template) for a template you wish to update and paste it into the request body for this endpoint. Modify the fields you want to change and submit the POST request when ready.
72424
+ * This will update notification templates that are available in your tenant. Note that you cannot create new templates in your tenant, but you can use this to create custom notifications from existing templates. First, copy the response body from the [get notification template endpoint](https://developer.sailpoint.com/idn/api/beta/get-notification-template) for a template you wish to update and paste it into the request body for this endpoint. Modify the fields you want to change and submit the POST request when ready.
70812
72425
  * @summary Create notification template
70813
72426
  * @param {NotificationsV2025ApiCreateNotificationTemplateRequest} requestParameters Request parameters.
70814
72427
  * @param {*} [axiosOptions] Override http request option.
@@ -71190,6 +72803,12 @@ export interface NotificationsV2025ApiListNotificationTemplatesRequest {
71190
72803
  * @memberof NotificationsV2025ApiListNotificationTemplates
71191
72804
  */
71192
72805
  readonly filters?: string;
72806
+ /**
72807
+ * 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: **key, name, medium**
72808
+ * @type {string}
72809
+ * @memberof NotificationsV2025ApiListNotificationTemplates
72810
+ */
72811
+ readonly sorters?: string;
71193
72812
  /**
71194
72813
  * Use this header to enable this experimental API.
71195
72814
  * @type {string}
@@ -71252,7 +72871,7 @@ export declare class NotificationsV2025Api extends BaseAPI {
71252
72871
  */
71253
72872
  createDomainDkim(requestParameters: NotificationsV2025ApiCreateDomainDkimRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DomainStatusDtoV2025, any>>;
71254
72873
  /**
71255
- * This creates a template for your site. You can also use this endpoint to update a template. First, copy the response body from the [get notification template endpoint](https://developer.sailpoint.com/idn/api/beta/get-notification-template) for a template you wish to update and paste it into the request body for this endpoint. Modify the fields you want to change and submit the POST request when ready.
72874
+ * This will update notification templates that are available in your tenant. Note that you cannot create new templates in your tenant, but you can use this to create custom notifications from existing templates. First, copy the response body from the [get notification template endpoint](https://developer.sailpoint.com/idn/api/beta/get-notification-template) for a template you wish to update and paste it into the request body for this endpoint. Modify the fields you want to change and submit the POST request when ready.
71256
72875
  * @summary Create notification template
71257
72876
  * @param {NotificationsV2025ApiCreateNotificationTemplateRequest} requestParameters Request parameters.
71258
72877
  * @param {*} [axiosOptions] Override http request option.
@@ -71650,11 +73269,10 @@ export declare const OrgConfigV2025ApiAxiosParamCreator: (configuration?: Config
71650
73269
  /**
71651
73270
  * Get the current organization\'s configuration settings, only external accessible properties.
71652
73271
  * @summary Get org config settings
71653
- * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
71654
73272
  * @param {*} [axiosOptions] Override http request option.
71655
73273
  * @throws {RequiredError}
71656
73274
  */
71657
- getOrgConfig: (xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
73275
+ getOrgConfig: (axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
71658
73276
  /**
71659
73277
  * List the valid time zones that can be set in organization configurations.
71660
73278
  * @summary Get valid time zones
@@ -71669,12 +73287,11 @@ export declare const OrgConfigV2025ApiAxiosParamCreator: (configuration?: Config
71669
73287
  /**
71670
73288
  * Patch the current organization\'s configuration, using http://jsonpatch.com/ syntax. This is commonly used to changing an organization\'s time zone.
71671
73289
  * @summary Patch org config
71672
- * @param {string} xSailPointExperimental Use this header to enable this experimental API.
71673
73290
  * @param {Array<JsonPatchOperationV2025>} jsonPatchOperationV2025 A list of schema attribute update operations according to the [JSON Patch](https://tools.ietf.org/html/rfc6902) standard.
71674
73291
  * @param {*} [axiosOptions] Override http request option.
71675
73292
  * @throws {RequiredError}
71676
73293
  */
71677
- patchOrgConfig: (xSailPointExperimental: string, jsonPatchOperationV2025: Array<JsonPatchOperationV2025>, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
73294
+ patchOrgConfig: (jsonPatchOperationV2025: Array<JsonPatchOperationV2025>, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
71678
73295
  };
71679
73296
  /**
71680
73297
  * OrgConfigV2025Api - functional programming interface
@@ -71684,11 +73301,10 @@ export declare const OrgConfigV2025ApiFp: (configuration?: Configuration) => {
71684
73301
  /**
71685
73302
  * Get the current organization\'s configuration settings, only external accessible properties.
71686
73303
  * @summary Get org config settings
71687
- * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
71688
73304
  * @param {*} [axiosOptions] Override http request option.
71689
73305
  * @throws {RequiredError}
71690
73306
  */
71691
- getOrgConfig(xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<OrgConfigV2025>>;
73307
+ getOrgConfig(axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<OrgConfigV2025>>;
71692
73308
  /**
71693
73309
  * List the valid time zones that can be set in organization configurations.
71694
73310
  * @summary Get valid time zones
@@ -71703,12 +73319,11 @@ export declare const OrgConfigV2025ApiFp: (configuration?: Configuration) => {
71703
73319
  /**
71704
73320
  * Patch the current organization\'s configuration, using http://jsonpatch.com/ syntax. This is commonly used to changing an organization\'s time zone.
71705
73321
  * @summary Patch org config
71706
- * @param {string} xSailPointExperimental Use this header to enable this experimental API.
71707
73322
  * @param {Array<JsonPatchOperationV2025>} jsonPatchOperationV2025 A list of schema attribute update operations according to the [JSON Patch](https://tools.ietf.org/html/rfc6902) standard.
71708
73323
  * @param {*} [axiosOptions] Override http request option.
71709
73324
  * @throws {RequiredError}
71710
73325
  */
71711
- patchOrgConfig(xSailPointExperimental: string, jsonPatchOperationV2025: Array<JsonPatchOperationV2025>, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<OrgConfigV2025>>;
73326
+ patchOrgConfig(jsonPatchOperationV2025: Array<JsonPatchOperationV2025>, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<OrgConfigV2025>>;
71712
73327
  };
71713
73328
  /**
71714
73329
  * OrgConfigV2025Api - factory interface
@@ -71718,11 +73333,10 @@ export declare const OrgConfigV2025ApiFactory: (configuration?: Configuration, b
71718
73333
  /**
71719
73334
  * Get the current organization\'s configuration settings, only external accessible properties.
71720
73335
  * @summary Get org config settings
71721
- * @param {OrgConfigV2025ApiGetOrgConfigRequest} requestParameters Request parameters.
71722
73336
  * @param {*} [axiosOptions] Override http request option.
71723
73337
  * @throws {RequiredError}
71724
73338
  */
71725
- getOrgConfig(requestParameters?: OrgConfigV2025ApiGetOrgConfigRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<OrgConfigV2025>;
73339
+ getOrgConfig(axiosOptions?: RawAxiosRequestConfig): AxiosPromise<OrgConfigV2025>;
71726
73340
  /**
71727
73341
  * List the valid time zones that can be set in organization configurations.
71728
73342
  * @summary Get valid time zones
@@ -71740,19 +73354,6 @@ export declare const OrgConfigV2025ApiFactory: (configuration?: Configuration, b
71740
73354
  */
71741
73355
  patchOrgConfig(requestParameters: OrgConfigV2025ApiPatchOrgConfigRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<OrgConfigV2025>;
71742
73356
  };
71743
- /**
71744
- * Request parameters for getOrgConfig operation in OrgConfigV2025Api.
71745
- * @export
71746
- * @interface OrgConfigV2025ApiGetOrgConfigRequest
71747
- */
71748
- export interface OrgConfigV2025ApiGetOrgConfigRequest {
71749
- /**
71750
- * Use this header to enable this experimental API.
71751
- * @type {string}
71752
- * @memberof OrgConfigV2025ApiGetOrgConfig
71753
- */
71754
- readonly xSailPointExperimental?: string;
71755
- }
71756
73357
  /**
71757
73358
  * Request parameters for getValidTimeZones operation in OrgConfigV2025Api.
71758
73359
  * @export
@@ -71790,12 +73391,6 @@ export interface OrgConfigV2025ApiGetValidTimeZonesRequest {
71790
73391
  * @interface OrgConfigV2025ApiPatchOrgConfigRequest
71791
73392
  */
71792
73393
  export interface OrgConfigV2025ApiPatchOrgConfigRequest {
71793
- /**
71794
- * Use this header to enable this experimental API.
71795
- * @type {string}
71796
- * @memberof OrgConfigV2025ApiPatchOrgConfig
71797
- */
71798
- readonly xSailPointExperimental: string;
71799
73394
  /**
71800
73395
  * A list of schema attribute update operations according to the [JSON Patch](https://tools.ietf.org/html/rfc6902) standard.
71801
73396
  * @type {Array<JsonPatchOperationV2025>}
@@ -71813,12 +73408,11 @@ export declare class OrgConfigV2025Api extends BaseAPI {
71813
73408
  /**
71814
73409
  * Get the current organization\'s configuration settings, only external accessible properties.
71815
73410
  * @summary Get org config settings
71816
- * @param {OrgConfigV2025ApiGetOrgConfigRequest} requestParameters Request parameters.
71817
73411
  * @param {*} [axiosOptions] Override http request option.
71818
73412
  * @throws {RequiredError}
71819
73413
  * @memberof OrgConfigV2025Api
71820
73414
  */
71821
- getOrgConfig(requestParameters?: OrgConfigV2025ApiGetOrgConfigRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OrgConfigV2025, any>>;
73415
+ getOrgConfig(axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OrgConfigV2025, any>>;
71822
73416
  /**
71823
73417
  * List the valid time zones that can be set in organization configurations.
71824
73418
  * @summary Get valid time zones
@@ -73559,7 +75153,7 @@ export type GetReportFileFormatV2025 = typeof GetReportFileFormatV2025[keyof typ
73559
75153
  */
73560
75154
  export declare const RequestableObjectsV2025ApiAxiosParamCreator: (configuration?: Configuration) => {
73561
75155
  /**
73562
- * Get a list of acccess items that can be requested through the [Access Request endpoints](https://developer.sailpoint.com/docs/api/v2024/access-requests). Access items are marked with `AVAILABLE`, `PENDING` or `ASSIGNED` with respect to the identity provided using `identity-id` query parameter. Any authenticated token can call this endpoint to see their requestable access items.
75156
+ * Get a list of acccess items that can be requested through the [Access Request endpoints](https://developer.sailpoint.com/docs/api/v2024/access-requests). Access items are marked with `AVAILABLE`, `PENDING` or `ASSIGNED` with respect to the identity provided using `identity-id` query parameter. This endpoint only lists roles and access profiles. For gathering requestable entitlements, the [Entitlements List API](https://developer.sailpoint.com/docs/api/v2025/list-entitlements) can be used with the segmented-for-identity parameter. Any authenticated token can call this endpoint to see their requestable access items.
73563
75157
  * @summary Requestable objects list
73564
75158
  * @param {string} [identityId] If present, the value returns only requestable objects for the specified identity. * Admin users can call this with any identity ID value. * Non-admin users can only specify *me* or pass their own identity ID value. * If absent, returns a list of all requestable objects for the tenant. Only admin users can make such a call. In this case, the available, pending, assigned accesses will not be annotated in the result.
73565
75159
  * @param {Array<ListRequestableObjectsTypesV2025>} [types] Filters the results to the specified type/types, where each type is one of &#x60;ROLE&#x60; or &#x60;ACCESS_PROFILE&#x60;. If absent, all types are returned. SailPoint may add support for additional types in the future without notice.
@@ -73581,7 +75175,7 @@ export declare const RequestableObjectsV2025ApiAxiosParamCreator: (configuration
73581
75175
  */
73582
75176
  export declare const RequestableObjectsV2025ApiFp: (configuration?: Configuration) => {
73583
75177
  /**
73584
- * Get a list of acccess items that can be requested through the [Access Request endpoints](https://developer.sailpoint.com/docs/api/v2024/access-requests). Access items are marked with `AVAILABLE`, `PENDING` or `ASSIGNED` with respect to the identity provided using `identity-id` query parameter. Any authenticated token can call this endpoint to see their requestable access items.
75178
+ * Get a list of acccess items that can be requested through the [Access Request endpoints](https://developer.sailpoint.com/docs/api/v2024/access-requests). Access items are marked with `AVAILABLE`, `PENDING` or `ASSIGNED` with respect to the identity provided using `identity-id` query parameter. This endpoint only lists roles and access profiles. For gathering requestable entitlements, the [Entitlements List API](https://developer.sailpoint.com/docs/api/v2025/list-entitlements) can be used with the segmented-for-identity parameter. Any authenticated token can call this endpoint to see their requestable access items.
73585
75179
  * @summary Requestable objects list
73586
75180
  * @param {string} [identityId] If present, the value returns only requestable objects for the specified identity. * Admin users can call this with any identity ID value. * Non-admin users can only specify *me* or pass their own identity ID value. * If absent, returns a list of all requestable objects for the tenant. Only admin users can make such a call. In this case, the available, pending, assigned accesses will not be annotated in the result.
73587
75181
  * @param {Array<ListRequestableObjectsTypesV2025>} [types] Filters the results to the specified type/types, where each type is one of &#x60;ROLE&#x60; or &#x60;ACCESS_PROFILE&#x60;. If absent, all types are returned. SailPoint may add support for additional types in the future without notice.
@@ -73603,7 +75197,7 @@ export declare const RequestableObjectsV2025ApiFp: (configuration?: Configuratio
73603
75197
  */
73604
75198
  export declare const RequestableObjectsV2025ApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
73605
75199
  /**
73606
- * Get a list of acccess items that can be requested through the [Access Request endpoints](https://developer.sailpoint.com/docs/api/v2024/access-requests). Access items are marked with `AVAILABLE`, `PENDING` or `ASSIGNED` with respect to the identity provided using `identity-id` query parameter. Any authenticated token can call this endpoint to see their requestable access items.
75200
+ * Get a list of acccess items that can be requested through the [Access Request endpoints](https://developer.sailpoint.com/docs/api/v2024/access-requests). Access items are marked with `AVAILABLE`, `PENDING` or `ASSIGNED` with respect to the identity provided using `identity-id` query parameter. This endpoint only lists roles and access profiles. For gathering requestable entitlements, the [Entitlements List API](https://developer.sailpoint.com/docs/api/v2025/list-entitlements) can be used with the segmented-for-identity parameter. Any authenticated token can call this endpoint to see their requestable access items.
73607
75201
  * @summary Requestable objects list
73608
75202
  * @param {RequestableObjectsV2025ApiListRequestableObjectsRequest} requestParameters Request parameters.
73609
75203
  * @param {*} [axiosOptions] Override http request option.
@@ -73680,7 +75274,7 @@ export interface RequestableObjectsV2025ApiListRequestableObjectsRequest {
73680
75274
  */
73681
75275
  export declare class RequestableObjectsV2025Api extends BaseAPI {
73682
75276
  /**
73683
- * Get a list of acccess items that can be requested through the [Access Request endpoints](https://developer.sailpoint.com/docs/api/v2024/access-requests). Access items are marked with `AVAILABLE`, `PENDING` or `ASSIGNED` with respect to the identity provided using `identity-id` query parameter. Any authenticated token can call this endpoint to see their requestable access items.
75277
+ * Get a list of acccess items that can be requested through the [Access Request endpoints](https://developer.sailpoint.com/docs/api/v2024/access-requests). Access items are marked with `AVAILABLE`, `PENDING` or `ASSIGNED` with respect to the identity provided using `identity-id` query parameter. This endpoint only lists roles and access profiles. For gathering requestable entitlements, the [Entitlements List API](https://developer.sailpoint.com/docs/api/v2025/list-entitlements) can be used with the segmented-for-identity parameter. Any authenticated token can call this endpoint to see their requestable access items.
73684
75278
  * @summary Requestable objects list
73685
75279
  * @param {RequestableObjectsV2025ApiListRequestableObjectsRequest} requestParameters Request parameters.
73686
75280
  * @param {*} [axiosOptions] Override http request option.
@@ -79309,13 +80903,12 @@ export declare const SourcesV2025ApiAxiosParamCreator: (configuration?: Configur
79309
80903
  createSourceSchema: (sourceId: string, schemaV2025: SchemaV2025, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
79310
80904
  /**
79311
80905
  * Use this endpoint to remove all accounts from the system without provisioning changes to the source. Accounts that are removed could be re-created during the next aggregation. This endpoint is good for: * Removing accounts that no longer exist on the source. * Removing accounts that won\'t be aggregated following updates to the source configuration. * Forcing accounts to be re-created following the next aggregation to re-run account processing, support testing, etc.
79312
- * @summary Remove all accounts in a source
80906
+ * @summary Remove all accounts in source
79313
80907
  * @param {string} id The source id
79314
- * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
79315
80908
  * @param {*} [axiosOptions] Override http request option.
79316
80909
  * @throws {RequiredError}
79317
80910
  */
79318
- deleteAccountsAsync: (id: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
80911
+ deleteAccountsAsync: (id: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
79319
80912
  /**
79320
80913
  * Deletes the native change detection configuration for the source specified by the given ID.
79321
80914
  * @summary Delete native change detection configuration
@@ -79519,12 +81112,11 @@ export declare const SourcesV2025ApiAxiosParamCreator: (configuration?: Configur
79519
81112
  * Starts an entitlement aggregation on the specified source. If the target source is a delimited file source, then the CSV file needs to be included in the request body. You will also need to set the Content-Type header to `multipart/form-data`. A token with ORG_ADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API.
79520
81113
  * @summary Entitlement aggregation
79521
81114
  * @param {string} sourceId Source Id
79522
- * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
79523
81115
  * @param {File} [file] The CSV file containing the source entitlements to aggregate.
79524
81116
  * @param {*} [axiosOptions] Override http request option.
79525
81117
  * @throws {RequiredError}
79526
81118
  */
79527
- importEntitlements: (sourceId: string, xSailPointExperimental?: string, file?: File, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
81119
+ importEntitlements: (sourceId: string, file?: File, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
79528
81120
  /**
79529
81121
  * This API uploads a source schema template file to configure a source\'s entitlement attributes. To retrieve the file to modify and upload, log into Identity Now. Click **Admin** -> **Connections** -> **Sources** -> **`{SourceName}`** -> **Import Data** -> **Import Entitlements** -> **Download** >**NOTE: This API is designated only for Delimited File sources.**
79530
81122
  * @summary Uploads source entitlements schema template
@@ -79539,12 +81131,11 @@ export declare const SourcesV2025ApiAxiosParamCreator: (configuration?: Configur
79539
81131
  * File is required for upload. You will also need to set the Content-Type header to `multipart/form-data`
79540
81132
  * @summary Process uncorrelated accounts
79541
81133
  * @param {string} id Source Id
79542
- * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
79543
81134
  * @param {File} [file]
79544
81135
  * @param {*} [axiosOptions] Override http request option.
79545
81136
  * @throws {RequiredError}
79546
81137
  */
79547
- importUncorrelatedAccounts: (id: string, xSailPointExperimental?: string, file?: File, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
81138
+ importUncorrelatedAccounts: (id: string, file?: File, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
79548
81139
  /**
79549
81140
  * This end-point lists all the ProvisioningPolicies in IdentityNow.
79550
81141
  * @summary Lists provisioningpolicies
@@ -79776,13 +81367,12 @@ export declare const SourcesV2025ApiFp: (configuration?: Configuration) => {
79776
81367
  createSourceSchema(sourceId: string, schemaV2025: SchemaV2025, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SchemaV2025>>;
79777
81368
  /**
79778
81369
  * Use this endpoint to remove all accounts from the system without provisioning changes to the source. Accounts that are removed could be re-created during the next aggregation. This endpoint is good for: * Removing accounts that no longer exist on the source. * Removing accounts that won\'t be aggregated following updates to the source configuration. * Forcing accounts to be re-created following the next aggregation to re-run account processing, support testing, etc.
79779
- * @summary Remove all accounts in a source
81370
+ * @summary Remove all accounts in source
79780
81371
  * @param {string} id The source id
79781
- * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
79782
81372
  * @param {*} [axiosOptions] Override http request option.
79783
81373
  * @throws {RequiredError}
79784
81374
  */
79785
- deleteAccountsAsync(id: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TaskResultDtoV2025>>;
81375
+ deleteAccountsAsync(id: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TaskResultDtoV2025>>;
79786
81376
  /**
79787
81377
  * Deletes the native change detection configuration for the source specified by the given ID.
79788
81378
  * @summary Delete native change detection configuration
@@ -79986,12 +81576,11 @@ export declare const SourcesV2025ApiFp: (configuration?: Configuration) => {
79986
81576
  * Starts an entitlement aggregation on the specified source. If the target source is a delimited file source, then the CSV file needs to be included in the request body. You will also need to set the Content-Type header to `multipart/form-data`. A token with ORG_ADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API.
79987
81577
  * @summary Entitlement aggregation
79988
81578
  * @param {string} sourceId Source Id
79989
- * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
79990
81579
  * @param {File} [file] The CSV file containing the source entitlements to aggregate.
79991
81580
  * @param {*} [axiosOptions] Override http request option.
79992
81581
  * @throws {RequiredError}
79993
81582
  */
79994
- importEntitlements(sourceId: string, xSailPointExperimental?: string, file?: File, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<LoadEntitlementTaskV2025>>;
81583
+ importEntitlements(sourceId: string, file?: File, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<LoadEntitlementTaskV2025>>;
79995
81584
  /**
79996
81585
  * This API uploads a source schema template file to configure a source\'s entitlement attributes. To retrieve the file to modify and upload, log into Identity Now. Click **Admin** -> **Connections** -> **Sources** -> **`{SourceName}`** -> **Import Data** -> **Import Entitlements** -> **Download** >**NOTE: This API is designated only for Delimited File sources.**
79997
81586
  * @summary Uploads source entitlements schema template
@@ -80006,12 +81595,11 @@ export declare const SourcesV2025ApiFp: (configuration?: Configuration) => {
80006
81595
  * File is required for upload. You will also need to set the Content-Type header to `multipart/form-data`
80007
81596
  * @summary Process uncorrelated accounts
80008
81597
  * @param {string} id Source Id
80009
- * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
80010
81598
  * @param {File} [file]
80011
81599
  * @param {*} [axiosOptions] Override http request option.
80012
81600
  * @throws {RequiredError}
80013
81601
  */
80014
- importUncorrelatedAccounts(id: string, xSailPointExperimental?: string, file?: File, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<LoadUncorrelatedAccountsTaskV2025>>;
81602
+ importUncorrelatedAccounts(id: string, file?: File, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<LoadUncorrelatedAccountsTaskV2025>>;
80015
81603
  /**
80016
81604
  * This end-point lists all the ProvisioningPolicies in IdentityNow.
80017
81605
  * @summary Lists provisioningpolicies
@@ -80239,7 +81827,7 @@ export declare const SourcesV2025ApiFactory: (configuration?: Configuration, bas
80239
81827
  createSourceSchema(requestParameters: SourcesV2025ApiCreateSourceSchemaRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<SchemaV2025>;
80240
81828
  /**
80241
81829
  * Use this endpoint to remove all accounts from the system without provisioning changes to the source. Accounts that are removed could be re-created during the next aggregation. This endpoint is good for: * Removing accounts that no longer exist on the source. * Removing accounts that won\'t be aggregated following updates to the source configuration. * Forcing accounts to be re-created following the next aggregation to re-run account processing, support testing, etc.
80242
- * @summary Remove all accounts in a source
81830
+ * @summary Remove all accounts in source
80243
81831
  * @param {SourcesV2025ApiDeleteAccountsAsyncRequest} requestParameters Request parameters.
80244
81832
  * @param {*} [axiosOptions] Override http request option.
80245
81833
  * @throws {RequiredError}
@@ -80702,12 +82290,6 @@ export interface SourcesV2025ApiDeleteAccountsAsyncRequest {
80702
82290
  * @memberof SourcesV2025ApiDeleteAccountsAsync
80703
82291
  */
80704
82292
  readonly id: string;
80705
- /**
80706
- * Use this header to enable this experimental API.
80707
- * @type {string}
80708
- * @memberof SourcesV2025ApiDeleteAccountsAsync
80709
- */
80710
- readonly xSailPointExperimental?: string;
80711
82293
  }
80712
82294
  /**
80713
82295
  * Request parameters for deleteNativeChangeDetectionConfig operation in SourcesV2025Api.
@@ -81110,12 +82692,6 @@ export interface SourcesV2025ApiImportEntitlementsRequest {
81110
82692
  * @memberof SourcesV2025ApiImportEntitlements
81111
82693
  */
81112
82694
  readonly sourceId: string;
81113
- /**
81114
- * Use this header to enable this experimental API.
81115
- * @type {string}
81116
- * @memberof SourcesV2025ApiImportEntitlements
81117
- */
81118
- readonly xSailPointExperimental?: string;
81119
82695
  /**
81120
82696
  * The CSV file containing the source entitlements to aggregate.
81121
82697
  * @type {File}
@@ -81160,12 +82736,6 @@ export interface SourcesV2025ApiImportUncorrelatedAccountsRequest {
81160
82736
  * @memberof SourcesV2025ApiImportUncorrelatedAccounts
81161
82737
  */
81162
82738
  readonly id: string;
81163
- /**
81164
- * Use this header to enable this experimental API.
81165
- * @type {string}
81166
- * @memberof SourcesV2025ApiImportUncorrelatedAccounts
81167
- */
81168
- readonly xSailPointExperimental?: string;
81169
82739
  /**
81170
82740
  *
81171
82741
  * @type {File}
@@ -81640,7 +83210,7 @@ export declare class SourcesV2025Api extends BaseAPI {
81640
83210
  createSourceSchema(requestParameters: SourcesV2025ApiCreateSourceSchemaRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SchemaV2025, any>>;
81641
83211
  /**
81642
83212
  * Use this endpoint to remove all accounts from the system without provisioning changes to the source. Accounts that are removed could be re-created during the next aggregation. This endpoint is good for: * Removing accounts that no longer exist on the source. * Removing accounts that won\'t be aggregated following updates to the source configuration. * Forcing accounts to be re-created following the next aggregation to re-run account processing, support testing, etc.
81643
- * @summary Remove all accounts in a source
83213
+ * @summary Remove all accounts in source
81644
83214
  * @param {SourcesV2025ApiDeleteAccountsAsyncRequest} requestParameters Request parameters.
81645
83215
  * @param {*} [axiosOptions] Override http request option.
81646
83216
  * @throws {RequiredError}
@@ -83109,34 +84679,31 @@ export declare const TaskManagementV2025ApiAxiosParamCreator: (configuration?: C
83109
84679
  /**
83110
84680
  * Responds with headers only for list of task statuses for pending tasks.
83111
84681
  * @summary Retrieve pending task list headers
83112
- * @param {string} xSailPointExperimental Use this header to enable this experimental API.
83113
84682
  * @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.
83114
84683
  * @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.
83115
84684
  * @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.
83116
84685
  * @param {*} [axiosOptions] Override http request option.
83117
84686
  * @throws {RequiredError}
83118
84687
  */
83119
- getPendingTaskHeaders: (xSailPointExperimental: string, offset?: number, limit?: number, count?: boolean, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
84688
+ getPendingTaskHeaders: (offset?: number, limit?: number, count?: boolean, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
83120
84689
  /**
83121
84690
  * 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.
83122
84691
  * @summary Retrieve pending task status list
83123
84692
  * @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.
83124
84693
  * @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.
83125
84694
  * @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.
83126
- * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
83127
84695
  * @param {*} [axiosOptions] Override http request option.
83128
84696
  * @throws {RequiredError}
83129
84697
  */
83130
- getPendingTasks: (offset?: number, limit?: number, count?: boolean, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
84698
+ getPendingTasks: (offset?: number, limit?: number, count?: boolean, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
83131
84699
  /**
83132
84700
  * Get task status by task ID. 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.
83133
84701
  * @summary Get task status by id
83134
84702
  * @param {string} id Task ID.
83135
- * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
83136
84703
  * @param {*} [axiosOptions] Override http request option.
83137
84704
  * @throws {RequiredError}
83138
84705
  */
83139
- getTaskStatus: (id: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
84706
+ getTaskStatus: (id: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
83140
84707
  /**
83141
84708
  * Use this endpoint to get a list of statuses for **completed** 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. To get a list of statuses for **in-progress** tasks, please use the [retrieve pending task status list](https://developer.sailpoint.com/docs/api/v2024/get-pending-tasks) endpoint.
83142
84709
  * @summary Retrieve task status list
@@ -83145,21 +84712,19 @@ export declare const TaskManagementV2025ApiAxiosParamCreator: (configuration?: C
83145
84712
  * @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.
83146
84713
  * @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* **sourceId**: *eq, in* **completionStatus**: *eq, in* **type**: *eq, in*
83147
84714
  * @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**
83148
- * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
83149
84715
  * @param {*} [axiosOptions] Override http request option.
83150
84716
  * @throws {RequiredError}
83151
84717
  */
83152
- getTaskStatusList: (limit?: number, offset?: number, count?: boolean, filters?: string, sorters?: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
84718
+ getTaskStatusList: (limit?: number, offset?: number, count?: boolean, filters?: string, sorters?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
83153
84719
  /**
83154
84720
  * Update a current task status by task ID. Use this API to clear a pending task by updating the completionStatus and completed attributes.
83155
84721
  * @summary Update task status by id
83156
84722
  * @param {string} id Task ID.
83157
- * @param {string} xSailPointExperimental Use this header to enable this experimental API.
83158
84723
  * @param {Array<JsonPatchOperationV2025>} jsonPatchOperationV2025 The JSONPatch payload used to update the object.
83159
84724
  * @param {*} [axiosOptions] Override http request option.
83160
84725
  * @throws {RequiredError}
83161
84726
  */
83162
- updateTaskStatus: (id: string, xSailPointExperimental: string, jsonPatchOperationV2025: Array<JsonPatchOperationV2025>, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
84727
+ updateTaskStatus: (id: string, jsonPatchOperationV2025: Array<JsonPatchOperationV2025>, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
83163
84728
  };
83164
84729
  /**
83165
84730
  * TaskManagementV2025Api - functional programming interface
@@ -83169,34 +84734,31 @@ export declare const TaskManagementV2025ApiFp: (configuration?: Configuration) =
83169
84734
  /**
83170
84735
  * Responds with headers only for list of task statuses for pending tasks.
83171
84736
  * @summary Retrieve pending task list headers
83172
- * @param {string} xSailPointExperimental Use this header to enable this experimental API.
83173
84737
  * @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.
83174
84738
  * @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.
83175
84739
  * @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.
83176
84740
  * @param {*} [axiosOptions] Override http request option.
83177
84741
  * @throws {RequiredError}
83178
84742
  */
83179
- getPendingTaskHeaders(xSailPointExperimental: string, offset?: number, limit?: number, count?: boolean, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
84743
+ getPendingTaskHeaders(offset?: number, limit?: number, count?: boolean, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
83180
84744
  /**
83181
84745
  * 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.
83182
84746
  * @summary Retrieve pending task status list
83183
84747
  * @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.
83184
84748
  * @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.
83185
84749
  * @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.
83186
- * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
83187
84750
  * @param {*} [axiosOptions] Override http request option.
83188
84751
  * @throws {RequiredError}
83189
84752
  */
83190
- getPendingTasks(offset?: number, limit?: number, count?: boolean, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<TaskStatusV2025>>>;
84753
+ getPendingTasks(offset?: number, limit?: number, count?: boolean, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<TaskStatusV2025>>>;
83191
84754
  /**
83192
84755
  * Get task status by task ID. 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.
83193
84756
  * @summary Get task status by id
83194
84757
  * @param {string} id Task ID.
83195
- * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
83196
84758
  * @param {*} [axiosOptions] Override http request option.
83197
84759
  * @throws {RequiredError}
83198
84760
  */
83199
- getTaskStatus(id: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TaskStatusV2025>>;
84761
+ getTaskStatus(id: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TaskStatusV2025>>;
83200
84762
  /**
83201
84763
  * Use this endpoint to get a list of statuses for **completed** 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. To get a list of statuses for **in-progress** tasks, please use the [retrieve pending task status list](https://developer.sailpoint.com/docs/api/v2024/get-pending-tasks) endpoint.
83202
84764
  * @summary Retrieve task status list
@@ -83205,21 +84767,19 @@ export declare const TaskManagementV2025ApiFp: (configuration?: Configuration) =
83205
84767
  * @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.
83206
84768
  * @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* **sourceId**: *eq, in* **completionStatus**: *eq, in* **type**: *eq, in*
83207
84769
  * @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**
83208
- * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
83209
84770
  * @param {*} [axiosOptions] Override http request option.
83210
84771
  * @throws {RequiredError}
83211
84772
  */
83212
- getTaskStatusList(limit?: number, offset?: number, count?: boolean, filters?: string, sorters?: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<TaskStatusV2025>>>;
84773
+ getTaskStatusList(limit?: number, offset?: number, count?: boolean, filters?: string, sorters?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<TaskStatusV2025>>>;
83213
84774
  /**
83214
84775
  * Update a current task status by task ID. Use this API to clear a pending task by updating the completionStatus and completed attributes.
83215
84776
  * @summary Update task status by id
83216
84777
  * @param {string} id Task ID.
83217
- * @param {string} xSailPointExperimental Use this header to enable this experimental API.
83218
84778
  * @param {Array<JsonPatchOperationV2025>} jsonPatchOperationV2025 The JSONPatch payload used to update the object.
83219
84779
  * @param {*} [axiosOptions] Override http request option.
83220
84780
  * @throws {RequiredError}
83221
84781
  */
83222
- updateTaskStatus(id: string, xSailPointExperimental: string, jsonPatchOperationV2025: Array<JsonPatchOperationV2025>, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TaskStatusV2025>>;
84782
+ updateTaskStatus(id: string, jsonPatchOperationV2025: Array<JsonPatchOperationV2025>, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TaskStatusV2025>>;
83223
84783
  };
83224
84784
  /**
83225
84785
  * TaskManagementV2025Api - factory interface
@@ -83233,7 +84793,7 @@ export declare const TaskManagementV2025ApiFactory: (configuration?: Configurati
83233
84793
  * @param {*} [axiosOptions] Override http request option.
83234
84794
  * @throws {RequiredError}
83235
84795
  */
83236
- getPendingTaskHeaders(requestParameters: TaskManagementV2025ApiGetPendingTaskHeadersRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<void>;
84796
+ getPendingTaskHeaders(requestParameters?: TaskManagementV2025ApiGetPendingTaskHeadersRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<void>;
83237
84797
  /**
83238
84798
  * 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.
83239
84799
  * @summary Retrieve pending task status list
@@ -83273,12 +84833,6 @@ export declare const TaskManagementV2025ApiFactory: (configuration?: Configurati
83273
84833
  * @interface TaskManagementV2025ApiGetPendingTaskHeadersRequest
83274
84834
  */
83275
84835
  export interface TaskManagementV2025ApiGetPendingTaskHeadersRequest {
83276
- /**
83277
- * Use this header to enable this experimental API.
83278
- * @type {string}
83279
- * @memberof TaskManagementV2025ApiGetPendingTaskHeaders
83280
- */
83281
- readonly xSailPointExperimental: string;
83282
84836
  /**
83283
84837
  * 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.
83284
84838
  * @type {number}
@@ -83322,12 +84876,6 @@ export interface TaskManagementV2025ApiGetPendingTasksRequest {
83322
84876
  * @memberof TaskManagementV2025ApiGetPendingTasks
83323
84877
  */
83324
84878
  readonly count?: boolean;
83325
- /**
83326
- * Use this header to enable this experimental API.
83327
- * @type {string}
83328
- * @memberof TaskManagementV2025ApiGetPendingTasks
83329
- */
83330
- readonly xSailPointExperimental?: string;
83331
84879
  }
83332
84880
  /**
83333
84881
  * Request parameters for getTaskStatus operation in TaskManagementV2025Api.
@@ -83341,12 +84889,6 @@ export interface TaskManagementV2025ApiGetTaskStatusRequest {
83341
84889
  * @memberof TaskManagementV2025ApiGetTaskStatus
83342
84890
  */
83343
84891
  readonly id: string;
83344
- /**
83345
- * Use this header to enable this experimental API.
83346
- * @type {string}
83347
- * @memberof TaskManagementV2025ApiGetTaskStatus
83348
- */
83349
- readonly xSailPointExperimental?: string;
83350
84892
  }
83351
84893
  /**
83352
84894
  * Request parameters for getTaskStatusList operation in TaskManagementV2025Api.
@@ -83384,12 +84926,6 @@ export interface TaskManagementV2025ApiGetTaskStatusListRequest {
83384
84926
  * @memberof TaskManagementV2025ApiGetTaskStatusList
83385
84927
  */
83386
84928
  readonly sorters?: string;
83387
- /**
83388
- * Use this header to enable this experimental API.
83389
- * @type {string}
83390
- * @memberof TaskManagementV2025ApiGetTaskStatusList
83391
- */
83392
- readonly xSailPointExperimental?: string;
83393
84929
  }
83394
84930
  /**
83395
84931
  * Request parameters for updateTaskStatus operation in TaskManagementV2025Api.
@@ -83403,12 +84939,6 @@ export interface TaskManagementV2025ApiUpdateTaskStatusRequest {
83403
84939
  * @memberof TaskManagementV2025ApiUpdateTaskStatus
83404
84940
  */
83405
84941
  readonly id: string;
83406
- /**
83407
- * Use this header to enable this experimental API.
83408
- * @type {string}
83409
- * @memberof TaskManagementV2025ApiUpdateTaskStatus
83410
- */
83411
- readonly xSailPointExperimental: string;
83412
84942
  /**
83413
84943
  * The JSONPatch payload used to update the object.
83414
84944
  * @type {Array<JsonPatchOperationV2025>}
@@ -83431,7 +84961,7 @@ export declare class TaskManagementV2025Api extends BaseAPI {
83431
84961
  * @throws {RequiredError}
83432
84962
  * @memberof TaskManagementV2025Api
83433
84963
  */
83434
- getPendingTaskHeaders(requestParameters: TaskManagementV2025ApiGetPendingTaskHeadersRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
84964
+ getPendingTaskHeaders(requestParameters?: TaskManagementV2025ApiGetPendingTaskHeadersRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
83435
84965
  /**
83436
84966
  * 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.
83437
84967
  * @summary Retrieve pending task status list
@@ -86235,12 +87765,11 @@ export declare const WorkflowsV2025ApiAxiosParamCreator: (configuration?: Config
86235
87765
  * @param {string} id Workflow ID.
86236
87766
  * @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.
86237
87767
  * @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.
86238
- * @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.
86239
87768
  * @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: **start_time**: *eq, lt, le, gt, ge* **status**: *eq*
86240
87769
  * @param {*} [axiosOptions] Override http request option.
86241
87770
  * @throws {RequiredError}
86242
87771
  */
86243
- getWorkflowExecutions: (id: string, limit?: number, offset?: number, count?: boolean, filters?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
87772
+ getWorkflowExecutions: (id: string, limit?: number, offset?: number, filters?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
86244
87773
  /**
86245
87774
  * This lists all triggers, actions, and operators in the library
86246
87775
  * @summary List complete workflow library
@@ -86397,12 +87926,11 @@ export declare const WorkflowsV2025ApiFp: (configuration?: Configuration) => {
86397
87926
  * @param {string} id Workflow ID.
86398
87927
  * @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.
86399
87928
  * @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.
86400
- * @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.
86401
87929
  * @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: **start_time**: *eq, lt, le, gt, ge* **status**: *eq*
86402
87930
  * @param {*} [axiosOptions] Override http request option.
86403
87931
  * @throws {RequiredError}
86404
87932
  */
86405
- getWorkflowExecutions(id: string, limit?: number, offset?: number, count?: boolean, filters?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<WorkflowExecutionV2025>>>;
87933
+ getWorkflowExecutions(id: string, limit?: number, offset?: number, filters?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<WorkflowExecutionV2025>>>;
86406
87934
  /**
86407
87935
  * This lists all triggers, actions, and operators in the library
86408
87936
  * @summary List complete workflow library
@@ -86765,12 +88293,6 @@ export interface WorkflowsV2025ApiGetWorkflowExecutionsRequest {
86765
88293
  * @memberof WorkflowsV2025ApiGetWorkflowExecutions
86766
88294
  */
86767
88295
  readonly offset?: number;
86768
- /**
86769
- * 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.
86770
- * @type {boolean}
86771
- * @memberof WorkflowsV2025ApiGetWorkflowExecutions
86772
- */
86773
- readonly count?: boolean;
86774
88296
  /**
86775
88297
  * 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: **start_time**: *eq, lt, le, gt, ge* **status**: *eq*
86776
88298
  * @type {string}