sailpoint-api-client 1.6.6 → 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.
- package/beta/README.md +2 -2
- package/beta/api.ts +643 -210
- package/beta/common.ts +2 -2
- package/beta/package.json +1 -1
- package/dist/beta/api.d.ts +584 -192
- package/dist/beta/api.js +125 -61
- package/dist/beta/api.js.map +1 -1
- package/dist/beta/common.js +1 -1
- package/dist/index.spec.js +7 -14
- package/dist/index.spec.js.map +1 -1
- package/dist/paginator.js +0 -1
- package/dist/paginator.js.map +1 -1
- package/dist/v2024/api.d.ts +853 -602
- package/dist/v2024/api.js +249 -358
- package/dist/v2024/api.js.map +1 -1
- package/dist/v2024/common.js +1 -1
- package/dist/v2025/api.d.ts +1944 -399
- package/dist/v2025/api.js +1709 -518
- package/dist/v2025/api.js.map +1 -1
- package/dist/v2025/common.js +1 -1
- package/dist/v3/api.d.ts +64 -19
- package/dist/v3/api.js +19 -21
- package/dist/v3/api.js.map +1 -1
- package/dist/v3/common.js +1 -1
- package/index.spec.ts +7 -7
- package/package.json +1 -1
- package/paginator.ts +0 -1
- package/v2024/README.md +2 -2
- package/v2024/api.ts +983 -870
- package/v2024/common.ts +2 -2
- package/v2024/package.json +1 -1
- package/v2025/README.md +2 -2
- package/v2025/api.ts +2723 -659
- package/v2025/common.ts +2 -2
- package/v2025/package.json +1 -1
- package/v3/README.md +2 -2
- package/v3/api.ts +70 -27
- package/v3/common.ts +2 -2
- package/v3/package.json +1 -1
package/dist/v2025/api.d.ts
CHANGED
|
@@ -179,15 +179,28 @@ export interface AccessCriteriaV2025 {
|
|
|
179
179
|
/**
|
|
180
180
|
*
|
|
181
181
|
* @export
|
|
182
|
-
* @interface
|
|
182
|
+
* @interface AccessItemAccessProfileResponseAppRefsInnerV2025
|
|
183
183
|
*/
|
|
184
|
-
export interface
|
|
184
|
+
export interface AccessItemAccessProfileResponseAppRefsInnerV2025 {
|
|
185
185
|
/**
|
|
186
|
-
* the
|
|
186
|
+
* the cloud app id associated with the access profile
|
|
187
187
|
* @type {string}
|
|
188
|
-
* @memberof
|
|
188
|
+
* @memberof AccessItemAccessProfileResponseAppRefsInnerV2025
|
|
189
189
|
*/
|
|
190
|
-
'
|
|
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 {
|
|
191
204
|
/**
|
|
192
205
|
* the access item id
|
|
193
206
|
* @type {string}
|
|
@@ -195,65 +208,65 @@ export interface AccessItemAccessProfileResponseV2025 {
|
|
|
195
208
|
*/
|
|
196
209
|
'id'?: string;
|
|
197
210
|
/**
|
|
198
|
-
* the access
|
|
211
|
+
* the access item type. accessProfile in this case
|
|
199
212
|
* @type {string}
|
|
200
213
|
* @memberof AccessItemAccessProfileResponseV2025
|
|
201
214
|
*/
|
|
202
|
-
'
|
|
215
|
+
'accessType'?: string;
|
|
203
216
|
/**
|
|
204
|
-
* the name of the
|
|
217
|
+
* the display name of the identity
|
|
205
218
|
* @type {string}
|
|
206
219
|
* @memberof AccessItemAccessProfileResponseV2025
|
|
207
220
|
*/
|
|
208
|
-
'
|
|
221
|
+
'displayName'?: string;
|
|
209
222
|
/**
|
|
210
|
-
* the
|
|
223
|
+
* the name of the source
|
|
211
224
|
* @type {string}
|
|
212
225
|
* @memberof AccessItemAccessProfileResponseV2025
|
|
213
226
|
*/
|
|
214
|
-
'
|
|
227
|
+
'sourceName'?: string;
|
|
215
228
|
/**
|
|
216
|
-
* the
|
|
217
|
-
* @type {
|
|
229
|
+
* the number of entitlements the access profile will create
|
|
230
|
+
* @type {number}
|
|
218
231
|
* @memberof AccessItemAccessProfileResponseV2025
|
|
219
232
|
*/
|
|
220
|
-
'
|
|
233
|
+
'entitlementCount': number;
|
|
221
234
|
/**
|
|
222
|
-
* the
|
|
235
|
+
* the description for the access profile
|
|
223
236
|
* @type {string}
|
|
224
237
|
* @memberof AccessItemAccessProfileResponseV2025
|
|
225
238
|
*/
|
|
226
|
-
'
|
|
239
|
+
'description'?: string | null;
|
|
227
240
|
/**
|
|
228
|
-
* the
|
|
241
|
+
* the id of the source
|
|
229
242
|
* @type {string}
|
|
230
243
|
* @memberof AccessItemAccessProfileResponseV2025
|
|
231
244
|
*/
|
|
232
|
-
'
|
|
245
|
+
'sourceId'?: string;
|
|
233
246
|
/**
|
|
234
|
-
* the
|
|
235
|
-
* @type {
|
|
247
|
+
* the list of app ids associated with the access profile
|
|
248
|
+
* @type {Array<AccessItemAccessProfileResponseAppRefsInnerV2025>}
|
|
236
249
|
* @memberof AccessItemAccessProfileResponseV2025
|
|
237
250
|
*/
|
|
238
|
-
'
|
|
251
|
+
'appRefs': Array<AccessItemAccessProfileResponseAppRefsInnerV2025>;
|
|
239
252
|
/**
|
|
240
253
|
* the date the access profile is no longer assigned to the specified identity
|
|
241
254
|
* @type {string}
|
|
242
255
|
* @memberof AccessItemAccessProfileResponseV2025
|
|
243
256
|
*/
|
|
244
|
-
'removeDate'?: string;
|
|
257
|
+
'removeDate'?: string | null;
|
|
245
258
|
/**
|
|
246
259
|
* indicates whether the access profile is standalone
|
|
247
260
|
* @type {boolean}
|
|
248
261
|
* @memberof AccessItemAccessProfileResponseV2025
|
|
249
262
|
*/
|
|
250
|
-
'standalone': boolean;
|
|
263
|
+
'standalone': boolean | null;
|
|
251
264
|
/**
|
|
252
|
-
* indicates whether the access profile is
|
|
265
|
+
* indicates whether the access profile is revocable
|
|
253
266
|
* @type {boolean}
|
|
254
267
|
* @memberof AccessItemAccessProfileResponseV2025
|
|
255
268
|
*/
|
|
256
|
-
'revocable': boolean;
|
|
269
|
+
'revocable': boolean | null;
|
|
257
270
|
}
|
|
258
271
|
/**
|
|
259
272
|
*
|
|
@@ -262,23 +275,23 @@ export interface AccessItemAccessProfileResponseV2025 {
|
|
|
262
275
|
*/
|
|
263
276
|
export interface AccessItemAccountResponseV2025 {
|
|
264
277
|
/**
|
|
265
|
-
* the access item
|
|
278
|
+
* the access item id
|
|
266
279
|
* @type {string}
|
|
267
280
|
* @memberof AccessItemAccountResponseV2025
|
|
268
281
|
*/
|
|
269
|
-
'
|
|
282
|
+
'id'?: string;
|
|
270
283
|
/**
|
|
271
|
-
* the access item
|
|
284
|
+
* the access item type. account in this case
|
|
272
285
|
* @type {string}
|
|
273
286
|
* @memberof AccessItemAccountResponseV2025
|
|
274
287
|
*/
|
|
275
|
-
'
|
|
288
|
+
'accessType'?: string;
|
|
276
289
|
/**
|
|
277
|
-
* the
|
|
290
|
+
* the display name of the identity
|
|
278
291
|
* @type {string}
|
|
279
292
|
* @memberof AccessItemAccountResponseV2025
|
|
280
293
|
*/
|
|
281
|
-
'
|
|
294
|
+
'displayName'?: string;
|
|
282
295
|
/**
|
|
283
296
|
* the name of the source
|
|
284
297
|
* @type {string}
|
|
@@ -286,23 +299,23 @@ export interface AccessItemAccountResponseV2025 {
|
|
|
286
299
|
*/
|
|
287
300
|
'sourceName'?: string;
|
|
288
301
|
/**
|
|
289
|
-
* the
|
|
302
|
+
* the native identifier used to uniquely identify an acccount
|
|
290
303
|
* @type {string}
|
|
291
304
|
* @memberof AccessItemAccountResponseV2025
|
|
292
305
|
*/
|
|
293
|
-
'
|
|
306
|
+
'nativeIdentity': string;
|
|
294
307
|
/**
|
|
295
|
-
* the
|
|
308
|
+
* the id of the source
|
|
296
309
|
* @type {string}
|
|
297
310
|
* @memberof AccessItemAccountResponseV2025
|
|
298
311
|
*/
|
|
299
|
-
'
|
|
312
|
+
'sourceId'?: string;
|
|
300
313
|
/**
|
|
301
|
-
* the
|
|
302
|
-
* @type {
|
|
314
|
+
* the number of entitlements the account will create
|
|
315
|
+
* @type {number}
|
|
303
316
|
* @memberof AccessItemAccountResponseV2025
|
|
304
317
|
*/
|
|
305
|
-
'
|
|
318
|
+
'entitlementCount'?: number;
|
|
306
319
|
}
|
|
307
320
|
/**
|
|
308
321
|
*
|
|
@@ -311,17 +324,17 @@ export interface AccessItemAccountResponseV2025 {
|
|
|
311
324
|
*/
|
|
312
325
|
export interface AccessItemAppResponseV2025 {
|
|
313
326
|
/**
|
|
314
|
-
* the access item
|
|
327
|
+
* the access item id
|
|
315
328
|
* @type {string}
|
|
316
329
|
* @memberof AccessItemAppResponseV2025
|
|
317
330
|
*/
|
|
318
|
-
'
|
|
331
|
+
'id'?: string;
|
|
319
332
|
/**
|
|
320
|
-
* the access item
|
|
333
|
+
* the access item type. entitlement in this case
|
|
321
334
|
* @type {string}
|
|
322
335
|
* @memberof AccessItemAppResponseV2025
|
|
323
336
|
*/
|
|
324
|
-
'
|
|
337
|
+
'accessType'?: string;
|
|
325
338
|
/**
|
|
326
339
|
* the access item display name
|
|
327
340
|
* @type {string}
|
|
@@ -333,13 +346,13 @@ export interface AccessItemAppResponseV2025 {
|
|
|
333
346
|
* @type {string}
|
|
334
347
|
* @memberof AccessItemAppResponseV2025
|
|
335
348
|
*/
|
|
336
|
-
'sourceName'?: string;
|
|
349
|
+
'sourceName'?: string | null;
|
|
337
350
|
/**
|
|
338
351
|
* the app role id
|
|
339
352
|
* @type {string}
|
|
340
353
|
* @memberof AccessItemAppResponseV2025
|
|
341
354
|
*/
|
|
342
|
-
'appRoleId'
|
|
355
|
+
'appRoleId': string | null;
|
|
343
356
|
}
|
|
344
357
|
/**
|
|
345
358
|
* Identity who approved the access item request.
|
|
@@ -371,10 +384,120 @@ export declare const AccessItemApproverDtoV2025TypeV2025: {
|
|
|
371
384
|
};
|
|
372
385
|
export type AccessItemApproverDtoV2025TypeV2025 = typeof AccessItemApproverDtoV2025TypeV2025[keyof typeof AccessItemApproverDtoV2025TypeV2025];
|
|
373
386
|
/**
|
|
374
|
-
*
|
|
387
|
+
*
|
|
375
388
|
* @export
|
|
389
|
+
* @interface AccessItemAssociatedAccessItemV2025
|
|
376
390
|
*/
|
|
377
|
-
export
|
|
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
|
+
}
|
|
378
501
|
/**
|
|
379
502
|
*
|
|
380
503
|
* @export
|
|
@@ -382,36 +505,50 @@ export type AccessItemAssociatedAccessItemV2025 = AccessItemAccessProfileRespons
|
|
|
382
505
|
*/
|
|
383
506
|
export interface AccessItemAssociatedV2025 {
|
|
384
507
|
/**
|
|
385
|
-
*
|
|
386
|
-
* @type {
|
|
508
|
+
* the event type
|
|
509
|
+
* @type {string}
|
|
387
510
|
* @memberof AccessItemAssociatedV2025
|
|
388
511
|
*/
|
|
389
|
-
'
|
|
512
|
+
'eventType'?: string;
|
|
390
513
|
/**
|
|
391
|
-
* the
|
|
514
|
+
* the date of event
|
|
392
515
|
* @type {string}
|
|
393
516
|
* @memberof AccessItemAssociatedV2025
|
|
394
517
|
*/
|
|
395
|
-
'
|
|
518
|
+
'dateTime'?: string;
|
|
396
519
|
/**
|
|
397
|
-
* the
|
|
520
|
+
* the identity id
|
|
398
521
|
* @type {string}
|
|
399
522
|
* @memberof AccessItemAssociatedV2025
|
|
400
523
|
*/
|
|
401
|
-
'
|
|
524
|
+
'identityId'?: string;
|
|
402
525
|
/**
|
|
403
|
-
*
|
|
404
|
-
* @type {
|
|
526
|
+
*
|
|
527
|
+
* @type {AccessItemAssociatedAccessItemV2025}
|
|
405
528
|
* @memberof AccessItemAssociatedV2025
|
|
406
529
|
*/
|
|
407
|
-
'
|
|
530
|
+
'accessItem': AccessItemAssociatedAccessItemV2025;
|
|
408
531
|
/**
|
|
409
532
|
*
|
|
410
533
|
* @type {CorrelatedGovernanceEventV2025}
|
|
411
534
|
* @memberof AccessItemAssociatedV2025
|
|
412
535
|
*/
|
|
413
|
-
'governanceEvent'
|
|
536
|
+
'governanceEvent': CorrelatedGovernanceEventV2025 | null;
|
|
537
|
+
/**
|
|
538
|
+
* the access item type
|
|
539
|
+
* @type {string}
|
|
540
|
+
* @memberof AccessItemAssociatedV2025
|
|
541
|
+
*/
|
|
542
|
+
'accessItemType'?: AccessItemAssociatedV2025AccessItemTypeV2025;
|
|
414
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];
|
|
415
552
|
/**
|
|
416
553
|
*
|
|
417
554
|
* @export
|
|
@@ -455,77 +592,77 @@ export type AccessItemDiffV2025EventTypeV2025 = typeof AccessItemDiffV2025EventT
|
|
|
455
592
|
*/
|
|
456
593
|
export interface AccessItemEntitlementResponseV2025 {
|
|
457
594
|
/**
|
|
458
|
-
* the access item
|
|
595
|
+
* the access item id
|
|
459
596
|
* @type {string}
|
|
460
597
|
* @memberof AccessItemEntitlementResponseV2025
|
|
461
598
|
*/
|
|
462
|
-
'
|
|
599
|
+
'id'?: string;
|
|
463
600
|
/**
|
|
464
|
-
* the access item
|
|
601
|
+
* the access item type. entitlement in this case
|
|
465
602
|
* @type {string}
|
|
466
603
|
* @memberof AccessItemEntitlementResponseV2025
|
|
467
604
|
*/
|
|
468
|
-
'
|
|
605
|
+
'accessType'?: string;
|
|
469
606
|
/**
|
|
470
|
-
* the
|
|
607
|
+
* the display name of the identity
|
|
471
608
|
* @type {string}
|
|
472
609
|
* @memberof AccessItemEntitlementResponseV2025
|
|
473
610
|
*/
|
|
474
|
-
'
|
|
611
|
+
'displayName'?: string;
|
|
475
612
|
/**
|
|
476
|
-
* the
|
|
613
|
+
* the name of the source
|
|
477
614
|
* @type {string}
|
|
478
615
|
* @memberof AccessItemEntitlementResponseV2025
|
|
479
616
|
*/
|
|
480
|
-
'
|
|
617
|
+
'sourceName'?: string;
|
|
481
618
|
/**
|
|
482
|
-
* the
|
|
619
|
+
* the entitlement attribute
|
|
483
620
|
* @type {string}
|
|
484
621
|
* @memberof AccessItemEntitlementResponseV2025
|
|
485
622
|
*/
|
|
486
|
-
'
|
|
623
|
+
'attribute': string;
|
|
487
624
|
/**
|
|
488
|
-
* the
|
|
625
|
+
* the associated value
|
|
489
626
|
* @type {string}
|
|
490
627
|
* @memberof AccessItemEntitlementResponseV2025
|
|
491
628
|
*/
|
|
492
|
-
'
|
|
629
|
+
'value': string;
|
|
493
630
|
/**
|
|
494
|
-
* the
|
|
631
|
+
* the type of entitlement
|
|
495
632
|
* @type {string}
|
|
496
633
|
* @memberof AccessItemEntitlementResponseV2025
|
|
497
634
|
*/
|
|
498
|
-
'
|
|
635
|
+
'type': string;
|
|
499
636
|
/**
|
|
500
637
|
* the description for the entitlment
|
|
501
638
|
* @type {string}
|
|
502
639
|
* @memberof AccessItemEntitlementResponseV2025
|
|
503
640
|
*/
|
|
504
|
-
'description'?: string;
|
|
641
|
+
'description'?: string | null;
|
|
505
642
|
/**
|
|
506
|
-
* the
|
|
643
|
+
* the id of the source
|
|
507
644
|
* @type {string}
|
|
508
645
|
* @memberof AccessItemEntitlementResponseV2025
|
|
509
646
|
*/
|
|
510
|
-
'
|
|
647
|
+
'sourceId'?: string;
|
|
511
648
|
/**
|
|
512
649
|
* indicates whether the entitlement is standalone
|
|
513
650
|
* @type {boolean}
|
|
514
651
|
* @memberof AccessItemEntitlementResponseV2025
|
|
515
652
|
*/
|
|
516
|
-
'standalone': boolean;
|
|
653
|
+
'standalone': boolean | null;
|
|
517
654
|
/**
|
|
518
655
|
* indicates whether the entitlement is privileged
|
|
519
656
|
* @type {boolean}
|
|
520
657
|
* @memberof AccessItemEntitlementResponseV2025
|
|
521
658
|
*/
|
|
522
|
-
'privileged': boolean;
|
|
659
|
+
'privileged': boolean | null;
|
|
523
660
|
/**
|
|
524
661
|
* indicates whether the entitlement is cloud governed
|
|
525
662
|
* @type {boolean}
|
|
526
663
|
* @memberof AccessItemEntitlementResponseV2025
|
|
527
664
|
*/
|
|
528
|
-
'cloudGoverned': boolean;
|
|
665
|
+
'cloudGoverned': boolean | null;
|
|
529
666
|
}
|
|
530
667
|
/**
|
|
531
668
|
*
|
|
@@ -563,7 +700,7 @@ export interface AccessItemRemovedV2025 {
|
|
|
563
700
|
* @type {AccessItemAssociatedAccessItemV2025}
|
|
564
701
|
* @memberof AccessItemRemovedV2025
|
|
565
702
|
*/
|
|
566
|
-
'accessItem'
|
|
703
|
+
'accessItem': AccessItemAssociatedAccessItemV2025;
|
|
567
704
|
/**
|
|
568
705
|
* the identity id
|
|
569
706
|
* @type {string}
|
|
@@ -581,14 +718,28 @@ export interface AccessItemRemovedV2025 {
|
|
|
581
718
|
* @type {string}
|
|
582
719
|
* @memberof AccessItemRemovedV2025
|
|
583
720
|
*/
|
|
584
|
-
'
|
|
721
|
+
'dateTime'?: string;
|
|
722
|
+
/**
|
|
723
|
+
* the access item type
|
|
724
|
+
* @type {string}
|
|
725
|
+
* @memberof AccessItemRemovedV2025
|
|
726
|
+
*/
|
|
727
|
+
'accessItemType'?: AccessItemRemovedV2025AccessItemTypeV2025;
|
|
585
728
|
/**
|
|
586
729
|
*
|
|
587
730
|
* @type {CorrelatedGovernanceEventV2025}
|
|
588
731
|
* @memberof AccessItemRemovedV2025
|
|
589
732
|
*/
|
|
590
|
-
'governanceEvent'?: CorrelatedGovernanceEventV2025;
|
|
733
|
+
'governanceEvent'?: CorrelatedGovernanceEventV2025 | null;
|
|
591
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];
|
|
592
743
|
/**
|
|
593
744
|
* Identity the access item is requested for.
|
|
594
745
|
* @export
|
|
@@ -741,17 +892,17 @@ export type AccessItemReviewedByV2025TypeV2025 = typeof AccessItemReviewedByV202
|
|
|
741
892
|
*/
|
|
742
893
|
export interface AccessItemRoleResponseV2025 {
|
|
743
894
|
/**
|
|
744
|
-
* the access item
|
|
895
|
+
* the access item id
|
|
745
896
|
* @type {string}
|
|
746
897
|
* @memberof AccessItemRoleResponseV2025
|
|
747
898
|
*/
|
|
748
|
-
'
|
|
899
|
+
'id'?: string;
|
|
749
900
|
/**
|
|
750
|
-
* the access item
|
|
901
|
+
* the access item type. role in this case
|
|
751
902
|
* @type {string}
|
|
752
903
|
* @memberof AccessItemRoleResponseV2025
|
|
753
904
|
*/
|
|
754
|
-
'
|
|
905
|
+
'accessType'?: string;
|
|
755
906
|
/**
|
|
756
907
|
* the role display name
|
|
757
908
|
* @type {string}
|
|
@@ -759,17 +910,17 @@ export interface AccessItemRoleResponseV2025 {
|
|
|
759
910
|
*/
|
|
760
911
|
'displayName'?: string;
|
|
761
912
|
/**
|
|
762
|
-
* the
|
|
913
|
+
* the associated source name if it exists
|
|
763
914
|
* @type {string}
|
|
764
915
|
* @memberof AccessItemRoleResponseV2025
|
|
765
916
|
*/
|
|
766
|
-
'
|
|
917
|
+
'sourceName'?: string | null;
|
|
767
918
|
/**
|
|
768
|
-
* the
|
|
919
|
+
* the description for the role
|
|
769
920
|
* @type {string}
|
|
770
921
|
* @memberof AccessItemRoleResponseV2025
|
|
771
922
|
*/
|
|
772
|
-
'
|
|
923
|
+
'description'?: string;
|
|
773
924
|
/**
|
|
774
925
|
* the date the role is no longer assigned to the specified identity
|
|
775
926
|
* @type {string}
|
|
@@ -783,6 +934,50 @@ export interface AccessItemRoleResponseV2025 {
|
|
|
783
934
|
*/
|
|
784
935
|
'revocable': boolean;
|
|
785
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];
|
|
786
981
|
/**
|
|
787
982
|
* Metadata that describes an access item
|
|
788
983
|
* @export
|
|
@@ -2947,7 +3142,7 @@ export interface AccessRequestedV2025 {
|
|
|
2947
3142
|
* @type {AccessRequestResponse1V2025}
|
|
2948
3143
|
* @memberof AccessRequestedV2025
|
|
2949
3144
|
*/
|
|
2950
|
-
'accessRequest'
|
|
3145
|
+
'accessRequest': AccessRequestResponse1V2025;
|
|
2951
3146
|
/**
|
|
2952
3147
|
* the identity id
|
|
2953
3148
|
* @type {string}
|
|
@@ -2965,7 +3160,7 @@ export interface AccessRequestedV2025 {
|
|
|
2965
3160
|
* @type {string}
|
|
2966
3161
|
* @memberof AccessRequestedV2025
|
|
2967
3162
|
*/
|
|
2968
|
-
'
|
|
3163
|
+
'dateTime'?: string;
|
|
2969
3164
|
}
|
|
2970
3165
|
/**
|
|
2971
3166
|
*
|
|
@@ -4772,19 +4967,19 @@ export interface AccountStatusChangedV2025 {
|
|
|
4772
4967
|
* @type {string}
|
|
4773
4968
|
* @memberof AccountStatusChangedV2025
|
|
4774
4969
|
*/
|
|
4775
|
-
'
|
|
4970
|
+
'dateTime'?: string;
|
|
4776
4971
|
/**
|
|
4777
4972
|
*
|
|
4778
4973
|
* @type {AccountStatusChangedAccountV2025}
|
|
4779
4974
|
* @memberof AccountStatusChangedV2025
|
|
4780
4975
|
*/
|
|
4781
|
-
'account'
|
|
4976
|
+
'account': AccountStatusChangedAccountV2025;
|
|
4782
4977
|
/**
|
|
4783
4978
|
*
|
|
4784
4979
|
* @type {AccountStatusChangedStatusChangeV2025}
|
|
4785
4980
|
* @memberof AccountStatusChangedV2025
|
|
4786
4981
|
*/
|
|
4787
|
-
'statusChange'
|
|
4982
|
+
'statusChange': AccountStatusChangedStatusChangeV2025;
|
|
4788
4983
|
}
|
|
4789
4984
|
/**
|
|
4790
4985
|
* Request used for account enable/disable
|
|
@@ -6931,7 +7126,7 @@ export interface AttributesChangedV2025 {
|
|
|
6931
7126
|
* @type {Array<AttributeChangeV2025>}
|
|
6932
7127
|
* @memberof AttributesChangedV2025
|
|
6933
7128
|
*/
|
|
6934
|
-
'
|
|
7129
|
+
'attributeChanges': Array<AttributeChangeV2025>;
|
|
6935
7130
|
/**
|
|
6936
7131
|
* the event type
|
|
6937
7132
|
* @type {string}
|
|
@@ -6949,7 +7144,7 @@ export interface AttributesChangedV2025 {
|
|
|
6949
7144
|
* @type {string}
|
|
6950
7145
|
* @memberof AttributesChangedV2025
|
|
6951
7146
|
*/
|
|
6952
|
-
'
|
|
7147
|
+
'dateTime'?: string;
|
|
6953
7148
|
}
|
|
6954
7149
|
/**
|
|
6955
7150
|
* Audit details for the reassignment configuration of an identity
|
|
@@ -12137,7 +12332,7 @@ export interface CorrelatedGovernanceEventV2025 {
|
|
|
12137
12332
|
* @type {string}
|
|
12138
12333
|
* @memberof CorrelatedGovernanceEventV2025
|
|
12139
12334
|
*/
|
|
12140
|
-
'
|
|
12335
|
+
'dateTime'?: string;
|
|
12141
12336
|
/**
|
|
12142
12337
|
* The type of governance event.
|
|
12143
12338
|
* @type {string}
|
|
@@ -12683,7 +12878,13 @@ export interface CreatePersonalAccessTokenRequestV2025 {
|
|
|
12683
12878
|
* @type {number}
|
|
12684
12879
|
* @memberof CreatePersonalAccessTokenRequestV2025
|
|
12685
12880
|
*/
|
|
12686
|
-
'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;
|
|
12687
12888
|
}
|
|
12688
12889
|
/**
|
|
12689
12890
|
*
|
|
@@ -12733,6 +12934,12 @@ export interface CreatePersonalAccessTokenResponseV2025 {
|
|
|
12733
12934
|
* @memberof CreatePersonalAccessTokenResponseV2025
|
|
12734
12935
|
*/
|
|
12735
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;
|
|
12736
12943
|
}
|
|
12737
12944
|
/**
|
|
12738
12945
|
*
|
|
@@ -14368,6 +14575,132 @@ export type EntitlementApprovalSchemeV2025ApproverTypeV2025 = typeof Entitlement
|
|
|
14368
14575
|
/**
|
|
14369
14576
|
*
|
|
14370
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
|
|
14371
14704
|
* @interface EntitlementBulkUpdateRequestV2025
|
|
14372
14705
|
*/
|
|
14373
14706
|
export interface EntitlementBulkUpdateRequestV2025 {
|
|
@@ -17747,96 +18080,110 @@ export type GetDiscoveredApplications200ResponseInnerV2025 = FullDiscoveredAppli
|
|
|
17747
18080
|
*/
|
|
17748
18081
|
export interface GetHistoricalIdentityEvents200ResponseInnerV2025 {
|
|
17749
18082
|
/**
|
|
17750
|
-
*
|
|
17751
|
-
* @type {
|
|
18083
|
+
* the id of the certification item
|
|
18084
|
+
* @type {string}
|
|
17752
18085
|
* @memberof GetHistoricalIdentityEvents200ResponseInnerV2025
|
|
17753
18086
|
*/
|
|
17754
|
-
'
|
|
18087
|
+
'certificationId': string;
|
|
17755
18088
|
/**
|
|
17756
|
-
* the
|
|
18089
|
+
* the certification item name
|
|
17757
18090
|
* @type {string}
|
|
17758
18091
|
* @memberof GetHistoricalIdentityEvents200ResponseInnerV2025
|
|
17759
18092
|
*/
|
|
17760
|
-
'
|
|
18093
|
+
'certificationName': string;
|
|
17761
18094
|
/**
|
|
17762
|
-
* the
|
|
18095
|
+
* the date ceritification was signed
|
|
17763
18096
|
* @type {string}
|
|
17764
18097
|
* @memberof GetHistoricalIdentityEvents200ResponseInnerV2025
|
|
17765
18098
|
*/
|
|
17766
|
-
'
|
|
18099
|
+
'signedDate'?: string;
|
|
17767
18100
|
/**
|
|
17768
|
-
*
|
|
17769
|
-
* @type {
|
|
18101
|
+
* this field is deprecated and may go away
|
|
18102
|
+
* @type {Array<CertifierResponseV2025>}
|
|
17770
18103
|
* @memberof GetHistoricalIdentityEvents200ResponseInnerV2025
|
|
17771
18104
|
*/
|
|
17772
|
-
'
|
|
18105
|
+
'certifiers'?: Array<CertifierResponseV2025>;
|
|
17773
18106
|
/**
|
|
17774
|
-
*
|
|
17775
|
-
* @type {
|
|
18107
|
+
* The list of identities who review this certification
|
|
18108
|
+
* @type {Array<CertifierResponseV2025>}
|
|
17776
18109
|
* @memberof GetHistoricalIdentityEvents200ResponseInnerV2025
|
|
17777
18110
|
*/
|
|
17778
|
-
'
|
|
18111
|
+
'reviewers'?: Array<CertifierResponseV2025>;
|
|
17779
18112
|
/**
|
|
17780
18113
|
*
|
|
17781
|
-
* @type {
|
|
18114
|
+
* @type {CertifierResponseV2025}
|
|
17782
18115
|
* @memberof GetHistoricalIdentityEvents200ResponseInnerV2025
|
|
17783
18116
|
*/
|
|
17784
|
-
'
|
|
18117
|
+
'signer'?: CertifierResponseV2025;
|
|
17785
18118
|
/**
|
|
17786
|
-
*
|
|
17787
|
-
* @type {
|
|
18119
|
+
* the event type
|
|
18120
|
+
* @type {string}
|
|
17788
18121
|
* @memberof GetHistoricalIdentityEvents200ResponseInnerV2025
|
|
17789
18122
|
*/
|
|
17790
|
-
'
|
|
18123
|
+
'eventType'?: string;
|
|
17791
18124
|
/**
|
|
17792
|
-
* the
|
|
18125
|
+
* the date of event
|
|
17793
18126
|
* @type {string}
|
|
17794
18127
|
* @memberof GetHistoricalIdentityEvents200ResponseInnerV2025
|
|
17795
18128
|
*/
|
|
17796
|
-
'
|
|
18129
|
+
'dateTime'?: string;
|
|
17797
18130
|
/**
|
|
17798
|
-
* the
|
|
18131
|
+
* the identity id
|
|
17799
18132
|
* @type {string}
|
|
17800
18133
|
* @memberof GetHistoricalIdentityEvents200ResponseInnerV2025
|
|
17801
18134
|
*/
|
|
17802
|
-
'
|
|
18135
|
+
'identityId'?: string;
|
|
17803
18136
|
/**
|
|
17804
|
-
*
|
|
17805
|
-
* @type {
|
|
18137
|
+
*
|
|
18138
|
+
* @type {AccessItemAssociatedAccessItemV2025}
|
|
17806
18139
|
* @memberof GetHistoricalIdentityEvents200ResponseInnerV2025
|
|
17807
18140
|
*/
|
|
17808
|
-
'
|
|
18141
|
+
'accessItem': AccessItemAssociatedAccessItemV2025;
|
|
17809
18142
|
/**
|
|
17810
|
-
*
|
|
17811
|
-
* @type {
|
|
18143
|
+
*
|
|
18144
|
+
* @type {CorrelatedGovernanceEventV2025}
|
|
17812
18145
|
* @memberof GetHistoricalIdentityEvents200ResponseInnerV2025
|
|
17813
18146
|
*/
|
|
17814
|
-
'
|
|
18147
|
+
'governanceEvent': CorrelatedGovernanceEventV2025 | null;
|
|
17815
18148
|
/**
|
|
17816
|
-
*
|
|
17817
|
-
* @type {
|
|
18149
|
+
* the access item type
|
|
18150
|
+
* @type {string}
|
|
17818
18151
|
* @memberof GetHistoricalIdentityEvents200ResponseInnerV2025
|
|
17819
18152
|
*/
|
|
17820
|
-
'
|
|
18153
|
+
'accessItemType'?: GetHistoricalIdentityEvents200ResponseInnerV2025AccessItemTypeV2025;
|
|
17821
18154
|
/**
|
|
17822
18155
|
*
|
|
17823
|
-
* @type {
|
|
18156
|
+
* @type {Array<AttributeChangeV2025>}
|
|
17824
18157
|
* @memberof GetHistoricalIdentityEvents200ResponseInnerV2025
|
|
17825
18158
|
*/
|
|
17826
|
-
'
|
|
18159
|
+
'attributeChanges': Array<AttributeChangeV2025>;
|
|
18160
|
+
/**
|
|
18161
|
+
*
|
|
18162
|
+
* @type {AccessRequestResponse1V2025}
|
|
18163
|
+
* @memberof GetHistoricalIdentityEvents200ResponseInnerV2025
|
|
18164
|
+
*/
|
|
18165
|
+
'accessRequest': AccessRequestResponse1V2025;
|
|
17827
18166
|
/**
|
|
17828
18167
|
*
|
|
17829
18168
|
* @type {AccountStatusChangedAccountV2025}
|
|
17830
18169
|
* @memberof GetHistoricalIdentityEvents200ResponseInnerV2025
|
|
17831
18170
|
*/
|
|
17832
|
-
'account'
|
|
18171
|
+
'account': AccountStatusChangedAccountV2025;
|
|
17833
18172
|
/**
|
|
17834
18173
|
*
|
|
17835
18174
|
* @type {AccountStatusChangedStatusChangeV2025}
|
|
17836
18175
|
* @memberof GetHistoricalIdentityEvents200ResponseInnerV2025
|
|
17837
18176
|
*/
|
|
17838
|
-
'statusChange'
|
|
18177
|
+
'statusChange': AccountStatusChangedStatusChangeV2025;
|
|
17839
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];
|
|
17840
18187
|
/**
|
|
17841
18188
|
*
|
|
17842
18189
|
* @export
|
|
@@ -18018,6 +18365,18 @@ export interface GetPersonalAccessTokenResponseV2025 {
|
|
|
18018
18365
|
* @memberof GetPersonalAccessTokenResponseV2025
|
|
18019
18366
|
*/
|
|
18020
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;
|
|
18021
18380
|
}
|
|
18022
18381
|
/**
|
|
18023
18382
|
*
|
|
@@ -18141,6 +18500,49 @@ export declare const GrantTypeV2025: {
|
|
|
18141
18500
|
readonly RefreshToken: "REFRESH_TOKEN";
|
|
18142
18501
|
};
|
|
18143
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
|
+
}
|
|
18144
18546
|
/**
|
|
18145
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.
|
|
18146
18548
|
* @export
|
|
@@ -18852,13 +19254,13 @@ export interface IdentityCertifiedV2025 {
|
|
|
18852
19254
|
* @type {string}
|
|
18853
19255
|
* @memberof IdentityCertifiedV2025
|
|
18854
19256
|
*/
|
|
18855
|
-
'certificationId'
|
|
19257
|
+
'certificationId': string;
|
|
18856
19258
|
/**
|
|
18857
19259
|
* the certification item name
|
|
18858
19260
|
* @type {string}
|
|
18859
19261
|
* @memberof IdentityCertifiedV2025
|
|
18860
19262
|
*/
|
|
18861
|
-
'certificationName'
|
|
19263
|
+
'certificationName': string;
|
|
18862
19264
|
/**
|
|
18863
19265
|
* the date ceritification was signed
|
|
18864
19266
|
* @type {string}
|
|
@@ -18894,7 +19296,7 @@ export interface IdentityCertifiedV2025 {
|
|
|
18894
19296
|
* @type {string}
|
|
18895
19297
|
* @memberof IdentityCertifiedV2025
|
|
18896
19298
|
*/
|
|
18897
|
-
'
|
|
19299
|
+
'dateTime'?: string;
|
|
18898
19300
|
}
|
|
18899
19301
|
/**
|
|
18900
19302
|
*
|
|
@@ -19775,6 +20177,25 @@ export interface IdentityEntitlementDetailsV2025 {
|
|
|
19775
20177
|
*/
|
|
19776
20178
|
'accountTargets'?: Array<IdentityEntitlementDetailsAccountTargetV2025>;
|
|
19777
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
|
+
}
|
|
19778
20199
|
/**
|
|
19779
20200
|
*
|
|
19780
20201
|
* @export
|
|
@@ -21744,10 +22165,125 @@ export interface ListFormInstancesByTenantResponseV2025 {
|
|
|
21744
22165
|
'results'?: Array<FormInstanceResponseV2025>;
|
|
21745
22166
|
}
|
|
21746
22167
|
/**
|
|
21747
|
-
*
|
|
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
|
|
21748
22284
|
* @export
|
|
21749
22285
|
*/
|
|
21750
|
-
export type
|
|
22286
|
+
export type ListIdentitySnapshotAccessItems200ResponseInnerV2025 = AccessItemAccessProfileResponseV2025 | AccessItemAccountResponseV2025 | AccessItemAppResponseV2025 | AccessItemEntitlementResponseV2025 | AccessItemRoleResponseV2025;
|
|
21751
22287
|
/**
|
|
21752
22288
|
*
|
|
21753
22289
|
* @export
|
|
@@ -22524,7 +23060,7 @@ export type MachineAccountV2025ClassificationMethodV2025 = typeof MachineAccount
|
|
|
22524
23060
|
*/
|
|
22525
23061
|
export interface MachineClassificationConfigV2025 {
|
|
22526
23062
|
/**
|
|
22527
|
-
* Indicates
|
|
23063
|
+
* Indicates whether Classification is enabled for a Source
|
|
22528
23064
|
* @type {boolean}
|
|
22529
23065
|
* @memberof MachineClassificationConfigV2025
|
|
22530
23066
|
*/
|
|
@@ -22536,19 +23072,19 @@ export interface MachineClassificationConfigV2025 {
|
|
|
22536
23072
|
*/
|
|
22537
23073
|
'classificationMethod'?: MachineClassificationConfigV2025ClassificationMethodV2025;
|
|
22538
23074
|
/**
|
|
22539
|
-
*
|
|
22540
|
-
* @type {
|
|
23075
|
+
*
|
|
23076
|
+
* @type {MachineClassificationCriteriaLevel1V2025}
|
|
22541
23077
|
* @memberof MachineClassificationConfigV2025
|
|
22542
23078
|
*/
|
|
22543
|
-
'criteria'?:
|
|
23079
|
+
'criteria'?: MachineClassificationCriteriaLevel1V2025;
|
|
22544
23080
|
/**
|
|
22545
|
-
*
|
|
23081
|
+
* Date the config was created
|
|
22546
23082
|
* @type {string}
|
|
22547
23083
|
* @memberof MachineClassificationConfigV2025
|
|
22548
23084
|
*/
|
|
22549
23085
|
'created'?: string;
|
|
22550
23086
|
/**
|
|
22551
|
-
*
|
|
23087
|
+
* Date the config was last updated
|
|
22552
23088
|
* @type {string}
|
|
22553
23089
|
* @memberof MachineClassificationConfigV2025
|
|
22554
23090
|
*/
|
|
@@ -22556,8 +23092,153 @@ export interface MachineClassificationConfigV2025 {
|
|
|
22556
23092
|
}
|
|
22557
23093
|
export declare const MachineClassificationConfigV2025ClassificationMethodV2025: {
|
|
22558
23094
|
readonly Source: "SOURCE";
|
|
23095
|
+
readonly Criteria: "CRITERIA";
|
|
22559
23096
|
};
|
|
22560
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];
|
|
22561
23242
|
/**
|
|
22562
23243
|
* The owner configuration associated to the machine identity
|
|
22563
23244
|
* @export
|
|
@@ -24637,6 +25318,37 @@ export interface NestedAggregationV2025 {
|
|
|
24637
25318
|
*/
|
|
24638
25319
|
'type': string;
|
|
24639
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
|
+
}
|
|
24640
25352
|
/**
|
|
24641
25353
|
*
|
|
24642
25354
|
* @export
|
|
@@ -31012,6 +31724,79 @@ export interface RightPadV2025 {
|
|
|
31012
31724
|
[key: string]: any;
|
|
31013
31725
|
};
|
|
31014
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
|
+
}
|
|
31015
31800
|
/**
|
|
31016
31801
|
* The identity that performed the assignment. This could be blank or system
|
|
31017
31802
|
* @export
|
|
@@ -36864,6 +37649,35 @@ export interface SodPolicyConflictingAccessCriteriaV2025 {
|
|
|
36864
37649
|
*/
|
|
36865
37650
|
'rightCriteria'?: AccessCriteriaV2025;
|
|
36866
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];
|
|
36867
37681
|
/**
|
|
36868
37682
|
* SOD policy.
|
|
36869
37683
|
* @export
|
|
@@ -37195,10 +38009,10 @@ export interface SodViolationCheckResultV2025 {
|
|
|
37195
38009
|
'violationContexts'?: Array<SodViolationContextV2025> | null;
|
|
37196
38010
|
/**
|
|
37197
38011
|
* A list of the SOD policies that were violated.
|
|
37198
|
-
* @type {Array<
|
|
38012
|
+
* @type {Array<SodPolicyDto1V2025>}
|
|
37199
38013
|
* @memberof SodViolationCheckResultV2025
|
|
37200
38014
|
*/
|
|
37201
|
-
'violatedPolicies'?: Array<
|
|
38015
|
+
'violatedPolicies'?: Array<SodPolicyDto1V2025> | null;
|
|
37202
38016
|
}
|
|
37203
38017
|
/**
|
|
37204
38018
|
* An object referencing an SOD violation check
|
|
@@ -37289,10 +38103,10 @@ export interface SodViolationContextConflictingAccessCriteriaV2025 {
|
|
|
37289
38103
|
export interface SodViolationContextV2025 {
|
|
37290
38104
|
/**
|
|
37291
38105
|
*
|
|
37292
|
-
* @type {
|
|
38106
|
+
* @type {SodPolicyDto1V2025}
|
|
37293
38107
|
* @memberof SodViolationContextV2025
|
|
37294
38108
|
*/
|
|
37295
|
-
'policy'?:
|
|
38109
|
+
'policy'?: SodPolicyDto1V2025;
|
|
37296
38110
|
/**
|
|
37297
38111
|
*
|
|
37298
38112
|
* @type {SodViolationContextConflictingAccessCriteriaV2025}
|
|
@@ -42059,6 +42873,170 @@ export interface UserAppV2025 {
|
|
|
42059
42873
|
*/
|
|
42060
42874
|
'owner'?: UserAppOwnerV2025;
|
|
42061
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];
|
|
42062
43040
|
/**
|
|
42063
43041
|
*
|
|
42064
43042
|
* @export
|
|
@@ -43920,39 +44898,66 @@ export declare const AccessModelMetadataV2025ApiAxiosParamCreator: (configuratio
|
|
|
43920
44898
|
* Get single Access Model Metadata Attribute
|
|
43921
44899
|
* @summary Get access model metadata attribute
|
|
43922
44900
|
* @param {string} key Technical name of the Attribute.
|
|
43923
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
43924
44901
|
* @param {*} [axiosOptions] Override http request option.
|
|
43925
44902
|
* @throws {RequiredError}
|
|
43926
44903
|
*/
|
|
43927
|
-
getAccessModelMetadataAttribute: (key: string,
|
|
44904
|
+
getAccessModelMetadataAttribute: (key: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
43928
44905
|
/**
|
|
43929
44906
|
* Get single Access Model Metadata Attribute Value
|
|
43930
44907
|
* @summary Get access model metadata value
|
|
43931
44908
|
* @param {string} key Technical name of the Attribute.
|
|
43932
44909
|
* @param {string} value Technical name of the Attribute value.
|
|
43933
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
43934
44910
|
* @param {*} [axiosOptions] Override http request option.
|
|
43935
44911
|
* @throws {RequiredError}
|
|
43936
44912
|
*/
|
|
43937
|
-
getAccessModelMetadataAttributeValue: (key: string, value: string,
|
|
44913
|
+
getAccessModelMetadataAttributeValue: (key: string, value: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
43938
44914
|
/**
|
|
43939
44915
|
* Get a list of Access Model Metadata Attributes
|
|
43940
44916
|
* @summary List access model metadata attributes
|
|
43941
|
-
* @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
|
|
43942
|
-
* @param {string} [
|
|
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=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.
|
|
43943
44922
|
* @param {*} [axiosOptions] Override http request option.
|
|
43944
44923
|
* @throws {RequiredError}
|
|
43945
44924
|
*/
|
|
43946
|
-
listAccessModelMetadataAttribute: (filters?: string,
|
|
44925
|
+
listAccessModelMetadataAttribute: (filters?: string, sorters?: string, offset?: number, limit?: number, count?: boolean, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
43947
44926
|
/**
|
|
43948
44927
|
* Get a list of Access Model Metadata Attribute Values
|
|
43949
44928
|
* @summary List access model metadata values
|
|
43950
44929
|
* @param {string} key Technical name of the Attribute.
|
|
43951
|
-
* @param {
|
|
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=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.
|
|
44933
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
44934
|
+
* @throws {RequiredError}
|
|
44935
|
+
*/
|
|
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.
|
|
43952
44957
|
* @param {*} [axiosOptions] Override http request option.
|
|
43953
44958
|
* @throws {RequiredError}
|
|
43954
44959
|
*/
|
|
43955
|
-
|
|
44960
|
+
updateAccessModelMetadataByQuery: (entitlementAttributeBulkUpdateQueryRequestV2025: EntitlementAttributeBulkUpdateQueryRequestV2025, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
43956
44961
|
};
|
|
43957
44962
|
/**
|
|
43958
44963
|
* AccessModelMetadataV2025Api - functional programming interface
|
|
@@ -43963,39 +44968,66 @@ export declare const AccessModelMetadataV2025ApiFp: (configuration?: Configurati
|
|
|
43963
44968
|
* Get single Access Model Metadata Attribute
|
|
43964
44969
|
* @summary Get access model metadata attribute
|
|
43965
44970
|
* @param {string} key Technical name of the Attribute.
|
|
43966
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
43967
44971
|
* @param {*} [axiosOptions] Override http request option.
|
|
43968
44972
|
* @throws {RequiredError}
|
|
43969
44973
|
*/
|
|
43970
|
-
getAccessModelMetadataAttribute(key: string,
|
|
44974
|
+
getAccessModelMetadataAttribute(key: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AttributeDTOV2025>>;
|
|
43971
44975
|
/**
|
|
43972
44976
|
* Get single Access Model Metadata Attribute Value
|
|
43973
44977
|
* @summary Get access model metadata value
|
|
43974
44978
|
* @param {string} key Technical name of the Attribute.
|
|
43975
44979
|
* @param {string} value Technical name of the Attribute value.
|
|
43976
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
43977
44980
|
* @param {*} [axiosOptions] Override http request option.
|
|
43978
44981
|
* @throws {RequiredError}
|
|
43979
44982
|
*/
|
|
43980
|
-
getAccessModelMetadataAttributeValue(key: string, value: string,
|
|
44983
|
+
getAccessModelMetadataAttributeValue(key: string, value: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AttributeValueDTOV2025>>;
|
|
43981
44984
|
/**
|
|
43982
44985
|
* Get a list of Access Model Metadata Attributes
|
|
43983
44986
|
* @summary List access model metadata attributes
|
|
43984
|
-
* @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
|
|
43985
|
-
* @param {string} [
|
|
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=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.
|
|
43986
44992
|
* @param {*} [axiosOptions] Override http request option.
|
|
43987
44993
|
* @throws {RequiredError}
|
|
43988
44994
|
*/
|
|
43989
|
-
listAccessModelMetadataAttribute(filters?: string,
|
|
44995
|
+
listAccessModelMetadataAttribute(filters?: string, sorters?: string, offset?: number, limit?: number, count?: boolean, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<AttributeDTOV2025>>>;
|
|
43990
44996
|
/**
|
|
43991
44997
|
* Get a list of Access Model Metadata Attribute Values
|
|
43992
44998
|
* @summary List access model metadata values
|
|
43993
44999
|
* @param {string} key Technical name of the Attribute.
|
|
43994
|
-
* @param {
|
|
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=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.
|
|
45003
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
45004
|
+
* @throws {RequiredError}
|
|
45005
|
+
*/
|
|
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.
|
|
43995
45019
|
* @param {*} [axiosOptions] Override http request option.
|
|
43996
45020
|
* @throws {RequiredError}
|
|
43997
45021
|
*/
|
|
43998
|
-
|
|
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>>;
|
|
43999
45031
|
};
|
|
44000
45032
|
/**
|
|
44001
45033
|
* AccessModelMetadataV2025Api - factory interface
|
|
@@ -44034,6 +45066,30 @@ export declare const AccessModelMetadataV2025ApiFactory: (configuration?: Config
|
|
|
44034
45066
|
* @throws {RequiredError}
|
|
44035
45067
|
*/
|
|
44036
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>;
|
|
44037
45093
|
};
|
|
44038
45094
|
/**
|
|
44039
45095
|
* Request parameters for getAccessModelMetadataAttribute operation in AccessModelMetadataV2025Api.
|
|
@@ -44047,12 +45103,6 @@ export interface AccessModelMetadataV2025ApiGetAccessModelMetadataAttributeReque
|
|
|
44047
45103
|
* @memberof AccessModelMetadataV2025ApiGetAccessModelMetadataAttribute
|
|
44048
45104
|
*/
|
|
44049
45105
|
readonly key: string;
|
|
44050
|
-
/**
|
|
44051
|
-
* Use this header to enable this experimental API.
|
|
44052
|
-
* @type {string}
|
|
44053
|
-
* @memberof AccessModelMetadataV2025ApiGetAccessModelMetadataAttribute
|
|
44054
|
-
*/
|
|
44055
|
-
readonly xSailPointExperimental?: string;
|
|
44056
45106
|
}
|
|
44057
45107
|
/**
|
|
44058
45108
|
* Request parameters for getAccessModelMetadataAttributeValue operation in AccessModelMetadataV2025Api.
|
|
@@ -44072,12 +45122,6 @@ export interface AccessModelMetadataV2025ApiGetAccessModelMetadataAttributeValue
|
|
|
44072
45122
|
* @memberof AccessModelMetadataV2025ApiGetAccessModelMetadataAttributeValue
|
|
44073
45123
|
*/
|
|
44074
45124
|
readonly value: string;
|
|
44075
|
-
/**
|
|
44076
|
-
* Use this header to enable this experimental API.
|
|
44077
|
-
* @type {string}
|
|
44078
|
-
* @memberof AccessModelMetadataV2025ApiGetAccessModelMetadataAttributeValue
|
|
44079
|
-
*/
|
|
44080
|
-
readonly xSailPointExperimental?: string;
|
|
44081
45125
|
}
|
|
44082
45126
|
/**
|
|
44083
45127
|
* Request parameters for listAccessModelMetadataAttribute operation in AccessModelMetadataV2025Api.
|
|
@@ -44086,17 +45130,35 @@ export interface AccessModelMetadataV2025ApiGetAccessModelMetadataAttributeValue
|
|
|
44086
45130
|
*/
|
|
44087
45131
|
export interface AccessModelMetadataV2025ApiListAccessModelMetadataAttributeRequest {
|
|
44088
45132
|
/**
|
|
44089
|
-
* 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
|
|
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*
|
|
44090
45134
|
* @type {string}
|
|
44091
45135
|
* @memberof AccessModelMetadataV2025ApiListAccessModelMetadataAttribute
|
|
44092
45136
|
*/
|
|
44093
45137
|
readonly filters?: string;
|
|
44094
45138
|
/**
|
|
44095
|
-
*
|
|
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**
|
|
44096
45140
|
* @type {string}
|
|
44097
45141
|
* @memberof AccessModelMetadataV2025ApiListAccessModelMetadataAttribute
|
|
44098
45142
|
*/
|
|
44099
|
-
readonly
|
|
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=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;
|
|
44100
45162
|
}
|
|
44101
45163
|
/**
|
|
44102
45164
|
* Request parameters for listAccessModelMetadataAttributeValue operation in AccessModelMetadataV2025Api.
|
|
@@ -44111,11 +45173,62 @@ export interface AccessModelMetadataV2025ApiListAccessModelMetadataAttributeValu
|
|
|
44111
45173
|
*/
|
|
44112
45174
|
readonly key: string;
|
|
44113
45175
|
/**
|
|
44114
|
-
*
|
|
44115
|
-
* @type {
|
|
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}
|
|
44116
45178
|
* @memberof AccessModelMetadataV2025ApiListAccessModelMetadataAttributeValue
|
|
44117
45179
|
*/
|
|
44118
|
-
readonly
|
|
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=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;
|
|
44119
45232
|
}
|
|
44120
45233
|
/**
|
|
44121
45234
|
* AccessModelMetadataV2025Api - object-oriented interface
|
|
@@ -44160,6 +45273,33 @@ export declare class AccessModelMetadataV2025Api extends BaseAPI {
|
|
|
44160
45273
|
* @memberof AccessModelMetadataV2025Api
|
|
44161
45274
|
*/
|
|
44162
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>>;
|
|
44163
45303
|
}
|
|
44164
45304
|
/**
|
|
44165
45305
|
* AccessProfilesV2025Api - axios parameter creator
|
|
@@ -55507,6 +56647,482 @@ export declare const GetCustomPasswordInstructionsPageIdV2025: {
|
|
|
55507
56647
|
readonly UnlockAccountFinish: "unlock-account:finish";
|
|
55508
56648
|
};
|
|
55509
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];
|
|
55510
57126
|
/**
|
|
55511
57127
|
* DataSegmentationV2025Api - axios parameter creator
|
|
55512
57128
|
* @export
|
|
@@ -56626,51 +58242,46 @@ export declare const EntitlementsV2025ApiAxiosParamCreator: (configuration?: Con
|
|
|
56626
58242
|
* @param {string} id The entitlement id.
|
|
56627
58243
|
* @param {string} attributeKey Technical name of the Attribute.
|
|
56628
58244
|
* @param {string} attributeValue Technical name of the Attribute Value.
|
|
56629
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
56630
58245
|
* @param {*} [axiosOptions] Override http request option.
|
|
56631
58246
|
* @throws {RequiredError}
|
|
56632
58247
|
*/
|
|
56633
|
-
createAccessModelMetadataForEntitlement: (id: string, attributeKey: string, attributeValue: string,
|
|
58248
|
+
createAccessModelMetadataForEntitlement: (id: string, attributeKey: string, attributeValue: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
56634
58249
|
/**
|
|
56635
58250
|
* Remove single Access Model Metadata from an entitlement.
|
|
56636
58251
|
* @summary Remove metadata from an entitlement.
|
|
56637
58252
|
* @param {string} id The entitlement id.
|
|
56638
58253
|
* @param {string} attributeKey Technical name of the Attribute.
|
|
56639
58254
|
* @param {string} attributeValue Technical name of the Attribute Value.
|
|
56640
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
56641
58255
|
* @param {*} [axiosOptions] Override http request option.
|
|
56642
58256
|
* @throws {RequiredError}
|
|
56643
58257
|
*/
|
|
56644
|
-
deleteAccessModelMetadataFromEntitlement: (id: string, attributeKey: string, attributeValue: string,
|
|
58258
|
+
deleteAccessModelMetadataFromEntitlement: (id: string, attributeKey: string, attributeValue: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
56645
58259
|
/**
|
|
56646
58260
|
* This API returns an entitlement by its ID.
|
|
56647
58261
|
* @summary Get an entitlement
|
|
56648
58262
|
* @param {string} id The entitlement ID
|
|
56649
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
56650
58263
|
* @param {*} [axiosOptions] Override http request option.
|
|
56651
58264
|
* @throws {RequiredError}
|
|
56652
58265
|
*/
|
|
56653
|
-
getEntitlement: (id: string,
|
|
58266
|
+
getEntitlement: (id: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
56654
58267
|
/**
|
|
56655
58268
|
* This API returns the entitlement request config for a specified entitlement.
|
|
56656
58269
|
* @summary Get entitlement request config
|
|
56657
58270
|
* @param {string} id Entitlement Id
|
|
56658
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
56659
58271
|
* @param {*} [axiosOptions] Override http request option.
|
|
56660
58272
|
* @throws {RequiredError}
|
|
56661
58273
|
*/
|
|
56662
|
-
getEntitlementRequestConfig: (id: string,
|
|
58274
|
+
getEntitlementRequestConfig: (id: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
56663
58275
|
/**
|
|
56664
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`.
|
|
56665
58277
|
* @summary Aggregate entitlements
|
|
56666
58278
|
* @param {string} id Source Id
|
|
56667
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
56668
58279
|
* @param {File} [csvFile] The CSV file containing the source entitlements to aggregate.
|
|
56669
58280
|
* @param {*} [axiosOptions] Override http request option.
|
|
56670
58281
|
* @deprecated
|
|
56671
58282
|
* @throws {RequiredError}
|
|
56672
58283
|
*/
|
|
56673
|
-
importEntitlementsBySource: (id: string,
|
|
58284
|
+
importEntitlementsBySource: (id: string, csvFile?: File, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
56674
58285
|
/**
|
|
56675
58286
|
* This API returns a list of all child entitlements of a given entitlement.
|
|
56676
58287
|
* @summary List of entitlements children
|
|
@@ -56680,11 +58291,10 @@ export declare const EntitlementsV2025ApiAxiosParamCreator: (configuration?: Con
|
|
|
56680
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=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.
|
|
56681
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**
|
|
56682
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*
|
|
56683
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
56684
58294
|
* @param {*} [axiosOptions] Override http request option.
|
|
56685
58295
|
* @throws {RequiredError}
|
|
56686
58296
|
*/
|
|
56687
|
-
listEntitlementChildren: (id: string, limit?: number, offset?: number, count?: boolean, sorters?: string, filters?: string,
|
|
58297
|
+
listEntitlementChildren: (id: string, limit?: number, offset?: number, count?: boolean, sorters?: string, filters?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
56688
58298
|
/**
|
|
56689
58299
|
* This API returns a list of all parent entitlements of a given entitlement.
|
|
56690
58300
|
* @summary List of entitlements parents
|
|
@@ -56694,16 +58304,15 @@ export declare const EntitlementsV2025ApiAxiosParamCreator: (configuration?: Con
|
|
|
56694
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=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.
|
|
56695
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**
|
|
56696
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*
|
|
56697
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
56698
58307
|
* @param {*} [axiosOptions] Override http request option.
|
|
56699
58308
|
* @throws {RequiredError}
|
|
56700
58309
|
*/
|
|
56701
|
-
listEntitlementParents: (id: string, limit?: number, offset?: number, count?: boolean, sorters?: string, filters?: string,
|
|
58310
|
+
listEntitlementParents: (id: string, limit?: number, offset?: number, count?: boolean, sorters?: string, filters?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
56702
58311
|
/**
|
|
56703
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.
|
|
56704
58313
|
* @summary Gets a list of entitlements.
|
|
56705
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).
|
|
56706
|
-
* @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.
|
|
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\'s Identity.
|
|
56707
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).
|
|
56708
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=false** results in an error.
|
|
56709
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.
|
|
@@ -56711,49 +58320,44 @@ export declare const EntitlementsV2025ApiAxiosParamCreator: (configuration?: Con
|
|
|
56711
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=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.
|
|
56712
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**
|
|
56713
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*
|
|
56714
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
56715
58323
|
* @param {*} [axiosOptions] Override http request option.
|
|
56716
58324
|
* @throws {RequiredError}
|
|
56717
58325
|
*/
|
|
56718
|
-
listEntitlements: (accountId?: string, segmentedForIdentity?: string, forSegmentIds?: string, includeUnsegmented?: boolean, offset?: number, limit?: number, count?: boolean, sorters?: string, filters?: string,
|
|
58326
|
+
listEntitlements: (accountId?: string, segmentedForIdentity?: string, forSegmentIds?: string, includeUnsegmented?: boolean, offset?: number, limit?: number, count?: boolean, sorters?: string, filters?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
56719
58327
|
/**
|
|
56720
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.
|
|
56721
58329
|
* @summary Patch an entitlement
|
|
56722
58330
|
* @param {string} id ID of the entitlement to patch
|
|
56723
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
56724
58331
|
* @param {Array<JsonPatchOperationV2025>} [jsonPatchOperationV2025]
|
|
56725
58332
|
* @param {*} [axiosOptions] Override http request option.
|
|
56726
58333
|
* @throws {RequiredError}
|
|
56727
58334
|
*/
|
|
56728
|
-
patchEntitlement: (id: string,
|
|
58335
|
+
patchEntitlement: (id: string, jsonPatchOperationV2025?: Array<JsonPatchOperationV2025>, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
56729
58336
|
/**
|
|
56730
58337
|
* This API replaces the entitlement request config for a specified entitlement.
|
|
56731
58338
|
* @summary Replace entitlement request config
|
|
56732
58339
|
* @param {string} id Entitlement ID
|
|
56733
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
56734
58340
|
* @param {EntitlementRequestConfigV2025} entitlementRequestConfigV2025
|
|
56735
58341
|
* @param {*} [axiosOptions] Override http request option.
|
|
56736
58342
|
* @throws {RequiredError}
|
|
56737
58343
|
*/
|
|
56738
|
-
putEntitlementRequestConfig: (id: string,
|
|
58344
|
+
putEntitlementRequestConfig: (id: string, entitlementRequestConfigV2025: EntitlementRequestConfigV2025, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
56739
58345
|
/**
|
|
56740
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`.
|
|
56741
58347
|
* @summary Reset source entitlements
|
|
56742
58348
|
* @param {string} id ID of source for the entitlement reset
|
|
56743
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
56744
58349
|
* @param {*} [axiosOptions] Override http request option.
|
|
56745
58350
|
* @throws {RequiredError}
|
|
56746
58351
|
*/
|
|
56747
|
-
resetSourceEntitlements: (id: string,
|
|
58352
|
+
resetSourceEntitlements: (id: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
56748
58353
|
/**
|
|
56749
|
-
*
|
|
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.
|
|
56750
58355
|
* @summary Bulk update an entitlement list
|
|
56751
58356
|
* @param {EntitlementBulkUpdateRequestV2025} entitlementBulkUpdateRequestV2025
|
|
56752
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
56753
58357
|
* @param {*} [axiosOptions] Override http request option.
|
|
56754
58358
|
* @throws {RequiredError}
|
|
56755
58359
|
*/
|
|
56756
|
-
updateEntitlementsInBulk: (entitlementBulkUpdateRequestV2025: EntitlementBulkUpdateRequestV2025,
|
|
58360
|
+
updateEntitlementsInBulk: (entitlementBulkUpdateRequestV2025: EntitlementBulkUpdateRequestV2025, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
56757
58361
|
};
|
|
56758
58362
|
/**
|
|
56759
58363
|
* EntitlementsV2025Api - functional programming interface
|
|
@@ -56766,51 +58370,46 @@ export declare const EntitlementsV2025ApiFp: (configuration?: Configuration) =>
|
|
|
56766
58370
|
* @param {string} id The entitlement id.
|
|
56767
58371
|
* @param {string} attributeKey Technical name of the Attribute.
|
|
56768
58372
|
* @param {string} attributeValue Technical name of the Attribute Value.
|
|
56769
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
56770
58373
|
* @param {*} [axiosOptions] Override http request option.
|
|
56771
58374
|
* @throws {RequiredError}
|
|
56772
58375
|
*/
|
|
56773
|
-
createAccessModelMetadataForEntitlement(id: string, attributeKey: string, attributeValue: string,
|
|
58376
|
+
createAccessModelMetadataForEntitlement(id: string, attributeKey: string, attributeValue: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EntitlementV2025>>;
|
|
56774
58377
|
/**
|
|
56775
58378
|
* Remove single Access Model Metadata from an entitlement.
|
|
56776
58379
|
* @summary Remove metadata from an entitlement.
|
|
56777
58380
|
* @param {string} id The entitlement id.
|
|
56778
58381
|
* @param {string} attributeKey Technical name of the Attribute.
|
|
56779
58382
|
* @param {string} attributeValue Technical name of the Attribute Value.
|
|
56780
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
56781
58383
|
* @param {*} [axiosOptions] Override http request option.
|
|
56782
58384
|
* @throws {RequiredError}
|
|
56783
58385
|
*/
|
|
56784
|
-
deleteAccessModelMetadataFromEntitlement(id: string, attributeKey: string, attributeValue: string,
|
|
58386
|
+
deleteAccessModelMetadataFromEntitlement(id: string, attributeKey: string, attributeValue: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
56785
58387
|
/**
|
|
56786
58388
|
* This API returns an entitlement by its ID.
|
|
56787
58389
|
* @summary Get an entitlement
|
|
56788
58390
|
* @param {string} id The entitlement ID
|
|
56789
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
56790
58391
|
* @param {*} [axiosOptions] Override http request option.
|
|
56791
58392
|
* @throws {RequiredError}
|
|
56792
58393
|
*/
|
|
56793
|
-
getEntitlement(id: string,
|
|
58394
|
+
getEntitlement(id: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EntitlementV2025>>;
|
|
56794
58395
|
/**
|
|
56795
58396
|
* This API returns the entitlement request config for a specified entitlement.
|
|
56796
58397
|
* @summary Get entitlement request config
|
|
56797
58398
|
* @param {string} id Entitlement Id
|
|
56798
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
56799
58399
|
* @param {*} [axiosOptions] Override http request option.
|
|
56800
58400
|
* @throws {RequiredError}
|
|
56801
58401
|
*/
|
|
56802
|
-
getEntitlementRequestConfig(id: string,
|
|
58402
|
+
getEntitlementRequestConfig(id: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EntitlementRequestConfigV2025>>;
|
|
56803
58403
|
/**
|
|
56804
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`.
|
|
56805
58405
|
* @summary Aggregate entitlements
|
|
56806
58406
|
* @param {string} id Source Id
|
|
56807
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
56808
58407
|
* @param {File} [csvFile] The CSV file containing the source entitlements to aggregate.
|
|
56809
58408
|
* @param {*} [axiosOptions] Override http request option.
|
|
56810
58409
|
* @deprecated
|
|
56811
58410
|
* @throws {RequiredError}
|
|
56812
58411
|
*/
|
|
56813
|
-
importEntitlementsBySource(id: string,
|
|
58412
|
+
importEntitlementsBySource(id: string, csvFile?: File, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<LoadEntitlementTaskV2025>>;
|
|
56814
58413
|
/**
|
|
56815
58414
|
* This API returns a list of all child entitlements of a given entitlement.
|
|
56816
58415
|
* @summary List of entitlements children
|
|
@@ -56820,11 +58419,10 @@ export declare const EntitlementsV2025ApiFp: (configuration?: Configuration) =>
|
|
|
56820
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=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.
|
|
56821
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**
|
|
56822
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*
|
|
56823
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
56824
58422
|
* @param {*} [axiosOptions] Override http request option.
|
|
56825
58423
|
* @throws {RequiredError}
|
|
56826
58424
|
*/
|
|
56827
|
-
listEntitlementChildren(id: string, limit?: number, offset?: number, count?: boolean, sorters?: string, filters?: string,
|
|
58425
|
+
listEntitlementChildren(id: string, limit?: number, offset?: number, count?: boolean, sorters?: string, filters?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<EntitlementV2025>>>;
|
|
56828
58426
|
/**
|
|
56829
58427
|
* This API returns a list of all parent entitlements of a given entitlement.
|
|
56830
58428
|
* @summary List of entitlements parents
|
|
@@ -56834,16 +58432,15 @@ export declare const EntitlementsV2025ApiFp: (configuration?: Configuration) =>
|
|
|
56834
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=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.
|
|
56835
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**
|
|
56836
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*
|
|
56837
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
56838
58435
|
* @param {*} [axiosOptions] Override http request option.
|
|
56839
58436
|
* @throws {RequiredError}
|
|
56840
58437
|
*/
|
|
56841
|
-
listEntitlementParents(id: string, limit?: number, offset?: number, count?: boolean, sorters?: string, filters?: string,
|
|
58438
|
+
listEntitlementParents(id: string, limit?: number, offset?: number, count?: boolean, sorters?: string, filters?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<EntitlementV2025>>>;
|
|
56842
58439
|
/**
|
|
56843
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.
|
|
56844
58441
|
* @summary Gets a list of entitlements.
|
|
56845
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).
|
|
56846
|
-
* @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.
|
|
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\'s Identity.
|
|
56847
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).
|
|
56848
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=false** results in an error.
|
|
56849
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.
|
|
@@ -56851,49 +58448,44 @@ export declare const EntitlementsV2025ApiFp: (configuration?: Configuration) =>
|
|
|
56851
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=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.
|
|
56852
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**
|
|
56853
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*
|
|
56854
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
56855
58451
|
* @param {*} [axiosOptions] Override http request option.
|
|
56856
58452
|
* @throws {RequiredError}
|
|
56857
58453
|
*/
|
|
56858
|
-
listEntitlements(accountId?: string, segmentedForIdentity?: string, forSegmentIds?: string, includeUnsegmented?: boolean, offset?: number, limit?: number, count?: boolean, sorters?: string, filters?: string,
|
|
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>>>;
|
|
56859
58455
|
/**
|
|
56860
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.
|
|
56861
58457
|
* @summary Patch an entitlement
|
|
56862
58458
|
* @param {string} id ID of the entitlement to patch
|
|
56863
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
56864
58459
|
* @param {Array<JsonPatchOperationV2025>} [jsonPatchOperationV2025]
|
|
56865
58460
|
* @param {*} [axiosOptions] Override http request option.
|
|
56866
58461
|
* @throws {RequiredError}
|
|
56867
58462
|
*/
|
|
56868
|
-
patchEntitlement(id: string,
|
|
58463
|
+
patchEntitlement(id: string, jsonPatchOperationV2025?: Array<JsonPatchOperationV2025>, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EntitlementV2025>>;
|
|
56869
58464
|
/**
|
|
56870
58465
|
* This API replaces the entitlement request config for a specified entitlement.
|
|
56871
58466
|
* @summary Replace entitlement request config
|
|
56872
58467
|
* @param {string} id Entitlement ID
|
|
56873
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
56874
58468
|
* @param {EntitlementRequestConfigV2025} entitlementRequestConfigV2025
|
|
56875
58469
|
* @param {*} [axiosOptions] Override http request option.
|
|
56876
58470
|
* @throws {RequiredError}
|
|
56877
58471
|
*/
|
|
56878
|
-
putEntitlementRequestConfig(id: string,
|
|
58472
|
+
putEntitlementRequestConfig(id: string, entitlementRequestConfigV2025: EntitlementRequestConfigV2025, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EntitlementRequestConfigV2025>>;
|
|
56879
58473
|
/**
|
|
56880
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`.
|
|
56881
58475
|
* @summary Reset source entitlements
|
|
56882
58476
|
* @param {string} id ID of source for the entitlement reset
|
|
56883
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
56884
58477
|
* @param {*} [axiosOptions] Override http request option.
|
|
56885
58478
|
* @throws {RequiredError}
|
|
56886
58479
|
*/
|
|
56887
|
-
resetSourceEntitlements(id: string,
|
|
58480
|
+
resetSourceEntitlements(id: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EntitlementSourceResetBaseReferenceDtoV2025>>;
|
|
56888
58481
|
/**
|
|
56889
|
-
*
|
|
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.
|
|
56890
58483
|
* @summary Bulk update an entitlement list
|
|
56891
58484
|
* @param {EntitlementBulkUpdateRequestV2025} entitlementBulkUpdateRequestV2025
|
|
56892
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
56893
58485
|
* @param {*} [axiosOptions] Override http request option.
|
|
56894
58486
|
* @throws {RequiredError}
|
|
56895
58487
|
*/
|
|
56896
|
-
updateEntitlementsInBulk(entitlementBulkUpdateRequestV2025: EntitlementBulkUpdateRequestV2025,
|
|
58488
|
+
updateEntitlementsInBulk(entitlementBulkUpdateRequestV2025: EntitlementBulkUpdateRequestV2025, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
56897
58489
|
};
|
|
56898
58490
|
/**
|
|
56899
58491
|
* EntitlementsV2025Api - factory interface
|
|
@@ -56990,7 +58582,7 @@ export declare const EntitlementsV2025ApiFactory: (configuration?: Configuration
|
|
|
56990
58582
|
*/
|
|
56991
58583
|
resetSourceEntitlements(requestParameters: EntitlementsV2025ApiResetSourceEntitlementsRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<EntitlementSourceResetBaseReferenceDtoV2025>;
|
|
56992
58584
|
/**
|
|
56993
|
-
*
|
|
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.
|
|
56994
58586
|
* @summary Bulk update an entitlement list
|
|
56995
58587
|
* @param {EntitlementsV2025ApiUpdateEntitlementsInBulkRequest} requestParameters Request parameters.
|
|
56996
58588
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -57022,12 +58614,6 @@ export interface EntitlementsV2025ApiCreateAccessModelMetadataForEntitlementRequ
|
|
|
57022
58614
|
* @memberof EntitlementsV2025ApiCreateAccessModelMetadataForEntitlement
|
|
57023
58615
|
*/
|
|
57024
58616
|
readonly attributeValue: string;
|
|
57025
|
-
/**
|
|
57026
|
-
* Use this header to enable this experimental API.
|
|
57027
|
-
* @type {string}
|
|
57028
|
-
* @memberof EntitlementsV2025ApiCreateAccessModelMetadataForEntitlement
|
|
57029
|
-
*/
|
|
57030
|
-
readonly xSailPointExperimental?: string;
|
|
57031
58617
|
}
|
|
57032
58618
|
/**
|
|
57033
58619
|
* Request parameters for deleteAccessModelMetadataFromEntitlement operation in EntitlementsV2025Api.
|
|
@@ -57053,12 +58639,6 @@ export interface EntitlementsV2025ApiDeleteAccessModelMetadataFromEntitlementReq
|
|
|
57053
58639
|
* @memberof EntitlementsV2025ApiDeleteAccessModelMetadataFromEntitlement
|
|
57054
58640
|
*/
|
|
57055
58641
|
readonly attributeValue: string;
|
|
57056
|
-
/**
|
|
57057
|
-
* Use this header to enable this experimental API.
|
|
57058
|
-
* @type {string}
|
|
57059
|
-
* @memberof EntitlementsV2025ApiDeleteAccessModelMetadataFromEntitlement
|
|
57060
|
-
*/
|
|
57061
|
-
readonly xSailPointExperimental: string;
|
|
57062
58642
|
}
|
|
57063
58643
|
/**
|
|
57064
58644
|
* Request parameters for getEntitlement operation in EntitlementsV2025Api.
|
|
@@ -57072,12 +58652,6 @@ export interface EntitlementsV2025ApiGetEntitlementRequest {
|
|
|
57072
58652
|
* @memberof EntitlementsV2025ApiGetEntitlement
|
|
57073
58653
|
*/
|
|
57074
58654
|
readonly id: string;
|
|
57075
|
-
/**
|
|
57076
|
-
* Use this header to enable this experimental API.
|
|
57077
|
-
* @type {string}
|
|
57078
|
-
* @memberof EntitlementsV2025ApiGetEntitlement
|
|
57079
|
-
*/
|
|
57080
|
-
readonly xSailPointExperimental?: string;
|
|
57081
58655
|
}
|
|
57082
58656
|
/**
|
|
57083
58657
|
* Request parameters for getEntitlementRequestConfig operation in EntitlementsV2025Api.
|
|
@@ -57091,12 +58665,6 @@ export interface EntitlementsV2025ApiGetEntitlementRequestConfigRequest {
|
|
|
57091
58665
|
* @memberof EntitlementsV2025ApiGetEntitlementRequestConfig
|
|
57092
58666
|
*/
|
|
57093
58667
|
readonly id: string;
|
|
57094
|
-
/**
|
|
57095
|
-
* Use this header to enable this experimental API.
|
|
57096
|
-
* @type {string}
|
|
57097
|
-
* @memberof EntitlementsV2025ApiGetEntitlementRequestConfig
|
|
57098
|
-
*/
|
|
57099
|
-
readonly xSailPointExperimental?: string;
|
|
57100
58668
|
}
|
|
57101
58669
|
/**
|
|
57102
58670
|
* Request parameters for importEntitlementsBySource operation in EntitlementsV2025Api.
|
|
@@ -57110,12 +58678,6 @@ export interface EntitlementsV2025ApiImportEntitlementsBySourceRequest {
|
|
|
57110
58678
|
* @memberof EntitlementsV2025ApiImportEntitlementsBySource
|
|
57111
58679
|
*/
|
|
57112
58680
|
readonly id: string;
|
|
57113
|
-
/**
|
|
57114
|
-
* Use this header to enable this experimental API.
|
|
57115
|
-
* @type {string}
|
|
57116
|
-
* @memberof EntitlementsV2025ApiImportEntitlementsBySource
|
|
57117
|
-
*/
|
|
57118
|
-
readonly xSailPointExperimental?: string;
|
|
57119
58681
|
/**
|
|
57120
58682
|
* The CSV file containing the source entitlements to aggregate.
|
|
57121
58683
|
* @type {File}
|
|
@@ -57165,12 +58727,6 @@ export interface EntitlementsV2025ApiListEntitlementChildrenRequest {
|
|
|
57165
58727
|
* @memberof EntitlementsV2025ApiListEntitlementChildren
|
|
57166
58728
|
*/
|
|
57167
58729
|
readonly filters?: string;
|
|
57168
|
-
/**
|
|
57169
|
-
* Use this header to enable this experimental API.
|
|
57170
|
-
* @type {string}
|
|
57171
|
-
* @memberof EntitlementsV2025ApiListEntitlementChildren
|
|
57172
|
-
*/
|
|
57173
|
-
readonly xSailPointExperimental?: string;
|
|
57174
58730
|
}
|
|
57175
58731
|
/**
|
|
57176
58732
|
* Request parameters for listEntitlementParents operation in EntitlementsV2025Api.
|
|
@@ -57214,12 +58770,6 @@ export interface EntitlementsV2025ApiListEntitlementParentsRequest {
|
|
|
57214
58770
|
* @memberof EntitlementsV2025ApiListEntitlementParents
|
|
57215
58771
|
*/
|
|
57216
58772
|
readonly filters?: string;
|
|
57217
|
-
/**
|
|
57218
|
-
* Use this header to enable this experimental API.
|
|
57219
|
-
* @type {string}
|
|
57220
|
-
* @memberof EntitlementsV2025ApiListEntitlementParents
|
|
57221
|
-
*/
|
|
57222
|
-
readonly xSailPointExperimental?: string;
|
|
57223
58773
|
}
|
|
57224
58774
|
/**
|
|
57225
58775
|
* Request parameters for listEntitlements operation in EntitlementsV2025Api.
|
|
@@ -57234,7 +58784,7 @@ export interface EntitlementsV2025ApiListEntitlementsRequest {
|
|
|
57234
58784
|
*/
|
|
57235
58785
|
readonly accountId?: string;
|
|
57236
58786
|
/**
|
|
57237
|
-
* 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.
|
|
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\'s Identity.
|
|
57238
58788
|
* @type {string}
|
|
57239
58789
|
* @memberof EntitlementsV2025ApiListEntitlements
|
|
57240
58790
|
*/
|
|
@@ -57281,12 +58831,6 @@ export interface EntitlementsV2025ApiListEntitlementsRequest {
|
|
|
57281
58831
|
* @memberof EntitlementsV2025ApiListEntitlements
|
|
57282
58832
|
*/
|
|
57283
58833
|
readonly filters?: string;
|
|
57284
|
-
/**
|
|
57285
|
-
* Use this header to enable this experimental API.
|
|
57286
|
-
* @type {string}
|
|
57287
|
-
* @memberof EntitlementsV2025ApiListEntitlements
|
|
57288
|
-
*/
|
|
57289
|
-
readonly xSailPointExperimental?: string;
|
|
57290
58834
|
}
|
|
57291
58835
|
/**
|
|
57292
58836
|
* Request parameters for patchEntitlement operation in EntitlementsV2025Api.
|
|
@@ -57300,12 +58844,6 @@ export interface EntitlementsV2025ApiPatchEntitlementRequest {
|
|
|
57300
58844
|
* @memberof EntitlementsV2025ApiPatchEntitlement
|
|
57301
58845
|
*/
|
|
57302
58846
|
readonly id: string;
|
|
57303
|
-
/**
|
|
57304
|
-
* Use this header to enable this experimental API.
|
|
57305
|
-
* @type {string}
|
|
57306
|
-
* @memberof EntitlementsV2025ApiPatchEntitlement
|
|
57307
|
-
*/
|
|
57308
|
-
readonly xSailPointExperimental: string;
|
|
57309
58847
|
/**
|
|
57310
58848
|
*
|
|
57311
58849
|
* @type {Array<JsonPatchOperationV2025>}
|
|
@@ -57325,12 +58863,6 @@ export interface EntitlementsV2025ApiPutEntitlementRequestConfigRequest {
|
|
|
57325
58863
|
* @memberof EntitlementsV2025ApiPutEntitlementRequestConfig
|
|
57326
58864
|
*/
|
|
57327
58865
|
readonly id: string;
|
|
57328
|
-
/**
|
|
57329
|
-
* Use this header to enable this experimental API.
|
|
57330
|
-
* @type {string}
|
|
57331
|
-
* @memberof EntitlementsV2025ApiPutEntitlementRequestConfig
|
|
57332
|
-
*/
|
|
57333
|
-
readonly xSailPointExperimental: string;
|
|
57334
58866
|
/**
|
|
57335
58867
|
*
|
|
57336
58868
|
* @type {EntitlementRequestConfigV2025}
|
|
@@ -57350,12 +58882,6 @@ export interface EntitlementsV2025ApiResetSourceEntitlementsRequest {
|
|
|
57350
58882
|
* @memberof EntitlementsV2025ApiResetSourceEntitlements
|
|
57351
58883
|
*/
|
|
57352
58884
|
readonly id: string;
|
|
57353
|
-
/**
|
|
57354
|
-
* Use this header to enable this experimental API.
|
|
57355
|
-
* @type {string}
|
|
57356
|
-
* @memberof EntitlementsV2025ApiResetSourceEntitlements
|
|
57357
|
-
*/
|
|
57358
|
-
readonly xSailPointExperimental?: string;
|
|
57359
58885
|
}
|
|
57360
58886
|
/**
|
|
57361
58887
|
* Request parameters for updateEntitlementsInBulk operation in EntitlementsV2025Api.
|
|
@@ -57369,12 +58895,6 @@ export interface EntitlementsV2025ApiUpdateEntitlementsInBulkRequest {
|
|
|
57369
58895
|
* @memberof EntitlementsV2025ApiUpdateEntitlementsInBulk
|
|
57370
58896
|
*/
|
|
57371
58897
|
readonly entitlementBulkUpdateRequestV2025: EntitlementBulkUpdateRequestV2025;
|
|
57372
|
-
/**
|
|
57373
|
-
* Use this header to enable this experimental API.
|
|
57374
|
-
* @type {string}
|
|
57375
|
-
* @memberof EntitlementsV2025ApiUpdateEntitlementsInBulk
|
|
57376
|
-
*/
|
|
57377
|
-
readonly xSailPointExperimental?: string;
|
|
57378
58898
|
}
|
|
57379
58899
|
/**
|
|
57380
58900
|
* EntitlementsV2025Api - object-oriented interface
|
|
@@ -57484,7 +59004,7 @@ export declare class EntitlementsV2025Api extends BaseAPI {
|
|
|
57484
59004
|
*/
|
|
57485
59005
|
resetSourceEntitlements(requestParameters: EntitlementsV2025ApiResetSourceEntitlementsRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<EntitlementSourceResetBaseReferenceDtoV2025, any>>;
|
|
57486
59006
|
/**
|
|
57487
|
-
*
|
|
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.
|
|
57488
59008
|
* @summary Bulk update an entitlement list
|
|
57489
59009
|
* @param {EntitlementsV2025ApiUpdateEntitlementsInBulkRequest} requestParameters Request parameters.
|
|
57490
59010
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -62655,6 +64175,17 @@ export declare const IdentitiesV2025ApiAxiosParamCreator: (configuration?: Confi
|
|
|
62655
64175
|
* @throws {RequiredError}
|
|
62656
64176
|
*/
|
|
62657
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=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>;
|
|
62658
64189
|
/**
|
|
62659
64190
|
* This API returns a list of identities.
|
|
62660
64191
|
* @summary List identities
|
|
@@ -62762,6 +64293,17 @@ export declare const IdentitiesV2025ApiFp: (configuration?: Configuration) => {
|
|
|
62762
64293
|
* @throws {RequiredError}
|
|
62763
64294
|
*/
|
|
62764
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=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>>>;
|
|
62765
64307
|
/**
|
|
62766
64308
|
* This API returns a list of identities.
|
|
62767
64309
|
* @summary List identities
|
|
@@ -62865,6 +64407,14 @@ export declare const IdentitiesV2025ApiFactory: (configuration?: Configuration,
|
|
|
62865
64407
|
* @throws {RequiredError}
|
|
62866
64408
|
*/
|
|
62867
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>>;
|
|
62868
64418
|
/**
|
|
62869
64419
|
* This API returns a list of identities.
|
|
62870
64420
|
* @summary List identities
|
|
@@ -63003,6 +64553,37 @@ export interface IdentitiesV2025ApiGetRoleAssignmentsRequest {
|
|
|
63003
64553
|
*/
|
|
63004
64554
|
readonly roleName?: string;
|
|
63005
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=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
|
+
}
|
|
63006
64587
|
/**
|
|
63007
64588
|
* Request parameters for listIdentities operation in IdentitiesV2025Api.
|
|
63008
64589
|
* @export
|
|
@@ -63187,6 +64768,15 @@ export declare class IdentitiesV2025Api extends BaseAPI {
|
|
|
63187
64768
|
* @memberof IdentitiesV2025Api
|
|
63188
64769
|
*/
|
|
63189
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>>;
|
|
63190
64780
|
/**
|
|
63191
64781
|
* This API returns a list of identities.
|
|
63192
64782
|
* @summary List identities
|
|
@@ -63631,7 +65221,7 @@ export declare const IdentityHistoryV2025ApiAxiosParamCreator: (configuration?:
|
|
|
63631
65221
|
getHistoricalIdentity: (id: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
63632
65222
|
/**
|
|
63633
65223
|
* This method retrieves all access events for the identity Requires authorization scope of \'idn:identity-history:read\'
|
|
63634
|
-
* @summary
|
|
65224
|
+
* @summary List identity event history
|
|
63635
65225
|
* @param {string} id The identity id
|
|
63636
65226
|
* @param {string} [from] The optional instant until which access events are returned
|
|
63637
65227
|
* @param {Array<string>} [eventTypes] An optional list of event types to return. If null or empty, all events are returned
|
|
@@ -63695,7 +65285,7 @@ export declare const IdentityHistoryV2025ApiAxiosParamCreator: (configuration?:
|
|
|
63695
65285
|
* This method retrieves a list of access item for the identity filtered by the access item type
|
|
63696
65286
|
* @summary List access items by identity
|
|
63697
65287
|
* @param {string} id The identity id
|
|
63698
|
-
* @param {
|
|
65288
|
+
* @param {ListIdentityAccessItemsTypeV2025} [type] The type of access item for the identity. If not provided, it defaults to account
|
|
63699
65289
|
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
63700
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.
|
|
63701
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=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.
|
|
@@ -63703,7 +65293,7 @@ export declare const IdentityHistoryV2025ApiAxiosParamCreator: (configuration?:
|
|
|
63703
65293
|
* @param {*} [axiosOptions] Override http request option.
|
|
63704
65294
|
* @throws {RequiredError}
|
|
63705
65295
|
*/
|
|
63706
|
-
listIdentityAccessItems: (id: string, type?:
|
|
65296
|
+
listIdentityAccessItems: (id: string, type?: ListIdentityAccessItemsTypeV2025, xSailPointExperimental?: string, limit?: number, count?: boolean, offset?: number, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
63707
65297
|
/**
|
|
63708
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\'
|
|
63709
65299
|
* @summary Gets the list of identity access items at a given date filterd by item type
|
|
@@ -63777,7 +65367,7 @@ export declare const IdentityHistoryV2025ApiFp: (configuration?: Configuration)
|
|
|
63777
65367
|
getHistoricalIdentity(id: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<IdentityHistoryResponseV2025>>;
|
|
63778
65368
|
/**
|
|
63779
65369
|
* This method retrieves all access events for the identity Requires authorization scope of \'idn:identity-history:read\'
|
|
63780
|
-
* @summary
|
|
65370
|
+
* @summary List identity event history
|
|
63781
65371
|
* @param {string} id The identity id
|
|
63782
65372
|
* @param {string} [from] The optional instant until which access events are returned
|
|
63783
65373
|
* @param {Array<string>} [eventTypes] An optional list of event types to return. If null or empty, all events are returned
|
|
@@ -63841,7 +65431,7 @@ export declare const IdentityHistoryV2025ApiFp: (configuration?: Configuration)
|
|
|
63841
65431
|
* This method retrieves a list of access item for the identity filtered by the access item type
|
|
63842
65432
|
* @summary List access items by identity
|
|
63843
65433
|
* @param {string} id The identity id
|
|
63844
|
-
* @param {
|
|
65434
|
+
* @param {ListIdentityAccessItemsTypeV2025} [type] The type of access item for the identity. If not provided, it defaults to account
|
|
63845
65435
|
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
63846
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.
|
|
63847
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=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.
|
|
@@ -63849,7 +65439,7 @@ export declare const IdentityHistoryV2025ApiFp: (configuration?: Configuration)
|
|
|
63849
65439
|
* @param {*} [axiosOptions] Override http request option.
|
|
63850
65440
|
* @throws {RequiredError}
|
|
63851
65441
|
*/
|
|
63852
|
-
listIdentityAccessItems(id: string, type?:
|
|
65442
|
+
listIdentityAccessItems(id: string, type?: ListIdentityAccessItemsTypeV2025, xSailPointExperimental?: string, limit?: number, count?: boolean, offset?: number, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<ListIdentityAccessItems200ResponseInnerV2025>>>;
|
|
63853
65443
|
/**
|
|
63854
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\'
|
|
63855
65445
|
* @summary Gets the list of identity access items at a given date filterd by item type
|
|
@@ -63860,7 +65450,7 @@ export declare const IdentityHistoryV2025ApiFp: (configuration?: Configuration)
|
|
|
63860
65450
|
* @param {*} [axiosOptions] Override http request option.
|
|
63861
65451
|
* @throws {RequiredError}
|
|
63862
65452
|
*/
|
|
63863
|
-
listIdentitySnapshotAccessItems(id: string, date: string, type?: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<
|
|
65453
|
+
listIdentitySnapshotAccessItems(id: string, date: string, type?: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<ListIdentitySnapshotAccessItems200ResponseInnerV2025>>>;
|
|
63864
65454
|
/**
|
|
63865
65455
|
* This method retrieves all the snapshots for the identity Requires authorization scope of \'idn:identity-history:read\'
|
|
63866
65456
|
* @summary Lists all the snapshots for the identity
|
|
@@ -63907,7 +65497,7 @@ export declare const IdentityHistoryV2025ApiFactory: (configuration?: Configurat
|
|
|
63907
65497
|
getHistoricalIdentity(requestParameters: IdentityHistoryV2025ApiGetHistoricalIdentityRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<IdentityHistoryResponseV2025>;
|
|
63908
65498
|
/**
|
|
63909
65499
|
* This method retrieves all access events for the identity Requires authorization scope of \'idn:identity-history:read\'
|
|
63910
|
-
* @summary
|
|
65500
|
+
* @summary List identity event history
|
|
63911
65501
|
* @param {IdentityHistoryV2025ApiGetHistoricalIdentityEventsRequest} requestParameters Request parameters.
|
|
63912
65502
|
* @param {*} [axiosOptions] Override http request option.
|
|
63913
65503
|
* @throws {RequiredError}
|
|
@@ -63960,7 +65550,7 @@ export declare const IdentityHistoryV2025ApiFactory: (configuration?: Configurat
|
|
|
63960
65550
|
* @param {*} [axiosOptions] Override http request option.
|
|
63961
65551
|
* @throws {RequiredError}
|
|
63962
65552
|
*/
|
|
63963
|
-
listIdentitySnapshotAccessItems(requestParameters: IdentityHistoryV2025ApiListIdentitySnapshotAccessItemsRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<
|
|
65553
|
+
listIdentitySnapshotAccessItems(requestParameters: IdentityHistoryV2025ApiListIdentitySnapshotAccessItemsRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<ListIdentitySnapshotAccessItems200ResponseInnerV2025>>;
|
|
63964
65554
|
/**
|
|
63965
65555
|
* This method retrieves all the snapshots for the identity Requires authorization scope of \'idn:identity-history:read\'
|
|
63966
65556
|
* @summary Lists all the snapshots for the identity
|
|
@@ -64316,10 +65906,10 @@ export interface IdentityHistoryV2025ApiListIdentityAccessItemsRequest {
|
|
|
64316
65906
|
readonly id: string;
|
|
64317
65907
|
/**
|
|
64318
65908
|
* The type of access item for the identity. If not provided, it defaults to account
|
|
64319
|
-
* @type {
|
|
65909
|
+
* @type {'account' | 'entitlement' | 'app' | 'accessProfile' | 'role'}
|
|
64320
65910
|
* @memberof IdentityHistoryV2025ApiListIdentityAccessItems
|
|
64321
65911
|
*/
|
|
64322
|
-
readonly type?:
|
|
65912
|
+
readonly type?: ListIdentityAccessItemsTypeV2025;
|
|
64323
65913
|
/**
|
|
64324
65914
|
* Use this header to enable this experimental API.
|
|
64325
65915
|
* @type {string}
|
|
@@ -64461,7 +66051,7 @@ export declare class IdentityHistoryV2025Api extends BaseAPI {
|
|
|
64461
66051
|
getHistoricalIdentity(requestParameters: IdentityHistoryV2025ApiGetHistoricalIdentityRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<IdentityHistoryResponseV2025, any>>;
|
|
64462
66052
|
/**
|
|
64463
66053
|
* This method retrieves all access events for the identity Requires authorization scope of \'idn:identity-history:read\'
|
|
64464
|
-
* @summary
|
|
66054
|
+
* @summary List identity event history
|
|
64465
66055
|
* @param {IdentityHistoryV2025ApiGetHistoricalIdentityEventsRequest} requestParameters Request parameters.
|
|
64466
66056
|
* @param {*} [axiosOptions] Override http request option.
|
|
64467
66057
|
* @throws {RequiredError}
|
|
@@ -64521,7 +66111,7 @@ export declare class IdentityHistoryV2025Api extends BaseAPI {
|
|
|
64521
66111
|
* @throws {RequiredError}
|
|
64522
66112
|
* @memberof IdentityHistoryV2025Api
|
|
64523
66113
|
*/
|
|
64524
|
-
listIdentitySnapshotAccessItems(requestParameters: IdentityHistoryV2025ApiListIdentitySnapshotAccessItemsRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
66114
|
+
listIdentitySnapshotAccessItems(requestParameters: IdentityHistoryV2025ApiListIdentitySnapshotAccessItemsRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ListIdentitySnapshotAccessItems200ResponseInnerV2025[], any>>;
|
|
64525
66115
|
/**
|
|
64526
66116
|
* This method retrieves all the snapshots for the identity Requires authorization scope of \'idn:identity-history:read\'
|
|
64527
66117
|
* @summary Lists all the snapshots for the identity
|
|
@@ -64551,6 +66141,17 @@ export declare const GetIdentitySnapshotSummaryIntervalV2025: {
|
|
|
64551
66141
|
readonly Month: "month";
|
|
64552
66142
|
};
|
|
64553
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];
|
|
64554
66155
|
/**
|
|
64555
66156
|
* @export
|
|
64556
66157
|
*/
|
|
@@ -73552,7 +75153,7 @@ export type GetReportFileFormatV2025 = typeof GetReportFileFormatV2025[keyof typ
|
|
|
73552
75153
|
*/
|
|
73553
75154
|
export declare const RequestableObjectsV2025ApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
73554
75155
|
/**
|
|
73555
|
-
* 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.
|
|
73556
75157
|
* @summary Requestable objects list
|
|
73557
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.
|
|
73558
75159
|
* @param {Array<ListRequestableObjectsTypesV2025>} [types] Filters the results to the specified type/types, where each type is one of `ROLE` or `ACCESS_PROFILE`. If absent, all types are returned. SailPoint may add support for additional types in the future without notice.
|
|
@@ -73574,7 +75175,7 @@ export declare const RequestableObjectsV2025ApiAxiosParamCreator: (configuration
|
|
|
73574
75175
|
*/
|
|
73575
75176
|
export declare const RequestableObjectsV2025ApiFp: (configuration?: Configuration) => {
|
|
73576
75177
|
/**
|
|
73577
|
-
* 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.
|
|
73578
75179
|
* @summary Requestable objects list
|
|
73579
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.
|
|
73580
75181
|
* @param {Array<ListRequestableObjectsTypesV2025>} [types] Filters the results to the specified type/types, where each type is one of `ROLE` or `ACCESS_PROFILE`. If absent, all types are returned. SailPoint may add support for additional types in the future without notice.
|
|
@@ -73596,7 +75197,7 @@ export declare const RequestableObjectsV2025ApiFp: (configuration?: Configuratio
|
|
|
73596
75197
|
*/
|
|
73597
75198
|
export declare const RequestableObjectsV2025ApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
73598
75199
|
/**
|
|
73599
|
-
* 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.
|
|
73600
75201
|
* @summary Requestable objects list
|
|
73601
75202
|
* @param {RequestableObjectsV2025ApiListRequestableObjectsRequest} requestParameters Request parameters.
|
|
73602
75203
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -73673,7 +75274,7 @@ export interface RequestableObjectsV2025ApiListRequestableObjectsRequest {
|
|
|
73673
75274
|
*/
|
|
73674
75275
|
export declare class RequestableObjectsV2025Api extends BaseAPI {
|
|
73675
75276
|
/**
|
|
73676
|
-
* 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.
|
|
73677
75278
|
* @summary Requestable objects list
|
|
73678
75279
|
* @param {RequestableObjectsV2025ApiListRequestableObjectsRequest} requestParameters Request parameters.
|
|
73679
75280
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -79511,12 +81112,11 @@ export declare const SourcesV2025ApiAxiosParamCreator: (configuration?: Configur
|
|
|
79511
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.
|
|
79512
81113
|
* @summary Entitlement aggregation
|
|
79513
81114
|
* @param {string} sourceId Source Id
|
|
79514
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
79515
81115
|
* @param {File} [file] The CSV file containing the source entitlements to aggregate.
|
|
79516
81116
|
* @param {*} [axiosOptions] Override http request option.
|
|
79517
81117
|
* @throws {RequiredError}
|
|
79518
81118
|
*/
|
|
79519
|
-
importEntitlements: (sourceId: string,
|
|
81119
|
+
importEntitlements: (sourceId: string, file?: File, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
79520
81120
|
/**
|
|
79521
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.**
|
|
79522
81122
|
* @summary Uploads source entitlements schema template
|
|
@@ -79976,12 +81576,11 @@ export declare const SourcesV2025ApiFp: (configuration?: Configuration) => {
|
|
|
79976
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.
|
|
79977
81577
|
* @summary Entitlement aggregation
|
|
79978
81578
|
* @param {string} sourceId Source Id
|
|
79979
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
79980
81579
|
* @param {File} [file] The CSV file containing the source entitlements to aggregate.
|
|
79981
81580
|
* @param {*} [axiosOptions] Override http request option.
|
|
79982
81581
|
* @throws {RequiredError}
|
|
79983
81582
|
*/
|
|
79984
|
-
importEntitlements(sourceId: string,
|
|
81583
|
+
importEntitlements(sourceId: string, file?: File, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<LoadEntitlementTaskV2025>>;
|
|
79985
81584
|
/**
|
|
79986
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.**
|
|
79987
81586
|
* @summary Uploads source entitlements schema template
|
|
@@ -81093,12 +82692,6 @@ export interface SourcesV2025ApiImportEntitlementsRequest {
|
|
|
81093
82692
|
* @memberof SourcesV2025ApiImportEntitlements
|
|
81094
82693
|
*/
|
|
81095
82694
|
readonly sourceId: string;
|
|
81096
|
-
/**
|
|
81097
|
-
* Use this header to enable this experimental API.
|
|
81098
|
-
* @type {string}
|
|
81099
|
-
* @memberof SourcesV2025ApiImportEntitlements
|
|
81100
|
-
*/
|
|
81101
|
-
readonly xSailPointExperimental?: string;
|
|
81102
82695
|
/**
|
|
81103
82696
|
* The CSV file containing the source entitlements to aggregate.
|
|
81104
82697
|
* @type {File}
|
|
@@ -83086,34 +84679,31 @@ export declare const TaskManagementV2025ApiAxiosParamCreator: (configuration?: C
|
|
|
83086
84679
|
/**
|
|
83087
84680
|
* Responds with headers only for list of task statuses for pending tasks.
|
|
83088
84681
|
* @summary Retrieve pending task list headers
|
|
83089
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
83090
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.
|
|
83091
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.
|
|
83092
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=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.
|
|
83093
84685
|
* @param {*} [axiosOptions] Override http request option.
|
|
83094
84686
|
* @throws {RequiredError}
|
|
83095
84687
|
*/
|
|
83096
|
-
getPendingTaskHeaders: (
|
|
84688
|
+
getPendingTaskHeaders: (offset?: number, limit?: number, count?: boolean, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
83097
84689
|
/**
|
|
83098
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.
|
|
83099
84691
|
* @summary Retrieve pending task status list
|
|
83100
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.
|
|
83101
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.
|
|
83102
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=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.
|
|
83103
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
83104
84695
|
* @param {*} [axiosOptions] Override http request option.
|
|
83105
84696
|
* @throws {RequiredError}
|
|
83106
84697
|
*/
|
|
83107
|
-
getPendingTasks: (offset?: number, limit?: number, count?: boolean,
|
|
84698
|
+
getPendingTasks: (offset?: number, limit?: number, count?: boolean, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
83108
84699
|
/**
|
|
83109
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.
|
|
83110
84701
|
* @summary Get task status by id
|
|
83111
84702
|
* @param {string} id Task ID.
|
|
83112
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
83113
84703
|
* @param {*} [axiosOptions] Override http request option.
|
|
83114
84704
|
* @throws {RequiredError}
|
|
83115
84705
|
*/
|
|
83116
|
-
getTaskStatus: (id: string,
|
|
84706
|
+
getTaskStatus: (id: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
83117
84707
|
/**
|
|
83118
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.
|
|
83119
84709
|
* @summary Retrieve task status list
|
|
@@ -83122,21 +84712,19 @@ export declare const TaskManagementV2025ApiAxiosParamCreator: (configuration?: C
|
|
|
83122
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=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.
|
|
83123
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*
|
|
83124
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**
|
|
83125
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
83126
84715
|
* @param {*} [axiosOptions] Override http request option.
|
|
83127
84716
|
* @throws {RequiredError}
|
|
83128
84717
|
*/
|
|
83129
|
-
getTaskStatusList: (limit?: number, offset?: number, count?: boolean, filters?: string, sorters?: string,
|
|
84718
|
+
getTaskStatusList: (limit?: number, offset?: number, count?: boolean, filters?: string, sorters?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
83130
84719
|
/**
|
|
83131
84720
|
* Update a current task status by task ID. Use this API to clear a pending task by updating the completionStatus and completed attributes.
|
|
83132
84721
|
* @summary Update task status by id
|
|
83133
84722
|
* @param {string} id Task ID.
|
|
83134
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
83135
84723
|
* @param {Array<JsonPatchOperationV2025>} jsonPatchOperationV2025 The JSONPatch payload used to update the object.
|
|
83136
84724
|
* @param {*} [axiosOptions] Override http request option.
|
|
83137
84725
|
* @throws {RequiredError}
|
|
83138
84726
|
*/
|
|
83139
|
-
updateTaskStatus: (id: string,
|
|
84727
|
+
updateTaskStatus: (id: string, jsonPatchOperationV2025: Array<JsonPatchOperationV2025>, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
83140
84728
|
};
|
|
83141
84729
|
/**
|
|
83142
84730
|
* TaskManagementV2025Api - functional programming interface
|
|
@@ -83146,34 +84734,31 @@ export declare const TaskManagementV2025ApiFp: (configuration?: Configuration) =
|
|
|
83146
84734
|
/**
|
|
83147
84735
|
* Responds with headers only for list of task statuses for pending tasks.
|
|
83148
84736
|
* @summary Retrieve pending task list headers
|
|
83149
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
83150
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.
|
|
83151
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.
|
|
83152
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=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.
|
|
83153
84740
|
* @param {*} [axiosOptions] Override http request option.
|
|
83154
84741
|
* @throws {RequiredError}
|
|
83155
84742
|
*/
|
|
83156
|
-
getPendingTaskHeaders(
|
|
84743
|
+
getPendingTaskHeaders(offset?: number, limit?: number, count?: boolean, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
83157
84744
|
/**
|
|
83158
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.
|
|
83159
84746
|
* @summary Retrieve pending task status list
|
|
83160
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.
|
|
83161
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.
|
|
83162
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=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.
|
|
83163
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
83164
84750
|
* @param {*} [axiosOptions] Override http request option.
|
|
83165
84751
|
* @throws {RequiredError}
|
|
83166
84752
|
*/
|
|
83167
|
-
getPendingTasks(offset?: number, limit?: number, count?: boolean,
|
|
84753
|
+
getPendingTasks(offset?: number, limit?: number, count?: boolean, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<TaskStatusV2025>>>;
|
|
83168
84754
|
/**
|
|
83169
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.
|
|
83170
84756
|
* @summary Get task status by id
|
|
83171
84757
|
* @param {string} id Task ID.
|
|
83172
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
83173
84758
|
* @param {*} [axiosOptions] Override http request option.
|
|
83174
84759
|
* @throws {RequiredError}
|
|
83175
84760
|
*/
|
|
83176
|
-
getTaskStatus(id: string,
|
|
84761
|
+
getTaskStatus(id: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TaskStatusV2025>>;
|
|
83177
84762
|
/**
|
|
83178
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.
|
|
83179
84764
|
* @summary Retrieve task status list
|
|
@@ -83182,21 +84767,19 @@ export declare const TaskManagementV2025ApiFp: (configuration?: Configuration) =
|
|
|
83182
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=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.
|
|
83183
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*
|
|
83184
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**
|
|
83185
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
83186
84770
|
* @param {*} [axiosOptions] Override http request option.
|
|
83187
84771
|
* @throws {RequiredError}
|
|
83188
84772
|
*/
|
|
83189
|
-
getTaskStatusList(limit?: number, offset?: number, count?: boolean, filters?: string, sorters?: string,
|
|
84773
|
+
getTaskStatusList(limit?: number, offset?: number, count?: boolean, filters?: string, sorters?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<TaskStatusV2025>>>;
|
|
83190
84774
|
/**
|
|
83191
84775
|
* Update a current task status by task ID. Use this API to clear a pending task by updating the completionStatus and completed attributes.
|
|
83192
84776
|
* @summary Update task status by id
|
|
83193
84777
|
* @param {string} id Task ID.
|
|
83194
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
83195
84778
|
* @param {Array<JsonPatchOperationV2025>} jsonPatchOperationV2025 The JSONPatch payload used to update the object.
|
|
83196
84779
|
* @param {*} [axiosOptions] Override http request option.
|
|
83197
84780
|
* @throws {RequiredError}
|
|
83198
84781
|
*/
|
|
83199
|
-
updateTaskStatus(id: string,
|
|
84782
|
+
updateTaskStatus(id: string, jsonPatchOperationV2025: Array<JsonPatchOperationV2025>, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TaskStatusV2025>>;
|
|
83200
84783
|
};
|
|
83201
84784
|
/**
|
|
83202
84785
|
* TaskManagementV2025Api - factory interface
|
|
@@ -83210,7 +84793,7 @@ export declare const TaskManagementV2025ApiFactory: (configuration?: Configurati
|
|
|
83210
84793
|
* @param {*} [axiosOptions] Override http request option.
|
|
83211
84794
|
* @throws {RequiredError}
|
|
83212
84795
|
*/
|
|
83213
|
-
getPendingTaskHeaders(requestParameters
|
|
84796
|
+
getPendingTaskHeaders(requestParameters?: TaskManagementV2025ApiGetPendingTaskHeadersRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
83214
84797
|
/**
|
|
83215
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.
|
|
83216
84799
|
* @summary Retrieve pending task status list
|
|
@@ -83250,12 +84833,6 @@ export declare const TaskManagementV2025ApiFactory: (configuration?: Configurati
|
|
|
83250
84833
|
* @interface TaskManagementV2025ApiGetPendingTaskHeadersRequest
|
|
83251
84834
|
*/
|
|
83252
84835
|
export interface TaskManagementV2025ApiGetPendingTaskHeadersRequest {
|
|
83253
|
-
/**
|
|
83254
|
-
* Use this header to enable this experimental API.
|
|
83255
|
-
* @type {string}
|
|
83256
|
-
* @memberof TaskManagementV2025ApiGetPendingTaskHeaders
|
|
83257
|
-
*/
|
|
83258
|
-
readonly xSailPointExperimental: string;
|
|
83259
84836
|
/**
|
|
83260
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.
|
|
83261
84838
|
* @type {number}
|
|
@@ -83299,12 +84876,6 @@ export interface TaskManagementV2025ApiGetPendingTasksRequest {
|
|
|
83299
84876
|
* @memberof TaskManagementV2025ApiGetPendingTasks
|
|
83300
84877
|
*/
|
|
83301
84878
|
readonly count?: boolean;
|
|
83302
|
-
/**
|
|
83303
|
-
* Use this header to enable this experimental API.
|
|
83304
|
-
* @type {string}
|
|
83305
|
-
* @memberof TaskManagementV2025ApiGetPendingTasks
|
|
83306
|
-
*/
|
|
83307
|
-
readonly xSailPointExperimental?: string;
|
|
83308
84879
|
}
|
|
83309
84880
|
/**
|
|
83310
84881
|
* Request parameters for getTaskStatus operation in TaskManagementV2025Api.
|
|
@@ -83318,12 +84889,6 @@ export interface TaskManagementV2025ApiGetTaskStatusRequest {
|
|
|
83318
84889
|
* @memberof TaskManagementV2025ApiGetTaskStatus
|
|
83319
84890
|
*/
|
|
83320
84891
|
readonly id: string;
|
|
83321
|
-
/**
|
|
83322
|
-
* Use this header to enable this experimental API.
|
|
83323
|
-
* @type {string}
|
|
83324
|
-
* @memberof TaskManagementV2025ApiGetTaskStatus
|
|
83325
|
-
*/
|
|
83326
|
-
readonly xSailPointExperimental?: string;
|
|
83327
84892
|
}
|
|
83328
84893
|
/**
|
|
83329
84894
|
* Request parameters for getTaskStatusList operation in TaskManagementV2025Api.
|
|
@@ -83361,12 +84926,6 @@ export interface TaskManagementV2025ApiGetTaskStatusListRequest {
|
|
|
83361
84926
|
* @memberof TaskManagementV2025ApiGetTaskStatusList
|
|
83362
84927
|
*/
|
|
83363
84928
|
readonly sorters?: string;
|
|
83364
|
-
/**
|
|
83365
|
-
* Use this header to enable this experimental API.
|
|
83366
|
-
* @type {string}
|
|
83367
|
-
* @memberof TaskManagementV2025ApiGetTaskStatusList
|
|
83368
|
-
*/
|
|
83369
|
-
readonly xSailPointExperimental?: string;
|
|
83370
84929
|
}
|
|
83371
84930
|
/**
|
|
83372
84931
|
* Request parameters for updateTaskStatus operation in TaskManagementV2025Api.
|
|
@@ -83380,12 +84939,6 @@ export interface TaskManagementV2025ApiUpdateTaskStatusRequest {
|
|
|
83380
84939
|
* @memberof TaskManagementV2025ApiUpdateTaskStatus
|
|
83381
84940
|
*/
|
|
83382
84941
|
readonly id: string;
|
|
83383
|
-
/**
|
|
83384
|
-
* Use this header to enable this experimental API.
|
|
83385
|
-
* @type {string}
|
|
83386
|
-
* @memberof TaskManagementV2025ApiUpdateTaskStatus
|
|
83387
|
-
*/
|
|
83388
|
-
readonly xSailPointExperimental: string;
|
|
83389
84942
|
/**
|
|
83390
84943
|
* The JSONPatch payload used to update the object.
|
|
83391
84944
|
* @type {Array<JsonPatchOperationV2025>}
|
|
@@ -83408,7 +84961,7 @@ export declare class TaskManagementV2025Api extends BaseAPI {
|
|
|
83408
84961
|
* @throws {RequiredError}
|
|
83409
84962
|
* @memberof TaskManagementV2025Api
|
|
83410
84963
|
*/
|
|
83411
|
-
getPendingTaskHeaders(requestParameters
|
|
84964
|
+
getPendingTaskHeaders(requestParameters?: TaskManagementV2025ApiGetPendingTaskHeadersRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
83412
84965
|
/**
|
|
83413
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.
|
|
83414
84967
|
* @summary Retrieve pending task status list
|
|
@@ -86212,12 +87765,11 @@ export declare const WorkflowsV2025ApiAxiosParamCreator: (configuration?: Config
|
|
|
86212
87765
|
* @param {string} id Workflow ID.
|
|
86213
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.
|
|
86214
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.
|
|
86215
|
-
* @param {boolean} [count] If *true* it will populate the *X-Total-Count* response header with the number of results that would be returned if *limit* and *offset* were ignored. Since requesting a total count can have a performance impact, it is recommended not to send **count=true** if that value will not be used. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
86216
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*
|
|
86217
87769
|
* @param {*} [axiosOptions] Override http request option.
|
|
86218
87770
|
* @throws {RequiredError}
|
|
86219
87771
|
*/
|
|
86220
|
-
getWorkflowExecutions: (id: string, limit?: number, offset?: number,
|
|
87772
|
+
getWorkflowExecutions: (id: string, limit?: number, offset?: number, filters?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
86221
87773
|
/**
|
|
86222
87774
|
* This lists all triggers, actions, and operators in the library
|
|
86223
87775
|
* @summary List complete workflow library
|
|
@@ -86374,12 +87926,11 @@ export declare const WorkflowsV2025ApiFp: (configuration?: Configuration) => {
|
|
|
86374
87926
|
* @param {string} id Workflow ID.
|
|
86375
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.
|
|
86376
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.
|
|
86377
|
-
* @param {boolean} [count] If *true* it will populate the *X-Total-Count* response header with the number of results that would be returned if *limit* and *offset* were ignored. Since requesting a total count can have a performance impact, it is recommended not to send **count=true** if that value will not be used. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
86378
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*
|
|
86379
87930
|
* @param {*} [axiosOptions] Override http request option.
|
|
86380
87931
|
* @throws {RequiredError}
|
|
86381
87932
|
*/
|
|
86382
|
-
getWorkflowExecutions(id: string, limit?: number, offset?: number,
|
|
87933
|
+
getWorkflowExecutions(id: string, limit?: number, offset?: number, filters?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<WorkflowExecutionV2025>>>;
|
|
86383
87934
|
/**
|
|
86384
87935
|
* This lists all triggers, actions, and operators in the library
|
|
86385
87936
|
* @summary List complete workflow library
|
|
@@ -86742,12 +88293,6 @@ export interface WorkflowsV2025ApiGetWorkflowExecutionsRequest {
|
|
|
86742
88293
|
* @memberof WorkflowsV2025ApiGetWorkflowExecutions
|
|
86743
88294
|
*/
|
|
86744
88295
|
readonly offset?: number;
|
|
86745
|
-
/**
|
|
86746
|
-
* If *true* it will populate the *X-Total-Count* response header with the number of results that would be returned if *limit* and *offset* were ignored. Since requesting a total count can have a performance impact, it is recommended not to send **count=true** if that value will not be used. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
86747
|
-
* @type {boolean}
|
|
86748
|
-
* @memberof WorkflowsV2025ApiGetWorkflowExecutions
|
|
86749
|
-
*/
|
|
86750
|
-
readonly count?: boolean;
|
|
86751
88296
|
/**
|
|
86752
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*
|
|
86753
88298
|
* @type {string}
|