sailpoint-api-client 1.6.6 → 1.6.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/beta/README.md +2 -2
- package/beta/api.ts +643 -210
- package/beta/common.ts +2 -2
- package/beta/package.json +1 -1
- package/dist/beta/api.d.ts +584 -192
- package/dist/beta/api.js +125 -61
- package/dist/beta/api.js.map +1 -1
- package/dist/beta/common.js +1 -1
- package/dist/index.spec.js +7 -14
- package/dist/index.spec.js.map +1 -1
- package/dist/paginator.js +0 -1
- package/dist/paginator.js.map +1 -1
- package/dist/v2024/api.d.ts +853 -602
- package/dist/v2024/api.js +249 -358
- package/dist/v2024/api.js.map +1 -1
- package/dist/v2024/common.js +1 -1
- package/dist/v2025/api.d.ts +1944 -399
- package/dist/v2025/api.js +1709 -518
- package/dist/v2025/api.js.map +1 -1
- package/dist/v2025/common.js +1 -1
- package/dist/v3/api.d.ts +64 -19
- package/dist/v3/api.js +19 -21
- package/dist/v3/api.js.map +1 -1
- package/dist/v3/common.js +1 -1
- package/index.spec.ts +7 -7
- package/package.json +1 -1
- package/paginator.ts +0 -1
- package/v2024/README.md +2 -2
- package/v2024/api.ts +983 -870
- package/v2024/common.ts +2 -2
- package/v2024/package.json +1 -1
- package/v2025/README.md +2 -2
- package/v2025/api.ts +2723 -659
- package/v2025/common.ts +2 -2
- package/v2025/package.json +1 -1
- package/v3/README.md +2 -2
- package/v3/api.ts +70 -27
- package/v3/common.ts +2 -2
- package/v3/package.json +1 -1
package/dist/v2024/api.d.ts
CHANGED
|
@@ -166,15 +166,28 @@ export interface AccessCriteriaV2024 {
|
|
|
166
166
|
/**
|
|
167
167
|
*
|
|
168
168
|
* @export
|
|
169
|
-
* @interface
|
|
169
|
+
* @interface AccessItemAccessProfileResponseAppRefsInnerV2024
|
|
170
170
|
*/
|
|
171
|
-
export interface
|
|
171
|
+
export interface AccessItemAccessProfileResponseAppRefsInnerV2024 {
|
|
172
172
|
/**
|
|
173
|
-
* the
|
|
173
|
+
* the cloud app id associated with the access profile
|
|
174
174
|
* @type {string}
|
|
175
|
-
* @memberof
|
|
175
|
+
* @memberof AccessItemAccessProfileResponseAppRefsInnerV2024
|
|
176
176
|
*/
|
|
177
|
-
'
|
|
177
|
+
'cloudAppId'?: string;
|
|
178
|
+
/**
|
|
179
|
+
* the cloud app name associated with the access profile
|
|
180
|
+
* @type {string}
|
|
181
|
+
* @memberof AccessItemAccessProfileResponseAppRefsInnerV2024
|
|
182
|
+
*/
|
|
183
|
+
'cloudAppName'?: string;
|
|
184
|
+
}
|
|
185
|
+
/**
|
|
186
|
+
*
|
|
187
|
+
* @export
|
|
188
|
+
* @interface AccessItemAccessProfileResponseV2024
|
|
189
|
+
*/
|
|
190
|
+
export interface AccessItemAccessProfileResponseV2024 {
|
|
178
191
|
/**
|
|
179
192
|
* the access item id
|
|
180
193
|
* @type {string}
|
|
@@ -182,65 +195,65 @@ export interface AccessItemAccessProfileResponseV2024 {
|
|
|
182
195
|
*/
|
|
183
196
|
'id'?: string;
|
|
184
197
|
/**
|
|
185
|
-
* the access
|
|
198
|
+
* the access item type. accessProfile in this case
|
|
186
199
|
* @type {string}
|
|
187
200
|
* @memberof AccessItemAccessProfileResponseV2024
|
|
188
201
|
*/
|
|
189
|
-
'
|
|
202
|
+
'accessType'?: string;
|
|
190
203
|
/**
|
|
191
|
-
* the name of the
|
|
204
|
+
* the display name of the identity
|
|
192
205
|
* @type {string}
|
|
193
206
|
* @memberof AccessItemAccessProfileResponseV2024
|
|
194
207
|
*/
|
|
195
|
-
'
|
|
208
|
+
'displayName'?: string;
|
|
196
209
|
/**
|
|
197
|
-
* the
|
|
210
|
+
* the name of the source
|
|
198
211
|
* @type {string}
|
|
199
212
|
* @memberof AccessItemAccessProfileResponseV2024
|
|
200
213
|
*/
|
|
201
|
-
'
|
|
214
|
+
'sourceName'?: string;
|
|
202
215
|
/**
|
|
203
|
-
* the
|
|
204
|
-
* @type {
|
|
216
|
+
* the number of entitlements the access profile will create
|
|
217
|
+
* @type {number}
|
|
205
218
|
* @memberof AccessItemAccessProfileResponseV2024
|
|
206
219
|
*/
|
|
207
|
-
'
|
|
220
|
+
'entitlementCount': number;
|
|
208
221
|
/**
|
|
209
|
-
* the
|
|
222
|
+
* the description for the access profile
|
|
210
223
|
* @type {string}
|
|
211
224
|
* @memberof AccessItemAccessProfileResponseV2024
|
|
212
225
|
*/
|
|
213
|
-
'
|
|
226
|
+
'description'?: string | null;
|
|
214
227
|
/**
|
|
215
|
-
* the
|
|
228
|
+
* the id of the source
|
|
216
229
|
* @type {string}
|
|
217
230
|
* @memberof AccessItemAccessProfileResponseV2024
|
|
218
231
|
*/
|
|
219
|
-
'
|
|
232
|
+
'sourceId'?: string;
|
|
220
233
|
/**
|
|
221
|
-
* the
|
|
222
|
-
* @type {
|
|
234
|
+
* the list of app ids associated with the access profile
|
|
235
|
+
* @type {Array<AccessItemAccessProfileResponseAppRefsInnerV2024>}
|
|
223
236
|
* @memberof AccessItemAccessProfileResponseV2024
|
|
224
237
|
*/
|
|
225
|
-
'
|
|
238
|
+
'appRefs': Array<AccessItemAccessProfileResponseAppRefsInnerV2024>;
|
|
226
239
|
/**
|
|
227
240
|
* the date the access profile is no longer assigned to the specified identity
|
|
228
241
|
* @type {string}
|
|
229
242
|
* @memberof AccessItemAccessProfileResponseV2024
|
|
230
243
|
*/
|
|
231
|
-
'removeDate'?: string;
|
|
244
|
+
'removeDate'?: string | null;
|
|
232
245
|
/**
|
|
233
246
|
* indicates whether the access profile is standalone
|
|
234
247
|
* @type {boolean}
|
|
235
248
|
* @memberof AccessItemAccessProfileResponseV2024
|
|
236
249
|
*/
|
|
237
|
-
'standalone': boolean;
|
|
250
|
+
'standalone': boolean | null;
|
|
238
251
|
/**
|
|
239
|
-
* indicates whether the access profile is
|
|
252
|
+
* indicates whether the access profile is revocable
|
|
240
253
|
* @type {boolean}
|
|
241
254
|
* @memberof AccessItemAccessProfileResponseV2024
|
|
242
255
|
*/
|
|
243
|
-
'revocable': boolean;
|
|
256
|
+
'revocable': boolean | null;
|
|
244
257
|
}
|
|
245
258
|
/**
|
|
246
259
|
*
|
|
@@ -249,23 +262,23 @@ export interface AccessItemAccessProfileResponseV2024 {
|
|
|
249
262
|
*/
|
|
250
263
|
export interface AccessItemAccountResponseV2024 {
|
|
251
264
|
/**
|
|
252
|
-
* the access item
|
|
265
|
+
* the access item id
|
|
253
266
|
* @type {string}
|
|
254
267
|
* @memberof AccessItemAccountResponseV2024
|
|
255
268
|
*/
|
|
256
|
-
'
|
|
269
|
+
'id'?: string;
|
|
257
270
|
/**
|
|
258
|
-
* the access item
|
|
271
|
+
* the access item type. account in this case
|
|
259
272
|
* @type {string}
|
|
260
273
|
* @memberof AccessItemAccountResponseV2024
|
|
261
274
|
*/
|
|
262
|
-
'
|
|
275
|
+
'accessType'?: string;
|
|
263
276
|
/**
|
|
264
|
-
* the
|
|
277
|
+
* the display name of the identity
|
|
265
278
|
* @type {string}
|
|
266
279
|
* @memberof AccessItemAccountResponseV2024
|
|
267
280
|
*/
|
|
268
|
-
'
|
|
281
|
+
'displayName'?: string;
|
|
269
282
|
/**
|
|
270
283
|
* the name of the source
|
|
271
284
|
* @type {string}
|
|
@@ -273,23 +286,23 @@ export interface AccessItemAccountResponseV2024 {
|
|
|
273
286
|
*/
|
|
274
287
|
'sourceName'?: string;
|
|
275
288
|
/**
|
|
276
|
-
* the
|
|
289
|
+
* the native identifier used to uniquely identify an acccount
|
|
277
290
|
* @type {string}
|
|
278
291
|
* @memberof AccessItemAccountResponseV2024
|
|
279
292
|
*/
|
|
280
|
-
'
|
|
293
|
+
'nativeIdentity': string;
|
|
281
294
|
/**
|
|
282
|
-
* the
|
|
295
|
+
* the id of the source
|
|
283
296
|
* @type {string}
|
|
284
297
|
* @memberof AccessItemAccountResponseV2024
|
|
285
298
|
*/
|
|
286
|
-
'
|
|
299
|
+
'sourceId'?: string;
|
|
287
300
|
/**
|
|
288
|
-
* the
|
|
289
|
-
* @type {
|
|
301
|
+
* the number of entitlements the account will create
|
|
302
|
+
* @type {number}
|
|
290
303
|
* @memberof AccessItemAccountResponseV2024
|
|
291
304
|
*/
|
|
292
|
-
'
|
|
305
|
+
'entitlementCount'?: number;
|
|
293
306
|
}
|
|
294
307
|
/**
|
|
295
308
|
*
|
|
@@ -298,17 +311,17 @@ export interface AccessItemAccountResponseV2024 {
|
|
|
298
311
|
*/
|
|
299
312
|
export interface AccessItemAppResponseV2024 {
|
|
300
313
|
/**
|
|
301
|
-
* the access item
|
|
314
|
+
* the access item id
|
|
302
315
|
* @type {string}
|
|
303
316
|
* @memberof AccessItemAppResponseV2024
|
|
304
317
|
*/
|
|
305
|
-
'
|
|
318
|
+
'id'?: string;
|
|
306
319
|
/**
|
|
307
|
-
* the access item
|
|
320
|
+
* the access item type. entitlement in this case
|
|
308
321
|
* @type {string}
|
|
309
322
|
* @memberof AccessItemAppResponseV2024
|
|
310
323
|
*/
|
|
311
|
-
'
|
|
324
|
+
'accessType'?: string;
|
|
312
325
|
/**
|
|
313
326
|
* the access item display name
|
|
314
327
|
* @type {string}
|
|
@@ -320,13 +333,13 @@ export interface AccessItemAppResponseV2024 {
|
|
|
320
333
|
* @type {string}
|
|
321
334
|
* @memberof AccessItemAppResponseV2024
|
|
322
335
|
*/
|
|
323
|
-
'sourceName'?: string;
|
|
336
|
+
'sourceName'?: string | null;
|
|
324
337
|
/**
|
|
325
338
|
* the app role id
|
|
326
339
|
* @type {string}
|
|
327
340
|
* @memberof AccessItemAppResponseV2024
|
|
328
341
|
*/
|
|
329
|
-
'appRoleId'
|
|
342
|
+
'appRoleId': string | null;
|
|
330
343
|
}
|
|
331
344
|
/**
|
|
332
345
|
* Identity who approved the access item request.
|
|
@@ -358,10 +371,120 @@ export declare const AccessItemApproverDtoV2024TypeV2024: {
|
|
|
358
371
|
};
|
|
359
372
|
export type AccessItemApproverDtoV2024TypeV2024 = typeof AccessItemApproverDtoV2024TypeV2024[keyof typeof AccessItemApproverDtoV2024TypeV2024];
|
|
360
373
|
/**
|
|
361
|
-
*
|
|
374
|
+
*
|
|
362
375
|
* @export
|
|
376
|
+
* @interface AccessItemAssociatedAccessItemV2024
|
|
363
377
|
*/
|
|
364
|
-
export
|
|
378
|
+
export interface AccessItemAssociatedAccessItemV2024 {
|
|
379
|
+
/**
|
|
380
|
+
* the access item id
|
|
381
|
+
* @type {string}
|
|
382
|
+
* @memberof AccessItemAssociatedAccessItemV2024
|
|
383
|
+
*/
|
|
384
|
+
'id'?: string;
|
|
385
|
+
/**
|
|
386
|
+
* the access item type. entitlement in this case
|
|
387
|
+
* @type {string}
|
|
388
|
+
* @memberof AccessItemAssociatedAccessItemV2024
|
|
389
|
+
*/
|
|
390
|
+
'accessType'?: string;
|
|
391
|
+
/**
|
|
392
|
+
* the access item display name
|
|
393
|
+
* @type {string}
|
|
394
|
+
* @memberof AccessItemAssociatedAccessItemV2024
|
|
395
|
+
*/
|
|
396
|
+
'displayName'?: string;
|
|
397
|
+
/**
|
|
398
|
+
* the associated source name if it exists
|
|
399
|
+
* @type {string}
|
|
400
|
+
* @memberof AccessItemAssociatedAccessItemV2024
|
|
401
|
+
*/
|
|
402
|
+
'sourceName'?: string | null;
|
|
403
|
+
/**
|
|
404
|
+
* the entitlement attribute
|
|
405
|
+
* @type {string}
|
|
406
|
+
* @memberof AccessItemAssociatedAccessItemV2024
|
|
407
|
+
*/
|
|
408
|
+
'attribute': string;
|
|
409
|
+
/**
|
|
410
|
+
* the associated value
|
|
411
|
+
* @type {string}
|
|
412
|
+
* @memberof AccessItemAssociatedAccessItemV2024
|
|
413
|
+
*/
|
|
414
|
+
'value': string;
|
|
415
|
+
/**
|
|
416
|
+
* the type of entitlement
|
|
417
|
+
* @type {string}
|
|
418
|
+
* @memberof AccessItemAssociatedAccessItemV2024
|
|
419
|
+
*/
|
|
420
|
+
'type': string;
|
|
421
|
+
/**
|
|
422
|
+
* the description for the role
|
|
423
|
+
* @type {string}
|
|
424
|
+
* @memberof AccessItemAssociatedAccessItemV2024
|
|
425
|
+
*/
|
|
426
|
+
'description'?: string;
|
|
427
|
+
/**
|
|
428
|
+
* the id of the source
|
|
429
|
+
* @type {string}
|
|
430
|
+
* @memberof AccessItemAssociatedAccessItemV2024
|
|
431
|
+
*/
|
|
432
|
+
'sourceId'?: string;
|
|
433
|
+
/**
|
|
434
|
+
* indicates whether the access profile is standalone
|
|
435
|
+
* @type {boolean}
|
|
436
|
+
* @memberof AccessItemAssociatedAccessItemV2024
|
|
437
|
+
*/
|
|
438
|
+
'standalone': boolean | null;
|
|
439
|
+
/**
|
|
440
|
+
* indicates whether the entitlement is privileged
|
|
441
|
+
* @type {boolean}
|
|
442
|
+
* @memberof AccessItemAssociatedAccessItemV2024
|
|
443
|
+
*/
|
|
444
|
+
'privileged': boolean | null;
|
|
445
|
+
/**
|
|
446
|
+
* indicates whether the entitlement is cloud governed
|
|
447
|
+
* @type {boolean}
|
|
448
|
+
* @memberof AccessItemAssociatedAccessItemV2024
|
|
449
|
+
*/
|
|
450
|
+
'cloudGoverned': boolean | null;
|
|
451
|
+
/**
|
|
452
|
+
* the number of entitlements the account will create
|
|
453
|
+
* @type {number}
|
|
454
|
+
* @memberof AccessItemAssociatedAccessItemV2024
|
|
455
|
+
*/
|
|
456
|
+
'entitlementCount': number;
|
|
457
|
+
/**
|
|
458
|
+
* the list of app ids associated with the access profile
|
|
459
|
+
* @type {Array<AccessItemAccessProfileResponseAppRefsInnerV2024>}
|
|
460
|
+
* @memberof AccessItemAssociatedAccessItemV2024
|
|
461
|
+
*/
|
|
462
|
+
'appRefs': Array<AccessItemAccessProfileResponseAppRefsInnerV2024>;
|
|
463
|
+
/**
|
|
464
|
+
* the date the role is no longer assigned to the specified identity
|
|
465
|
+
* @type {string}
|
|
466
|
+
* @memberof AccessItemAssociatedAccessItemV2024
|
|
467
|
+
*/
|
|
468
|
+
'removeDate'?: string;
|
|
469
|
+
/**
|
|
470
|
+
* indicates whether the role is revocable
|
|
471
|
+
* @type {boolean}
|
|
472
|
+
* @memberof AccessItemAssociatedAccessItemV2024
|
|
473
|
+
*/
|
|
474
|
+
'revocable': boolean;
|
|
475
|
+
/**
|
|
476
|
+
* the native identifier used to uniquely identify an acccount
|
|
477
|
+
* @type {string}
|
|
478
|
+
* @memberof AccessItemAssociatedAccessItemV2024
|
|
479
|
+
*/
|
|
480
|
+
'nativeIdentity': string;
|
|
481
|
+
/**
|
|
482
|
+
* the app role id
|
|
483
|
+
* @type {string}
|
|
484
|
+
* @memberof AccessItemAssociatedAccessItemV2024
|
|
485
|
+
*/
|
|
486
|
+
'appRoleId': string | null;
|
|
487
|
+
}
|
|
365
488
|
/**
|
|
366
489
|
*
|
|
367
490
|
* @export
|
|
@@ -369,36 +492,50 @@ export type AccessItemAssociatedAccessItemV2024 = AccessItemAccessProfileRespons
|
|
|
369
492
|
*/
|
|
370
493
|
export interface AccessItemAssociatedV2024 {
|
|
371
494
|
/**
|
|
372
|
-
*
|
|
373
|
-
* @type {
|
|
495
|
+
* the event type
|
|
496
|
+
* @type {string}
|
|
374
497
|
* @memberof AccessItemAssociatedV2024
|
|
375
498
|
*/
|
|
376
|
-
'
|
|
499
|
+
'eventType'?: string;
|
|
377
500
|
/**
|
|
378
|
-
* the
|
|
501
|
+
* the date of event
|
|
379
502
|
* @type {string}
|
|
380
503
|
* @memberof AccessItemAssociatedV2024
|
|
381
504
|
*/
|
|
382
|
-
'
|
|
505
|
+
'dateTime'?: string;
|
|
383
506
|
/**
|
|
384
|
-
* the
|
|
507
|
+
* the identity id
|
|
385
508
|
* @type {string}
|
|
386
509
|
* @memberof AccessItemAssociatedV2024
|
|
387
510
|
*/
|
|
388
|
-
'
|
|
511
|
+
'identityId'?: string;
|
|
389
512
|
/**
|
|
390
|
-
*
|
|
391
|
-
* @type {
|
|
513
|
+
*
|
|
514
|
+
* @type {AccessItemAssociatedAccessItemV2024}
|
|
392
515
|
* @memberof AccessItemAssociatedV2024
|
|
393
516
|
*/
|
|
394
|
-
'
|
|
517
|
+
'accessItem': AccessItemAssociatedAccessItemV2024;
|
|
395
518
|
/**
|
|
396
519
|
*
|
|
397
520
|
* @type {CorrelatedGovernanceEventV2024}
|
|
398
521
|
* @memberof AccessItemAssociatedV2024
|
|
399
522
|
*/
|
|
400
|
-
'governanceEvent'
|
|
523
|
+
'governanceEvent': CorrelatedGovernanceEventV2024 | null;
|
|
524
|
+
/**
|
|
525
|
+
* the access item type
|
|
526
|
+
* @type {string}
|
|
527
|
+
* @memberof AccessItemAssociatedV2024
|
|
528
|
+
*/
|
|
529
|
+
'accessItemType'?: AccessItemAssociatedV2024AccessItemTypeV2024;
|
|
401
530
|
}
|
|
531
|
+
export declare const AccessItemAssociatedV2024AccessItemTypeV2024: {
|
|
532
|
+
readonly Account: "account";
|
|
533
|
+
readonly App: "app";
|
|
534
|
+
readonly Entitlement: "entitlement";
|
|
535
|
+
readonly Role: "role";
|
|
536
|
+
readonly AccessProfile: "accessProfile";
|
|
537
|
+
};
|
|
538
|
+
export type AccessItemAssociatedV2024AccessItemTypeV2024 = typeof AccessItemAssociatedV2024AccessItemTypeV2024[keyof typeof AccessItemAssociatedV2024AccessItemTypeV2024];
|
|
402
539
|
/**
|
|
403
540
|
*
|
|
404
541
|
* @export
|
|
@@ -442,77 +579,77 @@ export type AccessItemDiffV2024EventTypeV2024 = typeof AccessItemDiffV2024EventT
|
|
|
442
579
|
*/
|
|
443
580
|
export interface AccessItemEntitlementResponseV2024 {
|
|
444
581
|
/**
|
|
445
|
-
* the access item
|
|
582
|
+
* the access item id
|
|
446
583
|
* @type {string}
|
|
447
584
|
* @memberof AccessItemEntitlementResponseV2024
|
|
448
585
|
*/
|
|
449
|
-
'
|
|
586
|
+
'id'?: string;
|
|
450
587
|
/**
|
|
451
|
-
* the access item
|
|
588
|
+
* the access item type. entitlement in this case
|
|
452
589
|
* @type {string}
|
|
453
590
|
* @memberof AccessItemEntitlementResponseV2024
|
|
454
591
|
*/
|
|
455
|
-
'
|
|
592
|
+
'accessType'?: string;
|
|
456
593
|
/**
|
|
457
|
-
* the
|
|
594
|
+
* the display name of the identity
|
|
458
595
|
* @type {string}
|
|
459
596
|
* @memberof AccessItemEntitlementResponseV2024
|
|
460
597
|
*/
|
|
461
|
-
'
|
|
598
|
+
'displayName'?: string;
|
|
462
599
|
/**
|
|
463
|
-
* the
|
|
600
|
+
* the name of the source
|
|
464
601
|
* @type {string}
|
|
465
602
|
* @memberof AccessItemEntitlementResponseV2024
|
|
466
603
|
*/
|
|
467
|
-
'
|
|
604
|
+
'sourceName'?: string;
|
|
468
605
|
/**
|
|
469
|
-
* the
|
|
606
|
+
* the entitlement attribute
|
|
470
607
|
* @type {string}
|
|
471
608
|
* @memberof AccessItemEntitlementResponseV2024
|
|
472
609
|
*/
|
|
473
|
-
'
|
|
610
|
+
'attribute': string;
|
|
474
611
|
/**
|
|
475
|
-
* the
|
|
612
|
+
* the associated value
|
|
476
613
|
* @type {string}
|
|
477
614
|
* @memberof AccessItemEntitlementResponseV2024
|
|
478
615
|
*/
|
|
479
|
-
'
|
|
616
|
+
'value': string;
|
|
480
617
|
/**
|
|
481
|
-
* the
|
|
618
|
+
* the type of entitlement
|
|
482
619
|
* @type {string}
|
|
483
620
|
* @memberof AccessItemEntitlementResponseV2024
|
|
484
621
|
*/
|
|
485
|
-
'
|
|
622
|
+
'type': string;
|
|
486
623
|
/**
|
|
487
624
|
* the description for the entitlment
|
|
488
625
|
* @type {string}
|
|
489
626
|
* @memberof AccessItemEntitlementResponseV2024
|
|
490
627
|
*/
|
|
491
|
-
'description'?: string;
|
|
628
|
+
'description'?: string | null;
|
|
492
629
|
/**
|
|
493
|
-
* the
|
|
630
|
+
* the id of the source
|
|
494
631
|
* @type {string}
|
|
495
632
|
* @memberof AccessItemEntitlementResponseV2024
|
|
496
633
|
*/
|
|
497
|
-
'
|
|
634
|
+
'sourceId'?: string;
|
|
498
635
|
/**
|
|
499
636
|
* indicates whether the entitlement is standalone
|
|
500
637
|
* @type {boolean}
|
|
501
638
|
* @memberof AccessItemEntitlementResponseV2024
|
|
502
639
|
*/
|
|
503
|
-
'standalone': boolean;
|
|
640
|
+
'standalone': boolean | null;
|
|
504
641
|
/**
|
|
505
642
|
* indicates whether the entitlement is privileged
|
|
506
643
|
* @type {boolean}
|
|
507
644
|
* @memberof AccessItemEntitlementResponseV2024
|
|
508
645
|
*/
|
|
509
|
-
'privileged': boolean;
|
|
646
|
+
'privileged': boolean | null;
|
|
510
647
|
/**
|
|
511
648
|
* indicates whether the entitlement is cloud governed
|
|
512
649
|
* @type {boolean}
|
|
513
650
|
* @memberof AccessItemEntitlementResponseV2024
|
|
514
651
|
*/
|
|
515
|
-
'cloudGoverned': boolean;
|
|
652
|
+
'cloudGoverned': boolean | null;
|
|
516
653
|
}
|
|
517
654
|
/**
|
|
518
655
|
*
|
|
@@ -550,7 +687,7 @@ export interface AccessItemRemovedV2024 {
|
|
|
550
687
|
* @type {AccessItemAssociatedAccessItemV2024}
|
|
551
688
|
* @memberof AccessItemRemovedV2024
|
|
552
689
|
*/
|
|
553
|
-
'accessItem'
|
|
690
|
+
'accessItem': AccessItemAssociatedAccessItemV2024;
|
|
554
691
|
/**
|
|
555
692
|
* the identity id
|
|
556
693
|
* @type {string}
|
|
@@ -568,14 +705,28 @@ export interface AccessItemRemovedV2024 {
|
|
|
568
705
|
* @type {string}
|
|
569
706
|
* @memberof AccessItemRemovedV2024
|
|
570
707
|
*/
|
|
571
|
-
'
|
|
708
|
+
'dateTime'?: string;
|
|
709
|
+
/**
|
|
710
|
+
* the access item type
|
|
711
|
+
* @type {string}
|
|
712
|
+
* @memberof AccessItemRemovedV2024
|
|
713
|
+
*/
|
|
714
|
+
'accessItemType'?: AccessItemRemovedV2024AccessItemTypeV2024;
|
|
572
715
|
/**
|
|
573
716
|
*
|
|
574
717
|
* @type {CorrelatedGovernanceEventV2024}
|
|
575
718
|
* @memberof AccessItemRemovedV2024
|
|
576
719
|
*/
|
|
577
|
-
'governanceEvent'?: CorrelatedGovernanceEventV2024;
|
|
720
|
+
'governanceEvent'?: CorrelatedGovernanceEventV2024 | null;
|
|
578
721
|
}
|
|
722
|
+
export declare const AccessItemRemovedV2024AccessItemTypeV2024: {
|
|
723
|
+
readonly Account: "account";
|
|
724
|
+
readonly App: "app";
|
|
725
|
+
readonly Entitlement: "entitlement";
|
|
726
|
+
readonly Role: "role";
|
|
727
|
+
readonly AccessProfile: "accessProfile";
|
|
728
|
+
};
|
|
729
|
+
export type AccessItemRemovedV2024AccessItemTypeV2024 = typeof AccessItemRemovedV2024AccessItemTypeV2024[keyof typeof AccessItemRemovedV2024AccessItemTypeV2024];
|
|
579
730
|
/**
|
|
580
731
|
* Identity the access item is requested for.
|
|
581
732
|
* @export
|
|
@@ -728,17 +879,17 @@ export type AccessItemReviewedByV2024TypeV2024 = typeof AccessItemReviewedByV202
|
|
|
728
879
|
*/
|
|
729
880
|
export interface AccessItemRoleResponseV2024 {
|
|
730
881
|
/**
|
|
731
|
-
* the access item
|
|
882
|
+
* the access item id
|
|
732
883
|
* @type {string}
|
|
733
884
|
* @memberof AccessItemRoleResponseV2024
|
|
734
885
|
*/
|
|
735
|
-
'
|
|
886
|
+
'id'?: string;
|
|
736
887
|
/**
|
|
737
|
-
* the access item
|
|
888
|
+
* the access item type. role in this case
|
|
738
889
|
* @type {string}
|
|
739
890
|
* @memberof AccessItemRoleResponseV2024
|
|
740
891
|
*/
|
|
741
|
-
'
|
|
892
|
+
'accessType'?: string;
|
|
742
893
|
/**
|
|
743
894
|
* the role display name
|
|
744
895
|
* @type {string}
|
|
@@ -746,17 +897,17 @@ export interface AccessItemRoleResponseV2024 {
|
|
|
746
897
|
*/
|
|
747
898
|
'displayName'?: string;
|
|
748
899
|
/**
|
|
749
|
-
* the
|
|
900
|
+
* the associated source name if it exists
|
|
750
901
|
* @type {string}
|
|
751
902
|
* @memberof AccessItemRoleResponseV2024
|
|
752
903
|
*/
|
|
753
|
-
'
|
|
904
|
+
'sourceName'?: string | null;
|
|
754
905
|
/**
|
|
755
|
-
* the
|
|
906
|
+
* the description for the role
|
|
756
907
|
* @type {string}
|
|
757
908
|
* @memberof AccessItemRoleResponseV2024
|
|
758
909
|
*/
|
|
759
|
-
'
|
|
910
|
+
'description'?: string;
|
|
760
911
|
/**
|
|
761
912
|
* the date the role is no longer assigned to the specified identity
|
|
762
913
|
* @type {string}
|
|
@@ -2156,66 +2307,6 @@ export interface AccessRequestDynamicApproverV2024 {
|
|
|
2156
2307
|
*/
|
|
2157
2308
|
'requestedBy': AccessItemRequesterDtoV2024;
|
|
2158
2309
|
}
|
|
2159
|
-
/**
|
|
2160
|
-
*
|
|
2161
|
-
* @export
|
|
2162
|
-
* @interface AccessRequestItemResponseV2024
|
|
2163
|
-
*/
|
|
2164
|
-
export interface AccessRequestItemResponseV2024 {
|
|
2165
|
-
/**
|
|
2166
|
-
* the access request item operation
|
|
2167
|
-
* @type {string}
|
|
2168
|
-
* @memberof AccessRequestItemResponseV2024
|
|
2169
|
-
*/
|
|
2170
|
-
'operation'?: string;
|
|
2171
|
-
/**
|
|
2172
|
-
* the access item type
|
|
2173
|
-
* @type {string}
|
|
2174
|
-
* @memberof AccessRequestItemResponseV2024
|
|
2175
|
-
*/
|
|
2176
|
-
'accessItemType'?: string;
|
|
2177
|
-
/**
|
|
2178
|
-
* the name of access request item
|
|
2179
|
-
* @type {string}
|
|
2180
|
-
* @memberof AccessRequestItemResponseV2024
|
|
2181
|
-
*/
|
|
2182
|
-
'name'?: string;
|
|
2183
|
-
/**
|
|
2184
|
-
* the final decision for the access request
|
|
2185
|
-
* @type {string}
|
|
2186
|
-
* @memberof AccessRequestItemResponseV2024
|
|
2187
|
-
*/
|
|
2188
|
-
'decision'?: AccessRequestItemResponseV2024DecisionV2024;
|
|
2189
|
-
/**
|
|
2190
|
-
* the description of access request item
|
|
2191
|
-
* @type {string}
|
|
2192
|
-
* @memberof AccessRequestItemResponseV2024
|
|
2193
|
-
*/
|
|
2194
|
-
'description'?: string;
|
|
2195
|
-
/**
|
|
2196
|
-
* the source id
|
|
2197
|
-
* @type {string}
|
|
2198
|
-
* @memberof AccessRequestItemResponseV2024
|
|
2199
|
-
*/
|
|
2200
|
-
'sourceId'?: string;
|
|
2201
|
-
/**
|
|
2202
|
-
* the source Name
|
|
2203
|
-
* @type {string}
|
|
2204
|
-
* @memberof AccessRequestItemResponseV2024
|
|
2205
|
-
*/
|
|
2206
|
-
'sourceName'?: string;
|
|
2207
|
-
/**
|
|
2208
|
-
*
|
|
2209
|
-
* @type {Array<ApprovalInfoResponseV2024>}
|
|
2210
|
-
* @memberof AccessRequestItemResponseV2024
|
|
2211
|
-
*/
|
|
2212
|
-
'approvalInfos'?: Array<ApprovalInfoResponseV2024>;
|
|
2213
|
-
}
|
|
2214
|
-
export declare const AccessRequestItemResponseV2024DecisionV2024: {
|
|
2215
|
-
readonly Approved: "APPROVED";
|
|
2216
|
-
readonly Rejected: "REJECTED";
|
|
2217
|
-
};
|
|
2218
|
-
export type AccessRequestItemResponseV2024DecisionV2024 = typeof AccessRequestItemResponseV2024DecisionV2024[keyof typeof AccessRequestItemResponseV2024DecisionV2024];
|
|
2219
2310
|
/**
|
|
2220
2311
|
*
|
|
2221
2312
|
* @export
|
|
@@ -2799,31 +2890,6 @@ export interface AccessRequestRecommendationItemV2024 {
|
|
|
2799
2890
|
*/
|
|
2800
2891
|
'type'?: AccessRequestRecommendationItemTypeV2024;
|
|
2801
2892
|
}
|
|
2802
|
-
/**
|
|
2803
|
-
*
|
|
2804
|
-
* @export
|
|
2805
|
-
* @interface AccessRequestResponse1V2024
|
|
2806
|
-
*/
|
|
2807
|
-
export interface AccessRequestResponse1V2024 {
|
|
2808
|
-
/**
|
|
2809
|
-
* the requester Id
|
|
2810
|
-
* @type {string}
|
|
2811
|
-
* @memberof AccessRequestResponse1V2024
|
|
2812
|
-
*/
|
|
2813
|
-
'requesterId'?: string;
|
|
2814
|
-
/**
|
|
2815
|
-
* the requesterName
|
|
2816
|
-
* @type {string}
|
|
2817
|
-
* @memberof AccessRequestResponse1V2024
|
|
2818
|
-
*/
|
|
2819
|
-
'requesterName'?: string;
|
|
2820
|
-
/**
|
|
2821
|
-
*
|
|
2822
|
-
* @type {Array<AccessRequestItemResponseV2024>}
|
|
2823
|
-
* @memberof AccessRequestResponse1V2024
|
|
2824
|
-
*/
|
|
2825
|
-
'items'?: Array<AccessRequestItemResponseV2024>;
|
|
2826
|
-
}
|
|
2827
2893
|
/**
|
|
2828
2894
|
*
|
|
2829
2895
|
* @export
|
|
@@ -2923,6 +2989,86 @@ export interface AccessRequestV2024 {
|
|
|
2923
2989
|
*/
|
|
2924
2990
|
'requestedForWithRequestedItems'?: Array<RequestedForDtoRefV2024> | null;
|
|
2925
2991
|
}
|
|
2992
|
+
/**
|
|
2993
|
+
*
|
|
2994
|
+
* @export
|
|
2995
|
+
* @interface AccessRequestedAccountV2024
|
|
2996
|
+
*/
|
|
2997
|
+
export interface AccessRequestedAccountV2024 {
|
|
2998
|
+
/**
|
|
2999
|
+
* the ID of the account in the database
|
|
3000
|
+
* @type {string}
|
|
3001
|
+
* @memberof AccessRequestedAccountV2024
|
|
3002
|
+
*/
|
|
3003
|
+
'id'?: string;
|
|
3004
|
+
/**
|
|
3005
|
+
* the native identifier of the account
|
|
3006
|
+
* @type {string}
|
|
3007
|
+
* @memberof AccessRequestedAccountV2024
|
|
3008
|
+
*/
|
|
3009
|
+
'nativeIdentity'?: string;
|
|
3010
|
+
/**
|
|
3011
|
+
* the display name of the account
|
|
3012
|
+
* @type {string}
|
|
3013
|
+
* @memberof AccessRequestedAccountV2024
|
|
3014
|
+
*/
|
|
3015
|
+
'displayName'?: string;
|
|
3016
|
+
/**
|
|
3017
|
+
* the ID of the source for this account
|
|
3018
|
+
* @type {string}
|
|
3019
|
+
* @memberof AccessRequestedAccountV2024
|
|
3020
|
+
*/
|
|
3021
|
+
'sourceId'?: string;
|
|
3022
|
+
/**
|
|
3023
|
+
* the name of the source for this account
|
|
3024
|
+
* @type {string}
|
|
3025
|
+
* @memberof AccessRequestedAccountV2024
|
|
3026
|
+
*/
|
|
3027
|
+
'sourceName'?: string;
|
|
3028
|
+
/**
|
|
3029
|
+
* the number of entitlements on this account
|
|
3030
|
+
* @type {number}
|
|
3031
|
+
* @memberof AccessRequestedAccountV2024
|
|
3032
|
+
*/
|
|
3033
|
+
'entitlementCount'?: number;
|
|
3034
|
+
/**
|
|
3035
|
+
* this value is always \"account\"
|
|
3036
|
+
* @type {string}
|
|
3037
|
+
* @memberof AccessRequestedAccountV2024
|
|
3038
|
+
*/
|
|
3039
|
+
'accessType'?: string;
|
|
3040
|
+
}
|
|
3041
|
+
/**
|
|
3042
|
+
*
|
|
3043
|
+
* @export
|
|
3044
|
+
* @interface AccessRequestedStatusChangeV2024
|
|
3045
|
+
*/
|
|
3046
|
+
export interface AccessRequestedStatusChangeV2024 {
|
|
3047
|
+
/**
|
|
3048
|
+
* the previous status of the account
|
|
3049
|
+
* @type {string}
|
|
3050
|
+
* @memberof AccessRequestedStatusChangeV2024
|
|
3051
|
+
*/
|
|
3052
|
+
'previousStatus'?: AccessRequestedStatusChangeV2024PreviousStatusV2024;
|
|
3053
|
+
/**
|
|
3054
|
+
* the new status of the account
|
|
3055
|
+
* @type {string}
|
|
3056
|
+
* @memberof AccessRequestedStatusChangeV2024
|
|
3057
|
+
*/
|
|
3058
|
+
'newStatus'?: AccessRequestedStatusChangeV2024NewStatusV2024;
|
|
3059
|
+
}
|
|
3060
|
+
export declare const AccessRequestedStatusChangeV2024PreviousStatusV2024: {
|
|
3061
|
+
readonly Enabled: "enabled";
|
|
3062
|
+
readonly Disabled: "disabled";
|
|
3063
|
+
readonly Locked: "locked";
|
|
3064
|
+
};
|
|
3065
|
+
export type AccessRequestedStatusChangeV2024PreviousStatusV2024 = typeof AccessRequestedStatusChangeV2024PreviousStatusV2024[keyof typeof AccessRequestedStatusChangeV2024PreviousStatusV2024];
|
|
3066
|
+
export declare const AccessRequestedStatusChangeV2024NewStatusV2024: {
|
|
3067
|
+
readonly Enabled: "enabled";
|
|
3068
|
+
readonly Disabled: "disabled";
|
|
3069
|
+
readonly Locked: "locked";
|
|
3070
|
+
};
|
|
3071
|
+
export type AccessRequestedStatusChangeV2024NewStatusV2024 = typeof AccessRequestedStatusChangeV2024NewStatusV2024[keyof typeof AccessRequestedStatusChangeV2024NewStatusV2024];
|
|
2926
3072
|
/**
|
|
2927
3073
|
*
|
|
2928
3074
|
* @export
|
|
@@ -2930,11 +3076,11 @@ export interface AccessRequestV2024 {
|
|
|
2930
3076
|
*/
|
|
2931
3077
|
export interface AccessRequestedV2024 {
|
|
2932
3078
|
/**
|
|
2933
|
-
*
|
|
2934
|
-
* @type {
|
|
3079
|
+
* the event type
|
|
3080
|
+
* @type {string}
|
|
2935
3081
|
* @memberof AccessRequestedV2024
|
|
2936
3082
|
*/
|
|
2937
|
-
'
|
|
3083
|
+
'eventType'?: string;
|
|
2938
3084
|
/**
|
|
2939
3085
|
* the identity id
|
|
2940
3086
|
* @type {string}
|
|
@@ -2942,17 +3088,23 @@ export interface AccessRequestedV2024 {
|
|
|
2942
3088
|
*/
|
|
2943
3089
|
'identityId'?: string;
|
|
2944
3090
|
/**
|
|
2945
|
-
* the event
|
|
3091
|
+
* the date of event
|
|
2946
3092
|
* @type {string}
|
|
2947
3093
|
* @memberof AccessRequestedV2024
|
|
2948
3094
|
*/
|
|
2949
|
-
'
|
|
3095
|
+
'dateTime'?: string;
|
|
2950
3096
|
/**
|
|
2951
|
-
*
|
|
2952
|
-
* @type {
|
|
3097
|
+
*
|
|
3098
|
+
* @type {AccessRequestedAccountV2024}
|
|
2953
3099
|
* @memberof AccessRequestedV2024
|
|
2954
3100
|
*/
|
|
2955
|
-
'
|
|
3101
|
+
'account': AccessRequestedAccountV2024;
|
|
3102
|
+
/**
|
|
3103
|
+
*
|
|
3104
|
+
* @type {AccessRequestedStatusChangeV2024}
|
|
3105
|
+
* @memberof AccessRequestedV2024
|
|
3106
|
+
*/
|
|
3107
|
+
'statusChange': AccessRequestedStatusChangeV2024;
|
|
2956
3108
|
}
|
|
2957
3109
|
/**
|
|
2958
3110
|
*
|
|
@@ -4644,86 +4796,6 @@ export interface AccountSourceV2024 {
|
|
|
4644
4796
|
*/
|
|
4645
4797
|
'type'?: string;
|
|
4646
4798
|
}
|
|
4647
|
-
/**
|
|
4648
|
-
*
|
|
4649
|
-
* @export
|
|
4650
|
-
* @interface AccountStatusChangedAccountV2024
|
|
4651
|
-
*/
|
|
4652
|
-
export interface AccountStatusChangedAccountV2024 {
|
|
4653
|
-
/**
|
|
4654
|
-
* the ID of the account in the database
|
|
4655
|
-
* @type {string}
|
|
4656
|
-
* @memberof AccountStatusChangedAccountV2024
|
|
4657
|
-
*/
|
|
4658
|
-
'id'?: string;
|
|
4659
|
-
/**
|
|
4660
|
-
* the native identifier of the account
|
|
4661
|
-
* @type {string}
|
|
4662
|
-
* @memberof AccountStatusChangedAccountV2024
|
|
4663
|
-
*/
|
|
4664
|
-
'nativeIdentity'?: string;
|
|
4665
|
-
/**
|
|
4666
|
-
* the display name of the account
|
|
4667
|
-
* @type {string}
|
|
4668
|
-
* @memberof AccountStatusChangedAccountV2024
|
|
4669
|
-
*/
|
|
4670
|
-
'displayName'?: string;
|
|
4671
|
-
/**
|
|
4672
|
-
* the ID of the source for this account
|
|
4673
|
-
* @type {string}
|
|
4674
|
-
* @memberof AccountStatusChangedAccountV2024
|
|
4675
|
-
*/
|
|
4676
|
-
'sourceId'?: string;
|
|
4677
|
-
/**
|
|
4678
|
-
* the name of the source for this account
|
|
4679
|
-
* @type {string}
|
|
4680
|
-
* @memberof AccountStatusChangedAccountV2024
|
|
4681
|
-
*/
|
|
4682
|
-
'sourceName'?: string;
|
|
4683
|
-
/**
|
|
4684
|
-
* the number of entitlements on this account
|
|
4685
|
-
* @type {number}
|
|
4686
|
-
* @memberof AccountStatusChangedAccountV2024
|
|
4687
|
-
*/
|
|
4688
|
-
'entitlementCount'?: number;
|
|
4689
|
-
/**
|
|
4690
|
-
* this value is always \"account\"
|
|
4691
|
-
* @type {string}
|
|
4692
|
-
* @memberof AccountStatusChangedAccountV2024
|
|
4693
|
-
*/
|
|
4694
|
-
'accessType'?: string;
|
|
4695
|
-
}
|
|
4696
|
-
/**
|
|
4697
|
-
*
|
|
4698
|
-
* @export
|
|
4699
|
-
* @interface AccountStatusChangedStatusChangeV2024
|
|
4700
|
-
*/
|
|
4701
|
-
export interface AccountStatusChangedStatusChangeV2024 {
|
|
4702
|
-
/**
|
|
4703
|
-
* the previous status of the account
|
|
4704
|
-
* @type {string}
|
|
4705
|
-
* @memberof AccountStatusChangedStatusChangeV2024
|
|
4706
|
-
*/
|
|
4707
|
-
'previousStatus'?: AccountStatusChangedStatusChangeV2024PreviousStatusV2024;
|
|
4708
|
-
/**
|
|
4709
|
-
* the new status of the account
|
|
4710
|
-
* @type {string}
|
|
4711
|
-
* @memberof AccountStatusChangedStatusChangeV2024
|
|
4712
|
-
*/
|
|
4713
|
-
'newStatus'?: AccountStatusChangedStatusChangeV2024NewStatusV2024;
|
|
4714
|
-
}
|
|
4715
|
-
export declare const AccountStatusChangedStatusChangeV2024PreviousStatusV2024: {
|
|
4716
|
-
readonly Enabled: "enabled";
|
|
4717
|
-
readonly Disabled: "disabled";
|
|
4718
|
-
readonly Locked: "locked";
|
|
4719
|
-
};
|
|
4720
|
-
export type AccountStatusChangedStatusChangeV2024PreviousStatusV2024 = typeof AccountStatusChangedStatusChangeV2024PreviousStatusV2024[keyof typeof AccountStatusChangedStatusChangeV2024PreviousStatusV2024];
|
|
4721
|
-
export declare const AccountStatusChangedStatusChangeV2024NewStatusV2024: {
|
|
4722
|
-
readonly Enabled: "enabled";
|
|
4723
|
-
readonly Disabled: "disabled";
|
|
4724
|
-
readonly Locked: "locked";
|
|
4725
|
-
};
|
|
4726
|
-
export type AccountStatusChangedStatusChangeV2024NewStatusV2024 = typeof AccountStatusChangedStatusChangeV2024NewStatusV2024[keyof typeof AccountStatusChangedStatusChangeV2024NewStatusV2024];
|
|
4727
4799
|
/**
|
|
4728
4800
|
*
|
|
4729
4801
|
* @export
|
|
@@ -4747,19 +4819,19 @@ export interface AccountStatusChangedV2024 {
|
|
|
4747
4819
|
* @type {string}
|
|
4748
4820
|
* @memberof AccountStatusChangedV2024
|
|
4749
4821
|
*/
|
|
4750
|
-
'
|
|
4822
|
+
'dateTime'?: string;
|
|
4751
4823
|
/**
|
|
4752
4824
|
*
|
|
4753
|
-
* @type {
|
|
4825
|
+
* @type {AccessRequestedAccountV2024}
|
|
4754
4826
|
* @memberof AccountStatusChangedV2024
|
|
4755
4827
|
*/
|
|
4756
|
-
'account'
|
|
4828
|
+
'account': AccessRequestedAccountV2024;
|
|
4757
4829
|
/**
|
|
4758
4830
|
*
|
|
4759
|
-
* @type {
|
|
4831
|
+
* @type {AccessRequestedStatusChangeV2024}
|
|
4760
4832
|
* @memberof AccountStatusChangedV2024
|
|
4761
4833
|
*/
|
|
4762
|
-
'statusChange'
|
|
4834
|
+
'statusChange': AccessRequestedStatusChangeV2024;
|
|
4763
4835
|
}
|
|
4764
4836
|
/**
|
|
4765
4837
|
* Request used for account enable/disable
|
|
@@ -5869,31 +5941,6 @@ export declare const ApprovalIdentityV2024TypeV2024: {
|
|
|
5869
5941
|
readonly Identity: "IDENTITY";
|
|
5870
5942
|
};
|
|
5871
5943
|
export type ApprovalIdentityV2024TypeV2024 = typeof ApprovalIdentityV2024TypeV2024[keyof typeof ApprovalIdentityV2024TypeV2024];
|
|
5872
|
-
/**
|
|
5873
|
-
*
|
|
5874
|
-
* @export
|
|
5875
|
-
* @interface ApprovalInfoResponseV2024
|
|
5876
|
-
*/
|
|
5877
|
-
export interface ApprovalInfoResponseV2024 {
|
|
5878
|
-
/**
|
|
5879
|
-
* the id of approver
|
|
5880
|
-
* @type {string}
|
|
5881
|
-
* @memberof ApprovalInfoResponseV2024
|
|
5882
|
-
*/
|
|
5883
|
-
'id'?: string;
|
|
5884
|
-
/**
|
|
5885
|
-
* the name of approver
|
|
5886
|
-
* @type {string}
|
|
5887
|
-
* @memberof ApprovalInfoResponseV2024
|
|
5888
|
-
*/
|
|
5889
|
-
'name'?: string;
|
|
5890
|
-
/**
|
|
5891
|
-
* the status of the approval request
|
|
5892
|
-
* @type {string}
|
|
5893
|
-
* @memberof ApprovalInfoResponseV2024
|
|
5894
|
-
*/
|
|
5895
|
-
'status'?: string;
|
|
5896
|
-
}
|
|
5897
5944
|
/**
|
|
5898
5945
|
*
|
|
5899
5946
|
* @export
|
|
@@ -6906,7 +6953,7 @@ export interface AttributesChangedV2024 {
|
|
|
6906
6953
|
* @type {Array<AttributeChangeV2024>}
|
|
6907
6954
|
* @memberof AttributesChangedV2024
|
|
6908
6955
|
*/
|
|
6909
|
-
'
|
|
6956
|
+
'attributeChanges': Array<AttributeChangeV2024>;
|
|
6910
6957
|
/**
|
|
6911
6958
|
* the event type
|
|
6912
6959
|
* @type {string}
|
|
@@ -6924,7 +6971,7 @@ export interface AttributesChangedV2024 {
|
|
|
6924
6971
|
* @type {string}
|
|
6925
6972
|
* @memberof AttributesChangedV2024
|
|
6926
6973
|
*/
|
|
6927
|
-
'
|
|
6974
|
+
'dateTime'?: string;
|
|
6928
6975
|
}
|
|
6929
6976
|
/**
|
|
6930
6977
|
* Audit details for the reassignment configuration of an identity
|
|
@@ -11926,7 +11973,7 @@ export interface CorrelatedGovernanceEventV2024 {
|
|
|
11926
11973
|
* @type {string}
|
|
11927
11974
|
* @memberof CorrelatedGovernanceEventV2024
|
|
11928
11975
|
*/
|
|
11929
|
-
'
|
|
11976
|
+
'dateTime'?: string;
|
|
11930
11977
|
/**
|
|
11931
11978
|
* The type of governance event.
|
|
11932
11979
|
* @type {string}
|
|
@@ -12472,7 +12519,13 @@ export interface CreatePersonalAccessTokenRequestV2024 {
|
|
|
12472
12519
|
* @type {number}
|
|
12473
12520
|
* @memberof CreatePersonalAccessTokenRequestV2024
|
|
12474
12521
|
*/
|
|
12475
|
-
'accessTokenValiditySeconds'?: number;
|
|
12522
|
+
'accessTokenValiditySeconds'?: number | null;
|
|
12523
|
+
/**
|
|
12524
|
+
* 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.
|
|
12525
|
+
* @type {string}
|
|
12526
|
+
* @memberof CreatePersonalAccessTokenRequestV2024
|
|
12527
|
+
*/
|
|
12528
|
+
'expirationDate'?: string | null;
|
|
12476
12529
|
}
|
|
12477
12530
|
/**
|
|
12478
12531
|
*
|
|
@@ -12522,6 +12575,12 @@ export interface CreatePersonalAccessTokenResponseV2024 {
|
|
|
12522
12575
|
* @memberof CreatePersonalAccessTokenResponseV2024
|
|
12523
12576
|
*/
|
|
12524
12577
|
'accessTokenValiditySeconds': number;
|
|
12578
|
+
/**
|
|
12579
|
+
* 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.
|
|
12580
|
+
* @type {string}
|
|
12581
|
+
* @memberof CreatePersonalAccessTokenResponseV2024
|
|
12582
|
+
*/
|
|
12583
|
+
'expirationDate': string;
|
|
12525
12584
|
}
|
|
12526
12585
|
/**
|
|
12527
12586
|
*
|
|
@@ -14155,7 +14214,7 @@ export declare const EntitlementApprovalSchemeV2024ApproverTypeV2024: {
|
|
|
14155
14214
|
};
|
|
14156
14215
|
export type EntitlementApprovalSchemeV2024ApproverTypeV2024 = typeof EntitlementApprovalSchemeV2024ApproverTypeV2024[keyof typeof EntitlementApprovalSchemeV2024ApproverTypeV2024];
|
|
14157
14216
|
/**
|
|
14158
|
-
*
|
|
14217
|
+
* Object for specifying the bulk update request
|
|
14159
14218
|
* @export
|
|
14160
14219
|
* @interface EntitlementBulkUpdateRequestV2024
|
|
14161
14220
|
*/
|
|
@@ -17480,96 +17539,104 @@ export type GetDiscoveredApplications200ResponseInnerV2024 = FullDiscoveredAppli
|
|
|
17480
17539
|
*/
|
|
17481
17540
|
export interface GetHistoricalIdentityEvents200ResponseInnerV2024 {
|
|
17482
17541
|
/**
|
|
17483
|
-
*
|
|
17484
|
-
* @type {
|
|
17542
|
+
* the id of the certification item
|
|
17543
|
+
* @type {string}
|
|
17485
17544
|
* @memberof GetHistoricalIdentityEvents200ResponseInnerV2024
|
|
17486
17545
|
*/
|
|
17487
|
-
'
|
|
17546
|
+
'certificationId': string;
|
|
17488
17547
|
/**
|
|
17489
|
-
* the
|
|
17548
|
+
* the certification item name
|
|
17490
17549
|
* @type {string}
|
|
17491
17550
|
* @memberof GetHistoricalIdentityEvents200ResponseInnerV2024
|
|
17492
17551
|
*/
|
|
17493
|
-
'
|
|
17552
|
+
'certificationName': string;
|
|
17494
17553
|
/**
|
|
17495
|
-
* the
|
|
17554
|
+
* the date ceritification was signed
|
|
17496
17555
|
* @type {string}
|
|
17497
17556
|
* @memberof GetHistoricalIdentityEvents200ResponseInnerV2024
|
|
17498
17557
|
*/
|
|
17499
|
-
'
|
|
17558
|
+
'signedDate'?: string;
|
|
17500
17559
|
/**
|
|
17501
|
-
*
|
|
17502
|
-
* @type {
|
|
17560
|
+
* this field is deprecated and may go away
|
|
17561
|
+
* @type {Array<CertifierResponseV2024>}
|
|
17503
17562
|
* @memberof GetHistoricalIdentityEvents200ResponseInnerV2024
|
|
17504
17563
|
*/
|
|
17505
|
-
'
|
|
17564
|
+
'certifiers'?: Array<CertifierResponseV2024>;
|
|
17506
17565
|
/**
|
|
17507
|
-
*
|
|
17508
|
-
* @type {
|
|
17566
|
+
* The list of identities who review this certification
|
|
17567
|
+
* @type {Array<CertifierResponseV2024>}
|
|
17509
17568
|
* @memberof GetHistoricalIdentityEvents200ResponseInnerV2024
|
|
17510
17569
|
*/
|
|
17511
|
-
'
|
|
17570
|
+
'reviewers'?: Array<CertifierResponseV2024>;
|
|
17512
17571
|
/**
|
|
17513
17572
|
*
|
|
17514
|
-
* @type {
|
|
17573
|
+
* @type {CertifierResponseV2024}
|
|
17515
17574
|
* @memberof GetHistoricalIdentityEvents200ResponseInnerV2024
|
|
17516
17575
|
*/
|
|
17517
|
-
'
|
|
17576
|
+
'signer'?: CertifierResponseV2024;
|
|
17518
17577
|
/**
|
|
17519
|
-
*
|
|
17520
|
-
* @type {
|
|
17578
|
+
* the event type
|
|
17579
|
+
* @type {string}
|
|
17521
17580
|
* @memberof GetHistoricalIdentityEvents200ResponseInnerV2024
|
|
17522
17581
|
*/
|
|
17523
|
-
'
|
|
17582
|
+
'eventType'?: string;
|
|
17524
17583
|
/**
|
|
17525
|
-
* the
|
|
17584
|
+
* the date of event
|
|
17526
17585
|
* @type {string}
|
|
17527
17586
|
* @memberof GetHistoricalIdentityEvents200ResponseInnerV2024
|
|
17528
17587
|
*/
|
|
17529
|
-
'
|
|
17588
|
+
'dateTime'?: string;
|
|
17530
17589
|
/**
|
|
17531
|
-
* the
|
|
17590
|
+
* the identity id
|
|
17532
17591
|
* @type {string}
|
|
17533
17592
|
* @memberof GetHistoricalIdentityEvents200ResponseInnerV2024
|
|
17534
17593
|
*/
|
|
17535
|
-
'
|
|
17594
|
+
'identityId'?: string;
|
|
17536
17595
|
/**
|
|
17537
|
-
*
|
|
17538
|
-
* @type {
|
|
17596
|
+
*
|
|
17597
|
+
* @type {AccessItemAssociatedAccessItemV2024}
|
|
17539
17598
|
* @memberof GetHistoricalIdentityEvents200ResponseInnerV2024
|
|
17540
17599
|
*/
|
|
17541
|
-
'
|
|
17600
|
+
'accessItem': AccessItemAssociatedAccessItemV2024;
|
|
17542
17601
|
/**
|
|
17543
|
-
*
|
|
17544
|
-
* @type {
|
|
17602
|
+
*
|
|
17603
|
+
* @type {CorrelatedGovernanceEventV2024}
|
|
17545
17604
|
* @memberof GetHistoricalIdentityEvents200ResponseInnerV2024
|
|
17546
17605
|
*/
|
|
17547
|
-
'
|
|
17606
|
+
'governanceEvent': CorrelatedGovernanceEventV2024 | null;
|
|
17548
17607
|
/**
|
|
17549
|
-
*
|
|
17550
|
-
* @type {
|
|
17608
|
+
* the access item type
|
|
17609
|
+
* @type {string}
|
|
17551
17610
|
* @memberof GetHistoricalIdentityEvents200ResponseInnerV2024
|
|
17552
17611
|
*/
|
|
17553
|
-
'
|
|
17612
|
+
'accessItemType'?: GetHistoricalIdentityEvents200ResponseInnerV2024AccessItemTypeV2024;
|
|
17554
17613
|
/**
|
|
17555
17614
|
*
|
|
17556
|
-
* @type {
|
|
17615
|
+
* @type {Array<AttributeChangeV2024>}
|
|
17557
17616
|
* @memberof GetHistoricalIdentityEvents200ResponseInnerV2024
|
|
17558
17617
|
*/
|
|
17559
|
-
'
|
|
17618
|
+
'attributeChanges': Array<AttributeChangeV2024>;
|
|
17560
17619
|
/**
|
|
17561
17620
|
*
|
|
17562
|
-
* @type {
|
|
17621
|
+
* @type {AccessRequestedAccountV2024}
|
|
17563
17622
|
* @memberof GetHistoricalIdentityEvents200ResponseInnerV2024
|
|
17564
17623
|
*/
|
|
17565
|
-
'account'
|
|
17624
|
+
'account': AccessRequestedAccountV2024;
|
|
17566
17625
|
/**
|
|
17567
17626
|
*
|
|
17568
|
-
* @type {
|
|
17627
|
+
* @type {AccessRequestedStatusChangeV2024}
|
|
17569
17628
|
* @memberof GetHistoricalIdentityEvents200ResponseInnerV2024
|
|
17570
17629
|
*/
|
|
17571
|
-
'statusChange'
|
|
17630
|
+
'statusChange': AccessRequestedStatusChangeV2024;
|
|
17572
17631
|
}
|
|
17632
|
+
export declare const GetHistoricalIdentityEvents200ResponseInnerV2024AccessItemTypeV2024: {
|
|
17633
|
+
readonly Account: "account";
|
|
17634
|
+
readonly App: "app";
|
|
17635
|
+
readonly Entitlement: "entitlement";
|
|
17636
|
+
readonly Role: "role";
|
|
17637
|
+
readonly AccessProfile: "accessProfile";
|
|
17638
|
+
};
|
|
17639
|
+
export type GetHistoricalIdentityEvents200ResponseInnerV2024AccessItemTypeV2024 = typeof GetHistoricalIdentityEvents200ResponseInnerV2024AccessItemTypeV2024[keyof typeof GetHistoricalIdentityEvents200ResponseInnerV2024AccessItemTypeV2024];
|
|
17573
17640
|
/**
|
|
17574
17641
|
*
|
|
17575
17642
|
* @export
|
|
@@ -17751,6 +17818,18 @@ export interface GetPersonalAccessTokenResponseV2024 {
|
|
|
17751
17818
|
* @memberof GetPersonalAccessTokenResponseV2024
|
|
17752
17819
|
*/
|
|
17753
17820
|
'managed'?: boolean;
|
|
17821
|
+
/**
|
|
17822
|
+
* 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.
|
|
17823
|
+
* @type {number}
|
|
17824
|
+
* @memberof GetPersonalAccessTokenResponseV2024
|
|
17825
|
+
*/
|
|
17826
|
+
'accessTokenValiditySeconds'?: number;
|
|
17827
|
+
/**
|
|
17828
|
+
* 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.
|
|
17829
|
+
* @type {string}
|
|
17830
|
+
* @memberof GetPersonalAccessTokenResponseV2024
|
|
17831
|
+
*/
|
|
17832
|
+
'expirationDate'?: string;
|
|
17754
17833
|
}
|
|
17755
17834
|
/**
|
|
17756
17835
|
*
|
|
@@ -18585,13 +18664,13 @@ export interface IdentityCertifiedV2024 {
|
|
|
18585
18664
|
* @type {string}
|
|
18586
18665
|
* @memberof IdentityCertifiedV2024
|
|
18587
18666
|
*/
|
|
18588
|
-
'certificationId'
|
|
18667
|
+
'certificationId': string;
|
|
18589
18668
|
/**
|
|
18590
18669
|
* the certification item name
|
|
18591
18670
|
* @type {string}
|
|
18592
18671
|
* @memberof IdentityCertifiedV2024
|
|
18593
18672
|
*/
|
|
18594
|
-
'certificationName'
|
|
18673
|
+
'certificationName': string;
|
|
18595
18674
|
/**
|
|
18596
18675
|
* the date ceritification was signed
|
|
18597
18676
|
* @type {string}
|
|
@@ -18627,7 +18706,7 @@ export interface IdentityCertifiedV2024 {
|
|
|
18627
18706
|
* @type {string}
|
|
18628
18707
|
* @memberof IdentityCertifiedV2024
|
|
18629
18708
|
*/
|
|
18630
|
-
'
|
|
18709
|
+
'dateTime'?: string;
|
|
18631
18710
|
}
|
|
18632
18711
|
/**
|
|
18633
18712
|
*
|
|
@@ -21300,10 +21379,125 @@ export interface ListFormInstancesByTenantResponseV2024 {
|
|
|
21300
21379
|
'results'?: Array<FormInstanceResponseV2024>;
|
|
21301
21380
|
}
|
|
21302
21381
|
/**
|
|
21303
|
-
*
|
|
21382
|
+
*
|
|
21383
|
+
* @export
|
|
21384
|
+
* @interface ListIdentityAccessItems200ResponseInnerV2024
|
|
21385
|
+
*/
|
|
21386
|
+
export interface ListIdentityAccessItems200ResponseInnerV2024 {
|
|
21387
|
+
/**
|
|
21388
|
+
* the access item id
|
|
21389
|
+
* @type {string}
|
|
21390
|
+
* @memberof ListIdentityAccessItems200ResponseInnerV2024
|
|
21391
|
+
*/
|
|
21392
|
+
'id'?: string;
|
|
21393
|
+
/**
|
|
21394
|
+
* the access item type. entitlement in this case
|
|
21395
|
+
* @type {string}
|
|
21396
|
+
* @memberof ListIdentityAccessItems200ResponseInnerV2024
|
|
21397
|
+
*/
|
|
21398
|
+
'accessType'?: string;
|
|
21399
|
+
/**
|
|
21400
|
+
* the access item display name
|
|
21401
|
+
* @type {string}
|
|
21402
|
+
* @memberof ListIdentityAccessItems200ResponseInnerV2024
|
|
21403
|
+
*/
|
|
21404
|
+
'displayName'?: string;
|
|
21405
|
+
/**
|
|
21406
|
+
* the associated source name if it exists
|
|
21407
|
+
* @type {string}
|
|
21408
|
+
* @memberof ListIdentityAccessItems200ResponseInnerV2024
|
|
21409
|
+
*/
|
|
21410
|
+
'sourceName'?: string | null;
|
|
21411
|
+
/**
|
|
21412
|
+
* the entitlement attribute
|
|
21413
|
+
* @type {string}
|
|
21414
|
+
* @memberof ListIdentityAccessItems200ResponseInnerV2024
|
|
21415
|
+
*/
|
|
21416
|
+
'attribute': string;
|
|
21417
|
+
/**
|
|
21418
|
+
* the associated value
|
|
21419
|
+
* @type {string}
|
|
21420
|
+
* @memberof ListIdentityAccessItems200ResponseInnerV2024
|
|
21421
|
+
*/
|
|
21422
|
+
'value': string;
|
|
21423
|
+
/**
|
|
21424
|
+
* the type of entitlement
|
|
21425
|
+
* @type {string}
|
|
21426
|
+
* @memberof ListIdentityAccessItems200ResponseInnerV2024
|
|
21427
|
+
*/
|
|
21428
|
+
'type': string;
|
|
21429
|
+
/**
|
|
21430
|
+
* the description for the role
|
|
21431
|
+
* @type {string}
|
|
21432
|
+
* @memberof ListIdentityAccessItems200ResponseInnerV2024
|
|
21433
|
+
*/
|
|
21434
|
+
'description'?: string;
|
|
21435
|
+
/**
|
|
21436
|
+
* the id of the source
|
|
21437
|
+
* @type {string}
|
|
21438
|
+
* @memberof ListIdentityAccessItems200ResponseInnerV2024
|
|
21439
|
+
*/
|
|
21440
|
+
'sourceId'?: string;
|
|
21441
|
+
/**
|
|
21442
|
+
* indicates whether the access profile is standalone
|
|
21443
|
+
* @type {boolean}
|
|
21444
|
+
* @memberof ListIdentityAccessItems200ResponseInnerV2024
|
|
21445
|
+
*/
|
|
21446
|
+
'standalone': boolean | null;
|
|
21447
|
+
/**
|
|
21448
|
+
* indicates whether the entitlement is privileged
|
|
21449
|
+
* @type {boolean}
|
|
21450
|
+
* @memberof ListIdentityAccessItems200ResponseInnerV2024
|
|
21451
|
+
*/
|
|
21452
|
+
'privileged': boolean | null;
|
|
21453
|
+
/**
|
|
21454
|
+
* indicates whether the entitlement is cloud governed
|
|
21455
|
+
* @type {boolean}
|
|
21456
|
+
* @memberof ListIdentityAccessItems200ResponseInnerV2024
|
|
21457
|
+
*/
|
|
21458
|
+
'cloudGoverned': boolean | null;
|
|
21459
|
+
/**
|
|
21460
|
+
* the number of entitlements the account will create
|
|
21461
|
+
* @type {number}
|
|
21462
|
+
* @memberof ListIdentityAccessItems200ResponseInnerV2024
|
|
21463
|
+
*/
|
|
21464
|
+
'entitlementCount': number;
|
|
21465
|
+
/**
|
|
21466
|
+
* the list of app ids associated with the access profile
|
|
21467
|
+
* @type {Array<AccessItemAccessProfileResponseAppRefsInnerV2024>}
|
|
21468
|
+
* @memberof ListIdentityAccessItems200ResponseInnerV2024
|
|
21469
|
+
*/
|
|
21470
|
+
'appRefs': Array<AccessItemAccessProfileResponseAppRefsInnerV2024>;
|
|
21471
|
+
/**
|
|
21472
|
+
* the date the role is no longer assigned to the specified identity
|
|
21473
|
+
* @type {string}
|
|
21474
|
+
* @memberof ListIdentityAccessItems200ResponseInnerV2024
|
|
21475
|
+
*/
|
|
21476
|
+
'removeDate'?: string;
|
|
21477
|
+
/**
|
|
21478
|
+
* indicates whether the role is revocable
|
|
21479
|
+
* @type {boolean}
|
|
21480
|
+
* @memberof ListIdentityAccessItems200ResponseInnerV2024
|
|
21481
|
+
*/
|
|
21482
|
+
'revocable': boolean;
|
|
21483
|
+
/**
|
|
21484
|
+
* the native identifier used to uniquely identify an acccount
|
|
21485
|
+
* @type {string}
|
|
21486
|
+
* @memberof ListIdentityAccessItems200ResponseInnerV2024
|
|
21487
|
+
*/
|
|
21488
|
+
'nativeIdentity': string;
|
|
21489
|
+
/**
|
|
21490
|
+
* the app role id
|
|
21491
|
+
* @type {string}
|
|
21492
|
+
* @memberof ListIdentityAccessItems200ResponseInnerV2024
|
|
21493
|
+
*/
|
|
21494
|
+
'appRoleId': string | null;
|
|
21495
|
+
}
|
|
21496
|
+
/**
|
|
21497
|
+
* @type ListIdentitySnapshotAccessItems200ResponseInnerV2024
|
|
21304
21498
|
* @export
|
|
21305
21499
|
*/
|
|
21306
|
-
export type
|
|
21500
|
+
export type ListIdentitySnapshotAccessItems200ResponseInnerV2024 = AccessItemAccessProfileResponseV2024 | AccessItemAccountResponseV2024 | AccessItemAppResponseV2024 | AccessItemEntitlementResponseV2024 | AccessItemRoleResponseV2024;
|
|
21307
21501
|
/**
|
|
21308
21502
|
*
|
|
21309
21503
|
* @export
|
|
@@ -22080,7 +22274,7 @@ export type MachineAccountV2024ClassificationMethodV2024 = typeof MachineAccount
|
|
|
22080
22274
|
*/
|
|
22081
22275
|
export interface MachineClassificationConfigV2024 {
|
|
22082
22276
|
/**
|
|
22083
|
-
* Indicates
|
|
22277
|
+
* Indicates whether Classification is enabled for a Source
|
|
22084
22278
|
* @type {boolean}
|
|
22085
22279
|
* @memberof MachineClassificationConfigV2024
|
|
22086
22280
|
*/
|
|
@@ -22092,19 +22286,19 @@ export interface MachineClassificationConfigV2024 {
|
|
|
22092
22286
|
*/
|
|
22093
22287
|
'classificationMethod'?: MachineClassificationConfigV2024ClassificationMethodV2024;
|
|
22094
22288
|
/**
|
|
22095
|
-
*
|
|
22096
|
-
* @type {
|
|
22289
|
+
*
|
|
22290
|
+
* @type {MachineClassificationCriteriaLevel1V2024}
|
|
22097
22291
|
* @memberof MachineClassificationConfigV2024
|
|
22098
22292
|
*/
|
|
22099
|
-
'criteria'?:
|
|
22293
|
+
'criteria'?: MachineClassificationCriteriaLevel1V2024;
|
|
22100
22294
|
/**
|
|
22101
|
-
*
|
|
22295
|
+
* Date the config was created
|
|
22102
22296
|
* @type {string}
|
|
22103
22297
|
* @memberof MachineClassificationConfigV2024
|
|
22104
22298
|
*/
|
|
22105
22299
|
'created'?: string;
|
|
22106
22300
|
/**
|
|
22107
|
-
*
|
|
22301
|
+
* Date the config was last updated
|
|
22108
22302
|
* @type {string}
|
|
22109
22303
|
* @memberof MachineClassificationConfigV2024
|
|
22110
22304
|
*/
|
|
@@ -22112,8 +22306,153 @@ export interface MachineClassificationConfigV2024 {
|
|
|
22112
22306
|
}
|
|
22113
22307
|
export declare const MachineClassificationConfigV2024ClassificationMethodV2024: {
|
|
22114
22308
|
readonly Source: "SOURCE";
|
|
22309
|
+
readonly Criteria: "CRITERIA";
|
|
22115
22310
|
};
|
|
22116
22311
|
export type MachineClassificationConfigV2024ClassificationMethodV2024 = typeof MachineClassificationConfigV2024ClassificationMethodV2024[keyof typeof MachineClassificationConfigV2024ClassificationMethodV2024];
|
|
22312
|
+
/**
|
|
22313
|
+
*
|
|
22314
|
+
* @export
|
|
22315
|
+
* @interface MachineClassificationCriteriaLevel1V2024
|
|
22316
|
+
*/
|
|
22317
|
+
export interface MachineClassificationCriteriaLevel1V2024 {
|
|
22318
|
+
/**
|
|
22319
|
+
*
|
|
22320
|
+
* @type {MachineClassificationCriteriaOperationV2024}
|
|
22321
|
+
* @memberof MachineClassificationCriteriaLevel1V2024
|
|
22322
|
+
*/
|
|
22323
|
+
'operation'?: MachineClassificationCriteriaOperationV2024;
|
|
22324
|
+
/**
|
|
22325
|
+
* Indicates whether case matters when evaluating the criteria
|
|
22326
|
+
* @type {boolean}
|
|
22327
|
+
* @memberof MachineClassificationCriteriaLevel1V2024
|
|
22328
|
+
*/
|
|
22329
|
+
'caseSensitive'?: boolean;
|
|
22330
|
+
/**
|
|
22331
|
+
* The data type of the attribute being evaluated
|
|
22332
|
+
* @type {string}
|
|
22333
|
+
* @memberof MachineClassificationCriteriaLevel1V2024
|
|
22334
|
+
*/
|
|
22335
|
+
'dataType'?: string | null;
|
|
22336
|
+
/**
|
|
22337
|
+
* The attribute to evaluate in the classification criteria
|
|
22338
|
+
* @type {string}
|
|
22339
|
+
* @memberof MachineClassificationCriteriaLevel1V2024
|
|
22340
|
+
*/
|
|
22341
|
+
'attribute'?: string | null;
|
|
22342
|
+
/**
|
|
22343
|
+
* The value to compare against the attribute in the classification criteria
|
|
22344
|
+
* @type {string}
|
|
22345
|
+
* @memberof MachineClassificationCriteriaLevel1V2024
|
|
22346
|
+
*/
|
|
22347
|
+
'value'?: string | null;
|
|
22348
|
+
/**
|
|
22349
|
+
* An array of child classification criteria objects
|
|
22350
|
+
* @type {Array<MachineClassificationCriteriaLevel2V2024>}
|
|
22351
|
+
* @memberof MachineClassificationCriteriaLevel1V2024
|
|
22352
|
+
*/
|
|
22353
|
+
'children'?: Array<MachineClassificationCriteriaLevel2V2024> | null;
|
|
22354
|
+
}
|
|
22355
|
+
/**
|
|
22356
|
+
*
|
|
22357
|
+
* @export
|
|
22358
|
+
* @interface MachineClassificationCriteriaLevel2V2024
|
|
22359
|
+
*/
|
|
22360
|
+
export interface MachineClassificationCriteriaLevel2V2024 {
|
|
22361
|
+
/**
|
|
22362
|
+
*
|
|
22363
|
+
* @type {MachineClassificationCriteriaOperationV2024}
|
|
22364
|
+
* @memberof MachineClassificationCriteriaLevel2V2024
|
|
22365
|
+
*/
|
|
22366
|
+
'operation'?: MachineClassificationCriteriaOperationV2024;
|
|
22367
|
+
/**
|
|
22368
|
+
* Indicates whether case matters when evaluating the criteria
|
|
22369
|
+
* @type {boolean}
|
|
22370
|
+
* @memberof MachineClassificationCriteriaLevel2V2024
|
|
22371
|
+
*/
|
|
22372
|
+
'caseSensitive'?: boolean;
|
|
22373
|
+
/**
|
|
22374
|
+
* The data type of the attribute being evaluated
|
|
22375
|
+
* @type {string}
|
|
22376
|
+
* @memberof MachineClassificationCriteriaLevel2V2024
|
|
22377
|
+
*/
|
|
22378
|
+
'dataType'?: string | null;
|
|
22379
|
+
/**
|
|
22380
|
+
* The attribute to evaluate in the classification criteria
|
|
22381
|
+
* @type {string}
|
|
22382
|
+
* @memberof MachineClassificationCriteriaLevel2V2024
|
|
22383
|
+
*/
|
|
22384
|
+
'attribute'?: string | null;
|
|
22385
|
+
/**
|
|
22386
|
+
* The value to compare against the attribute in the classification criteria
|
|
22387
|
+
* @type {string}
|
|
22388
|
+
* @memberof MachineClassificationCriteriaLevel2V2024
|
|
22389
|
+
*/
|
|
22390
|
+
'value'?: string | null;
|
|
22391
|
+
/**
|
|
22392
|
+
* An array of child classification criteria objects
|
|
22393
|
+
* @type {Array<MachineClassificationCriteriaLevel3V2024>}
|
|
22394
|
+
* @memberof MachineClassificationCriteriaLevel2V2024
|
|
22395
|
+
*/
|
|
22396
|
+
'children'?: Array<MachineClassificationCriteriaLevel3V2024> | null;
|
|
22397
|
+
}
|
|
22398
|
+
/**
|
|
22399
|
+
*
|
|
22400
|
+
* @export
|
|
22401
|
+
* @interface MachineClassificationCriteriaLevel3V2024
|
|
22402
|
+
*/
|
|
22403
|
+
export interface MachineClassificationCriteriaLevel3V2024 {
|
|
22404
|
+
/**
|
|
22405
|
+
*
|
|
22406
|
+
* @type {MachineClassificationCriteriaOperationV2024}
|
|
22407
|
+
* @memberof MachineClassificationCriteriaLevel3V2024
|
|
22408
|
+
*/
|
|
22409
|
+
'operation'?: MachineClassificationCriteriaOperationV2024;
|
|
22410
|
+
/**
|
|
22411
|
+
* Indicates whether or not case matters when evaluating the criteria
|
|
22412
|
+
* @type {boolean}
|
|
22413
|
+
* @memberof MachineClassificationCriteriaLevel3V2024
|
|
22414
|
+
*/
|
|
22415
|
+
'caseSensitive'?: boolean;
|
|
22416
|
+
/**
|
|
22417
|
+
* The data type of the attribute being evaluated
|
|
22418
|
+
* @type {string}
|
|
22419
|
+
* @memberof MachineClassificationCriteriaLevel3V2024
|
|
22420
|
+
*/
|
|
22421
|
+
'dataType'?: string | null;
|
|
22422
|
+
/**
|
|
22423
|
+
* The attribute to evaluate in the classification criteria
|
|
22424
|
+
* @type {string}
|
|
22425
|
+
* @memberof MachineClassificationCriteriaLevel3V2024
|
|
22426
|
+
*/
|
|
22427
|
+
'attribute'?: string | null;
|
|
22428
|
+
/**
|
|
22429
|
+
* The value to compare against the attribute in the classification criteria
|
|
22430
|
+
* @type {string}
|
|
22431
|
+
* @memberof MachineClassificationCriteriaLevel3V2024
|
|
22432
|
+
*/
|
|
22433
|
+
'value'?: string | null;
|
|
22434
|
+
/**
|
|
22435
|
+
* An array of child classification criteria objects
|
|
22436
|
+
* @type {Array<string>}
|
|
22437
|
+
* @memberof MachineClassificationCriteriaLevel3V2024
|
|
22438
|
+
*/
|
|
22439
|
+
'children'?: Array<string> | null;
|
|
22440
|
+
}
|
|
22441
|
+
/**
|
|
22442
|
+
* An operation to perform on the classification criteria
|
|
22443
|
+
* @export
|
|
22444
|
+
* @enum {string}
|
|
22445
|
+
*/
|
|
22446
|
+
export declare const MachineClassificationCriteriaOperationV2024: {
|
|
22447
|
+
readonly Equals: "EQUALS";
|
|
22448
|
+
readonly NotEquals: "NOT_EQUALS";
|
|
22449
|
+
readonly StartsWith: "STARTS_WITH";
|
|
22450
|
+
readonly EndsWith: "ENDS_WITH";
|
|
22451
|
+
readonly Contains: "CONTAINS";
|
|
22452
|
+
readonly And: "AND";
|
|
22453
|
+
readonly Or: "OR";
|
|
22454
|
+
};
|
|
22455
|
+
export type MachineClassificationCriteriaOperationV2024 = typeof MachineClassificationCriteriaOperationV2024[keyof typeof MachineClassificationCriteriaOperationV2024];
|
|
22117
22456
|
/**
|
|
22118
22457
|
*
|
|
22119
22458
|
* @export
|
|
@@ -30826,7 +31165,7 @@ export declare const RoleCriteriaKeyTypeV2024: {
|
|
|
30826
31165
|
};
|
|
30827
31166
|
export type RoleCriteriaKeyTypeV2024 = typeof RoleCriteriaKeyTypeV2024[keyof typeof RoleCriteriaKeyTypeV2024];
|
|
30828
31167
|
/**
|
|
30829
|
-
* Refers to a specific Identity attribute, Account
|
|
31168
|
+
* Refers to a specific Identity attribute, Account attribute, or Entitlement used in Role membership criteria
|
|
30830
31169
|
* @export
|
|
30831
31170
|
* @interface RoleCriteriaKeyV2024
|
|
30832
31171
|
*/
|
|
@@ -36454,6 +36793,35 @@ export interface SodPolicyConflictingAccessCriteriaV2024 {
|
|
|
36454
36793
|
*/
|
|
36455
36794
|
'rightCriteria'?: AccessCriteriaV2024;
|
|
36456
36795
|
}
|
|
36796
|
+
/**
|
|
36797
|
+
* SOD policy.
|
|
36798
|
+
* @export
|
|
36799
|
+
* @interface SodPolicyDto1V2024
|
|
36800
|
+
*/
|
|
36801
|
+
export interface SodPolicyDto1V2024 {
|
|
36802
|
+
/**
|
|
36803
|
+
* SOD policy DTO type.
|
|
36804
|
+
* @type {string}
|
|
36805
|
+
* @memberof SodPolicyDto1V2024
|
|
36806
|
+
*/
|
|
36807
|
+
'type'?: SodPolicyDto1V2024TypeV2024;
|
|
36808
|
+
/**
|
|
36809
|
+
* SOD policy ID.
|
|
36810
|
+
* @type {string}
|
|
36811
|
+
* @memberof SodPolicyDto1V2024
|
|
36812
|
+
*/
|
|
36813
|
+
'id'?: string;
|
|
36814
|
+
/**
|
|
36815
|
+
* SOD policy display name.
|
|
36816
|
+
* @type {string}
|
|
36817
|
+
* @memberof SodPolicyDto1V2024
|
|
36818
|
+
*/
|
|
36819
|
+
'name'?: string;
|
|
36820
|
+
}
|
|
36821
|
+
export declare const SodPolicyDto1V2024TypeV2024: {
|
|
36822
|
+
readonly SodPolicy: "SOD_POLICY";
|
|
36823
|
+
};
|
|
36824
|
+
export type SodPolicyDto1V2024TypeV2024 = typeof SodPolicyDto1V2024TypeV2024[keyof typeof SodPolicyDto1V2024TypeV2024];
|
|
36457
36825
|
/**
|
|
36458
36826
|
* SOD policy.
|
|
36459
36827
|
* @export
|
|
@@ -36785,10 +37153,10 @@ export interface SodViolationCheckResultV2024 {
|
|
|
36785
37153
|
'violationContexts'?: Array<SodViolationContextV2024> | null;
|
|
36786
37154
|
/**
|
|
36787
37155
|
* A list of the SOD policies that were violated.
|
|
36788
|
-
* @type {Array<
|
|
37156
|
+
* @type {Array<SodPolicyDto1V2024>}
|
|
36789
37157
|
* @memberof SodViolationCheckResultV2024
|
|
36790
37158
|
*/
|
|
36791
|
-
'violatedPolicies'?: Array<
|
|
37159
|
+
'violatedPolicies'?: Array<SodPolicyDto1V2024> | null;
|
|
36792
37160
|
}
|
|
36793
37161
|
/**
|
|
36794
37162
|
* An object referencing an SOD violation check
|
|
@@ -36879,10 +37247,10 @@ export interface SodViolationContextConflictingAccessCriteriaV2024 {
|
|
|
36879
37247
|
export interface SodViolationContextV2024 {
|
|
36880
37248
|
/**
|
|
36881
37249
|
*
|
|
36882
|
-
* @type {
|
|
37250
|
+
* @type {SodPolicyDto1V2024}
|
|
36883
37251
|
* @memberof SodViolationContextV2024
|
|
36884
37252
|
*/
|
|
36885
|
-
'policy'?:
|
|
37253
|
+
'policy'?: SodPolicyDto1V2024;
|
|
36886
37254
|
/**
|
|
36887
37255
|
*
|
|
36888
37256
|
* @type {SodViolationContextConflictingAccessCriteriaV2024}
|
|
@@ -42216,7 +42584,7 @@ export declare const WorkItemTypeManualWorkItemsV2024: {
|
|
|
42216
42584
|
readonly Approval: "Approval";
|
|
42217
42585
|
readonly ViolationReview: "ViolationReview";
|
|
42218
42586
|
readonly Form: "Form";
|
|
42219
|
-
readonly
|
|
42587
|
+
readonly PolicyViolation: "PolicyViolation";
|
|
42220
42588
|
readonly Challenge: "Challenge";
|
|
42221
42589
|
readonly ImpactAnalysis: "ImpactAnalysis";
|
|
42222
42590
|
readonly Signoff: "Signoff";
|
|
@@ -43446,39 +43814,42 @@ export declare const AccessModelMetadataV2024ApiAxiosParamCreator: (configuratio
|
|
|
43446
43814
|
* Get single Access Model Metadata Attribute
|
|
43447
43815
|
* @summary Get access model metadata attribute
|
|
43448
43816
|
* @param {string} key Technical name of the Attribute.
|
|
43449
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
43450
43817
|
* @param {*} [axiosOptions] Override http request option.
|
|
43451
43818
|
* @throws {RequiredError}
|
|
43452
43819
|
*/
|
|
43453
|
-
getAccessModelMetadataAttribute: (key: string,
|
|
43820
|
+
getAccessModelMetadataAttribute: (key: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
43454
43821
|
/**
|
|
43455
43822
|
* Get single Access Model Metadata Attribute Value
|
|
43456
43823
|
* @summary Get access model metadata value
|
|
43457
43824
|
* @param {string} key Technical name of the Attribute.
|
|
43458
43825
|
* @param {string} value Technical name of the Attribute value.
|
|
43459
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
43460
43826
|
* @param {*} [axiosOptions] Override http request option.
|
|
43461
43827
|
* @throws {RequiredError}
|
|
43462
43828
|
*/
|
|
43463
|
-
getAccessModelMetadataAttributeValue: (key: string, value: string,
|
|
43829
|
+
getAccessModelMetadataAttributeValue: (key: string, value: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
43464
43830
|
/**
|
|
43465
43831
|
* Get a list of Access Model Metadata Attributes
|
|
43466
43832
|
* @summary List access model metadata attributes
|
|
43467
|
-
* @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
|
|
43468
|
-
* @param {string} [
|
|
43833
|
+
* @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*
|
|
43834
|
+
* @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**
|
|
43835
|
+
* @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.
|
|
43836
|
+
* @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.
|
|
43837
|
+
* @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.
|
|
43469
43838
|
* @param {*} [axiosOptions] Override http request option.
|
|
43470
43839
|
* @throws {RequiredError}
|
|
43471
43840
|
*/
|
|
43472
|
-
listAccessModelMetadataAttribute: (filters?: string,
|
|
43841
|
+
listAccessModelMetadataAttribute: (filters?: string, sorters?: string, offset?: number, limit?: number, count?: boolean, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
43473
43842
|
/**
|
|
43474
43843
|
* Get a list of Access Model Metadata Attribute Values
|
|
43475
43844
|
* @summary List access model metadata values
|
|
43476
43845
|
* @param {string} key Technical name of the Attribute.
|
|
43477
|
-
* @param {
|
|
43846
|
+
* @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.
|
|
43847
|
+
* @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.
|
|
43848
|
+
* @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.
|
|
43478
43849
|
* @param {*} [axiosOptions] Override http request option.
|
|
43479
43850
|
* @throws {RequiredError}
|
|
43480
43851
|
*/
|
|
43481
|
-
listAccessModelMetadataAttributeValue: (key: string,
|
|
43852
|
+
listAccessModelMetadataAttributeValue: (key: string, offset?: number, limit?: number, count?: boolean, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
43482
43853
|
};
|
|
43483
43854
|
/**
|
|
43484
43855
|
* AccessModelMetadataV2024Api - functional programming interface
|
|
@@ -43489,39 +43860,42 @@ export declare const AccessModelMetadataV2024ApiFp: (configuration?: Configurati
|
|
|
43489
43860
|
* Get single Access Model Metadata Attribute
|
|
43490
43861
|
* @summary Get access model metadata attribute
|
|
43491
43862
|
* @param {string} key Technical name of the Attribute.
|
|
43492
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
43493
43863
|
* @param {*} [axiosOptions] Override http request option.
|
|
43494
43864
|
* @throws {RequiredError}
|
|
43495
43865
|
*/
|
|
43496
|
-
getAccessModelMetadataAttribute(key: string,
|
|
43866
|
+
getAccessModelMetadataAttribute(key: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AttributeDTOV2024>>;
|
|
43497
43867
|
/**
|
|
43498
43868
|
* Get single Access Model Metadata Attribute Value
|
|
43499
43869
|
* @summary Get access model metadata value
|
|
43500
43870
|
* @param {string} key Technical name of the Attribute.
|
|
43501
43871
|
* @param {string} value Technical name of the Attribute value.
|
|
43502
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
43503
43872
|
* @param {*} [axiosOptions] Override http request option.
|
|
43504
43873
|
* @throws {RequiredError}
|
|
43505
43874
|
*/
|
|
43506
|
-
getAccessModelMetadataAttributeValue(key: string, value: string,
|
|
43875
|
+
getAccessModelMetadataAttributeValue(key: string, value: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AttributeValueDTOV2024>>;
|
|
43507
43876
|
/**
|
|
43508
43877
|
* Get a list of Access Model Metadata Attributes
|
|
43509
43878
|
* @summary List access model metadata attributes
|
|
43510
|
-
* @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
|
|
43511
|
-
* @param {string} [
|
|
43879
|
+
* @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*
|
|
43880
|
+
* @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**
|
|
43881
|
+
* @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.
|
|
43882
|
+
* @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.
|
|
43883
|
+
* @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.
|
|
43512
43884
|
* @param {*} [axiosOptions] Override http request option.
|
|
43513
43885
|
* @throws {RequiredError}
|
|
43514
43886
|
*/
|
|
43515
|
-
listAccessModelMetadataAttribute(filters?: string,
|
|
43887
|
+
listAccessModelMetadataAttribute(filters?: string, sorters?: string, offset?: number, limit?: number, count?: boolean, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<AttributeDTOV2024>>>;
|
|
43516
43888
|
/**
|
|
43517
43889
|
* Get a list of Access Model Metadata Attribute Values
|
|
43518
43890
|
* @summary List access model metadata values
|
|
43519
43891
|
* @param {string} key Technical name of the Attribute.
|
|
43520
|
-
* @param {
|
|
43892
|
+
* @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.
|
|
43893
|
+
* @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.
|
|
43894
|
+
* @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.
|
|
43521
43895
|
* @param {*} [axiosOptions] Override http request option.
|
|
43522
43896
|
* @throws {RequiredError}
|
|
43523
43897
|
*/
|
|
43524
|
-
listAccessModelMetadataAttributeValue(key: string,
|
|
43898
|
+
listAccessModelMetadataAttributeValue(key: string, offset?: number, limit?: number, count?: boolean, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<AttributeValueDTOV2024>>>;
|
|
43525
43899
|
};
|
|
43526
43900
|
/**
|
|
43527
43901
|
* AccessModelMetadataV2024Api - factory interface
|
|
@@ -43573,12 +43947,6 @@ export interface AccessModelMetadataV2024ApiGetAccessModelMetadataAttributeReque
|
|
|
43573
43947
|
* @memberof AccessModelMetadataV2024ApiGetAccessModelMetadataAttribute
|
|
43574
43948
|
*/
|
|
43575
43949
|
readonly key: string;
|
|
43576
|
-
/**
|
|
43577
|
-
* Use this header to enable this experimental API.
|
|
43578
|
-
* @type {string}
|
|
43579
|
-
* @memberof AccessModelMetadataV2024ApiGetAccessModelMetadataAttribute
|
|
43580
|
-
*/
|
|
43581
|
-
readonly xSailPointExperimental?: string;
|
|
43582
43950
|
}
|
|
43583
43951
|
/**
|
|
43584
43952
|
* Request parameters for getAccessModelMetadataAttributeValue operation in AccessModelMetadataV2024Api.
|
|
@@ -43598,12 +43966,6 @@ export interface AccessModelMetadataV2024ApiGetAccessModelMetadataAttributeValue
|
|
|
43598
43966
|
* @memberof AccessModelMetadataV2024ApiGetAccessModelMetadataAttributeValue
|
|
43599
43967
|
*/
|
|
43600
43968
|
readonly value: string;
|
|
43601
|
-
/**
|
|
43602
|
-
* Use this header to enable this experimental API.
|
|
43603
|
-
* @type {string}
|
|
43604
|
-
* @memberof AccessModelMetadataV2024ApiGetAccessModelMetadataAttributeValue
|
|
43605
|
-
*/
|
|
43606
|
-
readonly xSailPointExperimental?: string;
|
|
43607
43969
|
}
|
|
43608
43970
|
/**
|
|
43609
43971
|
* Request parameters for listAccessModelMetadataAttribute operation in AccessModelMetadataV2024Api.
|
|
@@ -43612,17 +43974,35 @@ export interface AccessModelMetadataV2024ApiGetAccessModelMetadataAttributeValue
|
|
|
43612
43974
|
*/
|
|
43613
43975
|
export interface AccessModelMetadataV2024ApiListAccessModelMetadataAttributeRequest {
|
|
43614
43976
|
/**
|
|
43615
|
-
* 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
|
|
43977
|
+
* 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*
|
|
43616
43978
|
* @type {string}
|
|
43617
43979
|
* @memberof AccessModelMetadataV2024ApiListAccessModelMetadataAttribute
|
|
43618
43980
|
*/
|
|
43619
43981
|
readonly filters?: string;
|
|
43620
43982
|
/**
|
|
43621
|
-
*
|
|
43983
|
+
* 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**
|
|
43622
43984
|
* @type {string}
|
|
43623
43985
|
* @memberof AccessModelMetadataV2024ApiListAccessModelMetadataAttribute
|
|
43624
43986
|
*/
|
|
43625
|
-
readonly
|
|
43987
|
+
readonly sorters?: string;
|
|
43988
|
+
/**
|
|
43989
|
+
* 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.
|
|
43990
|
+
* @type {number}
|
|
43991
|
+
* @memberof AccessModelMetadataV2024ApiListAccessModelMetadataAttribute
|
|
43992
|
+
*/
|
|
43993
|
+
readonly offset?: number;
|
|
43994
|
+
/**
|
|
43995
|
+
* Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
43996
|
+
* @type {number}
|
|
43997
|
+
* @memberof AccessModelMetadataV2024ApiListAccessModelMetadataAttribute
|
|
43998
|
+
*/
|
|
43999
|
+
readonly limit?: number;
|
|
44000
|
+
/**
|
|
44001
|
+
* 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.
|
|
44002
|
+
* @type {boolean}
|
|
44003
|
+
* @memberof AccessModelMetadataV2024ApiListAccessModelMetadataAttribute
|
|
44004
|
+
*/
|
|
44005
|
+
readonly count?: boolean;
|
|
43626
44006
|
}
|
|
43627
44007
|
/**
|
|
43628
44008
|
* Request parameters for listAccessModelMetadataAttributeValue operation in AccessModelMetadataV2024Api.
|
|
@@ -43637,11 +44017,23 @@ export interface AccessModelMetadataV2024ApiListAccessModelMetadataAttributeValu
|
|
|
43637
44017
|
*/
|
|
43638
44018
|
readonly key: string;
|
|
43639
44019
|
/**
|
|
43640
|
-
*
|
|
43641
|
-
* @type {
|
|
44020
|
+
* 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.
|
|
44021
|
+
* @type {number}
|
|
43642
44022
|
* @memberof AccessModelMetadataV2024ApiListAccessModelMetadataAttributeValue
|
|
43643
44023
|
*/
|
|
43644
|
-
readonly
|
|
44024
|
+
readonly offset?: number;
|
|
44025
|
+
/**
|
|
44026
|
+
* Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
44027
|
+
* @type {number}
|
|
44028
|
+
* @memberof AccessModelMetadataV2024ApiListAccessModelMetadataAttributeValue
|
|
44029
|
+
*/
|
|
44030
|
+
readonly limit?: number;
|
|
44031
|
+
/**
|
|
44032
|
+
* 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.
|
|
44033
|
+
* @type {boolean}
|
|
44034
|
+
* @memberof AccessModelMetadataV2024ApiListAccessModelMetadataAttributeValue
|
|
44035
|
+
*/
|
|
44036
|
+
readonly count?: boolean;
|
|
43645
44037
|
}
|
|
43646
44038
|
/**
|
|
43647
44039
|
* AccessModelMetadataV2024Api - object-oriented interface
|
|
@@ -55926,51 +56318,46 @@ export declare const EntitlementsV2024ApiAxiosParamCreator: (configuration?: Con
|
|
|
55926
56318
|
* @param {string} id The entitlement id.
|
|
55927
56319
|
* @param {string} attributeKey Technical name of the Attribute.
|
|
55928
56320
|
* @param {string} attributeValue Technical name of the Attribute Value.
|
|
55929
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
55930
56321
|
* @param {*} [axiosOptions] Override http request option.
|
|
55931
56322
|
* @throws {RequiredError}
|
|
55932
56323
|
*/
|
|
55933
|
-
createAccessModelMetadataForEntitlement: (id: string, attributeKey: string, attributeValue: string,
|
|
56324
|
+
createAccessModelMetadataForEntitlement: (id: string, attributeKey: string, attributeValue: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
55934
56325
|
/**
|
|
55935
56326
|
* Remove single Access Model Metadata from an entitlement.
|
|
55936
56327
|
* @summary Remove metadata from an entitlement.
|
|
55937
56328
|
* @param {string} id The entitlement id.
|
|
55938
56329
|
* @param {string} attributeKey Technical name of the Attribute.
|
|
55939
56330
|
* @param {string} attributeValue Technical name of the Attribute Value.
|
|
55940
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
55941
56331
|
* @param {*} [axiosOptions] Override http request option.
|
|
55942
56332
|
* @throws {RequiredError}
|
|
55943
56333
|
*/
|
|
55944
|
-
deleteAccessModelMetadataFromEntitlement: (id: string, attributeKey: string, attributeValue: string,
|
|
56334
|
+
deleteAccessModelMetadataFromEntitlement: (id: string, attributeKey: string, attributeValue: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
55945
56335
|
/**
|
|
55946
56336
|
* This API returns an entitlement by its ID.
|
|
55947
56337
|
* @summary Get an entitlement
|
|
55948
56338
|
* @param {string} id The entitlement ID
|
|
55949
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
55950
56339
|
* @param {*} [axiosOptions] Override http request option.
|
|
55951
56340
|
* @throws {RequiredError}
|
|
55952
56341
|
*/
|
|
55953
|
-
getEntitlement: (id: string,
|
|
56342
|
+
getEntitlement: (id: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
55954
56343
|
/**
|
|
55955
56344
|
* This API returns the entitlement request config for a specified entitlement.
|
|
55956
56345
|
* @summary Get entitlement request config
|
|
55957
56346
|
* @param {string} id Entitlement Id
|
|
55958
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
55959
56347
|
* @param {*} [axiosOptions] Override http request option.
|
|
55960
56348
|
* @throws {RequiredError}
|
|
55961
56349
|
*/
|
|
55962
|
-
getEntitlementRequestConfig: (id: string,
|
|
56350
|
+
getEntitlementRequestConfig: (id: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
55963
56351
|
/**
|
|
55964
56352
|
* 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`.
|
|
55965
56353
|
* @summary Aggregate entitlements
|
|
55966
56354
|
* @param {string} id Source Id
|
|
55967
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
55968
56355
|
* @param {File} [csvFile] The CSV file containing the source entitlements to aggregate.
|
|
55969
56356
|
* @param {*} [axiosOptions] Override http request option.
|
|
55970
56357
|
* @deprecated
|
|
55971
56358
|
* @throws {RequiredError}
|
|
55972
56359
|
*/
|
|
55973
|
-
importEntitlementsBySource: (id: string,
|
|
56360
|
+
importEntitlementsBySource: (id: string, csvFile?: File, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
55974
56361
|
/**
|
|
55975
56362
|
* This API returns a list of all child entitlements of a given entitlement.
|
|
55976
56363
|
* @summary List of entitlements children
|
|
@@ -55980,11 +56367,10 @@ export declare const EntitlementsV2024ApiAxiosParamCreator: (configuration?: Con
|
|
|
55980
56367
|
* @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.
|
|
55981
56368
|
* @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**
|
|
55982
56369
|
* @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*
|
|
55983
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
55984
56370
|
* @param {*} [axiosOptions] Override http request option.
|
|
55985
56371
|
* @throws {RequiredError}
|
|
55986
56372
|
*/
|
|
55987
|
-
listEntitlementChildren: (id: string, limit?: number, offset?: number, count?: boolean, sorters?: string, filters?: string,
|
|
56373
|
+
listEntitlementChildren: (id: string, limit?: number, offset?: number, count?: boolean, sorters?: string, filters?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
55988
56374
|
/**
|
|
55989
56375
|
* This API returns a list of all parent entitlements of a given entitlement.
|
|
55990
56376
|
* @summary List of entitlements parents
|
|
@@ -55994,16 +56380,15 @@ export declare const EntitlementsV2024ApiAxiosParamCreator: (configuration?: Con
|
|
|
55994
56380
|
* @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.
|
|
55995
56381
|
* @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**
|
|
55996
56382
|
* @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*
|
|
55997
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
55998
56383
|
* @param {*} [axiosOptions] Override http request option.
|
|
55999
56384
|
* @throws {RequiredError}
|
|
56000
56385
|
*/
|
|
56001
|
-
listEntitlementParents: (id: string, limit?: number, offset?: number, count?: boolean, sorters?: string, filters?: string,
|
|
56386
|
+
listEntitlementParents: (id: string, limit?: number, offset?: number, count?: boolean, sorters?: string, filters?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
56002
56387
|
/**
|
|
56003
56388
|
* 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.
|
|
56004
56389
|
* @summary Gets a list of entitlements.
|
|
56005
56390
|
* @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).
|
|
56006
|
-
* @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.
|
|
56391
|
+
* @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.
|
|
56007
56392
|
* @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).
|
|
56008
56393
|
* @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.
|
|
56009
56394
|
* @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.
|
|
@@ -56011,49 +56396,44 @@ export declare const EntitlementsV2024ApiAxiosParamCreator: (configuration?: Con
|
|
|
56011
56396
|
* @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.
|
|
56012
56397
|
* @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**
|
|
56013
56398
|
* @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*
|
|
56014
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
56015
56399
|
* @param {*} [axiosOptions] Override http request option.
|
|
56016
56400
|
* @throws {RequiredError}
|
|
56017
56401
|
*/
|
|
56018
|
-
listEntitlements: (accountId?: string, segmentedForIdentity?: string, forSegmentIds?: string, includeUnsegmented?: boolean, offset?: number, limit?: number, count?: boolean, sorters?: string, filters?: string,
|
|
56402
|
+
listEntitlements: (accountId?: string, segmentedForIdentity?: string, forSegmentIds?: string, includeUnsegmented?: boolean, offset?: number, limit?: number, count?: boolean, sorters?: string, filters?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
56019
56403
|
/**
|
|
56020
56404
|
* 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.
|
|
56021
56405
|
* @summary Patch an entitlement
|
|
56022
56406
|
* @param {string} id ID of the entitlement to patch
|
|
56023
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
56024
56407
|
* @param {Array<JsonPatchOperationV2024>} [jsonPatchOperationV2024]
|
|
56025
56408
|
* @param {*} [axiosOptions] Override http request option.
|
|
56026
56409
|
* @throws {RequiredError}
|
|
56027
56410
|
*/
|
|
56028
|
-
patchEntitlement: (id: string,
|
|
56411
|
+
patchEntitlement: (id: string, jsonPatchOperationV2024?: Array<JsonPatchOperationV2024>, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
56029
56412
|
/**
|
|
56030
56413
|
* This API replaces the entitlement request config for a specified entitlement.
|
|
56031
56414
|
* @summary Replace entitlement request config
|
|
56032
56415
|
* @param {string} id Entitlement ID
|
|
56033
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
56034
56416
|
* @param {EntitlementRequestConfigV2024} entitlementRequestConfigV2024
|
|
56035
56417
|
* @param {*} [axiosOptions] Override http request option.
|
|
56036
56418
|
* @throws {RequiredError}
|
|
56037
56419
|
*/
|
|
56038
|
-
putEntitlementRequestConfig: (id: string,
|
|
56420
|
+
putEntitlementRequestConfig: (id: string, entitlementRequestConfigV2024: EntitlementRequestConfigV2024, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
56039
56421
|
/**
|
|
56040
56422
|
* 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`.
|
|
56041
56423
|
* @summary Reset source entitlements
|
|
56042
56424
|
* @param {string} id ID of source for the entitlement reset
|
|
56043
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
56044
56425
|
* @param {*} [axiosOptions] Override http request option.
|
|
56045
56426
|
* @throws {RequiredError}
|
|
56046
56427
|
*/
|
|
56047
|
-
resetSourceEntitlements: (id: string,
|
|
56428
|
+
resetSourceEntitlements: (id: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
56048
56429
|
/**
|
|
56049
|
-
*
|
|
56430
|
+
* 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.
|
|
56050
56431
|
* @summary Bulk update an entitlement list
|
|
56051
56432
|
* @param {EntitlementBulkUpdateRequestV2024} entitlementBulkUpdateRequestV2024
|
|
56052
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
56053
56433
|
* @param {*} [axiosOptions] Override http request option.
|
|
56054
56434
|
* @throws {RequiredError}
|
|
56055
56435
|
*/
|
|
56056
|
-
updateEntitlementsInBulk: (entitlementBulkUpdateRequestV2024: EntitlementBulkUpdateRequestV2024,
|
|
56436
|
+
updateEntitlementsInBulk: (entitlementBulkUpdateRequestV2024: EntitlementBulkUpdateRequestV2024, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
56057
56437
|
};
|
|
56058
56438
|
/**
|
|
56059
56439
|
* EntitlementsV2024Api - functional programming interface
|
|
@@ -56066,51 +56446,46 @@ export declare const EntitlementsV2024ApiFp: (configuration?: Configuration) =>
|
|
|
56066
56446
|
* @param {string} id The entitlement id.
|
|
56067
56447
|
* @param {string} attributeKey Technical name of the Attribute.
|
|
56068
56448
|
* @param {string} attributeValue Technical name of the Attribute Value.
|
|
56069
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
56070
56449
|
* @param {*} [axiosOptions] Override http request option.
|
|
56071
56450
|
* @throws {RequiredError}
|
|
56072
56451
|
*/
|
|
56073
|
-
createAccessModelMetadataForEntitlement(id: string, attributeKey: string, attributeValue: string,
|
|
56452
|
+
createAccessModelMetadataForEntitlement(id: string, attributeKey: string, attributeValue: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EntitlementV2024>>;
|
|
56074
56453
|
/**
|
|
56075
56454
|
* Remove single Access Model Metadata from an entitlement.
|
|
56076
56455
|
* @summary Remove metadata from an entitlement.
|
|
56077
56456
|
* @param {string} id The entitlement id.
|
|
56078
56457
|
* @param {string} attributeKey Technical name of the Attribute.
|
|
56079
56458
|
* @param {string} attributeValue Technical name of the Attribute Value.
|
|
56080
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
56081
56459
|
* @param {*} [axiosOptions] Override http request option.
|
|
56082
56460
|
* @throws {RequiredError}
|
|
56083
56461
|
*/
|
|
56084
|
-
deleteAccessModelMetadataFromEntitlement(id: string, attributeKey: string, attributeValue: string,
|
|
56462
|
+
deleteAccessModelMetadataFromEntitlement(id: string, attributeKey: string, attributeValue: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
56085
56463
|
/**
|
|
56086
56464
|
* This API returns an entitlement by its ID.
|
|
56087
56465
|
* @summary Get an entitlement
|
|
56088
56466
|
* @param {string} id The entitlement ID
|
|
56089
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
56090
56467
|
* @param {*} [axiosOptions] Override http request option.
|
|
56091
56468
|
* @throws {RequiredError}
|
|
56092
56469
|
*/
|
|
56093
|
-
getEntitlement(id: string,
|
|
56470
|
+
getEntitlement(id: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EntitlementV2024>>;
|
|
56094
56471
|
/**
|
|
56095
56472
|
* This API returns the entitlement request config for a specified entitlement.
|
|
56096
56473
|
* @summary Get entitlement request config
|
|
56097
56474
|
* @param {string} id Entitlement Id
|
|
56098
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
56099
56475
|
* @param {*} [axiosOptions] Override http request option.
|
|
56100
56476
|
* @throws {RequiredError}
|
|
56101
56477
|
*/
|
|
56102
|
-
getEntitlementRequestConfig(id: string,
|
|
56478
|
+
getEntitlementRequestConfig(id: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EntitlementRequestConfigV2024>>;
|
|
56103
56479
|
/**
|
|
56104
56480
|
* 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`.
|
|
56105
56481
|
* @summary Aggregate entitlements
|
|
56106
56482
|
* @param {string} id Source Id
|
|
56107
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
56108
56483
|
* @param {File} [csvFile] The CSV file containing the source entitlements to aggregate.
|
|
56109
56484
|
* @param {*} [axiosOptions] Override http request option.
|
|
56110
56485
|
* @deprecated
|
|
56111
56486
|
* @throws {RequiredError}
|
|
56112
56487
|
*/
|
|
56113
|
-
importEntitlementsBySource(id: string,
|
|
56488
|
+
importEntitlementsBySource(id: string, csvFile?: File, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<LoadEntitlementTaskV2024>>;
|
|
56114
56489
|
/**
|
|
56115
56490
|
* This API returns a list of all child entitlements of a given entitlement.
|
|
56116
56491
|
* @summary List of entitlements children
|
|
@@ -56120,11 +56495,10 @@ export declare const EntitlementsV2024ApiFp: (configuration?: Configuration) =>
|
|
|
56120
56495
|
* @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.
|
|
56121
56496
|
* @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**
|
|
56122
56497
|
* @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*
|
|
56123
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
56124
56498
|
* @param {*} [axiosOptions] Override http request option.
|
|
56125
56499
|
* @throws {RequiredError}
|
|
56126
56500
|
*/
|
|
56127
|
-
listEntitlementChildren(id: string, limit?: number, offset?: number, count?: boolean, sorters?: string, filters?: string,
|
|
56501
|
+
listEntitlementChildren(id: string, limit?: number, offset?: number, count?: boolean, sorters?: string, filters?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<EntitlementV2024>>>;
|
|
56128
56502
|
/**
|
|
56129
56503
|
* This API returns a list of all parent entitlements of a given entitlement.
|
|
56130
56504
|
* @summary List of entitlements parents
|
|
@@ -56134,16 +56508,15 @@ export declare const EntitlementsV2024ApiFp: (configuration?: Configuration) =>
|
|
|
56134
56508
|
* @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.
|
|
56135
56509
|
* @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**
|
|
56136
56510
|
* @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*
|
|
56137
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
56138
56511
|
* @param {*} [axiosOptions] Override http request option.
|
|
56139
56512
|
* @throws {RequiredError}
|
|
56140
56513
|
*/
|
|
56141
|
-
listEntitlementParents(id: string, limit?: number, offset?: number, count?: boolean, sorters?: string, filters?: string,
|
|
56514
|
+
listEntitlementParents(id: string, limit?: number, offset?: number, count?: boolean, sorters?: string, filters?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<EntitlementV2024>>>;
|
|
56142
56515
|
/**
|
|
56143
56516
|
* 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.
|
|
56144
56517
|
* @summary Gets a list of entitlements.
|
|
56145
56518
|
* @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).
|
|
56146
|
-
* @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.
|
|
56519
|
+
* @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.
|
|
56147
56520
|
* @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).
|
|
56148
56521
|
* @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.
|
|
56149
56522
|
* @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.
|
|
@@ -56151,49 +56524,44 @@ export declare const EntitlementsV2024ApiFp: (configuration?: Configuration) =>
|
|
|
56151
56524
|
* @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.
|
|
56152
56525
|
* @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**
|
|
56153
56526
|
* @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*
|
|
56154
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
56155
56527
|
* @param {*} [axiosOptions] Override http request option.
|
|
56156
56528
|
* @throws {RequiredError}
|
|
56157
56529
|
*/
|
|
56158
|
-
listEntitlements(accountId?: string, segmentedForIdentity?: string, forSegmentIds?: string, includeUnsegmented?: boolean, offset?: number, limit?: number, count?: boolean, sorters?: string, filters?: string,
|
|
56530
|
+
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>>>;
|
|
56159
56531
|
/**
|
|
56160
56532
|
* 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.
|
|
56161
56533
|
* @summary Patch an entitlement
|
|
56162
56534
|
* @param {string} id ID of the entitlement to patch
|
|
56163
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
56164
56535
|
* @param {Array<JsonPatchOperationV2024>} [jsonPatchOperationV2024]
|
|
56165
56536
|
* @param {*} [axiosOptions] Override http request option.
|
|
56166
56537
|
* @throws {RequiredError}
|
|
56167
56538
|
*/
|
|
56168
|
-
patchEntitlement(id: string,
|
|
56539
|
+
patchEntitlement(id: string, jsonPatchOperationV2024?: Array<JsonPatchOperationV2024>, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EntitlementV2024>>;
|
|
56169
56540
|
/**
|
|
56170
56541
|
* This API replaces the entitlement request config for a specified entitlement.
|
|
56171
56542
|
* @summary Replace entitlement request config
|
|
56172
56543
|
* @param {string} id Entitlement ID
|
|
56173
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
56174
56544
|
* @param {EntitlementRequestConfigV2024} entitlementRequestConfigV2024
|
|
56175
56545
|
* @param {*} [axiosOptions] Override http request option.
|
|
56176
56546
|
* @throws {RequiredError}
|
|
56177
56547
|
*/
|
|
56178
|
-
putEntitlementRequestConfig(id: string,
|
|
56548
|
+
putEntitlementRequestConfig(id: string, entitlementRequestConfigV2024: EntitlementRequestConfigV2024, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EntitlementRequestConfigV2024>>;
|
|
56179
56549
|
/**
|
|
56180
56550
|
* 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`.
|
|
56181
56551
|
* @summary Reset source entitlements
|
|
56182
56552
|
* @param {string} id ID of source for the entitlement reset
|
|
56183
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
56184
56553
|
* @param {*} [axiosOptions] Override http request option.
|
|
56185
56554
|
* @throws {RequiredError}
|
|
56186
56555
|
*/
|
|
56187
|
-
resetSourceEntitlements(id: string,
|
|
56556
|
+
resetSourceEntitlements(id: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EntitlementSourceResetBaseReferenceDtoV2024>>;
|
|
56188
56557
|
/**
|
|
56189
|
-
*
|
|
56558
|
+
* 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.
|
|
56190
56559
|
* @summary Bulk update an entitlement list
|
|
56191
56560
|
* @param {EntitlementBulkUpdateRequestV2024} entitlementBulkUpdateRequestV2024
|
|
56192
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
56193
56561
|
* @param {*} [axiosOptions] Override http request option.
|
|
56194
56562
|
* @throws {RequiredError}
|
|
56195
56563
|
*/
|
|
56196
|
-
updateEntitlementsInBulk(entitlementBulkUpdateRequestV2024: EntitlementBulkUpdateRequestV2024,
|
|
56564
|
+
updateEntitlementsInBulk(entitlementBulkUpdateRequestV2024: EntitlementBulkUpdateRequestV2024, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
56197
56565
|
};
|
|
56198
56566
|
/**
|
|
56199
56567
|
* EntitlementsV2024Api - factory interface
|
|
@@ -56290,7 +56658,7 @@ export declare const EntitlementsV2024ApiFactory: (configuration?: Configuration
|
|
|
56290
56658
|
*/
|
|
56291
56659
|
resetSourceEntitlements(requestParameters: EntitlementsV2024ApiResetSourceEntitlementsRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<EntitlementSourceResetBaseReferenceDtoV2024>;
|
|
56292
56660
|
/**
|
|
56293
|
-
*
|
|
56661
|
+
* 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.
|
|
56294
56662
|
* @summary Bulk update an entitlement list
|
|
56295
56663
|
* @param {EntitlementsV2024ApiUpdateEntitlementsInBulkRequest} requestParameters Request parameters.
|
|
56296
56664
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -56322,12 +56690,6 @@ export interface EntitlementsV2024ApiCreateAccessModelMetadataForEntitlementRequ
|
|
|
56322
56690
|
* @memberof EntitlementsV2024ApiCreateAccessModelMetadataForEntitlement
|
|
56323
56691
|
*/
|
|
56324
56692
|
readonly attributeValue: string;
|
|
56325
|
-
/**
|
|
56326
|
-
* Use this header to enable this experimental API.
|
|
56327
|
-
* @type {string}
|
|
56328
|
-
* @memberof EntitlementsV2024ApiCreateAccessModelMetadataForEntitlement
|
|
56329
|
-
*/
|
|
56330
|
-
readonly xSailPointExperimental?: string;
|
|
56331
56693
|
}
|
|
56332
56694
|
/**
|
|
56333
56695
|
* Request parameters for deleteAccessModelMetadataFromEntitlement operation in EntitlementsV2024Api.
|
|
@@ -56353,12 +56715,6 @@ export interface EntitlementsV2024ApiDeleteAccessModelMetadataFromEntitlementReq
|
|
|
56353
56715
|
* @memberof EntitlementsV2024ApiDeleteAccessModelMetadataFromEntitlement
|
|
56354
56716
|
*/
|
|
56355
56717
|
readonly attributeValue: string;
|
|
56356
|
-
/**
|
|
56357
|
-
* Use this header to enable this experimental API.
|
|
56358
|
-
* @type {string}
|
|
56359
|
-
* @memberof EntitlementsV2024ApiDeleteAccessModelMetadataFromEntitlement
|
|
56360
|
-
*/
|
|
56361
|
-
readonly xSailPointExperimental: string;
|
|
56362
56718
|
}
|
|
56363
56719
|
/**
|
|
56364
56720
|
* Request parameters for getEntitlement operation in EntitlementsV2024Api.
|
|
@@ -56372,12 +56728,6 @@ export interface EntitlementsV2024ApiGetEntitlementRequest {
|
|
|
56372
56728
|
* @memberof EntitlementsV2024ApiGetEntitlement
|
|
56373
56729
|
*/
|
|
56374
56730
|
readonly id: string;
|
|
56375
|
-
/**
|
|
56376
|
-
* Use this header to enable this experimental API.
|
|
56377
|
-
* @type {string}
|
|
56378
|
-
* @memberof EntitlementsV2024ApiGetEntitlement
|
|
56379
|
-
*/
|
|
56380
|
-
readonly xSailPointExperimental?: string;
|
|
56381
56731
|
}
|
|
56382
56732
|
/**
|
|
56383
56733
|
* Request parameters for getEntitlementRequestConfig operation in EntitlementsV2024Api.
|
|
@@ -56391,12 +56741,6 @@ export interface EntitlementsV2024ApiGetEntitlementRequestConfigRequest {
|
|
|
56391
56741
|
* @memberof EntitlementsV2024ApiGetEntitlementRequestConfig
|
|
56392
56742
|
*/
|
|
56393
56743
|
readonly id: string;
|
|
56394
|
-
/**
|
|
56395
|
-
* Use this header to enable this experimental API.
|
|
56396
|
-
* @type {string}
|
|
56397
|
-
* @memberof EntitlementsV2024ApiGetEntitlementRequestConfig
|
|
56398
|
-
*/
|
|
56399
|
-
readonly xSailPointExperimental?: string;
|
|
56400
56744
|
}
|
|
56401
56745
|
/**
|
|
56402
56746
|
* Request parameters for importEntitlementsBySource operation in EntitlementsV2024Api.
|
|
@@ -56410,12 +56754,6 @@ export interface EntitlementsV2024ApiImportEntitlementsBySourceRequest {
|
|
|
56410
56754
|
* @memberof EntitlementsV2024ApiImportEntitlementsBySource
|
|
56411
56755
|
*/
|
|
56412
56756
|
readonly id: string;
|
|
56413
|
-
/**
|
|
56414
|
-
* Use this header to enable this experimental API.
|
|
56415
|
-
* @type {string}
|
|
56416
|
-
* @memberof EntitlementsV2024ApiImportEntitlementsBySource
|
|
56417
|
-
*/
|
|
56418
|
-
readonly xSailPointExperimental?: string;
|
|
56419
56757
|
/**
|
|
56420
56758
|
* The CSV file containing the source entitlements to aggregate.
|
|
56421
56759
|
* @type {File}
|
|
@@ -56465,12 +56803,6 @@ export interface EntitlementsV2024ApiListEntitlementChildrenRequest {
|
|
|
56465
56803
|
* @memberof EntitlementsV2024ApiListEntitlementChildren
|
|
56466
56804
|
*/
|
|
56467
56805
|
readonly filters?: string;
|
|
56468
|
-
/**
|
|
56469
|
-
* Use this header to enable this experimental API.
|
|
56470
|
-
* @type {string}
|
|
56471
|
-
* @memberof EntitlementsV2024ApiListEntitlementChildren
|
|
56472
|
-
*/
|
|
56473
|
-
readonly xSailPointExperimental?: string;
|
|
56474
56806
|
}
|
|
56475
56807
|
/**
|
|
56476
56808
|
* Request parameters for listEntitlementParents operation in EntitlementsV2024Api.
|
|
@@ -56514,12 +56846,6 @@ export interface EntitlementsV2024ApiListEntitlementParentsRequest {
|
|
|
56514
56846
|
* @memberof EntitlementsV2024ApiListEntitlementParents
|
|
56515
56847
|
*/
|
|
56516
56848
|
readonly filters?: string;
|
|
56517
|
-
/**
|
|
56518
|
-
* Use this header to enable this experimental API.
|
|
56519
|
-
* @type {string}
|
|
56520
|
-
* @memberof EntitlementsV2024ApiListEntitlementParents
|
|
56521
|
-
*/
|
|
56522
|
-
readonly xSailPointExperimental?: string;
|
|
56523
56849
|
}
|
|
56524
56850
|
/**
|
|
56525
56851
|
* Request parameters for listEntitlements operation in EntitlementsV2024Api.
|
|
@@ -56534,7 +56860,7 @@ export interface EntitlementsV2024ApiListEntitlementsRequest {
|
|
|
56534
56860
|
*/
|
|
56535
56861
|
readonly accountId?: string;
|
|
56536
56862
|
/**
|
|
56537
|
-
* 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.
|
|
56863
|
+
* 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.
|
|
56538
56864
|
* @type {string}
|
|
56539
56865
|
* @memberof EntitlementsV2024ApiListEntitlements
|
|
56540
56866
|
*/
|
|
@@ -56581,12 +56907,6 @@ export interface EntitlementsV2024ApiListEntitlementsRequest {
|
|
|
56581
56907
|
* @memberof EntitlementsV2024ApiListEntitlements
|
|
56582
56908
|
*/
|
|
56583
56909
|
readonly filters?: string;
|
|
56584
|
-
/**
|
|
56585
|
-
* Use this header to enable this experimental API.
|
|
56586
|
-
* @type {string}
|
|
56587
|
-
* @memberof EntitlementsV2024ApiListEntitlements
|
|
56588
|
-
*/
|
|
56589
|
-
readonly xSailPointExperimental?: string;
|
|
56590
56910
|
}
|
|
56591
56911
|
/**
|
|
56592
56912
|
* Request parameters for patchEntitlement operation in EntitlementsV2024Api.
|
|
@@ -56600,12 +56920,6 @@ export interface EntitlementsV2024ApiPatchEntitlementRequest {
|
|
|
56600
56920
|
* @memberof EntitlementsV2024ApiPatchEntitlement
|
|
56601
56921
|
*/
|
|
56602
56922
|
readonly id: string;
|
|
56603
|
-
/**
|
|
56604
|
-
* Use this header to enable this experimental API.
|
|
56605
|
-
* @type {string}
|
|
56606
|
-
* @memberof EntitlementsV2024ApiPatchEntitlement
|
|
56607
|
-
*/
|
|
56608
|
-
readonly xSailPointExperimental: string;
|
|
56609
56923
|
/**
|
|
56610
56924
|
*
|
|
56611
56925
|
* @type {Array<JsonPatchOperationV2024>}
|
|
@@ -56625,12 +56939,6 @@ export interface EntitlementsV2024ApiPutEntitlementRequestConfigRequest {
|
|
|
56625
56939
|
* @memberof EntitlementsV2024ApiPutEntitlementRequestConfig
|
|
56626
56940
|
*/
|
|
56627
56941
|
readonly id: string;
|
|
56628
|
-
/**
|
|
56629
|
-
* Use this header to enable this experimental API.
|
|
56630
|
-
* @type {string}
|
|
56631
|
-
* @memberof EntitlementsV2024ApiPutEntitlementRequestConfig
|
|
56632
|
-
*/
|
|
56633
|
-
readonly xSailPointExperimental: string;
|
|
56634
56942
|
/**
|
|
56635
56943
|
*
|
|
56636
56944
|
* @type {EntitlementRequestConfigV2024}
|
|
@@ -56650,12 +56958,6 @@ export interface EntitlementsV2024ApiResetSourceEntitlementsRequest {
|
|
|
56650
56958
|
* @memberof EntitlementsV2024ApiResetSourceEntitlements
|
|
56651
56959
|
*/
|
|
56652
56960
|
readonly id: string;
|
|
56653
|
-
/**
|
|
56654
|
-
* Use this header to enable this experimental API.
|
|
56655
|
-
* @type {string}
|
|
56656
|
-
* @memberof EntitlementsV2024ApiResetSourceEntitlements
|
|
56657
|
-
*/
|
|
56658
|
-
readonly xSailPointExperimental?: string;
|
|
56659
56961
|
}
|
|
56660
56962
|
/**
|
|
56661
56963
|
* Request parameters for updateEntitlementsInBulk operation in EntitlementsV2024Api.
|
|
@@ -56669,12 +56971,6 @@ export interface EntitlementsV2024ApiUpdateEntitlementsInBulkRequest {
|
|
|
56669
56971
|
* @memberof EntitlementsV2024ApiUpdateEntitlementsInBulk
|
|
56670
56972
|
*/
|
|
56671
56973
|
readonly entitlementBulkUpdateRequestV2024: EntitlementBulkUpdateRequestV2024;
|
|
56672
|
-
/**
|
|
56673
|
-
* Use this header to enable this experimental API.
|
|
56674
|
-
* @type {string}
|
|
56675
|
-
* @memberof EntitlementsV2024ApiUpdateEntitlementsInBulk
|
|
56676
|
-
*/
|
|
56677
|
-
readonly xSailPointExperimental?: string;
|
|
56678
56974
|
}
|
|
56679
56975
|
/**
|
|
56680
56976
|
* EntitlementsV2024Api - object-oriented interface
|
|
@@ -56784,7 +57080,7 @@ export declare class EntitlementsV2024Api extends BaseAPI {
|
|
|
56784
57080
|
*/
|
|
56785
57081
|
resetSourceEntitlements(requestParameters: EntitlementsV2024ApiResetSourceEntitlementsRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<EntitlementSourceResetBaseReferenceDtoV2024, any>>;
|
|
56786
57082
|
/**
|
|
56787
|
-
*
|
|
57083
|
+
* 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.
|
|
56788
57084
|
* @summary Bulk update an entitlement list
|
|
56789
57085
|
* @param {EntitlementsV2024ApiUpdateEntitlementsInBulkRequest} requestParameters Request parameters.
|
|
56790
57086
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -62923,7 +63219,7 @@ export declare const IdentityHistoryV2024ApiAxiosParamCreator: (configuration?:
|
|
|
62923
63219
|
getHistoricalIdentity: (id: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
62924
63220
|
/**
|
|
62925
63221
|
* This method retrieves all access events for the identity Requires authorization scope of \'idn:identity-history:read\'
|
|
62926
|
-
* @summary
|
|
63222
|
+
* @summary List identity event history
|
|
62927
63223
|
* @param {string} id The identity id
|
|
62928
63224
|
* @param {string} [from] The optional instant until which access events are returned
|
|
62929
63225
|
* @param {Array<string>} [eventTypes] An optional list of event types to return. If null or empty, all events are returned
|
|
@@ -62987,7 +63283,7 @@ export declare const IdentityHistoryV2024ApiAxiosParamCreator: (configuration?:
|
|
|
62987
63283
|
* This method retrieves a list of access item for the identity filtered by the access item type
|
|
62988
63284
|
* @summary List access items by identity
|
|
62989
63285
|
* @param {string} id The identity id
|
|
62990
|
-
* @param {
|
|
63286
|
+
* @param {ListIdentityAccessItemsTypeV2024} [type] The type of access item for the identity. If not provided, it defaults to account
|
|
62991
63287
|
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
62992
63288
|
* @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.
|
|
62993
63289
|
* @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.
|
|
@@ -62995,7 +63291,7 @@ export declare const IdentityHistoryV2024ApiAxiosParamCreator: (configuration?:
|
|
|
62995
63291
|
* @param {*} [axiosOptions] Override http request option.
|
|
62996
63292
|
* @throws {RequiredError}
|
|
62997
63293
|
*/
|
|
62998
|
-
listIdentityAccessItems: (id: string, type?:
|
|
63294
|
+
listIdentityAccessItems: (id: string, type?: ListIdentityAccessItemsTypeV2024, xSailPointExperimental?: string, limit?: number, count?: boolean, offset?: number, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
62999
63295
|
/**
|
|
63000
63296
|
* This method retrieves the list of identity access items at a given date filterd by item type Requires authorization scope of \'idn:identity-history:read\'
|
|
63001
63297
|
* @summary Gets the list of identity access items at a given date filterd by item type
|
|
@@ -63069,7 +63365,7 @@ export declare const IdentityHistoryV2024ApiFp: (configuration?: Configuration)
|
|
|
63069
63365
|
getHistoricalIdentity(id: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<IdentityHistoryResponseV2024>>;
|
|
63070
63366
|
/**
|
|
63071
63367
|
* This method retrieves all access events for the identity Requires authorization scope of \'idn:identity-history:read\'
|
|
63072
|
-
* @summary
|
|
63368
|
+
* @summary List identity event history
|
|
63073
63369
|
* @param {string} id The identity id
|
|
63074
63370
|
* @param {string} [from] The optional instant until which access events are returned
|
|
63075
63371
|
* @param {Array<string>} [eventTypes] An optional list of event types to return. If null or empty, all events are returned
|
|
@@ -63133,7 +63429,7 @@ export declare const IdentityHistoryV2024ApiFp: (configuration?: Configuration)
|
|
|
63133
63429
|
* This method retrieves a list of access item for the identity filtered by the access item type
|
|
63134
63430
|
* @summary List access items by identity
|
|
63135
63431
|
* @param {string} id The identity id
|
|
63136
|
-
* @param {
|
|
63432
|
+
* @param {ListIdentityAccessItemsTypeV2024} [type] The type of access item for the identity. If not provided, it defaults to account
|
|
63137
63433
|
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
63138
63434
|
* @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.
|
|
63139
63435
|
* @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.
|
|
@@ -63141,7 +63437,7 @@ export declare const IdentityHistoryV2024ApiFp: (configuration?: Configuration)
|
|
|
63141
63437
|
* @param {*} [axiosOptions] Override http request option.
|
|
63142
63438
|
* @throws {RequiredError}
|
|
63143
63439
|
*/
|
|
63144
|
-
listIdentityAccessItems(id: string, type?:
|
|
63440
|
+
listIdentityAccessItems(id: string, type?: ListIdentityAccessItemsTypeV2024, xSailPointExperimental?: string, limit?: number, count?: boolean, offset?: number, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<ListIdentityAccessItems200ResponseInnerV2024>>>;
|
|
63145
63441
|
/**
|
|
63146
63442
|
* This method retrieves the list of identity access items at a given date filterd by item type Requires authorization scope of \'idn:identity-history:read\'
|
|
63147
63443
|
* @summary Gets the list of identity access items at a given date filterd by item type
|
|
@@ -63152,7 +63448,7 @@ export declare const IdentityHistoryV2024ApiFp: (configuration?: Configuration)
|
|
|
63152
63448
|
* @param {*} [axiosOptions] Override http request option.
|
|
63153
63449
|
* @throws {RequiredError}
|
|
63154
63450
|
*/
|
|
63155
|
-
listIdentitySnapshotAccessItems(id: string, date: string, type?: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<
|
|
63451
|
+
listIdentitySnapshotAccessItems(id: string, date: string, type?: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<ListIdentitySnapshotAccessItems200ResponseInnerV2024>>>;
|
|
63156
63452
|
/**
|
|
63157
63453
|
* This method retrieves all the snapshots for the identity Requires authorization scope of \'idn:identity-history:read\'
|
|
63158
63454
|
* @summary Lists all the snapshots for the identity
|
|
@@ -63199,7 +63495,7 @@ export declare const IdentityHistoryV2024ApiFactory: (configuration?: Configurat
|
|
|
63199
63495
|
getHistoricalIdentity(requestParameters: IdentityHistoryV2024ApiGetHistoricalIdentityRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<IdentityHistoryResponseV2024>;
|
|
63200
63496
|
/**
|
|
63201
63497
|
* This method retrieves all access events for the identity Requires authorization scope of \'idn:identity-history:read\'
|
|
63202
|
-
* @summary
|
|
63498
|
+
* @summary List identity event history
|
|
63203
63499
|
* @param {IdentityHistoryV2024ApiGetHistoricalIdentityEventsRequest} requestParameters Request parameters.
|
|
63204
63500
|
* @param {*} [axiosOptions] Override http request option.
|
|
63205
63501
|
* @throws {RequiredError}
|
|
@@ -63252,7 +63548,7 @@ export declare const IdentityHistoryV2024ApiFactory: (configuration?: Configurat
|
|
|
63252
63548
|
* @param {*} [axiosOptions] Override http request option.
|
|
63253
63549
|
* @throws {RequiredError}
|
|
63254
63550
|
*/
|
|
63255
|
-
listIdentitySnapshotAccessItems(requestParameters: IdentityHistoryV2024ApiListIdentitySnapshotAccessItemsRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<
|
|
63551
|
+
listIdentitySnapshotAccessItems(requestParameters: IdentityHistoryV2024ApiListIdentitySnapshotAccessItemsRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<ListIdentitySnapshotAccessItems200ResponseInnerV2024>>;
|
|
63256
63552
|
/**
|
|
63257
63553
|
* This method retrieves all the snapshots for the identity Requires authorization scope of \'idn:identity-history:read\'
|
|
63258
63554
|
* @summary Lists all the snapshots for the identity
|
|
@@ -63608,10 +63904,10 @@ export interface IdentityHistoryV2024ApiListIdentityAccessItemsRequest {
|
|
|
63608
63904
|
readonly id: string;
|
|
63609
63905
|
/**
|
|
63610
63906
|
* The type of access item for the identity. If not provided, it defaults to account
|
|
63611
|
-
* @type {
|
|
63907
|
+
* @type {'account' | 'entitlement' | 'app' | 'accessProfile' | 'role'}
|
|
63612
63908
|
* @memberof IdentityHistoryV2024ApiListIdentityAccessItems
|
|
63613
63909
|
*/
|
|
63614
|
-
readonly type?:
|
|
63910
|
+
readonly type?: ListIdentityAccessItemsTypeV2024;
|
|
63615
63911
|
/**
|
|
63616
63912
|
* Use this header to enable this experimental API.
|
|
63617
63913
|
* @type {string}
|
|
@@ -63753,7 +64049,7 @@ export declare class IdentityHistoryV2024Api extends BaseAPI {
|
|
|
63753
64049
|
getHistoricalIdentity(requestParameters: IdentityHistoryV2024ApiGetHistoricalIdentityRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<IdentityHistoryResponseV2024, any>>;
|
|
63754
64050
|
/**
|
|
63755
64051
|
* This method retrieves all access events for the identity Requires authorization scope of \'idn:identity-history:read\'
|
|
63756
|
-
* @summary
|
|
64052
|
+
* @summary List identity event history
|
|
63757
64053
|
* @param {IdentityHistoryV2024ApiGetHistoricalIdentityEventsRequest} requestParameters Request parameters.
|
|
63758
64054
|
* @param {*} [axiosOptions] Override http request option.
|
|
63759
64055
|
* @throws {RequiredError}
|
|
@@ -63813,7 +64109,7 @@ export declare class IdentityHistoryV2024Api extends BaseAPI {
|
|
|
63813
64109
|
* @throws {RequiredError}
|
|
63814
64110
|
* @memberof IdentityHistoryV2024Api
|
|
63815
64111
|
*/
|
|
63816
|
-
listIdentitySnapshotAccessItems(requestParameters: IdentityHistoryV2024ApiListIdentitySnapshotAccessItemsRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
64112
|
+
listIdentitySnapshotAccessItems(requestParameters: IdentityHistoryV2024ApiListIdentitySnapshotAccessItemsRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ListIdentitySnapshotAccessItems200ResponseInnerV2024[], any>>;
|
|
63817
64113
|
/**
|
|
63818
64114
|
* This method retrieves all the snapshots for the identity Requires authorization scope of \'idn:identity-history:read\'
|
|
63819
64115
|
* @summary Lists all the snapshots for the identity
|
|
@@ -63843,6 +64139,17 @@ export declare const GetIdentitySnapshotSummaryIntervalV2024: {
|
|
|
63843
64139
|
readonly Month: "month";
|
|
63844
64140
|
};
|
|
63845
64141
|
export type GetIdentitySnapshotSummaryIntervalV2024 = typeof GetIdentitySnapshotSummaryIntervalV2024[keyof typeof GetIdentitySnapshotSummaryIntervalV2024];
|
|
64142
|
+
/**
|
|
64143
|
+
* @export
|
|
64144
|
+
*/
|
|
64145
|
+
export declare const ListIdentityAccessItemsTypeV2024: {
|
|
64146
|
+
readonly Account: "account";
|
|
64147
|
+
readonly Entitlement: "entitlement";
|
|
64148
|
+
readonly App: "app";
|
|
64149
|
+
readonly AccessProfile: "accessProfile";
|
|
64150
|
+
readonly Role: "role";
|
|
64151
|
+
};
|
|
64152
|
+
export type ListIdentityAccessItemsTypeV2024 = typeof ListIdentityAccessItemsTypeV2024[keyof typeof ListIdentityAccessItemsTypeV2024];
|
|
63846
64153
|
/**
|
|
63847
64154
|
* @export
|
|
63848
64155
|
*/
|
|
@@ -72869,7 +73176,7 @@ export type GetReportFileFormatV2024 = typeof GetReportFileFormatV2024[keyof typ
|
|
|
72869
73176
|
*/
|
|
72870
73177
|
export declare const RequestableObjectsV2024ApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
72871
73178
|
/**
|
|
72872
|
-
* 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.
|
|
73179
|
+
* 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.
|
|
72873
73180
|
* @summary Requestable objects list
|
|
72874
73181
|
* @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.
|
|
72875
73182
|
* @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.
|
|
@@ -72891,7 +73198,7 @@ export declare const RequestableObjectsV2024ApiAxiosParamCreator: (configuration
|
|
|
72891
73198
|
*/
|
|
72892
73199
|
export declare const RequestableObjectsV2024ApiFp: (configuration?: Configuration) => {
|
|
72893
73200
|
/**
|
|
72894
|
-
* 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.
|
|
73201
|
+
* 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.
|
|
72895
73202
|
* @summary Requestable objects list
|
|
72896
73203
|
* @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.
|
|
72897
73204
|
* @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.
|
|
@@ -72913,7 +73220,7 @@ export declare const RequestableObjectsV2024ApiFp: (configuration?: Configuratio
|
|
|
72913
73220
|
*/
|
|
72914
73221
|
export declare const RequestableObjectsV2024ApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
72915
73222
|
/**
|
|
72916
|
-
* 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.
|
|
73223
|
+
* 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.
|
|
72917
73224
|
* @summary Requestable objects list
|
|
72918
73225
|
* @param {RequestableObjectsV2024ApiListRequestableObjectsRequest} requestParameters Request parameters.
|
|
72919
73226
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -72990,7 +73297,7 @@ export interface RequestableObjectsV2024ApiListRequestableObjectsRequest {
|
|
|
72990
73297
|
*/
|
|
72991
73298
|
export declare class RequestableObjectsV2024Api extends BaseAPI {
|
|
72992
73299
|
/**
|
|
72993
|
-
* 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.
|
|
73300
|
+
* 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.
|
|
72994
73301
|
* @summary Requestable objects list
|
|
72995
73302
|
* @param {RequestableObjectsV2024ApiListRequestableObjectsRequest} requestParameters Request parameters.
|
|
72996
73303
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -78828,12 +79135,11 @@ export declare const SourcesV2024ApiAxiosParamCreator: (configuration?: Configur
|
|
|
78828
79135
|
* 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.
|
|
78829
79136
|
* @summary Entitlement aggregation
|
|
78830
79137
|
* @param {string} sourceId Source Id
|
|
78831
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
78832
79138
|
* @param {File} [file] The CSV file containing the source entitlements to aggregate.
|
|
78833
79139
|
* @param {*} [axiosOptions] Override http request option.
|
|
78834
79140
|
* @throws {RequiredError}
|
|
78835
79141
|
*/
|
|
78836
|
-
importEntitlements: (sourceId: string,
|
|
79142
|
+
importEntitlements: (sourceId: string, file?: File, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
78837
79143
|
/**
|
|
78838
79144
|
* 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.**
|
|
78839
79145
|
* @summary Uploads source entitlements schema template
|
|
@@ -79293,12 +79599,11 @@ export declare const SourcesV2024ApiFp: (configuration?: Configuration) => {
|
|
|
79293
79599
|
* 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.
|
|
79294
79600
|
* @summary Entitlement aggregation
|
|
79295
79601
|
* @param {string} sourceId Source Id
|
|
79296
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
79297
79602
|
* @param {File} [file] The CSV file containing the source entitlements to aggregate.
|
|
79298
79603
|
* @param {*} [axiosOptions] Override http request option.
|
|
79299
79604
|
* @throws {RequiredError}
|
|
79300
79605
|
*/
|
|
79301
|
-
importEntitlements(sourceId: string,
|
|
79606
|
+
importEntitlements(sourceId: string, file?: File, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<LoadEntitlementTaskV2024>>;
|
|
79302
79607
|
/**
|
|
79303
79608
|
* 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.**
|
|
79304
79609
|
* @summary Uploads source entitlements schema template
|
|
@@ -80410,12 +80715,6 @@ export interface SourcesV2024ApiImportEntitlementsRequest {
|
|
|
80410
80715
|
* @memberof SourcesV2024ApiImportEntitlements
|
|
80411
80716
|
*/
|
|
80412
80717
|
readonly sourceId: string;
|
|
80413
|
-
/**
|
|
80414
|
-
* Use this header to enable this experimental API.
|
|
80415
|
-
* @type {string}
|
|
80416
|
-
* @memberof SourcesV2024ApiImportEntitlements
|
|
80417
|
-
*/
|
|
80418
|
-
readonly xSailPointExperimental?: string;
|
|
80419
80718
|
/**
|
|
80420
80719
|
* The CSV file containing the source entitlements to aggregate.
|
|
80421
80720
|
* @type {File}
|
|
@@ -82403,34 +82702,31 @@ export declare const TaskManagementV2024ApiAxiosParamCreator: (configuration?: C
|
|
|
82403
82702
|
/**
|
|
82404
82703
|
* Responds with headers only for list of task statuses for pending tasks.
|
|
82405
82704
|
* @summary Retrieve pending task list headers
|
|
82406
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
82407
82705
|
* @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.
|
|
82408
82706
|
* @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.
|
|
82409
82707
|
* @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.
|
|
82410
82708
|
* @param {*} [axiosOptions] Override http request option.
|
|
82411
82709
|
* @throws {RequiredError}
|
|
82412
82710
|
*/
|
|
82413
|
-
getPendingTaskHeaders: (
|
|
82711
|
+
getPendingTaskHeaders: (offset?: number, limit?: number, count?: boolean, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
82414
82712
|
/**
|
|
82415
82713
|
* 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.
|
|
82416
82714
|
* @summary Retrieve pending task status list
|
|
82417
82715
|
* @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.
|
|
82418
82716
|
* @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.
|
|
82419
82717
|
* @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.
|
|
82420
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
82421
82718
|
* @param {*} [axiosOptions] Override http request option.
|
|
82422
82719
|
* @throws {RequiredError}
|
|
82423
82720
|
*/
|
|
82424
|
-
getPendingTasks: (offset?: number, limit?: number, count?: boolean,
|
|
82721
|
+
getPendingTasks: (offset?: number, limit?: number, count?: boolean, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
82425
82722
|
/**
|
|
82426
82723
|
* 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.
|
|
82427
82724
|
* @summary Get task status by id
|
|
82428
82725
|
* @param {string} id Task ID.
|
|
82429
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
82430
82726
|
* @param {*} [axiosOptions] Override http request option.
|
|
82431
82727
|
* @throws {RequiredError}
|
|
82432
82728
|
*/
|
|
82433
|
-
getTaskStatus: (id: string,
|
|
82729
|
+
getTaskStatus: (id: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
82434
82730
|
/**
|
|
82435
82731
|
* 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.
|
|
82436
82732
|
* @summary Retrieve task status list
|
|
@@ -82439,21 +82735,19 @@ export declare const TaskManagementV2024ApiAxiosParamCreator: (configuration?: C
|
|
|
82439
82735
|
* @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.
|
|
82440
82736
|
* @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*
|
|
82441
82737
|
* @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**
|
|
82442
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
82443
82738
|
* @param {*} [axiosOptions] Override http request option.
|
|
82444
82739
|
* @throws {RequiredError}
|
|
82445
82740
|
*/
|
|
82446
|
-
getTaskStatusList: (limit?: number, offset?: number, count?: boolean, filters?: string, sorters?: string,
|
|
82741
|
+
getTaskStatusList: (limit?: number, offset?: number, count?: boolean, filters?: string, sorters?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
82447
82742
|
/**
|
|
82448
82743
|
* Update a current task status by task ID. Use this API to clear a pending task by updating the completionStatus and completed attributes.
|
|
82449
82744
|
* @summary Update task status by id
|
|
82450
82745
|
* @param {string} id Task ID.
|
|
82451
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
82452
82746
|
* @param {Array<JsonPatchOperationV2024>} jsonPatchOperationV2024 The JSONPatch payload used to update the object.
|
|
82453
82747
|
* @param {*} [axiosOptions] Override http request option.
|
|
82454
82748
|
* @throws {RequiredError}
|
|
82455
82749
|
*/
|
|
82456
|
-
updateTaskStatus: (id: string,
|
|
82750
|
+
updateTaskStatus: (id: string, jsonPatchOperationV2024: Array<JsonPatchOperationV2024>, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
82457
82751
|
};
|
|
82458
82752
|
/**
|
|
82459
82753
|
* TaskManagementV2024Api - functional programming interface
|
|
@@ -82463,34 +82757,31 @@ export declare const TaskManagementV2024ApiFp: (configuration?: Configuration) =
|
|
|
82463
82757
|
/**
|
|
82464
82758
|
* Responds with headers only for list of task statuses for pending tasks.
|
|
82465
82759
|
* @summary Retrieve pending task list headers
|
|
82466
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
82467
82760
|
* @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.
|
|
82468
82761
|
* @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.
|
|
82469
82762
|
* @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.
|
|
82470
82763
|
* @param {*} [axiosOptions] Override http request option.
|
|
82471
82764
|
* @throws {RequiredError}
|
|
82472
82765
|
*/
|
|
82473
|
-
getPendingTaskHeaders(
|
|
82766
|
+
getPendingTaskHeaders(offset?: number, limit?: number, count?: boolean, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
82474
82767
|
/**
|
|
82475
82768
|
* 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.
|
|
82476
82769
|
* @summary Retrieve pending task status list
|
|
82477
82770
|
* @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.
|
|
82478
82771
|
* @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.
|
|
82479
82772
|
* @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.
|
|
82480
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
82481
82773
|
* @param {*} [axiosOptions] Override http request option.
|
|
82482
82774
|
* @throws {RequiredError}
|
|
82483
82775
|
*/
|
|
82484
|
-
getPendingTasks(offset?: number, limit?: number, count?: boolean,
|
|
82776
|
+
getPendingTasks(offset?: number, limit?: number, count?: boolean, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<TaskStatusV2024>>>;
|
|
82485
82777
|
/**
|
|
82486
82778
|
* 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.
|
|
82487
82779
|
* @summary Get task status by id
|
|
82488
82780
|
* @param {string} id Task ID.
|
|
82489
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
82490
82781
|
* @param {*} [axiosOptions] Override http request option.
|
|
82491
82782
|
* @throws {RequiredError}
|
|
82492
82783
|
*/
|
|
82493
|
-
getTaskStatus(id: string,
|
|
82784
|
+
getTaskStatus(id: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TaskStatusV2024>>;
|
|
82494
82785
|
/**
|
|
82495
82786
|
* 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.
|
|
82496
82787
|
* @summary Retrieve task status list
|
|
@@ -82499,21 +82790,19 @@ export declare const TaskManagementV2024ApiFp: (configuration?: Configuration) =
|
|
|
82499
82790
|
* @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.
|
|
82500
82791
|
* @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*
|
|
82501
82792
|
* @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**
|
|
82502
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
82503
82793
|
* @param {*} [axiosOptions] Override http request option.
|
|
82504
82794
|
* @throws {RequiredError}
|
|
82505
82795
|
*/
|
|
82506
|
-
getTaskStatusList(limit?: number, offset?: number, count?: boolean, filters?: string, sorters?: string,
|
|
82796
|
+
getTaskStatusList(limit?: number, offset?: number, count?: boolean, filters?: string, sorters?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<TaskStatusV2024>>>;
|
|
82507
82797
|
/**
|
|
82508
82798
|
* Update a current task status by task ID. Use this API to clear a pending task by updating the completionStatus and completed attributes.
|
|
82509
82799
|
* @summary Update task status by id
|
|
82510
82800
|
* @param {string} id Task ID.
|
|
82511
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
82512
82801
|
* @param {Array<JsonPatchOperationV2024>} jsonPatchOperationV2024 The JSONPatch payload used to update the object.
|
|
82513
82802
|
* @param {*} [axiosOptions] Override http request option.
|
|
82514
82803
|
* @throws {RequiredError}
|
|
82515
82804
|
*/
|
|
82516
|
-
updateTaskStatus(id: string,
|
|
82805
|
+
updateTaskStatus(id: string, jsonPatchOperationV2024: Array<JsonPatchOperationV2024>, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TaskStatusV2024>>;
|
|
82517
82806
|
};
|
|
82518
82807
|
/**
|
|
82519
82808
|
* TaskManagementV2024Api - factory interface
|
|
@@ -82527,7 +82816,7 @@ export declare const TaskManagementV2024ApiFactory: (configuration?: Configurati
|
|
|
82527
82816
|
* @param {*} [axiosOptions] Override http request option.
|
|
82528
82817
|
* @throws {RequiredError}
|
|
82529
82818
|
*/
|
|
82530
|
-
getPendingTaskHeaders(requestParameters
|
|
82819
|
+
getPendingTaskHeaders(requestParameters?: TaskManagementV2024ApiGetPendingTaskHeadersRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
82531
82820
|
/**
|
|
82532
82821
|
* 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.
|
|
82533
82822
|
* @summary Retrieve pending task status list
|
|
@@ -82567,12 +82856,6 @@ export declare const TaskManagementV2024ApiFactory: (configuration?: Configurati
|
|
|
82567
82856
|
* @interface TaskManagementV2024ApiGetPendingTaskHeadersRequest
|
|
82568
82857
|
*/
|
|
82569
82858
|
export interface TaskManagementV2024ApiGetPendingTaskHeadersRequest {
|
|
82570
|
-
/**
|
|
82571
|
-
* Use this header to enable this experimental API.
|
|
82572
|
-
* @type {string}
|
|
82573
|
-
* @memberof TaskManagementV2024ApiGetPendingTaskHeaders
|
|
82574
|
-
*/
|
|
82575
|
-
readonly xSailPointExperimental: string;
|
|
82576
82859
|
/**
|
|
82577
82860
|
* 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.
|
|
82578
82861
|
* @type {number}
|
|
@@ -82616,12 +82899,6 @@ export interface TaskManagementV2024ApiGetPendingTasksRequest {
|
|
|
82616
82899
|
* @memberof TaskManagementV2024ApiGetPendingTasks
|
|
82617
82900
|
*/
|
|
82618
82901
|
readonly count?: boolean;
|
|
82619
|
-
/**
|
|
82620
|
-
* Use this header to enable this experimental API.
|
|
82621
|
-
* @type {string}
|
|
82622
|
-
* @memberof TaskManagementV2024ApiGetPendingTasks
|
|
82623
|
-
*/
|
|
82624
|
-
readonly xSailPointExperimental?: string;
|
|
82625
82902
|
}
|
|
82626
82903
|
/**
|
|
82627
82904
|
* Request parameters for getTaskStatus operation in TaskManagementV2024Api.
|
|
@@ -82635,12 +82912,6 @@ export interface TaskManagementV2024ApiGetTaskStatusRequest {
|
|
|
82635
82912
|
* @memberof TaskManagementV2024ApiGetTaskStatus
|
|
82636
82913
|
*/
|
|
82637
82914
|
readonly id: string;
|
|
82638
|
-
/**
|
|
82639
|
-
* Use this header to enable this experimental API.
|
|
82640
|
-
* @type {string}
|
|
82641
|
-
* @memberof TaskManagementV2024ApiGetTaskStatus
|
|
82642
|
-
*/
|
|
82643
|
-
readonly xSailPointExperimental?: string;
|
|
82644
82915
|
}
|
|
82645
82916
|
/**
|
|
82646
82917
|
* Request parameters for getTaskStatusList operation in TaskManagementV2024Api.
|
|
@@ -82678,12 +82949,6 @@ export interface TaskManagementV2024ApiGetTaskStatusListRequest {
|
|
|
82678
82949
|
* @memberof TaskManagementV2024ApiGetTaskStatusList
|
|
82679
82950
|
*/
|
|
82680
82951
|
readonly sorters?: string;
|
|
82681
|
-
/**
|
|
82682
|
-
* Use this header to enable this experimental API.
|
|
82683
|
-
* @type {string}
|
|
82684
|
-
* @memberof TaskManagementV2024ApiGetTaskStatusList
|
|
82685
|
-
*/
|
|
82686
|
-
readonly xSailPointExperimental?: string;
|
|
82687
82952
|
}
|
|
82688
82953
|
/**
|
|
82689
82954
|
* Request parameters for updateTaskStatus operation in TaskManagementV2024Api.
|
|
@@ -82697,12 +82962,6 @@ export interface TaskManagementV2024ApiUpdateTaskStatusRequest {
|
|
|
82697
82962
|
* @memberof TaskManagementV2024ApiUpdateTaskStatus
|
|
82698
82963
|
*/
|
|
82699
82964
|
readonly id: string;
|
|
82700
|
-
/**
|
|
82701
|
-
* Use this header to enable this experimental API.
|
|
82702
|
-
* @type {string}
|
|
82703
|
-
* @memberof TaskManagementV2024ApiUpdateTaskStatus
|
|
82704
|
-
*/
|
|
82705
|
-
readonly xSailPointExperimental: string;
|
|
82706
82965
|
/**
|
|
82707
82966
|
* The JSONPatch payload used to update the object.
|
|
82708
82967
|
* @type {Array<JsonPatchOperationV2024>}
|
|
@@ -82725,7 +82984,7 @@ export declare class TaskManagementV2024Api extends BaseAPI {
|
|
|
82725
82984
|
* @throws {RequiredError}
|
|
82726
82985
|
* @memberof TaskManagementV2024Api
|
|
82727
82986
|
*/
|
|
82728
|
-
getPendingTaskHeaders(requestParameters
|
|
82987
|
+
getPendingTaskHeaders(requestParameters?: TaskManagementV2024ApiGetPendingTaskHeadersRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
82729
82988
|
/**
|
|
82730
82989
|
* 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.
|
|
82731
82990
|
* @summary Retrieve pending task status list
|
|
@@ -85529,12 +85788,11 @@ export declare const WorkflowsV2024ApiAxiosParamCreator: (configuration?: Config
|
|
|
85529
85788
|
* @param {string} id Workflow ID.
|
|
85530
85789
|
* @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.
|
|
85531
85790
|
* @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.
|
|
85532
|
-
* @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.
|
|
85533
85791
|
* @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*
|
|
85534
85792
|
* @param {*} [axiosOptions] Override http request option.
|
|
85535
85793
|
* @throws {RequiredError}
|
|
85536
85794
|
*/
|
|
85537
|
-
getWorkflowExecutions: (id: string, limit?: number, offset?: number,
|
|
85795
|
+
getWorkflowExecutions: (id: string, limit?: number, offset?: number, filters?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
85538
85796
|
/**
|
|
85539
85797
|
* This lists all triggers, actions, and operators in the library
|
|
85540
85798
|
* @summary List complete workflow library
|
|
@@ -85691,12 +85949,11 @@ export declare const WorkflowsV2024ApiFp: (configuration?: Configuration) => {
|
|
|
85691
85949
|
* @param {string} id Workflow ID.
|
|
85692
85950
|
* @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.
|
|
85693
85951
|
* @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.
|
|
85694
|
-
* @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.
|
|
85695
85952
|
* @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*
|
|
85696
85953
|
* @param {*} [axiosOptions] Override http request option.
|
|
85697
85954
|
* @throws {RequiredError}
|
|
85698
85955
|
*/
|
|
85699
|
-
getWorkflowExecutions(id: string, limit?: number, offset?: number,
|
|
85956
|
+
getWorkflowExecutions(id: string, limit?: number, offset?: number, filters?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<WorkflowExecutionV2024>>>;
|
|
85700
85957
|
/**
|
|
85701
85958
|
* This lists all triggers, actions, and operators in the library
|
|
85702
85959
|
* @summary List complete workflow library
|
|
@@ -86059,12 +86316,6 @@ export interface WorkflowsV2024ApiGetWorkflowExecutionsRequest {
|
|
|
86059
86316
|
* @memberof WorkflowsV2024ApiGetWorkflowExecutions
|
|
86060
86317
|
*/
|
|
86061
86318
|
readonly offset?: number;
|
|
86062
|
-
/**
|
|
86063
|
-
* 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.
|
|
86064
|
-
* @type {boolean}
|
|
86065
|
-
* @memberof WorkflowsV2024ApiGetWorkflowExecutions
|
|
86066
|
-
*/
|
|
86067
|
-
readonly count?: boolean;
|
|
86068
86319
|
/**
|
|
86069
86320
|
* 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*
|
|
86070
86321
|
* @type {string}
|