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/beta/api.d.ts
CHANGED
|
@@ -100,15 +100,28 @@ export type AccessCriteriaCriteriaListInnerBetaTypeBeta = typeof AccessCriteriaC
|
|
|
100
100
|
/**
|
|
101
101
|
*
|
|
102
102
|
* @export
|
|
103
|
-
* @interface
|
|
103
|
+
* @interface AccessItemAccessProfileResponseAppRefsInnerBeta
|
|
104
104
|
*/
|
|
105
|
-
export interface
|
|
105
|
+
export interface AccessItemAccessProfileResponseAppRefsInnerBeta {
|
|
106
106
|
/**
|
|
107
|
-
* the
|
|
107
|
+
* the cloud app id associated with the access profile
|
|
108
108
|
* @type {string}
|
|
109
|
-
* @memberof
|
|
109
|
+
* @memberof AccessItemAccessProfileResponseAppRefsInnerBeta
|
|
110
110
|
*/
|
|
111
|
-
'
|
|
111
|
+
'cloudAppId'?: string;
|
|
112
|
+
/**
|
|
113
|
+
* the cloud app name associated with the access profile
|
|
114
|
+
* @type {string}
|
|
115
|
+
* @memberof AccessItemAccessProfileResponseAppRefsInnerBeta
|
|
116
|
+
*/
|
|
117
|
+
'cloudAppName'?: string;
|
|
118
|
+
}
|
|
119
|
+
/**
|
|
120
|
+
*
|
|
121
|
+
* @export
|
|
122
|
+
* @interface AccessItemAccessProfileResponseBeta
|
|
123
|
+
*/
|
|
124
|
+
export interface AccessItemAccessProfileResponseBeta {
|
|
112
125
|
/**
|
|
113
126
|
* the access item id
|
|
114
127
|
* @type {string}
|
|
@@ -116,65 +129,65 @@ export interface AccessItemAccessProfileResponseBeta {
|
|
|
116
129
|
*/
|
|
117
130
|
'id'?: string;
|
|
118
131
|
/**
|
|
119
|
-
* the access
|
|
132
|
+
* the access item type. accessProfile in this case
|
|
120
133
|
* @type {string}
|
|
121
134
|
* @memberof AccessItemAccessProfileResponseBeta
|
|
122
135
|
*/
|
|
123
|
-
'
|
|
136
|
+
'accessType'?: string;
|
|
124
137
|
/**
|
|
125
|
-
* the name of the
|
|
138
|
+
* the display name of the identity
|
|
126
139
|
* @type {string}
|
|
127
140
|
* @memberof AccessItemAccessProfileResponseBeta
|
|
128
141
|
*/
|
|
129
|
-
'
|
|
142
|
+
'displayName'?: string;
|
|
130
143
|
/**
|
|
131
|
-
* the
|
|
144
|
+
* the name of the source
|
|
132
145
|
* @type {string}
|
|
133
146
|
* @memberof AccessItemAccessProfileResponseBeta
|
|
134
147
|
*/
|
|
135
|
-
'
|
|
148
|
+
'sourceName'?: string;
|
|
136
149
|
/**
|
|
137
|
-
* the
|
|
138
|
-
* @type {
|
|
150
|
+
* the number of entitlements the access profile will create
|
|
151
|
+
* @type {number}
|
|
139
152
|
* @memberof AccessItemAccessProfileResponseBeta
|
|
140
153
|
*/
|
|
141
|
-
'
|
|
154
|
+
'entitlementCount': number;
|
|
142
155
|
/**
|
|
143
|
-
* the
|
|
156
|
+
* the description for the access profile
|
|
144
157
|
* @type {string}
|
|
145
158
|
* @memberof AccessItemAccessProfileResponseBeta
|
|
146
159
|
*/
|
|
147
|
-
'
|
|
160
|
+
'description'?: string | null;
|
|
148
161
|
/**
|
|
149
|
-
* the
|
|
162
|
+
* the id of the source
|
|
150
163
|
* @type {string}
|
|
151
164
|
* @memberof AccessItemAccessProfileResponseBeta
|
|
152
165
|
*/
|
|
153
|
-
'
|
|
166
|
+
'sourceId'?: string;
|
|
154
167
|
/**
|
|
155
|
-
* the
|
|
156
|
-
* @type {
|
|
168
|
+
* the list of app ids associated with the access profile
|
|
169
|
+
* @type {Array<AccessItemAccessProfileResponseAppRefsInnerBeta>}
|
|
157
170
|
* @memberof AccessItemAccessProfileResponseBeta
|
|
158
171
|
*/
|
|
159
|
-
'
|
|
172
|
+
'appRefs': Array<AccessItemAccessProfileResponseAppRefsInnerBeta>;
|
|
160
173
|
/**
|
|
161
174
|
* the date the access profile is no longer assigned to the specified identity
|
|
162
175
|
* @type {string}
|
|
163
176
|
* @memberof AccessItemAccessProfileResponseBeta
|
|
164
177
|
*/
|
|
165
|
-
'removeDate'?: string;
|
|
178
|
+
'removeDate'?: string | null;
|
|
166
179
|
/**
|
|
167
180
|
* indicates whether the access profile is standalone
|
|
168
181
|
* @type {boolean}
|
|
169
182
|
* @memberof AccessItemAccessProfileResponseBeta
|
|
170
183
|
*/
|
|
171
|
-
'standalone': boolean;
|
|
184
|
+
'standalone': boolean | null;
|
|
172
185
|
/**
|
|
173
|
-
* indicates whether the access profile is
|
|
186
|
+
* indicates whether the access profile is revocable
|
|
174
187
|
* @type {boolean}
|
|
175
188
|
* @memberof AccessItemAccessProfileResponseBeta
|
|
176
189
|
*/
|
|
177
|
-
'revocable': boolean;
|
|
190
|
+
'revocable': boolean | null;
|
|
178
191
|
}
|
|
179
192
|
/**
|
|
180
193
|
*
|
|
@@ -183,23 +196,23 @@ export interface AccessItemAccessProfileResponseBeta {
|
|
|
183
196
|
*/
|
|
184
197
|
export interface AccessItemAccountResponseBeta {
|
|
185
198
|
/**
|
|
186
|
-
* the access item
|
|
199
|
+
* the access item id
|
|
187
200
|
* @type {string}
|
|
188
201
|
* @memberof AccessItemAccountResponseBeta
|
|
189
202
|
*/
|
|
190
|
-
'
|
|
203
|
+
'id'?: string;
|
|
191
204
|
/**
|
|
192
|
-
* the access item
|
|
205
|
+
* the access item type. account in this case
|
|
193
206
|
* @type {string}
|
|
194
207
|
* @memberof AccessItemAccountResponseBeta
|
|
195
208
|
*/
|
|
196
|
-
'
|
|
209
|
+
'accessType'?: string;
|
|
197
210
|
/**
|
|
198
|
-
* the
|
|
211
|
+
* the display name of the identity
|
|
199
212
|
* @type {string}
|
|
200
213
|
* @memberof AccessItemAccountResponseBeta
|
|
201
214
|
*/
|
|
202
|
-
'
|
|
215
|
+
'displayName'?: string;
|
|
203
216
|
/**
|
|
204
217
|
* the name of the source
|
|
205
218
|
* @type {string}
|
|
@@ -207,23 +220,23 @@ export interface AccessItemAccountResponseBeta {
|
|
|
207
220
|
*/
|
|
208
221
|
'sourceName'?: string;
|
|
209
222
|
/**
|
|
210
|
-
* the
|
|
223
|
+
* the native identifier used to uniquely identify an acccount
|
|
211
224
|
* @type {string}
|
|
212
225
|
* @memberof AccessItemAccountResponseBeta
|
|
213
226
|
*/
|
|
214
|
-
'
|
|
227
|
+
'nativeIdentity': string;
|
|
215
228
|
/**
|
|
216
|
-
* the
|
|
229
|
+
* the id of the source
|
|
217
230
|
* @type {string}
|
|
218
231
|
* @memberof AccessItemAccountResponseBeta
|
|
219
232
|
*/
|
|
220
|
-
'
|
|
233
|
+
'sourceId'?: string;
|
|
221
234
|
/**
|
|
222
|
-
* the
|
|
223
|
-
* @type {
|
|
235
|
+
* the number of entitlements the account will create
|
|
236
|
+
* @type {number}
|
|
224
237
|
* @memberof AccessItemAccountResponseBeta
|
|
225
238
|
*/
|
|
226
|
-
'
|
|
239
|
+
'entitlementCount'?: number;
|
|
227
240
|
}
|
|
228
241
|
/**
|
|
229
242
|
*
|
|
@@ -232,17 +245,17 @@ export interface AccessItemAccountResponseBeta {
|
|
|
232
245
|
*/
|
|
233
246
|
export interface AccessItemAppResponseBeta {
|
|
234
247
|
/**
|
|
235
|
-
* the access item
|
|
248
|
+
* the access item id
|
|
236
249
|
* @type {string}
|
|
237
250
|
* @memberof AccessItemAppResponseBeta
|
|
238
251
|
*/
|
|
239
|
-
'
|
|
252
|
+
'id'?: string;
|
|
240
253
|
/**
|
|
241
|
-
* the access item
|
|
254
|
+
* the access item type. entitlement in this case
|
|
242
255
|
* @type {string}
|
|
243
256
|
* @memberof AccessItemAppResponseBeta
|
|
244
257
|
*/
|
|
245
|
-
'
|
|
258
|
+
'accessType'?: string;
|
|
246
259
|
/**
|
|
247
260
|
* the access item display name
|
|
248
261
|
* @type {string}
|
|
@@ -254,13 +267,13 @@ export interface AccessItemAppResponseBeta {
|
|
|
254
267
|
* @type {string}
|
|
255
268
|
* @memberof AccessItemAppResponseBeta
|
|
256
269
|
*/
|
|
257
|
-
'sourceName'?: string;
|
|
270
|
+
'sourceName'?: string | null;
|
|
258
271
|
/**
|
|
259
272
|
* the app role id
|
|
260
273
|
* @type {string}
|
|
261
274
|
* @memberof AccessItemAppResponseBeta
|
|
262
275
|
*/
|
|
263
|
-
'appRoleId'
|
|
276
|
+
'appRoleId': string | null;
|
|
264
277
|
}
|
|
265
278
|
/**
|
|
266
279
|
*
|
|
@@ -292,10 +305,120 @@ export declare const AccessItemApproverDtoBetaTypeBeta: {
|
|
|
292
305
|
};
|
|
293
306
|
export type AccessItemApproverDtoBetaTypeBeta = typeof AccessItemApproverDtoBetaTypeBeta[keyof typeof AccessItemApproverDtoBetaTypeBeta];
|
|
294
307
|
/**
|
|
295
|
-
*
|
|
308
|
+
*
|
|
296
309
|
* @export
|
|
310
|
+
* @interface AccessItemAssociatedAccessItemBeta
|
|
297
311
|
*/
|
|
298
|
-
export
|
|
312
|
+
export interface AccessItemAssociatedAccessItemBeta {
|
|
313
|
+
/**
|
|
314
|
+
* the access item id
|
|
315
|
+
* @type {string}
|
|
316
|
+
* @memberof AccessItemAssociatedAccessItemBeta
|
|
317
|
+
*/
|
|
318
|
+
'id'?: string;
|
|
319
|
+
/**
|
|
320
|
+
* the access item type. entitlement in this case
|
|
321
|
+
* @type {string}
|
|
322
|
+
* @memberof AccessItemAssociatedAccessItemBeta
|
|
323
|
+
*/
|
|
324
|
+
'accessType'?: string;
|
|
325
|
+
/**
|
|
326
|
+
* the access item display name
|
|
327
|
+
* @type {string}
|
|
328
|
+
* @memberof AccessItemAssociatedAccessItemBeta
|
|
329
|
+
*/
|
|
330
|
+
'displayName'?: string;
|
|
331
|
+
/**
|
|
332
|
+
* the associated source name if it exists
|
|
333
|
+
* @type {string}
|
|
334
|
+
* @memberof AccessItemAssociatedAccessItemBeta
|
|
335
|
+
*/
|
|
336
|
+
'sourceName'?: string | null;
|
|
337
|
+
/**
|
|
338
|
+
* the entitlement attribute
|
|
339
|
+
* @type {string}
|
|
340
|
+
* @memberof AccessItemAssociatedAccessItemBeta
|
|
341
|
+
*/
|
|
342
|
+
'attribute': string;
|
|
343
|
+
/**
|
|
344
|
+
* the associated value
|
|
345
|
+
* @type {string}
|
|
346
|
+
* @memberof AccessItemAssociatedAccessItemBeta
|
|
347
|
+
*/
|
|
348
|
+
'value': string;
|
|
349
|
+
/**
|
|
350
|
+
* the type of entitlement
|
|
351
|
+
* @type {string}
|
|
352
|
+
* @memberof AccessItemAssociatedAccessItemBeta
|
|
353
|
+
*/
|
|
354
|
+
'type': string;
|
|
355
|
+
/**
|
|
356
|
+
* the description for the role
|
|
357
|
+
* @type {string}
|
|
358
|
+
* @memberof AccessItemAssociatedAccessItemBeta
|
|
359
|
+
*/
|
|
360
|
+
'description'?: string;
|
|
361
|
+
/**
|
|
362
|
+
* the id of the source
|
|
363
|
+
* @type {string}
|
|
364
|
+
* @memberof AccessItemAssociatedAccessItemBeta
|
|
365
|
+
*/
|
|
366
|
+
'sourceId'?: string;
|
|
367
|
+
/**
|
|
368
|
+
* indicates whether the access profile is standalone
|
|
369
|
+
* @type {boolean}
|
|
370
|
+
* @memberof AccessItemAssociatedAccessItemBeta
|
|
371
|
+
*/
|
|
372
|
+
'standalone': boolean | null;
|
|
373
|
+
/**
|
|
374
|
+
* indicates whether the entitlement is privileged
|
|
375
|
+
* @type {boolean}
|
|
376
|
+
* @memberof AccessItemAssociatedAccessItemBeta
|
|
377
|
+
*/
|
|
378
|
+
'privileged': boolean | null;
|
|
379
|
+
/**
|
|
380
|
+
* indicates whether the entitlement is cloud governed
|
|
381
|
+
* @type {boolean}
|
|
382
|
+
* @memberof AccessItemAssociatedAccessItemBeta
|
|
383
|
+
*/
|
|
384
|
+
'cloudGoverned': boolean | null;
|
|
385
|
+
/**
|
|
386
|
+
* the number of entitlements the account will create
|
|
387
|
+
* @type {number}
|
|
388
|
+
* @memberof AccessItemAssociatedAccessItemBeta
|
|
389
|
+
*/
|
|
390
|
+
'entitlementCount': number;
|
|
391
|
+
/**
|
|
392
|
+
* the list of app ids associated with the access profile
|
|
393
|
+
* @type {Array<AccessItemAccessProfileResponseAppRefsInnerBeta>}
|
|
394
|
+
* @memberof AccessItemAssociatedAccessItemBeta
|
|
395
|
+
*/
|
|
396
|
+
'appRefs': Array<AccessItemAccessProfileResponseAppRefsInnerBeta>;
|
|
397
|
+
/**
|
|
398
|
+
* the date the role is no longer assigned to the specified identity
|
|
399
|
+
* @type {string}
|
|
400
|
+
* @memberof AccessItemAssociatedAccessItemBeta
|
|
401
|
+
*/
|
|
402
|
+
'removeDate'?: string;
|
|
403
|
+
/**
|
|
404
|
+
* indicates whether the role is revocable
|
|
405
|
+
* @type {boolean}
|
|
406
|
+
* @memberof AccessItemAssociatedAccessItemBeta
|
|
407
|
+
*/
|
|
408
|
+
'revocable': boolean;
|
|
409
|
+
/**
|
|
410
|
+
* the native identifier used to uniquely identify an acccount
|
|
411
|
+
* @type {string}
|
|
412
|
+
* @memberof AccessItemAssociatedAccessItemBeta
|
|
413
|
+
*/
|
|
414
|
+
'nativeIdentity': string;
|
|
415
|
+
/**
|
|
416
|
+
* the app role id
|
|
417
|
+
* @type {string}
|
|
418
|
+
* @memberof AccessItemAssociatedAccessItemBeta
|
|
419
|
+
*/
|
|
420
|
+
'appRoleId': string | null;
|
|
421
|
+
}
|
|
299
422
|
/**
|
|
300
423
|
*
|
|
301
424
|
* @export
|
|
@@ -303,36 +426,50 @@ export type AccessItemAssociatedAccessItemBeta = AccessItemAccessProfileResponse
|
|
|
303
426
|
*/
|
|
304
427
|
export interface AccessItemAssociatedBeta {
|
|
305
428
|
/**
|
|
306
|
-
*
|
|
307
|
-
* @type {
|
|
429
|
+
* the event type
|
|
430
|
+
* @type {string}
|
|
308
431
|
* @memberof AccessItemAssociatedBeta
|
|
309
432
|
*/
|
|
310
|
-
'
|
|
433
|
+
'eventType'?: string;
|
|
311
434
|
/**
|
|
312
|
-
* the
|
|
435
|
+
* the date of event
|
|
313
436
|
* @type {string}
|
|
314
437
|
* @memberof AccessItemAssociatedBeta
|
|
315
438
|
*/
|
|
316
|
-
'
|
|
439
|
+
'dateTime'?: string;
|
|
317
440
|
/**
|
|
318
|
-
* the
|
|
441
|
+
* the identity id
|
|
319
442
|
* @type {string}
|
|
320
443
|
* @memberof AccessItemAssociatedBeta
|
|
321
444
|
*/
|
|
322
|
-
'
|
|
445
|
+
'identityId'?: string;
|
|
323
446
|
/**
|
|
324
|
-
*
|
|
325
|
-
* @type {
|
|
447
|
+
*
|
|
448
|
+
* @type {AccessItemAssociatedAccessItemBeta}
|
|
326
449
|
* @memberof AccessItemAssociatedBeta
|
|
327
450
|
*/
|
|
328
|
-
'
|
|
451
|
+
'accessItem': AccessItemAssociatedAccessItemBeta;
|
|
329
452
|
/**
|
|
330
453
|
*
|
|
331
454
|
* @type {CorrelatedGovernanceEventBeta}
|
|
332
455
|
* @memberof AccessItemAssociatedBeta
|
|
333
456
|
*/
|
|
334
|
-
'governanceEvent'
|
|
457
|
+
'governanceEvent': CorrelatedGovernanceEventBeta | null;
|
|
458
|
+
/**
|
|
459
|
+
* the access item type
|
|
460
|
+
* @type {string}
|
|
461
|
+
* @memberof AccessItemAssociatedBeta
|
|
462
|
+
*/
|
|
463
|
+
'accessItemType'?: AccessItemAssociatedBetaAccessItemTypeBeta;
|
|
335
464
|
}
|
|
465
|
+
export declare const AccessItemAssociatedBetaAccessItemTypeBeta: {
|
|
466
|
+
readonly Account: "account";
|
|
467
|
+
readonly App: "app";
|
|
468
|
+
readonly Entitlement: "entitlement";
|
|
469
|
+
readonly Role: "role";
|
|
470
|
+
readonly AccessProfile: "accessProfile";
|
|
471
|
+
};
|
|
472
|
+
export type AccessItemAssociatedBetaAccessItemTypeBeta = typeof AccessItemAssociatedBetaAccessItemTypeBeta[keyof typeof AccessItemAssociatedBetaAccessItemTypeBeta];
|
|
336
473
|
/**
|
|
337
474
|
*
|
|
338
475
|
* @export
|
|
@@ -376,77 +513,77 @@ export type AccessItemDiffBetaEventTypeBeta = typeof AccessItemDiffBetaEventType
|
|
|
376
513
|
*/
|
|
377
514
|
export interface AccessItemEntitlementResponseBeta {
|
|
378
515
|
/**
|
|
379
|
-
* the access item
|
|
516
|
+
* the access item id
|
|
380
517
|
* @type {string}
|
|
381
518
|
* @memberof AccessItemEntitlementResponseBeta
|
|
382
519
|
*/
|
|
383
|
-
'
|
|
520
|
+
'id'?: string;
|
|
384
521
|
/**
|
|
385
|
-
* the access item
|
|
522
|
+
* the access item type. entitlement in this case
|
|
386
523
|
* @type {string}
|
|
387
524
|
* @memberof AccessItemEntitlementResponseBeta
|
|
388
525
|
*/
|
|
389
|
-
'
|
|
526
|
+
'accessType'?: string;
|
|
390
527
|
/**
|
|
391
|
-
* the
|
|
528
|
+
* the display name of the identity
|
|
392
529
|
* @type {string}
|
|
393
530
|
* @memberof AccessItemEntitlementResponseBeta
|
|
394
531
|
*/
|
|
395
|
-
'
|
|
532
|
+
'displayName'?: string;
|
|
396
533
|
/**
|
|
397
|
-
* the
|
|
534
|
+
* the name of the source
|
|
398
535
|
* @type {string}
|
|
399
536
|
* @memberof AccessItemEntitlementResponseBeta
|
|
400
537
|
*/
|
|
401
|
-
'
|
|
538
|
+
'sourceName'?: string;
|
|
402
539
|
/**
|
|
403
|
-
* the
|
|
540
|
+
* the entitlement attribute
|
|
404
541
|
* @type {string}
|
|
405
542
|
* @memberof AccessItemEntitlementResponseBeta
|
|
406
543
|
*/
|
|
407
|
-
'
|
|
544
|
+
'attribute': string;
|
|
408
545
|
/**
|
|
409
|
-
* the
|
|
546
|
+
* the associated value
|
|
410
547
|
* @type {string}
|
|
411
548
|
* @memberof AccessItemEntitlementResponseBeta
|
|
412
549
|
*/
|
|
413
|
-
'
|
|
550
|
+
'value': string;
|
|
414
551
|
/**
|
|
415
|
-
* the
|
|
552
|
+
* the type of entitlement
|
|
416
553
|
* @type {string}
|
|
417
554
|
* @memberof AccessItemEntitlementResponseBeta
|
|
418
555
|
*/
|
|
419
|
-
'
|
|
556
|
+
'type': string;
|
|
420
557
|
/**
|
|
421
558
|
* the description for the entitlment
|
|
422
559
|
* @type {string}
|
|
423
560
|
* @memberof AccessItemEntitlementResponseBeta
|
|
424
561
|
*/
|
|
425
|
-
'description'?: string;
|
|
562
|
+
'description'?: string | null;
|
|
426
563
|
/**
|
|
427
|
-
* the
|
|
564
|
+
* the id of the source
|
|
428
565
|
* @type {string}
|
|
429
566
|
* @memberof AccessItemEntitlementResponseBeta
|
|
430
567
|
*/
|
|
431
|
-
'
|
|
568
|
+
'sourceId'?: string;
|
|
432
569
|
/**
|
|
433
570
|
* indicates whether the entitlement is standalone
|
|
434
571
|
* @type {boolean}
|
|
435
572
|
* @memberof AccessItemEntitlementResponseBeta
|
|
436
573
|
*/
|
|
437
|
-
'standalone': boolean;
|
|
574
|
+
'standalone': boolean | null;
|
|
438
575
|
/**
|
|
439
576
|
* indicates whether the entitlement is privileged
|
|
440
577
|
* @type {boolean}
|
|
441
578
|
* @memberof AccessItemEntitlementResponseBeta
|
|
442
579
|
*/
|
|
443
|
-
'privileged': boolean;
|
|
580
|
+
'privileged': boolean | null;
|
|
444
581
|
/**
|
|
445
582
|
* indicates whether the entitlement is cloud governed
|
|
446
583
|
* @type {boolean}
|
|
447
584
|
* @memberof AccessItemEntitlementResponseBeta
|
|
448
585
|
*/
|
|
449
|
-
'cloudGoverned': boolean;
|
|
586
|
+
'cloudGoverned': boolean | null;
|
|
450
587
|
}
|
|
451
588
|
/**
|
|
452
589
|
* Access item owner\'s identity.
|
|
@@ -513,7 +650,7 @@ export interface AccessItemRemovedBeta {
|
|
|
513
650
|
* @type {AccessItemAssociatedAccessItemBeta}
|
|
514
651
|
* @memberof AccessItemRemovedBeta
|
|
515
652
|
*/
|
|
516
|
-
'accessItem'
|
|
653
|
+
'accessItem': AccessItemAssociatedAccessItemBeta;
|
|
517
654
|
/**
|
|
518
655
|
* the identity id
|
|
519
656
|
* @type {string}
|
|
@@ -531,14 +668,28 @@ export interface AccessItemRemovedBeta {
|
|
|
531
668
|
* @type {string}
|
|
532
669
|
* @memberof AccessItemRemovedBeta
|
|
533
670
|
*/
|
|
534
|
-
'
|
|
671
|
+
'dateTime'?: string;
|
|
672
|
+
/**
|
|
673
|
+
* the access item type
|
|
674
|
+
* @type {string}
|
|
675
|
+
* @memberof AccessItemRemovedBeta
|
|
676
|
+
*/
|
|
677
|
+
'accessItemType'?: AccessItemRemovedBetaAccessItemTypeBeta;
|
|
535
678
|
/**
|
|
536
679
|
*
|
|
537
680
|
* @type {CorrelatedGovernanceEventBeta}
|
|
538
681
|
* @memberof AccessItemRemovedBeta
|
|
539
682
|
*/
|
|
540
|
-
'governanceEvent'?: CorrelatedGovernanceEventBeta;
|
|
683
|
+
'governanceEvent'?: CorrelatedGovernanceEventBeta | null;
|
|
541
684
|
}
|
|
685
|
+
export declare const AccessItemRemovedBetaAccessItemTypeBeta: {
|
|
686
|
+
readonly Account: "account";
|
|
687
|
+
readonly App: "app";
|
|
688
|
+
readonly Entitlement: "entitlement";
|
|
689
|
+
readonly Role: "role";
|
|
690
|
+
readonly AccessProfile: "accessProfile";
|
|
691
|
+
};
|
|
692
|
+
export type AccessItemRemovedBetaAccessItemTypeBeta = typeof AccessItemRemovedBetaAccessItemTypeBeta[keyof typeof AccessItemRemovedBetaAccessItemTypeBeta];
|
|
542
693
|
/**
|
|
543
694
|
* Identity whom the access item is requested for.
|
|
544
695
|
* @export
|
|
@@ -720,17 +871,17 @@ export type AccessItemReviewedByBetaTypeBeta = typeof AccessItemReviewedByBetaTy
|
|
|
720
871
|
*/
|
|
721
872
|
export interface AccessItemRoleResponseBeta {
|
|
722
873
|
/**
|
|
723
|
-
* the access item
|
|
874
|
+
* the access item id
|
|
724
875
|
* @type {string}
|
|
725
876
|
* @memberof AccessItemRoleResponseBeta
|
|
726
877
|
*/
|
|
727
|
-
'
|
|
878
|
+
'id'?: string;
|
|
728
879
|
/**
|
|
729
|
-
* the access item
|
|
880
|
+
* the access item type. role in this case
|
|
730
881
|
* @type {string}
|
|
731
882
|
* @memberof AccessItemRoleResponseBeta
|
|
732
883
|
*/
|
|
733
|
-
'
|
|
884
|
+
'accessType'?: string;
|
|
734
885
|
/**
|
|
735
886
|
* the role display name
|
|
736
887
|
* @type {string}
|
|
@@ -738,17 +889,17 @@ export interface AccessItemRoleResponseBeta {
|
|
|
738
889
|
*/
|
|
739
890
|
'displayName'?: string;
|
|
740
891
|
/**
|
|
741
|
-
* the
|
|
892
|
+
* the associated source name if it exists
|
|
742
893
|
* @type {string}
|
|
743
894
|
* @memberof AccessItemRoleResponseBeta
|
|
744
895
|
*/
|
|
745
|
-
'
|
|
896
|
+
'sourceName'?: string | null;
|
|
746
897
|
/**
|
|
747
|
-
* the
|
|
898
|
+
* the description for the role
|
|
748
899
|
* @type {string}
|
|
749
900
|
* @memberof AccessItemRoleResponseBeta
|
|
750
901
|
*/
|
|
751
|
-
'
|
|
902
|
+
'description'?: string;
|
|
752
903
|
/**
|
|
753
904
|
* the date the role is no longer assigned to the specified identity
|
|
754
905
|
* @type {string}
|
|
@@ -2128,7 +2279,7 @@ export interface AccessRequestedBeta {
|
|
|
2128
2279
|
* @type {AccessRequestResponse1Beta}
|
|
2129
2280
|
* @memberof AccessRequestedBeta
|
|
2130
2281
|
*/
|
|
2131
|
-
'accessRequest'
|
|
2282
|
+
'accessRequest': AccessRequestResponse1Beta;
|
|
2132
2283
|
/**
|
|
2133
2284
|
* the identity id
|
|
2134
2285
|
* @type {string}
|
|
@@ -2146,7 +2297,7 @@ export interface AccessRequestedBeta {
|
|
|
2146
2297
|
* @type {string}
|
|
2147
2298
|
* @memberof AccessRequestedBeta
|
|
2148
2299
|
*/
|
|
2149
|
-
'
|
|
2300
|
+
'dateTime'?: string;
|
|
2150
2301
|
}
|
|
2151
2302
|
/**
|
|
2152
2303
|
* Access type of API Client indicating online or offline use
|
|
@@ -3251,19 +3402,19 @@ export interface AccountStatusChangedBeta {
|
|
|
3251
3402
|
* @type {string}
|
|
3252
3403
|
* @memberof AccountStatusChangedBeta
|
|
3253
3404
|
*/
|
|
3254
|
-
'
|
|
3405
|
+
'dateTime'?: string;
|
|
3255
3406
|
/**
|
|
3256
3407
|
*
|
|
3257
3408
|
* @type {AccountStatusChangedAccountBeta}
|
|
3258
3409
|
* @memberof AccountStatusChangedBeta
|
|
3259
3410
|
*/
|
|
3260
|
-
'account'
|
|
3411
|
+
'account': AccountStatusChangedAccountBeta;
|
|
3261
3412
|
/**
|
|
3262
3413
|
*
|
|
3263
3414
|
* @type {AccountStatusChangedStatusChangeBeta}
|
|
3264
3415
|
* @memberof AccountStatusChangedBeta
|
|
3265
3416
|
*/
|
|
3266
|
-
'statusChange'
|
|
3417
|
+
'statusChange': AccountStatusChangedStatusChangeBeta;
|
|
3267
3418
|
}
|
|
3268
3419
|
/**
|
|
3269
3420
|
*
|
|
@@ -4770,7 +4921,7 @@ export interface AttributesChangedBeta {
|
|
|
4770
4921
|
* @type {Array<AttributeChangeBeta>}
|
|
4771
4922
|
* @memberof AttributesChangedBeta
|
|
4772
4923
|
*/
|
|
4773
|
-
'
|
|
4924
|
+
'attributeChanges': Array<AttributeChangeBeta>;
|
|
4774
4925
|
/**
|
|
4775
4926
|
* the event type
|
|
4776
4927
|
* @type {string}
|
|
@@ -4788,7 +4939,7 @@ export interface AttributesChangedBeta {
|
|
|
4788
4939
|
* @type {string}
|
|
4789
4940
|
* @memberof AttributesChangedBeta
|
|
4790
4941
|
*/
|
|
4791
|
-
'
|
|
4942
|
+
'dateTime'?: string;
|
|
4792
4943
|
}
|
|
4793
4944
|
/**
|
|
4794
4945
|
* Audit details for the reassignment configuration of an identity
|
|
@@ -8052,7 +8203,7 @@ export interface CorrelatedGovernanceEventBeta {
|
|
|
8052
8203
|
* @type {string}
|
|
8053
8204
|
* @memberof CorrelatedGovernanceEventBeta
|
|
8054
8205
|
*/
|
|
8055
|
-
'
|
|
8206
|
+
'dateTime'?: string;
|
|
8056
8207
|
/**
|
|
8057
8208
|
* The type of governance event.
|
|
8058
8209
|
* @type {string}
|
|
@@ -8572,7 +8723,13 @@ export interface CreatePersonalAccessTokenRequestBeta {
|
|
|
8572
8723
|
* @type {number}
|
|
8573
8724
|
* @memberof CreatePersonalAccessTokenRequestBeta
|
|
8574
8725
|
*/
|
|
8575
|
-
'accessTokenValiditySeconds'?: number;
|
|
8726
|
+
'accessTokenValiditySeconds'?: number | null;
|
|
8727
|
+
/**
|
|
8728
|
+
* 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.
|
|
8729
|
+
* @type {string}
|
|
8730
|
+
* @memberof CreatePersonalAccessTokenRequestBeta
|
|
8731
|
+
*/
|
|
8732
|
+
'expirationDate'?: string | null;
|
|
8576
8733
|
}
|
|
8577
8734
|
/**
|
|
8578
8735
|
*
|
|
@@ -8622,6 +8779,12 @@ export interface CreatePersonalAccessTokenResponseBeta {
|
|
|
8622
8779
|
* @memberof CreatePersonalAccessTokenResponseBeta
|
|
8623
8780
|
*/
|
|
8624
8781
|
'accessTokenValiditySeconds': number;
|
|
8782
|
+
/**
|
|
8783
|
+
* 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.
|
|
8784
|
+
* @type {string}
|
|
8785
|
+
* @memberof CreatePersonalAccessTokenResponseBeta
|
|
8786
|
+
*/
|
|
8787
|
+
'expirationDate': string;
|
|
8625
8788
|
}
|
|
8626
8789
|
/**
|
|
8627
8790
|
*
|
|
@@ -9398,7 +9561,7 @@ export interface EntitlementBeta {
|
|
|
9398
9561
|
'accessModelMetadata'?: EntitlementAccessModelMetadataBeta;
|
|
9399
9562
|
}
|
|
9400
9563
|
/**
|
|
9401
|
-
*
|
|
9564
|
+
* Object for specifying the bulk update request
|
|
9402
9565
|
* @export
|
|
9403
9566
|
* @interface EntitlementBulkUpdateRequestBeta
|
|
9404
9567
|
*/
|
|
@@ -9410,7 +9573,7 @@ export interface EntitlementBulkUpdateRequestBeta {
|
|
|
9410
9573
|
*/
|
|
9411
9574
|
'entitlementIds': Array<string>;
|
|
9412
9575
|
/**
|
|
9413
|
-
*
|
|
9576
|
+
* List of entitlement ids to update
|
|
9414
9577
|
* @type {Array<JsonPatchOperationBeta>}
|
|
9415
9578
|
* @memberof EntitlementBulkUpdateRequestBeta
|
|
9416
9579
|
*/
|
|
@@ -11921,96 +12084,110 @@ export interface GetFormDefinitionByKey400ResponseBeta {
|
|
|
11921
12084
|
*/
|
|
11922
12085
|
export interface GetHistoricalIdentityEvents200ResponseInnerBeta {
|
|
11923
12086
|
/**
|
|
11924
|
-
*
|
|
11925
|
-
* @type {
|
|
12087
|
+
* the id of the certification item
|
|
12088
|
+
* @type {string}
|
|
11926
12089
|
* @memberof GetHistoricalIdentityEvents200ResponseInnerBeta
|
|
11927
12090
|
*/
|
|
11928
|
-
'
|
|
12091
|
+
'certificationId': string;
|
|
11929
12092
|
/**
|
|
11930
|
-
* the
|
|
12093
|
+
* the certification item name
|
|
11931
12094
|
* @type {string}
|
|
11932
12095
|
* @memberof GetHistoricalIdentityEvents200ResponseInnerBeta
|
|
11933
12096
|
*/
|
|
11934
|
-
'
|
|
12097
|
+
'certificationName': string;
|
|
11935
12098
|
/**
|
|
11936
|
-
* the
|
|
12099
|
+
* the date ceritification was signed
|
|
11937
12100
|
* @type {string}
|
|
11938
12101
|
* @memberof GetHistoricalIdentityEvents200ResponseInnerBeta
|
|
11939
12102
|
*/
|
|
11940
|
-
'
|
|
12103
|
+
'signedDate'?: string;
|
|
11941
12104
|
/**
|
|
11942
|
-
*
|
|
11943
|
-
* @type {
|
|
12105
|
+
* this field is deprecated and may go away
|
|
12106
|
+
* @type {Array<CertifierResponseBeta>}
|
|
11944
12107
|
* @memberof GetHistoricalIdentityEvents200ResponseInnerBeta
|
|
11945
12108
|
*/
|
|
11946
|
-
'
|
|
12109
|
+
'certifiers'?: Array<CertifierResponseBeta>;
|
|
11947
12110
|
/**
|
|
11948
|
-
*
|
|
11949
|
-
* @type {
|
|
12111
|
+
* The list of identities who review this certification
|
|
12112
|
+
* @type {Array<CertifierResponseBeta>}
|
|
11950
12113
|
* @memberof GetHistoricalIdentityEvents200ResponseInnerBeta
|
|
11951
12114
|
*/
|
|
11952
|
-
'
|
|
12115
|
+
'reviewers'?: Array<CertifierResponseBeta>;
|
|
11953
12116
|
/**
|
|
11954
12117
|
*
|
|
11955
|
-
* @type {
|
|
12118
|
+
* @type {CertifierResponseBeta}
|
|
11956
12119
|
* @memberof GetHistoricalIdentityEvents200ResponseInnerBeta
|
|
11957
12120
|
*/
|
|
11958
|
-
'
|
|
12121
|
+
'signer'?: CertifierResponseBeta;
|
|
11959
12122
|
/**
|
|
11960
|
-
*
|
|
11961
|
-
* @type {
|
|
12123
|
+
* the event type
|
|
12124
|
+
* @type {string}
|
|
11962
12125
|
* @memberof GetHistoricalIdentityEvents200ResponseInnerBeta
|
|
11963
12126
|
*/
|
|
11964
|
-
'
|
|
12127
|
+
'eventType'?: string;
|
|
11965
12128
|
/**
|
|
11966
|
-
* the
|
|
12129
|
+
* the date of event
|
|
11967
12130
|
* @type {string}
|
|
11968
12131
|
* @memberof GetHistoricalIdentityEvents200ResponseInnerBeta
|
|
11969
12132
|
*/
|
|
11970
|
-
'
|
|
12133
|
+
'dateTime'?: string;
|
|
11971
12134
|
/**
|
|
11972
|
-
* the
|
|
12135
|
+
* the identity id
|
|
11973
12136
|
* @type {string}
|
|
11974
12137
|
* @memberof GetHistoricalIdentityEvents200ResponseInnerBeta
|
|
11975
12138
|
*/
|
|
11976
|
-
'
|
|
12139
|
+
'identityId'?: string;
|
|
11977
12140
|
/**
|
|
11978
|
-
*
|
|
11979
|
-
* @type {
|
|
12141
|
+
*
|
|
12142
|
+
* @type {AccessItemAssociatedAccessItemBeta}
|
|
11980
12143
|
* @memberof GetHistoricalIdentityEvents200ResponseInnerBeta
|
|
11981
12144
|
*/
|
|
11982
|
-
'
|
|
12145
|
+
'accessItem': AccessItemAssociatedAccessItemBeta;
|
|
11983
12146
|
/**
|
|
11984
|
-
*
|
|
11985
|
-
* @type {
|
|
12147
|
+
*
|
|
12148
|
+
* @type {CorrelatedGovernanceEventBeta}
|
|
11986
12149
|
* @memberof GetHistoricalIdentityEvents200ResponseInnerBeta
|
|
11987
12150
|
*/
|
|
11988
|
-
'
|
|
12151
|
+
'governanceEvent': CorrelatedGovernanceEventBeta | null;
|
|
11989
12152
|
/**
|
|
11990
|
-
*
|
|
11991
|
-
* @type {
|
|
12153
|
+
* the access item type
|
|
12154
|
+
* @type {string}
|
|
11992
12155
|
* @memberof GetHistoricalIdentityEvents200ResponseInnerBeta
|
|
11993
12156
|
*/
|
|
11994
|
-
'
|
|
12157
|
+
'accessItemType'?: GetHistoricalIdentityEvents200ResponseInnerBetaAccessItemTypeBeta;
|
|
11995
12158
|
/**
|
|
11996
12159
|
*
|
|
11997
|
-
* @type {
|
|
12160
|
+
* @type {Array<AttributeChangeBeta>}
|
|
11998
12161
|
* @memberof GetHistoricalIdentityEvents200ResponseInnerBeta
|
|
11999
12162
|
*/
|
|
12000
|
-
'
|
|
12163
|
+
'attributeChanges': Array<AttributeChangeBeta>;
|
|
12164
|
+
/**
|
|
12165
|
+
*
|
|
12166
|
+
* @type {AccessRequestResponse1Beta}
|
|
12167
|
+
* @memberof GetHistoricalIdentityEvents200ResponseInnerBeta
|
|
12168
|
+
*/
|
|
12169
|
+
'accessRequest': AccessRequestResponse1Beta;
|
|
12001
12170
|
/**
|
|
12002
12171
|
*
|
|
12003
12172
|
* @type {AccountStatusChangedAccountBeta}
|
|
12004
12173
|
* @memberof GetHistoricalIdentityEvents200ResponseInnerBeta
|
|
12005
12174
|
*/
|
|
12006
|
-
'account'
|
|
12175
|
+
'account': AccountStatusChangedAccountBeta;
|
|
12007
12176
|
/**
|
|
12008
12177
|
*
|
|
12009
12178
|
* @type {AccountStatusChangedStatusChangeBeta}
|
|
12010
12179
|
* @memberof GetHistoricalIdentityEvents200ResponseInnerBeta
|
|
12011
12180
|
*/
|
|
12012
|
-
'statusChange'
|
|
12181
|
+
'statusChange': AccountStatusChangedStatusChangeBeta;
|
|
12013
12182
|
}
|
|
12183
|
+
export declare const GetHistoricalIdentityEvents200ResponseInnerBetaAccessItemTypeBeta: {
|
|
12184
|
+
readonly Account: "account";
|
|
12185
|
+
readonly App: "app";
|
|
12186
|
+
readonly Entitlement: "entitlement";
|
|
12187
|
+
readonly Role: "role";
|
|
12188
|
+
readonly AccessProfile: "accessProfile";
|
|
12189
|
+
};
|
|
12190
|
+
export type GetHistoricalIdentityEvents200ResponseInnerBetaAccessItemTypeBeta = typeof GetHistoricalIdentityEvents200ResponseInnerBetaAccessItemTypeBeta[keyof typeof GetHistoricalIdentityEvents200ResponseInnerBetaAccessItemTypeBeta];
|
|
12014
12191
|
/**
|
|
12015
12192
|
*
|
|
12016
12193
|
* @export
|
|
@@ -12211,6 +12388,18 @@ export interface GetPersonalAccessTokenResponseBeta {
|
|
|
12211
12388
|
* @memberof GetPersonalAccessTokenResponseBeta
|
|
12212
12389
|
*/
|
|
12213
12390
|
'managed'?: boolean;
|
|
12391
|
+
/**
|
|
12392
|
+
* 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.
|
|
12393
|
+
* @type {number}
|
|
12394
|
+
* @memberof GetPersonalAccessTokenResponseBeta
|
|
12395
|
+
*/
|
|
12396
|
+
'accessTokenValiditySeconds'?: number;
|
|
12397
|
+
/**
|
|
12398
|
+
* 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.
|
|
12399
|
+
* @type {string}
|
|
12400
|
+
* @memberof GetPersonalAccessTokenResponseBeta
|
|
12401
|
+
*/
|
|
12402
|
+
'expirationDate'?: string | null;
|
|
12214
12403
|
}
|
|
12215
12404
|
/**
|
|
12216
12405
|
*
|
|
@@ -12929,13 +13118,13 @@ export interface IdentityCertifiedBeta {
|
|
|
12929
13118
|
* @type {string}
|
|
12930
13119
|
* @memberof IdentityCertifiedBeta
|
|
12931
13120
|
*/
|
|
12932
|
-
'certificationId'
|
|
13121
|
+
'certificationId': string;
|
|
12933
13122
|
/**
|
|
12934
13123
|
* the certification item name
|
|
12935
13124
|
* @type {string}
|
|
12936
13125
|
* @memberof IdentityCertifiedBeta
|
|
12937
13126
|
*/
|
|
12938
|
-
'certificationName'
|
|
13127
|
+
'certificationName': string;
|
|
12939
13128
|
/**
|
|
12940
13129
|
* the date ceritification was signed
|
|
12941
13130
|
* @type {string}
|
|
@@ -12971,7 +13160,7 @@ export interface IdentityCertifiedBeta {
|
|
|
12971
13160
|
* @type {string}
|
|
12972
13161
|
* @memberof IdentityCertifiedBeta
|
|
12973
13162
|
*/
|
|
12974
|
-
'
|
|
13163
|
+
'dateTime'?: string;
|
|
12975
13164
|
}
|
|
12976
13165
|
/**
|
|
12977
13166
|
*
|
|
@@ -15054,10 +15243,125 @@ export interface ListFormElementDataByElementIDResponseBeta {
|
|
|
15054
15243
|
'results'?: Array<FormElementDataSourceConfigOptionsBeta>;
|
|
15055
15244
|
}
|
|
15056
15245
|
/**
|
|
15057
|
-
*
|
|
15246
|
+
*
|
|
15058
15247
|
* @export
|
|
15248
|
+
* @interface ListIdentityAccessItems200ResponseInnerBeta
|
|
15059
15249
|
*/
|
|
15060
|
-
export
|
|
15250
|
+
export interface ListIdentityAccessItems200ResponseInnerBeta {
|
|
15251
|
+
/**
|
|
15252
|
+
* the access item id
|
|
15253
|
+
* @type {string}
|
|
15254
|
+
* @memberof ListIdentityAccessItems200ResponseInnerBeta
|
|
15255
|
+
*/
|
|
15256
|
+
'id'?: string;
|
|
15257
|
+
/**
|
|
15258
|
+
* the access item type. entitlement in this case
|
|
15259
|
+
* @type {string}
|
|
15260
|
+
* @memberof ListIdentityAccessItems200ResponseInnerBeta
|
|
15261
|
+
*/
|
|
15262
|
+
'accessType'?: string;
|
|
15263
|
+
/**
|
|
15264
|
+
* the access item display name
|
|
15265
|
+
* @type {string}
|
|
15266
|
+
* @memberof ListIdentityAccessItems200ResponseInnerBeta
|
|
15267
|
+
*/
|
|
15268
|
+
'displayName'?: string;
|
|
15269
|
+
/**
|
|
15270
|
+
* the associated source name if it exists
|
|
15271
|
+
* @type {string}
|
|
15272
|
+
* @memberof ListIdentityAccessItems200ResponseInnerBeta
|
|
15273
|
+
*/
|
|
15274
|
+
'sourceName'?: string | null;
|
|
15275
|
+
/**
|
|
15276
|
+
* the entitlement attribute
|
|
15277
|
+
* @type {string}
|
|
15278
|
+
* @memberof ListIdentityAccessItems200ResponseInnerBeta
|
|
15279
|
+
*/
|
|
15280
|
+
'attribute': string;
|
|
15281
|
+
/**
|
|
15282
|
+
* the associated value
|
|
15283
|
+
* @type {string}
|
|
15284
|
+
* @memberof ListIdentityAccessItems200ResponseInnerBeta
|
|
15285
|
+
*/
|
|
15286
|
+
'value': string;
|
|
15287
|
+
/**
|
|
15288
|
+
* the type of entitlement
|
|
15289
|
+
* @type {string}
|
|
15290
|
+
* @memberof ListIdentityAccessItems200ResponseInnerBeta
|
|
15291
|
+
*/
|
|
15292
|
+
'type': string;
|
|
15293
|
+
/**
|
|
15294
|
+
* the description for the role
|
|
15295
|
+
* @type {string}
|
|
15296
|
+
* @memberof ListIdentityAccessItems200ResponseInnerBeta
|
|
15297
|
+
*/
|
|
15298
|
+
'description'?: string;
|
|
15299
|
+
/**
|
|
15300
|
+
* the id of the source
|
|
15301
|
+
* @type {string}
|
|
15302
|
+
* @memberof ListIdentityAccessItems200ResponseInnerBeta
|
|
15303
|
+
*/
|
|
15304
|
+
'sourceId'?: string;
|
|
15305
|
+
/**
|
|
15306
|
+
* indicates whether the access profile is standalone
|
|
15307
|
+
* @type {boolean}
|
|
15308
|
+
* @memberof ListIdentityAccessItems200ResponseInnerBeta
|
|
15309
|
+
*/
|
|
15310
|
+
'standalone': boolean | null;
|
|
15311
|
+
/**
|
|
15312
|
+
* indicates whether the entitlement is privileged
|
|
15313
|
+
* @type {boolean}
|
|
15314
|
+
* @memberof ListIdentityAccessItems200ResponseInnerBeta
|
|
15315
|
+
*/
|
|
15316
|
+
'privileged': boolean | null;
|
|
15317
|
+
/**
|
|
15318
|
+
* indicates whether the entitlement is cloud governed
|
|
15319
|
+
* @type {boolean}
|
|
15320
|
+
* @memberof ListIdentityAccessItems200ResponseInnerBeta
|
|
15321
|
+
*/
|
|
15322
|
+
'cloudGoverned': boolean | null;
|
|
15323
|
+
/**
|
|
15324
|
+
* the number of entitlements the account will create
|
|
15325
|
+
* @type {number}
|
|
15326
|
+
* @memberof ListIdentityAccessItems200ResponseInnerBeta
|
|
15327
|
+
*/
|
|
15328
|
+
'entitlementCount': number;
|
|
15329
|
+
/**
|
|
15330
|
+
* the list of app ids associated with the access profile
|
|
15331
|
+
* @type {Array<AccessItemAccessProfileResponseAppRefsInnerBeta>}
|
|
15332
|
+
* @memberof ListIdentityAccessItems200ResponseInnerBeta
|
|
15333
|
+
*/
|
|
15334
|
+
'appRefs': Array<AccessItemAccessProfileResponseAppRefsInnerBeta>;
|
|
15335
|
+
/**
|
|
15336
|
+
* the date the role is no longer assigned to the specified identity
|
|
15337
|
+
* @type {string}
|
|
15338
|
+
* @memberof ListIdentityAccessItems200ResponseInnerBeta
|
|
15339
|
+
*/
|
|
15340
|
+
'removeDate'?: string;
|
|
15341
|
+
/**
|
|
15342
|
+
* indicates whether the role is revocable
|
|
15343
|
+
* @type {boolean}
|
|
15344
|
+
* @memberof ListIdentityAccessItems200ResponseInnerBeta
|
|
15345
|
+
*/
|
|
15346
|
+
'revocable': boolean;
|
|
15347
|
+
/**
|
|
15348
|
+
* the native identifier used to uniquely identify an acccount
|
|
15349
|
+
* @type {string}
|
|
15350
|
+
* @memberof ListIdentityAccessItems200ResponseInnerBeta
|
|
15351
|
+
*/
|
|
15352
|
+
'nativeIdentity': string;
|
|
15353
|
+
/**
|
|
15354
|
+
* the app role id
|
|
15355
|
+
* @type {string}
|
|
15356
|
+
* @memberof ListIdentityAccessItems200ResponseInnerBeta
|
|
15357
|
+
*/
|
|
15358
|
+
'appRoleId': string | null;
|
|
15359
|
+
}
|
|
15360
|
+
/**
|
|
15361
|
+
* @type ListIdentitySnapshotAccessItems200ResponseInnerBeta
|
|
15362
|
+
* @export
|
|
15363
|
+
*/
|
|
15364
|
+
export type ListIdentitySnapshotAccessItems200ResponseInnerBeta = AccessItemAccessProfileResponseBeta | AccessItemAccountResponseBeta | AccessItemAppResponseBeta | AccessItemEntitlementResponseBeta | AccessItemRoleResponseBeta;
|
|
15061
15365
|
/**
|
|
15062
15366
|
*
|
|
15063
15367
|
* @export
|
|
@@ -26501,6 +26805,35 @@ export interface SodPolicyConflictingAccessCriteriaBeta {
|
|
|
26501
26805
|
*/
|
|
26502
26806
|
'rightCriteria'?: AccessCriteriaBeta;
|
|
26503
26807
|
}
|
|
26808
|
+
/**
|
|
26809
|
+
* SOD policy.
|
|
26810
|
+
* @export
|
|
26811
|
+
* @interface SodPolicyDto1Beta
|
|
26812
|
+
*/
|
|
26813
|
+
export interface SodPolicyDto1Beta {
|
|
26814
|
+
/**
|
|
26815
|
+
* SOD policy DTO type.
|
|
26816
|
+
* @type {string}
|
|
26817
|
+
* @memberof SodPolicyDto1Beta
|
|
26818
|
+
*/
|
|
26819
|
+
'type'?: SodPolicyDto1BetaTypeBeta;
|
|
26820
|
+
/**
|
|
26821
|
+
* SOD policy ID.
|
|
26822
|
+
* @type {string}
|
|
26823
|
+
* @memberof SodPolicyDto1Beta
|
|
26824
|
+
*/
|
|
26825
|
+
'id'?: string;
|
|
26826
|
+
/**
|
|
26827
|
+
* SOD policy display name.
|
|
26828
|
+
* @type {string}
|
|
26829
|
+
* @memberof SodPolicyDto1Beta
|
|
26830
|
+
*/
|
|
26831
|
+
'name'?: string;
|
|
26832
|
+
}
|
|
26833
|
+
export declare const SodPolicyDto1BetaTypeBeta: {
|
|
26834
|
+
readonly SodPolicy: "SOD_POLICY";
|
|
26835
|
+
};
|
|
26836
|
+
export type SodPolicyDto1BetaTypeBeta = typeof SodPolicyDto1BetaTypeBeta[keyof typeof SodPolicyDto1BetaTypeBeta];
|
|
26504
26837
|
/**
|
|
26505
26838
|
* SOD policy.
|
|
26506
26839
|
* @export
|
|
@@ -26707,10 +27040,10 @@ export interface SodViolationCheckResult1Beta {
|
|
|
26707
27040
|
'violationContexts'?: Array<SodViolationContext1Beta>;
|
|
26708
27041
|
/**
|
|
26709
27042
|
* A list of the Policies that were violated.
|
|
26710
|
-
* @type {Array<
|
|
27043
|
+
* @type {Array<SodPolicyDto1Beta>}
|
|
26711
27044
|
* @memberof SodViolationCheckResult1Beta
|
|
26712
27045
|
*/
|
|
26713
|
-
'violatedPolicies'?: Array<
|
|
27046
|
+
'violatedPolicies'?: Array<SodPolicyDto1Beta>;
|
|
26714
27047
|
}
|
|
26715
27048
|
/**
|
|
26716
27049
|
* The inner object representing the completed SOD Violation check
|
|
@@ -26740,10 +27073,10 @@ export interface SodViolationCheckResultBeta {
|
|
|
26740
27073
|
'violationContexts'?: Array<SodViolationContextBeta> | null;
|
|
26741
27074
|
/**
|
|
26742
27075
|
* A list of the SOD policies that were violated.
|
|
26743
|
-
* @type {Array<
|
|
27076
|
+
* @type {Array<SodPolicyDto1Beta>}
|
|
26744
27077
|
* @memberof SodViolationCheckResultBeta
|
|
26745
27078
|
*/
|
|
26746
|
-
'violatedPolicies'?: Array<
|
|
27079
|
+
'violatedPolicies'?: Array<SodPolicyDto1Beta> | null;
|
|
26747
27080
|
}
|
|
26748
27081
|
/**
|
|
26749
27082
|
* The contextual information of the violated criteria.
|
|
@@ -26753,10 +27086,10 @@ export interface SodViolationCheckResultBeta {
|
|
|
26753
27086
|
export interface SodViolationContext1Beta {
|
|
26754
27087
|
/**
|
|
26755
27088
|
*
|
|
26756
|
-
* @type {
|
|
27089
|
+
* @type {SodPolicyDto1Beta}
|
|
26757
27090
|
* @memberof SodViolationContext1Beta
|
|
26758
27091
|
*/
|
|
26759
|
-
'policy'?:
|
|
27092
|
+
'policy'?: SodPolicyDto1Beta;
|
|
26760
27093
|
/**
|
|
26761
27094
|
*
|
|
26762
27095
|
* @type {SodViolationContext1ConflictingAccessCriteriaBeta}
|
|
@@ -26804,10 +27137,10 @@ export interface SodViolationContext1ConflictingAccessCriteriaLeftCriteriaBeta {
|
|
|
26804
27137
|
export interface SodViolationContextBeta {
|
|
26805
27138
|
/**
|
|
26806
27139
|
*
|
|
26807
|
-
* @type {
|
|
27140
|
+
* @type {SodPolicyDto1Beta}
|
|
26808
27141
|
* @memberof SodViolationContextBeta
|
|
26809
27142
|
*/
|
|
26810
|
-
'policy'?:
|
|
27143
|
+
'policy'?: SodPolicyDto1Beta;
|
|
26811
27144
|
/**
|
|
26812
27145
|
*
|
|
26813
27146
|
* @type {SodViolationContextConflictingAccessCriteriaBeta}
|
|
@@ -32676,19 +33009,26 @@ export declare const AccessModelMetadataBetaApiAxiosParamCreator: (configuration
|
|
|
32676
33009
|
/**
|
|
32677
33010
|
* Get a list of Access Model Metadata Attributes
|
|
32678
33011
|
* @summary List access model metadata attributes
|
|
32679
|
-
* @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
|
|
33012
|
+
* @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*
|
|
33013
|
+
* @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**
|
|
33014
|
+
* @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.
|
|
33015
|
+
* @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.
|
|
33016
|
+
* @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.
|
|
32680
33017
|
* @param {*} [axiosOptions] Override http request option.
|
|
32681
33018
|
* @throws {RequiredError}
|
|
32682
33019
|
*/
|
|
32683
|
-
listAccessModelMetadataAttribute: (filters?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
33020
|
+
listAccessModelMetadataAttribute: (filters?: string, sorters?: string, offset?: number, limit?: number, count?: boolean, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
32684
33021
|
/**
|
|
32685
33022
|
* Get a list of Access Model Metadata Attribute Values
|
|
32686
33023
|
* @summary List access model metadata values
|
|
32687
33024
|
* @param {string} key Technical name of the Attribute.
|
|
33025
|
+
* @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.
|
|
33026
|
+
* @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.
|
|
33027
|
+
* @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.
|
|
32688
33028
|
* @param {*} [axiosOptions] Override http request option.
|
|
32689
33029
|
* @throws {RequiredError}
|
|
32690
33030
|
*/
|
|
32691
|
-
listAccessModelMetadataAttributeValue: (key: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
33031
|
+
listAccessModelMetadataAttributeValue: (key: string, offset?: number, limit?: number, count?: boolean, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
32692
33032
|
};
|
|
32693
33033
|
/**
|
|
32694
33034
|
* AccessModelMetadataBetaApi - functional programming interface
|
|
@@ -32715,19 +33055,26 @@ export declare const AccessModelMetadataBetaApiFp: (configuration?: Configuratio
|
|
|
32715
33055
|
/**
|
|
32716
33056
|
* Get a list of Access Model Metadata Attributes
|
|
32717
33057
|
* @summary List access model metadata attributes
|
|
32718
|
-
* @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
|
|
33058
|
+
* @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*
|
|
33059
|
+
* @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**
|
|
33060
|
+
* @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.
|
|
33061
|
+
* @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.
|
|
33062
|
+
* @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.
|
|
32719
33063
|
* @param {*} [axiosOptions] Override http request option.
|
|
32720
33064
|
* @throws {RequiredError}
|
|
32721
33065
|
*/
|
|
32722
|
-
listAccessModelMetadataAttribute(filters?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<AttributeDTOBeta>>>;
|
|
33066
|
+
listAccessModelMetadataAttribute(filters?: string, sorters?: string, offset?: number, limit?: number, count?: boolean, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<AttributeDTOBeta>>>;
|
|
32723
33067
|
/**
|
|
32724
33068
|
* Get a list of Access Model Metadata Attribute Values
|
|
32725
33069
|
* @summary List access model metadata values
|
|
32726
33070
|
* @param {string} key Technical name of the Attribute.
|
|
33071
|
+
* @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.
|
|
33072
|
+
* @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.
|
|
33073
|
+
* @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.
|
|
32727
33074
|
* @param {*} [axiosOptions] Override http request option.
|
|
32728
33075
|
* @throws {RequiredError}
|
|
32729
33076
|
*/
|
|
32730
|
-
listAccessModelMetadataAttributeValue(key: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<AttributeValueDTOBeta>>>;
|
|
33077
|
+
listAccessModelMetadataAttributeValue(key: string, offset?: number, limit?: number, count?: boolean, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<AttributeValueDTOBeta>>>;
|
|
32731
33078
|
};
|
|
32732
33079
|
/**
|
|
32733
33080
|
* AccessModelMetadataBetaApi - factory interface
|
|
@@ -32806,11 +33153,35 @@ export interface AccessModelMetadataBetaApiGetAccessModelMetadataAttributeValueR
|
|
|
32806
33153
|
*/
|
|
32807
33154
|
export interface AccessModelMetadataBetaApiListAccessModelMetadataAttributeRequest {
|
|
32808
33155
|
/**
|
|
32809
|
-
* 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
|
|
33156
|
+
* 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*
|
|
32810
33157
|
* @type {string}
|
|
32811
33158
|
* @memberof AccessModelMetadataBetaApiListAccessModelMetadataAttribute
|
|
32812
33159
|
*/
|
|
32813
33160
|
readonly filters?: string;
|
|
33161
|
+
/**
|
|
33162
|
+
* 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**
|
|
33163
|
+
* @type {string}
|
|
33164
|
+
* @memberof AccessModelMetadataBetaApiListAccessModelMetadataAttribute
|
|
33165
|
+
*/
|
|
33166
|
+
readonly sorters?: string;
|
|
33167
|
+
/**
|
|
33168
|
+
* 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.
|
|
33169
|
+
* @type {number}
|
|
33170
|
+
* @memberof AccessModelMetadataBetaApiListAccessModelMetadataAttribute
|
|
33171
|
+
*/
|
|
33172
|
+
readonly offset?: number;
|
|
33173
|
+
/**
|
|
33174
|
+
* Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
33175
|
+
* @type {number}
|
|
33176
|
+
* @memberof AccessModelMetadataBetaApiListAccessModelMetadataAttribute
|
|
33177
|
+
*/
|
|
33178
|
+
readonly limit?: number;
|
|
33179
|
+
/**
|
|
33180
|
+
* 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.
|
|
33181
|
+
* @type {boolean}
|
|
33182
|
+
* @memberof AccessModelMetadataBetaApiListAccessModelMetadataAttribute
|
|
33183
|
+
*/
|
|
33184
|
+
readonly count?: boolean;
|
|
32814
33185
|
}
|
|
32815
33186
|
/**
|
|
32816
33187
|
* Request parameters for listAccessModelMetadataAttributeValue operation in AccessModelMetadataBetaApi.
|
|
@@ -32824,6 +33195,24 @@ export interface AccessModelMetadataBetaApiListAccessModelMetadataAttributeValue
|
|
|
32824
33195
|
* @memberof AccessModelMetadataBetaApiListAccessModelMetadataAttributeValue
|
|
32825
33196
|
*/
|
|
32826
33197
|
readonly key: string;
|
|
33198
|
+
/**
|
|
33199
|
+
* 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.
|
|
33200
|
+
* @type {number}
|
|
33201
|
+
* @memberof AccessModelMetadataBetaApiListAccessModelMetadataAttributeValue
|
|
33202
|
+
*/
|
|
33203
|
+
readonly offset?: number;
|
|
33204
|
+
/**
|
|
33205
|
+
* Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
33206
|
+
* @type {number}
|
|
33207
|
+
* @memberof AccessModelMetadataBetaApiListAccessModelMetadataAttributeValue
|
|
33208
|
+
*/
|
|
33209
|
+
readonly limit?: number;
|
|
33210
|
+
/**
|
|
33211
|
+
* 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.
|
|
33212
|
+
* @type {boolean}
|
|
33213
|
+
* @memberof AccessModelMetadataBetaApiListAccessModelMetadataAttributeValue
|
|
33214
|
+
*/
|
|
33215
|
+
readonly count?: boolean;
|
|
32827
33216
|
}
|
|
32828
33217
|
/**
|
|
32829
33218
|
* AccessModelMetadataBetaApi - object-oriented interface
|
|
@@ -40441,7 +40830,7 @@ export declare const EntitlementsBetaApiAxiosParamCreator: (configuration?: Conf
|
|
|
40441
40830
|
* 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.
|
|
40442
40831
|
* @summary Gets a list of entitlements.
|
|
40443
40832
|
* @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). This parameter is deprecated. Please use [Account Entitlements API](https://developer.sailpoint.com/apis/beta/#operation/getAccountEntitlements) to get account entitlements.
|
|
40444
|
-
* @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.
|
|
40833
|
+
* @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.
|
|
40445
40834
|
* @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).
|
|
40446
40835
|
* @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.
|
|
40447
40836
|
* @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.
|
|
@@ -40454,7 +40843,7 @@ export declare const EntitlementsBetaApiAxiosParamCreator: (configuration?: Conf
|
|
|
40454
40843
|
*/
|
|
40455
40844
|
listEntitlements: (accountId?: string, segmentedForIdentity?: string, forSegmentIds?: string, includeUnsegmented?: boolean, offset?: number, limit?: number, count?: boolean, sorters?: string, filters?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
40456
40845
|
/**
|
|
40457
|
-
* 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. A token with ORG_ADMIN or SOURCE_ADMIN authority is required to call this API.
|
|
40846
|
+
* 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**, **privilegeOverride/overrideLevel** 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. A token with ORG_ADMIN or SOURCE_ADMIN authority is required to call this API.
|
|
40458
40847
|
* @summary Patch an entitlement
|
|
40459
40848
|
* @param {string} id ID of the entitlement to patch
|
|
40460
40849
|
* @param {Array<JsonPatchOperationBeta>} [jsonPatchOperationBeta]
|
|
@@ -40480,7 +40869,7 @@ export declare const EntitlementsBetaApiAxiosParamCreator: (configuration?: Conf
|
|
|
40480
40869
|
*/
|
|
40481
40870
|
resetSourceEntitlements: (sourceId: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
40482
40871
|
/**
|
|
40483
|
-
* 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. allowed operations : `**{ \"op\": \"replace\", \"path\": \"/privileged\", \"value\": boolean }
|
|
40872
|
+
* 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.
|
|
40484
40873
|
* @summary Bulk update an entitlement list
|
|
40485
40874
|
* @param {EntitlementBulkUpdateRequestBeta} entitlementBulkUpdateRequestBeta
|
|
40486
40875
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -40569,7 +40958,7 @@ export declare const EntitlementsBetaApiFp: (configuration?: Configuration) => {
|
|
|
40569
40958
|
* 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.
|
|
40570
40959
|
* @summary Gets a list of entitlements.
|
|
40571
40960
|
* @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). This parameter is deprecated. Please use [Account Entitlements API](https://developer.sailpoint.com/apis/beta/#operation/getAccountEntitlements) to get account entitlements.
|
|
40572
|
-
* @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.
|
|
40961
|
+
* @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.
|
|
40573
40962
|
* @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).
|
|
40574
40963
|
* @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.
|
|
40575
40964
|
* @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.
|
|
@@ -40582,7 +40971,7 @@ export declare const EntitlementsBetaApiFp: (configuration?: Configuration) => {
|
|
|
40582
40971
|
*/
|
|
40583
40972
|
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<EntitlementBeta>>>;
|
|
40584
40973
|
/**
|
|
40585
|
-
* 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. A token with ORG_ADMIN or SOURCE_ADMIN authority is required to call this API.
|
|
40974
|
+
* 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**, **privilegeOverride/overrideLevel** 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. A token with ORG_ADMIN or SOURCE_ADMIN authority is required to call this API.
|
|
40586
40975
|
* @summary Patch an entitlement
|
|
40587
40976
|
* @param {string} id ID of the entitlement to patch
|
|
40588
40977
|
* @param {Array<JsonPatchOperationBeta>} [jsonPatchOperationBeta]
|
|
@@ -40608,7 +40997,7 @@ export declare const EntitlementsBetaApiFp: (configuration?: Configuration) => {
|
|
|
40608
40997
|
*/
|
|
40609
40998
|
resetSourceEntitlements(sourceId: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EntitlementSourceResetBaseReferenceDtoBeta>>;
|
|
40610
40999
|
/**
|
|
40611
|
-
* 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. allowed operations : `**{ \"op\": \"replace\", \"path\": \"/privileged\", \"value\": boolean }
|
|
41000
|
+
* 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.
|
|
40612
41001
|
* @summary Bulk update an entitlement list
|
|
40613
41002
|
* @param {EntitlementBulkUpdateRequestBeta} entitlementBulkUpdateRequestBeta
|
|
40614
41003
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -40687,7 +41076,7 @@ export declare const EntitlementsBetaApiFactory: (configuration?: Configuration,
|
|
|
40687
41076
|
*/
|
|
40688
41077
|
listEntitlements(requestParameters?: EntitlementsBetaApiListEntitlementsRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<EntitlementBeta>>;
|
|
40689
41078
|
/**
|
|
40690
|
-
* 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. A token with ORG_ADMIN or SOURCE_ADMIN authority is required to call this API.
|
|
41079
|
+
* 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**, **privilegeOverride/overrideLevel** 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. A token with ORG_ADMIN or SOURCE_ADMIN authority is required to call this API.
|
|
40691
41080
|
* @summary Patch an entitlement
|
|
40692
41081
|
* @param {EntitlementsBetaApiPatchEntitlementRequest} requestParameters Request parameters.
|
|
40693
41082
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -40711,7 +41100,7 @@ export declare const EntitlementsBetaApiFactory: (configuration?: Configuration,
|
|
|
40711
41100
|
*/
|
|
40712
41101
|
resetSourceEntitlements(requestParameters: EntitlementsBetaApiResetSourceEntitlementsRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<EntitlementSourceResetBaseReferenceDtoBeta>;
|
|
40713
41102
|
/**
|
|
40714
|
-
* 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. allowed operations : `**{ \"op\": \"replace\", \"path\": \"/privileged\", \"value\": boolean }
|
|
41103
|
+
* 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.
|
|
40715
41104
|
* @summary Bulk update an entitlement list
|
|
40716
41105
|
* @param {EntitlementsBetaApiUpdateEntitlementsInBulkRequest} requestParameters Request parameters.
|
|
40717
41106
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -40913,7 +41302,7 @@ export interface EntitlementsBetaApiListEntitlementsRequest {
|
|
|
40913
41302
|
*/
|
|
40914
41303
|
readonly accountId?: string;
|
|
40915
41304
|
/**
|
|
40916
|
-
* 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.
|
|
41305
|
+
* 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.
|
|
40917
41306
|
* @type {string}
|
|
40918
41307
|
* @memberof EntitlementsBetaApiListEntitlements
|
|
40919
41308
|
*/
|
|
@@ -41106,7 +41495,7 @@ export declare class EntitlementsBetaApi extends BaseAPI {
|
|
|
41106
41495
|
*/
|
|
41107
41496
|
listEntitlements(requestParameters?: EntitlementsBetaApiListEntitlementsRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<EntitlementBeta[], any>>;
|
|
41108
41497
|
/**
|
|
41109
|
-
* 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. A token with ORG_ADMIN or SOURCE_ADMIN authority is required to call this API.
|
|
41498
|
+
* 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**, **privilegeOverride/overrideLevel** 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. A token with ORG_ADMIN or SOURCE_ADMIN authority is required to call this API.
|
|
41110
41499
|
* @summary Patch an entitlement
|
|
41111
41500
|
* @param {EntitlementsBetaApiPatchEntitlementRequest} requestParameters Request parameters.
|
|
41112
41501
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -41133,7 +41522,7 @@ export declare class EntitlementsBetaApi extends BaseAPI {
|
|
|
41133
41522
|
*/
|
|
41134
41523
|
resetSourceEntitlements(requestParameters: EntitlementsBetaApiResetSourceEntitlementsRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<EntitlementSourceResetBaseReferenceDtoBeta, any>>;
|
|
41135
41524
|
/**
|
|
41136
|
-
* 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. allowed operations : `**{ \"op\": \"replace\", \"path\": \"/privileged\", \"value\": boolean }
|
|
41525
|
+
* 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.
|
|
41137
41526
|
* @summary Bulk update an entitlement list
|
|
41138
41527
|
* @param {EntitlementsBetaApiUpdateEntitlementsInBulkRequest} requestParameters Request parameters.
|
|
41139
41528
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -46348,7 +46737,7 @@ export declare const IdentityHistoryBetaApiAxiosParamCreator: (configuration?: C
|
|
|
46348
46737
|
getHistoricalIdentity: (id: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
46349
46738
|
/**
|
|
46350
46739
|
* This method retrieves all access events for the identity Requires authorization scope of \'idn:identity-history:read\'
|
|
46351
|
-
* @summary
|
|
46740
|
+
* @summary List identity event history
|
|
46352
46741
|
* @param {string} id The identity id
|
|
46353
46742
|
* @param {string} [from] The optional instant until which access events are returned
|
|
46354
46743
|
* @param {Array<string>} [eventTypes] An optional list of event types to return. If null or empty, all events are returned
|
|
@@ -46407,7 +46796,7 @@ export declare const IdentityHistoryBetaApiAxiosParamCreator: (configuration?: C
|
|
|
46407
46796
|
* This method retrieves a list of access item for the identity filtered by the access item type
|
|
46408
46797
|
* @summary List access items by identity
|
|
46409
46798
|
* @param {string} id The identity id
|
|
46410
|
-
* @param {
|
|
46799
|
+
* @param {ListIdentityAccessItemsTypeBeta} [type] The type of access item for the identity. If not provided, it defaults to account. Types of access items: **accessProfile, account, app, entitlement, role**
|
|
46411
46800
|
* @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: **source**: *eq* **standalone**: *eq* **privileged**: *eq* **attribute**: *eq* **cloudGoverned**: *eq*
|
|
46412
46801
|
* @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, value, standalone, privileged, attribute, source, cloudGoverned, removeDate, nativeIdentity, entitlementCount**
|
|
46413
46802
|
* @param {string} [query] This param is used to search if certain fields of the access item contain the string provided. Searching is supported for the following fields depending on the type: Access Profiles: **name, description** Accounts: **name, nativeIdentity** Apps: **name** Entitlements: **name, value, description** Roles: **name, description**
|
|
@@ -46417,7 +46806,7 @@ export declare const IdentityHistoryBetaApiAxiosParamCreator: (configuration?: C
|
|
|
46417
46806
|
* @param {*} [axiosOptions] Override http request option.
|
|
46418
46807
|
* @throws {RequiredError}
|
|
46419
46808
|
*/
|
|
46420
|
-
listIdentityAccessItems: (id: string, type?:
|
|
46809
|
+
listIdentityAccessItems: (id: string, type?: ListIdentityAccessItemsTypeBeta, filters?: string, sorters?: string, query?: string, limit?: number, count?: boolean, offset?: number, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
46421
46810
|
/**
|
|
46422
46811
|
* Use this API to get a list of identity access items at a specified date, filtered by item type.
|
|
46423
46812
|
* @summary Get identity access items snapshot
|
|
@@ -46486,7 +46875,7 @@ export declare const IdentityHistoryBetaApiFp: (configuration?: Configuration) =
|
|
|
46486
46875
|
getHistoricalIdentity(id: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<IdentityHistoryResponseBeta>>;
|
|
46487
46876
|
/**
|
|
46488
46877
|
* This method retrieves all access events for the identity Requires authorization scope of \'idn:identity-history:read\'
|
|
46489
|
-
* @summary
|
|
46878
|
+
* @summary List identity event history
|
|
46490
46879
|
* @param {string} id The identity id
|
|
46491
46880
|
* @param {string} [from] The optional instant until which access events are returned
|
|
46492
46881
|
* @param {Array<string>} [eventTypes] An optional list of event types to return. If null or empty, all events are returned
|
|
@@ -46545,7 +46934,7 @@ export declare const IdentityHistoryBetaApiFp: (configuration?: Configuration) =
|
|
|
46545
46934
|
* This method retrieves a list of access item for the identity filtered by the access item type
|
|
46546
46935
|
* @summary List access items by identity
|
|
46547
46936
|
* @param {string} id The identity id
|
|
46548
|
-
* @param {
|
|
46937
|
+
* @param {ListIdentityAccessItemsTypeBeta} [type] The type of access item for the identity. If not provided, it defaults to account. Types of access items: **accessProfile, account, app, entitlement, role**
|
|
46549
46938
|
* @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: **source**: *eq* **standalone**: *eq* **privileged**: *eq* **attribute**: *eq* **cloudGoverned**: *eq*
|
|
46550
46939
|
* @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, value, standalone, privileged, attribute, source, cloudGoverned, removeDate, nativeIdentity, entitlementCount**
|
|
46551
46940
|
* @param {string} [query] This param is used to search if certain fields of the access item contain the string provided. Searching is supported for the following fields depending on the type: Access Profiles: **name, description** Accounts: **name, nativeIdentity** Apps: **name** Entitlements: **name, value, description** Roles: **name, description**
|
|
@@ -46555,7 +46944,7 @@ export declare const IdentityHistoryBetaApiFp: (configuration?: Configuration) =
|
|
|
46555
46944
|
* @param {*} [axiosOptions] Override http request option.
|
|
46556
46945
|
* @throws {RequiredError}
|
|
46557
46946
|
*/
|
|
46558
|
-
listIdentityAccessItems(id: string, type?:
|
|
46947
|
+
listIdentityAccessItems(id: string, type?: ListIdentityAccessItemsTypeBeta, filters?: string, sorters?: string, query?: string, limit?: number, count?: boolean, offset?: number, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<ListIdentityAccessItems200ResponseInnerBeta>>>;
|
|
46559
46948
|
/**
|
|
46560
46949
|
* Use this API to get a list of identity access items at a specified date, filtered by item type.
|
|
46561
46950
|
* @summary Get identity access items snapshot
|
|
@@ -46565,7 +46954,7 @@ export declare const IdentityHistoryBetaApiFp: (configuration?: Configuration) =
|
|
|
46565
46954
|
* @param {*} [axiosOptions] Override http request option.
|
|
46566
46955
|
* @throws {RequiredError}
|
|
46567
46956
|
*/
|
|
46568
|
-
listIdentitySnapshotAccessItems(id: string, date: string, type?: ListIdentitySnapshotAccessItemsTypeBeta, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<
|
|
46957
|
+
listIdentitySnapshotAccessItems(id: string, date: string, type?: ListIdentitySnapshotAccessItemsTypeBeta, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<ListIdentitySnapshotAccessItems200ResponseInnerBeta>>>;
|
|
46569
46958
|
/**
|
|
46570
46959
|
* This method retrieves all the snapshots for the identity Requires authorization scope of \'idn:identity-history:read\'
|
|
46571
46960
|
* @summary Lists all the snapshots for the identity
|
|
@@ -46611,7 +47000,7 @@ export declare const IdentityHistoryBetaApiFactory: (configuration?: Configurati
|
|
|
46611
47000
|
getHistoricalIdentity(requestParameters: IdentityHistoryBetaApiGetHistoricalIdentityRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<IdentityHistoryResponseBeta>;
|
|
46612
47001
|
/**
|
|
46613
47002
|
* This method retrieves all access events for the identity Requires authorization scope of \'idn:identity-history:read\'
|
|
46614
|
-
* @summary
|
|
47003
|
+
* @summary List identity event history
|
|
46615
47004
|
* @param {IdentityHistoryBetaApiGetHistoricalIdentityEventsRequest} requestParameters Request parameters.
|
|
46616
47005
|
* @param {*} [axiosOptions] Override http request option.
|
|
46617
47006
|
* @throws {RequiredError}
|
|
@@ -46664,7 +47053,7 @@ export declare const IdentityHistoryBetaApiFactory: (configuration?: Configurati
|
|
|
46664
47053
|
* @param {*} [axiosOptions] Override http request option.
|
|
46665
47054
|
* @throws {RequiredError}
|
|
46666
47055
|
*/
|
|
46667
|
-
listIdentitySnapshotAccessItems(requestParameters: IdentityHistoryBetaApiListIdentitySnapshotAccessItemsRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<
|
|
47056
|
+
listIdentitySnapshotAccessItems(requestParameters: IdentityHistoryBetaApiListIdentitySnapshotAccessItemsRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<ListIdentitySnapshotAccessItems200ResponseInnerBeta>>;
|
|
46668
47057
|
/**
|
|
46669
47058
|
* This method retrieves all the snapshots for the identity Requires authorization scope of \'idn:identity-history:read\'
|
|
46670
47059
|
* @summary Lists all the snapshots for the identity
|
|
@@ -46972,10 +47361,10 @@ export interface IdentityHistoryBetaApiListIdentityAccessItemsRequest {
|
|
|
46972
47361
|
readonly id: string;
|
|
46973
47362
|
/**
|
|
46974
47363
|
* The type of access item for the identity. If not provided, it defaults to account. Types of access items: **accessProfile, account, app, entitlement, role**
|
|
46975
|
-
* @type {
|
|
47364
|
+
* @type {'account' | 'entitlement' | 'app' | 'accessProfile' | 'role'}
|
|
46976
47365
|
* @memberof IdentityHistoryBetaApiListIdentityAccessItems
|
|
46977
47366
|
*/
|
|
46978
|
-
readonly type?:
|
|
47367
|
+
readonly type?: ListIdentityAccessItemsTypeBeta;
|
|
46979
47368
|
/**
|
|
46980
47369
|
* 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: **source**: *eq* **standalone**: *eq* **privileged**: *eq* **attribute**: *eq* **cloudGoverned**: *eq*
|
|
46981
47370
|
* @type {string}
|
|
@@ -47117,7 +47506,7 @@ export declare class IdentityHistoryBetaApi extends BaseAPI {
|
|
|
47117
47506
|
getHistoricalIdentity(requestParameters: IdentityHistoryBetaApiGetHistoricalIdentityRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<IdentityHistoryResponseBeta, any>>;
|
|
47118
47507
|
/**
|
|
47119
47508
|
* This method retrieves all access events for the identity Requires authorization scope of \'idn:identity-history:read\'
|
|
47120
|
-
* @summary
|
|
47509
|
+
* @summary List identity event history
|
|
47121
47510
|
* @param {IdentityHistoryBetaApiGetHistoricalIdentityEventsRequest} requestParameters Request parameters.
|
|
47122
47511
|
* @param {*} [axiosOptions] Override http request option.
|
|
47123
47512
|
* @throws {RequiredError}
|
|
@@ -47177,7 +47566,7 @@ export declare class IdentityHistoryBetaApi extends BaseAPI {
|
|
|
47177
47566
|
* @throws {RequiredError}
|
|
47178
47567
|
* @memberof IdentityHistoryBetaApi
|
|
47179
47568
|
*/
|
|
47180
|
-
listIdentitySnapshotAccessItems(requestParameters: IdentityHistoryBetaApiListIdentitySnapshotAccessItemsRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
47569
|
+
listIdentitySnapshotAccessItems(requestParameters: IdentityHistoryBetaApiListIdentitySnapshotAccessItemsRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ListIdentitySnapshotAccessItems200ResponseInnerBeta[], any>>;
|
|
47181
47570
|
/**
|
|
47182
47571
|
* This method retrieves all the snapshots for the identity Requires authorization scope of \'idn:identity-history:read\'
|
|
47183
47572
|
* @summary Lists all the snapshots for the identity
|
|
@@ -47207,6 +47596,17 @@ export declare const GetIdentitySnapshotSummaryIntervalBeta: {
|
|
|
47207
47596
|
readonly Month: "month";
|
|
47208
47597
|
};
|
|
47209
47598
|
export type GetIdentitySnapshotSummaryIntervalBeta = typeof GetIdentitySnapshotSummaryIntervalBeta[keyof typeof GetIdentitySnapshotSummaryIntervalBeta];
|
|
47599
|
+
/**
|
|
47600
|
+
* @export
|
|
47601
|
+
*/
|
|
47602
|
+
export declare const ListIdentityAccessItemsTypeBeta: {
|
|
47603
|
+
readonly Account: "account";
|
|
47604
|
+
readonly Entitlement: "entitlement";
|
|
47605
|
+
readonly App: "app";
|
|
47606
|
+
readonly AccessProfile: "accessProfile";
|
|
47607
|
+
readonly Role: "role";
|
|
47608
|
+
};
|
|
47609
|
+
export type ListIdentityAccessItemsTypeBeta = typeof ListIdentityAccessItemsTypeBeta[keyof typeof ListIdentityAccessItemsTypeBeta];
|
|
47210
47610
|
/**
|
|
47211
47611
|
* @export
|
|
47212
47612
|
*/
|
|
@@ -54503,7 +54903,7 @@ export declare class PublicIdentitiesConfigBetaApi extends BaseAPI {
|
|
|
54503
54903
|
*/
|
|
54504
54904
|
export declare const RequestableObjectsBetaApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
54505
54905
|
/**
|
|
54506
|
-
* Get a list of acccess items that can be requested through the [Access Request endpoints](https://developer.sailpoint.com/docs/api/v3/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.
|
|
54906
|
+
* Get a list of acccess items that can be requested through the [Access Request endpoints](https://developer.sailpoint.com/docs/api/v3/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.
|
|
54507
54907
|
* @summary Requestable objects list
|
|
54508
54908
|
* @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.
|
|
54509
54909
|
* @param {Array<ListRequestableObjectsTypesBeta>} [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.
|
|
@@ -54525,7 +54925,7 @@ export declare const RequestableObjectsBetaApiAxiosParamCreator: (configuration?
|
|
|
54525
54925
|
*/
|
|
54526
54926
|
export declare const RequestableObjectsBetaApiFp: (configuration?: Configuration) => {
|
|
54527
54927
|
/**
|
|
54528
|
-
* Get a list of acccess items that can be requested through the [Access Request endpoints](https://developer.sailpoint.com/docs/api/v3/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.
|
|
54928
|
+
* Get a list of acccess items that can be requested through the [Access Request endpoints](https://developer.sailpoint.com/docs/api/v3/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.
|
|
54529
54929
|
* @summary Requestable objects list
|
|
54530
54930
|
* @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.
|
|
54531
54931
|
* @param {Array<ListRequestableObjectsTypesBeta>} [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.
|
|
@@ -54547,7 +54947,7 @@ export declare const RequestableObjectsBetaApiFp: (configuration?: Configuration
|
|
|
54547
54947
|
*/
|
|
54548
54948
|
export declare const RequestableObjectsBetaApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
54549
54949
|
/**
|
|
54550
|
-
* Get a list of acccess items that can be requested through the [Access Request endpoints](https://developer.sailpoint.com/docs/api/v3/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.
|
|
54950
|
+
* Get a list of acccess items that can be requested through the [Access Request endpoints](https://developer.sailpoint.com/docs/api/v3/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.
|
|
54551
54951
|
* @summary Requestable objects list
|
|
54552
54952
|
* @param {RequestableObjectsBetaApiListRequestableObjectsRequest} requestParameters Request parameters.
|
|
54553
54953
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -54624,7 +55024,7 @@ export interface RequestableObjectsBetaApiListRequestableObjectsRequest {
|
|
|
54624
55024
|
*/
|
|
54625
55025
|
export declare class RequestableObjectsBetaApi extends BaseAPI {
|
|
54626
55026
|
/**
|
|
54627
|
-
* Get a list of acccess items that can be requested through the [Access Request endpoints](https://developer.sailpoint.com/docs/api/v3/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.
|
|
55027
|
+
* Get a list of acccess items that can be requested through the [Access Request endpoints](https://developer.sailpoint.com/docs/api/v3/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.
|
|
54628
55028
|
* @summary Requestable objects list
|
|
54629
55029
|
* @param {RequestableObjectsBetaApiListRequestableObjectsRequest} requestParameters Request parameters.
|
|
54630
55030
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -65004,12 +65404,11 @@ export declare const WorkflowsBetaApiAxiosParamCreator: (configuration?: Configu
|
|
|
65004
65404
|
* @param {string} id Workflow ID.
|
|
65005
65405
|
* @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.
|
|
65006
65406
|
* @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.
|
|
65007
|
-
* @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.
|
|
65008
65407
|
* @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: **startTime**: *eq, lt, le, gt, ge* **status**: *eq*
|
|
65009
65408
|
* @param {*} [axiosOptions] Override http request option.
|
|
65010
65409
|
* @throws {RequiredError}
|
|
65011
65410
|
*/
|
|
65012
|
-
getWorkflowExecutions: (id: string, limit?: number, offset?: number,
|
|
65411
|
+
getWorkflowExecutions: (id: string, limit?: number, offset?: number, filters?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
65013
65412
|
/**
|
|
65014
65413
|
* This lists all triggers, actions, and operators in the library
|
|
65015
65414
|
* @summary List complete workflow library
|
|
@@ -65171,12 +65570,11 @@ export declare const WorkflowsBetaApiFp: (configuration?: Configuration) => {
|
|
|
65171
65570
|
* @param {string} id Workflow ID.
|
|
65172
65571
|
* @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.
|
|
65173
65572
|
* @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.
|
|
65174
|
-
* @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.
|
|
65175
65573
|
* @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: **startTime**: *eq, lt, le, gt, ge* **status**: *eq*
|
|
65176
65574
|
* @param {*} [axiosOptions] Override http request option.
|
|
65177
65575
|
* @throws {RequiredError}
|
|
65178
65576
|
*/
|
|
65179
|
-
getWorkflowExecutions(id: string, limit?: number, offset?: number,
|
|
65577
|
+
getWorkflowExecutions(id: string, limit?: number, offset?: number, filters?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<WorkflowExecutionBeta>>>;
|
|
65180
65578
|
/**
|
|
65181
65579
|
* This lists all triggers, actions, and operators in the library
|
|
65182
65580
|
* @summary List complete workflow library
|
|
@@ -65535,12 +65933,6 @@ export interface WorkflowsBetaApiGetWorkflowExecutionsRequest {
|
|
|
65535
65933
|
* @memberof WorkflowsBetaApiGetWorkflowExecutions
|
|
65536
65934
|
*/
|
|
65537
65935
|
readonly offset?: number;
|
|
65538
|
-
/**
|
|
65539
|
-
* 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.
|
|
65540
|
-
* @type {boolean}
|
|
65541
|
-
* @memberof WorkflowsBetaApiGetWorkflowExecutions
|
|
65542
|
-
*/
|
|
65543
|
-
readonly count?: boolean;
|
|
65544
65936
|
/**
|
|
65545
65937
|
* 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: **startTime**: *eq, lt, le, gt, ge* **status**: *eq*
|
|
65546
65938
|
* @type {string}
|