sailpoint-api-client 1.4.10 → 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 +175 -124
- package/dist/v2024/api.js +255 -158
- 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 +229 -139
- 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/beta/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
## sailpoint-sdk@1.4.
|
|
1
|
+
## sailpoint-sdk@1.4.12
|
|
2
2
|
|
|
3
3
|
This generator creates TypeScript/JavaScript client that utilizes [axios](https://github.com/axios/axios). The generated Node module can be used in the following environments:
|
|
4
4
|
|
|
@@ -36,7 +36,7 @@ navigate to the folder of your consuming project and run one of the following co
|
|
|
36
36
|
_published:_
|
|
37
37
|
|
|
38
38
|
```
|
|
39
|
-
npm install sailpoint-sdk@1.4.
|
|
39
|
+
npm install sailpoint-sdk@1.4.12 --save
|
|
40
40
|
```
|
|
41
41
|
|
|
42
42
|
_unPublished (not recommended):_
|
package/beta/api.ts
CHANGED
|
@@ -52134,7 +52134,7 @@ export class IAIMessageCatalogsBetaApi extends BaseAPI {
|
|
|
52134
52134
|
export const IAIOutliersBetaApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
52135
52135
|
return {
|
|
52136
52136
|
/**
|
|
52137
|
-
* 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
|
|
52137
|
+
* 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).
|
|
52138
52138
|
* @summary IAI Identity Outliers Export
|
|
52139
52139
|
* @param {'LOW_SIMILARITY' | 'STRUCTURAL'} [type] Type of the identity outliers snapshot to filter on
|
|
52140
52140
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -52153,13 +52153,17 @@ export const IAIOutliersBetaApiAxiosParamCreator = function (configuration?: Con
|
|
|
52153
52153
|
const localVarHeaderParameter = {} as any;
|
|
52154
52154
|
const localVarQueryParameter = {} as any;
|
|
52155
52155
|
|
|
52156
|
+
// authentication applicationAuth required
|
|
52157
|
+
// oauth required
|
|
52158
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
52159
|
+
|
|
52156
52160
|
// authentication userAuth required
|
|
52157
52161
|
// oauth required
|
|
52158
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
52162
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
52159
52163
|
|
|
52160
52164
|
// authentication userAuth required
|
|
52161
52165
|
// oauth required
|
|
52162
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
52166
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
52163
52167
|
|
|
52164
52168
|
if (type !== undefined) {
|
|
52165
52169
|
localVarQueryParameter['type'] = type;
|
|
@@ -52177,7 +52181,7 @@ export const IAIOutliersBetaApiAxiosParamCreator = function (configuration?: Con
|
|
|
52177
52181
|
};
|
|
52178
52182
|
},
|
|
52179
52183
|
/**
|
|
52180
|
-
* This API
|
|
52184
|
+
* This API returns a summary containing the number of identities that customer has, the number of outliers, and the type of outlier.
|
|
52181
52185
|
* @summary IAI Identity Outliers Summary
|
|
52182
52186
|
* @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.
|
|
52183
52187
|
* @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.
|
|
@@ -52200,13 +52204,17 @@ export const IAIOutliersBetaApiAxiosParamCreator = function (configuration?: Con
|
|
|
52200
52204
|
const localVarHeaderParameter = {} as any;
|
|
52201
52205
|
const localVarQueryParameter = {} as any;
|
|
52202
52206
|
|
|
52207
|
+
// authentication applicationAuth required
|
|
52208
|
+
// oauth required
|
|
52209
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
52210
|
+
|
|
52203
52211
|
// authentication userAuth required
|
|
52204
52212
|
// oauth required
|
|
52205
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
52213
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
52206
52214
|
|
|
52207
52215
|
// authentication userAuth required
|
|
52208
52216
|
// oauth required
|
|
52209
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
52217
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
52210
52218
|
|
|
52211
52219
|
if (limit !== undefined) {
|
|
52212
52220
|
localVarQueryParameter['limit'] = limit;
|
|
@@ -52240,7 +52248,7 @@ export const IAIOutliersBetaApiAxiosParamCreator = function (configuration?: Con
|
|
|
52240
52248
|
};
|
|
52241
52249
|
},
|
|
52242
52250
|
/**
|
|
52243
|
-
* This API
|
|
52251
|
+
* 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.
|
|
52244
52252
|
* @summary IAI Get Identity Outliers
|
|
52245
52253
|
* @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.
|
|
52246
52254
|
* @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.
|
|
@@ -52264,13 +52272,17 @@ export const IAIOutliersBetaApiAxiosParamCreator = function (configuration?: Con
|
|
|
52264
52272
|
const localVarHeaderParameter = {} as any;
|
|
52265
52273
|
const localVarQueryParameter = {} as any;
|
|
52266
52274
|
|
|
52275
|
+
// authentication applicationAuth required
|
|
52276
|
+
// oauth required
|
|
52277
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
52278
|
+
|
|
52267
52279
|
// authentication userAuth required
|
|
52268
52280
|
// oauth required
|
|
52269
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
52281
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
52270
52282
|
|
|
52271
52283
|
// authentication userAuth required
|
|
52272
52284
|
// oauth required
|
|
52273
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
52285
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
52274
52286
|
|
|
52275
52287
|
if (limit !== undefined) {
|
|
52276
52288
|
localVarQueryParameter['limit'] = limit;
|
|
@@ -52308,7 +52320,7 @@ export const IAIOutliersBetaApiAxiosParamCreator = function (configuration?: Con
|
|
|
52308
52320
|
};
|
|
52309
52321
|
},
|
|
52310
52322
|
/**
|
|
52311
|
-
* This API returns a most recent snapshot of each outlier type, each containing
|
|
52323
|
+
* 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.
|
|
52312
52324
|
* @summary IAI Identity Outliers Latest Summary
|
|
52313
52325
|
* @param {'LOW_SIMILARITY' | 'STRUCTURAL'} [type] Type of the identity outliers snapshot to filter on
|
|
52314
52326
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -52327,13 +52339,17 @@ export const IAIOutliersBetaApiAxiosParamCreator = function (configuration?: Con
|
|
|
52327
52339
|
const localVarHeaderParameter = {} as any;
|
|
52328
52340
|
const localVarQueryParameter = {} as any;
|
|
52329
52341
|
|
|
52342
|
+
// authentication applicationAuth required
|
|
52343
|
+
// oauth required
|
|
52344
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
52345
|
+
|
|
52330
52346
|
// authentication userAuth required
|
|
52331
52347
|
// oauth required
|
|
52332
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
52348
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
52333
52349
|
|
|
52334
52350
|
// authentication userAuth required
|
|
52335
52351
|
// oauth required
|
|
52336
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
52352
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
52337
52353
|
|
|
52338
52354
|
if (type !== undefined) {
|
|
52339
52355
|
localVarQueryParameter['type'] = type;
|
|
@@ -52351,7 +52367,7 @@ export const IAIOutliersBetaApiAxiosParamCreator = function (configuration?: Con
|
|
|
52351
52367
|
};
|
|
52352
52368
|
},
|
|
52353
52369
|
/**
|
|
52354
|
-
* This API returns a summary of a contributing feature for an identity outlier.
|
|
52370
|
+
* 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.
|
|
52355
52371
|
* @summary Get identity outlier contibuting feature summary
|
|
52356
52372
|
* @param {string} outlierFeatureId Contributing feature id
|
|
52357
52373
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -52373,6 +52389,10 @@ export const IAIOutliersBetaApiAxiosParamCreator = function (configuration?: Con
|
|
|
52373
52389
|
const localVarHeaderParameter = {} as any;
|
|
52374
52390
|
const localVarQueryParameter = {} as any;
|
|
52375
52391
|
|
|
52392
|
+
// authentication applicationAuth required
|
|
52393
|
+
// oauth required
|
|
52394
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
52395
|
+
|
|
52376
52396
|
// authentication userAuth required
|
|
52377
52397
|
// oauth required
|
|
52378
52398
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
@@ -52393,7 +52413,7 @@ export const IAIOutliersBetaApiAxiosParamCreator = function (configuration?: Con
|
|
|
52393
52413
|
};
|
|
52394
52414
|
},
|
|
52395
52415
|
/**
|
|
52396
|
-
* This API returns a list of contributing feature objects for a single outlier.
|
|
52416
|
+
* 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.
|
|
52397
52417
|
* @summary Get identity outlier\'s contibuting features
|
|
52398
52418
|
* @param {string} outlierId The outlier id
|
|
52399
52419
|
* @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.
|
|
@@ -52420,13 +52440,17 @@ export const IAIOutliersBetaApiAxiosParamCreator = function (configuration?: Con
|
|
|
52420
52440
|
const localVarHeaderParameter = {} as any;
|
|
52421
52441
|
const localVarQueryParameter = {} as any;
|
|
52422
52442
|
|
|
52443
|
+
// authentication applicationAuth required
|
|
52444
|
+
// oauth required
|
|
52445
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
52446
|
+
|
|
52423
52447
|
// authentication userAuth required
|
|
52424
52448
|
// oauth required
|
|
52425
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
52449
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
52426
52450
|
|
|
52427
52451
|
// authentication userAuth required
|
|
52428
52452
|
// oauth required
|
|
52429
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
52453
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
52430
52454
|
|
|
52431
52455
|
if (limit !== undefined) {
|
|
52432
52456
|
localVarQueryParameter['limit'] = limit;
|
|
@@ -52460,7 +52484,7 @@ export const IAIOutliersBetaApiAxiosParamCreator = function (configuration?: Con
|
|
|
52460
52484
|
};
|
|
52461
52485
|
},
|
|
52462
52486
|
/**
|
|
52463
|
-
* This API receives a list of
|
|
52487
|
+
* This API receives a list of identity IDs in the request, changes the outliers to be ignored.
|
|
52464
52488
|
* @summary IAI Identity Outliers Ignore
|
|
52465
52489
|
* @param {Array<string>} requestBody
|
|
52466
52490
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -52481,13 +52505,17 @@ export const IAIOutliersBetaApiAxiosParamCreator = function (configuration?: Con
|
|
|
52481
52505
|
const localVarHeaderParameter = {} as any;
|
|
52482
52506
|
const localVarQueryParameter = {} as any;
|
|
52483
52507
|
|
|
52508
|
+
// authentication applicationAuth required
|
|
52509
|
+
// oauth required
|
|
52510
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
52511
|
+
|
|
52484
52512
|
// authentication userAuth required
|
|
52485
52513
|
// oauth required
|
|
52486
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
52514
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
52487
52515
|
|
|
52488
52516
|
// authentication userAuth required
|
|
52489
52517
|
// oauth required
|
|
52490
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
52518
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
52491
52519
|
|
|
52492
52520
|
|
|
52493
52521
|
|
|
@@ -52504,14 +52532,14 @@ export const IAIOutliersBetaApiAxiosParamCreator = function (configuration?: Con
|
|
|
52504
52532
|
};
|
|
52505
52533
|
},
|
|
52506
52534
|
/**
|
|
52507
|
-
* 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
|
|
52535
|
+
* 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.
|
|
52508
52536
|
* @summary Gets a list of access items associated with each identity outlier contributing feature
|
|
52509
52537
|
* @param {string} outlierId The outlier id
|
|
52510
52538
|
* @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
|
|
52511
52539
|
* @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.
|
|
52512
52540
|
* @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.
|
|
52513
52541
|
* @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.
|
|
52514
|
-
* @param {string} [accessType] The type of access item for the identity outlier contributing feature. If not provided, it returns all
|
|
52542
|
+
* @param {string} [accessType] The type of access item for the identity outlier contributing feature. If not provided, it returns all.
|
|
52515
52543
|
* @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**
|
|
52516
52544
|
* @param {*} [axiosOptions] Override http request option.
|
|
52517
52545
|
* @throws {RequiredError}
|
|
@@ -52535,6 +52563,10 @@ export const IAIOutliersBetaApiAxiosParamCreator = function (configuration?: Con
|
|
|
52535
52563
|
const localVarHeaderParameter = {} as any;
|
|
52536
52564
|
const localVarQueryParameter = {} as any;
|
|
52537
52565
|
|
|
52566
|
+
// authentication applicationAuth required
|
|
52567
|
+
// oauth required
|
|
52568
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
52569
|
+
|
|
52538
52570
|
// authentication userAuth required
|
|
52539
52571
|
// oauth required
|
|
52540
52572
|
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
@@ -52575,7 +52607,7 @@ export const IAIOutliersBetaApiAxiosParamCreator = function (configuration?: Con
|
|
|
52575
52607
|
};
|
|
52576
52608
|
},
|
|
52577
52609
|
/**
|
|
52578
|
-
* This API receives a list of
|
|
52610
|
+
* This API receives a list of identity IDs in the request, changes the outliers to be un-ignored.
|
|
52579
52611
|
* @summary IAI Identity Outliers Unignore
|
|
52580
52612
|
* @param {Array<string>} requestBody
|
|
52581
52613
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -52596,13 +52628,17 @@ export const IAIOutliersBetaApiAxiosParamCreator = function (configuration?: Con
|
|
|
52596
52628
|
const localVarHeaderParameter = {} as any;
|
|
52597
52629
|
const localVarQueryParameter = {} as any;
|
|
52598
52630
|
|
|
52631
|
+
// authentication applicationAuth required
|
|
52632
|
+
// oauth required
|
|
52633
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
52634
|
+
|
|
52599
52635
|
// authentication userAuth required
|
|
52600
52636
|
// oauth required
|
|
52601
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
52637
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
52602
52638
|
|
|
52603
52639
|
// authentication userAuth required
|
|
52604
52640
|
// oauth required
|
|
52605
|
-
await setOAuthToObject(localVarHeaderParameter, "userAuth", [
|
|
52641
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
52606
52642
|
|
|
52607
52643
|
|
|
52608
52644
|
|
|
@@ -52629,7 +52665,7 @@ export const IAIOutliersBetaApiFp = function(configuration?: Configuration) {
|
|
|
52629
52665
|
const localVarAxiosParamCreator = IAIOutliersBetaApiAxiosParamCreator(configuration)
|
|
52630
52666
|
return {
|
|
52631
52667
|
/**
|
|
52632
|
-
* 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
|
|
52668
|
+
* 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).
|
|
52633
52669
|
* @summary IAI Identity Outliers Export
|
|
52634
52670
|
* @param {'LOW_SIMILARITY' | 'STRUCTURAL'} [type] Type of the identity outliers snapshot to filter on
|
|
52635
52671
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -52640,7 +52676,7 @@ export const IAIOutliersBetaApiFp = function(configuration?: Configuration) {
|
|
|
52640
52676
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
52641
52677
|
},
|
|
52642
52678
|
/**
|
|
52643
|
-
* This API
|
|
52679
|
+
* This API returns a summary containing the number of identities that customer has, the number of outliers, and the type of outlier.
|
|
52644
52680
|
* @summary IAI Identity Outliers Summary
|
|
52645
52681
|
* @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.
|
|
52646
52682
|
* @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.
|
|
@@ -52655,7 +52691,7 @@ export const IAIOutliersBetaApiFp = function(configuration?: Configuration) {
|
|
|
52655
52691
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
52656
52692
|
},
|
|
52657
52693
|
/**
|
|
52658
|
-
* This API
|
|
52694
|
+
* 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.
|
|
52659
52695
|
* @summary IAI Get Identity Outliers
|
|
52660
52696
|
* @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.
|
|
52661
52697
|
* @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.
|
|
@@ -52671,7 +52707,7 @@ export const IAIOutliersBetaApiFp = function(configuration?: Configuration) {
|
|
|
52671
52707
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
52672
52708
|
},
|
|
52673
52709
|
/**
|
|
52674
|
-
* This API returns a most recent snapshot of each outlier type, each containing
|
|
52710
|
+
* 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.
|
|
52675
52711
|
* @summary IAI Identity Outliers Latest Summary
|
|
52676
52712
|
* @param {'LOW_SIMILARITY' | 'STRUCTURAL'} [type] Type of the identity outliers snapshot to filter on
|
|
52677
52713
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -52682,7 +52718,7 @@ export const IAIOutliersBetaApiFp = function(configuration?: Configuration) {
|
|
|
52682
52718
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
52683
52719
|
},
|
|
52684
52720
|
/**
|
|
52685
|
-
* This API returns a summary of a contributing feature for an identity outlier.
|
|
52721
|
+
* 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.
|
|
52686
52722
|
* @summary Get identity outlier contibuting feature summary
|
|
52687
52723
|
* @param {string} outlierFeatureId Contributing feature id
|
|
52688
52724
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -52693,7 +52729,7 @@ export const IAIOutliersBetaApiFp = function(configuration?: Configuration) {
|
|
|
52693
52729
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
52694
52730
|
},
|
|
52695
52731
|
/**
|
|
52696
|
-
* This API returns a list of contributing feature objects for a single outlier.
|
|
52732
|
+
* 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.
|
|
52697
52733
|
* @summary Get identity outlier\'s contibuting features
|
|
52698
52734
|
* @param {string} outlierId The outlier id
|
|
52699
52735
|
* @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.
|
|
@@ -52709,7 +52745,7 @@ export const IAIOutliersBetaApiFp = function(configuration?: Configuration) {
|
|
|
52709
52745
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
52710
52746
|
},
|
|
52711
52747
|
/**
|
|
52712
|
-
* This API receives a list of
|
|
52748
|
+
* This API receives a list of identity IDs in the request, changes the outliers to be ignored.
|
|
52713
52749
|
* @summary IAI Identity Outliers Ignore
|
|
52714
52750
|
* @param {Array<string>} requestBody
|
|
52715
52751
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -52720,14 +52756,14 @@ export const IAIOutliersBetaApiFp = function(configuration?: Configuration) {
|
|
|
52720
52756
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
52721
52757
|
},
|
|
52722
52758
|
/**
|
|
52723
|
-
* 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
|
|
52759
|
+
* 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.
|
|
52724
52760
|
* @summary Gets a list of access items associated with each identity outlier contributing feature
|
|
52725
52761
|
* @param {string} outlierId The outlier id
|
|
52726
52762
|
* @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
|
|
52727
52763
|
* @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.
|
|
52728
52764
|
* @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.
|
|
52729
52765
|
* @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.
|
|
52730
|
-
* @param {string} [accessType] The type of access item for the identity outlier contributing feature. If not provided, it returns all
|
|
52766
|
+
* @param {string} [accessType] The type of access item for the identity outlier contributing feature. If not provided, it returns all.
|
|
52731
52767
|
* @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**
|
|
52732
52768
|
* @param {*} [axiosOptions] Override http request option.
|
|
52733
52769
|
* @throws {RequiredError}
|
|
@@ -52737,7 +52773,7 @@ export const IAIOutliersBetaApiFp = function(configuration?: Configuration) {
|
|
|
52737
52773
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
52738
52774
|
},
|
|
52739
52775
|
/**
|
|
52740
|
-
* This API receives a list of
|
|
52776
|
+
* This API receives a list of identity IDs in the request, changes the outliers to be un-ignored.
|
|
52741
52777
|
* @summary IAI Identity Outliers Unignore
|
|
52742
52778
|
* @param {Array<string>} requestBody
|
|
52743
52779
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -52758,7 +52794,7 @@ export const IAIOutliersBetaApiFactory = function (configuration?: Configuration
|
|
|
52758
52794
|
const localVarFp = IAIOutliersBetaApiFp(configuration)
|
|
52759
52795
|
return {
|
|
52760
52796
|
/**
|
|
52761
|
-
* 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
|
|
52797
|
+
* 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).
|
|
52762
52798
|
* @summary IAI Identity Outliers Export
|
|
52763
52799
|
* @param {'LOW_SIMILARITY' | 'STRUCTURAL'} [type] Type of the identity outliers snapshot to filter on
|
|
52764
52800
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -52768,7 +52804,7 @@ export const IAIOutliersBetaApiFactory = function (configuration?: Configuration
|
|
|
52768
52804
|
return localVarFp.exportOutliersZip(type, axiosOptions).then((request) => request(axios, basePath));
|
|
52769
52805
|
},
|
|
52770
52806
|
/**
|
|
52771
|
-
* This API
|
|
52807
|
+
* This API returns a summary containing the number of identities that customer has, the number of outliers, and the type of outlier.
|
|
52772
52808
|
* @summary IAI Identity Outliers Summary
|
|
52773
52809
|
* @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.
|
|
52774
52810
|
* @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.
|
|
@@ -52782,7 +52818,7 @@ export const IAIOutliersBetaApiFactory = function (configuration?: Configuration
|
|
|
52782
52818
|
return localVarFp.getIdentityOutlierSnapshots(limit, offset, type, filters, sorters, axiosOptions).then((request) => request(axios, basePath));
|
|
52783
52819
|
},
|
|
52784
52820
|
/**
|
|
52785
|
-
* This API
|
|
52821
|
+
* 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.
|
|
52786
52822
|
* @summary IAI Get Identity Outliers
|
|
52787
52823
|
* @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.
|
|
52788
52824
|
* @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.
|
|
@@ -52797,7 +52833,7 @@ export const IAIOutliersBetaApiFactory = function (configuration?: Configuration
|
|
|
52797
52833
|
return localVarFp.getIdentityOutliers(limit, offset, count, type, filters, sorters, axiosOptions).then((request) => request(axios, basePath));
|
|
52798
52834
|
},
|
|
52799
52835
|
/**
|
|
52800
|
-
* This API returns a most recent snapshot of each outlier type, each containing
|
|
52836
|
+
* 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.
|
|
52801
52837
|
* @summary IAI Identity Outliers Latest Summary
|
|
52802
52838
|
* @param {'LOW_SIMILARITY' | 'STRUCTURAL'} [type] Type of the identity outliers snapshot to filter on
|
|
52803
52839
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -52807,7 +52843,7 @@ export const IAIOutliersBetaApiFactory = function (configuration?: Configuration
|
|
|
52807
52843
|
return localVarFp.getLatestIdentityOutlierSnapshots(type, axiosOptions).then((request) => request(axios, basePath));
|
|
52808
52844
|
},
|
|
52809
52845
|
/**
|
|
52810
|
-
* This API returns a summary of a contributing feature for an identity outlier.
|
|
52846
|
+
* 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.
|
|
52811
52847
|
* @summary Get identity outlier contibuting feature summary
|
|
52812
52848
|
* @param {string} outlierFeatureId Contributing feature id
|
|
52813
52849
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -52817,7 +52853,7 @@ export const IAIOutliersBetaApiFactory = function (configuration?: Configuration
|
|
|
52817
52853
|
return localVarFp.getOutlierContributingFeatureSummary(outlierFeatureId, axiosOptions).then((request) => request(axios, basePath));
|
|
52818
52854
|
},
|
|
52819
52855
|
/**
|
|
52820
|
-
* This API returns a list of contributing feature objects for a single outlier.
|
|
52856
|
+
* 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.
|
|
52821
52857
|
* @summary Get identity outlier\'s contibuting features
|
|
52822
52858
|
* @param {string} outlierId The outlier id
|
|
52823
52859
|
* @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.
|
|
@@ -52832,7 +52868,7 @@ export const IAIOutliersBetaApiFactory = function (configuration?: Configuration
|
|
|
52832
52868
|
return localVarFp.getPeerGroupOutliersContributingFeatures(outlierId, limit, offset, count, includeTranslationMessages, sorters, axiosOptions).then((request) => request(axios, basePath));
|
|
52833
52869
|
},
|
|
52834
52870
|
/**
|
|
52835
|
-
* This API receives a list of
|
|
52871
|
+
* This API receives a list of identity IDs in the request, changes the outliers to be ignored.
|
|
52836
52872
|
* @summary IAI Identity Outliers Ignore
|
|
52837
52873
|
* @param {Array<string>} requestBody
|
|
52838
52874
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -52842,14 +52878,14 @@ export const IAIOutliersBetaApiFactory = function (configuration?: Configuration
|
|
|
52842
52878
|
return localVarFp.ignoreIdentityOutliers(requestBody, axiosOptions).then((request) => request(axios, basePath));
|
|
52843
52879
|
},
|
|
52844
52880
|
/**
|
|
52845
|
-
* 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
|
|
52881
|
+
* 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.
|
|
52846
52882
|
* @summary Gets a list of access items associated with each identity outlier contributing feature
|
|
52847
52883
|
* @param {string} outlierId The outlier id
|
|
52848
52884
|
* @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
|
|
52849
52885
|
* @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.
|
|
52850
52886
|
* @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.
|
|
52851
52887
|
* @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.
|
|
52852
|
-
* @param {string} [accessType] The type of access item for the identity outlier contributing feature. If not provided, it returns all
|
|
52888
|
+
* @param {string} [accessType] The type of access item for the identity outlier contributing feature. If not provided, it returns all.
|
|
52853
52889
|
* @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**
|
|
52854
52890
|
* @param {*} [axiosOptions] Override http request option.
|
|
52855
52891
|
* @throws {RequiredError}
|
|
@@ -52858,7 +52894,7 @@ export const IAIOutliersBetaApiFactory = function (configuration?: Configuration
|
|
|
52858
52894
|
return localVarFp.listOutliersContributingFeatureAccessItems(outlierId, contributingFeatureName, limit, offset, count, accessType, sorters, axiosOptions).then((request) => request(axios, basePath));
|
|
52859
52895
|
},
|
|
52860
52896
|
/**
|
|
52861
|
-
* This API receives a list of
|
|
52897
|
+
* This API receives a list of identity IDs in the request, changes the outliers to be un-ignored.
|
|
52862
52898
|
* @summary IAI Identity Outliers Unignore
|
|
52863
52899
|
* @param {Array<string>} requestBody
|
|
52864
52900
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -53108,7 +53144,7 @@ export interface IAIOutliersBetaApiListOutliersContributingFeatureAccessItemsReq
|
|
|
53108
53144
|
readonly count?: boolean
|
|
53109
53145
|
|
|
53110
53146
|
/**
|
|
53111
|
-
* The type of access item for the identity outlier contributing feature. If not provided, it returns all
|
|
53147
|
+
* The type of access item for the identity outlier contributing feature. If not provided, it returns all.
|
|
53112
53148
|
* @type {string}
|
|
53113
53149
|
* @memberof IAIOutliersBetaApiListOutliersContributingFeatureAccessItems
|
|
53114
53150
|
*/
|
|
@@ -53144,7 +53180,7 @@ export interface IAIOutliersBetaApiUnIgnoreIdentityOutliersRequest {
|
|
|
53144
53180
|
*/
|
|
53145
53181
|
export class IAIOutliersBetaApi extends BaseAPI {
|
|
53146
53182
|
/**
|
|
53147
|
-
* 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
|
|
53183
|
+
* 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).
|
|
53148
53184
|
* @summary IAI Identity Outliers Export
|
|
53149
53185
|
* @param {IAIOutliersBetaApiExportOutliersZipRequest} requestParameters Request parameters.
|
|
53150
53186
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -53156,7 +53192,7 @@ export class IAIOutliersBetaApi extends BaseAPI {
|
|
|
53156
53192
|
}
|
|
53157
53193
|
|
|
53158
53194
|
/**
|
|
53159
|
-
* This API
|
|
53195
|
+
* This API returns a summary containing the number of identities that customer has, the number of outliers, and the type of outlier.
|
|
53160
53196
|
* @summary IAI Identity Outliers Summary
|
|
53161
53197
|
* @param {IAIOutliersBetaApiGetIdentityOutlierSnapshotsRequest} requestParameters Request parameters.
|
|
53162
53198
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -53168,7 +53204,7 @@ export class IAIOutliersBetaApi extends BaseAPI {
|
|
|
53168
53204
|
}
|
|
53169
53205
|
|
|
53170
53206
|
/**
|
|
53171
|
-
* This API
|
|
53207
|
+
* 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.
|
|
53172
53208
|
* @summary IAI Get Identity Outliers
|
|
53173
53209
|
* @param {IAIOutliersBetaApiGetIdentityOutliersRequest} requestParameters Request parameters.
|
|
53174
53210
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -53180,7 +53216,7 @@ export class IAIOutliersBetaApi extends BaseAPI {
|
|
|
53180
53216
|
}
|
|
53181
53217
|
|
|
53182
53218
|
/**
|
|
53183
|
-
* This API returns a most recent snapshot of each outlier type, each containing
|
|
53219
|
+
* 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.
|
|
53184
53220
|
* @summary IAI Identity Outliers Latest Summary
|
|
53185
53221
|
* @param {IAIOutliersBetaApiGetLatestIdentityOutlierSnapshotsRequest} requestParameters Request parameters.
|
|
53186
53222
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -53192,7 +53228,7 @@ export class IAIOutliersBetaApi extends BaseAPI {
|
|
|
53192
53228
|
}
|
|
53193
53229
|
|
|
53194
53230
|
/**
|
|
53195
|
-
* This API returns a summary of a contributing feature for an identity outlier.
|
|
53231
|
+
* 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.
|
|
53196
53232
|
* @summary Get identity outlier contibuting feature summary
|
|
53197
53233
|
* @param {IAIOutliersBetaApiGetOutlierContributingFeatureSummaryRequest} requestParameters Request parameters.
|
|
53198
53234
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -53204,7 +53240,7 @@ export class IAIOutliersBetaApi extends BaseAPI {
|
|
|
53204
53240
|
}
|
|
53205
53241
|
|
|
53206
53242
|
/**
|
|
53207
|
-
* This API returns a list of contributing feature objects for a single outlier.
|
|
53243
|
+
* 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.
|
|
53208
53244
|
* @summary Get identity outlier\'s contibuting features
|
|
53209
53245
|
* @param {IAIOutliersBetaApiGetPeerGroupOutliersContributingFeaturesRequest} requestParameters Request parameters.
|
|
53210
53246
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -53216,7 +53252,7 @@ export class IAIOutliersBetaApi extends BaseAPI {
|
|
|
53216
53252
|
}
|
|
53217
53253
|
|
|
53218
53254
|
/**
|
|
53219
|
-
* This API receives a list of
|
|
53255
|
+
* This API receives a list of identity IDs in the request, changes the outliers to be ignored.
|
|
53220
53256
|
* @summary IAI Identity Outliers Ignore
|
|
53221
53257
|
* @param {IAIOutliersBetaApiIgnoreIdentityOutliersRequest} requestParameters Request parameters.
|
|
53222
53258
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -53228,7 +53264,7 @@ export class IAIOutliersBetaApi extends BaseAPI {
|
|
|
53228
53264
|
}
|
|
53229
53265
|
|
|
53230
53266
|
/**
|
|
53231
|
-
* 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
|
|
53267
|
+
* 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.
|
|
53232
53268
|
* @summary Gets a list of access items associated with each identity outlier contributing feature
|
|
53233
53269
|
* @param {IAIOutliersBetaApiListOutliersContributingFeatureAccessItemsRequest} requestParameters Request parameters.
|
|
53234
53270
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -53240,7 +53276,7 @@ export class IAIOutliersBetaApi extends BaseAPI {
|
|
|
53240
53276
|
}
|
|
53241
53277
|
|
|
53242
53278
|
/**
|
|
53243
|
-
* This API receives a list of
|
|
53279
|
+
* This API receives a list of identity IDs in the request, changes the outliers to be un-ignored.
|
|
53244
53280
|
* @summary IAI Identity Outliers Unignore
|
|
53245
53281
|
* @param {IAIOutliersBetaApiUnIgnoreIdentityOutliersRequest} requestParameters Request parameters.
|
|
53246
53282
|
* @param {*} [axiosOptions] Override http request option.
|
package/beta/common.ts
CHANGED
|
@@ -135,9 +135,9 @@ export const createRequestFunction = function (axiosArgs: RequestArgs, globalAxi
|
|
|
135
135
|
return <T = unknown, R = AxiosResponse<T>>(axios: AxiosInstance = globalAxios, basePath: string = BASE_PATH) => {
|
|
136
136
|
axiosRetry(globalAxios, configuration.retriesConfig)
|
|
137
137
|
const headers = {
|
|
138
|
-
...{'User-Agent':'OpenAPI-Generator/1.4.
|
|
138
|
+
...{'User-Agent':'OpenAPI-Generator/1.4.12/ts'},
|
|
139
139
|
...axiosArgs.axiosOptions.headers,
|
|
140
|
-
...{'X-SailPoint-SDK':'typescript-1.4.
|
|
140
|
+
...{'X-SailPoint-SDK':'typescript-1.4.12'}
|
|
141
141
|
}
|
|
142
142
|
|
|
143
143
|
if(!configuration.experimental && ("X-SailPoint-Experimental" in headers)) {
|