sailpoint-api-client 1.6.5 → 1.6.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/beta/README.md +2 -2
- package/beta/api.ts +1060 -453
- package/beta/common.ts +2 -2
- package/beta/package.json +1 -1
- package/dist/beta/api.d.ts +914 -363
- package/dist/beta/api.js +464 -256
- 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 +915 -713
- package/dist/v2024/api.js +318 -503
- package/dist/v2024/api.js.map +1 -1
- package/dist/v2024/common.js +1 -1
- package/dist/v2025/api.d.ts +2060 -538
- package/dist/v2025/api.js +1793 -687
- package/dist/v2025/api.js.map +1 -1
- package/dist/v2025/common.js +1 -1
- package/dist/v3/api.d.ts +64 -20
- package/dist/v3/api.js +20 -23
- 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 +1178 -1189
- package/v2024/common.ts +2 -2
- package/v2024/package.json +1 -1
- package/v2025/README.md +2 -2
- package/v2025/api.ts +2893 -934
- package/v2025/common.ts +2 -2
- package/v2025/package.json +1 -1
- package/v3/README.md +2 -2
- package/v3/api.ts +71 -29
- 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}
|
|
@@ -8095,6 +8246,12 @@ export type CorrelatedGovernanceEventBetaTypeBeta = typeof CorrelatedGovernanceE
|
|
|
8095
8246
|
* @interface CorrelationConfigAttributeAssignmentsInnerBeta
|
|
8096
8247
|
*/
|
|
8097
8248
|
export interface CorrelationConfigAttributeAssignmentsInnerBeta {
|
|
8249
|
+
/**
|
|
8250
|
+
* The sequence of the attribute assignment.
|
|
8251
|
+
* @type {number}
|
|
8252
|
+
* @memberof CorrelationConfigAttributeAssignmentsInnerBeta
|
|
8253
|
+
*/
|
|
8254
|
+
'sequence'?: number;
|
|
8098
8255
|
/**
|
|
8099
8256
|
* The property of the attribute assignment.
|
|
8100
8257
|
* @type {string}
|
|
@@ -8566,7 +8723,13 @@ export interface CreatePersonalAccessTokenRequestBeta {
|
|
|
8566
8723
|
* @type {number}
|
|
8567
8724
|
* @memberof CreatePersonalAccessTokenRequestBeta
|
|
8568
8725
|
*/
|
|
8569
|
-
'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;
|
|
8570
8733
|
}
|
|
8571
8734
|
/**
|
|
8572
8735
|
*
|
|
@@ -8616,6 +8779,12 @@ export interface CreatePersonalAccessTokenResponseBeta {
|
|
|
8616
8779
|
* @memberof CreatePersonalAccessTokenResponseBeta
|
|
8617
8780
|
*/
|
|
8618
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;
|
|
8619
8788
|
}
|
|
8620
8789
|
/**
|
|
8621
8790
|
*
|
|
@@ -9392,7 +9561,7 @@ export interface EntitlementBeta {
|
|
|
9392
9561
|
'accessModelMetadata'?: EntitlementAccessModelMetadataBeta;
|
|
9393
9562
|
}
|
|
9394
9563
|
/**
|
|
9395
|
-
*
|
|
9564
|
+
* Object for specifying the bulk update request
|
|
9396
9565
|
* @export
|
|
9397
9566
|
* @interface EntitlementBulkUpdateRequestBeta
|
|
9398
9567
|
*/
|
|
@@ -9404,7 +9573,7 @@ export interface EntitlementBulkUpdateRequestBeta {
|
|
|
9404
9573
|
*/
|
|
9405
9574
|
'entitlementIds': Array<string>;
|
|
9406
9575
|
/**
|
|
9407
|
-
*
|
|
9576
|
+
* List of entitlement ids to update
|
|
9408
9577
|
* @type {Array<JsonPatchOperationBeta>}
|
|
9409
9578
|
* @memberof EntitlementBulkUpdateRequestBeta
|
|
9410
9579
|
*/
|
|
@@ -11266,7 +11435,6 @@ export interface FullcampaignAllOfFilterBeta {
|
|
|
11266
11435
|
}
|
|
11267
11436
|
export declare const FullcampaignAllOfFilterBetaTypeBeta: {
|
|
11268
11437
|
readonly CampaignFilter: "CAMPAIGN_FILTER";
|
|
11269
|
-
readonly Rule: "RULE";
|
|
11270
11438
|
};
|
|
11271
11439
|
export type FullcampaignAllOfFilterBetaTypeBeta = typeof FullcampaignAllOfFilterBetaTypeBeta[keyof typeof FullcampaignAllOfFilterBetaTypeBeta];
|
|
11272
11440
|
/**
|
|
@@ -11916,96 +12084,110 @@ export interface GetFormDefinitionByKey400ResponseBeta {
|
|
|
11916
12084
|
*/
|
|
11917
12085
|
export interface GetHistoricalIdentityEvents200ResponseInnerBeta {
|
|
11918
12086
|
/**
|
|
11919
|
-
*
|
|
11920
|
-
* @type {
|
|
12087
|
+
* the id of the certification item
|
|
12088
|
+
* @type {string}
|
|
11921
12089
|
* @memberof GetHistoricalIdentityEvents200ResponseInnerBeta
|
|
11922
12090
|
*/
|
|
11923
|
-
'
|
|
12091
|
+
'certificationId': string;
|
|
11924
12092
|
/**
|
|
11925
|
-
* the
|
|
12093
|
+
* the certification item name
|
|
11926
12094
|
* @type {string}
|
|
11927
12095
|
* @memberof GetHistoricalIdentityEvents200ResponseInnerBeta
|
|
11928
12096
|
*/
|
|
11929
|
-
'
|
|
12097
|
+
'certificationName': string;
|
|
11930
12098
|
/**
|
|
11931
|
-
* the
|
|
12099
|
+
* the date ceritification was signed
|
|
11932
12100
|
* @type {string}
|
|
11933
12101
|
* @memberof GetHistoricalIdentityEvents200ResponseInnerBeta
|
|
11934
12102
|
*/
|
|
11935
|
-
'
|
|
12103
|
+
'signedDate'?: string;
|
|
11936
12104
|
/**
|
|
11937
|
-
*
|
|
11938
|
-
* @type {
|
|
12105
|
+
* this field is deprecated and may go away
|
|
12106
|
+
* @type {Array<CertifierResponseBeta>}
|
|
11939
12107
|
* @memberof GetHistoricalIdentityEvents200ResponseInnerBeta
|
|
11940
12108
|
*/
|
|
11941
|
-
'
|
|
12109
|
+
'certifiers'?: Array<CertifierResponseBeta>;
|
|
11942
12110
|
/**
|
|
11943
|
-
*
|
|
11944
|
-
* @type {
|
|
12111
|
+
* The list of identities who review this certification
|
|
12112
|
+
* @type {Array<CertifierResponseBeta>}
|
|
11945
12113
|
* @memberof GetHistoricalIdentityEvents200ResponseInnerBeta
|
|
11946
12114
|
*/
|
|
11947
|
-
'
|
|
12115
|
+
'reviewers'?: Array<CertifierResponseBeta>;
|
|
11948
12116
|
/**
|
|
11949
12117
|
*
|
|
11950
|
-
* @type {
|
|
12118
|
+
* @type {CertifierResponseBeta}
|
|
11951
12119
|
* @memberof GetHistoricalIdentityEvents200ResponseInnerBeta
|
|
11952
12120
|
*/
|
|
11953
|
-
'
|
|
12121
|
+
'signer'?: CertifierResponseBeta;
|
|
11954
12122
|
/**
|
|
11955
|
-
*
|
|
11956
|
-
* @type {
|
|
12123
|
+
* the event type
|
|
12124
|
+
* @type {string}
|
|
11957
12125
|
* @memberof GetHistoricalIdentityEvents200ResponseInnerBeta
|
|
11958
12126
|
*/
|
|
11959
|
-
'
|
|
12127
|
+
'eventType'?: string;
|
|
11960
12128
|
/**
|
|
11961
|
-
* the
|
|
12129
|
+
* the date of event
|
|
11962
12130
|
* @type {string}
|
|
11963
12131
|
* @memberof GetHistoricalIdentityEvents200ResponseInnerBeta
|
|
11964
12132
|
*/
|
|
11965
|
-
'
|
|
12133
|
+
'dateTime'?: string;
|
|
11966
12134
|
/**
|
|
11967
|
-
* the
|
|
12135
|
+
* the identity id
|
|
11968
12136
|
* @type {string}
|
|
11969
12137
|
* @memberof GetHistoricalIdentityEvents200ResponseInnerBeta
|
|
11970
12138
|
*/
|
|
11971
|
-
'
|
|
12139
|
+
'identityId'?: string;
|
|
11972
12140
|
/**
|
|
11973
|
-
*
|
|
11974
|
-
* @type {
|
|
12141
|
+
*
|
|
12142
|
+
* @type {AccessItemAssociatedAccessItemBeta}
|
|
11975
12143
|
* @memberof GetHistoricalIdentityEvents200ResponseInnerBeta
|
|
11976
12144
|
*/
|
|
11977
|
-
'
|
|
12145
|
+
'accessItem': AccessItemAssociatedAccessItemBeta;
|
|
11978
12146
|
/**
|
|
11979
|
-
*
|
|
11980
|
-
* @type {
|
|
12147
|
+
*
|
|
12148
|
+
* @type {CorrelatedGovernanceEventBeta}
|
|
11981
12149
|
* @memberof GetHistoricalIdentityEvents200ResponseInnerBeta
|
|
11982
12150
|
*/
|
|
11983
|
-
'
|
|
12151
|
+
'governanceEvent': CorrelatedGovernanceEventBeta | null;
|
|
11984
12152
|
/**
|
|
11985
|
-
*
|
|
11986
|
-
* @type {
|
|
12153
|
+
* the access item type
|
|
12154
|
+
* @type {string}
|
|
11987
12155
|
* @memberof GetHistoricalIdentityEvents200ResponseInnerBeta
|
|
11988
12156
|
*/
|
|
11989
|
-
'
|
|
12157
|
+
'accessItemType'?: GetHistoricalIdentityEvents200ResponseInnerBetaAccessItemTypeBeta;
|
|
11990
12158
|
/**
|
|
11991
12159
|
*
|
|
11992
|
-
* @type {
|
|
12160
|
+
* @type {Array<AttributeChangeBeta>}
|
|
11993
12161
|
* @memberof GetHistoricalIdentityEvents200ResponseInnerBeta
|
|
11994
12162
|
*/
|
|
11995
|
-
'
|
|
12163
|
+
'attributeChanges': Array<AttributeChangeBeta>;
|
|
12164
|
+
/**
|
|
12165
|
+
*
|
|
12166
|
+
* @type {AccessRequestResponse1Beta}
|
|
12167
|
+
* @memberof GetHistoricalIdentityEvents200ResponseInnerBeta
|
|
12168
|
+
*/
|
|
12169
|
+
'accessRequest': AccessRequestResponse1Beta;
|
|
11996
12170
|
/**
|
|
11997
12171
|
*
|
|
11998
12172
|
* @type {AccountStatusChangedAccountBeta}
|
|
11999
12173
|
* @memberof GetHistoricalIdentityEvents200ResponseInnerBeta
|
|
12000
12174
|
*/
|
|
12001
|
-
'account'
|
|
12175
|
+
'account': AccountStatusChangedAccountBeta;
|
|
12002
12176
|
/**
|
|
12003
12177
|
*
|
|
12004
12178
|
* @type {AccountStatusChangedStatusChangeBeta}
|
|
12005
12179
|
* @memberof GetHistoricalIdentityEvents200ResponseInnerBeta
|
|
12006
12180
|
*/
|
|
12007
|
-
'statusChange'
|
|
12181
|
+
'statusChange': AccountStatusChangedStatusChangeBeta;
|
|
12008
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];
|
|
12009
12191
|
/**
|
|
12010
12192
|
*
|
|
12011
12193
|
* @export
|
|
@@ -12206,6 +12388,18 @@ export interface GetPersonalAccessTokenResponseBeta {
|
|
|
12206
12388
|
* @memberof GetPersonalAccessTokenResponseBeta
|
|
12207
12389
|
*/
|
|
12208
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;
|
|
12209
12403
|
}
|
|
12210
12404
|
/**
|
|
12211
12405
|
*
|
|
@@ -12924,13 +13118,13 @@ export interface IdentityCertifiedBeta {
|
|
|
12924
13118
|
* @type {string}
|
|
12925
13119
|
* @memberof IdentityCertifiedBeta
|
|
12926
13120
|
*/
|
|
12927
|
-
'certificationId'
|
|
13121
|
+
'certificationId': string;
|
|
12928
13122
|
/**
|
|
12929
13123
|
* the certification item name
|
|
12930
13124
|
* @type {string}
|
|
12931
13125
|
* @memberof IdentityCertifiedBeta
|
|
12932
13126
|
*/
|
|
12933
|
-
'certificationName'
|
|
13127
|
+
'certificationName': string;
|
|
12934
13128
|
/**
|
|
12935
13129
|
* the date ceritification was signed
|
|
12936
13130
|
* @type {string}
|
|
@@ -12966,7 +13160,7 @@ export interface IdentityCertifiedBeta {
|
|
|
12966
13160
|
* @type {string}
|
|
12967
13161
|
* @memberof IdentityCertifiedBeta
|
|
12968
13162
|
*/
|
|
12969
|
-
'
|
|
13163
|
+
'dateTime'?: string;
|
|
12970
13164
|
}
|
|
12971
13165
|
/**
|
|
12972
13166
|
*
|
|
@@ -15049,10 +15243,125 @@ export interface ListFormElementDataByElementIDResponseBeta {
|
|
|
15049
15243
|
'results'?: Array<FormElementDataSourceConfigOptionsBeta>;
|
|
15050
15244
|
}
|
|
15051
15245
|
/**
|
|
15052
|
-
*
|
|
15246
|
+
*
|
|
15247
|
+
* @export
|
|
15248
|
+
* @interface ListIdentityAccessItems200ResponseInnerBeta
|
|
15249
|
+
*/
|
|
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
|
|
15053
15362
|
* @export
|
|
15054
15363
|
*/
|
|
15055
|
-
export type
|
|
15364
|
+
export type ListIdentitySnapshotAccessItems200ResponseInnerBeta = AccessItemAccessProfileResponseBeta | AccessItemAccountResponseBeta | AccessItemAppResponseBeta | AccessItemEntitlementResponseBeta | AccessItemRoleResponseBeta;
|
|
15056
15365
|
/**
|
|
15057
15366
|
*
|
|
15058
15367
|
* @export
|
|
@@ -17875,7 +18184,7 @@ export interface NonEmployeeBulkUploadStatusBeta {
|
|
|
17875
18184
|
* @type {string}
|
|
17876
18185
|
* @memberof NonEmployeeBulkUploadStatusBeta
|
|
17877
18186
|
*/
|
|
17878
|
-
'status'?: NonEmployeeBulkUploadStatusBetaStatusBeta;
|
|
18187
|
+
'status'?: NonEmployeeBulkUploadStatusBetaStatusBeta | null;
|
|
17879
18188
|
}
|
|
17880
18189
|
export declare const NonEmployeeBulkUploadStatusBetaStatusBeta: {
|
|
17881
18190
|
readonly Pending: "PENDING";
|
|
@@ -18409,13 +18718,13 @@ export interface NonEmployeeSchemaAttributeBeta {
|
|
|
18409
18718
|
* @type {string}
|
|
18410
18719
|
* @memberof NonEmployeeSchemaAttributeBeta
|
|
18411
18720
|
*/
|
|
18412
|
-
'helpText'?: string;
|
|
18721
|
+
'helpText'?: string | null;
|
|
18413
18722
|
/**
|
|
18414
18723
|
* Hint text that fills UI box.
|
|
18415
18724
|
* @type {string}
|
|
18416
18725
|
* @memberof NonEmployeeSchemaAttributeBeta
|
|
18417
18726
|
*/
|
|
18418
|
-
'placeholder'?: string;
|
|
18727
|
+
'placeholder'?: string | null;
|
|
18419
18728
|
/**
|
|
18420
18729
|
* If true, the schema attribute is required for all non-employees in the source
|
|
18421
18730
|
* @type {boolean}
|
|
@@ -18475,6 +18784,8 @@ export declare const NonEmployeeSchemaAttributeTypeBeta: {
|
|
|
18475
18784
|
readonly Text: "TEXT";
|
|
18476
18785
|
readonly Date: "DATE";
|
|
18477
18786
|
readonly Identity: "IDENTITY";
|
|
18787
|
+
readonly Phone: "PHONE";
|
|
18788
|
+
readonly Email: "EMAIL";
|
|
18478
18789
|
};
|
|
18479
18790
|
export type NonEmployeeSchemaAttributeTypeBeta = typeof NonEmployeeSchemaAttributeTypeBeta[keyof typeof NonEmployeeSchemaAttributeTypeBeta];
|
|
18480
18791
|
/**
|
|
@@ -26494,6 +26805,35 @@ export interface SodPolicyConflictingAccessCriteriaBeta {
|
|
|
26494
26805
|
*/
|
|
26495
26806
|
'rightCriteria'?: AccessCriteriaBeta;
|
|
26496
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];
|
|
26497
26837
|
/**
|
|
26498
26838
|
* SOD policy.
|
|
26499
26839
|
* @export
|
|
@@ -26700,10 +27040,10 @@ export interface SodViolationCheckResult1Beta {
|
|
|
26700
27040
|
'violationContexts'?: Array<SodViolationContext1Beta>;
|
|
26701
27041
|
/**
|
|
26702
27042
|
* A list of the Policies that were violated.
|
|
26703
|
-
* @type {Array<
|
|
27043
|
+
* @type {Array<SodPolicyDto1Beta>}
|
|
26704
27044
|
* @memberof SodViolationCheckResult1Beta
|
|
26705
27045
|
*/
|
|
26706
|
-
'violatedPolicies'?: Array<
|
|
27046
|
+
'violatedPolicies'?: Array<SodPolicyDto1Beta>;
|
|
26707
27047
|
}
|
|
26708
27048
|
/**
|
|
26709
27049
|
* The inner object representing the completed SOD Violation check
|
|
@@ -26733,10 +27073,10 @@ export interface SodViolationCheckResultBeta {
|
|
|
26733
27073
|
'violationContexts'?: Array<SodViolationContextBeta> | null;
|
|
26734
27074
|
/**
|
|
26735
27075
|
* A list of the SOD policies that were violated.
|
|
26736
|
-
* @type {Array<
|
|
27076
|
+
* @type {Array<SodPolicyDto1Beta>}
|
|
26737
27077
|
* @memberof SodViolationCheckResultBeta
|
|
26738
27078
|
*/
|
|
26739
|
-
'violatedPolicies'?: Array<
|
|
27079
|
+
'violatedPolicies'?: Array<SodPolicyDto1Beta> | null;
|
|
26740
27080
|
}
|
|
26741
27081
|
/**
|
|
26742
27082
|
* The contextual information of the violated criteria.
|
|
@@ -26746,10 +27086,10 @@ export interface SodViolationCheckResultBeta {
|
|
|
26746
27086
|
export interface SodViolationContext1Beta {
|
|
26747
27087
|
/**
|
|
26748
27088
|
*
|
|
26749
|
-
* @type {
|
|
27089
|
+
* @type {SodPolicyDto1Beta}
|
|
26750
27090
|
* @memberof SodViolationContext1Beta
|
|
26751
27091
|
*/
|
|
26752
|
-
'policy'?:
|
|
27092
|
+
'policy'?: SodPolicyDto1Beta;
|
|
26753
27093
|
/**
|
|
26754
27094
|
*
|
|
26755
27095
|
* @type {SodViolationContext1ConflictingAccessCriteriaBeta}
|
|
@@ -26797,10 +27137,10 @@ export interface SodViolationContext1ConflictingAccessCriteriaLeftCriteriaBeta {
|
|
|
26797
27137
|
export interface SodViolationContextBeta {
|
|
26798
27138
|
/**
|
|
26799
27139
|
*
|
|
26800
|
-
* @type {
|
|
27140
|
+
* @type {SodPolicyDto1Beta}
|
|
26801
27141
|
* @memberof SodViolationContextBeta
|
|
26802
27142
|
*/
|
|
26803
|
-
'policy'?:
|
|
27143
|
+
'policy'?: SodPolicyDto1Beta;
|
|
26804
27144
|
/**
|
|
26805
27145
|
*
|
|
26806
27146
|
* @type {SodViolationContextConflictingAccessCriteriaBeta}
|
|
@@ -32669,19 +33009,26 @@ export declare const AccessModelMetadataBetaApiAxiosParamCreator: (configuration
|
|
|
32669
33009
|
/**
|
|
32670
33010
|
* Get a list of Access Model Metadata Attributes
|
|
32671
33011
|
* @summary List access model metadata attributes
|
|
32672
|
-
* @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.
|
|
32673
33017
|
* @param {*} [axiosOptions] Override http request option.
|
|
32674
33018
|
* @throws {RequiredError}
|
|
32675
33019
|
*/
|
|
32676
|
-
listAccessModelMetadataAttribute: (filters?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
33020
|
+
listAccessModelMetadataAttribute: (filters?: string, sorters?: string, offset?: number, limit?: number, count?: boolean, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
32677
33021
|
/**
|
|
32678
33022
|
* Get a list of Access Model Metadata Attribute Values
|
|
32679
33023
|
* @summary List access model metadata values
|
|
32680
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.
|
|
32681
33028
|
* @param {*} [axiosOptions] Override http request option.
|
|
32682
33029
|
* @throws {RequiredError}
|
|
32683
33030
|
*/
|
|
32684
|
-
listAccessModelMetadataAttributeValue: (key: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
33031
|
+
listAccessModelMetadataAttributeValue: (key: string, offset?: number, limit?: number, count?: boolean, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
32685
33032
|
};
|
|
32686
33033
|
/**
|
|
32687
33034
|
* AccessModelMetadataBetaApi - functional programming interface
|
|
@@ -32708,19 +33055,26 @@ export declare const AccessModelMetadataBetaApiFp: (configuration?: Configuratio
|
|
|
32708
33055
|
/**
|
|
32709
33056
|
* Get a list of Access Model Metadata Attributes
|
|
32710
33057
|
* @summary List access model metadata attributes
|
|
32711
|
-
* @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.
|
|
32712
33063
|
* @param {*} [axiosOptions] Override http request option.
|
|
32713
33064
|
* @throws {RequiredError}
|
|
32714
33065
|
*/
|
|
32715
|
-
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>>>;
|
|
32716
33067
|
/**
|
|
32717
33068
|
* Get a list of Access Model Metadata Attribute Values
|
|
32718
33069
|
* @summary List access model metadata values
|
|
32719
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.
|
|
32720
33074
|
* @param {*} [axiosOptions] Override http request option.
|
|
32721
33075
|
* @throws {RequiredError}
|
|
32722
33076
|
*/
|
|
32723
|
-
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>>>;
|
|
32724
33078
|
};
|
|
32725
33079
|
/**
|
|
32726
33080
|
* AccessModelMetadataBetaApi - factory interface
|
|
@@ -32799,11 +33153,35 @@ export interface AccessModelMetadataBetaApiGetAccessModelMetadataAttributeValueR
|
|
|
32799
33153
|
*/
|
|
32800
33154
|
export interface AccessModelMetadataBetaApiListAccessModelMetadataAttributeRequest {
|
|
32801
33155
|
/**
|
|
32802
|
-
* 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*
|
|
32803
33157
|
* @type {string}
|
|
32804
33158
|
* @memberof AccessModelMetadataBetaApiListAccessModelMetadataAttribute
|
|
32805
33159
|
*/
|
|
32806
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;
|
|
32807
33185
|
}
|
|
32808
33186
|
/**
|
|
32809
33187
|
* Request parameters for listAccessModelMetadataAttributeValue operation in AccessModelMetadataBetaApi.
|
|
@@ -32817,6 +33195,24 @@ export interface AccessModelMetadataBetaApiListAccessModelMetadataAttributeValue
|
|
|
32817
33195
|
* @memberof AccessModelMetadataBetaApiListAccessModelMetadataAttributeValue
|
|
32818
33196
|
*/
|
|
32819
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;
|
|
32820
33216
|
}
|
|
32821
33217
|
/**
|
|
32822
33218
|
* AccessModelMetadataBetaApi - object-oriented interface
|
|
@@ -40434,7 +40830,7 @@ export declare const EntitlementsBetaApiAxiosParamCreator: (configuration?: Conf
|
|
|
40434
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.
|
|
40435
40831
|
* @summary Gets a list of entitlements.
|
|
40436
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.
|
|
40437
|
-
* @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.
|
|
40438
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).
|
|
40439
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.
|
|
40440
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.
|
|
@@ -40447,7 +40843,7 @@ export declare const EntitlementsBetaApiAxiosParamCreator: (configuration?: Conf
|
|
|
40447
40843
|
*/
|
|
40448
40844
|
listEntitlements: (accountId?: string, segmentedForIdentity?: string, forSegmentIds?: string, includeUnsegmented?: boolean, offset?: number, limit?: number, count?: boolean, sorters?: string, filters?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
40449
40845
|
/**
|
|
40450
|
-
* 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.
|
|
40451
40847
|
* @summary Patch an entitlement
|
|
40452
40848
|
* @param {string} id ID of the entitlement to patch
|
|
40453
40849
|
* @param {Array<JsonPatchOperationBeta>} [jsonPatchOperationBeta]
|
|
@@ -40473,7 +40869,7 @@ export declare const EntitlementsBetaApiAxiosParamCreator: (configuration?: Conf
|
|
|
40473
40869
|
*/
|
|
40474
40870
|
resetSourceEntitlements: (sourceId: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
40475
40871
|
/**
|
|
40476
|
-
* 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.
|
|
40477
40873
|
* @summary Bulk update an entitlement list
|
|
40478
40874
|
* @param {EntitlementBulkUpdateRequestBeta} entitlementBulkUpdateRequestBeta
|
|
40479
40875
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -40562,7 +40958,7 @@ export declare const EntitlementsBetaApiFp: (configuration?: Configuration) => {
|
|
|
40562
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.
|
|
40563
40959
|
* @summary Gets a list of entitlements.
|
|
40564
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.
|
|
40565
|
-
* @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.
|
|
40566
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).
|
|
40567
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.
|
|
40568
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.
|
|
@@ -40575,7 +40971,7 @@ export declare const EntitlementsBetaApiFp: (configuration?: Configuration) => {
|
|
|
40575
40971
|
*/
|
|
40576
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>>>;
|
|
40577
40973
|
/**
|
|
40578
|
-
* 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.
|
|
40579
40975
|
* @summary Patch an entitlement
|
|
40580
40976
|
* @param {string} id ID of the entitlement to patch
|
|
40581
40977
|
* @param {Array<JsonPatchOperationBeta>} [jsonPatchOperationBeta]
|
|
@@ -40601,7 +40997,7 @@ export declare const EntitlementsBetaApiFp: (configuration?: Configuration) => {
|
|
|
40601
40997
|
*/
|
|
40602
40998
|
resetSourceEntitlements(sourceId: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EntitlementSourceResetBaseReferenceDtoBeta>>;
|
|
40603
40999
|
/**
|
|
40604
|
-
* 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.
|
|
40605
41001
|
* @summary Bulk update an entitlement list
|
|
40606
41002
|
* @param {EntitlementBulkUpdateRequestBeta} entitlementBulkUpdateRequestBeta
|
|
40607
41003
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -40680,7 +41076,7 @@ export declare const EntitlementsBetaApiFactory: (configuration?: Configuration,
|
|
|
40680
41076
|
*/
|
|
40681
41077
|
listEntitlements(requestParameters?: EntitlementsBetaApiListEntitlementsRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<EntitlementBeta>>;
|
|
40682
41078
|
/**
|
|
40683
|
-
* 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.
|
|
40684
41080
|
* @summary Patch an entitlement
|
|
40685
41081
|
* @param {EntitlementsBetaApiPatchEntitlementRequest} requestParameters Request parameters.
|
|
40686
41082
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -40704,7 +41100,7 @@ export declare const EntitlementsBetaApiFactory: (configuration?: Configuration,
|
|
|
40704
41100
|
*/
|
|
40705
41101
|
resetSourceEntitlements(requestParameters: EntitlementsBetaApiResetSourceEntitlementsRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<EntitlementSourceResetBaseReferenceDtoBeta>;
|
|
40706
41102
|
/**
|
|
40707
|
-
* 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.
|
|
40708
41104
|
* @summary Bulk update an entitlement list
|
|
40709
41105
|
* @param {EntitlementsBetaApiUpdateEntitlementsInBulkRequest} requestParameters Request parameters.
|
|
40710
41106
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -40906,7 +41302,7 @@ export interface EntitlementsBetaApiListEntitlementsRequest {
|
|
|
40906
41302
|
*/
|
|
40907
41303
|
readonly accountId?: string;
|
|
40908
41304
|
/**
|
|
40909
|
-
* 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.
|
|
40910
41306
|
* @type {string}
|
|
40911
41307
|
* @memberof EntitlementsBetaApiListEntitlements
|
|
40912
41308
|
*/
|
|
@@ -41099,7 +41495,7 @@ export declare class EntitlementsBetaApi extends BaseAPI {
|
|
|
41099
41495
|
*/
|
|
41100
41496
|
listEntitlements(requestParameters?: EntitlementsBetaApiListEntitlementsRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<EntitlementBeta[], any>>;
|
|
41101
41497
|
/**
|
|
41102
|
-
* 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.
|
|
41103
41499
|
* @summary Patch an entitlement
|
|
41104
41500
|
* @param {EntitlementsBetaApiPatchEntitlementRequest} requestParameters Request parameters.
|
|
41105
41501
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -41126,7 +41522,7 @@ export declare class EntitlementsBetaApi extends BaseAPI {
|
|
|
41126
41522
|
*/
|
|
41127
41523
|
resetSourceEntitlements(requestParameters: EntitlementsBetaApiResetSourceEntitlementsRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<EntitlementSourceResetBaseReferenceDtoBeta, any>>;
|
|
41128
41524
|
/**
|
|
41129
|
-
* 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.
|
|
41130
41526
|
* @summary Bulk update an entitlement list
|
|
41131
41527
|
* @param {EntitlementsBetaApiUpdateEntitlementsInBulkRequest} requestParameters Request parameters.
|
|
41132
41528
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -46341,7 +46737,7 @@ export declare const IdentityHistoryBetaApiAxiosParamCreator: (configuration?: C
|
|
|
46341
46737
|
getHistoricalIdentity: (id: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
46342
46738
|
/**
|
|
46343
46739
|
* This method retrieves all access events for the identity Requires authorization scope of \'idn:identity-history:read\'
|
|
46344
|
-
* @summary
|
|
46740
|
+
* @summary List identity event history
|
|
46345
46741
|
* @param {string} id The identity id
|
|
46346
46742
|
* @param {string} [from] The optional instant until which access events are returned
|
|
46347
46743
|
* @param {Array<string>} [eventTypes] An optional list of event types to return. If null or empty, all events are returned
|
|
@@ -46400,7 +46796,7 @@ export declare const IdentityHistoryBetaApiAxiosParamCreator: (configuration?: C
|
|
|
46400
46796
|
* This method retrieves a list of access item for the identity filtered by the access item type
|
|
46401
46797
|
* @summary List access items by identity
|
|
46402
46798
|
* @param {string} id The identity id
|
|
46403
|
-
* @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**
|
|
46404
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*
|
|
46405
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**
|
|
46406
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**
|
|
@@ -46410,7 +46806,7 @@ export declare const IdentityHistoryBetaApiAxiosParamCreator: (configuration?: C
|
|
|
46410
46806
|
* @param {*} [axiosOptions] Override http request option.
|
|
46411
46807
|
* @throws {RequiredError}
|
|
46412
46808
|
*/
|
|
46413
|
-
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>;
|
|
46414
46810
|
/**
|
|
46415
46811
|
* Use this API to get a list of identity access items at a specified date, filtered by item type.
|
|
46416
46812
|
* @summary Get identity access items snapshot
|
|
@@ -46479,7 +46875,7 @@ export declare const IdentityHistoryBetaApiFp: (configuration?: Configuration) =
|
|
|
46479
46875
|
getHistoricalIdentity(id: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<IdentityHistoryResponseBeta>>;
|
|
46480
46876
|
/**
|
|
46481
46877
|
* This method retrieves all access events for the identity Requires authorization scope of \'idn:identity-history:read\'
|
|
46482
|
-
* @summary
|
|
46878
|
+
* @summary List identity event history
|
|
46483
46879
|
* @param {string} id The identity id
|
|
46484
46880
|
* @param {string} [from] The optional instant until which access events are returned
|
|
46485
46881
|
* @param {Array<string>} [eventTypes] An optional list of event types to return. If null or empty, all events are returned
|
|
@@ -46538,7 +46934,7 @@ export declare const IdentityHistoryBetaApiFp: (configuration?: Configuration) =
|
|
|
46538
46934
|
* This method retrieves a list of access item for the identity filtered by the access item type
|
|
46539
46935
|
* @summary List access items by identity
|
|
46540
46936
|
* @param {string} id The identity id
|
|
46541
|
-
* @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**
|
|
46542
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*
|
|
46543
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**
|
|
46544
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**
|
|
@@ -46548,7 +46944,7 @@ export declare const IdentityHistoryBetaApiFp: (configuration?: Configuration) =
|
|
|
46548
46944
|
* @param {*} [axiosOptions] Override http request option.
|
|
46549
46945
|
* @throws {RequiredError}
|
|
46550
46946
|
*/
|
|
46551
|
-
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>>>;
|
|
46552
46948
|
/**
|
|
46553
46949
|
* Use this API to get a list of identity access items at a specified date, filtered by item type.
|
|
46554
46950
|
* @summary Get identity access items snapshot
|
|
@@ -46558,7 +46954,7 @@ export declare const IdentityHistoryBetaApiFp: (configuration?: Configuration) =
|
|
|
46558
46954
|
* @param {*} [axiosOptions] Override http request option.
|
|
46559
46955
|
* @throws {RequiredError}
|
|
46560
46956
|
*/
|
|
46561
|
-
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>>>;
|
|
46562
46958
|
/**
|
|
46563
46959
|
* This method retrieves all the snapshots for the identity Requires authorization scope of \'idn:identity-history:read\'
|
|
46564
46960
|
* @summary Lists all the snapshots for the identity
|
|
@@ -46604,7 +47000,7 @@ export declare const IdentityHistoryBetaApiFactory: (configuration?: Configurati
|
|
|
46604
47000
|
getHistoricalIdentity(requestParameters: IdentityHistoryBetaApiGetHistoricalIdentityRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<IdentityHistoryResponseBeta>;
|
|
46605
47001
|
/**
|
|
46606
47002
|
* This method retrieves all access events for the identity Requires authorization scope of \'idn:identity-history:read\'
|
|
46607
|
-
* @summary
|
|
47003
|
+
* @summary List identity event history
|
|
46608
47004
|
* @param {IdentityHistoryBetaApiGetHistoricalIdentityEventsRequest} requestParameters Request parameters.
|
|
46609
47005
|
* @param {*} [axiosOptions] Override http request option.
|
|
46610
47006
|
* @throws {RequiredError}
|
|
@@ -46657,7 +47053,7 @@ export declare const IdentityHistoryBetaApiFactory: (configuration?: Configurati
|
|
|
46657
47053
|
* @param {*} [axiosOptions] Override http request option.
|
|
46658
47054
|
* @throws {RequiredError}
|
|
46659
47055
|
*/
|
|
46660
|
-
listIdentitySnapshotAccessItems(requestParameters: IdentityHistoryBetaApiListIdentitySnapshotAccessItemsRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<
|
|
47056
|
+
listIdentitySnapshotAccessItems(requestParameters: IdentityHistoryBetaApiListIdentitySnapshotAccessItemsRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<ListIdentitySnapshotAccessItems200ResponseInnerBeta>>;
|
|
46661
47057
|
/**
|
|
46662
47058
|
* This method retrieves all the snapshots for the identity Requires authorization scope of \'idn:identity-history:read\'
|
|
46663
47059
|
* @summary Lists all the snapshots for the identity
|
|
@@ -46965,10 +47361,10 @@ export interface IdentityHistoryBetaApiListIdentityAccessItemsRequest {
|
|
|
46965
47361
|
readonly id: string;
|
|
46966
47362
|
/**
|
|
46967
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**
|
|
46968
|
-
* @type {
|
|
47364
|
+
* @type {'account' | 'entitlement' | 'app' | 'accessProfile' | 'role'}
|
|
46969
47365
|
* @memberof IdentityHistoryBetaApiListIdentityAccessItems
|
|
46970
47366
|
*/
|
|
46971
|
-
readonly type?:
|
|
47367
|
+
readonly type?: ListIdentityAccessItemsTypeBeta;
|
|
46972
47368
|
/**
|
|
46973
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*
|
|
46974
47370
|
* @type {string}
|
|
@@ -47110,7 +47506,7 @@ export declare class IdentityHistoryBetaApi extends BaseAPI {
|
|
|
47110
47506
|
getHistoricalIdentity(requestParameters: IdentityHistoryBetaApiGetHistoricalIdentityRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<IdentityHistoryResponseBeta, any>>;
|
|
47111
47507
|
/**
|
|
47112
47508
|
* This method retrieves all access events for the identity Requires authorization scope of \'idn:identity-history:read\'
|
|
47113
|
-
* @summary
|
|
47509
|
+
* @summary List identity event history
|
|
47114
47510
|
* @param {IdentityHistoryBetaApiGetHistoricalIdentityEventsRequest} requestParameters Request parameters.
|
|
47115
47511
|
* @param {*} [axiosOptions] Override http request option.
|
|
47116
47512
|
* @throws {RequiredError}
|
|
@@ -47170,7 +47566,7 @@ export declare class IdentityHistoryBetaApi extends BaseAPI {
|
|
|
47170
47566
|
* @throws {RequiredError}
|
|
47171
47567
|
* @memberof IdentityHistoryBetaApi
|
|
47172
47568
|
*/
|
|
47173
|
-
listIdentitySnapshotAccessItems(requestParameters: IdentityHistoryBetaApiListIdentitySnapshotAccessItemsRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
47569
|
+
listIdentitySnapshotAccessItems(requestParameters: IdentityHistoryBetaApiListIdentitySnapshotAccessItemsRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ListIdentitySnapshotAccessItems200ResponseInnerBeta[], any>>;
|
|
47174
47570
|
/**
|
|
47175
47571
|
* This method retrieves all the snapshots for the identity Requires authorization scope of \'idn:identity-history:read\'
|
|
47176
47572
|
* @summary Lists all the snapshots for the identity
|
|
@@ -47200,6 +47596,17 @@ export declare const GetIdentitySnapshotSummaryIntervalBeta: {
|
|
|
47200
47596
|
readonly Month: "month";
|
|
47201
47597
|
};
|
|
47202
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];
|
|
47203
47610
|
/**
|
|
47204
47611
|
* @export
|
|
47205
47612
|
*/
|
|
@@ -50110,6 +50517,7 @@ export declare const NonEmployeeLifecycleManagementBetaApiAxiosParamCreator: (co
|
|
|
50110
50517
|
* @param {string} id Non-Employee approval item id (UUID)
|
|
50111
50518
|
* @param {NonEmployeeApprovalDecisionBeta} nonEmployeeApprovalDecisionBeta
|
|
50112
50519
|
* @param {*} [axiosOptions] Override http request option.
|
|
50520
|
+
* @deprecated
|
|
50113
50521
|
* @throws {RequiredError}
|
|
50114
50522
|
*/
|
|
50115
50523
|
approveNonEmployeeRequest: (id: string, nonEmployeeApprovalDecisionBeta: NonEmployeeApprovalDecisionBeta, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
@@ -50118,6 +50526,7 @@ export declare const NonEmployeeLifecycleManagementBetaApiAxiosParamCreator: (co
|
|
|
50118
50526
|
* @summary Create non-employee record
|
|
50119
50527
|
* @param {NonEmployeeRequestBodyBeta} nonEmployeeRequestBodyBeta Non-Employee record creation request body.
|
|
50120
50528
|
* @param {*} [axiosOptions] Override http request option.
|
|
50529
|
+
* @deprecated
|
|
50121
50530
|
* @throws {RequiredError}
|
|
50122
50531
|
*/
|
|
50123
50532
|
createNonEmployeeRecord: (nonEmployeeRequestBodyBeta: NonEmployeeRequestBodyBeta, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
@@ -50126,6 +50535,7 @@ export declare const NonEmployeeLifecycleManagementBetaApiAxiosParamCreator: (co
|
|
|
50126
50535
|
* @summary Create non-employee request
|
|
50127
50536
|
* @param {NonEmployeeRequestBodyBeta} nonEmployeeRequestBodyBeta Non-Employee creation request body
|
|
50128
50537
|
* @param {*} [axiosOptions] Override http request option.
|
|
50538
|
+
* @deprecated
|
|
50129
50539
|
* @throws {RequiredError}
|
|
50130
50540
|
*/
|
|
50131
50541
|
createNonEmployeeRequest: (nonEmployeeRequestBodyBeta: NonEmployeeRequestBodyBeta, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
@@ -50134,6 +50544,7 @@ export declare const NonEmployeeLifecycleManagementBetaApiAxiosParamCreator: (co
|
|
|
50134
50544
|
* @summary Create non-employee source
|
|
50135
50545
|
* @param {NonEmployeeSourceRequestBodyBeta} nonEmployeeSourceRequestBodyBeta Non-Employee source creation request body.
|
|
50136
50546
|
* @param {*} [axiosOptions] Override http request option.
|
|
50547
|
+
* @deprecated
|
|
50137
50548
|
* @throws {RequiredError}
|
|
50138
50549
|
*/
|
|
50139
50550
|
createNonEmployeeSource: (nonEmployeeSourceRequestBodyBeta: NonEmployeeSourceRequestBodyBeta, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
@@ -50143,6 +50554,7 @@ export declare const NonEmployeeLifecycleManagementBetaApiAxiosParamCreator: (co
|
|
|
50143
50554
|
* @param {string} sourceId The Source id
|
|
50144
50555
|
* @param {NonEmployeeSchemaAttributeBodyBeta} nonEmployeeSchemaAttributeBodyBeta
|
|
50145
50556
|
* @param {*} [axiosOptions] Override http request option.
|
|
50557
|
+
* @deprecated
|
|
50146
50558
|
* @throws {RequiredError}
|
|
50147
50559
|
*/
|
|
50148
50560
|
createNonEmployeeSourceSchemaAttributes: (sourceId: string, nonEmployeeSchemaAttributeBodyBeta: NonEmployeeSchemaAttributeBodyBeta, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
@@ -50151,6 +50563,7 @@ export declare const NonEmployeeLifecycleManagementBetaApiAxiosParamCreator: (co
|
|
|
50151
50563
|
* @summary Delete non-employee record
|
|
50152
50564
|
* @param {string} id Non-Employee record id (UUID)
|
|
50153
50565
|
* @param {*} [axiosOptions] Override http request option.
|
|
50566
|
+
* @deprecated
|
|
50154
50567
|
* @throws {RequiredError}
|
|
50155
50568
|
*/
|
|
50156
50569
|
deleteNonEmployeeRecord: (id: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
@@ -50159,6 +50572,7 @@ export declare const NonEmployeeLifecycleManagementBetaApiAxiosParamCreator: (co
|
|
|
50159
50572
|
* @summary Delete multiple non-employee records
|
|
50160
50573
|
* @param {DeleteNonEmployeeRecordInBulkRequestBeta} deleteNonEmployeeRecordInBulkRequestBeta Non-Employee bulk delete request body.
|
|
50161
50574
|
* @param {*} [axiosOptions] Override http request option.
|
|
50575
|
+
* @deprecated
|
|
50162
50576
|
* @throws {RequiredError}
|
|
50163
50577
|
*/
|
|
50164
50578
|
deleteNonEmployeeRecordInBulk: (deleteNonEmployeeRecordInBulkRequestBeta: DeleteNonEmployeeRecordInBulkRequestBeta, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
@@ -50167,6 +50581,7 @@ export declare const NonEmployeeLifecycleManagementBetaApiAxiosParamCreator: (co
|
|
|
50167
50581
|
* @summary Delete non-employee request
|
|
50168
50582
|
* @param {string} id Non-Employee request id in the UUID format
|
|
50169
50583
|
* @param {*} [axiosOptions] Override http request option.
|
|
50584
|
+
* @deprecated
|
|
50170
50585
|
* @throws {RequiredError}
|
|
50171
50586
|
*/
|
|
50172
50587
|
deleteNonEmployeeRequest: (id: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
@@ -50176,6 +50591,7 @@ export declare const NonEmployeeLifecycleManagementBetaApiAxiosParamCreator: (co
|
|
|
50176
50591
|
* @param {string} attributeId The Schema Attribute Id (UUID)
|
|
50177
50592
|
* @param {string} sourceId The Source id
|
|
50178
50593
|
* @param {*} [axiosOptions] Override http request option.
|
|
50594
|
+
* @deprecated
|
|
50179
50595
|
* @throws {RequiredError}
|
|
50180
50596
|
*/
|
|
50181
50597
|
deleteNonEmployeeSchemaAttribute: (attributeId: string, sourceId: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
@@ -50184,6 +50600,7 @@ export declare const NonEmployeeLifecycleManagementBetaApiAxiosParamCreator: (co
|
|
|
50184
50600
|
* @summary Delete non-employee source
|
|
50185
50601
|
* @param {string} sourceId Source Id
|
|
50186
50602
|
* @param {*} [axiosOptions] Override http request option.
|
|
50603
|
+
* @deprecated
|
|
50187
50604
|
* @throws {RequiredError}
|
|
50188
50605
|
*/
|
|
50189
50606
|
deleteNonEmployeeSource: (sourceId: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
@@ -50192,39 +50609,26 @@ export declare const NonEmployeeLifecycleManagementBetaApiAxiosParamCreator: (co
|
|
|
50192
50609
|
* @summary Delete all custom schema attributes
|
|
50193
50610
|
* @param {string} sourceId The Source id
|
|
50194
50611
|
* @param {*} [axiosOptions] Override http request option.
|
|
50612
|
+
* @deprecated
|
|
50195
50613
|
* @throws {RequiredError}
|
|
50196
50614
|
*/
|
|
50197
50615
|
deleteNonEmployeeSourceSchemaAttributes: (sourceId: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
50198
|
-
/**
|
|
50199
|
-
* This requests a CSV download for all non-employees from a provided source.
|
|
50200
|
-
* @summary Exports non-employee records to csv
|
|
50201
|
-
* @param {string} id Source Id (UUID)
|
|
50202
|
-
* @param {*} [axiosOptions] Override http request option.
|
|
50203
|
-
* @throws {RequiredError}
|
|
50204
|
-
*/
|
|
50205
|
-
exportNonEmployeeRecords: (id: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
50206
|
-
/**
|
|
50207
|
-
* This requests a download for the Source Schema Template for a provided source. Request will require the following security scope: idn:nesr:read\'
|
|
50208
|
-
* @summary Exports source schema template
|
|
50209
|
-
* @param {string} id Source Id (UUID)
|
|
50210
|
-
* @param {*} [axiosOptions] Override http request option.
|
|
50211
|
-
* @throws {RequiredError}
|
|
50212
|
-
*/
|
|
50213
|
-
exportNonEmployeeSourceSchemaTemplate: (id: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
50214
50616
|
/**
|
|
50215
50617
|
* Approves a non-employee approval request and notifies the next approver.
|
|
50216
|
-
* @summary
|
|
50618
|
+
* @summary A non-employee approval item detail
|
|
50217
50619
|
* @param {string} id Non-Employee approval item id (UUID)
|
|
50218
50620
|
* @param {string} [includeDetail] The object nonEmployeeRequest will not be included detail when set to false. *Default value is true*
|
|
50219
50621
|
* @param {*} [axiosOptions] Override http request option.
|
|
50622
|
+
* @deprecated
|
|
50220
50623
|
* @throws {RequiredError}
|
|
50221
50624
|
*/
|
|
50222
50625
|
getNonEmployeeApproval: (id: string, includeDetail?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
50223
50626
|
/**
|
|
50224
50627
|
* This request will retrieve a summary of non-employee approval requests. There are two contextual uses for the `requested-for` path parameter: 1. The current user is the Org Admin, in which case he or she may request a summary of all non-employee approval requests assigned to a particular approver by passing in that approver\'s id. 2. The current user is an approver, in which case \"me\" should be provided as the `requested-for` value. This will provide the approver with a summary of the approval items assigned to him or her.
|
|
50225
|
-
* @summary
|
|
50628
|
+
* @summary Summary of non-employee approval requests
|
|
50226
50629
|
* @param {string} requestedFor The identity (UUID) of the approver for whom for whom the summary is being retrieved. Use \"me\" instead to indicate the current user.
|
|
50227
50630
|
* @param {*} [axiosOptions] Override http request option.
|
|
50631
|
+
* @deprecated
|
|
50228
50632
|
* @throws {RequiredError}
|
|
50229
50633
|
*/
|
|
50230
50634
|
getNonEmployeeApprovalSummary: (requestedFor: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
@@ -50233,14 +50637,34 @@ export declare const NonEmployeeLifecycleManagementBetaApiAxiosParamCreator: (co
|
|
|
50233
50637
|
* @summary Bulk upload status on source
|
|
50234
50638
|
* @param {string} id Source ID (UUID)
|
|
50235
50639
|
* @param {*} [axiosOptions] Override http request option.
|
|
50640
|
+
* @deprecated
|
|
50236
50641
|
* @throws {RequiredError}
|
|
50237
50642
|
*/
|
|
50238
50643
|
getNonEmployeeBulkUploadStatus: (id: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
50644
|
+
/**
|
|
50645
|
+
* This requests a CSV download for all non-employees from a provided source.
|
|
50646
|
+
* @summary Exports non-employee records to csv
|
|
50647
|
+
* @param {string} id Source Id (UUID)
|
|
50648
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
50649
|
+
* @deprecated
|
|
50650
|
+
* @throws {RequiredError}
|
|
50651
|
+
*/
|
|
50652
|
+
getNonEmployeeExportRecords: (id: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
50653
|
+
/**
|
|
50654
|
+
* This requests a download for the Source Schema Template for a provided source. Request will require the following security scope: idn:nesr:read\'
|
|
50655
|
+
* @summary Exports source schema template
|
|
50656
|
+
* @param {string} id Source Id (UUID)
|
|
50657
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
50658
|
+
* @deprecated
|
|
50659
|
+
* @throws {RequiredError}
|
|
50660
|
+
*/
|
|
50661
|
+
getNonEmployeeExportSourceSchemaTemplate: (id: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
50239
50662
|
/**
|
|
50240
50663
|
* This gets a non-employee record.
|
|
50241
50664
|
* @summary Get a non-employee record
|
|
50242
50665
|
* @param {string} id Non-Employee record id (UUID)
|
|
50243
50666
|
* @param {*} [axiosOptions] Override http request option.
|
|
50667
|
+
* @deprecated
|
|
50244
50668
|
* @throws {RequiredError}
|
|
50245
50669
|
*/
|
|
50246
50670
|
getNonEmployeeRecord: (id: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
@@ -50249,6 +50673,7 @@ export declare const NonEmployeeLifecycleManagementBetaApiAxiosParamCreator: (co
|
|
|
50249
50673
|
* @summary Get a non-employee request
|
|
50250
50674
|
* @param {string} id Non-Employee request id (UUID)
|
|
50251
50675
|
* @param {*} [axiosOptions] Override http request option.
|
|
50676
|
+
* @deprecated
|
|
50252
50677
|
* @throws {RequiredError}
|
|
50253
50678
|
*/
|
|
50254
50679
|
getNonEmployeeRequest: (id: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
@@ -50257,6 +50682,7 @@ export declare const NonEmployeeLifecycleManagementBetaApiAxiosParamCreator: (co
|
|
|
50257
50682
|
* @summary Get summary of non-employee requests
|
|
50258
50683
|
* @param {string} requestedFor The identity (UUID) of the non-employee account manager for whom the summary is being retrieved. Use \"me\" instead to indicate the current user.
|
|
50259
50684
|
* @param {*} [axiosOptions] Override http request option.
|
|
50685
|
+
* @deprecated
|
|
50260
50686
|
* @throws {RequiredError}
|
|
50261
50687
|
*/
|
|
50262
50688
|
getNonEmployeeRequestSummary: (requestedFor: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
@@ -50266,6 +50692,7 @@ export declare const NonEmployeeLifecycleManagementBetaApiAxiosParamCreator: (co
|
|
|
50266
50692
|
* @param {string} attributeId The Schema Attribute Id (UUID)
|
|
50267
50693
|
* @param {string} sourceId The Source id
|
|
50268
50694
|
* @param {*} [axiosOptions] Override http request option.
|
|
50695
|
+
* @deprecated
|
|
50269
50696
|
* @throws {RequiredError}
|
|
50270
50697
|
*/
|
|
50271
50698
|
getNonEmployeeSchemaAttribute: (attributeId: string, sourceId: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
@@ -50274,6 +50701,7 @@ export declare const NonEmployeeLifecycleManagementBetaApiAxiosParamCreator: (co
|
|
|
50274
50701
|
* @summary Get a non-employee source
|
|
50275
50702
|
* @param {string} sourceId Source Id
|
|
50276
50703
|
* @param {*} [axiosOptions] Override http request option.
|
|
50704
|
+
* @deprecated
|
|
50277
50705
|
* @throws {RequiredError}
|
|
50278
50706
|
*/
|
|
50279
50707
|
getNonEmployeeSource: (sourceId: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
@@ -50281,22 +50709,26 @@ export declare const NonEmployeeLifecycleManagementBetaApiAxiosParamCreator: (co
|
|
|
50281
50709
|
* This API gets the list of schema attributes for the specified Non-Employee SourceId. There are 8 mandatory attributes added to each new Non-Employee Source automatically. Additionaly, user can add up to 10 custom attributes. This interface returns all the mandatory attributes followed by any custom attributes. At most, a total of 18 attributes will be returned.
|
|
50282
50710
|
* @summary List schema attributes non-employee source
|
|
50283
50711
|
* @param {string} sourceId The Source id
|
|
50712
|
+
* @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.
|
|
50713
|
+
* @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.
|
|
50284
50714
|
* @param {*} [axiosOptions] Override http request option.
|
|
50715
|
+
* @deprecated
|
|
50285
50716
|
* @throws {RequiredError}
|
|
50286
50717
|
*/
|
|
50287
|
-
getNonEmployeeSourceSchemaAttributes: (sourceId: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
50718
|
+
getNonEmployeeSourceSchemaAttributes: (sourceId: string, limit?: number, offset?: number, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
50288
50719
|
/**
|
|
50289
50720
|
* This post will import, or update, Non-Employee records found in the CSV. Request will need the following security scope: \'idn:nesr:create\'
|
|
50290
50721
|
* @summary Imports, or updates, non-employee records
|
|
50291
50722
|
* @param {string} id Source Id (UUID)
|
|
50292
50723
|
* @param {File} data
|
|
50293
50724
|
* @param {*} [axiosOptions] Override http request option.
|
|
50725
|
+
* @deprecated
|
|
50294
50726
|
* @throws {RequiredError}
|
|
50295
50727
|
*/
|
|
50296
50728
|
importNonEmployeeRecordsInBulk: (id: string, data: File, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
50297
50729
|
/**
|
|
50298
50730
|
* This gets a list of non-employee approval requests.
|
|
50299
|
-
* @summary
|
|
50731
|
+
* @summary List of non-employee approval requests
|
|
50300
50732
|
* @param {string} [requestedFor] The identity for whom the request was made. *me* indicates the current user.
|
|
50301
50733
|
* @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.
|
|
50302
50734
|
* @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.
|
|
@@ -50304,6 +50736,7 @@ export declare const NonEmployeeLifecycleManagementBetaApiAxiosParamCreator: (co
|
|
|
50304
50736
|
* @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: **approvalStatus**: *eq*
|
|
50305
50737
|
* @param {string} [sorters] Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) Sorting is supported for the following fields: **created, modified**
|
|
50306
50738
|
* @param {*} [axiosOptions] Override http request option.
|
|
50739
|
+
* @deprecated
|
|
50307
50740
|
* @throws {RequiredError}
|
|
50308
50741
|
*/
|
|
50309
50742
|
listNonEmployeeApproval: (requestedFor?: string, limit?: number, offset?: number, count?: boolean, filters?: string, sorters?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
@@ -50316,6 +50749,7 @@ export declare const NonEmployeeLifecycleManagementBetaApiAxiosParamCreator: (co
|
|
|
50316
50749
|
* @param {string} [sorters] Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) Sorting is supported for the following fields: **id, accountName, sourceId, manager, firstName, lastName, email, phone, startDate, endDate, created, modified**
|
|
50317
50750
|
* @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: **sourceId**: *eq*
|
|
50318
50751
|
* @param {*} [axiosOptions] Override http request option.
|
|
50752
|
+
* @deprecated
|
|
50319
50753
|
* @throws {RequiredError}
|
|
50320
50754
|
*/
|
|
50321
50755
|
listNonEmployeeRecords: (limit?: number, offset?: number, count?: boolean, sorters?: string, filters?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
@@ -50329,6 +50763,7 @@ export declare const NonEmployeeLifecycleManagementBetaApiAxiosParamCreator: (co
|
|
|
50329
50763
|
* @param {string} [sorters] Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) Sorting is supported for the following fields: **created, approvalStatus, firstName, lastName, email, phone, accountName, startDate, endDate**
|
|
50330
50764
|
* @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: **sourceId**: *eq*
|
|
50331
50765
|
* @param {*} [axiosOptions] Override http request option.
|
|
50766
|
+
* @deprecated
|
|
50332
50767
|
* @throws {RequiredError}
|
|
50333
50768
|
*/
|
|
50334
50769
|
listNonEmployeeRequests: (requestedFor: string, limit?: number, offset?: number, count?: boolean, sorters?: string, filters?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
@@ -50342,6 +50777,7 @@ export declare const NonEmployeeLifecycleManagementBetaApiAxiosParamCreator: (co
|
|
|
50342
50777
|
* @param {boolean} [nonEmployeeCount] Flag that determines whether the API will return a non-employee count associated with the source.
|
|
50343
50778
|
* @param {string} [sorters] Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) Sorting is supported for the following fields: **name, created, sourceId**
|
|
50344
50779
|
* @param {*} [axiosOptions] Override http request option.
|
|
50780
|
+
* @deprecated
|
|
50345
50781
|
* @throws {RequiredError}
|
|
50346
50782
|
*/
|
|
50347
50783
|
listNonEmployeeSources: (limit?: number, offset?: number, count?: boolean, requestedFor?: string, nonEmployeeCount?: boolean, sorters?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
@@ -50351,6 +50787,7 @@ export declare const NonEmployeeLifecycleManagementBetaApiAxiosParamCreator: (co
|
|
|
50351
50787
|
* @param {string} id Non-employee record id (UUID)
|
|
50352
50788
|
* @param {Array<JsonPatchOperationBeta>} jsonPatchOperationBeta A list of non-employee update operations according to the [JSON Patch](https://tools.ietf.org/html/rfc6902) standard. Attributes are restricted by user type. Owner of source can update end date. Organization admins can update all available fields.
|
|
50353
50789
|
* @param {*} [axiosOptions] Override http request option.
|
|
50790
|
+
* @deprecated
|
|
50354
50791
|
* @throws {RequiredError}
|
|
50355
50792
|
*/
|
|
50356
50793
|
patchNonEmployeeRecord: (id: string, jsonPatchOperationBeta: Array<JsonPatchOperationBeta>, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
@@ -50361,6 +50798,7 @@ export declare const NonEmployeeLifecycleManagementBetaApiAxiosParamCreator: (co
|
|
|
50361
50798
|
* @param {string} sourceId The Source id
|
|
50362
50799
|
* @param {Array<JsonPatchOperationBeta>} jsonPatchOperationBeta A list of schema attribute update operations according to the [JSON Patch](https://tools.ietf.org/html/rfc6902) standard. The following properties are allowed for update \':\' \'label\', \'helpText\', \'placeholder\', \'required\'.
|
|
50363
50800
|
* @param {*} [axiosOptions] Override http request option.
|
|
50801
|
+
* @deprecated
|
|
50364
50802
|
* @throws {RequiredError}
|
|
50365
50803
|
*/
|
|
50366
50804
|
patchNonEmployeeSchemaAttribute: (attributeId: string, sourceId: string, jsonPatchOperationBeta: Array<JsonPatchOperationBeta>, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
@@ -50370,27 +50808,30 @@ export declare const NonEmployeeLifecycleManagementBetaApiAxiosParamCreator: (co
|
|
|
50370
50808
|
* @param {string} sourceId Source Id
|
|
50371
50809
|
* @param {Array<JsonPatchOperationBeta>} jsonPatchOperationBeta A list of non-employee source update operations according to the [JSON Patch](https://tools.ietf.org/html/rfc6902) standard.
|
|
50372
50810
|
* @param {*} [axiosOptions] Override http request option.
|
|
50811
|
+
* @deprecated
|
|
50373
50812
|
* @throws {RequiredError}
|
|
50374
50813
|
*/
|
|
50375
50814
|
patchNonEmployeeSource: (sourceId: string, jsonPatchOperationBeta: Array<JsonPatchOperationBeta>, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
50815
|
+
/**
|
|
50816
|
+
* This request will update a non-employee record.
|
|
50817
|
+
* @summary Update non-employee record
|
|
50818
|
+
* @param {string} id Non-employee record id (UUID)
|
|
50819
|
+
* @param {NonEmployeeRequestBodyBeta} nonEmployeeRequestBodyBeta Non-employee record creation request body. Attributes are restricted by user type. Owner of source can update end date. Organization admins can update all available fields.
|
|
50820
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
50821
|
+
* @deprecated
|
|
50822
|
+
* @throws {RequiredError}
|
|
50823
|
+
*/
|
|
50824
|
+
putNonEmployeeRecord: (id: string, nonEmployeeRequestBodyBeta: NonEmployeeRequestBodyBeta, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
50376
50825
|
/**
|
|
50377
50826
|
* This endpoint will reject an approval item request and notify user.
|
|
50378
50827
|
* @summary Reject a non-employee request
|
|
50379
50828
|
* @param {string} id Non-Employee approval item id (UUID)
|
|
50380
50829
|
* @param {NonEmployeeRejectApprovalDecisionBeta} nonEmployeeRejectApprovalDecisionBeta
|
|
50381
50830
|
* @param {*} [axiosOptions] Override http request option.
|
|
50831
|
+
* @deprecated
|
|
50382
50832
|
* @throws {RequiredError}
|
|
50383
50833
|
*/
|
|
50384
50834
|
rejectNonEmployeeRequest: (id: string, nonEmployeeRejectApprovalDecisionBeta: NonEmployeeRejectApprovalDecisionBeta, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
50385
|
-
/**
|
|
50386
|
-
* This request will update a non-employee record.
|
|
50387
|
-
* @summary Update non-employee record
|
|
50388
|
-
* @param {string} id Non-employee record id (UUID)
|
|
50389
|
-
* @param {NonEmployeeRequestBodyBeta} nonEmployeeRequestBodyBeta Non-employee record creation request body. Attributes are restricted by user type. Owner of source can update end date. Organization admins can update all available fields.
|
|
50390
|
-
* @param {*} [axiosOptions] Override http request option.
|
|
50391
|
-
* @throws {RequiredError}
|
|
50392
|
-
*/
|
|
50393
|
-
updateNonEmployeeRecord: (id: string, nonEmployeeRequestBodyBeta: NonEmployeeRequestBodyBeta, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
50394
50835
|
};
|
|
50395
50836
|
/**
|
|
50396
50837
|
* NonEmployeeLifecycleManagementBetaApi - functional programming interface
|
|
@@ -50403,6 +50844,7 @@ export declare const NonEmployeeLifecycleManagementBetaApiFp: (configuration?: C
|
|
|
50403
50844
|
* @param {string} id Non-Employee approval item id (UUID)
|
|
50404
50845
|
* @param {NonEmployeeApprovalDecisionBeta} nonEmployeeApprovalDecisionBeta
|
|
50405
50846
|
* @param {*} [axiosOptions] Override http request option.
|
|
50847
|
+
* @deprecated
|
|
50406
50848
|
* @throws {RequiredError}
|
|
50407
50849
|
*/
|
|
50408
50850
|
approveNonEmployeeRequest(id: string, nonEmployeeApprovalDecisionBeta: NonEmployeeApprovalDecisionBeta, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<NonEmployeeApprovalItemBeta>>;
|
|
@@ -50411,6 +50853,7 @@ export declare const NonEmployeeLifecycleManagementBetaApiFp: (configuration?: C
|
|
|
50411
50853
|
* @summary Create non-employee record
|
|
50412
50854
|
* @param {NonEmployeeRequestBodyBeta} nonEmployeeRequestBodyBeta Non-Employee record creation request body.
|
|
50413
50855
|
* @param {*} [axiosOptions] Override http request option.
|
|
50856
|
+
* @deprecated
|
|
50414
50857
|
* @throws {RequiredError}
|
|
50415
50858
|
*/
|
|
50416
50859
|
createNonEmployeeRecord(nonEmployeeRequestBodyBeta: NonEmployeeRequestBodyBeta, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<NonEmployeeRecordBeta>>;
|
|
@@ -50419,6 +50862,7 @@ export declare const NonEmployeeLifecycleManagementBetaApiFp: (configuration?: C
|
|
|
50419
50862
|
* @summary Create non-employee request
|
|
50420
50863
|
* @param {NonEmployeeRequestBodyBeta} nonEmployeeRequestBodyBeta Non-Employee creation request body
|
|
50421
50864
|
* @param {*} [axiosOptions] Override http request option.
|
|
50865
|
+
* @deprecated
|
|
50422
50866
|
* @throws {RequiredError}
|
|
50423
50867
|
*/
|
|
50424
50868
|
createNonEmployeeRequest(nonEmployeeRequestBodyBeta: NonEmployeeRequestBodyBeta, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<NonEmployeeRequestBeta>>;
|
|
@@ -50427,6 +50871,7 @@ export declare const NonEmployeeLifecycleManagementBetaApiFp: (configuration?: C
|
|
|
50427
50871
|
* @summary Create non-employee source
|
|
50428
50872
|
* @param {NonEmployeeSourceRequestBodyBeta} nonEmployeeSourceRequestBodyBeta Non-Employee source creation request body.
|
|
50429
50873
|
* @param {*} [axiosOptions] Override http request option.
|
|
50874
|
+
* @deprecated
|
|
50430
50875
|
* @throws {RequiredError}
|
|
50431
50876
|
*/
|
|
50432
50877
|
createNonEmployeeSource(nonEmployeeSourceRequestBodyBeta: NonEmployeeSourceRequestBodyBeta, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<NonEmployeeSourceWithCloudExternalIdBeta>>;
|
|
@@ -50436,6 +50881,7 @@ export declare const NonEmployeeLifecycleManagementBetaApiFp: (configuration?: C
|
|
|
50436
50881
|
* @param {string} sourceId The Source id
|
|
50437
50882
|
* @param {NonEmployeeSchemaAttributeBodyBeta} nonEmployeeSchemaAttributeBodyBeta
|
|
50438
50883
|
* @param {*} [axiosOptions] Override http request option.
|
|
50884
|
+
* @deprecated
|
|
50439
50885
|
* @throws {RequiredError}
|
|
50440
50886
|
*/
|
|
50441
50887
|
createNonEmployeeSourceSchemaAttributes(sourceId: string, nonEmployeeSchemaAttributeBodyBeta: NonEmployeeSchemaAttributeBodyBeta, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<NonEmployeeSchemaAttributeBeta>>;
|
|
@@ -50444,6 +50890,7 @@ export declare const NonEmployeeLifecycleManagementBetaApiFp: (configuration?: C
|
|
|
50444
50890
|
* @summary Delete non-employee record
|
|
50445
50891
|
* @param {string} id Non-Employee record id (UUID)
|
|
50446
50892
|
* @param {*} [axiosOptions] Override http request option.
|
|
50893
|
+
* @deprecated
|
|
50447
50894
|
* @throws {RequiredError}
|
|
50448
50895
|
*/
|
|
50449
50896
|
deleteNonEmployeeRecord(id: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
@@ -50452,6 +50899,7 @@ export declare const NonEmployeeLifecycleManagementBetaApiFp: (configuration?: C
|
|
|
50452
50899
|
* @summary Delete multiple non-employee records
|
|
50453
50900
|
* @param {DeleteNonEmployeeRecordInBulkRequestBeta} deleteNonEmployeeRecordInBulkRequestBeta Non-Employee bulk delete request body.
|
|
50454
50901
|
* @param {*} [axiosOptions] Override http request option.
|
|
50902
|
+
* @deprecated
|
|
50455
50903
|
* @throws {RequiredError}
|
|
50456
50904
|
*/
|
|
50457
50905
|
deleteNonEmployeeRecordInBulk(deleteNonEmployeeRecordInBulkRequestBeta: DeleteNonEmployeeRecordInBulkRequestBeta, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
@@ -50460,6 +50908,7 @@ export declare const NonEmployeeLifecycleManagementBetaApiFp: (configuration?: C
|
|
|
50460
50908
|
* @summary Delete non-employee request
|
|
50461
50909
|
* @param {string} id Non-Employee request id in the UUID format
|
|
50462
50910
|
* @param {*} [axiosOptions] Override http request option.
|
|
50911
|
+
* @deprecated
|
|
50463
50912
|
* @throws {RequiredError}
|
|
50464
50913
|
*/
|
|
50465
50914
|
deleteNonEmployeeRequest(id: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
@@ -50469,6 +50918,7 @@ export declare const NonEmployeeLifecycleManagementBetaApiFp: (configuration?: C
|
|
|
50469
50918
|
* @param {string} attributeId The Schema Attribute Id (UUID)
|
|
50470
50919
|
* @param {string} sourceId The Source id
|
|
50471
50920
|
* @param {*} [axiosOptions] Override http request option.
|
|
50921
|
+
* @deprecated
|
|
50472
50922
|
* @throws {RequiredError}
|
|
50473
50923
|
*/
|
|
50474
50924
|
deleteNonEmployeeSchemaAttribute(attributeId: string, sourceId: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
@@ -50477,6 +50927,7 @@ export declare const NonEmployeeLifecycleManagementBetaApiFp: (configuration?: C
|
|
|
50477
50927
|
* @summary Delete non-employee source
|
|
50478
50928
|
* @param {string} sourceId Source Id
|
|
50479
50929
|
* @param {*} [axiosOptions] Override http request option.
|
|
50930
|
+
* @deprecated
|
|
50480
50931
|
* @throws {RequiredError}
|
|
50481
50932
|
*/
|
|
50482
50933
|
deleteNonEmployeeSource(sourceId: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
@@ -50485,39 +50936,26 @@ export declare const NonEmployeeLifecycleManagementBetaApiFp: (configuration?: C
|
|
|
50485
50936
|
* @summary Delete all custom schema attributes
|
|
50486
50937
|
* @param {string} sourceId The Source id
|
|
50487
50938
|
* @param {*} [axiosOptions] Override http request option.
|
|
50939
|
+
* @deprecated
|
|
50488
50940
|
* @throws {RequiredError}
|
|
50489
50941
|
*/
|
|
50490
50942
|
deleteNonEmployeeSourceSchemaAttributes(sourceId: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
50491
|
-
/**
|
|
50492
|
-
* This requests a CSV download for all non-employees from a provided source.
|
|
50493
|
-
* @summary Exports non-employee records to csv
|
|
50494
|
-
* @param {string} id Source Id (UUID)
|
|
50495
|
-
* @param {*} [axiosOptions] Override http request option.
|
|
50496
|
-
* @throws {RequiredError}
|
|
50497
|
-
*/
|
|
50498
|
-
exportNonEmployeeRecords(id: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
50499
|
-
/**
|
|
50500
|
-
* This requests a download for the Source Schema Template for a provided source. Request will require the following security scope: idn:nesr:read\'
|
|
50501
|
-
* @summary Exports source schema template
|
|
50502
|
-
* @param {string} id Source Id (UUID)
|
|
50503
|
-
* @param {*} [axiosOptions] Override http request option.
|
|
50504
|
-
* @throws {RequiredError}
|
|
50505
|
-
*/
|
|
50506
|
-
exportNonEmployeeSourceSchemaTemplate(id: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
50507
50943
|
/**
|
|
50508
50944
|
* Approves a non-employee approval request and notifies the next approver.
|
|
50509
|
-
* @summary
|
|
50945
|
+
* @summary A non-employee approval item detail
|
|
50510
50946
|
* @param {string} id Non-Employee approval item id (UUID)
|
|
50511
50947
|
* @param {string} [includeDetail] The object nonEmployeeRequest will not be included detail when set to false. *Default value is true*
|
|
50512
50948
|
* @param {*} [axiosOptions] Override http request option.
|
|
50949
|
+
* @deprecated
|
|
50513
50950
|
* @throws {RequiredError}
|
|
50514
50951
|
*/
|
|
50515
50952
|
getNonEmployeeApproval(id: string, includeDetail?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<NonEmployeeApprovalItemDetailBeta>>;
|
|
50516
50953
|
/**
|
|
50517
50954
|
* This request will retrieve a summary of non-employee approval requests. There are two contextual uses for the `requested-for` path parameter: 1. The current user is the Org Admin, in which case he or she may request a summary of all non-employee approval requests assigned to a particular approver by passing in that approver\'s id. 2. The current user is an approver, in which case \"me\" should be provided as the `requested-for` value. This will provide the approver with a summary of the approval items assigned to him or her.
|
|
50518
|
-
* @summary
|
|
50955
|
+
* @summary Summary of non-employee approval requests
|
|
50519
50956
|
* @param {string} requestedFor The identity (UUID) of the approver for whom for whom the summary is being retrieved. Use \"me\" instead to indicate the current user.
|
|
50520
50957
|
* @param {*} [axiosOptions] Override http request option.
|
|
50958
|
+
* @deprecated
|
|
50521
50959
|
* @throws {RequiredError}
|
|
50522
50960
|
*/
|
|
50523
50961
|
getNonEmployeeApprovalSummary(requestedFor: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<NonEmployeeApprovalSummaryBeta>>;
|
|
@@ -50526,14 +50964,34 @@ export declare const NonEmployeeLifecycleManagementBetaApiFp: (configuration?: C
|
|
|
50526
50964
|
* @summary Bulk upload status on source
|
|
50527
50965
|
* @param {string} id Source ID (UUID)
|
|
50528
50966
|
* @param {*} [axiosOptions] Override http request option.
|
|
50967
|
+
* @deprecated
|
|
50529
50968
|
* @throws {RequiredError}
|
|
50530
50969
|
*/
|
|
50531
50970
|
getNonEmployeeBulkUploadStatus(id: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<NonEmployeeBulkUploadStatusBeta>>;
|
|
50971
|
+
/**
|
|
50972
|
+
* This requests a CSV download for all non-employees from a provided source.
|
|
50973
|
+
* @summary Exports non-employee records to csv
|
|
50974
|
+
* @param {string} id Source Id (UUID)
|
|
50975
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
50976
|
+
* @deprecated
|
|
50977
|
+
* @throws {RequiredError}
|
|
50978
|
+
*/
|
|
50979
|
+
getNonEmployeeExportRecords(id: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
50980
|
+
/**
|
|
50981
|
+
* This requests a download for the Source Schema Template for a provided source. Request will require the following security scope: idn:nesr:read\'
|
|
50982
|
+
* @summary Exports source schema template
|
|
50983
|
+
* @param {string} id Source Id (UUID)
|
|
50984
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
50985
|
+
* @deprecated
|
|
50986
|
+
* @throws {RequiredError}
|
|
50987
|
+
*/
|
|
50988
|
+
getNonEmployeeExportSourceSchemaTemplate(id: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
50532
50989
|
/**
|
|
50533
50990
|
* This gets a non-employee record.
|
|
50534
50991
|
* @summary Get a non-employee record
|
|
50535
50992
|
* @param {string} id Non-Employee record id (UUID)
|
|
50536
50993
|
* @param {*} [axiosOptions] Override http request option.
|
|
50994
|
+
* @deprecated
|
|
50537
50995
|
* @throws {RequiredError}
|
|
50538
50996
|
*/
|
|
50539
50997
|
getNonEmployeeRecord(id: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<NonEmployeeRecordBeta>>;
|
|
@@ -50542,6 +51000,7 @@ export declare const NonEmployeeLifecycleManagementBetaApiFp: (configuration?: C
|
|
|
50542
51000
|
* @summary Get a non-employee request
|
|
50543
51001
|
* @param {string} id Non-Employee request id (UUID)
|
|
50544
51002
|
* @param {*} [axiosOptions] Override http request option.
|
|
51003
|
+
* @deprecated
|
|
50545
51004
|
* @throws {RequiredError}
|
|
50546
51005
|
*/
|
|
50547
51006
|
getNonEmployeeRequest(id: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<NonEmployeeRequestBeta>>;
|
|
@@ -50550,6 +51009,7 @@ export declare const NonEmployeeLifecycleManagementBetaApiFp: (configuration?: C
|
|
|
50550
51009
|
* @summary Get summary of non-employee requests
|
|
50551
51010
|
* @param {string} requestedFor The identity (UUID) of the non-employee account manager for whom the summary is being retrieved. Use \"me\" instead to indicate the current user.
|
|
50552
51011
|
* @param {*} [axiosOptions] Override http request option.
|
|
51012
|
+
* @deprecated
|
|
50553
51013
|
* @throws {RequiredError}
|
|
50554
51014
|
*/
|
|
50555
51015
|
getNonEmployeeRequestSummary(requestedFor: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<NonEmployeeRequestSummaryBeta>>;
|
|
@@ -50559,6 +51019,7 @@ export declare const NonEmployeeLifecycleManagementBetaApiFp: (configuration?: C
|
|
|
50559
51019
|
* @param {string} attributeId The Schema Attribute Id (UUID)
|
|
50560
51020
|
* @param {string} sourceId The Source id
|
|
50561
51021
|
* @param {*} [axiosOptions] Override http request option.
|
|
51022
|
+
* @deprecated
|
|
50562
51023
|
* @throws {RequiredError}
|
|
50563
51024
|
*/
|
|
50564
51025
|
getNonEmployeeSchemaAttribute(attributeId: string, sourceId: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<NonEmployeeSchemaAttributeBeta>>;
|
|
@@ -50567,6 +51028,7 @@ export declare const NonEmployeeLifecycleManagementBetaApiFp: (configuration?: C
|
|
|
50567
51028
|
* @summary Get a non-employee source
|
|
50568
51029
|
* @param {string} sourceId Source Id
|
|
50569
51030
|
* @param {*} [axiosOptions] Override http request option.
|
|
51031
|
+
* @deprecated
|
|
50570
51032
|
* @throws {RequiredError}
|
|
50571
51033
|
*/
|
|
50572
51034
|
getNonEmployeeSource(sourceId: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<NonEmployeeSourceBeta>>;
|
|
@@ -50574,22 +51036,26 @@ export declare const NonEmployeeLifecycleManagementBetaApiFp: (configuration?: C
|
|
|
50574
51036
|
* This API gets the list of schema attributes for the specified Non-Employee SourceId. There are 8 mandatory attributes added to each new Non-Employee Source automatically. Additionaly, user can add up to 10 custom attributes. This interface returns all the mandatory attributes followed by any custom attributes. At most, a total of 18 attributes will be returned.
|
|
50575
51037
|
* @summary List schema attributes non-employee source
|
|
50576
51038
|
* @param {string} sourceId The Source id
|
|
51039
|
+
* @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.
|
|
51040
|
+
* @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.
|
|
50577
51041
|
* @param {*} [axiosOptions] Override http request option.
|
|
51042
|
+
* @deprecated
|
|
50578
51043
|
* @throws {RequiredError}
|
|
50579
51044
|
*/
|
|
50580
|
-
getNonEmployeeSourceSchemaAttributes(sourceId: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<NonEmployeeSchemaAttributeBeta>>>;
|
|
51045
|
+
getNonEmployeeSourceSchemaAttributes(sourceId: string, limit?: number, offset?: number, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<NonEmployeeSchemaAttributeBeta>>>;
|
|
50581
51046
|
/**
|
|
50582
51047
|
* This post will import, or update, Non-Employee records found in the CSV. Request will need the following security scope: \'idn:nesr:create\'
|
|
50583
51048
|
* @summary Imports, or updates, non-employee records
|
|
50584
51049
|
* @param {string} id Source Id (UUID)
|
|
50585
51050
|
* @param {File} data
|
|
50586
51051
|
* @param {*} [axiosOptions] Override http request option.
|
|
51052
|
+
* @deprecated
|
|
50587
51053
|
* @throws {RequiredError}
|
|
50588
51054
|
*/
|
|
50589
51055
|
importNonEmployeeRecordsInBulk(id: string, data: File, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<NonEmployeeBulkUploadJobBeta>>;
|
|
50590
51056
|
/**
|
|
50591
51057
|
* This gets a list of non-employee approval requests.
|
|
50592
|
-
* @summary
|
|
51058
|
+
* @summary List of non-employee approval requests
|
|
50593
51059
|
* @param {string} [requestedFor] The identity for whom the request was made. *me* indicates the current user.
|
|
50594
51060
|
* @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.
|
|
50595
51061
|
* @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.
|
|
@@ -50597,6 +51063,7 @@ export declare const NonEmployeeLifecycleManagementBetaApiFp: (configuration?: C
|
|
|
50597
51063
|
* @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: **approvalStatus**: *eq*
|
|
50598
51064
|
* @param {string} [sorters] Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) Sorting is supported for the following fields: **created, modified**
|
|
50599
51065
|
* @param {*} [axiosOptions] Override http request option.
|
|
51066
|
+
* @deprecated
|
|
50600
51067
|
* @throws {RequiredError}
|
|
50601
51068
|
*/
|
|
50602
51069
|
listNonEmployeeApproval(requestedFor?: string, limit?: number, offset?: number, count?: boolean, filters?: string, sorters?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<NonEmployeeApprovalItemBeta>>>;
|
|
@@ -50609,6 +51076,7 @@ export declare const NonEmployeeLifecycleManagementBetaApiFp: (configuration?: C
|
|
|
50609
51076
|
* @param {string} [sorters] Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) Sorting is supported for the following fields: **id, accountName, sourceId, manager, firstName, lastName, email, phone, startDate, endDate, created, modified**
|
|
50610
51077
|
* @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: **sourceId**: *eq*
|
|
50611
51078
|
* @param {*} [axiosOptions] Override http request option.
|
|
51079
|
+
* @deprecated
|
|
50612
51080
|
* @throws {RequiredError}
|
|
50613
51081
|
*/
|
|
50614
51082
|
listNonEmployeeRecords(limit?: number, offset?: number, count?: boolean, sorters?: string, filters?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<NonEmployeeRecordBeta>>>;
|
|
@@ -50622,6 +51090,7 @@ export declare const NonEmployeeLifecycleManagementBetaApiFp: (configuration?: C
|
|
|
50622
51090
|
* @param {string} [sorters] Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) Sorting is supported for the following fields: **created, approvalStatus, firstName, lastName, email, phone, accountName, startDate, endDate**
|
|
50623
51091
|
* @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: **sourceId**: *eq*
|
|
50624
51092
|
* @param {*} [axiosOptions] Override http request option.
|
|
51093
|
+
* @deprecated
|
|
50625
51094
|
* @throws {RequiredError}
|
|
50626
51095
|
*/
|
|
50627
51096
|
listNonEmployeeRequests(requestedFor: string, limit?: number, offset?: number, count?: boolean, sorters?: string, filters?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<NonEmployeeRequestBeta>>>;
|
|
@@ -50635,6 +51104,7 @@ export declare const NonEmployeeLifecycleManagementBetaApiFp: (configuration?: C
|
|
|
50635
51104
|
* @param {boolean} [nonEmployeeCount] Flag that determines whether the API will return a non-employee count associated with the source.
|
|
50636
51105
|
* @param {string} [sorters] Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) Sorting is supported for the following fields: **name, created, sourceId**
|
|
50637
51106
|
* @param {*} [axiosOptions] Override http request option.
|
|
51107
|
+
* @deprecated
|
|
50638
51108
|
* @throws {RequiredError}
|
|
50639
51109
|
*/
|
|
50640
51110
|
listNonEmployeeSources(limit?: number, offset?: number, count?: boolean, requestedFor?: string, nonEmployeeCount?: boolean, sorters?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<NonEmployeeSourceWithNECountBeta>>>;
|
|
@@ -50644,6 +51114,7 @@ export declare const NonEmployeeLifecycleManagementBetaApiFp: (configuration?: C
|
|
|
50644
51114
|
* @param {string} id Non-employee record id (UUID)
|
|
50645
51115
|
* @param {Array<JsonPatchOperationBeta>} jsonPatchOperationBeta A list of non-employee update operations according to the [JSON Patch](https://tools.ietf.org/html/rfc6902) standard. Attributes are restricted by user type. Owner of source can update end date. Organization admins can update all available fields.
|
|
50646
51116
|
* @param {*} [axiosOptions] Override http request option.
|
|
51117
|
+
* @deprecated
|
|
50647
51118
|
* @throws {RequiredError}
|
|
50648
51119
|
*/
|
|
50649
51120
|
patchNonEmployeeRecord(id: string, jsonPatchOperationBeta: Array<JsonPatchOperationBeta>, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<NonEmployeeRecordBeta>>;
|
|
@@ -50654,6 +51125,7 @@ export declare const NonEmployeeLifecycleManagementBetaApiFp: (configuration?: C
|
|
|
50654
51125
|
* @param {string} sourceId The Source id
|
|
50655
51126
|
* @param {Array<JsonPatchOperationBeta>} jsonPatchOperationBeta A list of schema attribute update operations according to the [JSON Patch](https://tools.ietf.org/html/rfc6902) standard. The following properties are allowed for update \':\' \'label\', \'helpText\', \'placeholder\', \'required\'.
|
|
50656
51127
|
* @param {*} [axiosOptions] Override http request option.
|
|
51128
|
+
* @deprecated
|
|
50657
51129
|
* @throws {RequiredError}
|
|
50658
51130
|
*/
|
|
50659
51131
|
patchNonEmployeeSchemaAttribute(attributeId: string, sourceId: string, jsonPatchOperationBeta: Array<JsonPatchOperationBeta>, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<NonEmployeeSchemaAttributeBeta>>;
|
|
@@ -50663,27 +51135,30 @@ export declare const NonEmployeeLifecycleManagementBetaApiFp: (configuration?: C
|
|
|
50663
51135
|
* @param {string} sourceId Source Id
|
|
50664
51136
|
* @param {Array<JsonPatchOperationBeta>} jsonPatchOperationBeta A list of non-employee source update operations according to the [JSON Patch](https://tools.ietf.org/html/rfc6902) standard.
|
|
50665
51137
|
* @param {*} [axiosOptions] Override http request option.
|
|
51138
|
+
* @deprecated
|
|
50666
51139
|
* @throws {RequiredError}
|
|
50667
51140
|
*/
|
|
50668
51141
|
patchNonEmployeeSource(sourceId: string, jsonPatchOperationBeta: Array<JsonPatchOperationBeta>, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<NonEmployeeSourceBeta>>;
|
|
51142
|
+
/**
|
|
51143
|
+
* This request will update a non-employee record.
|
|
51144
|
+
* @summary Update non-employee record
|
|
51145
|
+
* @param {string} id Non-employee record id (UUID)
|
|
51146
|
+
* @param {NonEmployeeRequestBodyBeta} nonEmployeeRequestBodyBeta Non-employee record creation request body. Attributes are restricted by user type. Owner of source can update end date. Organization admins can update all available fields.
|
|
51147
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
51148
|
+
* @deprecated
|
|
51149
|
+
* @throws {RequiredError}
|
|
51150
|
+
*/
|
|
51151
|
+
putNonEmployeeRecord(id: string, nonEmployeeRequestBodyBeta: NonEmployeeRequestBodyBeta, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<NonEmployeeRecordBeta>>;
|
|
50669
51152
|
/**
|
|
50670
51153
|
* This endpoint will reject an approval item request and notify user.
|
|
50671
51154
|
* @summary Reject a non-employee request
|
|
50672
51155
|
* @param {string} id Non-Employee approval item id (UUID)
|
|
50673
51156
|
* @param {NonEmployeeRejectApprovalDecisionBeta} nonEmployeeRejectApprovalDecisionBeta
|
|
50674
51157
|
* @param {*} [axiosOptions] Override http request option.
|
|
51158
|
+
* @deprecated
|
|
50675
51159
|
* @throws {RequiredError}
|
|
50676
51160
|
*/
|
|
50677
51161
|
rejectNonEmployeeRequest(id: string, nonEmployeeRejectApprovalDecisionBeta: NonEmployeeRejectApprovalDecisionBeta, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<NonEmployeeApprovalItemBeta>>;
|
|
50678
|
-
/**
|
|
50679
|
-
* This request will update a non-employee record.
|
|
50680
|
-
* @summary Update non-employee record
|
|
50681
|
-
* @param {string} id Non-employee record id (UUID)
|
|
50682
|
-
* @param {NonEmployeeRequestBodyBeta} nonEmployeeRequestBodyBeta Non-employee record creation request body. Attributes are restricted by user type. Owner of source can update end date. Organization admins can update all available fields.
|
|
50683
|
-
* @param {*} [axiosOptions] Override http request option.
|
|
50684
|
-
* @throws {RequiredError}
|
|
50685
|
-
*/
|
|
50686
|
-
updateNonEmployeeRecord(id: string, nonEmployeeRequestBodyBeta: NonEmployeeRequestBodyBeta, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<NonEmployeeRecordBeta>>;
|
|
50687
51162
|
};
|
|
50688
51163
|
/**
|
|
50689
51164
|
* NonEmployeeLifecycleManagementBetaApi - factory interface
|
|
@@ -50695,6 +51170,7 @@ export declare const NonEmployeeLifecycleManagementBetaApiFactory: (configuratio
|
|
|
50695
51170
|
* @summary Approve a non-employee request
|
|
50696
51171
|
* @param {NonEmployeeLifecycleManagementBetaApiApproveNonEmployeeRequestRequest} requestParameters Request parameters.
|
|
50697
51172
|
* @param {*} [axiosOptions] Override http request option.
|
|
51173
|
+
* @deprecated
|
|
50698
51174
|
* @throws {RequiredError}
|
|
50699
51175
|
*/
|
|
50700
51176
|
approveNonEmployeeRequest(requestParameters: NonEmployeeLifecycleManagementBetaApiApproveNonEmployeeRequestRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<NonEmployeeApprovalItemBeta>;
|
|
@@ -50703,6 +51179,7 @@ export declare const NonEmployeeLifecycleManagementBetaApiFactory: (configuratio
|
|
|
50703
51179
|
* @summary Create non-employee record
|
|
50704
51180
|
* @param {NonEmployeeLifecycleManagementBetaApiCreateNonEmployeeRecordRequest} requestParameters Request parameters.
|
|
50705
51181
|
* @param {*} [axiosOptions] Override http request option.
|
|
51182
|
+
* @deprecated
|
|
50706
51183
|
* @throws {RequiredError}
|
|
50707
51184
|
*/
|
|
50708
51185
|
createNonEmployeeRecord(requestParameters: NonEmployeeLifecycleManagementBetaApiCreateNonEmployeeRecordRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<NonEmployeeRecordBeta>;
|
|
@@ -50711,6 +51188,7 @@ export declare const NonEmployeeLifecycleManagementBetaApiFactory: (configuratio
|
|
|
50711
51188
|
* @summary Create non-employee request
|
|
50712
51189
|
* @param {NonEmployeeLifecycleManagementBetaApiCreateNonEmployeeRequestRequest} requestParameters Request parameters.
|
|
50713
51190
|
* @param {*} [axiosOptions] Override http request option.
|
|
51191
|
+
* @deprecated
|
|
50714
51192
|
* @throws {RequiredError}
|
|
50715
51193
|
*/
|
|
50716
51194
|
createNonEmployeeRequest(requestParameters: NonEmployeeLifecycleManagementBetaApiCreateNonEmployeeRequestRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<NonEmployeeRequestBeta>;
|
|
@@ -50719,6 +51197,7 @@ export declare const NonEmployeeLifecycleManagementBetaApiFactory: (configuratio
|
|
|
50719
51197
|
* @summary Create non-employee source
|
|
50720
51198
|
* @param {NonEmployeeLifecycleManagementBetaApiCreateNonEmployeeSourceRequest} requestParameters Request parameters.
|
|
50721
51199
|
* @param {*} [axiosOptions] Override http request option.
|
|
51200
|
+
* @deprecated
|
|
50722
51201
|
* @throws {RequiredError}
|
|
50723
51202
|
*/
|
|
50724
51203
|
createNonEmployeeSource(requestParameters: NonEmployeeLifecycleManagementBetaApiCreateNonEmployeeSourceRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<NonEmployeeSourceWithCloudExternalIdBeta>;
|
|
@@ -50727,6 +51206,7 @@ export declare const NonEmployeeLifecycleManagementBetaApiFactory: (configuratio
|
|
|
50727
51206
|
* @summary Create non-employee source schema attribute
|
|
50728
51207
|
* @param {NonEmployeeLifecycleManagementBetaApiCreateNonEmployeeSourceSchemaAttributesRequest} requestParameters Request parameters.
|
|
50729
51208
|
* @param {*} [axiosOptions] Override http request option.
|
|
51209
|
+
* @deprecated
|
|
50730
51210
|
* @throws {RequiredError}
|
|
50731
51211
|
*/
|
|
50732
51212
|
createNonEmployeeSourceSchemaAttributes(requestParameters: NonEmployeeLifecycleManagementBetaApiCreateNonEmployeeSourceSchemaAttributesRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<NonEmployeeSchemaAttributeBeta>;
|
|
@@ -50735,6 +51215,7 @@ export declare const NonEmployeeLifecycleManagementBetaApiFactory: (configuratio
|
|
|
50735
51215
|
* @summary Delete non-employee record
|
|
50736
51216
|
* @param {NonEmployeeLifecycleManagementBetaApiDeleteNonEmployeeRecordRequest} requestParameters Request parameters.
|
|
50737
51217
|
* @param {*} [axiosOptions] Override http request option.
|
|
51218
|
+
* @deprecated
|
|
50738
51219
|
* @throws {RequiredError}
|
|
50739
51220
|
*/
|
|
50740
51221
|
deleteNonEmployeeRecord(requestParameters: NonEmployeeLifecycleManagementBetaApiDeleteNonEmployeeRecordRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
@@ -50743,6 +51224,7 @@ export declare const NonEmployeeLifecycleManagementBetaApiFactory: (configuratio
|
|
|
50743
51224
|
* @summary Delete multiple non-employee records
|
|
50744
51225
|
* @param {NonEmployeeLifecycleManagementBetaApiDeleteNonEmployeeRecordInBulkRequest} requestParameters Request parameters.
|
|
50745
51226
|
* @param {*} [axiosOptions] Override http request option.
|
|
51227
|
+
* @deprecated
|
|
50746
51228
|
* @throws {RequiredError}
|
|
50747
51229
|
*/
|
|
50748
51230
|
deleteNonEmployeeRecordInBulk(requestParameters: NonEmployeeLifecycleManagementBetaApiDeleteNonEmployeeRecordInBulkRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
@@ -50751,6 +51233,7 @@ export declare const NonEmployeeLifecycleManagementBetaApiFactory: (configuratio
|
|
|
50751
51233
|
* @summary Delete non-employee request
|
|
50752
51234
|
* @param {NonEmployeeLifecycleManagementBetaApiDeleteNonEmployeeRequestRequest} requestParameters Request parameters.
|
|
50753
51235
|
* @param {*} [axiosOptions] Override http request option.
|
|
51236
|
+
* @deprecated
|
|
50754
51237
|
* @throws {RequiredError}
|
|
50755
51238
|
*/
|
|
50756
51239
|
deleteNonEmployeeRequest(requestParameters: NonEmployeeLifecycleManagementBetaApiDeleteNonEmployeeRequestRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
@@ -50759,6 +51242,7 @@ export declare const NonEmployeeLifecycleManagementBetaApiFactory: (configuratio
|
|
|
50759
51242
|
* @summary Delete non-employee source\'s schema attribute
|
|
50760
51243
|
* @param {NonEmployeeLifecycleManagementBetaApiDeleteNonEmployeeSchemaAttributeRequest} requestParameters Request parameters.
|
|
50761
51244
|
* @param {*} [axiosOptions] Override http request option.
|
|
51245
|
+
* @deprecated
|
|
50762
51246
|
* @throws {RequiredError}
|
|
50763
51247
|
*/
|
|
50764
51248
|
deleteNonEmployeeSchemaAttribute(requestParameters: NonEmployeeLifecycleManagementBetaApiDeleteNonEmployeeSchemaAttributeRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
@@ -50767,6 +51251,7 @@ export declare const NonEmployeeLifecycleManagementBetaApiFactory: (configuratio
|
|
|
50767
51251
|
* @summary Delete non-employee source
|
|
50768
51252
|
* @param {NonEmployeeLifecycleManagementBetaApiDeleteNonEmployeeSourceRequest} requestParameters Request parameters.
|
|
50769
51253
|
* @param {*} [axiosOptions] Override http request option.
|
|
51254
|
+
* @deprecated
|
|
50770
51255
|
* @throws {RequiredError}
|
|
50771
51256
|
*/
|
|
50772
51257
|
deleteNonEmployeeSource(requestParameters: NonEmployeeLifecycleManagementBetaApiDeleteNonEmployeeSourceRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
@@ -50775,38 +51260,25 @@ export declare const NonEmployeeLifecycleManagementBetaApiFactory: (configuratio
|
|
|
50775
51260
|
* @summary Delete all custom schema attributes
|
|
50776
51261
|
* @param {NonEmployeeLifecycleManagementBetaApiDeleteNonEmployeeSourceSchemaAttributesRequest} requestParameters Request parameters.
|
|
50777
51262
|
* @param {*} [axiosOptions] Override http request option.
|
|
51263
|
+
* @deprecated
|
|
50778
51264
|
* @throws {RequiredError}
|
|
50779
51265
|
*/
|
|
50780
51266
|
deleteNonEmployeeSourceSchemaAttributes(requestParameters: NonEmployeeLifecycleManagementBetaApiDeleteNonEmployeeSourceSchemaAttributesRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
50781
|
-
/**
|
|
50782
|
-
* This requests a CSV download for all non-employees from a provided source.
|
|
50783
|
-
* @summary Exports non-employee records to csv
|
|
50784
|
-
* @param {NonEmployeeLifecycleManagementBetaApiExportNonEmployeeRecordsRequest} requestParameters Request parameters.
|
|
50785
|
-
* @param {*} [axiosOptions] Override http request option.
|
|
50786
|
-
* @throws {RequiredError}
|
|
50787
|
-
*/
|
|
50788
|
-
exportNonEmployeeRecords(requestParameters: NonEmployeeLifecycleManagementBetaApiExportNonEmployeeRecordsRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
50789
|
-
/**
|
|
50790
|
-
* This requests a download for the Source Schema Template for a provided source. Request will require the following security scope: idn:nesr:read\'
|
|
50791
|
-
* @summary Exports source schema template
|
|
50792
|
-
* @param {NonEmployeeLifecycleManagementBetaApiExportNonEmployeeSourceSchemaTemplateRequest} requestParameters Request parameters.
|
|
50793
|
-
* @param {*} [axiosOptions] Override http request option.
|
|
50794
|
-
* @throws {RequiredError}
|
|
50795
|
-
*/
|
|
50796
|
-
exportNonEmployeeSourceSchemaTemplate(requestParameters: NonEmployeeLifecycleManagementBetaApiExportNonEmployeeSourceSchemaTemplateRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
50797
51267
|
/**
|
|
50798
51268
|
* Approves a non-employee approval request and notifies the next approver.
|
|
50799
|
-
* @summary
|
|
51269
|
+
* @summary A non-employee approval item detail
|
|
50800
51270
|
* @param {NonEmployeeLifecycleManagementBetaApiGetNonEmployeeApprovalRequest} requestParameters Request parameters.
|
|
50801
51271
|
* @param {*} [axiosOptions] Override http request option.
|
|
51272
|
+
* @deprecated
|
|
50802
51273
|
* @throws {RequiredError}
|
|
50803
51274
|
*/
|
|
50804
51275
|
getNonEmployeeApproval(requestParameters: NonEmployeeLifecycleManagementBetaApiGetNonEmployeeApprovalRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<NonEmployeeApprovalItemDetailBeta>;
|
|
50805
51276
|
/**
|
|
50806
51277
|
* This request will retrieve a summary of non-employee approval requests. There are two contextual uses for the `requested-for` path parameter: 1. The current user is the Org Admin, in which case he or she may request a summary of all non-employee approval requests assigned to a particular approver by passing in that approver\'s id. 2. The current user is an approver, in which case \"me\" should be provided as the `requested-for` value. This will provide the approver with a summary of the approval items assigned to him or her.
|
|
50807
|
-
* @summary
|
|
51278
|
+
* @summary Summary of non-employee approval requests
|
|
50808
51279
|
* @param {NonEmployeeLifecycleManagementBetaApiGetNonEmployeeApprovalSummaryRequest} requestParameters Request parameters.
|
|
50809
51280
|
* @param {*} [axiosOptions] Override http request option.
|
|
51281
|
+
* @deprecated
|
|
50810
51282
|
* @throws {RequiredError}
|
|
50811
51283
|
*/
|
|
50812
51284
|
getNonEmployeeApprovalSummary(requestParameters: NonEmployeeLifecycleManagementBetaApiGetNonEmployeeApprovalSummaryRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<NonEmployeeApprovalSummaryBeta>;
|
|
@@ -50815,14 +51287,34 @@ export declare const NonEmployeeLifecycleManagementBetaApiFactory: (configuratio
|
|
|
50815
51287
|
* @summary Bulk upload status on source
|
|
50816
51288
|
* @param {NonEmployeeLifecycleManagementBetaApiGetNonEmployeeBulkUploadStatusRequest} requestParameters Request parameters.
|
|
50817
51289
|
* @param {*} [axiosOptions] Override http request option.
|
|
51290
|
+
* @deprecated
|
|
50818
51291
|
* @throws {RequiredError}
|
|
50819
51292
|
*/
|
|
50820
51293
|
getNonEmployeeBulkUploadStatus(requestParameters: NonEmployeeLifecycleManagementBetaApiGetNonEmployeeBulkUploadStatusRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<NonEmployeeBulkUploadStatusBeta>;
|
|
51294
|
+
/**
|
|
51295
|
+
* This requests a CSV download for all non-employees from a provided source.
|
|
51296
|
+
* @summary Exports non-employee records to csv
|
|
51297
|
+
* @param {NonEmployeeLifecycleManagementBetaApiGetNonEmployeeExportRecordsRequest} requestParameters Request parameters.
|
|
51298
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
51299
|
+
* @deprecated
|
|
51300
|
+
* @throws {RequiredError}
|
|
51301
|
+
*/
|
|
51302
|
+
getNonEmployeeExportRecords(requestParameters: NonEmployeeLifecycleManagementBetaApiGetNonEmployeeExportRecordsRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
51303
|
+
/**
|
|
51304
|
+
* This requests a download for the Source Schema Template for a provided source. Request will require the following security scope: idn:nesr:read\'
|
|
51305
|
+
* @summary Exports source schema template
|
|
51306
|
+
* @param {NonEmployeeLifecycleManagementBetaApiGetNonEmployeeExportSourceSchemaTemplateRequest} requestParameters Request parameters.
|
|
51307
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
51308
|
+
* @deprecated
|
|
51309
|
+
* @throws {RequiredError}
|
|
51310
|
+
*/
|
|
51311
|
+
getNonEmployeeExportSourceSchemaTemplate(requestParameters: NonEmployeeLifecycleManagementBetaApiGetNonEmployeeExportSourceSchemaTemplateRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
50821
51312
|
/**
|
|
50822
51313
|
* This gets a non-employee record.
|
|
50823
51314
|
* @summary Get a non-employee record
|
|
50824
51315
|
* @param {NonEmployeeLifecycleManagementBetaApiGetNonEmployeeRecordRequest} requestParameters Request parameters.
|
|
50825
51316
|
* @param {*} [axiosOptions] Override http request option.
|
|
51317
|
+
* @deprecated
|
|
50826
51318
|
* @throws {RequiredError}
|
|
50827
51319
|
*/
|
|
50828
51320
|
getNonEmployeeRecord(requestParameters: NonEmployeeLifecycleManagementBetaApiGetNonEmployeeRecordRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<NonEmployeeRecordBeta>;
|
|
@@ -50831,6 +51323,7 @@ export declare const NonEmployeeLifecycleManagementBetaApiFactory: (configuratio
|
|
|
50831
51323
|
* @summary Get a non-employee request
|
|
50832
51324
|
* @param {NonEmployeeLifecycleManagementBetaApiGetNonEmployeeRequestRequest} requestParameters Request parameters.
|
|
50833
51325
|
* @param {*} [axiosOptions] Override http request option.
|
|
51326
|
+
* @deprecated
|
|
50834
51327
|
* @throws {RequiredError}
|
|
50835
51328
|
*/
|
|
50836
51329
|
getNonEmployeeRequest(requestParameters: NonEmployeeLifecycleManagementBetaApiGetNonEmployeeRequestRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<NonEmployeeRequestBeta>;
|
|
@@ -50839,6 +51332,7 @@ export declare const NonEmployeeLifecycleManagementBetaApiFactory: (configuratio
|
|
|
50839
51332
|
* @summary Get summary of non-employee requests
|
|
50840
51333
|
* @param {NonEmployeeLifecycleManagementBetaApiGetNonEmployeeRequestSummaryRequest} requestParameters Request parameters.
|
|
50841
51334
|
* @param {*} [axiosOptions] Override http request option.
|
|
51335
|
+
* @deprecated
|
|
50842
51336
|
* @throws {RequiredError}
|
|
50843
51337
|
*/
|
|
50844
51338
|
getNonEmployeeRequestSummary(requestParameters: NonEmployeeLifecycleManagementBetaApiGetNonEmployeeRequestSummaryRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<NonEmployeeRequestSummaryBeta>;
|
|
@@ -50847,6 +51341,7 @@ export declare const NonEmployeeLifecycleManagementBetaApiFactory: (configuratio
|
|
|
50847
51341
|
* @summary Get schema attribute non-employee source
|
|
50848
51342
|
* @param {NonEmployeeLifecycleManagementBetaApiGetNonEmployeeSchemaAttributeRequest} requestParameters Request parameters.
|
|
50849
51343
|
* @param {*} [axiosOptions] Override http request option.
|
|
51344
|
+
* @deprecated
|
|
50850
51345
|
* @throws {RequiredError}
|
|
50851
51346
|
*/
|
|
50852
51347
|
getNonEmployeeSchemaAttribute(requestParameters: NonEmployeeLifecycleManagementBetaApiGetNonEmployeeSchemaAttributeRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<NonEmployeeSchemaAttributeBeta>;
|
|
@@ -50855,6 +51350,7 @@ export declare const NonEmployeeLifecycleManagementBetaApiFactory: (configuratio
|
|
|
50855
51350
|
* @summary Get a non-employee source
|
|
50856
51351
|
* @param {NonEmployeeLifecycleManagementBetaApiGetNonEmployeeSourceRequest} requestParameters Request parameters.
|
|
50857
51352
|
* @param {*} [axiosOptions] Override http request option.
|
|
51353
|
+
* @deprecated
|
|
50858
51354
|
* @throws {RequiredError}
|
|
50859
51355
|
*/
|
|
50860
51356
|
getNonEmployeeSource(requestParameters: NonEmployeeLifecycleManagementBetaApiGetNonEmployeeSourceRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<NonEmployeeSourceBeta>;
|
|
@@ -50863,6 +51359,7 @@ export declare const NonEmployeeLifecycleManagementBetaApiFactory: (configuratio
|
|
|
50863
51359
|
* @summary List schema attributes non-employee source
|
|
50864
51360
|
* @param {NonEmployeeLifecycleManagementBetaApiGetNonEmployeeSourceSchemaAttributesRequest} requestParameters Request parameters.
|
|
50865
51361
|
* @param {*} [axiosOptions] Override http request option.
|
|
51362
|
+
* @deprecated
|
|
50866
51363
|
* @throws {RequiredError}
|
|
50867
51364
|
*/
|
|
50868
51365
|
getNonEmployeeSourceSchemaAttributes(requestParameters: NonEmployeeLifecycleManagementBetaApiGetNonEmployeeSourceSchemaAttributesRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<NonEmployeeSchemaAttributeBeta>>;
|
|
@@ -50871,14 +51368,16 @@ export declare const NonEmployeeLifecycleManagementBetaApiFactory: (configuratio
|
|
|
50871
51368
|
* @summary Imports, or updates, non-employee records
|
|
50872
51369
|
* @param {NonEmployeeLifecycleManagementBetaApiImportNonEmployeeRecordsInBulkRequest} requestParameters Request parameters.
|
|
50873
51370
|
* @param {*} [axiosOptions] Override http request option.
|
|
51371
|
+
* @deprecated
|
|
50874
51372
|
* @throws {RequiredError}
|
|
50875
51373
|
*/
|
|
50876
51374
|
importNonEmployeeRecordsInBulk(requestParameters: NonEmployeeLifecycleManagementBetaApiImportNonEmployeeRecordsInBulkRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<NonEmployeeBulkUploadJobBeta>;
|
|
50877
51375
|
/**
|
|
50878
51376
|
* This gets a list of non-employee approval requests.
|
|
50879
|
-
* @summary
|
|
51377
|
+
* @summary List of non-employee approval requests
|
|
50880
51378
|
* @param {NonEmployeeLifecycleManagementBetaApiListNonEmployeeApprovalRequest} requestParameters Request parameters.
|
|
50881
51379
|
* @param {*} [axiosOptions] Override http request option.
|
|
51380
|
+
* @deprecated
|
|
50882
51381
|
* @throws {RequiredError}
|
|
50883
51382
|
*/
|
|
50884
51383
|
listNonEmployeeApproval(requestParameters?: NonEmployeeLifecycleManagementBetaApiListNonEmployeeApprovalRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<NonEmployeeApprovalItemBeta>>;
|
|
@@ -50887,6 +51386,7 @@ export declare const NonEmployeeLifecycleManagementBetaApiFactory: (configuratio
|
|
|
50887
51386
|
* @summary List non-employee records
|
|
50888
51387
|
* @param {NonEmployeeLifecycleManagementBetaApiListNonEmployeeRecordsRequest} requestParameters Request parameters.
|
|
50889
51388
|
* @param {*} [axiosOptions] Override http request option.
|
|
51389
|
+
* @deprecated
|
|
50890
51390
|
* @throws {RequiredError}
|
|
50891
51391
|
*/
|
|
50892
51392
|
listNonEmployeeRecords(requestParameters?: NonEmployeeLifecycleManagementBetaApiListNonEmployeeRecordsRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<NonEmployeeRecordBeta>>;
|
|
@@ -50895,6 +51395,7 @@ export declare const NonEmployeeLifecycleManagementBetaApiFactory: (configuratio
|
|
|
50895
51395
|
* @summary List non-employee requests
|
|
50896
51396
|
* @param {NonEmployeeLifecycleManagementBetaApiListNonEmployeeRequestsRequest} requestParameters Request parameters.
|
|
50897
51397
|
* @param {*} [axiosOptions] Override http request option.
|
|
51398
|
+
* @deprecated
|
|
50898
51399
|
* @throws {RequiredError}
|
|
50899
51400
|
*/
|
|
50900
51401
|
listNonEmployeeRequests(requestParameters: NonEmployeeLifecycleManagementBetaApiListNonEmployeeRequestsRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<NonEmployeeRequestBeta>>;
|
|
@@ -50903,6 +51404,7 @@ export declare const NonEmployeeLifecycleManagementBetaApiFactory: (configuratio
|
|
|
50903
51404
|
* @summary List non-employee sources
|
|
50904
51405
|
* @param {NonEmployeeLifecycleManagementBetaApiListNonEmployeeSourcesRequest} requestParameters Request parameters.
|
|
50905
51406
|
* @param {*} [axiosOptions] Override http request option.
|
|
51407
|
+
* @deprecated
|
|
50906
51408
|
* @throws {RequiredError}
|
|
50907
51409
|
*/
|
|
50908
51410
|
listNonEmployeeSources(requestParameters?: NonEmployeeLifecycleManagementBetaApiListNonEmployeeSourcesRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<NonEmployeeSourceWithNECountBeta>>;
|
|
@@ -50911,6 +51413,7 @@ export declare const NonEmployeeLifecycleManagementBetaApiFactory: (configuratio
|
|
|
50911
51413
|
* @summary Patch non-employee record
|
|
50912
51414
|
* @param {NonEmployeeLifecycleManagementBetaApiPatchNonEmployeeRecordRequest} requestParameters Request parameters.
|
|
50913
51415
|
* @param {*} [axiosOptions] Override http request option.
|
|
51416
|
+
* @deprecated
|
|
50914
51417
|
* @throws {RequiredError}
|
|
50915
51418
|
*/
|
|
50916
51419
|
patchNonEmployeeRecord(requestParameters: NonEmployeeLifecycleManagementBetaApiPatchNonEmployeeRecordRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<NonEmployeeRecordBeta>;
|
|
@@ -50919,6 +51422,7 @@ export declare const NonEmployeeLifecycleManagementBetaApiFactory: (configuratio
|
|
|
50919
51422
|
* @summary Patch non-employee source\'s schema attribute
|
|
50920
51423
|
* @param {NonEmployeeLifecycleManagementBetaApiPatchNonEmployeeSchemaAttributeRequest} requestParameters Request parameters.
|
|
50921
51424
|
* @param {*} [axiosOptions] Override http request option.
|
|
51425
|
+
* @deprecated
|
|
50922
51426
|
* @throws {RequiredError}
|
|
50923
51427
|
*/
|
|
50924
51428
|
patchNonEmployeeSchemaAttribute(requestParameters: NonEmployeeLifecycleManagementBetaApiPatchNonEmployeeSchemaAttributeRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<NonEmployeeSchemaAttributeBeta>;
|
|
@@ -50927,25 +51431,28 @@ export declare const NonEmployeeLifecycleManagementBetaApiFactory: (configuratio
|
|
|
50927
51431
|
* @summary Patch a non-employee source
|
|
50928
51432
|
* @param {NonEmployeeLifecycleManagementBetaApiPatchNonEmployeeSourceRequest} requestParameters Request parameters.
|
|
50929
51433
|
* @param {*} [axiosOptions] Override http request option.
|
|
51434
|
+
* @deprecated
|
|
50930
51435
|
* @throws {RequiredError}
|
|
50931
51436
|
*/
|
|
50932
51437
|
patchNonEmployeeSource(requestParameters: NonEmployeeLifecycleManagementBetaApiPatchNonEmployeeSourceRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<NonEmployeeSourceBeta>;
|
|
50933
51438
|
/**
|
|
50934
|
-
* This
|
|
50935
|
-
* @summary
|
|
50936
|
-
* @param {
|
|
51439
|
+
* This request will update a non-employee record.
|
|
51440
|
+
* @summary Update non-employee record
|
|
51441
|
+
* @param {NonEmployeeLifecycleManagementBetaApiPutNonEmployeeRecordRequest} requestParameters Request parameters.
|
|
50937
51442
|
* @param {*} [axiosOptions] Override http request option.
|
|
51443
|
+
* @deprecated
|
|
50938
51444
|
* @throws {RequiredError}
|
|
50939
51445
|
*/
|
|
50940
|
-
|
|
51446
|
+
putNonEmployeeRecord(requestParameters: NonEmployeeLifecycleManagementBetaApiPutNonEmployeeRecordRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<NonEmployeeRecordBeta>;
|
|
50941
51447
|
/**
|
|
50942
|
-
* This
|
|
50943
|
-
* @summary
|
|
50944
|
-
* @param {
|
|
51448
|
+
* This endpoint will reject an approval item request and notify user.
|
|
51449
|
+
* @summary Reject a non-employee request
|
|
51450
|
+
* @param {NonEmployeeLifecycleManagementBetaApiRejectNonEmployeeRequestRequest} requestParameters Request parameters.
|
|
50945
51451
|
* @param {*} [axiosOptions] Override http request option.
|
|
51452
|
+
* @deprecated
|
|
50946
51453
|
* @throws {RequiredError}
|
|
50947
51454
|
*/
|
|
50948
|
-
|
|
51455
|
+
rejectNonEmployeeRequest(requestParameters: NonEmployeeLifecycleManagementBetaApiRejectNonEmployeeRequestRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<NonEmployeeApprovalItemBeta>;
|
|
50949
51456
|
};
|
|
50950
51457
|
/**
|
|
50951
51458
|
* Request parameters for approveNonEmployeeRequest operation in NonEmployeeLifecycleManagementBetaApi.
|
|
@@ -51108,32 +51615,6 @@ export interface NonEmployeeLifecycleManagementBetaApiDeleteNonEmployeeSourceSch
|
|
|
51108
51615
|
*/
|
|
51109
51616
|
readonly sourceId: string;
|
|
51110
51617
|
}
|
|
51111
|
-
/**
|
|
51112
|
-
* Request parameters for exportNonEmployeeRecords operation in NonEmployeeLifecycleManagementBetaApi.
|
|
51113
|
-
* @export
|
|
51114
|
-
* @interface NonEmployeeLifecycleManagementBetaApiExportNonEmployeeRecordsRequest
|
|
51115
|
-
*/
|
|
51116
|
-
export interface NonEmployeeLifecycleManagementBetaApiExportNonEmployeeRecordsRequest {
|
|
51117
|
-
/**
|
|
51118
|
-
* Source Id (UUID)
|
|
51119
|
-
* @type {string}
|
|
51120
|
-
* @memberof NonEmployeeLifecycleManagementBetaApiExportNonEmployeeRecords
|
|
51121
|
-
*/
|
|
51122
|
-
readonly id: string;
|
|
51123
|
-
}
|
|
51124
|
-
/**
|
|
51125
|
-
* Request parameters for exportNonEmployeeSourceSchemaTemplate operation in NonEmployeeLifecycleManagementBetaApi.
|
|
51126
|
-
* @export
|
|
51127
|
-
* @interface NonEmployeeLifecycleManagementBetaApiExportNonEmployeeSourceSchemaTemplateRequest
|
|
51128
|
-
*/
|
|
51129
|
-
export interface NonEmployeeLifecycleManagementBetaApiExportNonEmployeeSourceSchemaTemplateRequest {
|
|
51130
|
-
/**
|
|
51131
|
-
* Source Id (UUID)
|
|
51132
|
-
* @type {string}
|
|
51133
|
-
* @memberof NonEmployeeLifecycleManagementBetaApiExportNonEmployeeSourceSchemaTemplate
|
|
51134
|
-
*/
|
|
51135
|
-
readonly id: string;
|
|
51136
|
-
}
|
|
51137
51618
|
/**
|
|
51138
51619
|
* Request parameters for getNonEmployeeApproval operation in NonEmployeeLifecycleManagementBetaApi.
|
|
51139
51620
|
* @export
|
|
@@ -51179,6 +51660,32 @@ export interface NonEmployeeLifecycleManagementBetaApiGetNonEmployeeBulkUploadSt
|
|
|
51179
51660
|
*/
|
|
51180
51661
|
readonly id: string;
|
|
51181
51662
|
}
|
|
51663
|
+
/**
|
|
51664
|
+
* Request parameters for getNonEmployeeExportRecords operation in NonEmployeeLifecycleManagementBetaApi.
|
|
51665
|
+
* @export
|
|
51666
|
+
* @interface NonEmployeeLifecycleManagementBetaApiGetNonEmployeeExportRecordsRequest
|
|
51667
|
+
*/
|
|
51668
|
+
export interface NonEmployeeLifecycleManagementBetaApiGetNonEmployeeExportRecordsRequest {
|
|
51669
|
+
/**
|
|
51670
|
+
* Source Id (UUID)
|
|
51671
|
+
* @type {string}
|
|
51672
|
+
* @memberof NonEmployeeLifecycleManagementBetaApiGetNonEmployeeExportRecords
|
|
51673
|
+
*/
|
|
51674
|
+
readonly id: string;
|
|
51675
|
+
}
|
|
51676
|
+
/**
|
|
51677
|
+
* Request parameters for getNonEmployeeExportSourceSchemaTemplate operation in NonEmployeeLifecycleManagementBetaApi.
|
|
51678
|
+
* @export
|
|
51679
|
+
* @interface NonEmployeeLifecycleManagementBetaApiGetNonEmployeeExportSourceSchemaTemplateRequest
|
|
51680
|
+
*/
|
|
51681
|
+
export interface NonEmployeeLifecycleManagementBetaApiGetNonEmployeeExportSourceSchemaTemplateRequest {
|
|
51682
|
+
/**
|
|
51683
|
+
* Source Id (UUID)
|
|
51684
|
+
* @type {string}
|
|
51685
|
+
* @memberof NonEmployeeLifecycleManagementBetaApiGetNonEmployeeExportSourceSchemaTemplate
|
|
51686
|
+
*/
|
|
51687
|
+
readonly id: string;
|
|
51688
|
+
}
|
|
51182
51689
|
/**
|
|
51183
51690
|
* Request parameters for getNonEmployeeRecord operation in NonEmployeeLifecycleManagementBetaApi.
|
|
51184
51691
|
* @export
|
|
@@ -51262,6 +51769,18 @@ export interface NonEmployeeLifecycleManagementBetaApiGetNonEmployeeSourceSchema
|
|
|
51262
51769
|
* @memberof NonEmployeeLifecycleManagementBetaApiGetNonEmployeeSourceSchemaAttributes
|
|
51263
51770
|
*/
|
|
51264
51771
|
readonly sourceId: string;
|
|
51772
|
+
/**
|
|
51773
|
+
* Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
51774
|
+
* @type {number}
|
|
51775
|
+
* @memberof NonEmployeeLifecycleManagementBetaApiGetNonEmployeeSourceSchemaAttributes
|
|
51776
|
+
*/
|
|
51777
|
+
readonly limit?: number;
|
|
51778
|
+
/**
|
|
51779
|
+
* 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.
|
|
51780
|
+
* @type {number}
|
|
51781
|
+
* @memberof NonEmployeeLifecycleManagementBetaApiGetNonEmployeeSourceSchemaAttributes
|
|
51782
|
+
*/
|
|
51783
|
+
readonly offset?: number;
|
|
51265
51784
|
}
|
|
51266
51785
|
/**
|
|
51267
51786
|
* Request parameters for importNonEmployeeRecordsInBulk operation in NonEmployeeLifecycleManagementBetaApi.
|
|
@@ -51512,42 +52031,42 @@ export interface NonEmployeeLifecycleManagementBetaApiPatchNonEmployeeSourceRequ
|
|
|
51512
52031
|
readonly jsonPatchOperationBeta: Array<JsonPatchOperationBeta>;
|
|
51513
52032
|
}
|
|
51514
52033
|
/**
|
|
51515
|
-
* Request parameters for
|
|
52034
|
+
* Request parameters for putNonEmployeeRecord operation in NonEmployeeLifecycleManagementBetaApi.
|
|
51516
52035
|
* @export
|
|
51517
|
-
* @interface
|
|
52036
|
+
* @interface NonEmployeeLifecycleManagementBetaApiPutNonEmployeeRecordRequest
|
|
51518
52037
|
*/
|
|
51519
|
-
export interface
|
|
52038
|
+
export interface NonEmployeeLifecycleManagementBetaApiPutNonEmployeeRecordRequest {
|
|
51520
52039
|
/**
|
|
51521
|
-
* Non-
|
|
52040
|
+
* Non-employee record id (UUID)
|
|
51522
52041
|
* @type {string}
|
|
51523
|
-
* @memberof
|
|
52042
|
+
* @memberof NonEmployeeLifecycleManagementBetaApiPutNonEmployeeRecord
|
|
51524
52043
|
*/
|
|
51525
52044
|
readonly id: string;
|
|
51526
52045
|
/**
|
|
51527
|
-
*
|
|
51528
|
-
* @type {
|
|
51529
|
-
* @memberof
|
|
52046
|
+
* Non-employee record creation request body. Attributes are restricted by user type. Owner of source can update end date. Organization admins can update all available fields.
|
|
52047
|
+
* @type {NonEmployeeRequestBodyBeta}
|
|
52048
|
+
* @memberof NonEmployeeLifecycleManagementBetaApiPutNonEmployeeRecord
|
|
51530
52049
|
*/
|
|
51531
|
-
readonly
|
|
52050
|
+
readonly nonEmployeeRequestBodyBeta: NonEmployeeRequestBodyBeta;
|
|
51532
52051
|
}
|
|
51533
52052
|
/**
|
|
51534
|
-
* Request parameters for
|
|
52053
|
+
* Request parameters for rejectNonEmployeeRequest operation in NonEmployeeLifecycleManagementBetaApi.
|
|
51535
52054
|
* @export
|
|
51536
|
-
* @interface
|
|
52055
|
+
* @interface NonEmployeeLifecycleManagementBetaApiRejectNonEmployeeRequestRequest
|
|
51537
52056
|
*/
|
|
51538
|
-
export interface
|
|
52057
|
+
export interface NonEmployeeLifecycleManagementBetaApiRejectNonEmployeeRequestRequest {
|
|
51539
52058
|
/**
|
|
51540
|
-
* Non-
|
|
52059
|
+
* Non-Employee approval item id (UUID)
|
|
51541
52060
|
* @type {string}
|
|
51542
|
-
* @memberof
|
|
52061
|
+
* @memberof NonEmployeeLifecycleManagementBetaApiRejectNonEmployeeRequest
|
|
51543
52062
|
*/
|
|
51544
52063
|
readonly id: string;
|
|
51545
52064
|
/**
|
|
51546
|
-
*
|
|
51547
|
-
* @type {
|
|
51548
|
-
* @memberof
|
|
52065
|
+
*
|
|
52066
|
+
* @type {NonEmployeeRejectApprovalDecisionBeta}
|
|
52067
|
+
* @memberof NonEmployeeLifecycleManagementBetaApiRejectNonEmployeeRequest
|
|
51549
52068
|
*/
|
|
51550
|
-
readonly
|
|
52069
|
+
readonly nonEmployeeRejectApprovalDecisionBeta: NonEmployeeRejectApprovalDecisionBeta;
|
|
51551
52070
|
}
|
|
51552
52071
|
/**
|
|
51553
52072
|
* NonEmployeeLifecycleManagementBetaApi - object-oriented interface
|
|
@@ -51561,6 +52080,7 @@ export declare class NonEmployeeLifecycleManagementBetaApi extends BaseAPI {
|
|
|
51561
52080
|
* @summary Approve a non-employee request
|
|
51562
52081
|
* @param {NonEmployeeLifecycleManagementBetaApiApproveNonEmployeeRequestRequest} requestParameters Request parameters.
|
|
51563
52082
|
* @param {*} [axiosOptions] Override http request option.
|
|
52083
|
+
* @deprecated
|
|
51564
52084
|
* @throws {RequiredError}
|
|
51565
52085
|
* @memberof NonEmployeeLifecycleManagementBetaApi
|
|
51566
52086
|
*/
|
|
@@ -51570,6 +52090,7 @@ export declare class NonEmployeeLifecycleManagementBetaApi extends BaseAPI {
|
|
|
51570
52090
|
* @summary Create non-employee record
|
|
51571
52091
|
* @param {NonEmployeeLifecycleManagementBetaApiCreateNonEmployeeRecordRequest} requestParameters Request parameters.
|
|
51572
52092
|
* @param {*} [axiosOptions] Override http request option.
|
|
52093
|
+
* @deprecated
|
|
51573
52094
|
* @throws {RequiredError}
|
|
51574
52095
|
* @memberof NonEmployeeLifecycleManagementBetaApi
|
|
51575
52096
|
*/
|
|
@@ -51579,6 +52100,7 @@ export declare class NonEmployeeLifecycleManagementBetaApi extends BaseAPI {
|
|
|
51579
52100
|
* @summary Create non-employee request
|
|
51580
52101
|
* @param {NonEmployeeLifecycleManagementBetaApiCreateNonEmployeeRequestRequest} requestParameters Request parameters.
|
|
51581
52102
|
* @param {*} [axiosOptions] Override http request option.
|
|
52103
|
+
* @deprecated
|
|
51582
52104
|
* @throws {RequiredError}
|
|
51583
52105
|
* @memberof NonEmployeeLifecycleManagementBetaApi
|
|
51584
52106
|
*/
|
|
@@ -51588,6 +52110,7 @@ export declare class NonEmployeeLifecycleManagementBetaApi extends BaseAPI {
|
|
|
51588
52110
|
* @summary Create non-employee source
|
|
51589
52111
|
* @param {NonEmployeeLifecycleManagementBetaApiCreateNonEmployeeSourceRequest} requestParameters Request parameters.
|
|
51590
52112
|
* @param {*} [axiosOptions] Override http request option.
|
|
52113
|
+
* @deprecated
|
|
51591
52114
|
* @throws {RequiredError}
|
|
51592
52115
|
* @memberof NonEmployeeLifecycleManagementBetaApi
|
|
51593
52116
|
*/
|
|
@@ -51597,6 +52120,7 @@ export declare class NonEmployeeLifecycleManagementBetaApi extends BaseAPI {
|
|
|
51597
52120
|
* @summary Create non-employee source schema attribute
|
|
51598
52121
|
* @param {NonEmployeeLifecycleManagementBetaApiCreateNonEmployeeSourceSchemaAttributesRequest} requestParameters Request parameters.
|
|
51599
52122
|
* @param {*} [axiosOptions] Override http request option.
|
|
52123
|
+
* @deprecated
|
|
51600
52124
|
* @throws {RequiredError}
|
|
51601
52125
|
* @memberof NonEmployeeLifecycleManagementBetaApi
|
|
51602
52126
|
*/
|
|
@@ -51606,6 +52130,7 @@ export declare class NonEmployeeLifecycleManagementBetaApi extends BaseAPI {
|
|
|
51606
52130
|
* @summary Delete non-employee record
|
|
51607
52131
|
* @param {NonEmployeeLifecycleManagementBetaApiDeleteNonEmployeeRecordRequest} requestParameters Request parameters.
|
|
51608
52132
|
* @param {*} [axiosOptions] Override http request option.
|
|
52133
|
+
* @deprecated
|
|
51609
52134
|
* @throws {RequiredError}
|
|
51610
52135
|
* @memberof NonEmployeeLifecycleManagementBetaApi
|
|
51611
52136
|
*/
|
|
@@ -51615,6 +52140,7 @@ export declare class NonEmployeeLifecycleManagementBetaApi extends BaseAPI {
|
|
|
51615
52140
|
* @summary Delete multiple non-employee records
|
|
51616
52141
|
* @param {NonEmployeeLifecycleManagementBetaApiDeleteNonEmployeeRecordInBulkRequest} requestParameters Request parameters.
|
|
51617
52142
|
* @param {*} [axiosOptions] Override http request option.
|
|
52143
|
+
* @deprecated
|
|
51618
52144
|
* @throws {RequiredError}
|
|
51619
52145
|
* @memberof NonEmployeeLifecycleManagementBetaApi
|
|
51620
52146
|
*/
|
|
@@ -51624,6 +52150,7 @@ export declare class NonEmployeeLifecycleManagementBetaApi extends BaseAPI {
|
|
|
51624
52150
|
* @summary Delete non-employee request
|
|
51625
52151
|
* @param {NonEmployeeLifecycleManagementBetaApiDeleteNonEmployeeRequestRequest} requestParameters Request parameters.
|
|
51626
52152
|
* @param {*} [axiosOptions] Override http request option.
|
|
52153
|
+
* @deprecated
|
|
51627
52154
|
* @throws {RequiredError}
|
|
51628
52155
|
* @memberof NonEmployeeLifecycleManagementBetaApi
|
|
51629
52156
|
*/
|
|
@@ -51633,6 +52160,7 @@ export declare class NonEmployeeLifecycleManagementBetaApi extends BaseAPI {
|
|
|
51633
52160
|
* @summary Delete non-employee source\'s schema attribute
|
|
51634
52161
|
* @param {NonEmployeeLifecycleManagementBetaApiDeleteNonEmployeeSchemaAttributeRequest} requestParameters Request parameters.
|
|
51635
52162
|
* @param {*} [axiosOptions] Override http request option.
|
|
52163
|
+
* @deprecated
|
|
51636
52164
|
* @throws {RequiredError}
|
|
51637
52165
|
* @memberof NonEmployeeLifecycleManagementBetaApi
|
|
51638
52166
|
*/
|
|
@@ -51642,6 +52170,7 @@ export declare class NonEmployeeLifecycleManagementBetaApi extends BaseAPI {
|
|
|
51642
52170
|
* @summary Delete non-employee source
|
|
51643
52171
|
* @param {NonEmployeeLifecycleManagementBetaApiDeleteNonEmployeeSourceRequest} requestParameters Request parameters.
|
|
51644
52172
|
* @param {*} [axiosOptions] Override http request option.
|
|
52173
|
+
* @deprecated
|
|
51645
52174
|
* @throws {RequiredError}
|
|
51646
52175
|
* @memberof NonEmployeeLifecycleManagementBetaApi
|
|
51647
52176
|
*/
|
|
@@ -51651,42 +52180,27 @@ export declare class NonEmployeeLifecycleManagementBetaApi extends BaseAPI {
|
|
|
51651
52180
|
* @summary Delete all custom schema attributes
|
|
51652
52181
|
* @param {NonEmployeeLifecycleManagementBetaApiDeleteNonEmployeeSourceSchemaAttributesRequest} requestParameters Request parameters.
|
|
51653
52182
|
* @param {*} [axiosOptions] Override http request option.
|
|
52183
|
+
* @deprecated
|
|
51654
52184
|
* @throws {RequiredError}
|
|
51655
52185
|
* @memberof NonEmployeeLifecycleManagementBetaApi
|
|
51656
52186
|
*/
|
|
51657
52187
|
deleteNonEmployeeSourceSchemaAttributes(requestParameters: NonEmployeeLifecycleManagementBetaApiDeleteNonEmployeeSourceSchemaAttributesRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
51658
|
-
/**
|
|
51659
|
-
* This requests a CSV download for all non-employees from a provided source.
|
|
51660
|
-
* @summary Exports non-employee records to csv
|
|
51661
|
-
* @param {NonEmployeeLifecycleManagementBetaApiExportNonEmployeeRecordsRequest} requestParameters Request parameters.
|
|
51662
|
-
* @param {*} [axiosOptions] Override http request option.
|
|
51663
|
-
* @throws {RequiredError}
|
|
51664
|
-
* @memberof NonEmployeeLifecycleManagementBetaApi
|
|
51665
|
-
*/
|
|
51666
|
-
exportNonEmployeeRecords(requestParameters: NonEmployeeLifecycleManagementBetaApiExportNonEmployeeRecordsRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
51667
|
-
/**
|
|
51668
|
-
* This requests a download for the Source Schema Template for a provided source. Request will require the following security scope: idn:nesr:read\'
|
|
51669
|
-
* @summary Exports source schema template
|
|
51670
|
-
* @param {NonEmployeeLifecycleManagementBetaApiExportNonEmployeeSourceSchemaTemplateRequest} requestParameters Request parameters.
|
|
51671
|
-
* @param {*} [axiosOptions] Override http request option.
|
|
51672
|
-
* @throws {RequiredError}
|
|
51673
|
-
* @memberof NonEmployeeLifecycleManagementBetaApi
|
|
51674
|
-
*/
|
|
51675
|
-
exportNonEmployeeSourceSchemaTemplate(requestParameters: NonEmployeeLifecycleManagementBetaApiExportNonEmployeeSourceSchemaTemplateRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
51676
52188
|
/**
|
|
51677
52189
|
* Approves a non-employee approval request and notifies the next approver.
|
|
51678
|
-
* @summary
|
|
52190
|
+
* @summary A non-employee approval item detail
|
|
51679
52191
|
* @param {NonEmployeeLifecycleManagementBetaApiGetNonEmployeeApprovalRequest} requestParameters Request parameters.
|
|
51680
52192
|
* @param {*} [axiosOptions] Override http request option.
|
|
52193
|
+
* @deprecated
|
|
51681
52194
|
* @throws {RequiredError}
|
|
51682
52195
|
* @memberof NonEmployeeLifecycleManagementBetaApi
|
|
51683
52196
|
*/
|
|
51684
52197
|
getNonEmployeeApproval(requestParameters: NonEmployeeLifecycleManagementBetaApiGetNonEmployeeApprovalRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<NonEmployeeApprovalItemDetailBeta, any>>;
|
|
51685
52198
|
/**
|
|
51686
52199
|
* This request will retrieve a summary of non-employee approval requests. There are two contextual uses for the `requested-for` path parameter: 1. The current user is the Org Admin, in which case he or she may request a summary of all non-employee approval requests assigned to a particular approver by passing in that approver\'s id. 2. The current user is an approver, in which case \"me\" should be provided as the `requested-for` value. This will provide the approver with a summary of the approval items assigned to him or her.
|
|
51687
|
-
* @summary
|
|
52200
|
+
* @summary Summary of non-employee approval requests
|
|
51688
52201
|
* @param {NonEmployeeLifecycleManagementBetaApiGetNonEmployeeApprovalSummaryRequest} requestParameters Request parameters.
|
|
51689
52202
|
* @param {*} [axiosOptions] Override http request option.
|
|
52203
|
+
* @deprecated
|
|
51690
52204
|
* @throws {RequiredError}
|
|
51691
52205
|
* @memberof NonEmployeeLifecycleManagementBetaApi
|
|
51692
52206
|
*/
|
|
@@ -51696,15 +52210,37 @@ export declare class NonEmployeeLifecycleManagementBetaApi extends BaseAPI {
|
|
|
51696
52210
|
* @summary Bulk upload status on source
|
|
51697
52211
|
* @param {NonEmployeeLifecycleManagementBetaApiGetNonEmployeeBulkUploadStatusRequest} requestParameters Request parameters.
|
|
51698
52212
|
* @param {*} [axiosOptions] Override http request option.
|
|
52213
|
+
* @deprecated
|
|
51699
52214
|
* @throws {RequiredError}
|
|
51700
52215
|
* @memberof NonEmployeeLifecycleManagementBetaApi
|
|
51701
52216
|
*/
|
|
51702
52217
|
getNonEmployeeBulkUploadStatus(requestParameters: NonEmployeeLifecycleManagementBetaApiGetNonEmployeeBulkUploadStatusRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<NonEmployeeBulkUploadStatusBeta, any>>;
|
|
52218
|
+
/**
|
|
52219
|
+
* This requests a CSV download for all non-employees from a provided source.
|
|
52220
|
+
* @summary Exports non-employee records to csv
|
|
52221
|
+
* @param {NonEmployeeLifecycleManagementBetaApiGetNonEmployeeExportRecordsRequest} requestParameters Request parameters.
|
|
52222
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
52223
|
+
* @deprecated
|
|
52224
|
+
* @throws {RequiredError}
|
|
52225
|
+
* @memberof NonEmployeeLifecycleManagementBetaApi
|
|
52226
|
+
*/
|
|
52227
|
+
getNonEmployeeExportRecords(requestParameters: NonEmployeeLifecycleManagementBetaApiGetNonEmployeeExportRecordsRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
52228
|
+
/**
|
|
52229
|
+
* This requests a download for the Source Schema Template for a provided source. Request will require the following security scope: idn:nesr:read\'
|
|
52230
|
+
* @summary Exports source schema template
|
|
52231
|
+
* @param {NonEmployeeLifecycleManagementBetaApiGetNonEmployeeExportSourceSchemaTemplateRequest} requestParameters Request parameters.
|
|
52232
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
52233
|
+
* @deprecated
|
|
52234
|
+
* @throws {RequiredError}
|
|
52235
|
+
* @memberof NonEmployeeLifecycleManagementBetaApi
|
|
52236
|
+
*/
|
|
52237
|
+
getNonEmployeeExportSourceSchemaTemplate(requestParameters: NonEmployeeLifecycleManagementBetaApiGetNonEmployeeExportSourceSchemaTemplateRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
51703
52238
|
/**
|
|
51704
52239
|
* This gets a non-employee record.
|
|
51705
52240
|
* @summary Get a non-employee record
|
|
51706
52241
|
* @param {NonEmployeeLifecycleManagementBetaApiGetNonEmployeeRecordRequest} requestParameters Request parameters.
|
|
51707
52242
|
* @param {*} [axiosOptions] Override http request option.
|
|
52243
|
+
* @deprecated
|
|
51708
52244
|
* @throws {RequiredError}
|
|
51709
52245
|
* @memberof NonEmployeeLifecycleManagementBetaApi
|
|
51710
52246
|
*/
|
|
@@ -51714,6 +52250,7 @@ export declare class NonEmployeeLifecycleManagementBetaApi extends BaseAPI {
|
|
|
51714
52250
|
* @summary Get a non-employee request
|
|
51715
52251
|
* @param {NonEmployeeLifecycleManagementBetaApiGetNonEmployeeRequestRequest} requestParameters Request parameters.
|
|
51716
52252
|
* @param {*} [axiosOptions] Override http request option.
|
|
52253
|
+
* @deprecated
|
|
51717
52254
|
* @throws {RequiredError}
|
|
51718
52255
|
* @memberof NonEmployeeLifecycleManagementBetaApi
|
|
51719
52256
|
*/
|
|
@@ -51723,6 +52260,7 @@ export declare class NonEmployeeLifecycleManagementBetaApi extends BaseAPI {
|
|
|
51723
52260
|
* @summary Get summary of non-employee requests
|
|
51724
52261
|
* @param {NonEmployeeLifecycleManagementBetaApiGetNonEmployeeRequestSummaryRequest} requestParameters Request parameters.
|
|
51725
52262
|
* @param {*} [axiosOptions] Override http request option.
|
|
52263
|
+
* @deprecated
|
|
51726
52264
|
* @throws {RequiredError}
|
|
51727
52265
|
* @memberof NonEmployeeLifecycleManagementBetaApi
|
|
51728
52266
|
*/
|
|
@@ -51732,6 +52270,7 @@ export declare class NonEmployeeLifecycleManagementBetaApi extends BaseAPI {
|
|
|
51732
52270
|
* @summary Get schema attribute non-employee source
|
|
51733
52271
|
* @param {NonEmployeeLifecycleManagementBetaApiGetNonEmployeeSchemaAttributeRequest} requestParameters Request parameters.
|
|
51734
52272
|
* @param {*} [axiosOptions] Override http request option.
|
|
52273
|
+
* @deprecated
|
|
51735
52274
|
* @throws {RequiredError}
|
|
51736
52275
|
* @memberof NonEmployeeLifecycleManagementBetaApi
|
|
51737
52276
|
*/
|
|
@@ -51741,6 +52280,7 @@ export declare class NonEmployeeLifecycleManagementBetaApi extends BaseAPI {
|
|
|
51741
52280
|
* @summary Get a non-employee source
|
|
51742
52281
|
* @param {NonEmployeeLifecycleManagementBetaApiGetNonEmployeeSourceRequest} requestParameters Request parameters.
|
|
51743
52282
|
* @param {*} [axiosOptions] Override http request option.
|
|
52283
|
+
* @deprecated
|
|
51744
52284
|
* @throws {RequiredError}
|
|
51745
52285
|
* @memberof NonEmployeeLifecycleManagementBetaApi
|
|
51746
52286
|
*/
|
|
@@ -51750,6 +52290,7 @@ export declare class NonEmployeeLifecycleManagementBetaApi extends BaseAPI {
|
|
|
51750
52290
|
* @summary List schema attributes non-employee source
|
|
51751
52291
|
* @param {NonEmployeeLifecycleManagementBetaApiGetNonEmployeeSourceSchemaAttributesRequest} requestParameters Request parameters.
|
|
51752
52292
|
* @param {*} [axiosOptions] Override http request option.
|
|
52293
|
+
* @deprecated
|
|
51753
52294
|
* @throws {RequiredError}
|
|
51754
52295
|
* @memberof NonEmployeeLifecycleManagementBetaApi
|
|
51755
52296
|
*/
|
|
@@ -51759,15 +52300,17 @@ export declare class NonEmployeeLifecycleManagementBetaApi extends BaseAPI {
|
|
|
51759
52300
|
* @summary Imports, or updates, non-employee records
|
|
51760
52301
|
* @param {NonEmployeeLifecycleManagementBetaApiImportNonEmployeeRecordsInBulkRequest} requestParameters Request parameters.
|
|
51761
52302
|
* @param {*} [axiosOptions] Override http request option.
|
|
52303
|
+
* @deprecated
|
|
51762
52304
|
* @throws {RequiredError}
|
|
51763
52305
|
* @memberof NonEmployeeLifecycleManagementBetaApi
|
|
51764
52306
|
*/
|
|
51765
52307
|
importNonEmployeeRecordsInBulk(requestParameters: NonEmployeeLifecycleManagementBetaApiImportNonEmployeeRecordsInBulkRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<NonEmployeeBulkUploadJobBeta, any>>;
|
|
51766
52308
|
/**
|
|
51767
52309
|
* This gets a list of non-employee approval requests.
|
|
51768
|
-
* @summary
|
|
52310
|
+
* @summary List of non-employee approval requests
|
|
51769
52311
|
* @param {NonEmployeeLifecycleManagementBetaApiListNonEmployeeApprovalRequest} requestParameters Request parameters.
|
|
51770
52312
|
* @param {*} [axiosOptions] Override http request option.
|
|
52313
|
+
* @deprecated
|
|
51771
52314
|
* @throws {RequiredError}
|
|
51772
52315
|
* @memberof NonEmployeeLifecycleManagementBetaApi
|
|
51773
52316
|
*/
|
|
@@ -51777,6 +52320,7 @@ export declare class NonEmployeeLifecycleManagementBetaApi extends BaseAPI {
|
|
|
51777
52320
|
* @summary List non-employee records
|
|
51778
52321
|
* @param {NonEmployeeLifecycleManagementBetaApiListNonEmployeeRecordsRequest} requestParameters Request parameters.
|
|
51779
52322
|
* @param {*} [axiosOptions] Override http request option.
|
|
52323
|
+
* @deprecated
|
|
51780
52324
|
* @throws {RequiredError}
|
|
51781
52325
|
* @memberof NonEmployeeLifecycleManagementBetaApi
|
|
51782
52326
|
*/
|
|
@@ -51786,6 +52330,7 @@ export declare class NonEmployeeLifecycleManagementBetaApi extends BaseAPI {
|
|
|
51786
52330
|
* @summary List non-employee requests
|
|
51787
52331
|
* @param {NonEmployeeLifecycleManagementBetaApiListNonEmployeeRequestsRequest} requestParameters Request parameters.
|
|
51788
52332
|
* @param {*} [axiosOptions] Override http request option.
|
|
52333
|
+
* @deprecated
|
|
51789
52334
|
* @throws {RequiredError}
|
|
51790
52335
|
* @memberof NonEmployeeLifecycleManagementBetaApi
|
|
51791
52336
|
*/
|
|
@@ -51795,6 +52340,7 @@ export declare class NonEmployeeLifecycleManagementBetaApi extends BaseAPI {
|
|
|
51795
52340
|
* @summary List non-employee sources
|
|
51796
52341
|
* @param {NonEmployeeLifecycleManagementBetaApiListNonEmployeeSourcesRequest} requestParameters Request parameters.
|
|
51797
52342
|
* @param {*} [axiosOptions] Override http request option.
|
|
52343
|
+
* @deprecated
|
|
51798
52344
|
* @throws {RequiredError}
|
|
51799
52345
|
* @memberof NonEmployeeLifecycleManagementBetaApi
|
|
51800
52346
|
*/
|
|
@@ -51804,6 +52350,7 @@ export declare class NonEmployeeLifecycleManagementBetaApi extends BaseAPI {
|
|
|
51804
52350
|
* @summary Patch non-employee record
|
|
51805
52351
|
* @param {NonEmployeeLifecycleManagementBetaApiPatchNonEmployeeRecordRequest} requestParameters Request parameters.
|
|
51806
52352
|
* @param {*} [axiosOptions] Override http request option.
|
|
52353
|
+
* @deprecated
|
|
51807
52354
|
* @throws {RequiredError}
|
|
51808
52355
|
* @memberof NonEmployeeLifecycleManagementBetaApi
|
|
51809
52356
|
*/
|
|
@@ -51813,6 +52360,7 @@ export declare class NonEmployeeLifecycleManagementBetaApi extends BaseAPI {
|
|
|
51813
52360
|
* @summary Patch non-employee source\'s schema attribute
|
|
51814
52361
|
* @param {NonEmployeeLifecycleManagementBetaApiPatchNonEmployeeSchemaAttributeRequest} requestParameters Request parameters.
|
|
51815
52362
|
* @param {*} [axiosOptions] Override http request option.
|
|
52363
|
+
* @deprecated
|
|
51816
52364
|
* @throws {RequiredError}
|
|
51817
52365
|
* @memberof NonEmployeeLifecycleManagementBetaApi
|
|
51818
52366
|
*/
|
|
@@ -51822,28 +52370,31 @@ export declare class NonEmployeeLifecycleManagementBetaApi extends BaseAPI {
|
|
|
51822
52370
|
* @summary Patch a non-employee source
|
|
51823
52371
|
* @param {NonEmployeeLifecycleManagementBetaApiPatchNonEmployeeSourceRequest} requestParameters Request parameters.
|
|
51824
52372
|
* @param {*} [axiosOptions] Override http request option.
|
|
52373
|
+
* @deprecated
|
|
51825
52374
|
* @throws {RequiredError}
|
|
51826
52375
|
* @memberof NonEmployeeLifecycleManagementBetaApi
|
|
51827
52376
|
*/
|
|
51828
52377
|
patchNonEmployeeSource(requestParameters: NonEmployeeLifecycleManagementBetaApiPatchNonEmployeeSourceRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<NonEmployeeSourceBeta, any>>;
|
|
51829
52378
|
/**
|
|
51830
|
-
* This
|
|
51831
|
-
* @summary
|
|
51832
|
-
* @param {
|
|
52379
|
+
* This request will update a non-employee record.
|
|
52380
|
+
* @summary Update non-employee record
|
|
52381
|
+
* @param {NonEmployeeLifecycleManagementBetaApiPutNonEmployeeRecordRequest} requestParameters Request parameters.
|
|
51833
52382
|
* @param {*} [axiosOptions] Override http request option.
|
|
52383
|
+
* @deprecated
|
|
51834
52384
|
* @throws {RequiredError}
|
|
51835
52385
|
* @memberof NonEmployeeLifecycleManagementBetaApi
|
|
51836
52386
|
*/
|
|
51837
|
-
|
|
52387
|
+
putNonEmployeeRecord(requestParameters: NonEmployeeLifecycleManagementBetaApiPutNonEmployeeRecordRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<NonEmployeeRecordBeta, any>>;
|
|
51838
52388
|
/**
|
|
51839
|
-
* This
|
|
51840
|
-
* @summary
|
|
51841
|
-
* @param {
|
|
52389
|
+
* This endpoint will reject an approval item request and notify user.
|
|
52390
|
+
* @summary Reject a non-employee request
|
|
52391
|
+
* @param {NonEmployeeLifecycleManagementBetaApiRejectNonEmployeeRequestRequest} requestParameters Request parameters.
|
|
51842
52392
|
* @param {*} [axiosOptions] Override http request option.
|
|
52393
|
+
* @deprecated
|
|
51843
52394
|
* @throws {RequiredError}
|
|
51844
52395
|
* @memberof NonEmployeeLifecycleManagementBetaApi
|
|
51845
52396
|
*/
|
|
51846
|
-
|
|
52397
|
+
rejectNonEmployeeRequest(requestParameters: NonEmployeeLifecycleManagementBetaApiRejectNonEmployeeRequestRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<NonEmployeeApprovalItemBeta, any>>;
|
|
51847
52398
|
}
|
|
51848
52399
|
/**
|
|
51849
52400
|
* NotificationsBetaApi - axios parameter creator
|
|
@@ -51859,7 +52410,7 @@ export declare const NotificationsBetaApiAxiosParamCreator: (configuration?: Con
|
|
|
51859
52410
|
*/
|
|
51860
52411
|
createDomainDkim: (domainAddressBeta: DomainAddressBeta, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
51861
52412
|
/**
|
|
51862
|
-
* This
|
|
52413
|
+
* This will update notification templates that are available in your tenant. Note that you cannot create new templates in your tenant, but you can use this to create custom notifications from existing templates. First, copy the response body from the [get notification template endpoint](https://developer.sailpoint.com/idn/api/beta/get-notification-template) for a template you wish to update and paste it into the request body for this endpoint. Modify the fields you want to change and submit the POST request when ready.
|
|
51863
52414
|
* @summary Create notification template
|
|
51864
52415
|
* @param {TemplateDtoBeta} templateDtoBeta
|
|
51865
52416
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -51955,11 +52506,12 @@ export declare const NotificationsBetaApiAxiosParamCreator: (configuration?: Con
|
|
|
51955
52506
|
* @summary List notification templates
|
|
51956
52507
|
* @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.
|
|
51957
52508
|
* @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.
|
|
51958
|
-
* @param {string} [filters] Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **key**: *eq, in, sw* **
|
|
52509
|
+
* @param {string} [filters] Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **key**: *eq, in* **medium**: *eq* **locale**: *eq* **name**: *eq, sw* **description**: *eq, sw* **id**: *eq, sw*
|
|
52510
|
+
* @param {string} [sorters] Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) Sorting is supported for the following fields: **key, name, medium**
|
|
51959
52511
|
* @param {*} [axiosOptions] Override http request option.
|
|
51960
52512
|
* @throws {RequiredError}
|
|
51961
52513
|
*/
|
|
51962
|
-
listNotificationTemplates: (limit?: number, offset?: number, filters?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
52514
|
+
listNotificationTemplates: (limit?: number, offset?: number, filters?: string, sorters?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
51963
52515
|
/**
|
|
51964
52516
|
* Change the MAIL FROM domain of an AWS SES email identity and provide the MX and TXT records to be placed in the caller\'s DNS
|
|
51965
52517
|
* @summary Change mail from domain
|
|
@@ -51991,7 +52543,7 @@ export declare const NotificationsBetaApiFp: (configuration?: Configuration) =>
|
|
|
51991
52543
|
*/
|
|
51992
52544
|
createDomainDkim(domainAddressBeta: DomainAddressBeta, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DomainStatusDtoBeta>>;
|
|
51993
52545
|
/**
|
|
51994
|
-
* This
|
|
52546
|
+
* This will update notification templates that are available in your tenant. Note that you cannot create new templates in your tenant, but you can use this to create custom notifications from existing templates. First, copy the response body from the [get notification template endpoint](https://developer.sailpoint.com/idn/api/beta/get-notification-template) for a template you wish to update and paste it into the request body for this endpoint. Modify the fields you want to change and submit the POST request when ready.
|
|
51995
52547
|
* @summary Create notification template
|
|
51996
52548
|
* @param {TemplateDtoBeta} templateDtoBeta
|
|
51997
52549
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -52087,11 +52639,12 @@ export declare const NotificationsBetaApiFp: (configuration?: Configuration) =>
|
|
|
52087
52639
|
* @summary List notification templates
|
|
52088
52640
|
* @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.
|
|
52089
52641
|
* @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.
|
|
52090
|
-
* @param {string} [filters] Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **key**: *eq, in, sw* **
|
|
52642
|
+
* @param {string} [filters] Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **key**: *eq, in* **medium**: *eq* **locale**: *eq* **name**: *eq, sw* **description**: *eq, sw* **id**: *eq, sw*
|
|
52643
|
+
* @param {string} [sorters] Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) Sorting is supported for the following fields: **key, name, medium**
|
|
52091
52644
|
* @param {*} [axiosOptions] Override http request option.
|
|
52092
52645
|
* @throws {RequiredError}
|
|
52093
52646
|
*/
|
|
52094
|
-
listNotificationTemplates(limit?: number, offset?: number, filters?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<TemplateDtoBeta>>>;
|
|
52647
|
+
listNotificationTemplates(limit?: number, offset?: number, filters?: string, sorters?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<TemplateDtoBeta>>>;
|
|
52095
52648
|
/**
|
|
52096
52649
|
* Change the MAIL FROM domain of an AWS SES email identity and provide the MX and TXT records to be placed in the caller\'s DNS
|
|
52097
52650
|
* @summary Change mail from domain
|
|
@@ -52123,7 +52676,7 @@ export declare const NotificationsBetaApiFactory: (configuration?: Configuration
|
|
|
52123
52676
|
*/
|
|
52124
52677
|
createDomainDkim(requestParameters: NotificationsBetaApiCreateDomainDkimRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<DomainStatusDtoBeta>;
|
|
52125
52678
|
/**
|
|
52126
|
-
* This
|
|
52679
|
+
* This will update notification templates that are available in your tenant. Note that you cannot create new templates in your tenant, but you can use this to create custom notifications from existing templates. First, copy the response body from the [get notification template endpoint](https://developer.sailpoint.com/idn/api/beta/get-notification-template) for a template you wish to update and paste it into the request body for this endpoint. Modify the fields you want to change and submit the POST request when ready.
|
|
52127
52680
|
* @summary Create notification template
|
|
52128
52681
|
* @param {NotificationsBetaApiCreateNotificationTemplateRequest} requestParameters Request parameters.
|
|
52129
52682
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -52418,11 +52971,17 @@ export interface NotificationsBetaApiListNotificationTemplatesRequest {
|
|
|
52418
52971
|
*/
|
|
52419
52972
|
readonly offset?: number;
|
|
52420
52973
|
/**
|
|
52421
|
-
* Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **key**: *eq, in, sw* **
|
|
52974
|
+
* Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **key**: *eq, in* **medium**: *eq* **locale**: *eq* **name**: *eq, sw* **description**: *eq, sw* **id**: *eq, sw*
|
|
52422
52975
|
* @type {string}
|
|
52423
52976
|
* @memberof NotificationsBetaApiListNotificationTemplates
|
|
52424
52977
|
*/
|
|
52425
52978
|
readonly filters?: string;
|
|
52979
|
+
/**
|
|
52980
|
+
* Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) Sorting is supported for the following fields: **key, name, medium**
|
|
52981
|
+
* @type {string}
|
|
52982
|
+
* @memberof NotificationsBetaApiListNotificationTemplates
|
|
52983
|
+
*/
|
|
52984
|
+
readonly sorters?: string;
|
|
52426
52985
|
}
|
|
52427
52986
|
/**
|
|
52428
52987
|
* Request parameters for putMailFromAttributes operation in NotificationsBetaApi.
|
|
@@ -52467,7 +53026,7 @@ export declare class NotificationsBetaApi extends BaseAPI {
|
|
|
52467
53026
|
*/
|
|
52468
53027
|
createDomainDkim(requestParameters: NotificationsBetaApiCreateDomainDkimRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DomainStatusDtoBeta, any>>;
|
|
52469
53028
|
/**
|
|
52470
|
-
* This
|
|
53029
|
+
* This will update notification templates that are available in your tenant. Note that you cannot create new templates in your tenant, but you can use this to create custom notifications from existing templates. First, copy the response body from the [get notification template endpoint](https://developer.sailpoint.com/idn/api/beta/get-notification-template) for a template you wish to update and paste it into the request body for this endpoint. Modify the fields you want to change and submit the POST request when ready.
|
|
52471
53030
|
* @summary Create notification template
|
|
52472
53031
|
* @param {NotificationsBetaApiCreateNotificationTemplateRequest} requestParameters Request parameters.
|
|
52473
53032
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -54344,7 +54903,7 @@ export declare class PublicIdentitiesConfigBetaApi extends BaseAPI {
|
|
|
54344
54903
|
*/
|
|
54345
54904
|
export declare const RequestableObjectsBetaApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
54346
54905
|
/**
|
|
54347
|
-
* 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.
|
|
54348
54907
|
* @summary Requestable objects list
|
|
54349
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.
|
|
54350
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.
|
|
@@ -54366,7 +54925,7 @@ export declare const RequestableObjectsBetaApiAxiosParamCreator: (configuration?
|
|
|
54366
54925
|
*/
|
|
54367
54926
|
export declare const RequestableObjectsBetaApiFp: (configuration?: Configuration) => {
|
|
54368
54927
|
/**
|
|
54369
|
-
* 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.
|
|
54370
54929
|
* @summary Requestable objects list
|
|
54371
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.
|
|
54372
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.
|
|
@@ -54388,7 +54947,7 @@ export declare const RequestableObjectsBetaApiFp: (configuration?: Configuration
|
|
|
54388
54947
|
*/
|
|
54389
54948
|
export declare const RequestableObjectsBetaApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
54390
54949
|
/**
|
|
54391
|
-
* 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.
|
|
54392
54951
|
* @summary Requestable objects list
|
|
54393
54952
|
* @param {RequestableObjectsBetaApiListRequestableObjectsRequest} requestParameters Request parameters.
|
|
54394
54953
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -54465,7 +55024,7 @@ export interface RequestableObjectsBetaApiListRequestableObjectsRequest {
|
|
|
54465
55024
|
*/
|
|
54466
55025
|
export declare class RequestableObjectsBetaApi extends BaseAPI {
|
|
54467
55026
|
/**
|
|
54468
|
-
* 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.
|
|
54469
55028
|
* @summary Requestable objects list
|
|
54470
55029
|
* @param {RequestableObjectsBetaApiListRequestableObjectsRequest} requestParameters Request parameters.
|
|
54471
55030
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -64845,12 +65404,11 @@ export declare const WorkflowsBetaApiAxiosParamCreator: (configuration?: Configu
|
|
|
64845
65404
|
* @param {string} id Workflow ID.
|
|
64846
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.
|
|
64847
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.
|
|
64848
|
-
* @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.
|
|
64849
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*
|
|
64850
65408
|
* @param {*} [axiosOptions] Override http request option.
|
|
64851
65409
|
* @throws {RequiredError}
|
|
64852
65410
|
*/
|
|
64853
|
-
getWorkflowExecutions: (id: string, limit?: number, offset?: number,
|
|
65411
|
+
getWorkflowExecutions: (id: string, limit?: number, offset?: number, filters?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
64854
65412
|
/**
|
|
64855
65413
|
* This lists all triggers, actions, and operators in the library
|
|
64856
65414
|
* @summary List complete workflow library
|
|
@@ -65012,12 +65570,11 @@ export declare const WorkflowsBetaApiFp: (configuration?: Configuration) => {
|
|
|
65012
65570
|
* @param {string} id Workflow ID.
|
|
65013
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.
|
|
65014
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.
|
|
65015
|
-
* @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.
|
|
65016
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*
|
|
65017
65574
|
* @param {*} [axiosOptions] Override http request option.
|
|
65018
65575
|
* @throws {RequiredError}
|
|
65019
65576
|
*/
|
|
65020
|
-
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>>>;
|
|
65021
65578
|
/**
|
|
65022
65579
|
* This lists all triggers, actions, and operators in the library
|
|
65023
65580
|
* @summary List complete workflow library
|
|
@@ -65376,12 +65933,6 @@ export interface WorkflowsBetaApiGetWorkflowExecutionsRequest {
|
|
|
65376
65933
|
* @memberof WorkflowsBetaApiGetWorkflowExecutions
|
|
65377
65934
|
*/
|
|
65378
65935
|
readonly offset?: number;
|
|
65379
|
-
/**
|
|
65380
|
-
* 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.
|
|
65381
|
-
* @type {boolean}
|
|
65382
|
-
* @memberof WorkflowsBetaApiGetWorkflowExecutions
|
|
65383
|
-
*/
|
|
65384
|
-
readonly count?: boolean;
|
|
65385
65936
|
/**
|
|
65386
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*
|
|
65387
65938
|
* @type {string}
|