sailpoint-api-client 1.4.14 → 1.4.15
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 +94 -25
- package/beta/common.ts +3 -3
- package/beta/package.json +1 -1
- package/configuration.ts +5 -1
- package/dist/beta/api.d.ts +76 -19
- package/dist/beta/api.js +41 -13
- package/dist/beta/api.js.map +1 -1
- package/dist/beta/common.js +2 -2
- package/dist/beta/common.js.map +1 -1
- package/dist/configuration.js +6 -2
- package/dist/configuration.js.map +1 -1
- package/dist/v2024/api.d.ts +1014 -1520
- package/dist/v2024/api.js +461 -321
- package/dist/v2024/api.js.map +1 -1
- package/dist/v2024/common.js +2 -2
- package/dist/v2024/common.js.map +1 -1
- package/dist/v3/api.d.ts +312 -103
- package/dist/v3/api.js +38 -15
- package/dist/v3/api.js.map +1 -1
- package/dist/v3/common.js +2 -2
- package/dist/v3/common.js.map +1 -1
- package/package.json +4 -3
- package/v2024/README.md +2 -2
- package/v2024/api.ts +1287 -1732
- package/v2024/common.ts +3 -3
- package/v2024/package.json +1 -1
- package/v3/README.md +2 -2
- package/v3/api.ts +329 -103
- package/v3/common.ts +3 -3
- package/v3/package.json +1 -1
package/dist/v3/api.d.ts
CHANGED
|
@@ -281,6 +281,86 @@ export declare const AccessItemReviewedByTypeV3: {
|
|
|
281
281
|
readonly Identity: "IDENTITY";
|
|
282
282
|
};
|
|
283
283
|
export type AccessItemReviewedByTypeV3 = typeof AccessItemReviewedByTypeV3[keyof typeof AccessItemReviewedByTypeV3];
|
|
284
|
+
/**
|
|
285
|
+
* Metadata that describes an access item
|
|
286
|
+
* @export
|
|
287
|
+
* @interface AccessModelMetadata
|
|
288
|
+
*/
|
|
289
|
+
export interface AccessModelMetadata {
|
|
290
|
+
/**
|
|
291
|
+
* Unique identifier for the metadata type
|
|
292
|
+
* @type {string}
|
|
293
|
+
* @memberof AccessModelMetadata
|
|
294
|
+
*/
|
|
295
|
+
'key'?: string;
|
|
296
|
+
/**
|
|
297
|
+
* Human readable name of the metadata type
|
|
298
|
+
* @type {string}
|
|
299
|
+
* @memberof AccessModelMetadata
|
|
300
|
+
*/
|
|
301
|
+
'name'?: string;
|
|
302
|
+
/**
|
|
303
|
+
* Allows selecting multiple values
|
|
304
|
+
* @type {boolean}
|
|
305
|
+
* @memberof AccessModelMetadata
|
|
306
|
+
*/
|
|
307
|
+
'multiselect'?: boolean;
|
|
308
|
+
/**
|
|
309
|
+
* The state of the metadata item
|
|
310
|
+
* @type {string}
|
|
311
|
+
* @memberof AccessModelMetadata
|
|
312
|
+
*/
|
|
313
|
+
'status'?: string;
|
|
314
|
+
/**
|
|
315
|
+
* The type of the metadata item
|
|
316
|
+
* @type {string}
|
|
317
|
+
* @memberof AccessModelMetadata
|
|
318
|
+
*/
|
|
319
|
+
'type'?: string;
|
|
320
|
+
/**
|
|
321
|
+
* The types of objects
|
|
322
|
+
* @type {Array<string>}
|
|
323
|
+
* @memberof AccessModelMetadata
|
|
324
|
+
*/
|
|
325
|
+
'objectTypes'?: Array<string>;
|
|
326
|
+
/**
|
|
327
|
+
* Describes the metadata item
|
|
328
|
+
* @type {string}
|
|
329
|
+
* @memberof AccessModelMetadata
|
|
330
|
+
*/
|
|
331
|
+
'description'?: string;
|
|
332
|
+
/**
|
|
333
|
+
* The value to assign to the metadata item
|
|
334
|
+
* @type {Array<AccessModelMetadataValuesInner>}
|
|
335
|
+
* @memberof AccessModelMetadata
|
|
336
|
+
*/
|
|
337
|
+
'values'?: Array<AccessModelMetadataValuesInner>;
|
|
338
|
+
}
|
|
339
|
+
/**
|
|
340
|
+
* An individual value to assign to the metadata item
|
|
341
|
+
* @export
|
|
342
|
+
* @interface AccessModelMetadataValuesInner
|
|
343
|
+
*/
|
|
344
|
+
export interface AccessModelMetadataValuesInner {
|
|
345
|
+
/**
|
|
346
|
+
* The value to assign to the metdata item
|
|
347
|
+
* @type {string}
|
|
348
|
+
* @memberof AccessModelMetadataValuesInner
|
|
349
|
+
*/
|
|
350
|
+
'value'?: string;
|
|
351
|
+
/**
|
|
352
|
+
* Display name of the value
|
|
353
|
+
* @type {string}
|
|
354
|
+
* @memberof AccessModelMetadataValuesInner
|
|
355
|
+
*/
|
|
356
|
+
'name'?: string;
|
|
357
|
+
/**
|
|
358
|
+
* The status of the individual value
|
|
359
|
+
* @type {string}
|
|
360
|
+
* @memberof AccessModelMetadataValuesInner
|
|
361
|
+
*/
|
|
362
|
+
'status'?: string;
|
|
363
|
+
}
|
|
284
364
|
/**
|
|
285
365
|
* Access Profile
|
|
286
366
|
* @export
|
|
@@ -1209,10 +1289,10 @@ export interface AccessRequestTracking {
|
|
|
1209
1289
|
'requestedItemsDetails'?: Array<RequestedItemDetails>;
|
|
1210
1290
|
/**
|
|
1211
1291
|
* a hash representation of the access requested, useful for longer term tracking client side.
|
|
1212
|
-
* @type {
|
|
1292
|
+
* @type {number}
|
|
1213
1293
|
* @memberof AccessRequestTracking
|
|
1214
1294
|
*/
|
|
1215
|
-
'attributesHash'?:
|
|
1295
|
+
'attributesHash'?: number;
|
|
1216
1296
|
/**
|
|
1217
1297
|
* a list of access request identifiers, generally only one will be populated, but high volume requested may result in multiple ids.
|
|
1218
1298
|
* @type {Array<string>}
|
|
@@ -1387,7 +1467,7 @@ export interface Account {
|
|
|
1387
1467
|
* @type {string}
|
|
1388
1468
|
* @memberof Account
|
|
1389
1469
|
*/
|
|
1390
|
-
'name': string;
|
|
1470
|
+
'name': string | null;
|
|
1391
1471
|
/**
|
|
1392
1472
|
* Creation date of the Object
|
|
1393
1473
|
* @type {string}
|
|
@@ -1444,10 +1524,10 @@ export interface Account {
|
|
|
1444
1524
|
'isMachine'?: boolean;
|
|
1445
1525
|
/**
|
|
1446
1526
|
*
|
|
1447
|
-
* @type {
|
|
1527
|
+
* @type {AccountAllOfRecommendation}
|
|
1448
1528
|
* @memberof Account
|
|
1449
1529
|
*/
|
|
1450
|
-
'recommendation'?:
|
|
1530
|
+
'recommendation'?: AccountAllOfRecommendation;
|
|
1451
1531
|
/**
|
|
1452
1532
|
* The account attributes that are aggregated
|
|
1453
1533
|
* @type {{ [key: string]: any; }}
|
|
@@ -1518,16 +1598,16 @@ export interface Account {
|
|
|
1518
1598
|
'hasEntitlements': boolean;
|
|
1519
1599
|
/**
|
|
1520
1600
|
*
|
|
1521
|
-
* @type {
|
|
1601
|
+
* @type {AccountAllOfIdentity}
|
|
1522
1602
|
* @memberof Account
|
|
1523
1603
|
*/
|
|
1524
|
-
'identity'?:
|
|
1604
|
+
'identity'?: AccountAllOfIdentity;
|
|
1525
1605
|
/**
|
|
1526
1606
|
*
|
|
1527
|
-
* @type {
|
|
1607
|
+
* @type {AccountAllOfSourceOwner}
|
|
1528
1608
|
* @memberof Account
|
|
1529
1609
|
*/
|
|
1530
|
-
'sourceOwner'?:
|
|
1610
|
+
'sourceOwner'?: AccountAllOfSourceOwner | null;
|
|
1531
1611
|
/**
|
|
1532
1612
|
* A string list containing the owning source\'s features
|
|
1533
1613
|
* @type {string}
|
|
@@ -1542,10 +1622,10 @@ export interface Account {
|
|
|
1542
1622
|
'origin'?: AccountOriginV3 | null;
|
|
1543
1623
|
/**
|
|
1544
1624
|
*
|
|
1545
|
-
* @type {
|
|
1625
|
+
* @type {AccountAllOfOwnerIdentity}
|
|
1546
1626
|
* @memberof Account
|
|
1547
1627
|
*/
|
|
1548
|
-
'ownerIdentity'?:
|
|
1628
|
+
'ownerIdentity'?: AccountAllOfOwnerIdentity;
|
|
1549
1629
|
}
|
|
1550
1630
|
export declare const AccountOriginV3: {
|
|
1551
1631
|
readonly Aggregated: "AGGREGATED";
|
|
@@ -2163,6 +2243,119 @@ export interface AccountActivitySearchedItem {
|
|
|
2163
2243
|
*/
|
|
2164
2244
|
'sources'?: string;
|
|
2165
2245
|
}
|
|
2246
|
+
/**
|
|
2247
|
+
* The identity this account is correlated to
|
|
2248
|
+
* @export
|
|
2249
|
+
* @interface AccountAllOfIdentity
|
|
2250
|
+
*/
|
|
2251
|
+
export interface AccountAllOfIdentity {
|
|
2252
|
+
/**
|
|
2253
|
+
* The ID of the identity
|
|
2254
|
+
* @type {string}
|
|
2255
|
+
* @memberof AccountAllOfIdentity
|
|
2256
|
+
*/
|
|
2257
|
+
'id'?: string;
|
|
2258
|
+
/**
|
|
2259
|
+
* The type of object being referenced
|
|
2260
|
+
* @type {string}
|
|
2261
|
+
* @memberof AccountAllOfIdentity
|
|
2262
|
+
*/
|
|
2263
|
+
'type'?: AccountAllOfIdentityTypeV3;
|
|
2264
|
+
/**
|
|
2265
|
+
* display name of identity
|
|
2266
|
+
* @type {string}
|
|
2267
|
+
* @memberof AccountAllOfIdentity
|
|
2268
|
+
*/
|
|
2269
|
+
'name'?: string;
|
|
2270
|
+
}
|
|
2271
|
+
export declare const AccountAllOfIdentityTypeV3: {
|
|
2272
|
+
readonly Identity: "IDENTITY";
|
|
2273
|
+
};
|
|
2274
|
+
export type AccountAllOfIdentityTypeV3 = typeof AccountAllOfIdentityTypeV3[keyof typeof AccountAllOfIdentityTypeV3];
|
|
2275
|
+
/**
|
|
2276
|
+
*
|
|
2277
|
+
* @export
|
|
2278
|
+
* @interface AccountAllOfOwnerIdentity
|
|
2279
|
+
*/
|
|
2280
|
+
export interface AccountAllOfOwnerIdentity {
|
|
2281
|
+
/**
|
|
2282
|
+
*
|
|
2283
|
+
* @type {DtoType}
|
|
2284
|
+
* @memberof AccountAllOfOwnerIdentity
|
|
2285
|
+
*/
|
|
2286
|
+
'type'?: DtoType;
|
|
2287
|
+
/**
|
|
2288
|
+
* ID of the object to which this reference applies
|
|
2289
|
+
* @type {string}
|
|
2290
|
+
* @memberof AccountAllOfOwnerIdentity
|
|
2291
|
+
*/
|
|
2292
|
+
'id'?: string;
|
|
2293
|
+
/**
|
|
2294
|
+
* Human-readable display name of the object to which this reference applies
|
|
2295
|
+
* @type {string}
|
|
2296
|
+
* @memberof AccountAllOfOwnerIdentity
|
|
2297
|
+
*/
|
|
2298
|
+
'name'?: string;
|
|
2299
|
+
}
|
|
2300
|
+
/**
|
|
2301
|
+
*
|
|
2302
|
+
* @export
|
|
2303
|
+
* @interface AccountAllOfRecommendation
|
|
2304
|
+
*/
|
|
2305
|
+
export interface AccountAllOfRecommendation {
|
|
2306
|
+
/**
|
|
2307
|
+
* Recommended type of account.
|
|
2308
|
+
* @type {string}
|
|
2309
|
+
* @memberof AccountAllOfRecommendation
|
|
2310
|
+
*/
|
|
2311
|
+
'type': AccountAllOfRecommendationTypeV3;
|
|
2312
|
+
/**
|
|
2313
|
+
* Method used to produce the recommendation. DISCOVERY - suggested by AI, SOURCE - the account comes from a source flagged as containing machine accounts, CRITERIA - the account satisfies classification criteria.
|
|
2314
|
+
* @type {string}
|
|
2315
|
+
* @memberof AccountAllOfRecommendation
|
|
2316
|
+
*/
|
|
2317
|
+
'method': AccountAllOfRecommendationMethodV3;
|
|
2318
|
+
}
|
|
2319
|
+
export declare const AccountAllOfRecommendationTypeV3: {
|
|
2320
|
+
readonly Human: "HUMAN";
|
|
2321
|
+
readonly Machine: "MACHINE";
|
|
2322
|
+
};
|
|
2323
|
+
export type AccountAllOfRecommendationTypeV3 = typeof AccountAllOfRecommendationTypeV3[keyof typeof AccountAllOfRecommendationTypeV3];
|
|
2324
|
+
export declare const AccountAllOfRecommendationMethodV3: {
|
|
2325
|
+
readonly Discovery: "DISCOVERY";
|
|
2326
|
+
readonly Source: "SOURCE";
|
|
2327
|
+
readonly Criteria: "CRITERIA";
|
|
2328
|
+
};
|
|
2329
|
+
export type AccountAllOfRecommendationMethodV3 = typeof AccountAllOfRecommendationMethodV3[keyof typeof AccountAllOfRecommendationMethodV3];
|
|
2330
|
+
/**
|
|
2331
|
+
* The owner of the source this account belongs to.
|
|
2332
|
+
* @export
|
|
2333
|
+
* @interface AccountAllOfSourceOwner
|
|
2334
|
+
*/
|
|
2335
|
+
export interface AccountAllOfSourceOwner {
|
|
2336
|
+
/**
|
|
2337
|
+
* The ID of the identity
|
|
2338
|
+
* @type {string}
|
|
2339
|
+
* @memberof AccountAllOfSourceOwner
|
|
2340
|
+
*/
|
|
2341
|
+
'id'?: string;
|
|
2342
|
+
/**
|
|
2343
|
+
* The type of object being referenced
|
|
2344
|
+
* @type {string}
|
|
2345
|
+
* @memberof AccountAllOfSourceOwner
|
|
2346
|
+
*/
|
|
2347
|
+
'type'?: AccountAllOfSourceOwnerTypeV3;
|
|
2348
|
+
/**
|
|
2349
|
+
* display name of identity
|
|
2350
|
+
* @type {string}
|
|
2351
|
+
* @memberof AccountAllOfSourceOwner
|
|
2352
|
+
*/
|
|
2353
|
+
'name'?: string;
|
|
2354
|
+
}
|
|
2355
|
+
export declare const AccountAllOfSourceOwnerTypeV3: {
|
|
2356
|
+
readonly Identity: "IDENTITY";
|
|
2357
|
+
};
|
|
2358
|
+
export type AccountAllOfSourceOwnerTypeV3 = typeof AccountAllOfSourceOwnerTypeV3[keyof typeof AccountAllOfSourceOwnerTypeV3];
|
|
2166
2359
|
/**
|
|
2167
2360
|
*
|
|
2168
2361
|
* @export
|
|
@@ -3407,43 +3600,43 @@ export interface AuthUser {
|
|
|
3407
3600
|
* @type {string}
|
|
3408
3601
|
* @memberof AuthUser
|
|
3409
3602
|
*/
|
|
3410
|
-
'identificationNumber'?: string;
|
|
3603
|
+
'identificationNumber'?: string | null;
|
|
3411
3604
|
/**
|
|
3412
3605
|
* Auth user\'s email.
|
|
3413
3606
|
* @type {string}
|
|
3414
3607
|
* @memberof AuthUser
|
|
3415
3608
|
*/
|
|
3416
|
-
'email'?: string;
|
|
3609
|
+
'email'?: string | null;
|
|
3417
3610
|
/**
|
|
3418
3611
|
* Auth user\'s phone number.
|
|
3419
3612
|
* @type {string}
|
|
3420
3613
|
* @memberof AuthUser
|
|
3421
3614
|
*/
|
|
3422
|
-
'phone'?: string;
|
|
3615
|
+
'phone'?: string | null;
|
|
3423
3616
|
/**
|
|
3424
3617
|
* Auth user\'s work phone number.
|
|
3425
3618
|
* @type {string}
|
|
3426
3619
|
* @memberof AuthUser
|
|
3427
3620
|
*/
|
|
3428
|
-
'workPhone'?: string;
|
|
3621
|
+
'workPhone'?: string | null;
|
|
3429
3622
|
/**
|
|
3430
3623
|
* Auth user\'s personal email.
|
|
3431
3624
|
* @type {string}
|
|
3432
3625
|
* @memberof AuthUser
|
|
3433
3626
|
*/
|
|
3434
|
-
'personalEmail'?: string;
|
|
3627
|
+
'personalEmail'?: string | null;
|
|
3435
3628
|
/**
|
|
3436
3629
|
* Auth user\'s first name.
|
|
3437
3630
|
* @type {string}
|
|
3438
3631
|
* @memberof AuthUser
|
|
3439
3632
|
*/
|
|
3440
|
-
'firstname'?: string;
|
|
3633
|
+
'firstname'?: string | null;
|
|
3441
3634
|
/**
|
|
3442
3635
|
* Auth user\'s last name.
|
|
3443
3636
|
* @type {string}
|
|
3444
3637
|
* @memberof AuthUser
|
|
3445
3638
|
*/
|
|
3446
|
-
'lastname'?: string;
|
|
3639
|
+
'lastname'?: string | null;
|
|
3447
3640
|
/**
|
|
3448
3641
|
* Auth user\'s name in displayed format.
|
|
3449
3642
|
* @type {string}
|
|
@@ -3461,7 +3654,7 @@ export interface AuthUser {
|
|
|
3461
3654
|
* @type {string}
|
|
3462
3655
|
* @memberof AuthUser
|
|
3463
3656
|
*/
|
|
3464
|
-
'lastPasswordChangeDate'?: string;
|
|
3657
|
+
'lastPasswordChangeDate'?: string | null;
|
|
3465
3658
|
/**
|
|
3466
3659
|
* Timestamp of the last login (long type value).
|
|
3467
3660
|
* @type {number}
|
|
@@ -3474,12 +3667,18 @@ export interface AuthUser {
|
|
|
3474
3667
|
* @memberof AuthUser
|
|
3475
3668
|
*/
|
|
3476
3669
|
'currentLoginTimestamp'?: number;
|
|
3670
|
+
/**
|
|
3671
|
+
* The date and time when the user was last unlocked.
|
|
3672
|
+
* @type {string}
|
|
3673
|
+
* @memberof AuthUser
|
|
3674
|
+
*/
|
|
3675
|
+
'lastUnlockTimestamp'?: string | null;
|
|
3477
3676
|
/**
|
|
3478
3677
|
* Array of the auth user\'s capabilities.
|
|
3479
3678
|
* @type {Array<string>}
|
|
3480
3679
|
* @memberof AuthUser
|
|
3481
3680
|
*/
|
|
3482
|
-
'capabilities'?: Array<AuthUserCapabilitiesV3
|
|
3681
|
+
'capabilities'?: Array<AuthUserCapabilitiesV3> | null;
|
|
3483
3682
|
}
|
|
3484
3683
|
export declare const AuthUserCapabilitiesV3: {
|
|
3485
3684
|
readonly CertAdmin: "CERT_ADMIN";
|
|
@@ -3948,7 +4147,7 @@ export interface BaseCommonDto {
|
|
|
3948
4147
|
* @type {string}
|
|
3949
4148
|
* @memberof BaseCommonDto
|
|
3950
4149
|
*/
|
|
3951
|
-
'name': string;
|
|
4150
|
+
'name': string | null;
|
|
3952
4151
|
/**
|
|
3953
4152
|
* Creation date of the Object
|
|
3954
4153
|
* @type {string}
|
|
@@ -5258,7 +5457,7 @@ export interface Certification {
|
|
|
5258
5457
|
* @type {string}
|
|
5259
5458
|
* @memberof Certification
|
|
5260
5459
|
*/
|
|
5261
|
-
'due'?: string;
|
|
5460
|
+
'due'?: string | null;
|
|
5262
5461
|
/**
|
|
5263
5462
|
* The date the reviewer signed off on the Certification.
|
|
5264
5463
|
* @type {string}
|
|
@@ -7364,7 +7563,7 @@ export interface Entitlement {
|
|
|
7364
7563
|
* @type {string}
|
|
7365
7564
|
* @memberof Entitlement
|
|
7366
7565
|
*/
|
|
7367
|
-
'description'?: string;
|
|
7566
|
+
'description'?: string | null;
|
|
7368
7567
|
/**
|
|
7369
7568
|
* True if the entitlement is privileged
|
|
7370
7569
|
* @type {boolean}
|
|
@@ -7377,6 +7576,32 @@ export interface Entitlement {
|
|
|
7377
7576
|
* @memberof Entitlement
|
|
7378
7577
|
*/
|
|
7379
7578
|
'cloudGoverned'?: boolean;
|
|
7579
|
+
/**
|
|
7580
|
+
* True if the entitlement is able to be directly requested
|
|
7581
|
+
* @type {boolean}
|
|
7582
|
+
* @memberof Entitlement
|
|
7583
|
+
*/
|
|
7584
|
+
'requestable'?: boolean;
|
|
7585
|
+
/**
|
|
7586
|
+
*
|
|
7587
|
+
* @type {EntitlementOwner}
|
|
7588
|
+
* @memberof Entitlement
|
|
7589
|
+
*/
|
|
7590
|
+
'owner'?: EntitlementOwner | null;
|
|
7591
|
+
/**
|
|
7592
|
+
* A map of entitlement fields that have been manually updated. The key is the field name in UPPER_SNAKE_CASE format, and the value is true or false to indicate if the field has been updated.
|
|
7593
|
+
* @type {{ [key: string]: any; }}
|
|
7594
|
+
* @memberof Entitlement
|
|
7595
|
+
*/
|
|
7596
|
+
'manuallyUpdatedFields'?: {
|
|
7597
|
+
[key: string]: any;
|
|
7598
|
+
} | null;
|
|
7599
|
+
/**
|
|
7600
|
+
*
|
|
7601
|
+
* @type {EntitlementAccessModelMetadata}
|
|
7602
|
+
* @memberof Entitlement
|
|
7603
|
+
*/
|
|
7604
|
+
'accessModelMetadata'?: EntitlementAccessModelMetadata;
|
|
7380
7605
|
/**
|
|
7381
7606
|
* Time when the entitlement was created
|
|
7382
7607
|
* @type {string}
|
|
@@ -7416,6 +7641,19 @@ export interface Entitlement {
|
|
|
7416
7641
|
*/
|
|
7417
7642
|
'directPermissions'?: Array<PermissionDto>;
|
|
7418
7643
|
}
|
|
7644
|
+
/**
|
|
7645
|
+
* Additional data to classify the entitlement
|
|
7646
|
+
* @export
|
|
7647
|
+
* @interface EntitlementAccessModelMetadata
|
|
7648
|
+
*/
|
|
7649
|
+
export interface EntitlementAccessModelMetadata {
|
|
7650
|
+
/**
|
|
7651
|
+
*
|
|
7652
|
+
* @type {Array<AccessModelMetadata>}
|
|
7653
|
+
* @memberof EntitlementAccessModelMetadata
|
|
7654
|
+
*/
|
|
7655
|
+
'attributes'?: Array<AccessModelMetadata>;
|
|
7656
|
+
}
|
|
7419
7657
|
/**
|
|
7420
7658
|
* Entitlement
|
|
7421
7659
|
* @export
|
|
@@ -7804,86 +8042,34 @@ export interface EntitlementDocuments {
|
|
|
7804
8042
|
'_version'?: string;
|
|
7805
8043
|
}
|
|
7806
8044
|
/**
|
|
7807
|
-
*
|
|
8045
|
+
* The identity that owns the entitlement
|
|
7808
8046
|
* @export
|
|
7809
|
-
* @interface
|
|
8047
|
+
* @interface EntitlementOwner
|
|
7810
8048
|
*/
|
|
7811
|
-
export interface
|
|
8049
|
+
export interface EntitlementOwner {
|
|
7812
8050
|
/**
|
|
7813
|
-
*
|
|
8051
|
+
* The identity ID
|
|
7814
8052
|
* @type {string}
|
|
7815
|
-
* @memberof
|
|
8053
|
+
* @memberof EntitlementOwner
|
|
7816
8054
|
*/
|
|
7817
8055
|
'id'?: string;
|
|
7818
8056
|
/**
|
|
7819
|
-
*
|
|
7820
|
-
* @type {string}
|
|
7821
|
-
* @memberof EntitlementDto
|
|
7822
|
-
*/
|
|
7823
|
-
'name': string;
|
|
7824
|
-
/**
|
|
7825
|
-
* Creation date of the Object
|
|
7826
|
-
* @type {string}
|
|
7827
|
-
* @memberof EntitlementDto
|
|
7828
|
-
*/
|
|
7829
|
-
'created'?: string;
|
|
7830
|
-
/**
|
|
7831
|
-
* Last modification date of the Object
|
|
7832
|
-
* @type {string}
|
|
7833
|
-
* @memberof EntitlementDto
|
|
7834
|
-
*/
|
|
7835
|
-
'modified'?: string;
|
|
7836
|
-
/**
|
|
7837
|
-
* Name of the entitlement attribute
|
|
7838
|
-
* @type {string}
|
|
7839
|
-
* @memberof EntitlementDto
|
|
7840
|
-
*/
|
|
7841
|
-
'attribute'?: string;
|
|
7842
|
-
/**
|
|
7843
|
-
* Raw value of the entitlement
|
|
7844
|
-
* @type {string}
|
|
7845
|
-
* @memberof EntitlementDto
|
|
7846
|
-
*/
|
|
7847
|
-
'value'?: string;
|
|
7848
|
-
/**
|
|
7849
|
-
* Entitlment description
|
|
8057
|
+
* The type of object
|
|
7850
8058
|
* @type {string}
|
|
7851
|
-
* @memberof
|
|
8059
|
+
* @memberof EntitlementOwner
|
|
7852
8060
|
*/
|
|
7853
|
-
'
|
|
7854
|
-
/**
|
|
7855
|
-
* Entitlement attributes
|
|
7856
|
-
* @type {{ [key: string]: any; }}
|
|
7857
|
-
* @memberof EntitlementDto
|
|
7858
|
-
*/
|
|
7859
|
-
'attributes'?: {
|
|
7860
|
-
[key: string]: any;
|
|
7861
|
-
};
|
|
8061
|
+
'type'?: EntitlementOwnerTypeV3;
|
|
7862
8062
|
/**
|
|
7863
|
-
*
|
|
8063
|
+
* The display name of the identity
|
|
7864
8064
|
* @type {string}
|
|
7865
|
-
* @memberof
|
|
8065
|
+
* @memberof EntitlementOwner
|
|
7866
8066
|
*/
|
|
7867
|
-
'
|
|
7868
|
-
/**
|
|
7869
|
-
* Determines if this Entitlement is privileged.
|
|
7870
|
-
* @type {boolean}
|
|
7871
|
-
* @memberof EntitlementDto
|
|
7872
|
-
*/
|
|
7873
|
-
'privileged'?: boolean;
|
|
7874
|
-
/**
|
|
7875
|
-
* Determines if this Entitlement is goverened in the cloud.
|
|
7876
|
-
* @type {boolean}
|
|
7877
|
-
* @memberof EntitlementDto
|
|
7878
|
-
*/
|
|
7879
|
-
'cloudGoverned'?: boolean;
|
|
7880
|
-
/**
|
|
7881
|
-
*
|
|
7882
|
-
* @type {EntitlementSource}
|
|
7883
|
-
* @memberof EntitlementDto
|
|
7884
|
-
*/
|
|
7885
|
-
'source'?: EntitlementSource;
|
|
8067
|
+
'name'?: string;
|
|
7886
8068
|
}
|
|
8069
|
+
export declare const EntitlementOwnerTypeV3: {
|
|
8070
|
+
readonly Identity: "IDENTITY";
|
|
8071
|
+
};
|
|
8072
|
+
export type EntitlementOwnerTypeV3 = typeof EntitlementOwnerTypeV3[keyof typeof EntitlementOwnerTypeV3];
|
|
7887
8073
|
/**
|
|
7888
8074
|
* Entitlement including a specific set of access.
|
|
7889
8075
|
* @export
|
|
@@ -9911,7 +10097,7 @@ export interface IdentityCertificationDto {
|
|
|
9911
10097
|
* @type {string}
|
|
9912
10098
|
* @memberof IdentityCertificationDto
|
|
9913
10099
|
*/
|
|
9914
|
-
'due'?: string;
|
|
10100
|
+
'due'?: string | null;
|
|
9915
10101
|
/**
|
|
9916
10102
|
* The date the reviewer signed off on the Certification.
|
|
9917
10103
|
* @type {string}
|
|
@@ -10619,7 +10805,7 @@ export interface IdentityProfile {
|
|
|
10619
10805
|
* @type {string}
|
|
10620
10806
|
* @memberof IdentityProfile
|
|
10621
10807
|
*/
|
|
10622
|
-
'name': string;
|
|
10808
|
+
'name': string | null;
|
|
10623
10809
|
/**
|
|
10624
10810
|
* Creation date of the Object
|
|
10625
10811
|
* @type {string}
|
|
@@ -11156,6 +11342,7 @@ export interface ImportObject {
|
|
|
11156
11342
|
'name'?: string;
|
|
11157
11343
|
}
|
|
11158
11344
|
export declare const ImportObjectTypeV3: {
|
|
11345
|
+
readonly ConnectorRule: "CONNECTOR_RULE";
|
|
11159
11346
|
readonly IdentityObjectConfig: "IDENTITY_OBJECT_CONFIG";
|
|
11160
11347
|
readonly IdentityProfile: "IDENTITY_PROFILE";
|
|
11161
11348
|
readonly Rule: "RULE";
|
|
@@ -11463,7 +11650,7 @@ export interface LifecycleState {
|
|
|
11463
11650
|
* @type {string}
|
|
11464
11651
|
* @memberof LifecycleState
|
|
11465
11652
|
*/
|
|
11466
|
-
'name': string;
|
|
11653
|
+
'name': string | null;
|
|
11467
11654
|
/**
|
|
11468
11655
|
* Creation date of the Object
|
|
11469
11656
|
* @type {string}
|
|
@@ -14976,6 +15163,14 @@ export interface PendingApproval {
|
|
|
14976
15163
|
* @memberof PendingApproval
|
|
14977
15164
|
*/
|
|
14978
15165
|
'sodViolationContext'?: SodViolationContextCheckCompleted | null;
|
|
15166
|
+
/**
|
|
15167
|
+
* Arbitrary key-value pairs, if any were included in the corresponding access request item
|
|
15168
|
+
* @type {{ [key: string]: string; }}
|
|
15169
|
+
* @memberof PendingApproval
|
|
15170
|
+
*/
|
|
15171
|
+
'clientMetadata'?: {
|
|
15172
|
+
[key: string]: string;
|
|
15173
|
+
} | null;
|
|
14979
15174
|
}
|
|
14980
15175
|
/**
|
|
14981
15176
|
* Enum represents action that is being processed on an approval.
|
|
@@ -16437,6 +16632,12 @@ export type RequestedItemDetailsTypeV3 = typeof RequestedItemDetailsTypeV3[keyof
|
|
|
16437
16632
|
* @interface RequestedItemStatus
|
|
16438
16633
|
*/
|
|
16439
16634
|
export interface RequestedItemStatus {
|
|
16635
|
+
/**
|
|
16636
|
+
* The ID of the access request.
|
|
16637
|
+
* @type {string}
|
|
16638
|
+
* @memberof RequestedItemStatus
|
|
16639
|
+
*/
|
|
16640
|
+
'id'?: string;
|
|
16440
16641
|
/**
|
|
16441
16642
|
* Human-readable display name of the item being requested.
|
|
16442
16643
|
* @type {string}
|
|
@@ -18500,7 +18701,7 @@ export interface Schedule {
|
|
|
18500
18701
|
* @type {ScheduleMonths}
|
|
18501
18702
|
* @memberof Schedule
|
|
18502
18703
|
*/
|
|
18503
|
-
'months'?: ScheduleMonths;
|
|
18704
|
+
'months'?: ScheduleMonths | null;
|
|
18504
18705
|
/**
|
|
18505
18706
|
*
|
|
18506
18707
|
* @type {ScheduleDays}
|
|
@@ -18518,7 +18719,7 @@ export interface Schedule {
|
|
|
18518
18719
|
* @type {string}
|
|
18519
18720
|
* @memberof Schedule
|
|
18520
18721
|
*/
|
|
18521
|
-
'expiration'?: string;
|
|
18722
|
+
'expiration'?: string | null;
|
|
18522
18723
|
/**
|
|
18523
18724
|
* The time zone to use when running the schedule. For instance, if the schedule is scheduled to run at 1AM, and this field is set to \"CST\", the schedule will run at 1AM CST.
|
|
18524
18725
|
* @type {string}
|
|
@@ -18674,7 +18875,7 @@ export interface ScheduleDays {
|
|
|
18674
18875
|
* @type {number}
|
|
18675
18876
|
* @memberof ScheduleDays
|
|
18676
18877
|
*/
|
|
18677
|
-
'interval'?: number;
|
|
18878
|
+
'interval'?: number | null;
|
|
18678
18879
|
}
|
|
18679
18880
|
export declare const ScheduleDaysTypeV3: {
|
|
18680
18881
|
readonly List: "LIST";
|
|
@@ -18704,7 +18905,7 @@ export interface ScheduleHours {
|
|
|
18704
18905
|
* @type {number}
|
|
18705
18906
|
* @memberof ScheduleHours
|
|
18706
18907
|
*/
|
|
18707
|
-
'interval'?: number;
|
|
18908
|
+
'interval'?: number | null;
|
|
18708
18909
|
}
|
|
18709
18910
|
export declare const ScheduleHoursTypeV3: {
|
|
18710
18911
|
readonly List: "LIST";
|
|
@@ -19652,7 +19853,7 @@ export interface ServiceDeskIntegrationTemplateDto {
|
|
|
19652
19853
|
* @type {string}
|
|
19653
19854
|
* @memberof ServiceDeskIntegrationTemplateDto
|
|
19654
19855
|
*/
|
|
19655
|
-
'name': string;
|
|
19856
|
+
'name': string | null;
|
|
19656
19857
|
/**
|
|
19657
19858
|
* Creation date of the Object
|
|
19658
19859
|
* @type {string}
|
|
@@ -25360,7 +25561,7 @@ export declare const AccountsApiFp: (configuration?: Configuration) => {
|
|
|
25360
25561
|
* @param {*} [axiosOptions] Override http request option.
|
|
25361
25562
|
* @throws {RequiredError}
|
|
25362
25563
|
*/
|
|
25363
|
-
getAccountEntitlements(id: string, limit?: number, offset?: number, count?: boolean, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<
|
|
25564
|
+
getAccountEntitlements(id: string, limit?: number, offset?: number, count?: boolean, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<Entitlement>>>;
|
|
25364
25565
|
/**
|
|
25365
25566
|
* List accounts.
|
|
25366
25567
|
* @summary Accounts List
|
|
@@ -25462,7 +25663,7 @@ export declare const AccountsApiFactory: (configuration?: Configuration, basePat
|
|
|
25462
25663
|
* @param {*} [axiosOptions] Override http request option.
|
|
25463
25664
|
* @throws {RequiredError}
|
|
25464
25665
|
*/
|
|
25465
|
-
getAccountEntitlements(requestParameters: AccountsApiGetAccountEntitlementsRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<
|
|
25666
|
+
getAccountEntitlements(requestParameters: AccountsApiGetAccountEntitlementsRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<Entitlement>>;
|
|
25466
25667
|
/**
|
|
25467
25668
|
* List accounts.
|
|
25468
25669
|
* @summary Accounts List
|
|
@@ -25785,7 +25986,7 @@ export declare class AccountsApi extends BaseAPI {
|
|
|
25785
25986
|
* @throws {RequiredError}
|
|
25786
25987
|
* @memberof AccountsApi
|
|
25787
25988
|
*/
|
|
25788
|
-
getAccountEntitlements(requestParameters: AccountsApiGetAccountEntitlementsRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
25989
|
+
getAccountEntitlements(requestParameters: AccountsApiGetAccountEntitlementsRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Entitlement[], any>>;
|
|
25789
25990
|
/**
|
|
25790
25991
|
* List accounts.
|
|
25791
25992
|
* @summary Accounts List
|
|
@@ -42909,10 +43110,11 @@ export declare const WorkItemsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
42909
43110
|
* This API completes a work item. Either an admin, or the owning/current user must make this request.
|
|
42910
43111
|
* @summary Complete a Work Item
|
|
42911
43112
|
* @param {string} id The ID of the work item
|
|
43113
|
+
* @param {string | null} [body] Body is the request payload to create form definition request
|
|
42912
43114
|
* @param {*} [axiosOptions] Override http request option.
|
|
42913
43115
|
* @throws {RequiredError}
|
|
42914
43116
|
*/
|
|
42915
|
-
completeWorkItem: (id: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
43117
|
+
completeWorkItem: (id: string, body?: string | null, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
42916
43118
|
/**
|
|
42917
43119
|
* This gets a collection of completed work items belonging to either the specified user(admin required), or the current user.
|
|
42918
43120
|
* @summary Completed Work Items
|
|
@@ -43031,10 +43233,11 @@ export declare const WorkItemsApiFp: (configuration?: Configuration) => {
|
|
|
43031
43233
|
* This API completes a work item. Either an admin, or the owning/current user must make this request.
|
|
43032
43234
|
* @summary Complete a Work Item
|
|
43033
43235
|
* @param {string} id The ID of the work item
|
|
43236
|
+
* @param {string | null} [body] Body is the request payload to create form definition request
|
|
43034
43237
|
* @param {*} [axiosOptions] Override http request option.
|
|
43035
43238
|
* @throws {RequiredError}
|
|
43036
43239
|
*/
|
|
43037
|
-
completeWorkItem(id: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WorkItems>>;
|
|
43240
|
+
completeWorkItem(id: string, body?: string | null, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WorkItems>>;
|
|
43038
43241
|
/**
|
|
43039
43242
|
* This gets a collection of completed work items belonging to either the specified user(admin required), or the current user.
|
|
43040
43243
|
* @summary Completed Work Items
|
|
@@ -43281,6 +43484,12 @@ export interface WorkItemsApiCompleteWorkItemRequest {
|
|
|
43281
43484
|
* @memberof WorkItemsApiCompleteWorkItem
|
|
43282
43485
|
*/
|
|
43283
43486
|
readonly id: string;
|
|
43487
|
+
/**
|
|
43488
|
+
* Body is the request payload to create form definition request
|
|
43489
|
+
* @type {string}
|
|
43490
|
+
* @memberof WorkItemsApiCompleteWorkItem
|
|
43491
|
+
*/
|
|
43492
|
+
readonly body?: string | null;
|
|
43284
43493
|
}
|
|
43285
43494
|
/**
|
|
43286
43495
|
* Request parameters for getCompletedWorkItems operation in WorkItemsApi.
|