sailpoint-api-client 1.4.11 → 1.4.12
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 +90 -54
- package/beta/common.ts +2 -2
- package/beta/package.json +1 -1
- package/dist/beta/api.d.ts +40 -40
- package/dist/beta/api.js +161 -71
- package/dist/beta/api.js.map +1 -1
- package/dist/beta/common.js +1 -1
- package/dist/v2024/api.d.ts +116 -104
- package/dist/v2024/api.js +220 -130
- package/dist/v2024/api.js.map +1 -1
- package/dist/v2024/common.js +1 -1
- package/dist/v3/api.d.ts +76 -64
- package/dist/v3/api.js +59 -59
- package/dist/v3/api.js.map +1 -1
- package/dist/v3/common.js +1 -1
- package/package.json +1 -1
- package/v2024/README.md +2 -2
- package/v2024/api.ts +166 -118
- package/v2024/common.ts +2 -2
- package/v2024/package.json +1 -1
- package/v3/README.md +2 -2
- package/v3/api.ts +76 -64
- package/v3/common.ts +2 -2
- package/v3/package.json +1 -1
package/dist/beta/api.js
CHANGED
|
@@ -20236,7 +20236,7 @@ var IAIOutliersBetaApiAxiosParamCreator = function (configuration) {
|
|
|
20236
20236
|
var _this = this;
|
|
20237
20237
|
return {
|
|
20238
20238
|
/**
|
|
20239
|
-
* This API exports a list of ignored outliers to a CSV as well as list of non-ignored outliers to a CSV. These two CSVs will be zipped and exported
|
|
20239
|
+
* This API exports a list of ignored outliers to a CSV as well as list of non-ignored outliers to a CSV. These two CSVs will be zipped and exported. Columns will include: identityId, type, firstDetectionDate, latestDetectionDate, ignored, & attributes (defined set of identity attributes).
|
|
20240
20240
|
* @summary IAI Identity Outliers Export
|
|
20241
20241
|
* @param {'LOW_SIMILARITY' | 'STRUCTURAL'} [type] Type of the identity outliers snapshot to filter on
|
|
20242
20242
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -20257,20 +20257,30 @@ var IAIOutliersBetaApiAxiosParamCreator = function (configuration) {
|
|
|
20257
20257
|
localVarRequestOptions = __assign(__assign({ method: 'GET' }, baseOptions), axiosOptions);
|
|
20258
20258
|
localVarHeaderParameter = {};
|
|
20259
20259
|
localVarQueryParameter = {};
|
|
20260
|
-
// authentication
|
|
20260
|
+
// authentication applicationAuth required
|
|
20261
20261
|
// oauth required
|
|
20262
|
-
return [4 /*yield*/, (0, common_1.setOAuthToObject)(localVarHeaderParameter, "
|
|
20262
|
+
return [4 /*yield*/, (0, common_1.setOAuthToObject)(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
20263
20263
|
// authentication userAuth required
|
|
20264
20264
|
// oauth required
|
|
20265
20265
|
];
|
|
20266
20266
|
case 1:
|
|
20267
|
-
// authentication
|
|
20267
|
+
// authentication applicationAuth required
|
|
20268
20268
|
// oauth required
|
|
20269
20269
|
_a.sent();
|
|
20270
20270
|
// authentication userAuth required
|
|
20271
20271
|
// oauth required
|
|
20272
|
-
return [4 /*yield*/, (0, common_1.setOAuthToObject)(localVarHeaderParameter, "userAuth", [
|
|
20272
|
+
return [4 /*yield*/, (0, common_1.setOAuthToObject)(localVarHeaderParameter, "userAuth", [], configuration)
|
|
20273
|
+
// authentication userAuth required
|
|
20274
|
+
// oauth required
|
|
20275
|
+
];
|
|
20273
20276
|
case 2:
|
|
20277
|
+
// authentication userAuth required
|
|
20278
|
+
// oauth required
|
|
20279
|
+
_a.sent();
|
|
20280
|
+
// authentication userAuth required
|
|
20281
|
+
// oauth required
|
|
20282
|
+
return [4 /*yield*/, (0, common_1.setOAuthToObject)(localVarHeaderParameter, "userAuth", [], configuration)];
|
|
20283
|
+
case 3:
|
|
20274
20284
|
// authentication userAuth required
|
|
20275
20285
|
// oauth required
|
|
20276
20286
|
_a.sent();
|
|
@@ -20289,7 +20299,7 @@ var IAIOutliersBetaApiAxiosParamCreator = function (configuration) {
|
|
|
20289
20299
|
});
|
|
20290
20300
|
},
|
|
20291
20301
|
/**
|
|
20292
|
-
* This API
|
|
20302
|
+
* This API returns a summary containing the number of identities that customer has, the number of outliers, and the type of outlier.
|
|
20293
20303
|
* @summary IAI Identity Outliers Summary
|
|
20294
20304
|
* @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.
|
|
20295
20305
|
* @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.
|
|
@@ -20314,20 +20324,30 @@ var IAIOutliersBetaApiAxiosParamCreator = function (configuration) {
|
|
|
20314
20324
|
localVarRequestOptions = __assign(__assign({ method: 'GET' }, baseOptions), axiosOptions);
|
|
20315
20325
|
localVarHeaderParameter = {};
|
|
20316
20326
|
localVarQueryParameter = {};
|
|
20317
|
-
// authentication
|
|
20327
|
+
// authentication applicationAuth required
|
|
20318
20328
|
// oauth required
|
|
20319
|
-
return [4 /*yield*/, (0, common_1.setOAuthToObject)(localVarHeaderParameter, "
|
|
20329
|
+
return [4 /*yield*/, (0, common_1.setOAuthToObject)(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
20320
20330
|
// authentication userAuth required
|
|
20321
20331
|
// oauth required
|
|
20322
20332
|
];
|
|
20323
20333
|
case 1:
|
|
20324
|
-
// authentication
|
|
20334
|
+
// authentication applicationAuth required
|
|
20325
20335
|
// oauth required
|
|
20326
20336
|
_a.sent();
|
|
20327
20337
|
// authentication userAuth required
|
|
20328
20338
|
// oauth required
|
|
20329
|
-
return [4 /*yield*/, (0, common_1.setOAuthToObject)(localVarHeaderParameter, "userAuth", [
|
|
20339
|
+
return [4 /*yield*/, (0, common_1.setOAuthToObject)(localVarHeaderParameter, "userAuth", [], configuration)
|
|
20340
|
+
// authentication userAuth required
|
|
20341
|
+
// oauth required
|
|
20342
|
+
];
|
|
20330
20343
|
case 2:
|
|
20344
|
+
// authentication userAuth required
|
|
20345
|
+
// oauth required
|
|
20346
|
+
_a.sent();
|
|
20347
|
+
// authentication userAuth required
|
|
20348
|
+
// oauth required
|
|
20349
|
+
return [4 /*yield*/, (0, common_1.setOAuthToObject)(localVarHeaderParameter, "userAuth", [], configuration)];
|
|
20350
|
+
case 3:
|
|
20331
20351
|
// authentication userAuth required
|
|
20332
20352
|
// oauth required
|
|
20333
20353
|
_a.sent();
|
|
@@ -20358,7 +20378,7 @@ var IAIOutliersBetaApiAxiosParamCreator = function (configuration) {
|
|
|
20358
20378
|
});
|
|
20359
20379
|
},
|
|
20360
20380
|
/**
|
|
20361
|
-
* This API
|
|
20381
|
+
* This API returns a list of outliers, containing data such as identity ID, outlier type, detection dates, identity attributes, if identity is ignored, and certification information.
|
|
20362
20382
|
* @summary IAI Get Identity Outliers
|
|
20363
20383
|
* @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.
|
|
20364
20384
|
* @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.
|
|
@@ -20384,20 +20404,30 @@ var IAIOutliersBetaApiAxiosParamCreator = function (configuration) {
|
|
|
20384
20404
|
localVarRequestOptions = __assign(__assign({ method: 'GET' }, baseOptions), axiosOptions);
|
|
20385
20405
|
localVarHeaderParameter = {};
|
|
20386
20406
|
localVarQueryParameter = {};
|
|
20387
|
-
// authentication
|
|
20407
|
+
// authentication applicationAuth required
|
|
20388
20408
|
// oauth required
|
|
20389
|
-
return [4 /*yield*/, (0, common_1.setOAuthToObject)(localVarHeaderParameter, "
|
|
20409
|
+
return [4 /*yield*/, (0, common_1.setOAuthToObject)(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
20390
20410
|
// authentication userAuth required
|
|
20391
20411
|
// oauth required
|
|
20392
20412
|
];
|
|
20393
20413
|
case 1:
|
|
20394
|
-
// authentication
|
|
20414
|
+
// authentication applicationAuth required
|
|
20395
20415
|
// oauth required
|
|
20396
20416
|
_a.sent();
|
|
20397
20417
|
// authentication userAuth required
|
|
20398
20418
|
// oauth required
|
|
20399
|
-
return [4 /*yield*/, (0, common_1.setOAuthToObject)(localVarHeaderParameter, "userAuth", [
|
|
20419
|
+
return [4 /*yield*/, (0, common_1.setOAuthToObject)(localVarHeaderParameter, "userAuth", [], configuration)
|
|
20420
|
+
// authentication userAuth required
|
|
20421
|
+
// oauth required
|
|
20422
|
+
];
|
|
20400
20423
|
case 2:
|
|
20424
|
+
// authentication userAuth required
|
|
20425
|
+
// oauth required
|
|
20426
|
+
_a.sent();
|
|
20427
|
+
// authentication userAuth required
|
|
20428
|
+
// oauth required
|
|
20429
|
+
return [4 /*yield*/, (0, common_1.setOAuthToObject)(localVarHeaderParameter, "userAuth", [], configuration)];
|
|
20430
|
+
case 3:
|
|
20401
20431
|
// authentication userAuth required
|
|
20402
20432
|
// oauth required
|
|
20403
20433
|
_a.sent();
|
|
@@ -20431,7 +20461,7 @@ var IAIOutliersBetaApiAxiosParamCreator = function (configuration) {
|
|
|
20431
20461
|
});
|
|
20432
20462
|
},
|
|
20433
20463
|
/**
|
|
20434
|
-
* This API returns a most recent snapshot of each outlier type, each containing
|
|
20464
|
+
* This API returns a most recent snapshot of each outlier type, each containing the number of identities that customer has, the number of outliers, and the type of outlier.
|
|
20435
20465
|
* @summary IAI Identity Outliers Latest Summary
|
|
20436
20466
|
* @param {'LOW_SIMILARITY' | 'STRUCTURAL'} [type] Type of the identity outliers snapshot to filter on
|
|
20437
20467
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -20452,20 +20482,30 @@ var IAIOutliersBetaApiAxiosParamCreator = function (configuration) {
|
|
|
20452
20482
|
localVarRequestOptions = __assign(__assign({ method: 'GET' }, baseOptions), axiosOptions);
|
|
20453
20483
|
localVarHeaderParameter = {};
|
|
20454
20484
|
localVarQueryParameter = {};
|
|
20455
|
-
// authentication
|
|
20485
|
+
// authentication applicationAuth required
|
|
20456
20486
|
// oauth required
|
|
20457
|
-
return [4 /*yield*/, (0, common_1.setOAuthToObject)(localVarHeaderParameter, "
|
|
20487
|
+
return [4 /*yield*/, (0, common_1.setOAuthToObject)(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
20458
20488
|
// authentication userAuth required
|
|
20459
20489
|
// oauth required
|
|
20460
20490
|
];
|
|
20461
20491
|
case 1:
|
|
20462
|
-
// authentication
|
|
20492
|
+
// authentication applicationAuth required
|
|
20463
20493
|
// oauth required
|
|
20464
20494
|
_a.sent();
|
|
20465
20495
|
// authentication userAuth required
|
|
20466
20496
|
// oauth required
|
|
20467
|
-
return [4 /*yield*/, (0, common_1.setOAuthToObject)(localVarHeaderParameter, "userAuth", [
|
|
20497
|
+
return [4 /*yield*/, (0, common_1.setOAuthToObject)(localVarHeaderParameter, "userAuth", [], configuration)
|
|
20498
|
+
// authentication userAuth required
|
|
20499
|
+
// oauth required
|
|
20500
|
+
];
|
|
20468
20501
|
case 2:
|
|
20502
|
+
// authentication userAuth required
|
|
20503
|
+
// oauth required
|
|
20504
|
+
_a.sent();
|
|
20505
|
+
// authentication userAuth required
|
|
20506
|
+
// oauth required
|
|
20507
|
+
return [4 /*yield*/, (0, common_1.setOAuthToObject)(localVarHeaderParameter, "userAuth", [], configuration)];
|
|
20508
|
+
case 3:
|
|
20469
20509
|
// authentication userAuth required
|
|
20470
20510
|
// oauth required
|
|
20471
20511
|
_a.sent();
|
|
@@ -20484,7 +20524,7 @@ var IAIOutliersBetaApiAxiosParamCreator = function (configuration) {
|
|
|
20484
20524
|
});
|
|
20485
20525
|
},
|
|
20486
20526
|
/**
|
|
20487
|
-
* This API returns a summary of a contributing feature for an identity outlier.
|
|
20527
|
+
* This API returns a summary of a contributing feature for an identity outlier. The object contains: contributing feature name (translated text or message key), identity outlier display name, feature values, feature definition and explanation (translated text or message key), peer display name and identityId, access item reference, translation messages object.
|
|
20488
20528
|
* @summary Get identity outlier contibuting feature summary
|
|
20489
20529
|
* @param {string} outlierFeatureId Contributing feature id
|
|
20490
20530
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -20508,20 +20548,30 @@ var IAIOutliersBetaApiAxiosParamCreator = function (configuration) {
|
|
|
20508
20548
|
localVarRequestOptions = __assign(__assign({ method: 'GET' }, baseOptions), axiosOptions);
|
|
20509
20549
|
localVarHeaderParameter = {};
|
|
20510
20550
|
localVarQueryParameter = {};
|
|
20551
|
+
// authentication applicationAuth required
|
|
20552
|
+
// oauth required
|
|
20553
|
+
return [4 /*yield*/, (0, common_1.setOAuthToObject)(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
20554
|
+
// authentication userAuth required
|
|
20555
|
+
// oauth required
|
|
20556
|
+
];
|
|
20557
|
+
case 1:
|
|
20558
|
+
// authentication applicationAuth required
|
|
20559
|
+
// oauth required
|
|
20560
|
+
_a.sent();
|
|
20511
20561
|
// authentication userAuth required
|
|
20512
20562
|
// oauth required
|
|
20513
20563
|
return [4 /*yield*/, (0, common_1.setOAuthToObject)(localVarHeaderParameter, "userAuth", [], configuration)
|
|
20514
20564
|
// authentication userAuth required
|
|
20515
20565
|
// oauth required
|
|
20516
20566
|
];
|
|
20517
|
-
case
|
|
20567
|
+
case 2:
|
|
20518
20568
|
// authentication userAuth required
|
|
20519
20569
|
// oauth required
|
|
20520
20570
|
_a.sent();
|
|
20521
20571
|
// authentication userAuth required
|
|
20522
20572
|
// oauth required
|
|
20523
20573
|
return [4 /*yield*/, (0, common_1.setOAuthToObject)(localVarHeaderParameter, "userAuth", [], configuration)];
|
|
20524
|
-
case
|
|
20574
|
+
case 3:
|
|
20525
20575
|
// authentication userAuth required
|
|
20526
20576
|
// oauth required
|
|
20527
20577
|
_a.sent();
|
|
@@ -20537,7 +20587,7 @@ var IAIOutliersBetaApiAxiosParamCreator = function (configuration) {
|
|
|
20537
20587
|
});
|
|
20538
20588
|
},
|
|
20539
20589
|
/**
|
|
20540
|
-
* This API returns a list of contributing feature objects for a single outlier.
|
|
20590
|
+
* This API returns a list of contributing feature objects for a single outlier. The object contains: feature name, feature value type, value, importance, display name (translated text or message key), description (translated text or message key), translation messages object.
|
|
20541
20591
|
* @summary Get identity outlier\'s contibuting features
|
|
20542
20592
|
* @param {string} outlierId The outlier id
|
|
20543
20593
|
* @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.
|
|
@@ -20566,20 +20616,30 @@ var IAIOutliersBetaApiAxiosParamCreator = function (configuration) {
|
|
|
20566
20616
|
localVarRequestOptions = __assign(__assign({ method: 'GET' }, baseOptions), axiosOptions);
|
|
20567
20617
|
localVarHeaderParameter = {};
|
|
20568
20618
|
localVarQueryParameter = {};
|
|
20569
|
-
// authentication
|
|
20619
|
+
// authentication applicationAuth required
|
|
20570
20620
|
// oauth required
|
|
20571
|
-
return [4 /*yield*/, (0, common_1.setOAuthToObject)(localVarHeaderParameter, "
|
|
20621
|
+
return [4 /*yield*/, (0, common_1.setOAuthToObject)(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
20572
20622
|
// authentication userAuth required
|
|
20573
20623
|
// oauth required
|
|
20574
20624
|
];
|
|
20575
20625
|
case 1:
|
|
20576
|
-
// authentication
|
|
20626
|
+
// authentication applicationAuth required
|
|
20577
20627
|
// oauth required
|
|
20578
20628
|
_a.sent();
|
|
20579
20629
|
// authentication userAuth required
|
|
20580
20630
|
// oauth required
|
|
20581
|
-
return [4 /*yield*/, (0, common_1.setOAuthToObject)(localVarHeaderParameter, "userAuth", [
|
|
20631
|
+
return [4 /*yield*/, (0, common_1.setOAuthToObject)(localVarHeaderParameter, "userAuth", [], configuration)
|
|
20632
|
+
// authentication userAuth required
|
|
20633
|
+
// oauth required
|
|
20634
|
+
];
|
|
20582
20635
|
case 2:
|
|
20636
|
+
// authentication userAuth required
|
|
20637
|
+
// oauth required
|
|
20638
|
+
_a.sent();
|
|
20639
|
+
// authentication userAuth required
|
|
20640
|
+
// oauth required
|
|
20641
|
+
return [4 /*yield*/, (0, common_1.setOAuthToObject)(localVarHeaderParameter, "userAuth", [], configuration)];
|
|
20642
|
+
case 3:
|
|
20583
20643
|
// authentication userAuth required
|
|
20584
20644
|
// oauth required
|
|
20585
20645
|
_a.sent();
|
|
@@ -20610,7 +20670,7 @@ var IAIOutliersBetaApiAxiosParamCreator = function (configuration) {
|
|
|
20610
20670
|
});
|
|
20611
20671
|
},
|
|
20612
20672
|
/**
|
|
20613
|
-
* This API receives a list of
|
|
20673
|
+
* This API receives a list of identity IDs in the request, changes the outliers to be ignored.
|
|
20614
20674
|
* @summary IAI Identity Outliers Ignore
|
|
20615
20675
|
* @param {Array<string>} requestBody
|
|
20616
20676
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -20633,20 +20693,30 @@ var IAIOutliersBetaApiAxiosParamCreator = function (configuration) {
|
|
|
20633
20693
|
localVarRequestOptions = __assign(__assign({ method: 'POST' }, baseOptions), axiosOptions);
|
|
20634
20694
|
localVarHeaderParameter = {};
|
|
20635
20695
|
localVarQueryParameter = {};
|
|
20636
|
-
// authentication
|
|
20696
|
+
// authentication applicationAuth required
|
|
20637
20697
|
// oauth required
|
|
20638
|
-
return [4 /*yield*/, (0, common_1.setOAuthToObject)(localVarHeaderParameter, "
|
|
20698
|
+
return [4 /*yield*/, (0, common_1.setOAuthToObject)(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
20639
20699
|
// authentication userAuth required
|
|
20640
20700
|
// oauth required
|
|
20641
20701
|
];
|
|
20642
20702
|
case 1:
|
|
20643
|
-
// authentication
|
|
20703
|
+
// authentication applicationAuth required
|
|
20644
20704
|
// oauth required
|
|
20645
20705
|
_a.sent();
|
|
20646
20706
|
// authentication userAuth required
|
|
20647
20707
|
// oauth required
|
|
20648
|
-
return [4 /*yield*/, (0, common_1.setOAuthToObject)(localVarHeaderParameter, "userAuth", [
|
|
20708
|
+
return [4 /*yield*/, (0, common_1.setOAuthToObject)(localVarHeaderParameter, "userAuth", [], configuration)
|
|
20709
|
+
// authentication userAuth required
|
|
20710
|
+
// oauth required
|
|
20711
|
+
];
|
|
20649
20712
|
case 2:
|
|
20713
|
+
// authentication userAuth required
|
|
20714
|
+
// oauth required
|
|
20715
|
+
_a.sent();
|
|
20716
|
+
// authentication userAuth required
|
|
20717
|
+
// oauth required
|
|
20718
|
+
return [4 /*yield*/, (0, common_1.setOAuthToObject)(localVarHeaderParameter, "userAuth", [], configuration)];
|
|
20719
|
+
case 3:
|
|
20650
20720
|
// authentication userAuth required
|
|
20651
20721
|
// oauth required
|
|
20652
20722
|
_a.sent();
|
|
@@ -20664,14 +20734,14 @@ var IAIOutliersBetaApiAxiosParamCreator = function (configuration) {
|
|
|
20664
20734
|
});
|
|
20665
20735
|
},
|
|
20666
20736
|
/**
|
|
20667
|
-
* This API returns a list of the enriched access items associated with each feature filtered by the access item type The object contains: accessItemId, display name (translated text or message key), description (translated text or message key), accessType, sourceName, extremelyRare
|
|
20737
|
+
* This API returns a list of the enriched access items associated with each feature filtered by the access item type. The object contains: accessItemId, display name (translated text or message key), description (translated text or message key), accessType, sourceName, extremelyRare.
|
|
20668
20738
|
* @summary Gets a list of access items associated with each identity outlier contributing feature
|
|
20669
20739
|
* @param {string} outlierId The outlier id
|
|
20670
20740
|
* @param {'radical_entitlement_count' | 'entitlement_count' | 'max_jaccard_similarity' | 'mean_max_bundle_concurrency' | 'single_entitlement_bundle_count' | 'peerless_score'} contributingFeatureName The name of contributing feature
|
|
20671
20741
|
* @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.
|
|
20672
20742
|
* @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.
|
|
20673
20743
|
* @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.
|
|
20674
|
-
* @param {string} [accessType] The type of access item for the identity outlier contributing feature. If not provided, it returns all
|
|
20744
|
+
* @param {string} [accessType] The type of access item for the identity outlier contributing feature. If not provided, it returns all.
|
|
20675
20745
|
* @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: **displayName**
|
|
20676
20746
|
* @param {*} [axiosOptions] Override http request option.
|
|
20677
20747
|
* @throws {RequiredError}
|
|
@@ -20697,20 +20767,30 @@ var IAIOutliersBetaApiAxiosParamCreator = function (configuration) {
|
|
|
20697
20767
|
localVarRequestOptions = __assign(__assign({ method: 'GET' }, baseOptions), axiosOptions);
|
|
20698
20768
|
localVarHeaderParameter = {};
|
|
20699
20769
|
localVarQueryParameter = {};
|
|
20770
|
+
// authentication applicationAuth required
|
|
20771
|
+
// oauth required
|
|
20772
|
+
return [4 /*yield*/, (0, common_1.setOAuthToObject)(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
20773
|
+
// authentication userAuth required
|
|
20774
|
+
// oauth required
|
|
20775
|
+
];
|
|
20776
|
+
case 1:
|
|
20777
|
+
// authentication applicationAuth required
|
|
20778
|
+
// oauth required
|
|
20779
|
+
_a.sent();
|
|
20700
20780
|
// authentication userAuth required
|
|
20701
20781
|
// oauth required
|
|
20702
20782
|
return [4 /*yield*/, (0, common_1.setOAuthToObject)(localVarHeaderParameter, "userAuth", [], configuration)
|
|
20703
20783
|
// authentication userAuth required
|
|
20704
20784
|
// oauth required
|
|
20705
20785
|
];
|
|
20706
|
-
case
|
|
20786
|
+
case 2:
|
|
20707
20787
|
// authentication userAuth required
|
|
20708
20788
|
// oauth required
|
|
20709
20789
|
_a.sent();
|
|
20710
20790
|
// authentication userAuth required
|
|
20711
20791
|
// oauth required
|
|
20712
20792
|
return [4 /*yield*/, (0, common_1.setOAuthToObject)(localVarHeaderParameter, "userAuth", [], configuration)];
|
|
20713
|
-
case
|
|
20793
|
+
case 3:
|
|
20714
20794
|
// authentication userAuth required
|
|
20715
20795
|
// oauth required
|
|
20716
20796
|
_a.sent();
|
|
@@ -20741,7 +20821,7 @@ var IAIOutliersBetaApiAxiosParamCreator = function (configuration) {
|
|
|
20741
20821
|
});
|
|
20742
20822
|
},
|
|
20743
20823
|
/**
|
|
20744
|
-
* This API receives a list of
|
|
20824
|
+
* This API receives a list of identity IDs in the request, changes the outliers to be un-ignored.
|
|
20745
20825
|
* @summary IAI Identity Outliers Unignore
|
|
20746
20826
|
* @param {Array<string>} requestBody
|
|
20747
20827
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -20764,20 +20844,30 @@ var IAIOutliersBetaApiAxiosParamCreator = function (configuration) {
|
|
|
20764
20844
|
localVarRequestOptions = __assign(__assign({ method: 'POST' }, baseOptions), axiosOptions);
|
|
20765
20845
|
localVarHeaderParameter = {};
|
|
20766
20846
|
localVarQueryParameter = {};
|
|
20767
|
-
// authentication
|
|
20847
|
+
// authentication applicationAuth required
|
|
20768
20848
|
// oauth required
|
|
20769
|
-
return [4 /*yield*/, (0, common_1.setOAuthToObject)(localVarHeaderParameter, "
|
|
20849
|
+
return [4 /*yield*/, (0, common_1.setOAuthToObject)(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
20770
20850
|
// authentication userAuth required
|
|
20771
20851
|
// oauth required
|
|
20772
20852
|
];
|
|
20773
20853
|
case 1:
|
|
20774
|
-
// authentication
|
|
20854
|
+
// authentication applicationAuth required
|
|
20775
20855
|
// oauth required
|
|
20776
20856
|
_a.sent();
|
|
20777
20857
|
// authentication userAuth required
|
|
20778
20858
|
// oauth required
|
|
20779
|
-
return [4 /*yield*/, (0, common_1.setOAuthToObject)(localVarHeaderParameter, "userAuth", [
|
|
20859
|
+
return [4 /*yield*/, (0, common_1.setOAuthToObject)(localVarHeaderParameter, "userAuth", [], configuration)
|
|
20860
|
+
// authentication userAuth required
|
|
20861
|
+
// oauth required
|
|
20862
|
+
];
|
|
20780
20863
|
case 2:
|
|
20864
|
+
// authentication userAuth required
|
|
20865
|
+
// oauth required
|
|
20866
|
+
_a.sent();
|
|
20867
|
+
// authentication userAuth required
|
|
20868
|
+
// oauth required
|
|
20869
|
+
return [4 /*yield*/, (0, common_1.setOAuthToObject)(localVarHeaderParameter, "userAuth", [], configuration)];
|
|
20870
|
+
case 3:
|
|
20781
20871
|
// authentication userAuth required
|
|
20782
20872
|
// oauth required
|
|
20783
20873
|
_a.sent();
|
|
@@ -20805,7 +20895,7 @@ var IAIOutliersBetaApiFp = function (configuration) {
|
|
|
20805
20895
|
var localVarAxiosParamCreator = (0, exports.IAIOutliersBetaApiAxiosParamCreator)(configuration);
|
|
20806
20896
|
return {
|
|
20807
20897
|
/**
|
|
20808
|
-
* This API exports a list of ignored outliers to a CSV as well as list of non-ignored outliers to a CSV. These two CSVs will be zipped and exported
|
|
20898
|
+
* This API exports a list of ignored outliers to a CSV as well as list of non-ignored outliers to a CSV. These two CSVs will be zipped and exported. Columns will include: identityId, type, firstDetectionDate, latestDetectionDate, ignored, & attributes (defined set of identity attributes).
|
|
20809
20899
|
* @summary IAI Identity Outliers Export
|
|
20810
20900
|
* @param {'LOW_SIMILARITY' | 'STRUCTURAL'} [type] Type of the identity outliers snapshot to filter on
|
|
20811
20901
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -20825,7 +20915,7 @@ var IAIOutliersBetaApiFp = function (configuration) {
|
|
|
20825
20915
|
});
|
|
20826
20916
|
},
|
|
20827
20917
|
/**
|
|
20828
|
-
* This API
|
|
20918
|
+
* This API returns a summary containing the number of identities that customer has, the number of outliers, and the type of outlier.
|
|
20829
20919
|
* @summary IAI Identity Outliers Summary
|
|
20830
20920
|
* @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.
|
|
20831
20921
|
* @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.
|
|
@@ -20849,7 +20939,7 @@ var IAIOutliersBetaApiFp = function (configuration) {
|
|
|
20849
20939
|
});
|
|
20850
20940
|
},
|
|
20851
20941
|
/**
|
|
20852
|
-
* This API
|
|
20942
|
+
* This API returns a list of outliers, containing data such as identity ID, outlier type, detection dates, identity attributes, if identity is ignored, and certification information.
|
|
20853
20943
|
* @summary IAI Get Identity Outliers
|
|
20854
20944
|
* @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.
|
|
20855
20945
|
* @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.
|
|
@@ -20874,7 +20964,7 @@ var IAIOutliersBetaApiFp = function (configuration) {
|
|
|
20874
20964
|
});
|
|
20875
20965
|
},
|
|
20876
20966
|
/**
|
|
20877
|
-
* This API returns a most recent snapshot of each outlier type, each containing
|
|
20967
|
+
* This API returns a most recent snapshot of each outlier type, each containing the number of identities that customer has, the number of outliers, and the type of outlier.
|
|
20878
20968
|
* @summary IAI Identity Outliers Latest Summary
|
|
20879
20969
|
* @param {'LOW_SIMILARITY' | 'STRUCTURAL'} [type] Type of the identity outliers snapshot to filter on
|
|
20880
20970
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -20894,7 +20984,7 @@ var IAIOutliersBetaApiFp = function (configuration) {
|
|
|
20894
20984
|
});
|
|
20895
20985
|
},
|
|
20896
20986
|
/**
|
|
20897
|
-
* This API returns a summary of a contributing feature for an identity outlier.
|
|
20987
|
+
* This API returns a summary of a contributing feature for an identity outlier. The object contains: contributing feature name (translated text or message key), identity outlier display name, feature values, feature definition and explanation (translated text or message key), peer display name and identityId, access item reference, translation messages object.
|
|
20898
20988
|
* @summary Get identity outlier contibuting feature summary
|
|
20899
20989
|
* @param {string} outlierFeatureId Contributing feature id
|
|
20900
20990
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -20914,7 +21004,7 @@ var IAIOutliersBetaApiFp = function (configuration) {
|
|
|
20914
21004
|
});
|
|
20915
21005
|
},
|
|
20916
21006
|
/**
|
|
20917
|
-
* This API returns a list of contributing feature objects for a single outlier.
|
|
21007
|
+
* This API returns a list of contributing feature objects for a single outlier. The object contains: feature name, feature value type, value, importance, display name (translated text or message key), description (translated text or message key), translation messages object.
|
|
20918
21008
|
* @summary Get identity outlier\'s contibuting features
|
|
20919
21009
|
* @param {string} outlierId The outlier id
|
|
20920
21010
|
* @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.
|
|
@@ -20939,7 +21029,7 @@ var IAIOutliersBetaApiFp = function (configuration) {
|
|
|
20939
21029
|
});
|
|
20940
21030
|
},
|
|
20941
21031
|
/**
|
|
20942
|
-
* This API receives a list of
|
|
21032
|
+
* This API receives a list of identity IDs in the request, changes the outliers to be ignored.
|
|
20943
21033
|
* @summary IAI Identity Outliers Ignore
|
|
20944
21034
|
* @param {Array<string>} requestBody
|
|
20945
21035
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -20959,14 +21049,14 @@ var IAIOutliersBetaApiFp = function (configuration) {
|
|
|
20959
21049
|
});
|
|
20960
21050
|
},
|
|
20961
21051
|
/**
|
|
20962
|
-
* This API returns a list of the enriched access items associated with each feature filtered by the access item type The object contains: accessItemId, display name (translated text or message key), description (translated text or message key), accessType, sourceName, extremelyRare
|
|
21052
|
+
* This API returns a list of the enriched access items associated with each feature filtered by the access item type. The object contains: accessItemId, display name (translated text or message key), description (translated text or message key), accessType, sourceName, extremelyRare.
|
|
20963
21053
|
* @summary Gets a list of access items associated with each identity outlier contributing feature
|
|
20964
21054
|
* @param {string} outlierId The outlier id
|
|
20965
21055
|
* @param {'radical_entitlement_count' | 'entitlement_count' | 'max_jaccard_similarity' | 'mean_max_bundle_concurrency' | 'single_entitlement_bundle_count' | 'peerless_score'} contributingFeatureName The name of contributing feature
|
|
20966
21056
|
* @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.
|
|
20967
21057
|
* @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.
|
|
20968
21058
|
* @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.
|
|
20969
|
-
* @param {string} [accessType] The type of access item for the identity outlier contributing feature. If not provided, it returns all
|
|
21059
|
+
* @param {string} [accessType] The type of access item for the identity outlier contributing feature. If not provided, it returns all.
|
|
20970
21060
|
* @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: **displayName**
|
|
20971
21061
|
* @param {*} [axiosOptions] Override http request option.
|
|
20972
21062
|
* @throws {RequiredError}
|
|
@@ -20985,7 +21075,7 @@ var IAIOutliersBetaApiFp = function (configuration) {
|
|
|
20985
21075
|
});
|
|
20986
21076
|
},
|
|
20987
21077
|
/**
|
|
20988
|
-
* This API receives a list of
|
|
21078
|
+
* This API receives a list of identity IDs in the request, changes the outliers to be un-ignored.
|
|
20989
21079
|
* @summary IAI Identity Outliers Unignore
|
|
20990
21080
|
* @param {Array<string>} requestBody
|
|
20991
21081
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -21015,7 +21105,7 @@ var IAIOutliersBetaApiFactory = function (configuration, basePath, axios) {
|
|
|
21015
21105
|
var localVarFp = (0, exports.IAIOutliersBetaApiFp)(configuration);
|
|
21016
21106
|
return {
|
|
21017
21107
|
/**
|
|
21018
|
-
* This API exports a list of ignored outliers to a CSV as well as list of non-ignored outliers to a CSV. These two CSVs will be zipped and exported
|
|
21108
|
+
* This API exports a list of ignored outliers to a CSV as well as list of non-ignored outliers to a CSV. These two CSVs will be zipped and exported. Columns will include: identityId, type, firstDetectionDate, latestDetectionDate, ignored, & attributes (defined set of identity attributes).
|
|
21019
21109
|
* @summary IAI Identity Outliers Export
|
|
21020
21110
|
* @param {'LOW_SIMILARITY' | 'STRUCTURAL'} [type] Type of the identity outliers snapshot to filter on
|
|
21021
21111
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -21025,7 +21115,7 @@ var IAIOutliersBetaApiFactory = function (configuration, basePath, axios) {
|
|
|
21025
21115
|
return localVarFp.exportOutliersZip(type, axiosOptions).then(function (request) { return request(axios, basePath); });
|
|
21026
21116
|
},
|
|
21027
21117
|
/**
|
|
21028
|
-
* This API
|
|
21118
|
+
* This API returns a summary containing the number of identities that customer has, the number of outliers, and the type of outlier.
|
|
21029
21119
|
* @summary IAI Identity Outliers Summary
|
|
21030
21120
|
* @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.
|
|
21031
21121
|
* @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.
|
|
@@ -21039,7 +21129,7 @@ var IAIOutliersBetaApiFactory = function (configuration, basePath, axios) {
|
|
|
21039
21129
|
return localVarFp.getIdentityOutlierSnapshots(limit, offset, type, filters, sorters, axiosOptions).then(function (request) { return request(axios, basePath); });
|
|
21040
21130
|
},
|
|
21041
21131
|
/**
|
|
21042
|
-
* This API
|
|
21132
|
+
* This API returns a list of outliers, containing data such as identity ID, outlier type, detection dates, identity attributes, if identity is ignored, and certification information.
|
|
21043
21133
|
* @summary IAI Get Identity Outliers
|
|
21044
21134
|
* @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.
|
|
21045
21135
|
* @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.
|
|
@@ -21054,7 +21144,7 @@ var IAIOutliersBetaApiFactory = function (configuration, basePath, axios) {
|
|
|
21054
21144
|
return localVarFp.getIdentityOutliers(limit, offset, count, type, filters, sorters, axiosOptions).then(function (request) { return request(axios, basePath); });
|
|
21055
21145
|
},
|
|
21056
21146
|
/**
|
|
21057
|
-
* This API returns a most recent snapshot of each outlier type, each containing
|
|
21147
|
+
* This API returns a most recent snapshot of each outlier type, each containing the number of identities that customer has, the number of outliers, and the type of outlier.
|
|
21058
21148
|
* @summary IAI Identity Outliers Latest Summary
|
|
21059
21149
|
* @param {'LOW_SIMILARITY' | 'STRUCTURAL'} [type] Type of the identity outliers snapshot to filter on
|
|
21060
21150
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -21064,7 +21154,7 @@ var IAIOutliersBetaApiFactory = function (configuration, basePath, axios) {
|
|
|
21064
21154
|
return localVarFp.getLatestIdentityOutlierSnapshots(type, axiosOptions).then(function (request) { return request(axios, basePath); });
|
|
21065
21155
|
},
|
|
21066
21156
|
/**
|
|
21067
|
-
* This API returns a summary of a contributing feature for an identity outlier.
|
|
21157
|
+
* This API returns a summary of a contributing feature for an identity outlier. The object contains: contributing feature name (translated text or message key), identity outlier display name, feature values, feature definition and explanation (translated text or message key), peer display name and identityId, access item reference, translation messages object.
|
|
21068
21158
|
* @summary Get identity outlier contibuting feature summary
|
|
21069
21159
|
* @param {string} outlierFeatureId Contributing feature id
|
|
21070
21160
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -21074,7 +21164,7 @@ var IAIOutliersBetaApiFactory = function (configuration, basePath, axios) {
|
|
|
21074
21164
|
return localVarFp.getOutlierContributingFeatureSummary(outlierFeatureId, axiosOptions).then(function (request) { return request(axios, basePath); });
|
|
21075
21165
|
},
|
|
21076
21166
|
/**
|
|
21077
|
-
* This API returns a list of contributing feature objects for a single outlier.
|
|
21167
|
+
* This API returns a list of contributing feature objects for a single outlier. The object contains: feature name, feature value type, value, importance, display name (translated text or message key), description (translated text or message key), translation messages object.
|
|
21078
21168
|
* @summary Get identity outlier\'s contibuting features
|
|
21079
21169
|
* @param {string} outlierId The outlier id
|
|
21080
21170
|
* @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.
|
|
@@ -21089,7 +21179,7 @@ var IAIOutliersBetaApiFactory = function (configuration, basePath, axios) {
|
|
|
21089
21179
|
return localVarFp.getPeerGroupOutliersContributingFeatures(outlierId, limit, offset, count, includeTranslationMessages, sorters, axiosOptions).then(function (request) { return request(axios, basePath); });
|
|
21090
21180
|
},
|
|
21091
21181
|
/**
|
|
21092
|
-
* This API receives a list of
|
|
21182
|
+
* This API receives a list of identity IDs in the request, changes the outliers to be ignored.
|
|
21093
21183
|
* @summary IAI Identity Outliers Ignore
|
|
21094
21184
|
* @param {Array<string>} requestBody
|
|
21095
21185
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -21099,14 +21189,14 @@ var IAIOutliersBetaApiFactory = function (configuration, basePath, axios) {
|
|
|
21099
21189
|
return localVarFp.ignoreIdentityOutliers(requestBody, axiosOptions).then(function (request) { return request(axios, basePath); });
|
|
21100
21190
|
},
|
|
21101
21191
|
/**
|
|
21102
|
-
* This API returns a list of the enriched access items associated with each feature filtered by the access item type The object contains: accessItemId, display name (translated text or message key), description (translated text or message key), accessType, sourceName, extremelyRare
|
|
21192
|
+
* This API returns a list of the enriched access items associated with each feature filtered by the access item type. The object contains: accessItemId, display name (translated text or message key), description (translated text or message key), accessType, sourceName, extremelyRare.
|
|
21103
21193
|
* @summary Gets a list of access items associated with each identity outlier contributing feature
|
|
21104
21194
|
* @param {string} outlierId The outlier id
|
|
21105
21195
|
* @param {'radical_entitlement_count' | 'entitlement_count' | 'max_jaccard_similarity' | 'mean_max_bundle_concurrency' | 'single_entitlement_bundle_count' | 'peerless_score'} contributingFeatureName The name of contributing feature
|
|
21106
21196
|
* @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.
|
|
21107
21197
|
* @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.
|
|
21108
21198
|
* @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.
|
|
21109
|
-
* @param {string} [accessType] The type of access item for the identity outlier contributing feature. If not provided, it returns all
|
|
21199
|
+
* @param {string} [accessType] The type of access item for the identity outlier contributing feature. If not provided, it returns all.
|
|
21110
21200
|
* @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: **displayName**
|
|
21111
21201
|
* @param {*} [axiosOptions] Override http request option.
|
|
21112
21202
|
* @throws {RequiredError}
|
|
@@ -21115,7 +21205,7 @@ var IAIOutliersBetaApiFactory = function (configuration, basePath, axios) {
|
|
|
21115
21205
|
return localVarFp.listOutliersContributingFeatureAccessItems(outlierId, contributingFeatureName, limit, offset, count, accessType, sorters, axiosOptions).then(function (request) { return request(axios, basePath); });
|
|
21116
21206
|
},
|
|
21117
21207
|
/**
|
|
21118
|
-
* This API receives a list of
|
|
21208
|
+
* This API receives a list of identity IDs in the request, changes the outliers to be un-ignored.
|
|
21119
21209
|
* @summary IAI Identity Outliers Unignore
|
|
21120
21210
|
* @param {Array<string>} requestBody
|
|
21121
21211
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -21139,7 +21229,7 @@ var IAIOutliersBetaApi = /** @class */ (function (_super) {
|
|
|
21139
21229
|
return _super !== null && _super.apply(this, arguments) || this;
|
|
21140
21230
|
}
|
|
21141
21231
|
/**
|
|
21142
|
-
* This API exports a list of ignored outliers to a CSV as well as list of non-ignored outliers to a CSV. These two CSVs will be zipped and exported
|
|
21232
|
+
* This API exports a list of ignored outliers to a CSV as well as list of non-ignored outliers to a CSV. These two CSVs will be zipped and exported. Columns will include: identityId, type, firstDetectionDate, latestDetectionDate, ignored, & attributes (defined set of identity attributes).
|
|
21143
21233
|
* @summary IAI Identity Outliers Export
|
|
21144
21234
|
* @param {IAIOutliersBetaApiExportOutliersZipRequest} requestParameters Request parameters.
|
|
21145
21235
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -21152,7 +21242,7 @@ var IAIOutliersBetaApi = /** @class */ (function (_super) {
|
|
|
21152
21242
|
return (0, exports.IAIOutliersBetaApiFp)(this.configuration).exportOutliersZip(requestParameters.type, axiosOptions).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
21153
21243
|
};
|
|
21154
21244
|
/**
|
|
21155
|
-
* This API
|
|
21245
|
+
* This API returns a summary containing the number of identities that customer has, the number of outliers, and the type of outlier.
|
|
21156
21246
|
* @summary IAI Identity Outliers Summary
|
|
21157
21247
|
* @param {IAIOutliersBetaApiGetIdentityOutlierSnapshotsRequest} requestParameters Request parameters.
|
|
21158
21248
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -21165,7 +21255,7 @@ var IAIOutliersBetaApi = /** @class */ (function (_super) {
|
|
|
21165
21255
|
return (0, exports.IAIOutliersBetaApiFp)(this.configuration).getIdentityOutlierSnapshots(requestParameters.limit, requestParameters.offset, requestParameters.type, requestParameters.filters, requestParameters.sorters, axiosOptions).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
21166
21256
|
};
|
|
21167
21257
|
/**
|
|
21168
|
-
* This API
|
|
21258
|
+
* This API returns a list of outliers, containing data such as identity ID, outlier type, detection dates, identity attributes, if identity is ignored, and certification information.
|
|
21169
21259
|
* @summary IAI Get Identity Outliers
|
|
21170
21260
|
* @param {IAIOutliersBetaApiGetIdentityOutliersRequest} requestParameters Request parameters.
|
|
21171
21261
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -21178,7 +21268,7 @@ var IAIOutliersBetaApi = /** @class */ (function (_super) {
|
|
|
21178
21268
|
return (0, exports.IAIOutliersBetaApiFp)(this.configuration).getIdentityOutliers(requestParameters.limit, requestParameters.offset, requestParameters.count, requestParameters.type, requestParameters.filters, requestParameters.sorters, axiosOptions).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
21179
21269
|
};
|
|
21180
21270
|
/**
|
|
21181
|
-
* This API returns a most recent snapshot of each outlier type, each containing
|
|
21271
|
+
* This API returns a most recent snapshot of each outlier type, each containing the number of identities that customer has, the number of outliers, and the type of outlier.
|
|
21182
21272
|
* @summary IAI Identity Outliers Latest Summary
|
|
21183
21273
|
* @param {IAIOutliersBetaApiGetLatestIdentityOutlierSnapshotsRequest} requestParameters Request parameters.
|
|
21184
21274
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -21191,7 +21281,7 @@ var IAIOutliersBetaApi = /** @class */ (function (_super) {
|
|
|
21191
21281
|
return (0, exports.IAIOutliersBetaApiFp)(this.configuration).getLatestIdentityOutlierSnapshots(requestParameters.type, axiosOptions).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
21192
21282
|
};
|
|
21193
21283
|
/**
|
|
21194
|
-
* This API returns a summary of a contributing feature for an identity outlier.
|
|
21284
|
+
* This API returns a summary of a contributing feature for an identity outlier. The object contains: contributing feature name (translated text or message key), identity outlier display name, feature values, feature definition and explanation (translated text or message key), peer display name and identityId, access item reference, translation messages object.
|
|
21195
21285
|
* @summary Get identity outlier contibuting feature summary
|
|
21196
21286
|
* @param {IAIOutliersBetaApiGetOutlierContributingFeatureSummaryRequest} requestParameters Request parameters.
|
|
21197
21287
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -21203,7 +21293,7 @@ var IAIOutliersBetaApi = /** @class */ (function (_super) {
|
|
|
21203
21293
|
return (0, exports.IAIOutliersBetaApiFp)(this.configuration).getOutlierContributingFeatureSummary(requestParameters.outlierFeatureId, axiosOptions).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
21204
21294
|
};
|
|
21205
21295
|
/**
|
|
21206
|
-
* This API returns a list of contributing feature objects for a single outlier.
|
|
21296
|
+
* This API returns a list of contributing feature objects for a single outlier. The object contains: feature name, feature value type, value, importance, display name (translated text or message key), description (translated text or message key), translation messages object.
|
|
21207
21297
|
* @summary Get identity outlier\'s contibuting features
|
|
21208
21298
|
* @param {IAIOutliersBetaApiGetPeerGroupOutliersContributingFeaturesRequest} requestParameters Request parameters.
|
|
21209
21299
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -21215,7 +21305,7 @@ var IAIOutliersBetaApi = /** @class */ (function (_super) {
|
|
|
21215
21305
|
return (0, exports.IAIOutliersBetaApiFp)(this.configuration).getPeerGroupOutliersContributingFeatures(requestParameters.outlierId, requestParameters.limit, requestParameters.offset, requestParameters.count, requestParameters.includeTranslationMessages, requestParameters.sorters, axiosOptions).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
21216
21306
|
};
|
|
21217
21307
|
/**
|
|
21218
|
-
* This API receives a list of
|
|
21308
|
+
* This API receives a list of identity IDs in the request, changes the outliers to be ignored.
|
|
21219
21309
|
* @summary IAI Identity Outliers Ignore
|
|
21220
21310
|
* @param {IAIOutliersBetaApiIgnoreIdentityOutliersRequest} requestParameters Request parameters.
|
|
21221
21311
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -21227,7 +21317,7 @@ var IAIOutliersBetaApi = /** @class */ (function (_super) {
|
|
|
21227
21317
|
return (0, exports.IAIOutliersBetaApiFp)(this.configuration).ignoreIdentityOutliers(requestParameters.requestBody, axiosOptions).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
21228
21318
|
};
|
|
21229
21319
|
/**
|
|
21230
|
-
* This API returns a list of the enriched access items associated with each feature filtered by the access item type The object contains: accessItemId, display name (translated text or message key), description (translated text or message key), accessType, sourceName, extremelyRare
|
|
21320
|
+
* This API returns a list of the enriched access items associated with each feature filtered by the access item type. The object contains: accessItemId, display name (translated text or message key), description (translated text or message key), accessType, sourceName, extremelyRare.
|
|
21231
21321
|
* @summary Gets a list of access items associated with each identity outlier contributing feature
|
|
21232
21322
|
* @param {IAIOutliersBetaApiListOutliersContributingFeatureAccessItemsRequest} requestParameters Request parameters.
|
|
21233
21323
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -21239,7 +21329,7 @@ var IAIOutliersBetaApi = /** @class */ (function (_super) {
|
|
|
21239
21329
|
return (0, exports.IAIOutliersBetaApiFp)(this.configuration).listOutliersContributingFeatureAccessItems(requestParameters.outlierId, requestParameters.contributingFeatureName, requestParameters.limit, requestParameters.offset, requestParameters.count, requestParameters.accessType, requestParameters.sorters, axiosOptions).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
21240
21330
|
};
|
|
21241
21331
|
/**
|
|
21242
|
-
* This API receives a list of
|
|
21332
|
+
* This API receives a list of identity IDs in the request, changes the outliers to be un-ignored.
|
|
21243
21333
|
* @summary IAI Identity Outliers Unignore
|
|
21244
21334
|
* @param {IAIOutliersBetaApiUnIgnoreIdentityOutliersRequest} requestParameters Request parameters.
|
|
21245
21335
|
* @param {*} [axiosOptions] Override http request option.
|