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/v2024/api.ts
CHANGED
|
@@ -186,15 +186,28 @@ export interface AccessCriteriaV2024 {
|
|
|
186
186
|
/**
|
|
187
187
|
*
|
|
188
188
|
* @export
|
|
189
|
-
* @interface
|
|
189
|
+
* @interface AccessItemAccessProfileResponseAppRefsInnerV2024
|
|
190
190
|
*/
|
|
191
|
-
export interface
|
|
191
|
+
export interface AccessItemAccessProfileResponseAppRefsInnerV2024 {
|
|
192
192
|
/**
|
|
193
|
-
* the
|
|
193
|
+
* the cloud app id associated with the access profile
|
|
194
194
|
* @type {string}
|
|
195
|
-
* @memberof
|
|
195
|
+
* @memberof AccessItemAccessProfileResponseAppRefsInnerV2024
|
|
196
196
|
*/
|
|
197
|
-
'
|
|
197
|
+
'cloudAppId'?: string;
|
|
198
|
+
/**
|
|
199
|
+
* the cloud app name associated with the access profile
|
|
200
|
+
* @type {string}
|
|
201
|
+
* @memberof AccessItemAccessProfileResponseAppRefsInnerV2024
|
|
202
|
+
*/
|
|
203
|
+
'cloudAppName'?: string;
|
|
204
|
+
}
|
|
205
|
+
/**
|
|
206
|
+
*
|
|
207
|
+
* @export
|
|
208
|
+
* @interface AccessItemAccessProfileResponseV2024
|
|
209
|
+
*/
|
|
210
|
+
export interface AccessItemAccessProfileResponseV2024 {
|
|
198
211
|
/**
|
|
199
212
|
* the access item id
|
|
200
213
|
* @type {string}
|
|
@@ -202,65 +215,65 @@ export interface AccessItemAccessProfileResponseV2024 {
|
|
|
202
215
|
*/
|
|
203
216
|
'id'?: string;
|
|
204
217
|
/**
|
|
205
|
-
* the access
|
|
218
|
+
* the access item type. accessProfile in this case
|
|
206
219
|
* @type {string}
|
|
207
220
|
* @memberof AccessItemAccessProfileResponseV2024
|
|
208
221
|
*/
|
|
209
|
-
'
|
|
222
|
+
'accessType'?: string;
|
|
210
223
|
/**
|
|
211
|
-
* the name of the
|
|
224
|
+
* the display name of the identity
|
|
212
225
|
* @type {string}
|
|
213
226
|
* @memberof AccessItemAccessProfileResponseV2024
|
|
214
227
|
*/
|
|
215
|
-
'
|
|
228
|
+
'displayName'?: string;
|
|
216
229
|
/**
|
|
217
|
-
* the
|
|
230
|
+
* the name of the source
|
|
218
231
|
* @type {string}
|
|
219
232
|
* @memberof AccessItemAccessProfileResponseV2024
|
|
220
233
|
*/
|
|
221
|
-
'
|
|
234
|
+
'sourceName'?: string;
|
|
222
235
|
/**
|
|
223
|
-
* the
|
|
224
|
-
* @type {
|
|
236
|
+
* the number of entitlements the access profile will create
|
|
237
|
+
* @type {number}
|
|
225
238
|
* @memberof AccessItemAccessProfileResponseV2024
|
|
226
239
|
*/
|
|
227
|
-
'
|
|
240
|
+
'entitlementCount': number;
|
|
228
241
|
/**
|
|
229
|
-
* the
|
|
242
|
+
* the description for the access profile
|
|
230
243
|
* @type {string}
|
|
231
244
|
* @memberof AccessItemAccessProfileResponseV2024
|
|
232
245
|
*/
|
|
233
|
-
'
|
|
246
|
+
'description'?: string | null;
|
|
234
247
|
/**
|
|
235
|
-
* the
|
|
248
|
+
* the id of the source
|
|
236
249
|
* @type {string}
|
|
237
250
|
* @memberof AccessItemAccessProfileResponseV2024
|
|
238
251
|
*/
|
|
239
|
-
'
|
|
252
|
+
'sourceId'?: string;
|
|
240
253
|
/**
|
|
241
|
-
* the
|
|
242
|
-
* @type {
|
|
254
|
+
* the list of app ids associated with the access profile
|
|
255
|
+
* @type {Array<AccessItemAccessProfileResponseAppRefsInnerV2024>}
|
|
243
256
|
* @memberof AccessItemAccessProfileResponseV2024
|
|
244
257
|
*/
|
|
245
|
-
'
|
|
258
|
+
'appRefs': Array<AccessItemAccessProfileResponseAppRefsInnerV2024>;
|
|
246
259
|
/**
|
|
247
260
|
* the date the access profile is no longer assigned to the specified identity
|
|
248
261
|
* @type {string}
|
|
249
262
|
* @memberof AccessItemAccessProfileResponseV2024
|
|
250
263
|
*/
|
|
251
|
-
'removeDate'?: string;
|
|
264
|
+
'removeDate'?: string | null;
|
|
252
265
|
/**
|
|
253
266
|
* indicates whether the access profile is standalone
|
|
254
267
|
* @type {boolean}
|
|
255
268
|
* @memberof AccessItemAccessProfileResponseV2024
|
|
256
269
|
*/
|
|
257
|
-
'standalone': boolean;
|
|
270
|
+
'standalone': boolean | null;
|
|
258
271
|
/**
|
|
259
|
-
* indicates whether the access profile is
|
|
272
|
+
* indicates whether the access profile is revocable
|
|
260
273
|
* @type {boolean}
|
|
261
274
|
* @memberof AccessItemAccessProfileResponseV2024
|
|
262
275
|
*/
|
|
263
|
-
'revocable': boolean;
|
|
276
|
+
'revocable': boolean | null;
|
|
264
277
|
}
|
|
265
278
|
/**
|
|
266
279
|
*
|
|
@@ -269,23 +282,23 @@ export interface AccessItemAccessProfileResponseV2024 {
|
|
|
269
282
|
*/
|
|
270
283
|
export interface AccessItemAccountResponseV2024 {
|
|
271
284
|
/**
|
|
272
|
-
* the access item
|
|
285
|
+
* the access item id
|
|
273
286
|
* @type {string}
|
|
274
287
|
* @memberof AccessItemAccountResponseV2024
|
|
275
288
|
*/
|
|
276
|
-
'
|
|
289
|
+
'id'?: string;
|
|
277
290
|
/**
|
|
278
|
-
* the access item
|
|
291
|
+
* the access item type. account in this case
|
|
279
292
|
* @type {string}
|
|
280
293
|
* @memberof AccessItemAccountResponseV2024
|
|
281
294
|
*/
|
|
282
|
-
'
|
|
295
|
+
'accessType'?: string;
|
|
283
296
|
/**
|
|
284
|
-
* the
|
|
297
|
+
* the display name of the identity
|
|
285
298
|
* @type {string}
|
|
286
299
|
* @memberof AccessItemAccountResponseV2024
|
|
287
300
|
*/
|
|
288
|
-
'
|
|
301
|
+
'displayName'?: string;
|
|
289
302
|
/**
|
|
290
303
|
* the name of the source
|
|
291
304
|
* @type {string}
|
|
@@ -293,23 +306,23 @@ export interface AccessItemAccountResponseV2024 {
|
|
|
293
306
|
*/
|
|
294
307
|
'sourceName'?: string;
|
|
295
308
|
/**
|
|
296
|
-
* the
|
|
309
|
+
* the native identifier used to uniquely identify an acccount
|
|
297
310
|
* @type {string}
|
|
298
311
|
* @memberof AccessItemAccountResponseV2024
|
|
299
312
|
*/
|
|
300
|
-
'
|
|
313
|
+
'nativeIdentity': string;
|
|
301
314
|
/**
|
|
302
|
-
* the
|
|
315
|
+
* the id of the source
|
|
303
316
|
* @type {string}
|
|
304
317
|
* @memberof AccessItemAccountResponseV2024
|
|
305
318
|
*/
|
|
306
|
-
'
|
|
319
|
+
'sourceId'?: string;
|
|
307
320
|
/**
|
|
308
|
-
* the
|
|
309
|
-
* @type {
|
|
321
|
+
* the number of entitlements the account will create
|
|
322
|
+
* @type {number}
|
|
310
323
|
* @memberof AccessItemAccountResponseV2024
|
|
311
324
|
*/
|
|
312
|
-
'
|
|
325
|
+
'entitlementCount'?: number;
|
|
313
326
|
}
|
|
314
327
|
/**
|
|
315
328
|
*
|
|
@@ -318,17 +331,17 @@ export interface AccessItemAccountResponseV2024 {
|
|
|
318
331
|
*/
|
|
319
332
|
export interface AccessItemAppResponseV2024 {
|
|
320
333
|
/**
|
|
321
|
-
* the access item
|
|
334
|
+
* the access item id
|
|
322
335
|
* @type {string}
|
|
323
336
|
* @memberof AccessItemAppResponseV2024
|
|
324
337
|
*/
|
|
325
|
-
'
|
|
338
|
+
'id'?: string;
|
|
326
339
|
/**
|
|
327
|
-
* the access item
|
|
340
|
+
* the access item type. entitlement in this case
|
|
328
341
|
* @type {string}
|
|
329
342
|
* @memberof AccessItemAppResponseV2024
|
|
330
343
|
*/
|
|
331
|
-
'
|
|
344
|
+
'accessType'?: string;
|
|
332
345
|
/**
|
|
333
346
|
* the access item display name
|
|
334
347
|
* @type {string}
|
|
@@ -340,13 +353,13 @@ export interface AccessItemAppResponseV2024 {
|
|
|
340
353
|
* @type {string}
|
|
341
354
|
* @memberof AccessItemAppResponseV2024
|
|
342
355
|
*/
|
|
343
|
-
'sourceName'?: string;
|
|
356
|
+
'sourceName'?: string | null;
|
|
344
357
|
/**
|
|
345
358
|
* the app role id
|
|
346
359
|
* @type {string}
|
|
347
360
|
* @memberof AccessItemAppResponseV2024
|
|
348
361
|
*/
|
|
349
|
-
'appRoleId'
|
|
362
|
+
'appRoleId': string | null;
|
|
350
363
|
}
|
|
351
364
|
/**
|
|
352
365
|
* Identity who approved the access item request.
|
|
@@ -381,11 +394,120 @@ export const AccessItemApproverDtoV2024TypeV2024 = {
|
|
|
381
394
|
export type AccessItemApproverDtoV2024TypeV2024 = typeof AccessItemApproverDtoV2024TypeV2024[keyof typeof AccessItemApproverDtoV2024TypeV2024];
|
|
382
395
|
|
|
383
396
|
/**
|
|
384
|
-
*
|
|
397
|
+
*
|
|
385
398
|
* @export
|
|
399
|
+
* @interface AccessItemAssociatedAccessItemV2024
|
|
386
400
|
*/
|
|
387
|
-
export
|
|
388
|
-
|
|
401
|
+
export interface AccessItemAssociatedAccessItemV2024 {
|
|
402
|
+
/**
|
|
403
|
+
* the access item id
|
|
404
|
+
* @type {string}
|
|
405
|
+
* @memberof AccessItemAssociatedAccessItemV2024
|
|
406
|
+
*/
|
|
407
|
+
'id'?: string;
|
|
408
|
+
/**
|
|
409
|
+
* the access item type. entitlement in this case
|
|
410
|
+
* @type {string}
|
|
411
|
+
* @memberof AccessItemAssociatedAccessItemV2024
|
|
412
|
+
*/
|
|
413
|
+
'accessType'?: string;
|
|
414
|
+
/**
|
|
415
|
+
* the access item display name
|
|
416
|
+
* @type {string}
|
|
417
|
+
* @memberof AccessItemAssociatedAccessItemV2024
|
|
418
|
+
*/
|
|
419
|
+
'displayName'?: string;
|
|
420
|
+
/**
|
|
421
|
+
* the associated source name if it exists
|
|
422
|
+
* @type {string}
|
|
423
|
+
* @memberof AccessItemAssociatedAccessItemV2024
|
|
424
|
+
*/
|
|
425
|
+
'sourceName'?: string | null;
|
|
426
|
+
/**
|
|
427
|
+
* the entitlement attribute
|
|
428
|
+
* @type {string}
|
|
429
|
+
* @memberof AccessItemAssociatedAccessItemV2024
|
|
430
|
+
*/
|
|
431
|
+
'attribute': string;
|
|
432
|
+
/**
|
|
433
|
+
* the associated value
|
|
434
|
+
* @type {string}
|
|
435
|
+
* @memberof AccessItemAssociatedAccessItemV2024
|
|
436
|
+
*/
|
|
437
|
+
'value': string;
|
|
438
|
+
/**
|
|
439
|
+
* the type of entitlement
|
|
440
|
+
* @type {string}
|
|
441
|
+
* @memberof AccessItemAssociatedAccessItemV2024
|
|
442
|
+
*/
|
|
443
|
+
'type': string;
|
|
444
|
+
/**
|
|
445
|
+
* the description for the role
|
|
446
|
+
* @type {string}
|
|
447
|
+
* @memberof AccessItemAssociatedAccessItemV2024
|
|
448
|
+
*/
|
|
449
|
+
'description'?: string;
|
|
450
|
+
/**
|
|
451
|
+
* the id of the source
|
|
452
|
+
* @type {string}
|
|
453
|
+
* @memberof AccessItemAssociatedAccessItemV2024
|
|
454
|
+
*/
|
|
455
|
+
'sourceId'?: string;
|
|
456
|
+
/**
|
|
457
|
+
* indicates whether the access profile is standalone
|
|
458
|
+
* @type {boolean}
|
|
459
|
+
* @memberof AccessItemAssociatedAccessItemV2024
|
|
460
|
+
*/
|
|
461
|
+
'standalone': boolean | null;
|
|
462
|
+
/**
|
|
463
|
+
* indicates whether the entitlement is privileged
|
|
464
|
+
* @type {boolean}
|
|
465
|
+
* @memberof AccessItemAssociatedAccessItemV2024
|
|
466
|
+
*/
|
|
467
|
+
'privileged': boolean | null;
|
|
468
|
+
/**
|
|
469
|
+
* indicates whether the entitlement is cloud governed
|
|
470
|
+
* @type {boolean}
|
|
471
|
+
* @memberof AccessItemAssociatedAccessItemV2024
|
|
472
|
+
*/
|
|
473
|
+
'cloudGoverned': boolean | null;
|
|
474
|
+
/**
|
|
475
|
+
* the number of entitlements the account will create
|
|
476
|
+
* @type {number}
|
|
477
|
+
* @memberof AccessItemAssociatedAccessItemV2024
|
|
478
|
+
*/
|
|
479
|
+
'entitlementCount': number;
|
|
480
|
+
/**
|
|
481
|
+
* the list of app ids associated with the access profile
|
|
482
|
+
* @type {Array<AccessItemAccessProfileResponseAppRefsInnerV2024>}
|
|
483
|
+
* @memberof AccessItemAssociatedAccessItemV2024
|
|
484
|
+
*/
|
|
485
|
+
'appRefs': Array<AccessItemAccessProfileResponseAppRefsInnerV2024>;
|
|
486
|
+
/**
|
|
487
|
+
* the date the role is no longer assigned to the specified identity
|
|
488
|
+
* @type {string}
|
|
489
|
+
* @memberof AccessItemAssociatedAccessItemV2024
|
|
490
|
+
*/
|
|
491
|
+
'removeDate'?: string;
|
|
492
|
+
/**
|
|
493
|
+
* indicates whether the role is revocable
|
|
494
|
+
* @type {boolean}
|
|
495
|
+
* @memberof AccessItemAssociatedAccessItemV2024
|
|
496
|
+
*/
|
|
497
|
+
'revocable': boolean;
|
|
498
|
+
/**
|
|
499
|
+
* the native identifier used to uniquely identify an acccount
|
|
500
|
+
* @type {string}
|
|
501
|
+
* @memberof AccessItemAssociatedAccessItemV2024
|
|
502
|
+
*/
|
|
503
|
+
'nativeIdentity': string;
|
|
504
|
+
/**
|
|
505
|
+
* the app role id
|
|
506
|
+
* @type {string}
|
|
507
|
+
* @memberof AccessItemAssociatedAccessItemV2024
|
|
508
|
+
*/
|
|
509
|
+
'appRoleId': string | null;
|
|
510
|
+
}
|
|
389
511
|
/**
|
|
390
512
|
*
|
|
391
513
|
* @export
|
|
@@ -393,36 +515,53 @@ export type AccessItemAssociatedAccessItemV2024 = AccessItemAccessProfileRespons
|
|
|
393
515
|
*/
|
|
394
516
|
export interface AccessItemAssociatedV2024 {
|
|
395
517
|
/**
|
|
396
|
-
*
|
|
397
|
-
* @type {
|
|
518
|
+
* the event type
|
|
519
|
+
* @type {string}
|
|
398
520
|
* @memberof AccessItemAssociatedV2024
|
|
399
521
|
*/
|
|
400
|
-
'
|
|
522
|
+
'eventType'?: string;
|
|
401
523
|
/**
|
|
402
|
-
* the
|
|
524
|
+
* the date of event
|
|
403
525
|
* @type {string}
|
|
404
526
|
* @memberof AccessItemAssociatedV2024
|
|
405
527
|
*/
|
|
406
|
-
'
|
|
528
|
+
'dateTime'?: string;
|
|
407
529
|
/**
|
|
408
|
-
* the
|
|
530
|
+
* the identity id
|
|
409
531
|
* @type {string}
|
|
410
532
|
* @memberof AccessItemAssociatedV2024
|
|
411
533
|
*/
|
|
412
|
-
'
|
|
534
|
+
'identityId'?: string;
|
|
413
535
|
/**
|
|
414
|
-
*
|
|
415
|
-
* @type {
|
|
536
|
+
*
|
|
537
|
+
* @type {AccessItemAssociatedAccessItemV2024}
|
|
416
538
|
* @memberof AccessItemAssociatedV2024
|
|
417
539
|
*/
|
|
418
|
-
'
|
|
540
|
+
'accessItem': AccessItemAssociatedAccessItemV2024;
|
|
419
541
|
/**
|
|
420
542
|
*
|
|
421
543
|
* @type {CorrelatedGovernanceEventV2024}
|
|
422
544
|
* @memberof AccessItemAssociatedV2024
|
|
423
545
|
*/
|
|
424
|
-
'governanceEvent'
|
|
546
|
+
'governanceEvent': CorrelatedGovernanceEventV2024 | null;
|
|
547
|
+
/**
|
|
548
|
+
* the access item type
|
|
549
|
+
* @type {string}
|
|
550
|
+
* @memberof AccessItemAssociatedV2024
|
|
551
|
+
*/
|
|
552
|
+
'accessItemType'?: AccessItemAssociatedV2024AccessItemTypeV2024;
|
|
425
553
|
}
|
|
554
|
+
|
|
555
|
+
export const AccessItemAssociatedV2024AccessItemTypeV2024 = {
|
|
556
|
+
Account: 'account',
|
|
557
|
+
App: 'app',
|
|
558
|
+
Entitlement: 'entitlement',
|
|
559
|
+
Role: 'role',
|
|
560
|
+
AccessProfile: 'accessProfile'
|
|
561
|
+
} as const;
|
|
562
|
+
|
|
563
|
+
export type AccessItemAssociatedV2024AccessItemTypeV2024 = typeof AccessItemAssociatedV2024AccessItemTypeV2024[keyof typeof AccessItemAssociatedV2024AccessItemTypeV2024];
|
|
564
|
+
|
|
426
565
|
/**
|
|
427
566
|
*
|
|
428
567
|
* @export
|
|
@@ -469,77 +608,77 @@ export type AccessItemDiffV2024EventTypeV2024 = typeof AccessItemDiffV2024EventT
|
|
|
469
608
|
*/
|
|
470
609
|
export interface AccessItemEntitlementResponseV2024 {
|
|
471
610
|
/**
|
|
472
|
-
* the access item
|
|
611
|
+
* the access item id
|
|
473
612
|
* @type {string}
|
|
474
613
|
* @memberof AccessItemEntitlementResponseV2024
|
|
475
614
|
*/
|
|
476
|
-
'
|
|
615
|
+
'id'?: string;
|
|
477
616
|
/**
|
|
478
|
-
* the access item
|
|
617
|
+
* the access item type. entitlement in this case
|
|
479
618
|
* @type {string}
|
|
480
619
|
* @memberof AccessItemEntitlementResponseV2024
|
|
481
620
|
*/
|
|
482
|
-
'
|
|
621
|
+
'accessType'?: string;
|
|
483
622
|
/**
|
|
484
|
-
* the
|
|
623
|
+
* the display name of the identity
|
|
485
624
|
* @type {string}
|
|
486
625
|
* @memberof AccessItemEntitlementResponseV2024
|
|
487
626
|
*/
|
|
488
|
-
'
|
|
627
|
+
'displayName'?: string;
|
|
489
628
|
/**
|
|
490
|
-
* the
|
|
629
|
+
* the name of the source
|
|
491
630
|
* @type {string}
|
|
492
631
|
* @memberof AccessItemEntitlementResponseV2024
|
|
493
632
|
*/
|
|
494
|
-
'
|
|
633
|
+
'sourceName'?: string;
|
|
495
634
|
/**
|
|
496
|
-
* the
|
|
635
|
+
* the entitlement attribute
|
|
497
636
|
* @type {string}
|
|
498
637
|
* @memberof AccessItemEntitlementResponseV2024
|
|
499
638
|
*/
|
|
500
|
-
'
|
|
639
|
+
'attribute': string;
|
|
501
640
|
/**
|
|
502
|
-
* the
|
|
641
|
+
* the associated value
|
|
503
642
|
* @type {string}
|
|
504
643
|
* @memberof AccessItemEntitlementResponseV2024
|
|
505
644
|
*/
|
|
506
|
-
'
|
|
645
|
+
'value': string;
|
|
507
646
|
/**
|
|
508
|
-
* the
|
|
647
|
+
* the type of entitlement
|
|
509
648
|
* @type {string}
|
|
510
649
|
* @memberof AccessItemEntitlementResponseV2024
|
|
511
650
|
*/
|
|
512
|
-
'
|
|
651
|
+
'type': string;
|
|
513
652
|
/**
|
|
514
653
|
* the description for the entitlment
|
|
515
654
|
* @type {string}
|
|
516
655
|
* @memberof AccessItemEntitlementResponseV2024
|
|
517
656
|
*/
|
|
518
|
-
'description'?: string;
|
|
657
|
+
'description'?: string | null;
|
|
519
658
|
/**
|
|
520
|
-
* the
|
|
659
|
+
* the id of the source
|
|
521
660
|
* @type {string}
|
|
522
661
|
* @memberof AccessItemEntitlementResponseV2024
|
|
523
662
|
*/
|
|
524
|
-
'
|
|
663
|
+
'sourceId'?: string;
|
|
525
664
|
/**
|
|
526
665
|
* indicates whether the entitlement is standalone
|
|
527
666
|
* @type {boolean}
|
|
528
667
|
* @memberof AccessItemEntitlementResponseV2024
|
|
529
668
|
*/
|
|
530
|
-
'standalone': boolean;
|
|
669
|
+
'standalone': boolean | null;
|
|
531
670
|
/**
|
|
532
671
|
* indicates whether the entitlement is privileged
|
|
533
672
|
* @type {boolean}
|
|
534
673
|
* @memberof AccessItemEntitlementResponseV2024
|
|
535
674
|
*/
|
|
536
|
-
'privileged': boolean;
|
|
675
|
+
'privileged': boolean | null;
|
|
537
676
|
/**
|
|
538
677
|
* indicates whether the entitlement is cloud governed
|
|
539
678
|
* @type {boolean}
|
|
540
679
|
* @memberof AccessItemEntitlementResponseV2024
|
|
541
680
|
*/
|
|
542
|
-
'cloudGoverned': boolean;
|
|
681
|
+
'cloudGoverned': boolean | null;
|
|
543
682
|
}
|
|
544
683
|
/**
|
|
545
684
|
*
|
|
@@ -580,7 +719,7 @@ export interface AccessItemRemovedV2024 {
|
|
|
580
719
|
* @type {AccessItemAssociatedAccessItemV2024}
|
|
581
720
|
* @memberof AccessItemRemovedV2024
|
|
582
721
|
*/
|
|
583
|
-
'accessItem'
|
|
722
|
+
'accessItem': AccessItemAssociatedAccessItemV2024;
|
|
584
723
|
/**
|
|
585
724
|
* the identity id
|
|
586
725
|
* @type {string}
|
|
@@ -598,14 +737,31 @@ export interface AccessItemRemovedV2024 {
|
|
|
598
737
|
* @type {string}
|
|
599
738
|
* @memberof AccessItemRemovedV2024
|
|
600
739
|
*/
|
|
601
|
-
'
|
|
740
|
+
'dateTime'?: string;
|
|
741
|
+
/**
|
|
742
|
+
* the access item type
|
|
743
|
+
* @type {string}
|
|
744
|
+
* @memberof AccessItemRemovedV2024
|
|
745
|
+
*/
|
|
746
|
+
'accessItemType'?: AccessItemRemovedV2024AccessItemTypeV2024;
|
|
602
747
|
/**
|
|
603
748
|
*
|
|
604
749
|
* @type {CorrelatedGovernanceEventV2024}
|
|
605
750
|
* @memberof AccessItemRemovedV2024
|
|
606
751
|
*/
|
|
607
|
-
'governanceEvent'?: CorrelatedGovernanceEventV2024;
|
|
752
|
+
'governanceEvent'?: CorrelatedGovernanceEventV2024 | null;
|
|
608
753
|
}
|
|
754
|
+
|
|
755
|
+
export const AccessItemRemovedV2024AccessItemTypeV2024 = {
|
|
756
|
+
Account: 'account',
|
|
757
|
+
App: 'app',
|
|
758
|
+
Entitlement: 'entitlement',
|
|
759
|
+
Role: 'role',
|
|
760
|
+
AccessProfile: 'accessProfile'
|
|
761
|
+
} as const;
|
|
762
|
+
|
|
763
|
+
export type AccessItemRemovedV2024AccessItemTypeV2024 = typeof AccessItemRemovedV2024AccessItemTypeV2024[keyof typeof AccessItemRemovedV2024AccessItemTypeV2024];
|
|
764
|
+
|
|
609
765
|
/**
|
|
610
766
|
* Identity the access item is requested for.
|
|
611
767
|
* @export
|
|
@@ -773,17 +929,17 @@ export type AccessItemReviewedByV2024TypeV2024 = typeof AccessItemReviewedByV202
|
|
|
773
929
|
*/
|
|
774
930
|
export interface AccessItemRoleResponseV2024 {
|
|
775
931
|
/**
|
|
776
|
-
* the access item
|
|
932
|
+
* the access item id
|
|
777
933
|
* @type {string}
|
|
778
934
|
* @memberof AccessItemRoleResponseV2024
|
|
779
935
|
*/
|
|
780
|
-
'
|
|
936
|
+
'id'?: string;
|
|
781
937
|
/**
|
|
782
|
-
* the access item
|
|
938
|
+
* the access item type. role in this case
|
|
783
939
|
* @type {string}
|
|
784
940
|
* @memberof AccessItemRoleResponseV2024
|
|
785
941
|
*/
|
|
786
|
-
'
|
|
942
|
+
'accessType'?: string;
|
|
787
943
|
/**
|
|
788
944
|
* the role display name
|
|
789
945
|
* @type {string}
|
|
@@ -791,17 +947,17 @@ export interface AccessItemRoleResponseV2024 {
|
|
|
791
947
|
*/
|
|
792
948
|
'displayName'?: string;
|
|
793
949
|
/**
|
|
794
|
-
* the
|
|
950
|
+
* the associated source name if it exists
|
|
795
951
|
* @type {string}
|
|
796
952
|
* @memberof AccessItemRoleResponseV2024
|
|
797
953
|
*/
|
|
798
|
-
'
|
|
954
|
+
'sourceName'?: string | null;
|
|
799
955
|
/**
|
|
800
|
-
* the
|
|
956
|
+
* the description for the role
|
|
801
957
|
* @type {string}
|
|
802
958
|
* @memberof AccessItemRoleResponseV2024
|
|
803
959
|
*/
|
|
804
|
-
'
|
|
960
|
+
'description'?: string;
|
|
805
961
|
/**
|
|
806
962
|
* the date the role is no longer assigned to the specified identity
|
|
807
963
|
* @type {string}
|
|
@@ -2223,69 +2379,6 @@ export interface AccessRequestDynamicApproverV2024 {
|
|
|
2223
2379
|
*/
|
|
2224
2380
|
'requestedBy': AccessItemRequesterDtoV2024;
|
|
2225
2381
|
}
|
|
2226
|
-
/**
|
|
2227
|
-
*
|
|
2228
|
-
* @export
|
|
2229
|
-
* @interface AccessRequestItemResponseV2024
|
|
2230
|
-
*/
|
|
2231
|
-
export interface AccessRequestItemResponseV2024 {
|
|
2232
|
-
/**
|
|
2233
|
-
* the access request item operation
|
|
2234
|
-
* @type {string}
|
|
2235
|
-
* @memberof AccessRequestItemResponseV2024
|
|
2236
|
-
*/
|
|
2237
|
-
'operation'?: string;
|
|
2238
|
-
/**
|
|
2239
|
-
* the access item type
|
|
2240
|
-
* @type {string}
|
|
2241
|
-
* @memberof AccessRequestItemResponseV2024
|
|
2242
|
-
*/
|
|
2243
|
-
'accessItemType'?: string;
|
|
2244
|
-
/**
|
|
2245
|
-
* the name of access request item
|
|
2246
|
-
* @type {string}
|
|
2247
|
-
* @memberof AccessRequestItemResponseV2024
|
|
2248
|
-
*/
|
|
2249
|
-
'name'?: string;
|
|
2250
|
-
/**
|
|
2251
|
-
* the final decision for the access request
|
|
2252
|
-
* @type {string}
|
|
2253
|
-
* @memberof AccessRequestItemResponseV2024
|
|
2254
|
-
*/
|
|
2255
|
-
'decision'?: AccessRequestItemResponseV2024DecisionV2024;
|
|
2256
|
-
/**
|
|
2257
|
-
* the description of access request item
|
|
2258
|
-
* @type {string}
|
|
2259
|
-
* @memberof AccessRequestItemResponseV2024
|
|
2260
|
-
*/
|
|
2261
|
-
'description'?: string;
|
|
2262
|
-
/**
|
|
2263
|
-
* the source id
|
|
2264
|
-
* @type {string}
|
|
2265
|
-
* @memberof AccessRequestItemResponseV2024
|
|
2266
|
-
*/
|
|
2267
|
-
'sourceId'?: string;
|
|
2268
|
-
/**
|
|
2269
|
-
* the source Name
|
|
2270
|
-
* @type {string}
|
|
2271
|
-
* @memberof AccessRequestItemResponseV2024
|
|
2272
|
-
*/
|
|
2273
|
-
'sourceName'?: string;
|
|
2274
|
-
/**
|
|
2275
|
-
*
|
|
2276
|
-
* @type {Array<ApprovalInfoResponseV2024>}
|
|
2277
|
-
* @memberof AccessRequestItemResponseV2024
|
|
2278
|
-
*/
|
|
2279
|
-
'approvalInfos'?: Array<ApprovalInfoResponseV2024>;
|
|
2280
|
-
}
|
|
2281
|
-
|
|
2282
|
-
export const AccessRequestItemResponseV2024DecisionV2024 = {
|
|
2283
|
-
Approved: 'APPROVED',
|
|
2284
|
-
Rejected: 'REJECTED'
|
|
2285
|
-
} as const;
|
|
2286
|
-
|
|
2287
|
-
export type AccessRequestItemResponseV2024DecisionV2024 = typeof AccessRequestItemResponseV2024DecisionV2024[keyof typeof AccessRequestItemResponseV2024DecisionV2024];
|
|
2288
|
-
|
|
2289
2382
|
/**
|
|
2290
2383
|
*
|
|
2291
2384
|
* @export
|
|
@@ -2894,31 +2987,6 @@ export interface AccessRequestRecommendationItemV2024 {
|
|
|
2894
2987
|
}
|
|
2895
2988
|
|
|
2896
2989
|
|
|
2897
|
-
/**
|
|
2898
|
-
*
|
|
2899
|
-
* @export
|
|
2900
|
-
* @interface AccessRequestResponse1V2024
|
|
2901
|
-
*/
|
|
2902
|
-
export interface AccessRequestResponse1V2024 {
|
|
2903
|
-
/**
|
|
2904
|
-
* the requester Id
|
|
2905
|
-
* @type {string}
|
|
2906
|
-
* @memberof AccessRequestResponse1V2024
|
|
2907
|
-
*/
|
|
2908
|
-
'requesterId'?: string;
|
|
2909
|
-
/**
|
|
2910
|
-
* the requesterName
|
|
2911
|
-
* @type {string}
|
|
2912
|
-
* @memberof AccessRequestResponse1V2024
|
|
2913
|
-
*/
|
|
2914
|
-
'requesterName'?: string;
|
|
2915
|
-
/**
|
|
2916
|
-
*
|
|
2917
|
-
* @type {Array<AccessRequestItemResponseV2024>}
|
|
2918
|
-
* @memberof AccessRequestResponse1V2024
|
|
2919
|
-
*/
|
|
2920
|
-
'items'?: Array<AccessRequestItemResponseV2024>;
|
|
2921
|
-
}
|
|
2922
2990
|
/**
|
|
2923
2991
|
*
|
|
2924
2992
|
* @export
|
|
@@ -3022,6 +3090,90 @@ export interface AccessRequestV2024 {
|
|
|
3022
3090
|
}
|
|
3023
3091
|
|
|
3024
3092
|
|
|
3093
|
+
/**
|
|
3094
|
+
*
|
|
3095
|
+
* @export
|
|
3096
|
+
* @interface AccessRequestedAccountV2024
|
|
3097
|
+
*/
|
|
3098
|
+
export interface AccessRequestedAccountV2024 {
|
|
3099
|
+
/**
|
|
3100
|
+
* the ID of the account in the database
|
|
3101
|
+
* @type {string}
|
|
3102
|
+
* @memberof AccessRequestedAccountV2024
|
|
3103
|
+
*/
|
|
3104
|
+
'id'?: string;
|
|
3105
|
+
/**
|
|
3106
|
+
* the native identifier of the account
|
|
3107
|
+
* @type {string}
|
|
3108
|
+
* @memberof AccessRequestedAccountV2024
|
|
3109
|
+
*/
|
|
3110
|
+
'nativeIdentity'?: string;
|
|
3111
|
+
/**
|
|
3112
|
+
* the display name of the account
|
|
3113
|
+
* @type {string}
|
|
3114
|
+
* @memberof AccessRequestedAccountV2024
|
|
3115
|
+
*/
|
|
3116
|
+
'displayName'?: string;
|
|
3117
|
+
/**
|
|
3118
|
+
* the ID of the source for this account
|
|
3119
|
+
* @type {string}
|
|
3120
|
+
* @memberof AccessRequestedAccountV2024
|
|
3121
|
+
*/
|
|
3122
|
+
'sourceId'?: string;
|
|
3123
|
+
/**
|
|
3124
|
+
* the name of the source for this account
|
|
3125
|
+
* @type {string}
|
|
3126
|
+
* @memberof AccessRequestedAccountV2024
|
|
3127
|
+
*/
|
|
3128
|
+
'sourceName'?: string;
|
|
3129
|
+
/**
|
|
3130
|
+
* the number of entitlements on this account
|
|
3131
|
+
* @type {number}
|
|
3132
|
+
* @memberof AccessRequestedAccountV2024
|
|
3133
|
+
*/
|
|
3134
|
+
'entitlementCount'?: number;
|
|
3135
|
+
/**
|
|
3136
|
+
* this value is always \"account\"
|
|
3137
|
+
* @type {string}
|
|
3138
|
+
* @memberof AccessRequestedAccountV2024
|
|
3139
|
+
*/
|
|
3140
|
+
'accessType'?: string;
|
|
3141
|
+
}
|
|
3142
|
+
/**
|
|
3143
|
+
*
|
|
3144
|
+
* @export
|
|
3145
|
+
* @interface AccessRequestedStatusChangeV2024
|
|
3146
|
+
*/
|
|
3147
|
+
export interface AccessRequestedStatusChangeV2024 {
|
|
3148
|
+
/**
|
|
3149
|
+
* the previous status of the account
|
|
3150
|
+
* @type {string}
|
|
3151
|
+
* @memberof AccessRequestedStatusChangeV2024
|
|
3152
|
+
*/
|
|
3153
|
+
'previousStatus'?: AccessRequestedStatusChangeV2024PreviousStatusV2024;
|
|
3154
|
+
/**
|
|
3155
|
+
* the new status of the account
|
|
3156
|
+
* @type {string}
|
|
3157
|
+
* @memberof AccessRequestedStatusChangeV2024
|
|
3158
|
+
*/
|
|
3159
|
+
'newStatus'?: AccessRequestedStatusChangeV2024NewStatusV2024;
|
|
3160
|
+
}
|
|
3161
|
+
|
|
3162
|
+
export const AccessRequestedStatusChangeV2024PreviousStatusV2024 = {
|
|
3163
|
+
Enabled: 'enabled',
|
|
3164
|
+
Disabled: 'disabled',
|
|
3165
|
+
Locked: 'locked'
|
|
3166
|
+
} as const;
|
|
3167
|
+
|
|
3168
|
+
export type AccessRequestedStatusChangeV2024PreviousStatusV2024 = typeof AccessRequestedStatusChangeV2024PreviousStatusV2024[keyof typeof AccessRequestedStatusChangeV2024PreviousStatusV2024];
|
|
3169
|
+
export const AccessRequestedStatusChangeV2024NewStatusV2024 = {
|
|
3170
|
+
Enabled: 'enabled',
|
|
3171
|
+
Disabled: 'disabled',
|
|
3172
|
+
Locked: 'locked'
|
|
3173
|
+
} as const;
|
|
3174
|
+
|
|
3175
|
+
export type AccessRequestedStatusChangeV2024NewStatusV2024 = typeof AccessRequestedStatusChangeV2024NewStatusV2024[keyof typeof AccessRequestedStatusChangeV2024NewStatusV2024];
|
|
3176
|
+
|
|
3025
3177
|
/**
|
|
3026
3178
|
*
|
|
3027
3179
|
* @export
|
|
@@ -3029,11 +3181,11 @@ export interface AccessRequestV2024 {
|
|
|
3029
3181
|
*/
|
|
3030
3182
|
export interface AccessRequestedV2024 {
|
|
3031
3183
|
/**
|
|
3032
|
-
*
|
|
3033
|
-
* @type {
|
|
3184
|
+
* the event type
|
|
3185
|
+
* @type {string}
|
|
3034
3186
|
* @memberof AccessRequestedV2024
|
|
3035
3187
|
*/
|
|
3036
|
-
'
|
|
3188
|
+
'eventType'?: string;
|
|
3037
3189
|
/**
|
|
3038
3190
|
* the identity id
|
|
3039
3191
|
* @type {string}
|
|
@@ -3041,17 +3193,23 @@ export interface AccessRequestedV2024 {
|
|
|
3041
3193
|
*/
|
|
3042
3194
|
'identityId'?: string;
|
|
3043
3195
|
/**
|
|
3044
|
-
* the event
|
|
3196
|
+
* the date of event
|
|
3045
3197
|
* @type {string}
|
|
3046
3198
|
* @memberof AccessRequestedV2024
|
|
3047
3199
|
*/
|
|
3048
|
-
'
|
|
3200
|
+
'dateTime'?: string;
|
|
3049
3201
|
/**
|
|
3050
|
-
*
|
|
3051
|
-
* @type {
|
|
3202
|
+
*
|
|
3203
|
+
* @type {AccessRequestedAccountV2024}
|
|
3052
3204
|
* @memberof AccessRequestedV2024
|
|
3053
3205
|
*/
|
|
3054
|
-
'
|
|
3206
|
+
'account': AccessRequestedAccountV2024;
|
|
3207
|
+
/**
|
|
3208
|
+
*
|
|
3209
|
+
* @type {AccessRequestedStatusChangeV2024}
|
|
3210
|
+
* @memberof AccessRequestedV2024
|
|
3211
|
+
*/
|
|
3212
|
+
'statusChange': AccessRequestedStatusChangeV2024;
|
|
3055
3213
|
}
|
|
3056
3214
|
/**
|
|
3057
3215
|
*
|
|
@@ -4804,90 +4962,6 @@ export interface AccountSourceV2024 {
|
|
|
4804
4962
|
*/
|
|
4805
4963
|
'type'?: string;
|
|
4806
4964
|
}
|
|
4807
|
-
/**
|
|
4808
|
-
*
|
|
4809
|
-
* @export
|
|
4810
|
-
* @interface AccountStatusChangedAccountV2024
|
|
4811
|
-
*/
|
|
4812
|
-
export interface AccountStatusChangedAccountV2024 {
|
|
4813
|
-
/**
|
|
4814
|
-
* the ID of the account in the database
|
|
4815
|
-
* @type {string}
|
|
4816
|
-
* @memberof AccountStatusChangedAccountV2024
|
|
4817
|
-
*/
|
|
4818
|
-
'id'?: string;
|
|
4819
|
-
/**
|
|
4820
|
-
* the native identifier of the account
|
|
4821
|
-
* @type {string}
|
|
4822
|
-
* @memberof AccountStatusChangedAccountV2024
|
|
4823
|
-
*/
|
|
4824
|
-
'nativeIdentity'?: string;
|
|
4825
|
-
/**
|
|
4826
|
-
* the display name of the account
|
|
4827
|
-
* @type {string}
|
|
4828
|
-
* @memberof AccountStatusChangedAccountV2024
|
|
4829
|
-
*/
|
|
4830
|
-
'displayName'?: string;
|
|
4831
|
-
/**
|
|
4832
|
-
* the ID of the source for this account
|
|
4833
|
-
* @type {string}
|
|
4834
|
-
* @memberof AccountStatusChangedAccountV2024
|
|
4835
|
-
*/
|
|
4836
|
-
'sourceId'?: string;
|
|
4837
|
-
/**
|
|
4838
|
-
* the name of the source for this account
|
|
4839
|
-
* @type {string}
|
|
4840
|
-
* @memberof AccountStatusChangedAccountV2024
|
|
4841
|
-
*/
|
|
4842
|
-
'sourceName'?: string;
|
|
4843
|
-
/**
|
|
4844
|
-
* the number of entitlements on this account
|
|
4845
|
-
* @type {number}
|
|
4846
|
-
* @memberof AccountStatusChangedAccountV2024
|
|
4847
|
-
*/
|
|
4848
|
-
'entitlementCount'?: number;
|
|
4849
|
-
/**
|
|
4850
|
-
* this value is always \"account\"
|
|
4851
|
-
* @type {string}
|
|
4852
|
-
* @memberof AccountStatusChangedAccountV2024
|
|
4853
|
-
*/
|
|
4854
|
-
'accessType'?: string;
|
|
4855
|
-
}
|
|
4856
|
-
/**
|
|
4857
|
-
*
|
|
4858
|
-
* @export
|
|
4859
|
-
* @interface AccountStatusChangedStatusChangeV2024
|
|
4860
|
-
*/
|
|
4861
|
-
export interface AccountStatusChangedStatusChangeV2024 {
|
|
4862
|
-
/**
|
|
4863
|
-
* the previous status of the account
|
|
4864
|
-
* @type {string}
|
|
4865
|
-
* @memberof AccountStatusChangedStatusChangeV2024
|
|
4866
|
-
*/
|
|
4867
|
-
'previousStatus'?: AccountStatusChangedStatusChangeV2024PreviousStatusV2024;
|
|
4868
|
-
/**
|
|
4869
|
-
* the new status of the account
|
|
4870
|
-
* @type {string}
|
|
4871
|
-
* @memberof AccountStatusChangedStatusChangeV2024
|
|
4872
|
-
*/
|
|
4873
|
-
'newStatus'?: AccountStatusChangedStatusChangeV2024NewStatusV2024;
|
|
4874
|
-
}
|
|
4875
|
-
|
|
4876
|
-
export const AccountStatusChangedStatusChangeV2024PreviousStatusV2024 = {
|
|
4877
|
-
Enabled: 'enabled',
|
|
4878
|
-
Disabled: 'disabled',
|
|
4879
|
-
Locked: 'locked'
|
|
4880
|
-
} as const;
|
|
4881
|
-
|
|
4882
|
-
export type AccountStatusChangedStatusChangeV2024PreviousStatusV2024 = typeof AccountStatusChangedStatusChangeV2024PreviousStatusV2024[keyof typeof AccountStatusChangedStatusChangeV2024PreviousStatusV2024];
|
|
4883
|
-
export const AccountStatusChangedStatusChangeV2024NewStatusV2024 = {
|
|
4884
|
-
Enabled: 'enabled',
|
|
4885
|
-
Disabled: 'disabled',
|
|
4886
|
-
Locked: 'locked'
|
|
4887
|
-
} as const;
|
|
4888
|
-
|
|
4889
|
-
export type AccountStatusChangedStatusChangeV2024NewStatusV2024 = typeof AccountStatusChangedStatusChangeV2024NewStatusV2024[keyof typeof AccountStatusChangedStatusChangeV2024NewStatusV2024];
|
|
4890
|
-
|
|
4891
4965
|
/**
|
|
4892
4966
|
*
|
|
4893
4967
|
* @export
|
|
@@ -4911,19 +4985,19 @@ export interface AccountStatusChangedV2024 {
|
|
|
4911
4985
|
* @type {string}
|
|
4912
4986
|
* @memberof AccountStatusChangedV2024
|
|
4913
4987
|
*/
|
|
4914
|
-
'
|
|
4988
|
+
'dateTime'?: string;
|
|
4915
4989
|
/**
|
|
4916
4990
|
*
|
|
4917
|
-
* @type {
|
|
4991
|
+
* @type {AccessRequestedAccountV2024}
|
|
4918
4992
|
* @memberof AccountStatusChangedV2024
|
|
4919
4993
|
*/
|
|
4920
|
-
'account'
|
|
4994
|
+
'account': AccessRequestedAccountV2024;
|
|
4921
4995
|
/**
|
|
4922
4996
|
*
|
|
4923
|
-
* @type {
|
|
4997
|
+
* @type {AccessRequestedStatusChangeV2024}
|
|
4924
4998
|
* @memberof AccountStatusChangedV2024
|
|
4925
4999
|
*/
|
|
4926
|
-
'statusChange'
|
|
5000
|
+
'statusChange': AccessRequestedStatusChangeV2024;
|
|
4927
5001
|
}
|
|
4928
5002
|
/**
|
|
4929
5003
|
* Request used for account enable/disable
|
|
@@ -6067,31 +6141,6 @@ export const ApprovalIdentityV2024TypeV2024 = {
|
|
|
6067
6141
|
|
|
6068
6142
|
export type ApprovalIdentityV2024TypeV2024 = typeof ApprovalIdentityV2024TypeV2024[keyof typeof ApprovalIdentityV2024TypeV2024];
|
|
6069
6143
|
|
|
6070
|
-
/**
|
|
6071
|
-
*
|
|
6072
|
-
* @export
|
|
6073
|
-
* @interface ApprovalInfoResponseV2024
|
|
6074
|
-
*/
|
|
6075
|
-
export interface ApprovalInfoResponseV2024 {
|
|
6076
|
-
/**
|
|
6077
|
-
* the id of approver
|
|
6078
|
-
* @type {string}
|
|
6079
|
-
* @memberof ApprovalInfoResponseV2024
|
|
6080
|
-
*/
|
|
6081
|
-
'id'?: string;
|
|
6082
|
-
/**
|
|
6083
|
-
* the name of approver
|
|
6084
|
-
* @type {string}
|
|
6085
|
-
* @memberof ApprovalInfoResponseV2024
|
|
6086
|
-
*/
|
|
6087
|
-
'name'?: string;
|
|
6088
|
-
/**
|
|
6089
|
-
* the status of the approval request
|
|
6090
|
-
* @type {string}
|
|
6091
|
-
* @memberof ApprovalInfoResponseV2024
|
|
6092
|
-
*/
|
|
6093
|
-
'status'?: string;
|
|
6094
|
-
}
|
|
6095
6144
|
/**
|
|
6096
6145
|
*
|
|
6097
6146
|
* @export
|
|
@@ -7144,7 +7193,7 @@ export interface AttributesChangedV2024 {
|
|
|
7144
7193
|
* @type {Array<AttributeChangeV2024>}
|
|
7145
7194
|
* @memberof AttributesChangedV2024
|
|
7146
7195
|
*/
|
|
7147
|
-
'
|
|
7196
|
+
'attributeChanges': Array<AttributeChangeV2024>;
|
|
7148
7197
|
/**
|
|
7149
7198
|
* the event type
|
|
7150
7199
|
* @type {string}
|
|
@@ -7162,7 +7211,7 @@ export interface AttributesChangedV2024 {
|
|
|
7162
7211
|
* @type {string}
|
|
7163
7212
|
* @memberof AttributesChangedV2024
|
|
7164
7213
|
*/
|
|
7165
|
-
'
|
|
7214
|
+
'dateTime'?: string;
|
|
7166
7215
|
}
|
|
7167
7216
|
/**
|
|
7168
7217
|
* Audit details for the reassignment configuration of an identity
|
|
@@ -12337,7 +12386,7 @@ export interface CorrelatedGovernanceEventV2024 {
|
|
|
12337
12386
|
* @type {string}
|
|
12338
12387
|
* @memberof CorrelatedGovernanceEventV2024
|
|
12339
12388
|
*/
|
|
12340
|
-
'
|
|
12389
|
+
'dateTime'?: string;
|
|
12341
12390
|
/**
|
|
12342
12391
|
* The type of governance event.
|
|
12343
12392
|
* @type {string}
|
|
@@ -12895,7 +12944,13 @@ export interface CreatePersonalAccessTokenRequestV2024 {
|
|
|
12895
12944
|
* @type {number}
|
|
12896
12945
|
* @memberof CreatePersonalAccessTokenRequestV2024
|
|
12897
12946
|
*/
|
|
12898
|
-
'accessTokenValiditySeconds'?: number;
|
|
12947
|
+
'accessTokenValiditySeconds'?: number | null;
|
|
12948
|
+
/**
|
|
12949
|
+
* 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.
|
|
12950
|
+
* @type {string}
|
|
12951
|
+
* @memberof CreatePersonalAccessTokenRequestV2024
|
|
12952
|
+
*/
|
|
12953
|
+
'expirationDate'?: string | null;
|
|
12899
12954
|
}
|
|
12900
12955
|
/**
|
|
12901
12956
|
*
|
|
@@ -12945,6 +13000,12 @@ export interface CreatePersonalAccessTokenResponseV2024 {
|
|
|
12945
13000
|
* @memberof CreatePersonalAccessTokenResponseV2024
|
|
12946
13001
|
*/
|
|
12947
13002
|
'accessTokenValiditySeconds': number;
|
|
13003
|
+
/**
|
|
13004
|
+
* 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.
|
|
13005
|
+
* @type {string}
|
|
13006
|
+
* @memberof CreatePersonalAccessTokenResponseV2024
|
|
13007
|
+
*/
|
|
13008
|
+
'expirationDate': string;
|
|
12948
13009
|
}
|
|
12949
13010
|
/**
|
|
12950
13011
|
*
|
|
@@ -14638,7 +14699,7 @@ export const EntitlementApprovalSchemeV2024ApproverTypeV2024 = {
|
|
|
14638
14699
|
export type EntitlementApprovalSchemeV2024ApproverTypeV2024 = typeof EntitlementApprovalSchemeV2024ApproverTypeV2024[keyof typeof EntitlementApprovalSchemeV2024ApproverTypeV2024];
|
|
14639
14700
|
|
|
14640
14701
|
/**
|
|
14641
|
-
*
|
|
14702
|
+
* Object for specifying the bulk update request
|
|
14642
14703
|
* @export
|
|
14643
14704
|
* @interface EntitlementBulkUpdateRequestV2024
|
|
14644
14705
|
*/
|
|
@@ -18038,96 +18099,107 @@ export type GetDiscoveredApplications200ResponseInnerV2024 = FullDiscoveredAppli
|
|
|
18038
18099
|
*/
|
|
18039
18100
|
export interface GetHistoricalIdentityEvents200ResponseInnerV2024 {
|
|
18040
18101
|
/**
|
|
18041
|
-
*
|
|
18042
|
-
* @type {
|
|
18102
|
+
* the id of the certification item
|
|
18103
|
+
* @type {string}
|
|
18043
18104
|
* @memberof GetHistoricalIdentityEvents200ResponseInnerV2024
|
|
18044
18105
|
*/
|
|
18045
|
-
'
|
|
18106
|
+
'certificationId': string;
|
|
18046
18107
|
/**
|
|
18047
|
-
* the
|
|
18108
|
+
* the certification item name
|
|
18048
18109
|
* @type {string}
|
|
18049
18110
|
* @memberof GetHistoricalIdentityEvents200ResponseInnerV2024
|
|
18050
18111
|
*/
|
|
18051
|
-
'
|
|
18112
|
+
'certificationName': string;
|
|
18052
18113
|
/**
|
|
18053
|
-
* the
|
|
18114
|
+
* the date ceritification was signed
|
|
18054
18115
|
* @type {string}
|
|
18055
18116
|
* @memberof GetHistoricalIdentityEvents200ResponseInnerV2024
|
|
18056
18117
|
*/
|
|
18057
|
-
'
|
|
18118
|
+
'signedDate'?: string;
|
|
18058
18119
|
/**
|
|
18059
|
-
*
|
|
18060
|
-
* @type {
|
|
18120
|
+
* this field is deprecated and may go away
|
|
18121
|
+
* @type {Array<CertifierResponseV2024>}
|
|
18061
18122
|
* @memberof GetHistoricalIdentityEvents200ResponseInnerV2024
|
|
18062
18123
|
*/
|
|
18063
|
-
'
|
|
18124
|
+
'certifiers'?: Array<CertifierResponseV2024>;
|
|
18064
18125
|
/**
|
|
18065
|
-
*
|
|
18066
|
-
* @type {
|
|
18126
|
+
* The list of identities who review this certification
|
|
18127
|
+
* @type {Array<CertifierResponseV2024>}
|
|
18067
18128
|
* @memberof GetHistoricalIdentityEvents200ResponseInnerV2024
|
|
18068
18129
|
*/
|
|
18069
|
-
'
|
|
18130
|
+
'reviewers'?: Array<CertifierResponseV2024>;
|
|
18070
18131
|
/**
|
|
18071
18132
|
*
|
|
18072
|
-
* @type {
|
|
18133
|
+
* @type {CertifierResponseV2024}
|
|
18073
18134
|
* @memberof GetHistoricalIdentityEvents200ResponseInnerV2024
|
|
18074
18135
|
*/
|
|
18075
|
-
'
|
|
18136
|
+
'signer'?: CertifierResponseV2024;
|
|
18076
18137
|
/**
|
|
18077
|
-
*
|
|
18078
|
-
* @type {
|
|
18138
|
+
* the event type
|
|
18139
|
+
* @type {string}
|
|
18079
18140
|
* @memberof GetHistoricalIdentityEvents200ResponseInnerV2024
|
|
18080
18141
|
*/
|
|
18081
|
-
'
|
|
18142
|
+
'eventType'?: string;
|
|
18082
18143
|
/**
|
|
18083
|
-
* the
|
|
18144
|
+
* the date of event
|
|
18084
18145
|
* @type {string}
|
|
18085
18146
|
* @memberof GetHistoricalIdentityEvents200ResponseInnerV2024
|
|
18086
18147
|
*/
|
|
18087
|
-
'
|
|
18148
|
+
'dateTime'?: string;
|
|
18088
18149
|
/**
|
|
18089
|
-
* the
|
|
18150
|
+
* the identity id
|
|
18090
18151
|
* @type {string}
|
|
18091
18152
|
* @memberof GetHistoricalIdentityEvents200ResponseInnerV2024
|
|
18092
18153
|
*/
|
|
18093
|
-
'
|
|
18154
|
+
'identityId'?: string;
|
|
18094
18155
|
/**
|
|
18095
|
-
*
|
|
18096
|
-
* @type {
|
|
18156
|
+
*
|
|
18157
|
+
* @type {AccessItemAssociatedAccessItemV2024}
|
|
18097
18158
|
* @memberof GetHistoricalIdentityEvents200ResponseInnerV2024
|
|
18098
18159
|
*/
|
|
18099
|
-
'
|
|
18160
|
+
'accessItem': AccessItemAssociatedAccessItemV2024;
|
|
18100
18161
|
/**
|
|
18101
|
-
*
|
|
18102
|
-
* @type {
|
|
18162
|
+
*
|
|
18163
|
+
* @type {CorrelatedGovernanceEventV2024}
|
|
18103
18164
|
* @memberof GetHistoricalIdentityEvents200ResponseInnerV2024
|
|
18104
18165
|
*/
|
|
18105
|
-
'
|
|
18166
|
+
'governanceEvent': CorrelatedGovernanceEventV2024 | null;
|
|
18106
18167
|
/**
|
|
18107
|
-
*
|
|
18108
|
-
* @type {
|
|
18168
|
+
* the access item type
|
|
18169
|
+
* @type {string}
|
|
18109
18170
|
* @memberof GetHistoricalIdentityEvents200ResponseInnerV2024
|
|
18110
18171
|
*/
|
|
18111
|
-
'
|
|
18172
|
+
'accessItemType'?: GetHistoricalIdentityEvents200ResponseInnerV2024AccessItemTypeV2024;
|
|
18112
18173
|
/**
|
|
18113
18174
|
*
|
|
18114
|
-
* @type {
|
|
18175
|
+
* @type {Array<AttributeChangeV2024>}
|
|
18115
18176
|
* @memberof GetHistoricalIdentityEvents200ResponseInnerV2024
|
|
18116
18177
|
*/
|
|
18117
|
-
'
|
|
18178
|
+
'attributeChanges': Array<AttributeChangeV2024>;
|
|
18118
18179
|
/**
|
|
18119
18180
|
*
|
|
18120
|
-
* @type {
|
|
18181
|
+
* @type {AccessRequestedAccountV2024}
|
|
18121
18182
|
* @memberof GetHistoricalIdentityEvents200ResponseInnerV2024
|
|
18122
18183
|
*/
|
|
18123
|
-
'account'
|
|
18184
|
+
'account': AccessRequestedAccountV2024;
|
|
18124
18185
|
/**
|
|
18125
18186
|
*
|
|
18126
|
-
* @type {
|
|
18187
|
+
* @type {AccessRequestedStatusChangeV2024}
|
|
18127
18188
|
* @memberof GetHistoricalIdentityEvents200ResponseInnerV2024
|
|
18128
18189
|
*/
|
|
18129
|
-
'statusChange'
|
|
18190
|
+
'statusChange': AccessRequestedStatusChangeV2024;
|
|
18130
18191
|
}
|
|
18192
|
+
|
|
18193
|
+
export const GetHistoricalIdentityEvents200ResponseInnerV2024AccessItemTypeV2024 = {
|
|
18194
|
+
Account: 'account',
|
|
18195
|
+
App: 'app',
|
|
18196
|
+
Entitlement: 'entitlement',
|
|
18197
|
+
Role: 'role',
|
|
18198
|
+
AccessProfile: 'accessProfile'
|
|
18199
|
+
} as const;
|
|
18200
|
+
|
|
18201
|
+
export type GetHistoricalIdentityEvents200ResponseInnerV2024AccessItemTypeV2024 = typeof GetHistoricalIdentityEvents200ResponseInnerV2024AccessItemTypeV2024[keyof typeof GetHistoricalIdentityEvents200ResponseInnerV2024AccessItemTypeV2024];
|
|
18202
|
+
|
|
18131
18203
|
/**
|
|
18132
18204
|
*
|
|
18133
18205
|
* @export
|
|
@@ -18311,6 +18383,18 @@ export interface GetPersonalAccessTokenResponseV2024 {
|
|
|
18311
18383
|
* @memberof GetPersonalAccessTokenResponseV2024
|
|
18312
18384
|
*/
|
|
18313
18385
|
'managed'?: boolean;
|
|
18386
|
+
/**
|
|
18387
|
+
* 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.
|
|
18388
|
+
* @type {number}
|
|
18389
|
+
* @memberof GetPersonalAccessTokenResponseV2024
|
|
18390
|
+
*/
|
|
18391
|
+
'accessTokenValiditySeconds'?: number;
|
|
18392
|
+
/**
|
|
18393
|
+
* 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.
|
|
18394
|
+
* @type {string}
|
|
18395
|
+
* @memberof GetPersonalAccessTokenResponseV2024
|
|
18396
|
+
*/
|
|
18397
|
+
'expirationDate'?: string;
|
|
18314
18398
|
}
|
|
18315
18399
|
/**
|
|
18316
18400
|
*
|
|
@@ -19156,13 +19240,13 @@ export interface IdentityCertifiedV2024 {
|
|
|
19156
19240
|
* @type {string}
|
|
19157
19241
|
* @memberof IdentityCertifiedV2024
|
|
19158
19242
|
*/
|
|
19159
|
-
'certificationId'
|
|
19243
|
+
'certificationId': string;
|
|
19160
19244
|
/**
|
|
19161
19245
|
* the certification item name
|
|
19162
19246
|
* @type {string}
|
|
19163
19247
|
* @memberof IdentityCertifiedV2024
|
|
19164
19248
|
*/
|
|
19165
|
-
'certificationName'
|
|
19249
|
+
'certificationName': string;
|
|
19166
19250
|
/**
|
|
19167
19251
|
* the date ceritification was signed
|
|
19168
19252
|
* @type {string}
|
|
@@ -19198,7 +19282,7 @@ export interface IdentityCertifiedV2024 {
|
|
|
19198
19282
|
* @type {string}
|
|
19199
19283
|
* @memberof IdentityCertifiedV2024
|
|
19200
19284
|
*/
|
|
19201
|
-
'
|
|
19285
|
+
'dateTime'?: string;
|
|
19202
19286
|
}
|
|
19203
19287
|
/**
|
|
19204
19288
|
*
|
|
@@ -21910,10 +21994,125 @@ export interface ListFormInstancesByTenantResponseV2024 {
|
|
|
21910
21994
|
'results'?: Array<FormInstanceResponseV2024>;
|
|
21911
21995
|
}
|
|
21912
21996
|
/**
|
|
21913
|
-
*
|
|
21997
|
+
*
|
|
21998
|
+
* @export
|
|
21999
|
+
* @interface ListIdentityAccessItems200ResponseInnerV2024
|
|
22000
|
+
*/
|
|
22001
|
+
export interface ListIdentityAccessItems200ResponseInnerV2024 {
|
|
22002
|
+
/**
|
|
22003
|
+
* the access item id
|
|
22004
|
+
* @type {string}
|
|
22005
|
+
* @memberof ListIdentityAccessItems200ResponseInnerV2024
|
|
22006
|
+
*/
|
|
22007
|
+
'id'?: string;
|
|
22008
|
+
/**
|
|
22009
|
+
* the access item type. entitlement in this case
|
|
22010
|
+
* @type {string}
|
|
22011
|
+
* @memberof ListIdentityAccessItems200ResponseInnerV2024
|
|
22012
|
+
*/
|
|
22013
|
+
'accessType'?: string;
|
|
22014
|
+
/**
|
|
22015
|
+
* the access item display name
|
|
22016
|
+
* @type {string}
|
|
22017
|
+
* @memberof ListIdentityAccessItems200ResponseInnerV2024
|
|
22018
|
+
*/
|
|
22019
|
+
'displayName'?: string;
|
|
22020
|
+
/**
|
|
22021
|
+
* the associated source name if it exists
|
|
22022
|
+
* @type {string}
|
|
22023
|
+
* @memberof ListIdentityAccessItems200ResponseInnerV2024
|
|
22024
|
+
*/
|
|
22025
|
+
'sourceName'?: string | null;
|
|
22026
|
+
/**
|
|
22027
|
+
* the entitlement attribute
|
|
22028
|
+
* @type {string}
|
|
22029
|
+
* @memberof ListIdentityAccessItems200ResponseInnerV2024
|
|
22030
|
+
*/
|
|
22031
|
+
'attribute': string;
|
|
22032
|
+
/**
|
|
22033
|
+
* the associated value
|
|
22034
|
+
* @type {string}
|
|
22035
|
+
* @memberof ListIdentityAccessItems200ResponseInnerV2024
|
|
22036
|
+
*/
|
|
22037
|
+
'value': string;
|
|
22038
|
+
/**
|
|
22039
|
+
* the type of entitlement
|
|
22040
|
+
* @type {string}
|
|
22041
|
+
* @memberof ListIdentityAccessItems200ResponseInnerV2024
|
|
22042
|
+
*/
|
|
22043
|
+
'type': string;
|
|
22044
|
+
/**
|
|
22045
|
+
* the description for the role
|
|
22046
|
+
* @type {string}
|
|
22047
|
+
* @memberof ListIdentityAccessItems200ResponseInnerV2024
|
|
22048
|
+
*/
|
|
22049
|
+
'description'?: string;
|
|
22050
|
+
/**
|
|
22051
|
+
* the id of the source
|
|
22052
|
+
* @type {string}
|
|
22053
|
+
* @memberof ListIdentityAccessItems200ResponseInnerV2024
|
|
22054
|
+
*/
|
|
22055
|
+
'sourceId'?: string;
|
|
22056
|
+
/**
|
|
22057
|
+
* indicates whether the access profile is standalone
|
|
22058
|
+
* @type {boolean}
|
|
22059
|
+
* @memberof ListIdentityAccessItems200ResponseInnerV2024
|
|
22060
|
+
*/
|
|
22061
|
+
'standalone': boolean | null;
|
|
22062
|
+
/**
|
|
22063
|
+
* indicates whether the entitlement is privileged
|
|
22064
|
+
* @type {boolean}
|
|
22065
|
+
* @memberof ListIdentityAccessItems200ResponseInnerV2024
|
|
22066
|
+
*/
|
|
22067
|
+
'privileged': boolean | null;
|
|
22068
|
+
/**
|
|
22069
|
+
* indicates whether the entitlement is cloud governed
|
|
22070
|
+
* @type {boolean}
|
|
22071
|
+
* @memberof ListIdentityAccessItems200ResponseInnerV2024
|
|
22072
|
+
*/
|
|
22073
|
+
'cloudGoverned': boolean | null;
|
|
22074
|
+
/**
|
|
22075
|
+
* the number of entitlements the account will create
|
|
22076
|
+
* @type {number}
|
|
22077
|
+
* @memberof ListIdentityAccessItems200ResponseInnerV2024
|
|
22078
|
+
*/
|
|
22079
|
+
'entitlementCount': number;
|
|
22080
|
+
/**
|
|
22081
|
+
* the list of app ids associated with the access profile
|
|
22082
|
+
* @type {Array<AccessItemAccessProfileResponseAppRefsInnerV2024>}
|
|
22083
|
+
* @memberof ListIdentityAccessItems200ResponseInnerV2024
|
|
22084
|
+
*/
|
|
22085
|
+
'appRefs': Array<AccessItemAccessProfileResponseAppRefsInnerV2024>;
|
|
22086
|
+
/**
|
|
22087
|
+
* the date the role is no longer assigned to the specified identity
|
|
22088
|
+
* @type {string}
|
|
22089
|
+
* @memberof ListIdentityAccessItems200ResponseInnerV2024
|
|
22090
|
+
*/
|
|
22091
|
+
'removeDate'?: string;
|
|
22092
|
+
/**
|
|
22093
|
+
* indicates whether the role is revocable
|
|
22094
|
+
* @type {boolean}
|
|
22095
|
+
* @memberof ListIdentityAccessItems200ResponseInnerV2024
|
|
22096
|
+
*/
|
|
22097
|
+
'revocable': boolean;
|
|
22098
|
+
/**
|
|
22099
|
+
* the native identifier used to uniquely identify an acccount
|
|
22100
|
+
* @type {string}
|
|
22101
|
+
* @memberof ListIdentityAccessItems200ResponseInnerV2024
|
|
22102
|
+
*/
|
|
22103
|
+
'nativeIdentity': string;
|
|
22104
|
+
/**
|
|
22105
|
+
* the app role id
|
|
22106
|
+
* @type {string}
|
|
22107
|
+
* @memberof ListIdentityAccessItems200ResponseInnerV2024
|
|
22108
|
+
*/
|
|
22109
|
+
'appRoleId': string | null;
|
|
22110
|
+
}
|
|
22111
|
+
/**
|
|
22112
|
+
* @type ListIdentitySnapshotAccessItems200ResponseInnerV2024
|
|
21914
22113
|
* @export
|
|
21915
22114
|
*/
|
|
21916
|
-
export type
|
|
22115
|
+
export type ListIdentitySnapshotAccessItems200ResponseInnerV2024 = AccessItemAccessProfileResponseV2024 | AccessItemAccountResponseV2024 | AccessItemAppResponseV2024 | AccessItemEntitlementResponseV2024 | AccessItemRoleResponseV2024;
|
|
21917
22116
|
|
|
21918
22117
|
/**
|
|
21919
22118
|
*
|
|
@@ -22706,7 +22905,7 @@ export type MachineAccountV2024ClassificationMethodV2024 = typeof MachineAccount
|
|
|
22706
22905
|
*/
|
|
22707
22906
|
export interface MachineClassificationConfigV2024 {
|
|
22708
22907
|
/**
|
|
22709
|
-
* Indicates
|
|
22908
|
+
* Indicates whether Classification is enabled for a Source
|
|
22710
22909
|
* @type {boolean}
|
|
22711
22910
|
* @memberof MachineClassificationConfigV2024
|
|
22712
22911
|
*/
|
|
@@ -22718,19 +22917,19 @@ export interface MachineClassificationConfigV2024 {
|
|
|
22718
22917
|
*/
|
|
22719
22918
|
'classificationMethod'?: MachineClassificationConfigV2024ClassificationMethodV2024;
|
|
22720
22919
|
/**
|
|
22721
|
-
*
|
|
22722
|
-
* @type {
|
|
22920
|
+
*
|
|
22921
|
+
* @type {MachineClassificationCriteriaLevel1V2024}
|
|
22723
22922
|
* @memberof MachineClassificationConfigV2024
|
|
22724
22923
|
*/
|
|
22725
|
-
'criteria'?:
|
|
22924
|
+
'criteria'?: MachineClassificationCriteriaLevel1V2024;
|
|
22726
22925
|
/**
|
|
22727
|
-
*
|
|
22926
|
+
* Date the config was created
|
|
22728
22927
|
* @type {string}
|
|
22729
22928
|
* @memberof MachineClassificationConfigV2024
|
|
22730
22929
|
*/
|
|
22731
22930
|
'created'?: string;
|
|
22732
22931
|
/**
|
|
22733
|
-
*
|
|
22932
|
+
* Date the config was last updated
|
|
22734
22933
|
* @type {string}
|
|
22735
22934
|
* @memberof MachineClassificationConfigV2024
|
|
22736
22935
|
*/
|
|
@@ -22738,11 +22937,166 @@ export interface MachineClassificationConfigV2024 {
|
|
|
22738
22937
|
}
|
|
22739
22938
|
|
|
22740
22939
|
export const MachineClassificationConfigV2024ClassificationMethodV2024 = {
|
|
22741
|
-
Source: 'SOURCE'
|
|
22940
|
+
Source: 'SOURCE',
|
|
22941
|
+
Criteria: 'CRITERIA'
|
|
22742
22942
|
} as const;
|
|
22743
22943
|
|
|
22744
22944
|
export type MachineClassificationConfigV2024ClassificationMethodV2024 = typeof MachineClassificationConfigV2024ClassificationMethodV2024[keyof typeof MachineClassificationConfigV2024ClassificationMethodV2024];
|
|
22745
22945
|
|
|
22946
|
+
/**
|
|
22947
|
+
*
|
|
22948
|
+
* @export
|
|
22949
|
+
* @interface MachineClassificationCriteriaLevel1V2024
|
|
22950
|
+
*/
|
|
22951
|
+
export interface MachineClassificationCriteriaLevel1V2024 {
|
|
22952
|
+
/**
|
|
22953
|
+
*
|
|
22954
|
+
* @type {MachineClassificationCriteriaOperationV2024}
|
|
22955
|
+
* @memberof MachineClassificationCriteriaLevel1V2024
|
|
22956
|
+
*/
|
|
22957
|
+
'operation'?: MachineClassificationCriteriaOperationV2024;
|
|
22958
|
+
/**
|
|
22959
|
+
* Indicates whether case matters when evaluating the criteria
|
|
22960
|
+
* @type {boolean}
|
|
22961
|
+
* @memberof MachineClassificationCriteriaLevel1V2024
|
|
22962
|
+
*/
|
|
22963
|
+
'caseSensitive'?: boolean;
|
|
22964
|
+
/**
|
|
22965
|
+
* The data type of the attribute being evaluated
|
|
22966
|
+
* @type {string}
|
|
22967
|
+
* @memberof MachineClassificationCriteriaLevel1V2024
|
|
22968
|
+
*/
|
|
22969
|
+
'dataType'?: string | null;
|
|
22970
|
+
/**
|
|
22971
|
+
* The attribute to evaluate in the classification criteria
|
|
22972
|
+
* @type {string}
|
|
22973
|
+
* @memberof MachineClassificationCriteriaLevel1V2024
|
|
22974
|
+
*/
|
|
22975
|
+
'attribute'?: string | null;
|
|
22976
|
+
/**
|
|
22977
|
+
* The value to compare against the attribute in the classification criteria
|
|
22978
|
+
* @type {string}
|
|
22979
|
+
* @memberof MachineClassificationCriteriaLevel1V2024
|
|
22980
|
+
*/
|
|
22981
|
+
'value'?: string | null;
|
|
22982
|
+
/**
|
|
22983
|
+
* An array of child classification criteria objects
|
|
22984
|
+
* @type {Array<MachineClassificationCriteriaLevel2V2024>}
|
|
22985
|
+
* @memberof MachineClassificationCriteriaLevel1V2024
|
|
22986
|
+
*/
|
|
22987
|
+
'children'?: Array<MachineClassificationCriteriaLevel2V2024> | null;
|
|
22988
|
+
}
|
|
22989
|
+
|
|
22990
|
+
|
|
22991
|
+
/**
|
|
22992
|
+
*
|
|
22993
|
+
* @export
|
|
22994
|
+
* @interface MachineClassificationCriteriaLevel2V2024
|
|
22995
|
+
*/
|
|
22996
|
+
export interface MachineClassificationCriteriaLevel2V2024 {
|
|
22997
|
+
/**
|
|
22998
|
+
*
|
|
22999
|
+
* @type {MachineClassificationCriteriaOperationV2024}
|
|
23000
|
+
* @memberof MachineClassificationCriteriaLevel2V2024
|
|
23001
|
+
*/
|
|
23002
|
+
'operation'?: MachineClassificationCriteriaOperationV2024;
|
|
23003
|
+
/**
|
|
23004
|
+
* Indicates whether case matters when evaluating the criteria
|
|
23005
|
+
* @type {boolean}
|
|
23006
|
+
* @memberof MachineClassificationCriteriaLevel2V2024
|
|
23007
|
+
*/
|
|
23008
|
+
'caseSensitive'?: boolean;
|
|
23009
|
+
/**
|
|
23010
|
+
* The data type of the attribute being evaluated
|
|
23011
|
+
* @type {string}
|
|
23012
|
+
* @memberof MachineClassificationCriteriaLevel2V2024
|
|
23013
|
+
*/
|
|
23014
|
+
'dataType'?: string | null;
|
|
23015
|
+
/**
|
|
23016
|
+
* The attribute to evaluate in the classification criteria
|
|
23017
|
+
* @type {string}
|
|
23018
|
+
* @memberof MachineClassificationCriteriaLevel2V2024
|
|
23019
|
+
*/
|
|
23020
|
+
'attribute'?: string | null;
|
|
23021
|
+
/**
|
|
23022
|
+
* The value to compare against the attribute in the classification criteria
|
|
23023
|
+
* @type {string}
|
|
23024
|
+
* @memberof MachineClassificationCriteriaLevel2V2024
|
|
23025
|
+
*/
|
|
23026
|
+
'value'?: string | null;
|
|
23027
|
+
/**
|
|
23028
|
+
* An array of child classification criteria objects
|
|
23029
|
+
* @type {Array<MachineClassificationCriteriaLevel3V2024>}
|
|
23030
|
+
* @memberof MachineClassificationCriteriaLevel2V2024
|
|
23031
|
+
*/
|
|
23032
|
+
'children'?: Array<MachineClassificationCriteriaLevel3V2024> | null;
|
|
23033
|
+
}
|
|
23034
|
+
|
|
23035
|
+
|
|
23036
|
+
/**
|
|
23037
|
+
*
|
|
23038
|
+
* @export
|
|
23039
|
+
* @interface MachineClassificationCriteriaLevel3V2024
|
|
23040
|
+
*/
|
|
23041
|
+
export interface MachineClassificationCriteriaLevel3V2024 {
|
|
23042
|
+
/**
|
|
23043
|
+
*
|
|
23044
|
+
* @type {MachineClassificationCriteriaOperationV2024}
|
|
23045
|
+
* @memberof MachineClassificationCriteriaLevel3V2024
|
|
23046
|
+
*/
|
|
23047
|
+
'operation'?: MachineClassificationCriteriaOperationV2024;
|
|
23048
|
+
/**
|
|
23049
|
+
* Indicates whether or not case matters when evaluating the criteria
|
|
23050
|
+
* @type {boolean}
|
|
23051
|
+
* @memberof MachineClassificationCriteriaLevel3V2024
|
|
23052
|
+
*/
|
|
23053
|
+
'caseSensitive'?: boolean;
|
|
23054
|
+
/**
|
|
23055
|
+
* The data type of the attribute being evaluated
|
|
23056
|
+
* @type {string}
|
|
23057
|
+
* @memberof MachineClassificationCriteriaLevel3V2024
|
|
23058
|
+
*/
|
|
23059
|
+
'dataType'?: string | null;
|
|
23060
|
+
/**
|
|
23061
|
+
* The attribute to evaluate in the classification criteria
|
|
23062
|
+
* @type {string}
|
|
23063
|
+
* @memberof MachineClassificationCriteriaLevel3V2024
|
|
23064
|
+
*/
|
|
23065
|
+
'attribute'?: string | null;
|
|
23066
|
+
/**
|
|
23067
|
+
* The value to compare against the attribute in the classification criteria
|
|
23068
|
+
* @type {string}
|
|
23069
|
+
* @memberof MachineClassificationCriteriaLevel3V2024
|
|
23070
|
+
*/
|
|
23071
|
+
'value'?: string | null;
|
|
23072
|
+
/**
|
|
23073
|
+
* An array of child classification criteria objects
|
|
23074
|
+
* @type {Array<string>}
|
|
23075
|
+
* @memberof MachineClassificationCriteriaLevel3V2024
|
|
23076
|
+
*/
|
|
23077
|
+
'children'?: Array<string> | null;
|
|
23078
|
+
}
|
|
23079
|
+
|
|
23080
|
+
|
|
23081
|
+
/**
|
|
23082
|
+
* An operation to perform on the classification criteria
|
|
23083
|
+
* @export
|
|
23084
|
+
* @enum {string}
|
|
23085
|
+
*/
|
|
23086
|
+
|
|
23087
|
+
export const MachineClassificationCriteriaOperationV2024 = {
|
|
23088
|
+
Equals: 'EQUALS',
|
|
23089
|
+
NotEquals: 'NOT_EQUALS',
|
|
23090
|
+
StartsWith: 'STARTS_WITH',
|
|
23091
|
+
EndsWith: 'ENDS_WITH',
|
|
23092
|
+
Contains: 'CONTAINS',
|
|
23093
|
+
And: 'AND',
|
|
23094
|
+
Or: 'OR'
|
|
23095
|
+
} as const;
|
|
23096
|
+
|
|
23097
|
+
export type MachineClassificationCriteriaOperationV2024 = typeof MachineClassificationCriteriaOperationV2024[keyof typeof MachineClassificationCriteriaOperationV2024];
|
|
23098
|
+
|
|
23099
|
+
|
|
22746
23100
|
/**
|
|
22747
23101
|
*
|
|
22748
23102
|
* @export
|
|
@@ -31719,7 +32073,7 @@ export type RoleCriteriaKeyTypeV2024 = typeof RoleCriteriaKeyTypeV2024[keyof typ
|
|
|
31719
32073
|
|
|
31720
32074
|
|
|
31721
32075
|
/**
|
|
31722
|
-
* Refers to a specific Identity attribute, Account
|
|
32076
|
+
* Refers to a specific Identity attribute, Account attribute, or Entitlement used in Role membership criteria
|
|
31723
32077
|
* @export
|
|
31724
32078
|
* @interface RoleCriteriaKeyV2024
|
|
31725
32079
|
*/
|
|
@@ -37484,6 +37838,38 @@ export interface SodPolicyConflictingAccessCriteriaV2024 {
|
|
|
37484
37838
|
*/
|
|
37485
37839
|
'rightCriteria'?: AccessCriteriaV2024;
|
|
37486
37840
|
}
|
|
37841
|
+
/**
|
|
37842
|
+
* SOD policy.
|
|
37843
|
+
* @export
|
|
37844
|
+
* @interface SodPolicyDto1V2024
|
|
37845
|
+
*/
|
|
37846
|
+
export interface SodPolicyDto1V2024 {
|
|
37847
|
+
/**
|
|
37848
|
+
* SOD policy DTO type.
|
|
37849
|
+
* @type {string}
|
|
37850
|
+
* @memberof SodPolicyDto1V2024
|
|
37851
|
+
*/
|
|
37852
|
+
'type'?: SodPolicyDto1V2024TypeV2024;
|
|
37853
|
+
/**
|
|
37854
|
+
* SOD policy ID.
|
|
37855
|
+
* @type {string}
|
|
37856
|
+
* @memberof SodPolicyDto1V2024
|
|
37857
|
+
*/
|
|
37858
|
+
'id'?: string;
|
|
37859
|
+
/**
|
|
37860
|
+
* SOD policy display name.
|
|
37861
|
+
* @type {string}
|
|
37862
|
+
* @memberof SodPolicyDto1V2024
|
|
37863
|
+
*/
|
|
37864
|
+
'name'?: string;
|
|
37865
|
+
}
|
|
37866
|
+
|
|
37867
|
+
export const SodPolicyDto1V2024TypeV2024 = {
|
|
37868
|
+
SodPolicy: 'SOD_POLICY'
|
|
37869
|
+
} as const;
|
|
37870
|
+
|
|
37871
|
+
export type SodPolicyDto1V2024TypeV2024 = typeof SodPolicyDto1V2024TypeV2024[keyof typeof SodPolicyDto1V2024TypeV2024];
|
|
37872
|
+
|
|
37487
37873
|
/**
|
|
37488
37874
|
* SOD policy.
|
|
37489
37875
|
* @export
|
|
@@ -37829,10 +38215,10 @@ export interface SodViolationCheckResultV2024 {
|
|
|
37829
38215
|
'violationContexts'?: Array<SodViolationContextV2024> | null;
|
|
37830
38216
|
/**
|
|
37831
38217
|
* A list of the SOD policies that were violated.
|
|
37832
|
-
* @type {Array<
|
|
38218
|
+
* @type {Array<SodPolicyDto1V2024>}
|
|
37833
38219
|
* @memberof SodViolationCheckResultV2024
|
|
37834
38220
|
*/
|
|
37835
|
-
'violatedPolicies'?: Array<
|
|
38221
|
+
'violatedPolicies'?: Array<SodPolicyDto1V2024> | null;
|
|
37836
38222
|
}
|
|
37837
38223
|
/**
|
|
37838
38224
|
* An object referencing an SOD violation check
|
|
@@ -37926,10 +38312,10 @@ export interface SodViolationContextConflictingAccessCriteriaV2024 {
|
|
|
37926
38312
|
export interface SodViolationContextV2024 {
|
|
37927
38313
|
/**
|
|
37928
38314
|
*
|
|
37929
|
-
* @type {
|
|
38315
|
+
* @type {SodPolicyDto1V2024}
|
|
37930
38316
|
* @memberof SodViolationContextV2024
|
|
37931
38317
|
*/
|
|
37932
|
-
'policy'?:
|
|
38318
|
+
'policy'?: SodPolicyDto1V2024;
|
|
37933
38319
|
/**
|
|
37934
38320
|
*
|
|
37935
38321
|
* @type {SodViolationContextConflictingAccessCriteriaV2024}
|
|
@@ -43435,7 +43821,7 @@ export const WorkItemTypeManualWorkItemsV2024 = {
|
|
|
43435
43821
|
Approval: 'Approval',
|
|
43436
43822
|
ViolationReview: 'ViolationReview',
|
|
43437
43823
|
Form: 'Form',
|
|
43438
|
-
|
|
43824
|
+
PolicyViolation: 'PolicyViolation',
|
|
43439
43825
|
Challenge: 'Challenge',
|
|
43440
43826
|
ImpactAnalysis: 'ImpactAnalysis',
|
|
43441
43827
|
Signoff: 'Signoff',
|
|
@@ -44704,17 +45090,12 @@ export const AccessModelMetadataV2024ApiAxiosParamCreator = function (configurat
|
|
|
44704
45090
|
* Get single Access Model Metadata Attribute
|
|
44705
45091
|
* @summary Get access model metadata attribute
|
|
44706
45092
|
* @param {string} key Technical name of the Attribute.
|
|
44707
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
44708
45093
|
* @param {*} [axiosOptions] Override http request option.
|
|
44709
45094
|
* @throws {RequiredError}
|
|
44710
45095
|
*/
|
|
44711
|
-
getAccessModelMetadataAttribute: async (key: string,
|
|
45096
|
+
getAccessModelMetadataAttribute: async (key: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
44712
45097
|
// verify required parameter 'key' is not null or undefined
|
|
44713
45098
|
assertParamExists('getAccessModelMetadataAttribute', 'key', key)
|
|
44714
|
-
if (xSailPointExperimental === undefined) {
|
|
44715
|
-
xSailPointExperimental = 'true';
|
|
44716
|
-
}
|
|
44717
|
-
|
|
44718
45099
|
const localVarPath = `/access-model-metadata/attributes/{key}`
|
|
44719
45100
|
.replace(`{${"key"}}`, encodeURIComponent(String(key)));
|
|
44720
45101
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
@@ -44738,9 +45119,6 @@ export const AccessModelMetadataV2024ApiAxiosParamCreator = function (configurat
|
|
|
44738
45119
|
|
|
44739
45120
|
|
|
44740
45121
|
|
|
44741
|
-
if (xSailPointExperimental != null) {
|
|
44742
|
-
localVarHeaderParameter['X-SailPoint-Experimental'] = String(xSailPointExperimental);
|
|
44743
|
-
}
|
|
44744
45122
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
44745
45123
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
44746
45124
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
|
|
@@ -44755,19 +45133,14 @@ export const AccessModelMetadataV2024ApiAxiosParamCreator = function (configurat
|
|
|
44755
45133
|
* @summary Get access model metadata value
|
|
44756
45134
|
* @param {string} key Technical name of the Attribute.
|
|
44757
45135
|
* @param {string} value Technical name of the Attribute value.
|
|
44758
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
44759
45136
|
* @param {*} [axiosOptions] Override http request option.
|
|
44760
45137
|
* @throws {RequiredError}
|
|
44761
45138
|
*/
|
|
44762
|
-
getAccessModelMetadataAttributeValue: async (key: string, value: string,
|
|
45139
|
+
getAccessModelMetadataAttributeValue: async (key: string, value: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
44763
45140
|
// verify required parameter 'key' is not null or undefined
|
|
44764
45141
|
assertParamExists('getAccessModelMetadataAttributeValue', 'key', key)
|
|
44765
45142
|
// verify required parameter 'value' is not null or undefined
|
|
44766
45143
|
assertParamExists('getAccessModelMetadataAttributeValue', 'value', value)
|
|
44767
|
-
if (xSailPointExperimental === undefined) {
|
|
44768
|
-
xSailPointExperimental = 'true';
|
|
44769
|
-
}
|
|
44770
|
-
|
|
44771
45144
|
const localVarPath = `/access-model-metadata/attributes/{key}/values/{value}`
|
|
44772
45145
|
.replace(`{${"key"}}`, encodeURIComponent(String(key)))
|
|
44773
45146
|
.replace(`{${"value"}}`, encodeURIComponent(String(value)));
|
|
@@ -44792,9 +45165,6 @@ export const AccessModelMetadataV2024ApiAxiosParamCreator = function (configurat
|
|
|
44792
45165
|
|
|
44793
45166
|
|
|
44794
45167
|
|
|
44795
|
-
if (xSailPointExperimental != null) {
|
|
44796
|
-
localVarHeaderParameter['X-SailPoint-Experimental'] = String(xSailPointExperimental);
|
|
44797
|
-
}
|
|
44798
45168
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
44799
45169
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
44800
45170
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
|
|
@@ -44807,16 +45177,15 @@ export const AccessModelMetadataV2024ApiAxiosParamCreator = function (configurat
|
|
|
44807
45177
|
/**
|
|
44808
45178
|
* Get a list of Access Model Metadata Attributes
|
|
44809
45179
|
* @summary List access model metadata attributes
|
|
44810
|
-
* @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
|
|
44811
|
-
* @param {string} [
|
|
45180
|
+
* @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*
|
|
45181
|
+
* @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**
|
|
45182
|
+
* @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.
|
|
45183
|
+
* @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.
|
|
45184
|
+
* @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.
|
|
44812
45185
|
* @param {*} [axiosOptions] Override http request option.
|
|
44813
45186
|
* @throws {RequiredError}
|
|
44814
45187
|
*/
|
|
44815
|
-
listAccessModelMetadataAttribute: async (filters?: string,
|
|
44816
|
-
if (xSailPointExperimental === undefined) {
|
|
44817
|
-
xSailPointExperimental = 'true';
|
|
44818
|
-
}
|
|
44819
|
-
|
|
45188
|
+
listAccessModelMetadataAttribute: async (filters?: string, sorters?: string, offset?: number, limit?: number, count?: boolean, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
44820
45189
|
const localVarPath = `/access-model-metadata/attributes`;
|
|
44821
45190
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
44822
45191
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -44841,11 +45210,24 @@ export const AccessModelMetadataV2024ApiAxiosParamCreator = function (configurat
|
|
|
44841
45210
|
localVarQueryParameter['filters'] = filters;
|
|
44842
45211
|
}
|
|
44843
45212
|
|
|
45213
|
+
if (sorters !== undefined) {
|
|
45214
|
+
localVarQueryParameter['sorters'] = sorters;
|
|
45215
|
+
}
|
|
45216
|
+
|
|
45217
|
+
if (offset !== undefined) {
|
|
45218
|
+
localVarQueryParameter['offset'] = offset;
|
|
45219
|
+
}
|
|
44844
45220
|
|
|
44845
|
-
|
|
44846
|
-
|
|
44847
|
-
localVarHeaderParameter['X-SailPoint-Experimental'] = String(xSailPointExperimental);
|
|
45221
|
+
if (limit !== undefined) {
|
|
45222
|
+
localVarQueryParameter['limit'] = limit;
|
|
44848
45223
|
}
|
|
45224
|
+
|
|
45225
|
+
if (count !== undefined) {
|
|
45226
|
+
localVarQueryParameter['count'] = count;
|
|
45227
|
+
}
|
|
45228
|
+
|
|
45229
|
+
|
|
45230
|
+
|
|
44849
45231
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
44850
45232
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
44851
45233
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
|
|
@@ -44859,17 +45241,15 @@ export const AccessModelMetadataV2024ApiAxiosParamCreator = function (configurat
|
|
|
44859
45241
|
* Get a list of Access Model Metadata Attribute Values
|
|
44860
45242
|
* @summary List access model metadata values
|
|
44861
45243
|
* @param {string} key Technical name of the Attribute.
|
|
44862
|
-
* @param {
|
|
45244
|
+
* @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.
|
|
45245
|
+
* @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.
|
|
45246
|
+
* @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.
|
|
44863
45247
|
* @param {*} [axiosOptions] Override http request option.
|
|
44864
45248
|
* @throws {RequiredError}
|
|
44865
45249
|
*/
|
|
44866
|
-
listAccessModelMetadataAttributeValue: async (key: string,
|
|
45250
|
+
listAccessModelMetadataAttributeValue: async (key: string, offset?: number, limit?: number, count?: boolean, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
44867
45251
|
// verify required parameter 'key' is not null or undefined
|
|
44868
45252
|
assertParamExists('listAccessModelMetadataAttributeValue', 'key', key)
|
|
44869
|
-
if (xSailPointExperimental === undefined) {
|
|
44870
|
-
xSailPointExperimental = 'true';
|
|
44871
|
-
}
|
|
44872
|
-
|
|
44873
45253
|
const localVarPath = `/access-model-metadata/attributes/{key}/values`
|
|
44874
45254
|
.replace(`{${"key"}}`, encodeURIComponent(String(key)));
|
|
44875
45255
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
@@ -44891,11 +45271,20 @@ export const AccessModelMetadataV2024ApiAxiosParamCreator = function (configurat
|
|
|
44891
45271
|
// oauth required
|
|
44892
45272
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
44893
45273
|
|
|
45274
|
+
if (offset !== undefined) {
|
|
45275
|
+
localVarQueryParameter['offset'] = offset;
|
|
45276
|
+
}
|
|
44894
45277
|
|
|
44895
|
-
|
|
44896
|
-
|
|
44897
|
-
|
|
45278
|
+
if (limit !== undefined) {
|
|
45279
|
+
localVarQueryParameter['limit'] = limit;
|
|
45280
|
+
}
|
|
45281
|
+
|
|
45282
|
+
if (count !== undefined) {
|
|
45283
|
+
localVarQueryParameter['count'] = count;
|
|
44898
45284
|
}
|
|
45285
|
+
|
|
45286
|
+
|
|
45287
|
+
|
|
44899
45288
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
44900
45289
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
44901
45290
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
|
|
@@ -44919,12 +45308,11 @@ export const AccessModelMetadataV2024ApiFp = function(configuration?: Configurat
|
|
|
44919
45308
|
* Get single Access Model Metadata Attribute
|
|
44920
45309
|
* @summary Get access model metadata attribute
|
|
44921
45310
|
* @param {string} key Technical name of the Attribute.
|
|
44922
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
44923
45311
|
* @param {*} [axiosOptions] Override http request option.
|
|
44924
45312
|
* @throws {RequiredError}
|
|
44925
45313
|
*/
|
|
44926
|
-
async getAccessModelMetadataAttribute(key: string,
|
|
44927
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.getAccessModelMetadataAttribute(key,
|
|
45314
|
+
async getAccessModelMetadataAttribute(key: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AttributeDTOV2024>> {
|
|
45315
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getAccessModelMetadataAttribute(key, axiosOptions);
|
|
44928
45316
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
44929
45317
|
const localVarOperationServerBasePath = operationServerMap['AccessModelMetadataV2024Api.getAccessModelMetadataAttribute']?.[localVarOperationServerIndex]?.url;
|
|
44930
45318
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -44934,12 +45322,11 @@ export const AccessModelMetadataV2024ApiFp = function(configuration?: Configurat
|
|
|
44934
45322
|
* @summary Get access model metadata value
|
|
44935
45323
|
* @param {string} key Technical name of the Attribute.
|
|
44936
45324
|
* @param {string} value Technical name of the Attribute value.
|
|
44937
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
44938
45325
|
* @param {*} [axiosOptions] Override http request option.
|
|
44939
45326
|
* @throws {RequiredError}
|
|
44940
45327
|
*/
|
|
44941
|
-
async getAccessModelMetadataAttributeValue(key: string, value: string,
|
|
44942
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.getAccessModelMetadataAttributeValue(key, value,
|
|
45328
|
+
async getAccessModelMetadataAttributeValue(key: string, value: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AttributeValueDTOV2024>> {
|
|
45329
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getAccessModelMetadataAttributeValue(key, value, axiosOptions);
|
|
44943
45330
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
44944
45331
|
const localVarOperationServerBasePath = operationServerMap['AccessModelMetadataV2024Api.getAccessModelMetadataAttributeValue']?.[localVarOperationServerIndex]?.url;
|
|
44945
45332
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -44947,13 +45334,16 @@ export const AccessModelMetadataV2024ApiFp = function(configuration?: Configurat
|
|
|
44947
45334
|
/**
|
|
44948
45335
|
* Get a list of Access Model Metadata Attributes
|
|
44949
45336
|
* @summary List access model metadata attributes
|
|
44950
|
-
* @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
|
|
44951
|
-
* @param {string} [
|
|
45337
|
+
* @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*
|
|
45338
|
+
* @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**
|
|
45339
|
+
* @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.
|
|
45340
|
+
* @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.
|
|
45341
|
+
* @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.
|
|
44952
45342
|
* @param {*} [axiosOptions] Override http request option.
|
|
44953
45343
|
* @throws {RequiredError}
|
|
44954
45344
|
*/
|
|
44955
|
-
async listAccessModelMetadataAttribute(filters?: string,
|
|
44956
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.listAccessModelMetadataAttribute(filters,
|
|
45345
|
+
async listAccessModelMetadataAttribute(filters?: string, sorters?: string, offset?: number, limit?: number, count?: boolean, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<AttributeDTOV2024>>> {
|
|
45346
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listAccessModelMetadataAttribute(filters, sorters, offset, limit, count, axiosOptions);
|
|
44957
45347
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
44958
45348
|
const localVarOperationServerBasePath = operationServerMap['AccessModelMetadataV2024Api.listAccessModelMetadataAttribute']?.[localVarOperationServerIndex]?.url;
|
|
44959
45349
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -44962,12 +45352,14 @@ export const AccessModelMetadataV2024ApiFp = function(configuration?: Configurat
|
|
|
44962
45352
|
* Get a list of Access Model Metadata Attribute Values
|
|
44963
45353
|
* @summary List access model metadata values
|
|
44964
45354
|
* @param {string} key Technical name of the Attribute.
|
|
44965
|
-
* @param {
|
|
45355
|
+
* @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.
|
|
45356
|
+
* @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.
|
|
45357
|
+
* @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.
|
|
44966
45358
|
* @param {*} [axiosOptions] Override http request option.
|
|
44967
45359
|
* @throws {RequiredError}
|
|
44968
45360
|
*/
|
|
44969
|
-
async listAccessModelMetadataAttributeValue(key: string,
|
|
44970
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.listAccessModelMetadataAttributeValue(key,
|
|
45361
|
+
async listAccessModelMetadataAttributeValue(key: string, offset?: number, limit?: number, count?: boolean, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<AttributeValueDTOV2024>>> {
|
|
45362
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listAccessModelMetadataAttributeValue(key, offset, limit, count, axiosOptions);
|
|
44971
45363
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
44972
45364
|
const localVarOperationServerBasePath = operationServerMap['AccessModelMetadataV2024Api.listAccessModelMetadataAttributeValue']?.[localVarOperationServerIndex]?.url;
|
|
44973
45365
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -44990,7 +45382,7 @@ export const AccessModelMetadataV2024ApiFactory = function (configuration?: Conf
|
|
|
44990
45382
|
* @throws {RequiredError}
|
|
44991
45383
|
*/
|
|
44992
45384
|
getAccessModelMetadataAttribute(requestParameters: AccessModelMetadataV2024ApiGetAccessModelMetadataAttributeRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<AttributeDTOV2024> {
|
|
44993
|
-
return localVarFp.getAccessModelMetadataAttribute(requestParameters.key,
|
|
45385
|
+
return localVarFp.getAccessModelMetadataAttribute(requestParameters.key, axiosOptions).then((request) => request(axios, basePath));
|
|
44994
45386
|
},
|
|
44995
45387
|
/**
|
|
44996
45388
|
* Get single Access Model Metadata Attribute Value
|
|
@@ -45000,7 +45392,7 @@ export const AccessModelMetadataV2024ApiFactory = function (configuration?: Conf
|
|
|
45000
45392
|
* @throws {RequiredError}
|
|
45001
45393
|
*/
|
|
45002
45394
|
getAccessModelMetadataAttributeValue(requestParameters: AccessModelMetadataV2024ApiGetAccessModelMetadataAttributeValueRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<AttributeValueDTOV2024> {
|
|
45003
|
-
return localVarFp.getAccessModelMetadataAttributeValue(requestParameters.key, requestParameters.value,
|
|
45395
|
+
return localVarFp.getAccessModelMetadataAttributeValue(requestParameters.key, requestParameters.value, axiosOptions).then((request) => request(axios, basePath));
|
|
45004
45396
|
},
|
|
45005
45397
|
/**
|
|
45006
45398
|
* Get a list of Access Model Metadata Attributes
|
|
@@ -45010,7 +45402,7 @@ export const AccessModelMetadataV2024ApiFactory = function (configuration?: Conf
|
|
|
45010
45402
|
* @throws {RequiredError}
|
|
45011
45403
|
*/
|
|
45012
45404
|
listAccessModelMetadataAttribute(requestParameters: AccessModelMetadataV2024ApiListAccessModelMetadataAttributeRequest = {}, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<AttributeDTOV2024>> {
|
|
45013
|
-
return localVarFp.listAccessModelMetadataAttribute(requestParameters.filters, requestParameters.
|
|
45405
|
+
return localVarFp.listAccessModelMetadataAttribute(requestParameters.filters, requestParameters.sorters, requestParameters.offset, requestParameters.limit, requestParameters.count, axiosOptions).then((request) => request(axios, basePath));
|
|
45014
45406
|
},
|
|
45015
45407
|
/**
|
|
45016
45408
|
* Get a list of Access Model Metadata Attribute Values
|
|
@@ -45020,7 +45412,7 @@ export const AccessModelMetadataV2024ApiFactory = function (configuration?: Conf
|
|
|
45020
45412
|
* @throws {RequiredError}
|
|
45021
45413
|
*/
|
|
45022
45414
|
listAccessModelMetadataAttributeValue(requestParameters: AccessModelMetadataV2024ApiListAccessModelMetadataAttributeValueRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<AttributeValueDTOV2024>> {
|
|
45023
|
-
return localVarFp.listAccessModelMetadataAttributeValue(requestParameters.key, requestParameters.
|
|
45415
|
+
return localVarFp.listAccessModelMetadataAttributeValue(requestParameters.key, requestParameters.offset, requestParameters.limit, requestParameters.count, axiosOptions).then((request) => request(axios, basePath));
|
|
45024
45416
|
},
|
|
45025
45417
|
};
|
|
45026
45418
|
};
|
|
@@ -45037,13 +45429,6 @@ export interface AccessModelMetadataV2024ApiGetAccessModelMetadataAttributeReque
|
|
|
45037
45429
|
* @memberof AccessModelMetadataV2024ApiGetAccessModelMetadataAttribute
|
|
45038
45430
|
*/
|
|
45039
45431
|
readonly key: string
|
|
45040
|
-
|
|
45041
|
-
/**
|
|
45042
|
-
* Use this header to enable this experimental API.
|
|
45043
|
-
* @type {string}
|
|
45044
|
-
* @memberof AccessModelMetadataV2024ApiGetAccessModelMetadataAttribute
|
|
45045
|
-
*/
|
|
45046
|
-
readonly xSailPointExperimental?: string
|
|
45047
45432
|
}
|
|
45048
45433
|
|
|
45049
45434
|
/**
|
|
@@ -45065,13 +45450,6 @@ export interface AccessModelMetadataV2024ApiGetAccessModelMetadataAttributeValue
|
|
|
45065
45450
|
* @memberof AccessModelMetadataV2024ApiGetAccessModelMetadataAttributeValue
|
|
45066
45451
|
*/
|
|
45067
45452
|
readonly value: string
|
|
45068
|
-
|
|
45069
|
-
/**
|
|
45070
|
-
* Use this header to enable this experimental API.
|
|
45071
|
-
* @type {string}
|
|
45072
|
-
* @memberof AccessModelMetadataV2024ApiGetAccessModelMetadataAttributeValue
|
|
45073
|
-
*/
|
|
45074
|
-
readonly xSailPointExperimental?: string
|
|
45075
45453
|
}
|
|
45076
45454
|
|
|
45077
45455
|
/**
|
|
@@ -45081,18 +45459,39 @@ export interface AccessModelMetadataV2024ApiGetAccessModelMetadataAttributeValue
|
|
|
45081
45459
|
*/
|
|
45082
45460
|
export interface AccessModelMetadataV2024ApiListAccessModelMetadataAttributeRequest {
|
|
45083
45461
|
/**
|
|
45084
|
-
* 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
|
|
45462
|
+
* 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*
|
|
45085
45463
|
* @type {string}
|
|
45086
45464
|
* @memberof AccessModelMetadataV2024ApiListAccessModelMetadataAttribute
|
|
45087
45465
|
*/
|
|
45088
45466
|
readonly filters?: string
|
|
45089
45467
|
|
|
45090
45468
|
/**
|
|
45091
|
-
*
|
|
45469
|
+
* 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**
|
|
45092
45470
|
* @type {string}
|
|
45093
45471
|
* @memberof AccessModelMetadataV2024ApiListAccessModelMetadataAttribute
|
|
45094
45472
|
*/
|
|
45095
|
-
readonly
|
|
45473
|
+
readonly sorters?: string
|
|
45474
|
+
|
|
45475
|
+
/**
|
|
45476
|
+
* 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.
|
|
45477
|
+
* @type {number}
|
|
45478
|
+
* @memberof AccessModelMetadataV2024ApiListAccessModelMetadataAttribute
|
|
45479
|
+
*/
|
|
45480
|
+
readonly offset?: number
|
|
45481
|
+
|
|
45482
|
+
/**
|
|
45483
|
+
* Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
45484
|
+
* @type {number}
|
|
45485
|
+
* @memberof AccessModelMetadataV2024ApiListAccessModelMetadataAttribute
|
|
45486
|
+
*/
|
|
45487
|
+
readonly limit?: number
|
|
45488
|
+
|
|
45489
|
+
/**
|
|
45490
|
+
* 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.
|
|
45491
|
+
* @type {boolean}
|
|
45492
|
+
* @memberof AccessModelMetadataV2024ApiListAccessModelMetadataAttribute
|
|
45493
|
+
*/
|
|
45494
|
+
readonly count?: boolean
|
|
45096
45495
|
}
|
|
45097
45496
|
|
|
45098
45497
|
/**
|
|
@@ -45109,11 +45508,25 @@ export interface AccessModelMetadataV2024ApiListAccessModelMetadataAttributeValu
|
|
|
45109
45508
|
readonly key: string
|
|
45110
45509
|
|
|
45111
45510
|
/**
|
|
45112
|
-
*
|
|
45113
|
-
* @type {
|
|
45511
|
+
* 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.
|
|
45512
|
+
* @type {number}
|
|
45114
45513
|
* @memberof AccessModelMetadataV2024ApiListAccessModelMetadataAttributeValue
|
|
45115
45514
|
*/
|
|
45116
|
-
readonly
|
|
45515
|
+
readonly offset?: number
|
|
45516
|
+
|
|
45517
|
+
/**
|
|
45518
|
+
* Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
45519
|
+
* @type {number}
|
|
45520
|
+
* @memberof AccessModelMetadataV2024ApiListAccessModelMetadataAttributeValue
|
|
45521
|
+
*/
|
|
45522
|
+
readonly limit?: number
|
|
45523
|
+
|
|
45524
|
+
/**
|
|
45525
|
+
* 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.
|
|
45526
|
+
* @type {boolean}
|
|
45527
|
+
* @memberof AccessModelMetadataV2024ApiListAccessModelMetadataAttributeValue
|
|
45528
|
+
*/
|
|
45529
|
+
readonly count?: boolean
|
|
45117
45530
|
}
|
|
45118
45531
|
|
|
45119
45532
|
/**
|
|
@@ -45132,7 +45545,7 @@ export class AccessModelMetadataV2024Api extends BaseAPI {
|
|
|
45132
45545
|
* @memberof AccessModelMetadataV2024Api
|
|
45133
45546
|
*/
|
|
45134
45547
|
public getAccessModelMetadataAttribute(requestParameters: AccessModelMetadataV2024ApiGetAccessModelMetadataAttributeRequest, axiosOptions?: RawAxiosRequestConfig) {
|
|
45135
|
-
return AccessModelMetadataV2024ApiFp(this.configuration).getAccessModelMetadataAttribute(requestParameters.key,
|
|
45548
|
+
return AccessModelMetadataV2024ApiFp(this.configuration).getAccessModelMetadataAttribute(requestParameters.key, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
45136
45549
|
}
|
|
45137
45550
|
|
|
45138
45551
|
/**
|
|
@@ -45144,7 +45557,7 @@ export class AccessModelMetadataV2024Api extends BaseAPI {
|
|
|
45144
45557
|
* @memberof AccessModelMetadataV2024Api
|
|
45145
45558
|
*/
|
|
45146
45559
|
public getAccessModelMetadataAttributeValue(requestParameters: AccessModelMetadataV2024ApiGetAccessModelMetadataAttributeValueRequest, axiosOptions?: RawAxiosRequestConfig) {
|
|
45147
|
-
return AccessModelMetadataV2024ApiFp(this.configuration).getAccessModelMetadataAttributeValue(requestParameters.key, requestParameters.value,
|
|
45560
|
+
return AccessModelMetadataV2024ApiFp(this.configuration).getAccessModelMetadataAttributeValue(requestParameters.key, requestParameters.value, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
45148
45561
|
}
|
|
45149
45562
|
|
|
45150
45563
|
/**
|
|
@@ -45156,7 +45569,7 @@ export class AccessModelMetadataV2024Api extends BaseAPI {
|
|
|
45156
45569
|
* @memberof AccessModelMetadataV2024Api
|
|
45157
45570
|
*/
|
|
45158
45571
|
public listAccessModelMetadataAttribute(requestParameters: AccessModelMetadataV2024ApiListAccessModelMetadataAttributeRequest = {}, axiosOptions?: RawAxiosRequestConfig) {
|
|
45159
|
-
return AccessModelMetadataV2024ApiFp(this.configuration).listAccessModelMetadataAttribute(requestParameters.filters, requestParameters.
|
|
45572
|
+
return AccessModelMetadataV2024ApiFp(this.configuration).listAccessModelMetadataAttribute(requestParameters.filters, requestParameters.sorters, requestParameters.offset, requestParameters.limit, requestParameters.count, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
45160
45573
|
}
|
|
45161
45574
|
|
|
45162
45575
|
/**
|
|
@@ -45168,7 +45581,7 @@ export class AccessModelMetadataV2024Api extends BaseAPI {
|
|
|
45168
45581
|
* @memberof AccessModelMetadataV2024Api
|
|
45169
45582
|
*/
|
|
45170
45583
|
public listAccessModelMetadataAttributeValue(requestParameters: AccessModelMetadataV2024ApiListAccessModelMetadataAttributeValueRequest, axiosOptions?: RawAxiosRequestConfig) {
|
|
45171
|
-
return AccessModelMetadataV2024ApiFp(this.configuration).listAccessModelMetadataAttributeValue(requestParameters.key, requestParameters.
|
|
45584
|
+
return AccessModelMetadataV2024ApiFp(this.configuration).listAccessModelMetadataAttributeValue(requestParameters.key, requestParameters.offset, requestParameters.limit, requestParameters.count, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
45172
45585
|
}
|
|
45173
45586
|
}
|
|
45174
45587
|
|
|
@@ -68455,21 +68868,16 @@ export const EntitlementsV2024ApiAxiosParamCreator = function (configuration?: C
|
|
|
68455
68868
|
* @param {string} id The entitlement id.
|
|
68456
68869
|
* @param {string} attributeKey Technical name of the Attribute.
|
|
68457
68870
|
* @param {string} attributeValue Technical name of the Attribute Value.
|
|
68458
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
68459
68871
|
* @param {*} [axiosOptions] Override http request option.
|
|
68460
68872
|
* @throws {RequiredError}
|
|
68461
68873
|
*/
|
|
68462
|
-
createAccessModelMetadataForEntitlement: async (id: string, attributeKey: string, attributeValue: string,
|
|
68874
|
+
createAccessModelMetadataForEntitlement: async (id: string, attributeKey: string, attributeValue: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
68463
68875
|
// verify required parameter 'id' is not null or undefined
|
|
68464
68876
|
assertParamExists('createAccessModelMetadataForEntitlement', 'id', id)
|
|
68465
68877
|
// verify required parameter 'attributeKey' is not null or undefined
|
|
68466
68878
|
assertParamExists('createAccessModelMetadataForEntitlement', 'attributeKey', attributeKey)
|
|
68467
68879
|
// verify required parameter 'attributeValue' is not null or undefined
|
|
68468
68880
|
assertParamExists('createAccessModelMetadataForEntitlement', 'attributeValue', attributeValue)
|
|
68469
|
-
if (xSailPointExperimental === undefined) {
|
|
68470
|
-
xSailPointExperimental = 'true';
|
|
68471
|
-
}
|
|
68472
|
-
|
|
68473
68881
|
const localVarPath = `/entitlements/{id}/access-model-metadata/{attributeKey}/values/{attributeValue}`
|
|
68474
68882
|
.replace(`{${"id"}}`, encodeURIComponent(String(id)))
|
|
68475
68883
|
.replace(`{${"attributeKey"}}`, encodeURIComponent(String(attributeKey)))
|
|
@@ -68495,9 +68903,6 @@ export const EntitlementsV2024ApiAxiosParamCreator = function (configuration?: C
|
|
|
68495
68903
|
|
|
68496
68904
|
|
|
68497
68905
|
|
|
68498
|
-
if (xSailPointExperimental != null) {
|
|
68499
|
-
localVarHeaderParameter['X-SailPoint-Experimental'] = String(xSailPointExperimental);
|
|
68500
|
-
}
|
|
68501
68906
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
68502
68907
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
68503
68908
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
|
|
@@ -68513,23 +68918,16 @@ export const EntitlementsV2024ApiAxiosParamCreator = function (configuration?: C
|
|
|
68513
68918
|
* @param {string} id The entitlement id.
|
|
68514
68919
|
* @param {string} attributeKey Technical name of the Attribute.
|
|
68515
68920
|
* @param {string} attributeValue Technical name of the Attribute Value.
|
|
68516
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
68517
68921
|
* @param {*} [axiosOptions] Override http request option.
|
|
68518
68922
|
* @throws {RequiredError}
|
|
68519
68923
|
*/
|
|
68520
|
-
deleteAccessModelMetadataFromEntitlement: async (id: string, attributeKey: string, attributeValue: string,
|
|
68924
|
+
deleteAccessModelMetadataFromEntitlement: async (id: string, attributeKey: string, attributeValue: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
68521
68925
|
// verify required parameter 'id' is not null or undefined
|
|
68522
68926
|
assertParamExists('deleteAccessModelMetadataFromEntitlement', 'id', id)
|
|
68523
68927
|
// verify required parameter 'attributeKey' is not null or undefined
|
|
68524
68928
|
assertParamExists('deleteAccessModelMetadataFromEntitlement', 'attributeKey', attributeKey)
|
|
68525
68929
|
// verify required parameter 'attributeValue' is not null or undefined
|
|
68526
68930
|
assertParamExists('deleteAccessModelMetadataFromEntitlement', 'attributeValue', attributeValue)
|
|
68527
|
-
if (xSailPointExperimental === undefined) {
|
|
68528
|
-
xSailPointExperimental = 'true';
|
|
68529
|
-
}
|
|
68530
|
-
|
|
68531
|
-
// verify required parameter 'xSailPointExperimental' is not null or undefined
|
|
68532
|
-
assertParamExists('deleteAccessModelMetadataFromEntitlement', 'xSailPointExperimental', xSailPointExperimental)
|
|
68533
68931
|
const localVarPath = `/entitlements/{id}/access-model-metadata/{attributeKey}/values/{attributeValue}`
|
|
68534
68932
|
.replace(`{${"id"}}`, encodeURIComponent(String(id)))
|
|
68535
68933
|
.replace(`{${"attributeKey"}}`, encodeURIComponent(String(attributeKey)))
|
|
@@ -68555,9 +68953,6 @@ export const EntitlementsV2024ApiAxiosParamCreator = function (configuration?: C
|
|
|
68555
68953
|
|
|
68556
68954
|
|
|
68557
68955
|
|
|
68558
|
-
if (xSailPointExperimental != null) {
|
|
68559
|
-
localVarHeaderParameter['X-SailPoint-Experimental'] = String(xSailPointExperimental);
|
|
68560
|
-
}
|
|
68561
68956
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
68562
68957
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
68563
68958
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
|
|
@@ -68571,17 +68966,12 @@ export const EntitlementsV2024ApiAxiosParamCreator = function (configuration?: C
|
|
|
68571
68966
|
* This API returns an entitlement by its ID.
|
|
68572
68967
|
* @summary Get an entitlement
|
|
68573
68968
|
* @param {string} id The entitlement ID
|
|
68574
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
68575
68969
|
* @param {*} [axiosOptions] Override http request option.
|
|
68576
68970
|
* @throws {RequiredError}
|
|
68577
68971
|
*/
|
|
68578
|
-
getEntitlement: async (id: string,
|
|
68972
|
+
getEntitlement: async (id: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
68579
68973
|
// verify required parameter 'id' is not null or undefined
|
|
68580
68974
|
assertParamExists('getEntitlement', 'id', id)
|
|
68581
|
-
if (xSailPointExperimental === undefined) {
|
|
68582
|
-
xSailPointExperimental = 'true';
|
|
68583
|
-
}
|
|
68584
|
-
|
|
68585
68975
|
const localVarPath = `/entitlements/{id}`
|
|
68586
68976
|
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
68587
68977
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
@@ -68605,9 +68995,6 @@ export const EntitlementsV2024ApiAxiosParamCreator = function (configuration?: C
|
|
|
68605
68995
|
|
|
68606
68996
|
|
|
68607
68997
|
|
|
68608
|
-
if (xSailPointExperimental != null) {
|
|
68609
|
-
localVarHeaderParameter['X-SailPoint-Experimental'] = String(xSailPointExperimental);
|
|
68610
|
-
}
|
|
68611
68998
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
68612
68999
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
68613
69000
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
|
|
@@ -68621,17 +69008,12 @@ export const EntitlementsV2024ApiAxiosParamCreator = function (configuration?: C
|
|
|
68621
69008
|
* This API returns the entitlement request config for a specified entitlement.
|
|
68622
69009
|
* @summary Get entitlement request config
|
|
68623
69010
|
* @param {string} id Entitlement Id
|
|
68624
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
68625
69011
|
* @param {*} [axiosOptions] Override http request option.
|
|
68626
69012
|
* @throws {RequiredError}
|
|
68627
69013
|
*/
|
|
68628
|
-
getEntitlementRequestConfig: async (id: string,
|
|
69014
|
+
getEntitlementRequestConfig: async (id: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
68629
69015
|
// verify required parameter 'id' is not null or undefined
|
|
68630
69016
|
assertParamExists('getEntitlementRequestConfig', 'id', id)
|
|
68631
|
-
if (xSailPointExperimental === undefined) {
|
|
68632
|
-
xSailPointExperimental = 'true';
|
|
68633
|
-
}
|
|
68634
|
-
|
|
68635
69017
|
const localVarPath = `/entitlements/{id}/entitlement-request-config`
|
|
68636
69018
|
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
68637
69019
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
@@ -68655,9 +69037,6 @@ export const EntitlementsV2024ApiAxiosParamCreator = function (configuration?: C
|
|
|
68655
69037
|
|
|
68656
69038
|
|
|
68657
69039
|
|
|
68658
|
-
if (xSailPointExperimental != null) {
|
|
68659
|
-
localVarHeaderParameter['X-SailPoint-Experimental'] = String(xSailPointExperimental);
|
|
68660
|
-
}
|
|
68661
69040
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
68662
69041
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
68663
69042
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
|
|
@@ -68671,19 +69050,14 @@ export const EntitlementsV2024ApiAxiosParamCreator = function (configuration?: C
|
|
|
68671
69050
|
* 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`.
|
|
68672
69051
|
* @summary Aggregate entitlements
|
|
68673
69052
|
* @param {string} id Source Id
|
|
68674
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
68675
69053
|
* @param {File} [csvFile] The CSV file containing the source entitlements to aggregate.
|
|
68676
69054
|
* @param {*} [axiosOptions] Override http request option.
|
|
68677
69055
|
* @deprecated
|
|
68678
69056
|
* @throws {RequiredError}
|
|
68679
69057
|
*/
|
|
68680
|
-
importEntitlementsBySource: async (id: string,
|
|
69058
|
+
importEntitlementsBySource: async (id: string, csvFile?: File, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
68681
69059
|
// verify required parameter 'id' is not null or undefined
|
|
68682
69060
|
assertParamExists('importEntitlementsBySource', 'id', id)
|
|
68683
|
-
if (xSailPointExperimental === undefined) {
|
|
68684
|
-
xSailPointExperimental = 'true';
|
|
68685
|
-
}
|
|
68686
|
-
|
|
68687
69061
|
const localVarPath = `/entitlements/aggregate/sources/{id}`
|
|
68688
69062
|
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
68689
69063
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
@@ -68714,9 +69088,6 @@ export const EntitlementsV2024ApiAxiosParamCreator = function (configuration?: C
|
|
|
68714
69088
|
|
|
68715
69089
|
localVarHeaderParameter['Content-Type'] = 'multipart/form-data';
|
|
68716
69090
|
|
|
68717
|
-
if (xSailPointExperimental != null) {
|
|
68718
|
-
localVarHeaderParameter['X-SailPoint-Experimental'] = String(xSailPointExperimental);
|
|
68719
|
-
}
|
|
68720
69091
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
68721
69092
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
68722
69093
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
|
|
@@ -68736,17 +69107,12 @@ export const EntitlementsV2024ApiAxiosParamCreator = function (configuration?: C
|
|
|
68736
69107
|
* @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.
|
|
68737
69108
|
* @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**
|
|
68738
69109
|
* @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*
|
|
68739
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
68740
69110
|
* @param {*} [axiosOptions] Override http request option.
|
|
68741
69111
|
* @throws {RequiredError}
|
|
68742
69112
|
*/
|
|
68743
|
-
listEntitlementChildren: async (id: string, limit?: number, offset?: number, count?: boolean, sorters?: string, filters?: string,
|
|
69113
|
+
listEntitlementChildren: async (id: string, limit?: number, offset?: number, count?: boolean, sorters?: string, filters?: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
68744
69114
|
// verify required parameter 'id' is not null or undefined
|
|
68745
69115
|
assertParamExists('listEntitlementChildren', 'id', id)
|
|
68746
|
-
if (xSailPointExperimental === undefined) {
|
|
68747
|
-
xSailPointExperimental = 'true';
|
|
68748
|
-
}
|
|
68749
|
-
|
|
68750
69116
|
const localVarPath = `/entitlements/{id}/children`
|
|
68751
69117
|
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
68752
69118
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
@@ -68790,9 +69156,6 @@ export const EntitlementsV2024ApiAxiosParamCreator = function (configuration?: C
|
|
|
68790
69156
|
|
|
68791
69157
|
|
|
68792
69158
|
|
|
68793
|
-
if (xSailPointExperimental != null) {
|
|
68794
|
-
localVarHeaderParameter['X-SailPoint-Experimental'] = String(xSailPointExperimental);
|
|
68795
|
-
}
|
|
68796
69159
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
68797
69160
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
68798
69161
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
|
|
@@ -68811,17 +69174,12 @@ export const EntitlementsV2024ApiAxiosParamCreator = function (configuration?: C
|
|
|
68811
69174
|
* @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.
|
|
68812
69175
|
* @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**
|
|
68813
69176
|
* @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*
|
|
68814
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
68815
69177
|
* @param {*} [axiosOptions] Override http request option.
|
|
68816
69178
|
* @throws {RequiredError}
|
|
68817
69179
|
*/
|
|
68818
|
-
listEntitlementParents: async (id: string, limit?: number, offset?: number, count?: boolean, sorters?: string, filters?: string,
|
|
69180
|
+
listEntitlementParents: async (id: string, limit?: number, offset?: number, count?: boolean, sorters?: string, filters?: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
68819
69181
|
// verify required parameter 'id' is not null or undefined
|
|
68820
69182
|
assertParamExists('listEntitlementParents', 'id', id)
|
|
68821
|
-
if (xSailPointExperimental === undefined) {
|
|
68822
|
-
xSailPointExperimental = 'true';
|
|
68823
|
-
}
|
|
68824
|
-
|
|
68825
69183
|
const localVarPath = `/entitlements/{id}/parents`
|
|
68826
69184
|
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
68827
69185
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
@@ -68865,9 +69223,6 @@ export const EntitlementsV2024ApiAxiosParamCreator = function (configuration?: C
|
|
|
68865
69223
|
|
|
68866
69224
|
|
|
68867
69225
|
|
|
68868
|
-
if (xSailPointExperimental != null) {
|
|
68869
|
-
localVarHeaderParameter['X-SailPoint-Experimental'] = String(xSailPointExperimental);
|
|
68870
|
-
}
|
|
68871
69226
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
68872
69227
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
68873
69228
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
|
|
@@ -68881,7 +69236,7 @@ export const EntitlementsV2024ApiAxiosParamCreator = function (configuration?: C
|
|
|
68881
69236
|
* 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.
|
|
68882
69237
|
* @summary Gets a list of entitlements.
|
|
68883
69238
|
* @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).
|
|
68884
|
-
* @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.
|
|
69239
|
+
* @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.
|
|
68885
69240
|
* @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).
|
|
68886
69241
|
* @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.
|
|
68887
69242
|
* @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.
|
|
@@ -68889,15 +69244,10 @@ export const EntitlementsV2024ApiAxiosParamCreator = function (configuration?: C
|
|
|
68889
69244
|
* @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.
|
|
68890
69245
|
* @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**
|
|
68891
69246
|
* @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*
|
|
68892
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
68893
69247
|
* @param {*} [axiosOptions] Override http request option.
|
|
68894
69248
|
* @throws {RequiredError}
|
|
68895
69249
|
*/
|
|
68896
|
-
listEntitlements: async (accountId?: string, segmentedForIdentity?: string, forSegmentIds?: string, includeUnsegmented?: boolean, offset?: number, limit?: number, count?: boolean, sorters?: string, filters?: string,
|
|
68897
|
-
if (xSailPointExperimental === undefined) {
|
|
68898
|
-
xSailPointExperimental = 'true';
|
|
68899
|
-
}
|
|
68900
|
-
|
|
69250
|
+
listEntitlements: async (accountId?: string, segmentedForIdentity?: string, forSegmentIds?: string, includeUnsegmented?: boolean, offset?: number, limit?: number, count?: boolean, sorters?: string, filters?: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
68901
69251
|
const localVarPath = `/entitlements`;
|
|
68902
69252
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
68903
69253
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -68956,9 +69306,6 @@ export const EntitlementsV2024ApiAxiosParamCreator = function (configuration?: C
|
|
|
68956
69306
|
|
|
68957
69307
|
|
|
68958
69308
|
|
|
68959
|
-
if (xSailPointExperimental != null) {
|
|
68960
|
-
localVarHeaderParameter['X-SailPoint-Experimental'] = String(xSailPointExperimental);
|
|
68961
|
-
}
|
|
68962
69309
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
68963
69310
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
68964
69311
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
|
|
@@ -68972,20 +69319,13 @@ export const EntitlementsV2024ApiAxiosParamCreator = function (configuration?: C
|
|
|
68972
69319
|
* 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.
|
|
68973
69320
|
* @summary Patch an entitlement
|
|
68974
69321
|
* @param {string} id ID of the entitlement to patch
|
|
68975
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
68976
69322
|
* @param {Array<JsonPatchOperationV2024>} [jsonPatchOperationV2024]
|
|
68977
69323
|
* @param {*} [axiosOptions] Override http request option.
|
|
68978
69324
|
* @throws {RequiredError}
|
|
68979
69325
|
*/
|
|
68980
|
-
patchEntitlement: async (id: string,
|
|
69326
|
+
patchEntitlement: async (id: string, jsonPatchOperationV2024?: Array<JsonPatchOperationV2024>, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
68981
69327
|
// verify required parameter 'id' is not null or undefined
|
|
68982
69328
|
assertParamExists('patchEntitlement', 'id', id)
|
|
68983
|
-
if (xSailPointExperimental === undefined) {
|
|
68984
|
-
xSailPointExperimental = 'true';
|
|
68985
|
-
}
|
|
68986
|
-
|
|
68987
|
-
// verify required parameter 'xSailPointExperimental' is not null or undefined
|
|
68988
|
-
assertParamExists('patchEntitlement', 'xSailPointExperimental', xSailPointExperimental)
|
|
68989
69329
|
const localVarPath = `/entitlements/{id}`
|
|
68990
69330
|
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
68991
69331
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
@@ -69011,9 +69351,6 @@ export const EntitlementsV2024ApiAxiosParamCreator = function (configuration?: C
|
|
|
69011
69351
|
|
|
69012
69352
|
localVarHeaderParameter['Content-Type'] = 'application/json-patch+json';
|
|
69013
69353
|
|
|
69014
|
-
if (xSailPointExperimental != null) {
|
|
69015
|
-
localVarHeaderParameter['X-SailPoint-Experimental'] = String(xSailPointExperimental);
|
|
69016
|
-
}
|
|
69017
69354
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
69018
69355
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
69019
69356
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
|
|
@@ -69028,20 +69365,13 @@ export const EntitlementsV2024ApiAxiosParamCreator = function (configuration?: C
|
|
|
69028
69365
|
* This API replaces the entitlement request config for a specified entitlement.
|
|
69029
69366
|
* @summary Replace entitlement request config
|
|
69030
69367
|
* @param {string} id Entitlement ID
|
|
69031
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
69032
69368
|
* @param {EntitlementRequestConfigV2024} entitlementRequestConfigV2024
|
|
69033
69369
|
* @param {*} [axiosOptions] Override http request option.
|
|
69034
69370
|
* @throws {RequiredError}
|
|
69035
69371
|
*/
|
|
69036
|
-
putEntitlementRequestConfig: async (id: string,
|
|
69372
|
+
putEntitlementRequestConfig: async (id: string, entitlementRequestConfigV2024: EntitlementRequestConfigV2024, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
69037
69373
|
// verify required parameter 'id' is not null or undefined
|
|
69038
69374
|
assertParamExists('putEntitlementRequestConfig', 'id', id)
|
|
69039
|
-
if (xSailPointExperimental === undefined) {
|
|
69040
|
-
xSailPointExperimental = 'true';
|
|
69041
|
-
}
|
|
69042
|
-
|
|
69043
|
-
// verify required parameter 'xSailPointExperimental' is not null or undefined
|
|
69044
|
-
assertParamExists('putEntitlementRequestConfig', 'xSailPointExperimental', xSailPointExperimental)
|
|
69045
69375
|
// verify required parameter 'entitlementRequestConfigV2024' is not null or undefined
|
|
69046
69376
|
assertParamExists('putEntitlementRequestConfig', 'entitlementRequestConfigV2024', entitlementRequestConfigV2024)
|
|
69047
69377
|
const localVarPath = `/entitlements/{id}/entitlement-request-config`
|
|
@@ -69069,9 +69399,6 @@ export const EntitlementsV2024ApiAxiosParamCreator = function (configuration?: C
|
|
|
69069
69399
|
|
|
69070
69400
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
69071
69401
|
|
|
69072
|
-
if (xSailPointExperimental != null) {
|
|
69073
|
-
localVarHeaderParameter['X-SailPoint-Experimental'] = String(xSailPointExperimental);
|
|
69074
|
-
}
|
|
69075
69402
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
69076
69403
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
69077
69404
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
|
|
@@ -69086,17 +69413,12 @@ export const EntitlementsV2024ApiAxiosParamCreator = function (configuration?: C
|
|
|
69086
69413
|
* 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`.
|
|
69087
69414
|
* @summary Reset source entitlements
|
|
69088
69415
|
* @param {string} id ID of source for the entitlement reset
|
|
69089
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
69090
69416
|
* @param {*} [axiosOptions] Override http request option.
|
|
69091
69417
|
* @throws {RequiredError}
|
|
69092
69418
|
*/
|
|
69093
|
-
resetSourceEntitlements: async (id: string,
|
|
69419
|
+
resetSourceEntitlements: async (id: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
69094
69420
|
// verify required parameter 'id' is not null or undefined
|
|
69095
69421
|
assertParamExists('resetSourceEntitlements', 'id', id)
|
|
69096
|
-
if (xSailPointExperimental === undefined) {
|
|
69097
|
-
xSailPointExperimental = 'true';
|
|
69098
|
-
}
|
|
69099
|
-
|
|
69100
69422
|
const localVarPath = `/entitlements/reset/sources/{id}`
|
|
69101
69423
|
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
69102
69424
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
@@ -69120,9 +69442,6 @@ export const EntitlementsV2024ApiAxiosParamCreator = function (configuration?: C
|
|
|
69120
69442
|
|
|
69121
69443
|
|
|
69122
69444
|
|
|
69123
|
-
if (xSailPointExperimental != null) {
|
|
69124
|
-
localVarHeaderParameter['X-SailPoint-Experimental'] = String(xSailPointExperimental);
|
|
69125
|
-
}
|
|
69126
69445
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
69127
69446
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
69128
69447
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
|
|
@@ -69133,20 +69452,15 @@ export const EntitlementsV2024ApiAxiosParamCreator = function (configuration?: C
|
|
|
69133
69452
|
};
|
|
69134
69453
|
},
|
|
69135
69454
|
/**
|
|
69136
|
-
*
|
|
69455
|
+
* 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.
|
|
69137
69456
|
* @summary Bulk update an entitlement list
|
|
69138
69457
|
* @param {EntitlementBulkUpdateRequestV2024} entitlementBulkUpdateRequestV2024
|
|
69139
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
69140
69458
|
* @param {*} [axiosOptions] Override http request option.
|
|
69141
69459
|
* @throws {RequiredError}
|
|
69142
69460
|
*/
|
|
69143
|
-
updateEntitlementsInBulk: async (entitlementBulkUpdateRequestV2024: EntitlementBulkUpdateRequestV2024,
|
|
69461
|
+
updateEntitlementsInBulk: async (entitlementBulkUpdateRequestV2024: EntitlementBulkUpdateRequestV2024, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
69144
69462
|
// verify required parameter 'entitlementBulkUpdateRequestV2024' is not null or undefined
|
|
69145
69463
|
assertParamExists('updateEntitlementsInBulk', 'entitlementBulkUpdateRequestV2024', entitlementBulkUpdateRequestV2024)
|
|
69146
|
-
if (xSailPointExperimental === undefined) {
|
|
69147
|
-
xSailPointExperimental = 'true';
|
|
69148
|
-
}
|
|
69149
|
-
|
|
69150
69464
|
const localVarPath = `/entitlements/bulk-update`;
|
|
69151
69465
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
69152
69466
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -69171,9 +69485,6 @@ export const EntitlementsV2024ApiAxiosParamCreator = function (configuration?: C
|
|
|
69171
69485
|
|
|
69172
69486
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
69173
69487
|
|
|
69174
|
-
if (xSailPointExperimental != null) {
|
|
69175
|
-
localVarHeaderParameter['X-SailPoint-Experimental'] = String(xSailPointExperimental);
|
|
69176
|
-
}
|
|
69177
69488
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
69178
69489
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
69179
69490
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
|
|
@@ -69200,12 +69511,11 @@ export const EntitlementsV2024ApiFp = function(configuration?: Configuration) {
|
|
|
69200
69511
|
* @param {string} id The entitlement id.
|
|
69201
69512
|
* @param {string} attributeKey Technical name of the Attribute.
|
|
69202
69513
|
* @param {string} attributeValue Technical name of the Attribute Value.
|
|
69203
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
69204
69514
|
* @param {*} [axiosOptions] Override http request option.
|
|
69205
69515
|
* @throws {RequiredError}
|
|
69206
69516
|
*/
|
|
69207
|
-
async createAccessModelMetadataForEntitlement(id: string, attributeKey: string, attributeValue: string,
|
|
69208
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.createAccessModelMetadataForEntitlement(id, attributeKey, attributeValue,
|
|
69517
|
+
async createAccessModelMetadataForEntitlement(id: string, attributeKey: string, attributeValue: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EntitlementV2024>> {
|
|
69518
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.createAccessModelMetadataForEntitlement(id, attributeKey, attributeValue, axiosOptions);
|
|
69209
69519
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
69210
69520
|
const localVarOperationServerBasePath = operationServerMap['EntitlementsV2024Api.createAccessModelMetadataForEntitlement']?.[localVarOperationServerIndex]?.url;
|
|
69211
69521
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -69216,12 +69526,11 @@ export const EntitlementsV2024ApiFp = function(configuration?: Configuration) {
|
|
|
69216
69526
|
* @param {string} id The entitlement id.
|
|
69217
69527
|
* @param {string} attributeKey Technical name of the Attribute.
|
|
69218
69528
|
* @param {string} attributeValue Technical name of the Attribute Value.
|
|
69219
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
69220
69529
|
* @param {*} [axiosOptions] Override http request option.
|
|
69221
69530
|
* @throws {RequiredError}
|
|
69222
69531
|
*/
|
|
69223
|
-
async deleteAccessModelMetadataFromEntitlement(id: string, attributeKey: string, attributeValue: string,
|
|
69224
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteAccessModelMetadataFromEntitlement(id, attributeKey, attributeValue,
|
|
69532
|
+
async deleteAccessModelMetadataFromEntitlement(id: string, attributeKey: string, attributeValue: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
|
|
69533
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteAccessModelMetadataFromEntitlement(id, attributeKey, attributeValue, axiosOptions);
|
|
69225
69534
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
69226
69535
|
const localVarOperationServerBasePath = operationServerMap['EntitlementsV2024Api.deleteAccessModelMetadataFromEntitlement']?.[localVarOperationServerIndex]?.url;
|
|
69227
69536
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -69230,12 +69539,11 @@ export const EntitlementsV2024ApiFp = function(configuration?: Configuration) {
|
|
|
69230
69539
|
* This API returns an entitlement by its ID.
|
|
69231
69540
|
* @summary Get an entitlement
|
|
69232
69541
|
* @param {string} id The entitlement ID
|
|
69233
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
69234
69542
|
* @param {*} [axiosOptions] Override http request option.
|
|
69235
69543
|
* @throws {RequiredError}
|
|
69236
69544
|
*/
|
|
69237
|
-
async getEntitlement(id: string,
|
|
69238
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.getEntitlement(id,
|
|
69545
|
+
async getEntitlement(id: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EntitlementV2024>> {
|
|
69546
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getEntitlement(id, axiosOptions);
|
|
69239
69547
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
69240
69548
|
const localVarOperationServerBasePath = operationServerMap['EntitlementsV2024Api.getEntitlement']?.[localVarOperationServerIndex]?.url;
|
|
69241
69549
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -69244,12 +69552,11 @@ export const EntitlementsV2024ApiFp = function(configuration?: Configuration) {
|
|
|
69244
69552
|
* This API returns the entitlement request config for a specified entitlement.
|
|
69245
69553
|
* @summary Get entitlement request config
|
|
69246
69554
|
* @param {string} id Entitlement Id
|
|
69247
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
69248
69555
|
* @param {*} [axiosOptions] Override http request option.
|
|
69249
69556
|
* @throws {RequiredError}
|
|
69250
69557
|
*/
|
|
69251
|
-
async getEntitlementRequestConfig(id: string,
|
|
69252
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.getEntitlementRequestConfig(id,
|
|
69558
|
+
async getEntitlementRequestConfig(id: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EntitlementRequestConfigV2024>> {
|
|
69559
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getEntitlementRequestConfig(id, axiosOptions);
|
|
69253
69560
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
69254
69561
|
const localVarOperationServerBasePath = operationServerMap['EntitlementsV2024Api.getEntitlementRequestConfig']?.[localVarOperationServerIndex]?.url;
|
|
69255
69562
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -69258,14 +69565,13 @@ export const EntitlementsV2024ApiFp = function(configuration?: Configuration) {
|
|
|
69258
69565
|
* 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`.
|
|
69259
69566
|
* @summary Aggregate entitlements
|
|
69260
69567
|
* @param {string} id Source Id
|
|
69261
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
69262
69568
|
* @param {File} [csvFile] The CSV file containing the source entitlements to aggregate.
|
|
69263
69569
|
* @param {*} [axiosOptions] Override http request option.
|
|
69264
69570
|
* @deprecated
|
|
69265
69571
|
* @throws {RequiredError}
|
|
69266
69572
|
*/
|
|
69267
|
-
async importEntitlementsBySource(id: string,
|
|
69268
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.importEntitlementsBySource(id,
|
|
69573
|
+
async importEntitlementsBySource(id: string, csvFile?: File, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<LoadEntitlementTaskV2024>> {
|
|
69574
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.importEntitlementsBySource(id, csvFile, axiosOptions);
|
|
69269
69575
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
69270
69576
|
const localVarOperationServerBasePath = operationServerMap['EntitlementsV2024Api.importEntitlementsBySource']?.[localVarOperationServerIndex]?.url;
|
|
69271
69577
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -69279,12 +69585,11 @@ export const EntitlementsV2024ApiFp = function(configuration?: Configuration) {
|
|
|
69279
69585
|
* @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.
|
|
69280
69586
|
* @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**
|
|
69281
69587
|
* @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*
|
|
69282
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
69283
69588
|
* @param {*} [axiosOptions] Override http request option.
|
|
69284
69589
|
* @throws {RequiredError}
|
|
69285
69590
|
*/
|
|
69286
|
-
async listEntitlementChildren(id: string, limit?: number, offset?: number, count?: boolean, sorters?: string, filters?: string,
|
|
69287
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.listEntitlementChildren(id, limit, offset, count, sorters, filters,
|
|
69591
|
+
async listEntitlementChildren(id: string, limit?: number, offset?: number, count?: boolean, sorters?: string, filters?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<EntitlementV2024>>> {
|
|
69592
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listEntitlementChildren(id, limit, offset, count, sorters, filters, axiosOptions);
|
|
69288
69593
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
69289
69594
|
const localVarOperationServerBasePath = operationServerMap['EntitlementsV2024Api.listEntitlementChildren']?.[localVarOperationServerIndex]?.url;
|
|
69290
69595
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -69298,12 +69603,11 @@ export const EntitlementsV2024ApiFp = function(configuration?: Configuration) {
|
|
|
69298
69603
|
* @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.
|
|
69299
69604
|
* @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**
|
|
69300
69605
|
* @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*
|
|
69301
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
69302
69606
|
* @param {*} [axiosOptions] Override http request option.
|
|
69303
69607
|
* @throws {RequiredError}
|
|
69304
69608
|
*/
|
|
69305
|
-
async listEntitlementParents(id: string, limit?: number, offset?: number, count?: boolean, sorters?: string, filters?: string,
|
|
69306
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.listEntitlementParents(id, limit, offset, count, sorters, filters,
|
|
69609
|
+
async listEntitlementParents(id: string, limit?: number, offset?: number, count?: boolean, sorters?: string, filters?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<EntitlementV2024>>> {
|
|
69610
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listEntitlementParents(id, limit, offset, count, sorters, filters, axiosOptions);
|
|
69307
69611
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
69308
69612
|
const localVarOperationServerBasePath = operationServerMap['EntitlementsV2024Api.listEntitlementParents']?.[localVarOperationServerIndex]?.url;
|
|
69309
69613
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -69312,7 +69616,7 @@ export const EntitlementsV2024ApiFp = function(configuration?: Configuration) {
|
|
|
69312
69616
|
* 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.
|
|
69313
69617
|
* @summary Gets a list of entitlements.
|
|
69314
69618
|
* @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).
|
|
69315
|
-
* @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.
|
|
69619
|
+
* @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.
|
|
69316
69620
|
* @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).
|
|
69317
69621
|
* @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.
|
|
69318
69622
|
* @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.
|
|
@@ -69320,12 +69624,11 @@ export const EntitlementsV2024ApiFp = function(configuration?: Configuration) {
|
|
|
69320
69624
|
* @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.
|
|
69321
69625
|
* @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**
|
|
69322
69626
|
* @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*
|
|
69323
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
69324
69627
|
* @param {*} [axiosOptions] Override http request option.
|
|
69325
69628
|
* @throws {RequiredError}
|
|
69326
69629
|
*/
|
|
69327
|
-
async listEntitlements(accountId?: string, segmentedForIdentity?: string, forSegmentIds?: string, includeUnsegmented?: boolean, offset?: number, limit?: number, count?: boolean, sorters?: string, filters?: string,
|
|
69328
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.listEntitlements(accountId, segmentedForIdentity, forSegmentIds, includeUnsegmented, offset, limit, count, sorters, filters,
|
|
69630
|
+
async 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<EntitlementV2024>>> {
|
|
69631
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listEntitlements(accountId, segmentedForIdentity, forSegmentIds, includeUnsegmented, offset, limit, count, sorters, filters, axiosOptions);
|
|
69329
69632
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
69330
69633
|
const localVarOperationServerBasePath = operationServerMap['EntitlementsV2024Api.listEntitlements']?.[localVarOperationServerIndex]?.url;
|
|
69331
69634
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -69334,13 +69637,12 @@ export const EntitlementsV2024ApiFp = function(configuration?: Configuration) {
|
|
|
69334
69637
|
* 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.
|
|
69335
69638
|
* @summary Patch an entitlement
|
|
69336
69639
|
* @param {string} id ID of the entitlement to patch
|
|
69337
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
69338
69640
|
* @param {Array<JsonPatchOperationV2024>} [jsonPatchOperationV2024]
|
|
69339
69641
|
* @param {*} [axiosOptions] Override http request option.
|
|
69340
69642
|
* @throws {RequiredError}
|
|
69341
69643
|
*/
|
|
69342
|
-
async patchEntitlement(id: string,
|
|
69343
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.patchEntitlement(id,
|
|
69644
|
+
async patchEntitlement(id: string, jsonPatchOperationV2024?: Array<JsonPatchOperationV2024>, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EntitlementV2024>> {
|
|
69645
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.patchEntitlement(id, jsonPatchOperationV2024, axiosOptions);
|
|
69344
69646
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
69345
69647
|
const localVarOperationServerBasePath = operationServerMap['EntitlementsV2024Api.patchEntitlement']?.[localVarOperationServerIndex]?.url;
|
|
69346
69648
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -69349,13 +69651,12 @@ export const EntitlementsV2024ApiFp = function(configuration?: Configuration) {
|
|
|
69349
69651
|
* This API replaces the entitlement request config for a specified entitlement.
|
|
69350
69652
|
* @summary Replace entitlement request config
|
|
69351
69653
|
* @param {string} id Entitlement ID
|
|
69352
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
69353
69654
|
* @param {EntitlementRequestConfigV2024} entitlementRequestConfigV2024
|
|
69354
69655
|
* @param {*} [axiosOptions] Override http request option.
|
|
69355
69656
|
* @throws {RequiredError}
|
|
69356
69657
|
*/
|
|
69357
|
-
async putEntitlementRequestConfig(id: string,
|
|
69358
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.putEntitlementRequestConfig(id,
|
|
69658
|
+
async putEntitlementRequestConfig(id: string, entitlementRequestConfigV2024: EntitlementRequestConfigV2024, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EntitlementRequestConfigV2024>> {
|
|
69659
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.putEntitlementRequestConfig(id, entitlementRequestConfigV2024, axiosOptions);
|
|
69359
69660
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
69360
69661
|
const localVarOperationServerBasePath = operationServerMap['EntitlementsV2024Api.putEntitlementRequestConfig']?.[localVarOperationServerIndex]?.url;
|
|
69361
69662
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -69364,26 +69665,24 @@ export const EntitlementsV2024ApiFp = function(configuration?: Configuration) {
|
|
|
69364
69665
|
* 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`.
|
|
69365
69666
|
* @summary Reset source entitlements
|
|
69366
69667
|
* @param {string} id ID of source for the entitlement reset
|
|
69367
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
69368
69668
|
* @param {*} [axiosOptions] Override http request option.
|
|
69369
69669
|
* @throws {RequiredError}
|
|
69370
69670
|
*/
|
|
69371
|
-
async resetSourceEntitlements(id: string,
|
|
69372
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.resetSourceEntitlements(id,
|
|
69671
|
+
async resetSourceEntitlements(id: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EntitlementSourceResetBaseReferenceDtoV2024>> {
|
|
69672
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.resetSourceEntitlements(id, axiosOptions);
|
|
69373
69673
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
69374
69674
|
const localVarOperationServerBasePath = operationServerMap['EntitlementsV2024Api.resetSourceEntitlements']?.[localVarOperationServerIndex]?.url;
|
|
69375
69675
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
69376
69676
|
},
|
|
69377
69677
|
/**
|
|
69378
|
-
*
|
|
69678
|
+
* 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.
|
|
69379
69679
|
* @summary Bulk update an entitlement list
|
|
69380
69680
|
* @param {EntitlementBulkUpdateRequestV2024} entitlementBulkUpdateRequestV2024
|
|
69381
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
69382
69681
|
* @param {*} [axiosOptions] Override http request option.
|
|
69383
69682
|
* @throws {RequiredError}
|
|
69384
69683
|
*/
|
|
69385
|
-
async updateEntitlementsInBulk(entitlementBulkUpdateRequestV2024: EntitlementBulkUpdateRequestV2024,
|
|
69386
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.updateEntitlementsInBulk(entitlementBulkUpdateRequestV2024,
|
|
69684
|
+
async updateEntitlementsInBulk(entitlementBulkUpdateRequestV2024: EntitlementBulkUpdateRequestV2024, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
|
|
69685
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.updateEntitlementsInBulk(entitlementBulkUpdateRequestV2024, axiosOptions);
|
|
69387
69686
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
69388
69687
|
const localVarOperationServerBasePath = operationServerMap['EntitlementsV2024Api.updateEntitlementsInBulk']?.[localVarOperationServerIndex]?.url;
|
|
69389
69688
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -69406,7 +69705,7 @@ export const EntitlementsV2024ApiFactory = function (configuration?: Configurati
|
|
|
69406
69705
|
* @throws {RequiredError}
|
|
69407
69706
|
*/
|
|
69408
69707
|
createAccessModelMetadataForEntitlement(requestParameters: EntitlementsV2024ApiCreateAccessModelMetadataForEntitlementRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<EntitlementV2024> {
|
|
69409
|
-
return localVarFp.createAccessModelMetadataForEntitlement(requestParameters.id, requestParameters.attributeKey, requestParameters.attributeValue,
|
|
69708
|
+
return localVarFp.createAccessModelMetadataForEntitlement(requestParameters.id, requestParameters.attributeKey, requestParameters.attributeValue, axiosOptions).then((request) => request(axios, basePath));
|
|
69410
69709
|
},
|
|
69411
69710
|
/**
|
|
69412
69711
|
* Remove single Access Model Metadata from an entitlement.
|
|
@@ -69416,7 +69715,7 @@ export const EntitlementsV2024ApiFactory = function (configuration?: Configurati
|
|
|
69416
69715
|
* @throws {RequiredError}
|
|
69417
69716
|
*/
|
|
69418
69717
|
deleteAccessModelMetadataFromEntitlement(requestParameters: EntitlementsV2024ApiDeleteAccessModelMetadataFromEntitlementRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<void> {
|
|
69419
|
-
return localVarFp.deleteAccessModelMetadataFromEntitlement(requestParameters.id, requestParameters.attributeKey, requestParameters.attributeValue,
|
|
69718
|
+
return localVarFp.deleteAccessModelMetadataFromEntitlement(requestParameters.id, requestParameters.attributeKey, requestParameters.attributeValue, axiosOptions).then((request) => request(axios, basePath));
|
|
69420
69719
|
},
|
|
69421
69720
|
/**
|
|
69422
69721
|
* This API returns an entitlement by its ID.
|
|
@@ -69426,7 +69725,7 @@ export const EntitlementsV2024ApiFactory = function (configuration?: Configurati
|
|
|
69426
69725
|
* @throws {RequiredError}
|
|
69427
69726
|
*/
|
|
69428
69727
|
getEntitlement(requestParameters: EntitlementsV2024ApiGetEntitlementRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<EntitlementV2024> {
|
|
69429
|
-
return localVarFp.getEntitlement(requestParameters.id,
|
|
69728
|
+
return localVarFp.getEntitlement(requestParameters.id, axiosOptions).then((request) => request(axios, basePath));
|
|
69430
69729
|
},
|
|
69431
69730
|
/**
|
|
69432
69731
|
* This API returns the entitlement request config for a specified entitlement.
|
|
@@ -69436,7 +69735,7 @@ export const EntitlementsV2024ApiFactory = function (configuration?: Configurati
|
|
|
69436
69735
|
* @throws {RequiredError}
|
|
69437
69736
|
*/
|
|
69438
69737
|
getEntitlementRequestConfig(requestParameters: EntitlementsV2024ApiGetEntitlementRequestConfigRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<EntitlementRequestConfigV2024> {
|
|
69439
|
-
return localVarFp.getEntitlementRequestConfig(requestParameters.id,
|
|
69738
|
+
return localVarFp.getEntitlementRequestConfig(requestParameters.id, axiosOptions).then((request) => request(axios, basePath));
|
|
69440
69739
|
},
|
|
69441
69740
|
/**
|
|
69442
69741
|
* 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`.
|
|
@@ -69447,7 +69746,7 @@ export const EntitlementsV2024ApiFactory = function (configuration?: Configurati
|
|
|
69447
69746
|
* @throws {RequiredError}
|
|
69448
69747
|
*/
|
|
69449
69748
|
importEntitlementsBySource(requestParameters: EntitlementsV2024ApiImportEntitlementsBySourceRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<LoadEntitlementTaskV2024> {
|
|
69450
|
-
return localVarFp.importEntitlementsBySource(requestParameters.id, requestParameters.
|
|
69749
|
+
return localVarFp.importEntitlementsBySource(requestParameters.id, requestParameters.csvFile, axiosOptions).then((request) => request(axios, basePath));
|
|
69451
69750
|
},
|
|
69452
69751
|
/**
|
|
69453
69752
|
* This API returns a list of all child entitlements of a given entitlement.
|
|
@@ -69457,7 +69756,7 @@ export const EntitlementsV2024ApiFactory = function (configuration?: Configurati
|
|
|
69457
69756
|
* @throws {RequiredError}
|
|
69458
69757
|
*/
|
|
69459
69758
|
listEntitlementChildren(requestParameters: EntitlementsV2024ApiListEntitlementChildrenRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<EntitlementV2024>> {
|
|
69460
|
-
return localVarFp.listEntitlementChildren(requestParameters.id, requestParameters.limit, requestParameters.offset, requestParameters.count, requestParameters.sorters, requestParameters.filters,
|
|
69759
|
+
return localVarFp.listEntitlementChildren(requestParameters.id, requestParameters.limit, requestParameters.offset, requestParameters.count, requestParameters.sorters, requestParameters.filters, axiosOptions).then((request) => request(axios, basePath));
|
|
69461
69760
|
},
|
|
69462
69761
|
/**
|
|
69463
69762
|
* This API returns a list of all parent entitlements of a given entitlement.
|
|
@@ -69467,7 +69766,7 @@ export const EntitlementsV2024ApiFactory = function (configuration?: Configurati
|
|
|
69467
69766
|
* @throws {RequiredError}
|
|
69468
69767
|
*/
|
|
69469
69768
|
listEntitlementParents(requestParameters: EntitlementsV2024ApiListEntitlementParentsRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<EntitlementV2024>> {
|
|
69470
|
-
return localVarFp.listEntitlementParents(requestParameters.id, requestParameters.limit, requestParameters.offset, requestParameters.count, requestParameters.sorters, requestParameters.filters,
|
|
69769
|
+
return localVarFp.listEntitlementParents(requestParameters.id, requestParameters.limit, requestParameters.offset, requestParameters.count, requestParameters.sorters, requestParameters.filters, axiosOptions).then((request) => request(axios, basePath));
|
|
69471
69770
|
},
|
|
69472
69771
|
/**
|
|
69473
69772
|
* 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.
|
|
@@ -69477,7 +69776,7 @@ export const EntitlementsV2024ApiFactory = function (configuration?: Configurati
|
|
|
69477
69776
|
* @throws {RequiredError}
|
|
69478
69777
|
*/
|
|
69479
69778
|
listEntitlements(requestParameters: EntitlementsV2024ApiListEntitlementsRequest = {}, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<EntitlementV2024>> {
|
|
69480
|
-
return localVarFp.listEntitlements(requestParameters.accountId, requestParameters.segmentedForIdentity, requestParameters.forSegmentIds, requestParameters.includeUnsegmented, requestParameters.offset, requestParameters.limit, requestParameters.count, requestParameters.sorters, requestParameters.filters,
|
|
69779
|
+
return localVarFp.listEntitlements(requestParameters.accountId, requestParameters.segmentedForIdentity, requestParameters.forSegmentIds, requestParameters.includeUnsegmented, requestParameters.offset, requestParameters.limit, requestParameters.count, requestParameters.sorters, requestParameters.filters, axiosOptions).then((request) => request(axios, basePath));
|
|
69481
69780
|
},
|
|
69482
69781
|
/**
|
|
69483
69782
|
* 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.
|
|
@@ -69487,7 +69786,7 @@ export const EntitlementsV2024ApiFactory = function (configuration?: Configurati
|
|
|
69487
69786
|
* @throws {RequiredError}
|
|
69488
69787
|
*/
|
|
69489
69788
|
patchEntitlement(requestParameters: EntitlementsV2024ApiPatchEntitlementRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<EntitlementV2024> {
|
|
69490
|
-
return localVarFp.patchEntitlement(requestParameters.id, requestParameters.
|
|
69789
|
+
return localVarFp.patchEntitlement(requestParameters.id, requestParameters.jsonPatchOperationV2024, axiosOptions).then((request) => request(axios, basePath));
|
|
69491
69790
|
},
|
|
69492
69791
|
/**
|
|
69493
69792
|
* This API replaces the entitlement request config for a specified entitlement.
|
|
@@ -69497,7 +69796,7 @@ export const EntitlementsV2024ApiFactory = function (configuration?: Configurati
|
|
|
69497
69796
|
* @throws {RequiredError}
|
|
69498
69797
|
*/
|
|
69499
69798
|
putEntitlementRequestConfig(requestParameters: EntitlementsV2024ApiPutEntitlementRequestConfigRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<EntitlementRequestConfigV2024> {
|
|
69500
|
-
return localVarFp.putEntitlementRequestConfig(requestParameters.id, requestParameters.
|
|
69799
|
+
return localVarFp.putEntitlementRequestConfig(requestParameters.id, requestParameters.entitlementRequestConfigV2024, axiosOptions).then((request) => request(axios, basePath));
|
|
69501
69800
|
},
|
|
69502
69801
|
/**
|
|
69503
69802
|
* 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`.
|
|
@@ -69507,17 +69806,17 @@ export const EntitlementsV2024ApiFactory = function (configuration?: Configurati
|
|
|
69507
69806
|
* @throws {RequiredError}
|
|
69508
69807
|
*/
|
|
69509
69808
|
resetSourceEntitlements(requestParameters: EntitlementsV2024ApiResetSourceEntitlementsRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<EntitlementSourceResetBaseReferenceDtoV2024> {
|
|
69510
|
-
return localVarFp.resetSourceEntitlements(requestParameters.id,
|
|
69809
|
+
return localVarFp.resetSourceEntitlements(requestParameters.id, axiosOptions).then((request) => request(axios, basePath));
|
|
69511
69810
|
},
|
|
69512
69811
|
/**
|
|
69513
|
-
*
|
|
69812
|
+
* 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.
|
|
69514
69813
|
* @summary Bulk update an entitlement list
|
|
69515
69814
|
* @param {EntitlementsV2024ApiUpdateEntitlementsInBulkRequest} requestParameters Request parameters.
|
|
69516
69815
|
* @param {*} [axiosOptions] Override http request option.
|
|
69517
69816
|
* @throws {RequiredError}
|
|
69518
69817
|
*/
|
|
69519
69818
|
updateEntitlementsInBulk(requestParameters: EntitlementsV2024ApiUpdateEntitlementsInBulkRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<void> {
|
|
69520
|
-
return localVarFp.updateEntitlementsInBulk(requestParameters.entitlementBulkUpdateRequestV2024,
|
|
69819
|
+
return localVarFp.updateEntitlementsInBulk(requestParameters.entitlementBulkUpdateRequestV2024, axiosOptions).then((request) => request(axios, basePath));
|
|
69521
69820
|
},
|
|
69522
69821
|
};
|
|
69523
69822
|
};
|
|
@@ -69548,13 +69847,6 @@ export interface EntitlementsV2024ApiCreateAccessModelMetadataForEntitlementRequ
|
|
|
69548
69847
|
* @memberof EntitlementsV2024ApiCreateAccessModelMetadataForEntitlement
|
|
69549
69848
|
*/
|
|
69550
69849
|
readonly attributeValue: string
|
|
69551
|
-
|
|
69552
|
-
/**
|
|
69553
|
-
* Use this header to enable this experimental API.
|
|
69554
|
-
* @type {string}
|
|
69555
|
-
* @memberof EntitlementsV2024ApiCreateAccessModelMetadataForEntitlement
|
|
69556
|
-
*/
|
|
69557
|
-
readonly xSailPointExperimental?: string
|
|
69558
69850
|
}
|
|
69559
69851
|
|
|
69560
69852
|
/**
|
|
@@ -69583,13 +69875,6 @@ export interface EntitlementsV2024ApiDeleteAccessModelMetadataFromEntitlementReq
|
|
|
69583
69875
|
* @memberof EntitlementsV2024ApiDeleteAccessModelMetadataFromEntitlement
|
|
69584
69876
|
*/
|
|
69585
69877
|
readonly attributeValue: string
|
|
69586
|
-
|
|
69587
|
-
/**
|
|
69588
|
-
* Use this header to enable this experimental API.
|
|
69589
|
-
* @type {string}
|
|
69590
|
-
* @memberof EntitlementsV2024ApiDeleteAccessModelMetadataFromEntitlement
|
|
69591
|
-
*/
|
|
69592
|
-
readonly xSailPointExperimental: string
|
|
69593
69878
|
}
|
|
69594
69879
|
|
|
69595
69880
|
/**
|
|
@@ -69604,13 +69889,6 @@ export interface EntitlementsV2024ApiGetEntitlementRequest {
|
|
|
69604
69889
|
* @memberof EntitlementsV2024ApiGetEntitlement
|
|
69605
69890
|
*/
|
|
69606
69891
|
readonly id: string
|
|
69607
|
-
|
|
69608
|
-
/**
|
|
69609
|
-
* Use this header to enable this experimental API.
|
|
69610
|
-
* @type {string}
|
|
69611
|
-
* @memberof EntitlementsV2024ApiGetEntitlement
|
|
69612
|
-
*/
|
|
69613
|
-
readonly xSailPointExperimental?: string
|
|
69614
69892
|
}
|
|
69615
69893
|
|
|
69616
69894
|
/**
|
|
@@ -69625,13 +69903,6 @@ export interface EntitlementsV2024ApiGetEntitlementRequestConfigRequest {
|
|
|
69625
69903
|
* @memberof EntitlementsV2024ApiGetEntitlementRequestConfig
|
|
69626
69904
|
*/
|
|
69627
69905
|
readonly id: string
|
|
69628
|
-
|
|
69629
|
-
/**
|
|
69630
|
-
* Use this header to enable this experimental API.
|
|
69631
|
-
* @type {string}
|
|
69632
|
-
* @memberof EntitlementsV2024ApiGetEntitlementRequestConfig
|
|
69633
|
-
*/
|
|
69634
|
-
readonly xSailPointExperimental?: string
|
|
69635
69906
|
}
|
|
69636
69907
|
|
|
69637
69908
|
/**
|
|
@@ -69647,13 +69918,6 @@ export interface EntitlementsV2024ApiImportEntitlementsBySourceRequest {
|
|
|
69647
69918
|
*/
|
|
69648
69919
|
readonly id: string
|
|
69649
69920
|
|
|
69650
|
-
/**
|
|
69651
|
-
* Use this header to enable this experimental API.
|
|
69652
|
-
* @type {string}
|
|
69653
|
-
* @memberof EntitlementsV2024ApiImportEntitlementsBySource
|
|
69654
|
-
*/
|
|
69655
|
-
readonly xSailPointExperimental?: string
|
|
69656
|
-
|
|
69657
69921
|
/**
|
|
69658
69922
|
* The CSV file containing the source entitlements to aggregate.
|
|
69659
69923
|
* @type {File}
|
|
@@ -69709,13 +69973,6 @@ export interface EntitlementsV2024ApiListEntitlementChildrenRequest {
|
|
|
69709
69973
|
* @memberof EntitlementsV2024ApiListEntitlementChildren
|
|
69710
69974
|
*/
|
|
69711
69975
|
readonly filters?: string
|
|
69712
|
-
|
|
69713
|
-
/**
|
|
69714
|
-
* Use this header to enable this experimental API.
|
|
69715
|
-
* @type {string}
|
|
69716
|
-
* @memberof EntitlementsV2024ApiListEntitlementChildren
|
|
69717
|
-
*/
|
|
69718
|
-
readonly xSailPointExperimental?: string
|
|
69719
69976
|
}
|
|
69720
69977
|
|
|
69721
69978
|
/**
|
|
@@ -69765,13 +70022,6 @@ export interface EntitlementsV2024ApiListEntitlementParentsRequest {
|
|
|
69765
70022
|
* @memberof EntitlementsV2024ApiListEntitlementParents
|
|
69766
70023
|
*/
|
|
69767
70024
|
readonly filters?: string
|
|
69768
|
-
|
|
69769
|
-
/**
|
|
69770
|
-
* Use this header to enable this experimental API.
|
|
69771
|
-
* @type {string}
|
|
69772
|
-
* @memberof EntitlementsV2024ApiListEntitlementParents
|
|
69773
|
-
*/
|
|
69774
|
-
readonly xSailPointExperimental?: string
|
|
69775
70025
|
}
|
|
69776
70026
|
|
|
69777
70027
|
/**
|
|
@@ -69788,7 +70038,7 @@ export interface EntitlementsV2024ApiListEntitlementsRequest {
|
|
|
69788
70038
|
readonly accountId?: string
|
|
69789
70039
|
|
|
69790
70040
|
/**
|
|
69791
|
-
* 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.
|
|
70041
|
+
* 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.
|
|
69792
70042
|
* @type {string}
|
|
69793
70043
|
* @memberof EntitlementsV2024ApiListEntitlements
|
|
69794
70044
|
*/
|
|
@@ -69842,13 +70092,6 @@ export interface EntitlementsV2024ApiListEntitlementsRequest {
|
|
|
69842
70092
|
* @memberof EntitlementsV2024ApiListEntitlements
|
|
69843
70093
|
*/
|
|
69844
70094
|
readonly filters?: string
|
|
69845
|
-
|
|
69846
|
-
/**
|
|
69847
|
-
* Use this header to enable this experimental API.
|
|
69848
|
-
* @type {string}
|
|
69849
|
-
* @memberof EntitlementsV2024ApiListEntitlements
|
|
69850
|
-
*/
|
|
69851
|
-
readonly xSailPointExperimental?: string
|
|
69852
70095
|
}
|
|
69853
70096
|
|
|
69854
70097
|
/**
|
|
@@ -69864,13 +70107,6 @@ export interface EntitlementsV2024ApiPatchEntitlementRequest {
|
|
|
69864
70107
|
*/
|
|
69865
70108
|
readonly id: string
|
|
69866
70109
|
|
|
69867
|
-
/**
|
|
69868
|
-
* Use this header to enable this experimental API.
|
|
69869
|
-
* @type {string}
|
|
69870
|
-
* @memberof EntitlementsV2024ApiPatchEntitlement
|
|
69871
|
-
*/
|
|
69872
|
-
readonly xSailPointExperimental: string
|
|
69873
|
-
|
|
69874
70110
|
/**
|
|
69875
70111
|
*
|
|
69876
70112
|
* @type {Array<JsonPatchOperationV2024>}
|
|
@@ -69892,13 +70128,6 @@ export interface EntitlementsV2024ApiPutEntitlementRequestConfigRequest {
|
|
|
69892
70128
|
*/
|
|
69893
70129
|
readonly id: string
|
|
69894
70130
|
|
|
69895
|
-
/**
|
|
69896
|
-
* Use this header to enable this experimental API.
|
|
69897
|
-
* @type {string}
|
|
69898
|
-
* @memberof EntitlementsV2024ApiPutEntitlementRequestConfig
|
|
69899
|
-
*/
|
|
69900
|
-
readonly xSailPointExperimental: string
|
|
69901
|
-
|
|
69902
70131
|
/**
|
|
69903
70132
|
*
|
|
69904
70133
|
* @type {EntitlementRequestConfigV2024}
|
|
@@ -69919,13 +70148,6 @@ export interface EntitlementsV2024ApiResetSourceEntitlementsRequest {
|
|
|
69919
70148
|
* @memberof EntitlementsV2024ApiResetSourceEntitlements
|
|
69920
70149
|
*/
|
|
69921
70150
|
readonly id: string
|
|
69922
|
-
|
|
69923
|
-
/**
|
|
69924
|
-
* Use this header to enable this experimental API.
|
|
69925
|
-
* @type {string}
|
|
69926
|
-
* @memberof EntitlementsV2024ApiResetSourceEntitlements
|
|
69927
|
-
*/
|
|
69928
|
-
readonly xSailPointExperimental?: string
|
|
69929
70151
|
}
|
|
69930
70152
|
|
|
69931
70153
|
/**
|
|
@@ -69940,13 +70162,6 @@ export interface EntitlementsV2024ApiUpdateEntitlementsInBulkRequest {
|
|
|
69940
70162
|
* @memberof EntitlementsV2024ApiUpdateEntitlementsInBulk
|
|
69941
70163
|
*/
|
|
69942
70164
|
readonly entitlementBulkUpdateRequestV2024: EntitlementBulkUpdateRequestV2024
|
|
69943
|
-
|
|
69944
|
-
/**
|
|
69945
|
-
* Use this header to enable this experimental API.
|
|
69946
|
-
* @type {string}
|
|
69947
|
-
* @memberof EntitlementsV2024ApiUpdateEntitlementsInBulk
|
|
69948
|
-
*/
|
|
69949
|
-
readonly xSailPointExperimental?: string
|
|
69950
70165
|
}
|
|
69951
70166
|
|
|
69952
70167
|
/**
|
|
@@ -69965,7 +70180,7 @@ export class EntitlementsV2024Api extends BaseAPI {
|
|
|
69965
70180
|
* @memberof EntitlementsV2024Api
|
|
69966
70181
|
*/
|
|
69967
70182
|
public createAccessModelMetadataForEntitlement(requestParameters: EntitlementsV2024ApiCreateAccessModelMetadataForEntitlementRequest, axiosOptions?: RawAxiosRequestConfig) {
|
|
69968
|
-
return EntitlementsV2024ApiFp(this.configuration).createAccessModelMetadataForEntitlement(requestParameters.id, requestParameters.attributeKey, requestParameters.attributeValue,
|
|
70183
|
+
return EntitlementsV2024ApiFp(this.configuration).createAccessModelMetadataForEntitlement(requestParameters.id, requestParameters.attributeKey, requestParameters.attributeValue, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
69969
70184
|
}
|
|
69970
70185
|
|
|
69971
70186
|
/**
|
|
@@ -69977,7 +70192,7 @@ export class EntitlementsV2024Api extends BaseAPI {
|
|
|
69977
70192
|
* @memberof EntitlementsV2024Api
|
|
69978
70193
|
*/
|
|
69979
70194
|
public deleteAccessModelMetadataFromEntitlement(requestParameters: EntitlementsV2024ApiDeleteAccessModelMetadataFromEntitlementRequest, axiosOptions?: RawAxiosRequestConfig) {
|
|
69980
|
-
return EntitlementsV2024ApiFp(this.configuration).deleteAccessModelMetadataFromEntitlement(requestParameters.id, requestParameters.attributeKey, requestParameters.attributeValue,
|
|
70195
|
+
return EntitlementsV2024ApiFp(this.configuration).deleteAccessModelMetadataFromEntitlement(requestParameters.id, requestParameters.attributeKey, requestParameters.attributeValue, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
69981
70196
|
}
|
|
69982
70197
|
|
|
69983
70198
|
/**
|
|
@@ -69989,7 +70204,7 @@ export class EntitlementsV2024Api extends BaseAPI {
|
|
|
69989
70204
|
* @memberof EntitlementsV2024Api
|
|
69990
70205
|
*/
|
|
69991
70206
|
public getEntitlement(requestParameters: EntitlementsV2024ApiGetEntitlementRequest, axiosOptions?: RawAxiosRequestConfig) {
|
|
69992
|
-
return EntitlementsV2024ApiFp(this.configuration).getEntitlement(requestParameters.id,
|
|
70207
|
+
return EntitlementsV2024ApiFp(this.configuration).getEntitlement(requestParameters.id, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
69993
70208
|
}
|
|
69994
70209
|
|
|
69995
70210
|
/**
|
|
@@ -70001,7 +70216,7 @@ export class EntitlementsV2024Api extends BaseAPI {
|
|
|
70001
70216
|
* @memberof EntitlementsV2024Api
|
|
70002
70217
|
*/
|
|
70003
70218
|
public getEntitlementRequestConfig(requestParameters: EntitlementsV2024ApiGetEntitlementRequestConfigRequest, axiosOptions?: RawAxiosRequestConfig) {
|
|
70004
|
-
return EntitlementsV2024ApiFp(this.configuration).getEntitlementRequestConfig(requestParameters.id,
|
|
70219
|
+
return EntitlementsV2024ApiFp(this.configuration).getEntitlementRequestConfig(requestParameters.id, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
70005
70220
|
}
|
|
70006
70221
|
|
|
70007
70222
|
/**
|
|
@@ -70014,7 +70229,7 @@ export class EntitlementsV2024Api extends BaseAPI {
|
|
|
70014
70229
|
* @memberof EntitlementsV2024Api
|
|
70015
70230
|
*/
|
|
70016
70231
|
public importEntitlementsBySource(requestParameters: EntitlementsV2024ApiImportEntitlementsBySourceRequest, axiosOptions?: RawAxiosRequestConfig) {
|
|
70017
|
-
return EntitlementsV2024ApiFp(this.configuration).importEntitlementsBySource(requestParameters.id, requestParameters.
|
|
70232
|
+
return EntitlementsV2024ApiFp(this.configuration).importEntitlementsBySource(requestParameters.id, requestParameters.csvFile, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
70018
70233
|
}
|
|
70019
70234
|
|
|
70020
70235
|
/**
|
|
@@ -70026,7 +70241,7 @@ export class EntitlementsV2024Api extends BaseAPI {
|
|
|
70026
70241
|
* @memberof EntitlementsV2024Api
|
|
70027
70242
|
*/
|
|
70028
70243
|
public listEntitlementChildren(requestParameters: EntitlementsV2024ApiListEntitlementChildrenRequest, axiosOptions?: RawAxiosRequestConfig) {
|
|
70029
|
-
return EntitlementsV2024ApiFp(this.configuration).listEntitlementChildren(requestParameters.id, requestParameters.limit, requestParameters.offset, requestParameters.count, requestParameters.sorters, requestParameters.filters,
|
|
70244
|
+
return EntitlementsV2024ApiFp(this.configuration).listEntitlementChildren(requestParameters.id, requestParameters.limit, requestParameters.offset, requestParameters.count, requestParameters.sorters, requestParameters.filters, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
70030
70245
|
}
|
|
70031
70246
|
|
|
70032
70247
|
/**
|
|
@@ -70038,7 +70253,7 @@ export class EntitlementsV2024Api extends BaseAPI {
|
|
|
70038
70253
|
* @memberof EntitlementsV2024Api
|
|
70039
70254
|
*/
|
|
70040
70255
|
public listEntitlementParents(requestParameters: EntitlementsV2024ApiListEntitlementParentsRequest, axiosOptions?: RawAxiosRequestConfig) {
|
|
70041
|
-
return EntitlementsV2024ApiFp(this.configuration).listEntitlementParents(requestParameters.id, requestParameters.limit, requestParameters.offset, requestParameters.count, requestParameters.sorters, requestParameters.filters,
|
|
70256
|
+
return EntitlementsV2024ApiFp(this.configuration).listEntitlementParents(requestParameters.id, requestParameters.limit, requestParameters.offset, requestParameters.count, requestParameters.sorters, requestParameters.filters, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
70042
70257
|
}
|
|
70043
70258
|
|
|
70044
70259
|
/**
|
|
@@ -70050,7 +70265,7 @@ export class EntitlementsV2024Api extends BaseAPI {
|
|
|
70050
70265
|
* @memberof EntitlementsV2024Api
|
|
70051
70266
|
*/
|
|
70052
70267
|
public listEntitlements(requestParameters: EntitlementsV2024ApiListEntitlementsRequest = {}, axiosOptions?: RawAxiosRequestConfig) {
|
|
70053
|
-
return EntitlementsV2024ApiFp(this.configuration).listEntitlements(requestParameters.accountId, requestParameters.segmentedForIdentity, requestParameters.forSegmentIds, requestParameters.includeUnsegmented, requestParameters.offset, requestParameters.limit, requestParameters.count, requestParameters.sorters, requestParameters.filters,
|
|
70268
|
+
return EntitlementsV2024ApiFp(this.configuration).listEntitlements(requestParameters.accountId, requestParameters.segmentedForIdentity, requestParameters.forSegmentIds, requestParameters.includeUnsegmented, requestParameters.offset, requestParameters.limit, requestParameters.count, requestParameters.sorters, requestParameters.filters, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
70054
70269
|
}
|
|
70055
70270
|
|
|
70056
70271
|
/**
|
|
@@ -70062,7 +70277,7 @@ export class EntitlementsV2024Api extends BaseAPI {
|
|
|
70062
70277
|
* @memberof EntitlementsV2024Api
|
|
70063
70278
|
*/
|
|
70064
70279
|
public patchEntitlement(requestParameters: EntitlementsV2024ApiPatchEntitlementRequest, axiosOptions?: RawAxiosRequestConfig) {
|
|
70065
|
-
return EntitlementsV2024ApiFp(this.configuration).patchEntitlement(requestParameters.id, requestParameters.
|
|
70280
|
+
return EntitlementsV2024ApiFp(this.configuration).patchEntitlement(requestParameters.id, requestParameters.jsonPatchOperationV2024, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
70066
70281
|
}
|
|
70067
70282
|
|
|
70068
70283
|
/**
|
|
@@ -70074,7 +70289,7 @@ export class EntitlementsV2024Api extends BaseAPI {
|
|
|
70074
70289
|
* @memberof EntitlementsV2024Api
|
|
70075
70290
|
*/
|
|
70076
70291
|
public putEntitlementRequestConfig(requestParameters: EntitlementsV2024ApiPutEntitlementRequestConfigRequest, axiosOptions?: RawAxiosRequestConfig) {
|
|
70077
|
-
return EntitlementsV2024ApiFp(this.configuration).putEntitlementRequestConfig(requestParameters.id, requestParameters.
|
|
70292
|
+
return EntitlementsV2024ApiFp(this.configuration).putEntitlementRequestConfig(requestParameters.id, requestParameters.entitlementRequestConfigV2024, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
70078
70293
|
}
|
|
70079
70294
|
|
|
70080
70295
|
/**
|
|
@@ -70086,11 +70301,11 @@ export class EntitlementsV2024Api extends BaseAPI {
|
|
|
70086
70301
|
* @memberof EntitlementsV2024Api
|
|
70087
70302
|
*/
|
|
70088
70303
|
public resetSourceEntitlements(requestParameters: EntitlementsV2024ApiResetSourceEntitlementsRequest, axiosOptions?: RawAxiosRequestConfig) {
|
|
70089
|
-
return EntitlementsV2024ApiFp(this.configuration).resetSourceEntitlements(requestParameters.id,
|
|
70304
|
+
return EntitlementsV2024ApiFp(this.configuration).resetSourceEntitlements(requestParameters.id, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
70090
70305
|
}
|
|
70091
70306
|
|
|
70092
70307
|
/**
|
|
70093
|
-
*
|
|
70308
|
+
* 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.
|
|
70094
70309
|
* @summary Bulk update an entitlement list
|
|
70095
70310
|
* @param {EntitlementsV2024ApiUpdateEntitlementsInBulkRequest} requestParameters Request parameters.
|
|
70096
70311
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -70098,7 +70313,7 @@ export class EntitlementsV2024Api extends BaseAPI {
|
|
|
70098
70313
|
* @memberof EntitlementsV2024Api
|
|
70099
70314
|
*/
|
|
70100
70315
|
public updateEntitlementsInBulk(requestParameters: EntitlementsV2024ApiUpdateEntitlementsInBulkRequest, axiosOptions?: RawAxiosRequestConfig) {
|
|
70101
|
-
return EntitlementsV2024ApiFp(this.configuration).updateEntitlementsInBulk(requestParameters.entitlementBulkUpdateRequestV2024,
|
|
70316
|
+
return EntitlementsV2024ApiFp(this.configuration).updateEntitlementsInBulk(requestParameters.entitlementBulkUpdateRequestV2024, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
70102
70317
|
}
|
|
70103
70318
|
}
|
|
70104
70319
|
|
|
@@ -81924,7 +82139,7 @@ export const IdentityHistoryV2024ApiAxiosParamCreator = function (configuration?
|
|
|
81924
82139
|
},
|
|
81925
82140
|
/**
|
|
81926
82141
|
* This method retrieves all access events for the identity Requires authorization scope of \'idn:identity-history:read\'
|
|
81927
|
-
* @summary
|
|
82142
|
+
* @summary List identity event history
|
|
81928
82143
|
* @param {string} id The identity id
|
|
81929
82144
|
* @param {string} [from] The optional instant until which access events are returned
|
|
81930
82145
|
* @param {Array<string>} [eventTypes] An optional list of event types to return. If null or empty, all events are returned
|
|
@@ -81958,11 +82173,11 @@ export const IdentityHistoryV2024ApiAxiosParamCreator = function (configuration?
|
|
|
81958
82173
|
|
|
81959
82174
|
// authentication userAuth required
|
|
81960
82175
|
// oauth required
|
|
81961
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
82176
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
81962
82177
|
|
|
81963
82178
|
// authentication userAuth required
|
|
81964
82179
|
// oauth required
|
|
81965
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
82180
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
81966
82181
|
|
|
81967
82182
|
if (from !== undefined) {
|
|
81968
82183
|
localVarQueryParameter['from'] = from;
|
|
@@ -82261,7 +82476,7 @@ export const IdentityHistoryV2024ApiAxiosParamCreator = function (configuration?
|
|
|
82261
82476
|
* This method retrieves a list of access item for the identity filtered by the access item type
|
|
82262
82477
|
* @summary List access items by identity
|
|
82263
82478
|
* @param {string} id The identity id
|
|
82264
|
-
* @param {
|
|
82479
|
+
* @param {ListIdentityAccessItemsTypeV2024} [type] The type of access item for the identity. If not provided, it defaults to account
|
|
82265
82480
|
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
82266
82481
|
* @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.
|
|
82267
82482
|
* @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.
|
|
@@ -82269,7 +82484,7 @@ export const IdentityHistoryV2024ApiAxiosParamCreator = function (configuration?
|
|
|
82269
82484
|
* @param {*} [axiosOptions] Override http request option.
|
|
82270
82485
|
* @throws {RequiredError}
|
|
82271
82486
|
*/
|
|
82272
|
-
listIdentityAccessItems: async (id: string, type?:
|
|
82487
|
+
listIdentityAccessItems: async (id: string, type?: ListIdentityAccessItemsTypeV2024, xSailPointExperimental?: string, limit?: number, count?: boolean, offset?: number, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
82273
82488
|
// verify required parameter 'id' is not null or undefined
|
|
82274
82489
|
assertParamExists('listIdentityAccessItems', 'id', id)
|
|
82275
82490
|
if (xSailPointExperimental === undefined) {
|
|
@@ -82528,7 +82743,7 @@ export const IdentityHistoryV2024ApiFp = function(configuration?: Configuration)
|
|
|
82528
82743
|
},
|
|
82529
82744
|
/**
|
|
82530
82745
|
* This method retrieves all access events for the identity Requires authorization scope of \'idn:identity-history:read\'
|
|
82531
|
-
* @summary
|
|
82746
|
+
* @summary List identity event history
|
|
82532
82747
|
* @param {string} id The identity id
|
|
82533
82748
|
* @param {string} [from] The optional instant until which access events are returned
|
|
82534
82749
|
* @param {Array<string>} [eventTypes] An optional list of event types to return. If null or empty, all events are returned
|
|
@@ -82617,7 +82832,7 @@ export const IdentityHistoryV2024ApiFp = function(configuration?: Configuration)
|
|
|
82617
82832
|
* This method retrieves a list of access item for the identity filtered by the access item type
|
|
82618
82833
|
* @summary List access items by identity
|
|
82619
82834
|
* @param {string} id The identity id
|
|
82620
|
-
* @param {
|
|
82835
|
+
* @param {ListIdentityAccessItemsTypeV2024} [type] The type of access item for the identity. If not provided, it defaults to account
|
|
82621
82836
|
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
82622
82837
|
* @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.
|
|
82623
82838
|
* @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.
|
|
@@ -82625,7 +82840,7 @@ export const IdentityHistoryV2024ApiFp = function(configuration?: Configuration)
|
|
|
82625
82840
|
* @param {*} [axiosOptions] Override http request option.
|
|
82626
82841
|
* @throws {RequiredError}
|
|
82627
82842
|
*/
|
|
82628
|
-
async listIdentityAccessItems(id: string, type?:
|
|
82843
|
+
async listIdentityAccessItems(id: string, type?: ListIdentityAccessItemsTypeV2024, xSailPointExperimental?: string, limit?: number, count?: boolean, offset?: number, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<ListIdentityAccessItems200ResponseInnerV2024>>> {
|
|
82629
82844
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listIdentityAccessItems(id, type, xSailPointExperimental, limit, count, offset, axiosOptions);
|
|
82630
82845
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
82631
82846
|
const localVarOperationServerBasePath = operationServerMap['IdentityHistoryV2024Api.listIdentityAccessItems']?.[localVarOperationServerIndex]?.url;
|
|
@@ -82641,7 +82856,7 @@ export const IdentityHistoryV2024ApiFp = function(configuration?: Configuration)
|
|
|
82641
82856
|
* @param {*} [axiosOptions] Override http request option.
|
|
82642
82857
|
* @throws {RequiredError}
|
|
82643
82858
|
*/
|
|
82644
|
-
async listIdentitySnapshotAccessItems(id: string, date: string, type?: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<
|
|
82859
|
+
async listIdentitySnapshotAccessItems(id: string, date: string, type?: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<ListIdentitySnapshotAccessItems200ResponseInnerV2024>>> {
|
|
82645
82860
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listIdentitySnapshotAccessItems(id, date, type, xSailPointExperimental, axiosOptions);
|
|
82646
82861
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
82647
82862
|
const localVarOperationServerBasePath = operationServerMap['IdentityHistoryV2024Api.listIdentitySnapshotAccessItems']?.[localVarOperationServerIndex]?.url;
|
|
@@ -82708,7 +82923,7 @@ export const IdentityHistoryV2024ApiFactory = function (configuration?: Configur
|
|
|
82708
82923
|
},
|
|
82709
82924
|
/**
|
|
82710
82925
|
* This method retrieves all access events for the identity Requires authorization scope of \'idn:identity-history:read\'
|
|
82711
|
-
* @summary
|
|
82926
|
+
* @summary List identity event history
|
|
82712
82927
|
* @param {IdentityHistoryV2024ApiGetHistoricalIdentityEventsRequest} requestParameters Request parameters.
|
|
82713
82928
|
* @param {*} [axiosOptions] Override http request option.
|
|
82714
82929
|
* @throws {RequiredError}
|
|
@@ -82773,7 +82988,7 @@ export const IdentityHistoryV2024ApiFactory = function (configuration?: Configur
|
|
|
82773
82988
|
* @param {*} [axiosOptions] Override http request option.
|
|
82774
82989
|
* @throws {RequiredError}
|
|
82775
82990
|
*/
|
|
82776
|
-
listIdentitySnapshotAccessItems(requestParameters: IdentityHistoryV2024ApiListIdentitySnapshotAccessItemsRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<
|
|
82991
|
+
listIdentitySnapshotAccessItems(requestParameters: IdentityHistoryV2024ApiListIdentitySnapshotAccessItemsRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<ListIdentitySnapshotAccessItems200ResponseInnerV2024>> {
|
|
82777
82992
|
return localVarFp.listIdentitySnapshotAccessItems(requestParameters.id, requestParameters.date, requestParameters.type, requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(axios, basePath));
|
|
82778
82993
|
},
|
|
82779
82994
|
/**
|
|
@@ -83182,10 +83397,10 @@ export interface IdentityHistoryV2024ApiListIdentityAccessItemsRequest {
|
|
|
83182
83397
|
|
|
83183
83398
|
/**
|
|
83184
83399
|
* The type of access item for the identity. If not provided, it defaults to account
|
|
83185
|
-
* @type {
|
|
83400
|
+
* @type {'account' | 'entitlement' | 'app' | 'accessProfile' | 'role'}
|
|
83186
83401
|
* @memberof IdentityHistoryV2024ApiListIdentityAccessItems
|
|
83187
83402
|
*/
|
|
83188
|
-
readonly type?:
|
|
83403
|
+
readonly type?: ListIdentityAccessItemsTypeV2024
|
|
83189
83404
|
|
|
83190
83405
|
/**
|
|
83191
83406
|
* Use this header to enable this experimental API.
|
|
@@ -83352,7 +83567,7 @@ export class IdentityHistoryV2024Api extends BaseAPI {
|
|
|
83352
83567
|
|
|
83353
83568
|
/**
|
|
83354
83569
|
* This method retrieves all access events for the identity Requires authorization scope of \'idn:identity-history:read\'
|
|
83355
|
-
* @summary
|
|
83570
|
+
* @summary List identity event history
|
|
83356
83571
|
* @param {IdentityHistoryV2024ApiGetHistoricalIdentityEventsRequest} requestParameters Request parameters.
|
|
83357
83572
|
* @param {*} [axiosOptions] Override http request option.
|
|
83358
83573
|
* @throws {RequiredError}
|
|
@@ -83466,6 +83681,17 @@ export const GetIdentitySnapshotSummaryIntervalV2024 = {
|
|
|
83466
83681
|
Month: 'month'
|
|
83467
83682
|
} as const;
|
|
83468
83683
|
export type GetIdentitySnapshotSummaryIntervalV2024 = typeof GetIdentitySnapshotSummaryIntervalV2024[keyof typeof GetIdentitySnapshotSummaryIntervalV2024];
|
|
83684
|
+
/**
|
|
83685
|
+
* @export
|
|
83686
|
+
*/
|
|
83687
|
+
export const ListIdentityAccessItemsTypeV2024 = {
|
|
83688
|
+
Account: 'account',
|
|
83689
|
+
Entitlement: 'entitlement',
|
|
83690
|
+
App: 'app',
|
|
83691
|
+
AccessProfile: 'accessProfile',
|
|
83692
|
+
Role: 'role'
|
|
83693
|
+
} as const;
|
|
83694
|
+
export type ListIdentityAccessItemsTypeV2024 = typeof ListIdentityAccessItemsTypeV2024[keyof typeof ListIdentityAccessItemsTypeV2024];
|
|
83469
83695
|
/**
|
|
83470
83696
|
* @export
|
|
83471
83697
|
*/
|
|
@@ -100886,7 +101112,7 @@ export type GetReportFileFormatV2024 = typeof GetReportFileFormatV2024[keyof typ
|
|
|
100886
101112
|
export const RequestableObjectsV2024ApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
100887
101113
|
return {
|
|
100888
101114
|
/**
|
|
100889
|
-
* 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.
|
|
101115
|
+
* 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.
|
|
100890
101116
|
* @summary Requestable objects list
|
|
100891
101117
|
* @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.
|
|
100892
101118
|
* @param {Array<ListRequestableObjectsTypesV2024>} [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.
|
|
@@ -100979,7 +101205,7 @@ export const RequestableObjectsV2024ApiFp = function(configuration?: Configurati
|
|
|
100979
101205
|
const localVarAxiosParamCreator = RequestableObjectsV2024ApiAxiosParamCreator(configuration)
|
|
100980
101206
|
return {
|
|
100981
101207
|
/**
|
|
100982
|
-
* 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.
|
|
101208
|
+
* 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.
|
|
100983
101209
|
* @summary Requestable objects list
|
|
100984
101210
|
* @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.
|
|
100985
101211
|
* @param {Array<ListRequestableObjectsTypesV2024>} [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.
|
|
@@ -101010,7 +101236,7 @@ export const RequestableObjectsV2024ApiFactory = function (configuration?: Confi
|
|
|
101010
101236
|
const localVarFp = RequestableObjectsV2024ApiFp(configuration)
|
|
101011
101237
|
return {
|
|
101012
101238
|
/**
|
|
101013
|
-
* 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.
|
|
101239
|
+
* 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.
|
|
101014
101240
|
* @summary Requestable objects list
|
|
101015
101241
|
* @param {RequestableObjectsV2024ApiListRequestableObjectsRequest} requestParameters Request parameters.
|
|
101016
101242
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -101100,7 +101326,7 @@ export interface RequestableObjectsV2024ApiListRequestableObjectsRequest {
|
|
|
101100
101326
|
*/
|
|
101101
101327
|
export class RequestableObjectsV2024Api extends BaseAPI {
|
|
101102
101328
|
/**
|
|
101103
|
-
* 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.
|
|
101329
|
+
* 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.
|
|
101104
101330
|
* @summary Requestable objects list
|
|
101105
101331
|
* @param {RequestableObjectsV2024ApiListRequestableObjectsRequest} requestParameters Request parameters.
|
|
101106
101332
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -113201,18 +113427,13 @@ export const SourcesV2024ApiAxiosParamCreator = function (configuration?: Config
|
|
|
113201
113427
|
* 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.
|
|
113202
113428
|
* @summary Entitlement aggregation
|
|
113203
113429
|
* @param {string} sourceId Source Id
|
|
113204
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
113205
113430
|
* @param {File} [file] The CSV file containing the source entitlements to aggregate.
|
|
113206
113431
|
* @param {*} [axiosOptions] Override http request option.
|
|
113207
113432
|
* @throws {RequiredError}
|
|
113208
113433
|
*/
|
|
113209
|
-
importEntitlements: async (sourceId: string,
|
|
113434
|
+
importEntitlements: async (sourceId: string, file?: File, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
113210
113435
|
// verify required parameter 'sourceId' is not null or undefined
|
|
113211
113436
|
assertParamExists('importEntitlements', 'sourceId', sourceId)
|
|
113212
|
-
if (xSailPointExperimental === undefined) {
|
|
113213
|
-
xSailPointExperimental = 'true';
|
|
113214
|
-
}
|
|
113215
|
-
|
|
113216
113437
|
const localVarPath = `/sources/{sourceId}/load-entitlements`
|
|
113217
113438
|
.replace(`{${"sourceId"}}`, encodeURIComponent(String(sourceId)));
|
|
113218
113439
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
@@ -113243,9 +113464,6 @@ export const SourcesV2024ApiAxiosParamCreator = function (configuration?: Config
|
|
|
113243
113464
|
|
|
113244
113465
|
localVarHeaderParameter['Content-Type'] = 'multipart/form-data';
|
|
113245
113466
|
|
|
113246
|
-
if (xSailPointExperimental != null) {
|
|
113247
|
-
localVarHeaderParameter['X-SailPoint-Experimental'] = String(xSailPointExperimental);
|
|
113248
|
-
}
|
|
113249
113467
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
113250
113468
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
113251
113469
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
|
|
@@ -114779,13 +114997,12 @@ export const SourcesV2024ApiFp = function(configuration?: Configuration) {
|
|
|
114779
114997
|
* 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.
|
|
114780
114998
|
* @summary Entitlement aggregation
|
|
114781
114999
|
* @param {string} sourceId Source Id
|
|
114782
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
114783
115000
|
* @param {File} [file] The CSV file containing the source entitlements to aggregate.
|
|
114784
115001
|
* @param {*} [axiosOptions] Override http request option.
|
|
114785
115002
|
* @throws {RequiredError}
|
|
114786
115003
|
*/
|
|
114787
|
-
async importEntitlements(sourceId: string,
|
|
114788
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.importEntitlements(sourceId,
|
|
115004
|
+
async importEntitlements(sourceId: string, file?: File, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<LoadEntitlementTaskV2024>> {
|
|
115005
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.importEntitlements(sourceId, file, axiosOptions);
|
|
114789
115006
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
114790
115007
|
const localVarOperationServerBasePath = operationServerMap['SourcesV2024Api.importEntitlements']?.[localVarOperationServerIndex]?.url;
|
|
114791
115008
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -115404,7 +115621,7 @@ export const SourcesV2024ApiFactory = function (configuration?: Configuration, b
|
|
|
115404
115621
|
* @throws {RequiredError}
|
|
115405
115622
|
*/
|
|
115406
115623
|
importEntitlements(requestParameters: SourcesV2024ApiImportEntitlementsRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<LoadEntitlementTaskV2024> {
|
|
115407
|
-
return localVarFp.importEntitlements(requestParameters.sourceId, requestParameters.
|
|
115624
|
+
return localVarFp.importEntitlements(requestParameters.sourceId, requestParameters.file, axiosOptions).then((request) => request(axios, basePath));
|
|
115408
115625
|
},
|
|
115409
115626
|
/**
|
|
115410
115627
|
* 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.**
|
|
@@ -116167,13 +116384,6 @@ export interface SourcesV2024ApiImportEntitlementsRequest {
|
|
|
116167
116384
|
*/
|
|
116168
116385
|
readonly sourceId: string
|
|
116169
116386
|
|
|
116170
|
-
/**
|
|
116171
|
-
* Use this header to enable this experimental API.
|
|
116172
|
-
* @type {string}
|
|
116173
|
-
* @memberof SourcesV2024ApiImportEntitlements
|
|
116174
|
-
*/
|
|
116175
|
-
readonly xSailPointExperimental?: string
|
|
116176
|
-
|
|
116177
116387
|
/**
|
|
116178
116388
|
* The CSV file containing the source entitlements to aggregate.
|
|
116179
116389
|
* @type {File}
|
|
@@ -117052,7 +117262,7 @@ export class SourcesV2024Api extends BaseAPI {
|
|
|
117052
117262
|
* @memberof SourcesV2024Api
|
|
117053
117263
|
*/
|
|
117054
117264
|
public importEntitlements(requestParameters: SourcesV2024ApiImportEntitlementsRequest, axiosOptions?: RawAxiosRequestConfig) {
|
|
117055
|
-
return SourcesV2024ApiFp(this.configuration).importEntitlements(requestParameters.sourceId, requestParameters.
|
|
117265
|
+
return SourcesV2024ApiFp(this.configuration).importEntitlements(requestParameters.sourceId, requestParameters.file, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
117056
117266
|
}
|
|
117057
117267
|
|
|
117058
117268
|
/**
|
|
@@ -119206,20 +119416,13 @@ export const TaskManagementV2024ApiAxiosParamCreator = function (configuration?:
|
|
|
119206
119416
|
/**
|
|
119207
119417
|
* Responds with headers only for list of task statuses for pending tasks.
|
|
119208
119418
|
* @summary Retrieve pending task list headers
|
|
119209
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
119210
119419
|
* @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.
|
|
119211
119420
|
* @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.
|
|
119212
119421
|
* @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.
|
|
119213
119422
|
* @param {*} [axiosOptions] Override http request option.
|
|
119214
119423
|
* @throws {RequiredError}
|
|
119215
119424
|
*/
|
|
119216
|
-
getPendingTaskHeaders: async (
|
|
119217
|
-
if (xSailPointExperimental === undefined) {
|
|
119218
|
-
xSailPointExperimental = 'true';
|
|
119219
|
-
}
|
|
119220
|
-
|
|
119221
|
-
// verify required parameter 'xSailPointExperimental' is not null or undefined
|
|
119222
|
-
assertParamExists('getPendingTaskHeaders', 'xSailPointExperimental', xSailPointExperimental)
|
|
119425
|
+
getPendingTaskHeaders: async (offset?: number, limit?: number, count?: boolean, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
119223
119426
|
const localVarPath = `/task-status/pending-tasks`;
|
|
119224
119427
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
119225
119428
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -119258,9 +119461,6 @@ export const TaskManagementV2024ApiAxiosParamCreator = function (configuration?:
|
|
|
119258
119461
|
|
|
119259
119462
|
|
|
119260
119463
|
|
|
119261
|
-
if (xSailPointExperimental != null) {
|
|
119262
|
-
localVarHeaderParameter['X-SailPoint-Experimental'] = String(xSailPointExperimental);
|
|
119263
|
-
}
|
|
119264
119464
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
119265
119465
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
119266
119466
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
|
|
@@ -119276,15 +119476,10 @@ export const TaskManagementV2024ApiAxiosParamCreator = function (configuration?:
|
|
|
119276
119476
|
* @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.
|
|
119277
119477
|
* @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.
|
|
119278
119478
|
* @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.
|
|
119279
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
119280
119479
|
* @param {*} [axiosOptions] Override http request option.
|
|
119281
119480
|
* @throws {RequiredError}
|
|
119282
119481
|
*/
|
|
119283
|
-
getPendingTasks: async (offset?: number, limit?: number, count?: boolean,
|
|
119284
|
-
if (xSailPointExperimental === undefined) {
|
|
119285
|
-
xSailPointExperimental = 'true';
|
|
119286
|
-
}
|
|
119287
|
-
|
|
119482
|
+
getPendingTasks: async (offset?: number, limit?: number, count?: boolean, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
119288
119483
|
const localVarPath = `/task-status/pending-tasks`;
|
|
119289
119484
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
119290
119485
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -119323,9 +119518,6 @@ export const TaskManagementV2024ApiAxiosParamCreator = function (configuration?:
|
|
|
119323
119518
|
|
|
119324
119519
|
|
|
119325
119520
|
|
|
119326
|
-
if (xSailPointExperimental != null) {
|
|
119327
|
-
localVarHeaderParameter['X-SailPoint-Experimental'] = String(xSailPointExperimental);
|
|
119328
|
-
}
|
|
119329
119521
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
119330
119522
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
119331
119523
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
|
|
@@ -119339,17 +119531,12 @@ export const TaskManagementV2024ApiAxiosParamCreator = function (configuration?:
|
|
|
119339
119531
|
* 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.
|
|
119340
119532
|
* @summary Get task status by id
|
|
119341
119533
|
* @param {string} id Task ID.
|
|
119342
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
119343
119534
|
* @param {*} [axiosOptions] Override http request option.
|
|
119344
119535
|
* @throws {RequiredError}
|
|
119345
119536
|
*/
|
|
119346
|
-
getTaskStatus: async (id: string,
|
|
119537
|
+
getTaskStatus: async (id: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
119347
119538
|
// verify required parameter 'id' is not null or undefined
|
|
119348
119539
|
assertParamExists('getTaskStatus', 'id', id)
|
|
119349
|
-
if (xSailPointExperimental === undefined) {
|
|
119350
|
-
xSailPointExperimental = 'true';
|
|
119351
|
-
}
|
|
119352
|
-
|
|
119353
119540
|
const localVarPath = `/task-status/{id}`
|
|
119354
119541
|
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
119355
119542
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
@@ -119377,9 +119564,6 @@ export const TaskManagementV2024ApiAxiosParamCreator = function (configuration?:
|
|
|
119377
119564
|
|
|
119378
119565
|
|
|
119379
119566
|
|
|
119380
|
-
if (xSailPointExperimental != null) {
|
|
119381
|
-
localVarHeaderParameter['X-SailPoint-Experimental'] = String(xSailPointExperimental);
|
|
119382
|
-
}
|
|
119383
119567
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
119384
119568
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
119385
119569
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
|
|
@@ -119397,15 +119581,10 @@ export const TaskManagementV2024ApiAxiosParamCreator = function (configuration?:
|
|
|
119397
119581
|
* @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.
|
|
119398
119582
|
* @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*
|
|
119399
119583
|
* @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**
|
|
119400
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
119401
119584
|
* @param {*} [axiosOptions] Override http request option.
|
|
119402
119585
|
* @throws {RequiredError}
|
|
119403
119586
|
*/
|
|
119404
|
-
getTaskStatusList: async (limit?: number, offset?: number, count?: boolean, filters?: string, sorters?: string,
|
|
119405
|
-
if (xSailPointExperimental === undefined) {
|
|
119406
|
-
xSailPointExperimental = 'true';
|
|
119407
|
-
}
|
|
119408
|
-
|
|
119587
|
+
getTaskStatusList: async (limit?: number, offset?: number, count?: boolean, filters?: string, sorters?: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
119409
119588
|
const localVarPath = `/task-status`;
|
|
119410
119589
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
119411
119590
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -119452,9 +119631,6 @@ export const TaskManagementV2024ApiAxiosParamCreator = function (configuration?:
|
|
|
119452
119631
|
|
|
119453
119632
|
|
|
119454
119633
|
|
|
119455
|
-
if (xSailPointExperimental != null) {
|
|
119456
|
-
localVarHeaderParameter['X-SailPoint-Experimental'] = String(xSailPointExperimental);
|
|
119457
|
-
}
|
|
119458
119634
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
119459
119635
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
119460
119636
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
|
|
@@ -119468,20 +119644,13 @@ export const TaskManagementV2024ApiAxiosParamCreator = function (configuration?:
|
|
|
119468
119644
|
* Update a current task status by task ID. Use this API to clear a pending task by updating the completionStatus and completed attributes.
|
|
119469
119645
|
* @summary Update task status by id
|
|
119470
119646
|
* @param {string} id Task ID.
|
|
119471
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
119472
119647
|
* @param {Array<JsonPatchOperationV2024>} jsonPatchOperationV2024 The JSONPatch payload used to update the object.
|
|
119473
119648
|
* @param {*} [axiosOptions] Override http request option.
|
|
119474
119649
|
* @throws {RequiredError}
|
|
119475
119650
|
*/
|
|
119476
|
-
updateTaskStatus: async (id: string,
|
|
119651
|
+
updateTaskStatus: async (id: string, jsonPatchOperationV2024: Array<JsonPatchOperationV2024>, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
119477
119652
|
// verify required parameter 'id' is not null or undefined
|
|
119478
119653
|
assertParamExists('updateTaskStatus', 'id', id)
|
|
119479
|
-
if (xSailPointExperimental === undefined) {
|
|
119480
|
-
xSailPointExperimental = 'true';
|
|
119481
|
-
}
|
|
119482
|
-
|
|
119483
|
-
// verify required parameter 'xSailPointExperimental' is not null or undefined
|
|
119484
|
-
assertParamExists('updateTaskStatus', 'xSailPointExperimental', xSailPointExperimental)
|
|
119485
119654
|
// verify required parameter 'jsonPatchOperationV2024' is not null or undefined
|
|
119486
119655
|
assertParamExists('updateTaskStatus', 'jsonPatchOperationV2024', jsonPatchOperationV2024)
|
|
119487
119656
|
const localVarPath = `/task-status/{id}`
|
|
@@ -119509,9 +119678,6 @@ export const TaskManagementV2024ApiAxiosParamCreator = function (configuration?:
|
|
|
119509
119678
|
|
|
119510
119679
|
localVarHeaderParameter['Content-Type'] = 'application/json-patch+json';
|
|
119511
119680
|
|
|
119512
|
-
if (xSailPointExperimental != null) {
|
|
119513
|
-
localVarHeaderParameter['X-SailPoint-Experimental'] = String(xSailPointExperimental);
|
|
119514
|
-
}
|
|
119515
119681
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
119516
119682
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
119517
119683
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
|
|
@@ -119535,15 +119701,14 @@ export const TaskManagementV2024ApiFp = function(configuration?: Configuration)
|
|
|
119535
119701
|
/**
|
|
119536
119702
|
* Responds with headers only for list of task statuses for pending tasks.
|
|
119537
119703
|
* @summary Retrieve pending task list headers
|
|
119538
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
119539
119704
|
* @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.
|
|
119540
119705
|
* @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.
|
|
119541
119706
|
* @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.
|
|
119542
119707
|
* @param {*} [axiosOptions] Override http request option.
|
|
119543
119708
|
* @throws {RequiredError}
|
|
119544
119709
|
*/
|
|
119545
|
-
async getPendingTaskHeaders(
|
|
119546
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.getPendingTaskHeaders(
|
|
119710
|
+
async getPendingTaskHeaders(offset?: number, limit?: number, count?: boolean, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
|
|
119711
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getPendingTaskHeaders(offset, limit, count, axiosOptions);
|
|
119547
119712
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
119548
119713
|
const localVarOperationServerBasePath = operationServerMap['TaskManagementV2024Api.getPendingTaskHeaders']?.[localVarOperationServerIndex]?.url;
|
|
119549
119714
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -119554,12 +119719,11 @@ export const TaskManagementV2024ApiFp = function(configuration?: Configuration)
|
|
|
119554
119719
|
* @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.
|
|
119555
119720
|
* @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.
|
|
119556
119721
|
* @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.
|
|
119557
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
119558
119722
|
* @param {*} [axiosOptions] Override http request option.
|
|
119559
119723
|
* @throws {RequiredError}
|
|
119560
119724
|
*/
|
|
119561
|
-
async getPendingTasks(offset?: number, limit?: number, count?: boolean,
|
|
119562
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.getPendingTasks(offset, limit, count,
|
|
119725
|
+
async getPendingTasks(offset?: number, limit?: number, count?: boolean, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<TaskStatusV2024>>> {
|
|
119726
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getPendingTasks(offset, limit, count, axiosOptions);
|
|
119563
119727
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
119564
119728
|
const localVarOperationServerBasePath = operationServerMap['TaskManagementV2024Api.getPendingTasks']?.[localVarOperationServerIndex]?.url;
|
|
119565
119729
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -119568,12 +119732,11 @@ export const TaskManagementV2024ApiFp = function(configuration?: Configuration)
|
|
|
119568
119732
|
* 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.
|
|
119569
119733
|
* @summary Get task status by id
|
|
119570
119734
|
* @param {string} id Task ID.
|
|
119571
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
119572
119735
|
* @param {*} [axiosOptions] Override http request option.
|
|
119573
119736
|
* @throws {RequiredError}
|
|
119574
119737
|
*/
|
|
119575
|
-
async getTaskStatus(id: string,
|
|
119576
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.getTaskStatus(id,
|
|
119738
|
+
async getTaskStatus(id: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TaskStatusV2024>> {
|
|
119739
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getTaskStatus(id, axiosOptions);
|
|
119577
119740
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
119578
119741
|
const localVarOperationServerBasePath = operationServerMap['TaskManagementV2024Api.getTaskStatus']?.[localVarOperationServerIndex]?.url;
|
|
119579
119742
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -119586,12 +119749,11 @@ export const TaskManagementV2024ApiFp = function(configuration?: Configuration)
|
|
|
119586
119749
|
* @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.
|
|
119587
119750
|
* @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*
|
|
119588
119751
|
* @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**
|
|
119589
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
119590
119752
|
* @param {*} [axiosOptions] Override http request option.
|
|
119591
119753
|
* @throws {RequiredError}
|
|
119592
119754
|
*/
|
|
119593
|
-
async getTaskStatusList(limit?: number, offset?: number, count?: boolean, filters?: string, sorters?: string,
|
|
119594
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.getTaskStatusList(limit, offset, count, filters, sorters,
|
|
119755
|
+
async getTaskStatusList(limit?: number, offset?: number, count?: boolean, filters?: string, sorters?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<TaskStatusV2024>>> {
|
|
119756
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getTaskStatusList(limit, offset, count, filters, sorters, axiosOptions);
|
|
119595
119757
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
119596
119758
|
const localVarOperationServerBasePath = operationServerMap['TaskManagementV2024Api.getTaskStatusList']?.[localVarOperationServerIndex]?.url;
|
|
119597
119759
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -119600,13 +119762,12 @@ export const TaskManagementV2024ApiFp = function(configuration?: Configuration)
|
|
|
119600
119762
|
* Update a current task status by task ID. Use this API to clear a pending task by updating the completionStatus and completed attributes.
|
|
119601
119763
|
* @summary Update task status by id
|
|
119602
119764
|
* @param {string} id Task ID.
|
|
119603
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
119604
119765
|
* @param {Array<JsonPatchOperationV2024>} jsonPatchOperationV2024 The JSONPatch payload used to update the object.
|
|
119605
119766
|
* @param {*} [axiosOptions] Override http request option.
|
|
119606
119767
|
* @throws {RequiredError}
|
|
119607
119768
|
*/
|
|
119608
|
-
async updateTaskStatus(id: string,
|
|
119609
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.updateTaskStatus(id,
|
|
119769
|
+
async updateTaskStatus(id: string, jsonPatchOperationV2024: Array<JsonPatchOperationV2024>, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TaskStatusV2024>> {
|
|
119770
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.updateTaskStatus(id, jsonPatchOperationV2024, axiosOptions);
|
|
119610
119771
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
119611
119772
|
const localVarOperationServerBasePath = operationServerMap['TaskManagementV2024Api.updateTaskStatus']?.[localVarOperationServerIndex]?.url;
|
|
119612
119773
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -119628,8 +119789,8 @@ export const TaskManagementV2024ApiFactory = function (configuration?: Configura
|
|
|
119628
119789
|
* @param {*} [axiosOptions] Override http request option.
|
|
119629
119790
|
* @throws {RequiredError}
|
|
119630
119791
|
*/
|
|
119631
|
-
getPendingTaskHeaders(requestParameters: TaskManagementV2024ApiGetPendingTaskHeadersRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<void> {
|
|
119632
|
-
return localVarFp.getPendingTaskHeaders(requestParameters.
|
|
119792
|
+
getPendingTaskHeaders(requestParameters: TaskManagementV2024ApiGetPendingTaskHeadersRequest = {}, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<void> {
|
|
119793
|
+
return localVarFp.getPendingTaskHeaders(requestParameters.offset, requestParameters.limit, requestParameters.count, axiosOptions).then((request) => request(axios, basePath));
|
|
119633
119794
|
},
|
|
119634
119795
|
/**
|
|
119635
119796
|
* 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.
|
|
@@ -119639,7 +119800,7 @@ export const TaskManagementV2024ApiFactory = function (configuration?: Configura
|
|
|
119639
119800
|
* @throws {RequiredError}
|
|
119640
119801
|
*/
|
|
119641
119802
|
getPendingTasks(requestParameters: TaskManagementV2024ApiGetPendingTasksRequest = {}, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<TaskStatusV2024>> {
|
|
119642
|
-
return localVarFp.getPendingTasks(requestParameters.offset, requestParameters.limit, requestParameters.count,
|
|
119803
|
+
return localVarFp.getPendingTasks(requestParameters.offset, requestParameters.limit, requestParameters.count, axiosOptions).then((request) => request(axios, basePath));
|
|
119643
119804
|
},
|
|
119644
119805
|
/**
|
|
119645
119806
|
* 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.
|
|
@@ -119649,7 +119810,7 @@ export const TaskManagementV2024ApiFactory = function (configuration?: Configura
|
|
|
119649
119810
|
* @throws {RequiredError}
|
|
119650
119811
|
*/
|
|
119651
119812
|
getTaskStatus(requestParameters: TaskManagementV2024ApiGetTaskStatusRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<TaskStatusV2024> {
|
|
119652
|
-
return localVarFp.getTaskStatus(requestParameters.id,
|
|
119813
|
+
return localVarFp.getTaskStatus(requestParameters.id, axiosOptions).then((request) => request(axios, basePath));
|
|
119653
119814
|
},
|
|
119654
119815
|
/**
|
|
119655
119816
|
* 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.
|
|
@@ -119659,7 +119820,7 @@ export const TaskManagementV2024ApiFactory = function (configuration?: Configura
|
|
|
119659
119820
|
* @throws {RequiredError}
|
|
119660
119821
|
*/
|
|
119661
119822
|
getTaskStatusList(requestParameters: TaskManagementV2024ApiGetTaskStatusListRequest = {}, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<TaskStatusV2024>> {
|
|
119662
|
-
return localVarFp.getTaskStatusList(requestParameters.limit, requestParameters.offset, requestParameters.count, requestParameters.filters, requestParameters.sorters,
|
|
119823
|
+
return localVarFp.getTaskStatusList(requestParameters.limit, requestParameters.offset, requestParameters.count, requestParameters.filters, requestParameters.sorters, axiosOptions).then((request) => request(axios, basePath));
|
|
119663
119824
|
},
|
|
119664
119825
|
/**
|
|
119665
119826
|
* Update a current task status by task ID. Use this API to clear a pending task by updating the completionStatus and completed attributes.
|
|
@@ -119669,7 +119830,7 @@ export const TaskManagementV2024ApiFactory = function (configuration?: Configura
|
|
|
119669
119830
|
* @throws {RequiredError}
|
|
119670
119831
|
*/
|
|
119671
119832
|
updateTaskStatus(requestParameters: TaskManagementV2024ApiUpdateTaskStatusRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<TaskStatusV2024> {
|
|
119672
|
-
return localVarFp.updateTaskStatus(requestParameters.id, requestParameters.
|
|
119833
|
+
return localVarFp.updateTaskStatus(requestParameters.id, requestParameters.jsonPatchOperationV2024, axiosOptions).then((request) => request(axios, basePath));
|
|
119673
119834
|
},
|
|
119674
119835
|
};
|
|
119675
119836
|
};
|
|
@@ -119680,13 +119841,6 @@ export const TaskManagementV2024ApiFactory = function (configuration?: Configura
|
|
|
119680
119841
|
* @interface TaskManagementV2024ApiGetPendingTaskHeadersRequest
|
|
119681
119842
|
*/
|
|
119682
119843
|
export interface TaskManagementV2024ApiGetPendingTaskHeadersRequest {
|
|
119683
|
-
/**
|
|
119684
|
-
* Use this header to enable this experimental API.
|
|
119685
|
-
* @type {string}
|
|
119686
|
-
* @memberof TaskManagementV2024ApiGetPendingTaskHeaders
|
|
119687
|
-
*/
|
|
119688
|
-
readonly xSailPointExperimental: string
|
|
119689
|
-
|
|
119690
119844
|
/**
|
|
119691
119845
|
* 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.
|
|
119692
119846
|
* @type {number}
|
|
@@ -119735,13 +119889,6 @@ export interface TaskManagementV2024ApiGetPendingTasksRequest {
|
|
|
119735
119889
|
* @memberof TaskManagementV2024ApiGetPendingTasks
|
|
119736
119890
|
*/
|
|
119737
119891
|
readonly count?: boolean
|
|
119738
|
-
|
|
119739
|
-
/**
|
|
119740
|
-
* Use this header to enable this experimental API.
|
|
119741
|
-
* @type {string}
|
|
119742
|
-
* @memberof TaskManagementV2024ApiGetPendingTasks
|
|
119743
|
-
*/
|
|
119744
|
-
readonly xSailPointExperimental?: string
|
|
119745
119892
|
}
|
|
119746
119893
|
|
|
119747
119894
|
/**
|
|
@@ -119756,13 +119903,6 @@ export interface TaskManagementV2024ApiGetTaskStatusRequest {
|
|
|
119756
119903
|
* @memberof TaskManagementV2024ApiGetTaskStatus
|
|
119757
119904
|
*/
|
|
119758
119905
|
readonly id: string
|
|
119759
|
-
|
|
119760
|
-
/**
|
|
119761
|
-
* Use this header to enable this experimental API.
|
|
119762
|
-
* @type {string}
|
|
119763
|
-
* @memberof TaskManagementV2024ApiGetTaskStatus
|
|
119764
|
-
*/
|
|
119765
|
-
readonly xSailPointExperimental?: string
|
|
119766
119906
|
}
|
|
119767
119907
|
|
|
119768
119908
|
/**
|
|
@@ -119805,13 +119945,6 @@ export interface TaskManagementV2024ApiGetTaskStatusListRequest {
|
|
|
119805
119945
|
* @memberof TaskManagementV2024ApiGetTaskStatusList
|
|
119806
119946
|
*/
|
|
119807
119947
|
readonly sorters?: string
|
|
119808
|
-
|
|
119809
|
-
/**
|
|
119810
|
-
* Use this header to enable this experimental API.
|
|
119811
|
-
* @type {string}
|
|
119812
|
-
* @memberof TaskManagementV2024ApiGetTaskStatusList
|
|
119813
|
-
*/
|
|
119814
|
-
readonly xSailPointExperimental?: string
|
|
119815
119948
|
}
|
|
119816
119949
|
|
|
119817
119950
|
/**
|
|
@@ -119827,13 +119960,6 @@ export interface TaskManagementV2024ApiUpdateTaskStatusRequest {
|
|
|
119827
119960
|
*/
|
|
119828
119961
|
readonly id: string
|
|
119829
119962
|
|
|
119830
|
-
/**
|
|
119831
|
-
* Use this header to enable this experimental API.
|
|
119832
|
-
* @type {string}
|
|
119833
|
-
* @memberof TaskManagementV2024ApiUpdateTaskStatus
|
|
119834
|
-
*/
|
|
119835
|
-
readonly xSailPointExperimental: string
|
|
119836
|
-
|
|
119837
119963
|
/**
|
|
119838
119964
|
* The JSONPatch payload used to update the object.
|
|
119839
119965
|
* @type {Array<JsonPatchOperationV2024>}
|
|
@@ -119857,8 +119983,8 @@ export class TaskManagementV2024Api extends BaseAPI {
|
|
|
119857
119983
|
* @throws {RequiredError}
|
|
119858
119984
|
* @memberof TaskManagementV2024Api
|
|
119859
119985
|
*/
|
|
119860
|
-
public getPendingTaskHeaders(requestParameters: TaskManagementV2024ApiGetPendingTaskHeadersRequest, axiosOptions?: RawAxiosRequestConfig) {
|
|
119861
|
-
return TaskManagementV2024ApiFp(this.configuration).getPendingTaskHeaders(requestParameters.
|
|
119986
|
+
public getPendingTaskHeaders(requestParameters: TaskManagementV2024ApiGetPendingTaskHeadersRequest = {}, axiosOptions?: RawAxiosRequestConfig) {
|
|
119987
|
+
return TaskManagementV2024ApiFp(this.configuration).getPendingTaskHeaders(requestParameters.offset, requestParameters.limit, requestParameters.count, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
119862
119988
|
}
|
|
119863
119989
|
|
|
119864
119990
|
/**
|
|
@@ -119870,7 +119996,7 @@ export class TaskManagementV2024Api extends BaseAPI {
|
|
|
119870
119996
|
* @memberof TaskManagementV2024Api
|
|
119871
119997
|
*/
|
|
119872
119998
|
public getPendingTasks(requestParameters: TaskManagementV2024ApiGetPendingTasksRequest = {}, axiosOptions?: RawAxiosRequestConfig) {
|
|
119873
|
-
return TaskManagementV2024ApiFp(this.configuration).getPendingTasks(requestParameters.offset, requestParameters.limit, requestParameters.count,
|
|
119999
|
+
return TaskManagementV2024ApiFp(this.configuration).getPendingTasks(requestParameters.offset, requestParameters.limit, requestParameters.count, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
119874
120000
|
}
|
|
119875
120001
|
|
|
119876
120002
|
/**
|
|
@@ -119882,7 +120008,7 @@ export class TaskManagementV2024Api extends BaseAPI {
|
|
|
119882
120008
|
* @memberof TaskManagementV2024Api
|
|
119883
120009
|
*/
|
|
119884
120010
|
public getTaskStatus(requestParameters: TaskManagementV2024ApiGetTaskStatusRequest, axiosOptions?: RawAxiosRequestConfig) {
|
|
119885
|
-
return TaskManagementV2024ApiFp(this.configuration).getTaskStatus(requestParameters.id,
|
|
120011
|
+
return TaskManagementV2024ApiFp(this.configuration).getTaskStatus(requestParameters.id, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
119886
120012
|
}
|
|
119887
120013
|
|
|
119888
120014
|
/**
|
|
@@ -119894,7 +120020,7 @@ export class TaskManagementV2024Api extends BaseAPI {
|
|
|
119894
120020
|
* @memberof TaskManagementV2024Api
|
|
119895
120021
|
*/
|
|
119896
120022
|
public getTaskStatusList(requestParameters: TaskManagementV2024ApiGetTaskStatusListRequest = {}, axiosOptions?: RawAxiosRequestConfig) {
|
|
119897
|
-
return TaskManagementV2024ApiFp(this.configuration).getTaskStatusList(requestParameters.limit, requestParameters.offset, requestParameters.count, requestParameters.filters, requestParameters.sorters,
|
|
120023
|
+
return TaskManagementV2024ApiFp(this.configuration).getTaskStatusList(requestParameters.limit, requestParameters.offset, requestParameters.count, requestParameters.filters, requestParameters.sorters, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
119898
120024
|
}
|
|
119899
120025
|
|
|
119900
120026
|
/**
|
|
@@ -119906,7 +120032,7 @@ export class TaskManagementV2024Api extends BaseAPI {
|
|
|
119906
120032
|
* @memberof TaskManagementV2024Api
|
|
119907
120033
|
*/
|
|
119908
120034
|
public updateTaskStatus(requestParameters: TaskManagementV2024ApiUpdateTaskStatusRequest, axiosOptions?: RawAxiosRequestConfig) {
|
|
119909
|
-
return TaskManagementV2024ApiFp(this.configuration).updateTaskStatus(requestParameters.id, requestParameters.
|
|
120035
|
+
return TaskManagementV2024ApiFp(this.configuration).updateTaskStatus(requestParameters.id, requestParameters.jsonPatchOperationV2024, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
119910
120036
|
}
|
|
119911
120037
|
}
|
|
119912
120038
|
|
|
@@ -125471,12 +125597,11 @@ export const WorkflowsV2024ApiAxiosParamCreator = function (configuration?: Conf
|
|
|
125471
125597
|
* @param {string} id Workflow ID.
|
|
125472
125598
|
* @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.
|
|
125473
125599
|
* @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.
|
|
125474
|
-
* @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.
|
|
125475
125600
|
* @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*
|
|
125476
125601
|
* @param {*} [axiosOptions] Override http request option.
|
|
125477
125602
|
* @throws {RequiredError}
|
|
125478
125603
|
*/
|
|
125479
|
-
getWorkflowExecutions: async (id: string, limit?: number, offset?: number,
|
|
125604
|
+
getWorkflowExecutions: async (id: string, limit?: number, offset?: number, filters?: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
125480
125605
|
// verify required parameter 'id' is not null or undefined
|
|
125481
125606
|
assertParamExists('getWorkflowExecutions', 'id', id)
|
|
125482
125607
|
const localVarPath = `/workflows/{id}/executions`
|
|
@@ -125508,10 +125633,6 @@ export const WorkflowsV2024ApiAxiosParamCreator = function (configuration?: Conf
|
|
|
125508
125633
|
localVarQueryParameter['offset'] = offset;
|
|
125509
125634
|
}
|
|
125510
125635
|
|
|
125511
|
-
if (count !== undefined) {
|
|
125512
|
-
localVarQueryParameter['count'] = count;
|
|
125513
|
-
}
|
|
125514
|
-
|
|
125515
125636
|
if (filters !== undefined) {
|
|
125516
125637
|
localVarQueryParameter['filters'] = filters;
|
|
125517
125638
|
}
|
|
@@ -126068,13 +126189,12 @@ export const WorkflowsV2024ApiFp = function(configuration?: Configuration) {
|
|
|
126068
126189
|
* @param {string} id Workflow ID.
|
|
126069
126190
|
* @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.
|
|
126070
126191
|
* @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.
|
|
126071
|
-
* @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.
|
|
126072
126192
|
* @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*
|
|
126073
126193
|
* @param {*} [axiosOptions] Override http request option.
|
|
126074
126194
|
* @throws {RequiredError}
|
|
126075
126195
|
*/
|
|
126076
|
-
async getWorkflowExecutions(id: string, limit?: number, offset?: number,
|
|
126077
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.getWorkflowExecutions(id, limit, offset,
|
|
126196
|
+
async getWorkflowExecutions(id: string, limit?: number, offset?: number, filters?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<WorkflowExecutionV2024>>> {
|
|
126197
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getWorkflowExecutions(id, limit, offset, filters, axiosOptions);
|
|
126078
126198
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
126079
126199
|
const localVarOperationServerBasePath = operationServerMap['WorkflowsV2024Api.getWorkflowExecutions']?.[localVarOperationServerIndex]?.url;
|
|
126080
126200
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -126301,7 +126421,7 @@ export const WorkflowsV2024ApiFactory = function (configuration?: Configuration,
|
|
|
126301
126421
|
* @throws {RequiredError}
|
|
126302
126422
|
*/
|
|
126303
126423
|
getWorkflowExecutions(requestParameters: WorkflowsV2024ApiGetWorkflowExecutionsRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<WorkflowExecutionV2024>> {
|
|
126304
|
-
return localVarFp.getWorkflowExecutions(requestParameters.id, requestParameters.limit, requestParameters.offset, requestParameters.
|
|
126424
|
+
return localVarFp.getWorkflowExecutions(requestParameters.id, requestParameters.limit, requestParameters.offset, requestParameters.filters, axiosOptions).then((request) => request(axios, basePath));
|
|
126305
126425
|
},
|
|
126306
126426
|
/**
|
|
126307
126427
|
* This lists all triggers, actions, and operators in the library
|
|
@@ -126540,13 +126660,6 @@ export interface WorkflowsV2024ApiGetWorkflowExecutionsRequest {
|
|
|
126540
126660
|
*/
|
|
126541
126661
|
readonly offset?: number
|
|
126542
126662
|
|
|
126543
|
-
/**
|
|
126544
|
-
* 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.
|
|
126545
|
-
* @type {boolean}
|
|
126546
|
-
* @memberof WorkflowsV2024ApiGetWorkflowExecutions
|
|
126547
|
-
*/
|
|
126548
|
-
readonly count?: boolean
|
|
126549
|
-
|
|
126550
126663
|
/**
|
|
126551
126664
|
* 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*
|
|
126552
126665
|
* @type {string}
|
|
@@ -126828,7 +126941,7 @@ export class WorkflowsV2024Api extends BaseAPI {
|
|
|
126828
126941
|
* @memberof WorkflowsV2024Api
|
|
126829
126942
|
*/
|
|
126830
126943
|
public getWorkflowExecutions(requestParameters: WorkflowsV2024ApiGetWorkflowExecutionsRequest, axiosOptions?: RawAxiosRequestConfig) {
|
|
126831
|
-
return WorkflowsV2024ApiFp(this.configuration).getWorkflowExecutions(requestParameters.id, requestParameters.limit, requestParameters.offset, requestParameters.
|
|
126944
|
+
return WorkflowsV2024ApiFp(this.configuration).getWorkflowExecutions(requestParameters.id, requestParameters.limit, requestParameters.offset, requestParameters.filters, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
126832
126945
|
}
|
|
126833
126946
|
|
|
126834
126947
|
/**
|