@sailpoint/api-client 2.2.20 → 2.2.22
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/dist/esm/intelligence/api.js +18 -13
- package/dist/esm/machine_account_mappings/api.js +1 -1
- package/dist/esm/nerm/common.js +2 -2
- package/dist/esm/nermv2025/common.js +2 -2
- package/dist/esm/work_reassignment/api.js +10 -5
- package/dist/intelligence/api.d.ts +39 -14
- package/dist/intelligence/api.js +18 -13
- package/dist/intelligence/api.js.map +1 -1
- package/dist/machine_account_mappings/api.js +1 -1
- package/dist/machine_account_mappings/api.js.map +1 -1
- package/dist/nerm/common.js +2 -2
- package/dist/nerm/common.js.map +1 -1
- package/dist/nermv2025/common.js +2 -2
- package/dist/nermv2025/common.js.map +1 -1
- package/dist/work_reassignment/api.d.ts +10 -2
- package/dist/work_reassignment/api.js +10 -5
- package/dist/work_reassignment/api.js.map +1 -1
- package/package.json +1 -1
|
@@ -196,7 +196,7 @@ export var IntelligenceApiAxiosParamCreator = function (configuration) {
|
|
|
196
196
|
});
|
|
197
197
|
},
|
|
198
198
|
/**
|
|
199
|
-
* Requires tenant license idn:response-and-remediation. **
|
|
199
|
+
* Requires tenant license idn:response-and-remediation. **Caution:** When Data Segmentation is enabled, generic API Management API keys are not tied to a user identity and may fail or return incomplete data. Use a [personal access token](https://developer.sailpoint.com/docs/api/authentication/#generate-a-personal-access-token) or other user-scoped OAuth token. See [API keys](https://documentation.sailpoint.com/saas/help/common/api_keys.html) and [Data Segmentation](https://documentation.sailpoint.com/saas/help/segmentation/index.html). Resolves exactly one identity using a single SCIM-style filters expression. Returns an enriched Human or non-human identity (NHI) envelope. Single-clause filters only; unsupported fields or operators return HTTP 400.
|
|
200
200
|
* @summary Get identity by filter
|
|
201
201
|
* @param {string} filters Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **id**: *eq* **email**: *eq* **opaqueIdentifier**: *eq*
|
|
202
202
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -276,16 +276,17 @@ export var IntelligenceApiAxiosParamCreator = function (configuration) {
|
|
|
276
276
|
});
|
|
277
277
|
},
|
|
278
278
|
/**
|
|
279
|
-
* Continuation endpoint for
|
|
279
|
+
* Continuation endpoint for `accounts.next`. Pass `count=true` for `X-Total-Count`. - Human (default): omit `isNHI` or set it to `false`. Slice object (`items`). - Non-human identity (NHI): set `isNHI=true` (required for NHI aggregate `accounts.next` links). Bare JSON array.
|
|
280
280
|
* @summary List identity accounts
|
|
281
281
|
* @param {string} id Non-empty identity id path segment for Intelligence sub-resources.
|
|
282
282
|
* @param {number} [limit] Page size. Defaults to 250; values above 250 are rejected with 400.
|
|
283
283
|
* @param {number} [offset] Zero-based page offset. Defaults to 0.
|
|
284
284
|
* @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.
|
|
285
|
+
* @param {boolean} [isNHI] NHI accounts when `true` (bare array). Human accounts when omitted or `false` (slice object).
|
|
285
286
|
* @param {*} [axiosOptions] Override http request option.
|
|
286
287
|
* @throws {RequiredError}
|
|
287
288
|
*/
|
|
288
|
-
getIntelIdentityAccountsV1: function (id, limit, offset, count, axiosOptions) {
|
|
289
|
+
getIntelIdentityAccountsV1: function (id, limit, offset, count, isNHI, axiosOptions) {
|
|
289
290
|
if (axiosOptions === void 0) { axiosOptions = {}; }
|
|
290
291
|
return __awaiter(_this, void 0, void 0, function () {
|
|
291
292
|
var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
@@ -310,6 +311,9 @@ export var IntelligenceApiAxiosParamCreator = function (configuration) {
|
|
|
310
311
|
if (count !== undefined) {
|
|
311
312
|
localVarQueryParameter['count'] = count;
|
|
312
313
|
}
|
|
314
|
+
if (isNHI !== undefined) {
|
|
315
|
+
localVarQueryParameter['isNHI'] = isNHI;
|
|
316
|
+
}
|
|
313
317
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
314
318
|
headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
315
319
|
localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), axiosOptions.headers);
|
|
@@ -529,7 +533,7 @@ export var IntelligenceApiFp = function (configuration) {
|
|
|
529
533
|
});
|
|
530
534
|
},
|
|
531
535
|
/**
|
|
532
|
-
* Requires tenant license idn:response-and-remediation. **
|
|
536
|
+
* Requires tenant license idn:response-and-remediation. **Caution:** When Data Segmentation is enabled, generic API Management API keys are not tied to a user identity and may fail or return incomplete data. Use a [personal access token](https://developer.sailpoint.com/docs/api/authentication/#generate-a-personal-access-token) or other user-scoped OAuth token. See [API keys](https://documentation.sailpoint.com/saas/help/common/api_keys.html) and [Data Segmentation](https://documentation.sailpoint.com/saas/help/segmentation/index.html). Resolves exactly one identity using a single SCIM-style filters expression. Returns an enriched Human or non-human identity (NHI) envelope. Single-clause filters only; unsupported fields or operators return HTTP 400.
|
|
533
537
|
* @summary Get identity by filter
|
|
534
538
|
* @param {string} filters Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **id**: *eq* **email**: *eq* **opaqueIdentifier**: *eq*
|
|
535
539
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -578,22 +582,23 @@ export var IntelligenceApiFp = function (configuration) {
|
|
|
578
582
|
});
|
|
579
583
|
},
|
|
580
584
|
/**
|
|
581
|
-
* Continuation endpoint for
|
|
585
|
+
* Continuation endpoint for `accounts.next`. Pass `count=true` for `X-Total-Count`. - Human (default): omit `isNHI` or set it to `false`. Slice object (`items`). - Non-human identity (NHI): set `isNHI=true` (required for NHI aggregate `accounts.next` links). Bare JSON array.
|
|
582
586
|
* @summary List identity accounts
|
|
583
587
|
* @param {string} id Non-empty identity id path segment for Intelligence sub-resources.
|
|
584
588
|
* @param {number} [limit] Page size. Defaults to 250; values above 250 are rejected with 400.
|
|
585
589
|
* @param {number} [offset] Zero-based page offset. Defaults to 0.
|
|
586
590
|
* @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.
|
|
591
|
+
* @param {boolean} [isNHI] NHI accounts when `true` (bare array). Human accounts when omitted or `false` (slice object).
|
|
587
592
|
* @param {*} [axiosOptions] Override http request option.
|
|
588
593
|
* @throws {RequiredError}
|
|
589
594
|
*/
|
|
590
|
-
getIntelIdentityAccountsV1: function (id, limit, offset, count, axiosOptions) {
|
|
595
|
+
getIntelIdentityAccountsV1: function (id, limit, offset, count, isNHI, axiosOptions) {
|
|
591
596
|
var _a, _b, _c;
|
|
592
597
|
return __awaiter(this, void 0, void 0, function () {
|
|
593
598
|
var localVarAxiosArgs, localVarOperationServerIndex, localVarOperationServerBasePath;
|
|
594
599
|
return __generator(this, function (_d) {
|
|
595
600
|
switch (_d.label) {
|
|
596
|
-
case 0: return [4 /*yield*/, localVarAxiosParamCreator.getIntelIdentityAccountsV1(id, limit, offset, count, axiosOptions)];
|
|
601
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.getIntelIdentityAccountsV1(id, limit, offset, count, isNHI, axiosOptions)];
|
|
597
602
|
case 1:
|
|
598
603
|
localVarAxiosArgs = _d.sent();
|
|
599
604
|
localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
@@ -726,7 +731,7 @@ export var IntelligenceApiFactory = function (configuration, basePath, axios) {
|
|
|
726
731
|
return localVarFp.createResponseActionV1(requestParameters.responseactioncreaterequest, axiosOptions).then(function (request) { return request(axios, basePath); });
|
|
727
732
|
},
|
|
728
733
|
/**
|
|
729
|
-
* Requires tenant license idn:response-and-remediation. **
|
|
734
|
+
* Requires tenant license idn:response-and-remediation. **Caution:** When Data Segmentation is enabled, generic API Management API keys are not tied to a user identity and may fail or return incomplete data. Use a [personal access token](https://developer.sailpoint.com/docs/api/authentication/#generate-a-personal-access-token) or other user-scoped OAuth token. See [API keys](https://documentation.sailpoint.com/saas/help/common/api_keys.html) and [Data Segmentation](https://documentation.sailpoint.com/saas/help/segmentation/index.html). Resolves exactly one identity using a single SCIM-style filters expression. Returns an enriched Human or non-human identity (NHI) envelope. Single-clause filters only; unsupported fields or operators return HTTP 400.
|
|
730
735
|
* @summary Get identity by filter
|
|
731
736
|
* @param {IntelligenceApiGetIdentityIntelligenceV1Request} requestParameters Request parameters.
|
|
732
737
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -746,14 +751,14 @@ export var IntelligenceApiFactory = function (configuration, basePath, axios) {
|
|
|
746
751
|
return localVarFp.getIntelIdentityAccessItemHistoryV1(requestParameters.id, requestParameters.limit, requestParameters.offset, requestParameters.count, axiosOptions).then(function (request) { return request(axios, basePath); });
|
|
747
752
|
},
|
|
748
753
|
/**
|
|
749
|
-
* Continuation endpoint for
|
|
754
|
+
* Continuation endpoint for `accounts.next`. Pass `count=true` for `X-Total-Count`. - Human (default): omit `isNHI` or set it to `false`. Slice object (`items`). - Non-human identity (NHI): set `isNHI=true` (required for NHI aggregate `accounts.next` links). Bare JSON array.
|
|
750
755
|
* @summary List identity accounts
|
|
751
756
|
* @param {IntelligenceApiGetIntelIdentityAccountsV1Request} requestParameters Request parameters.
|
|
752
757
|
* @param {*} [axiosOptions] Override http request option.
|
|
753
758
|
* @throws {RequiredError}
|
|
754
759
|
*/
|
|
755
760
|
getIntelIdentityAccountsV1: function (requestParameters, axiosOptions) {
|
|
756
|
-
return localVarFp.getIntelIdentityAccountsV1(requestParameters.id, requestParameters.limit, requestParameters.offset, requestParameters.count, axiosOptions).then(function (request) { return request(axios, basePath); });
|
|
761
|
+
return localVarFp.getIntelIdentityAccountsV1(requestParameters.id, requestParameters.limit, requestParameters.offset, requestParameters.count, requestParameters.isNHI, axiosOptions).then(function (request) { return request(axios, basePath); });
|
|
757
762
|
},
|
|
758
763
|
/**
|
|
759
764
|
* Continuation endpoint for the parent response\'s `accessHistory.certifications.next` link. Returns one page of certification history events for the supplied limit and offset values. Pass `count=true` to receive `X-Total-Count` (including `0` on empty pages). Per-record decode failures are dropped server-side. Requires tenant license idn:response-and-remediation. Not applicable to non-human identities.
|
|
@@ -821,7 +826,7 @@ var IntelligenceApi = /** @class */ (function (_super) {
|
|
|
821
826
|
return IntelligenceApiFp(this.configuration).createResponseActionV1(requestParameters.responseactioncreaterequest, axiosOptions).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
822
827
|
};
|
|
823
828
|
/**
|
|
824
|
-
* Requires tenant license idn:response-and-remediation. **
|
|
829
|
+
* Requires tenant license idn:response-and-remediation. **Caution:** When Data Segmentation is enabled, generic API Management API keys are not tied to a user identity and may fail or return incomplete data. Use a [personal access token](https://developer.sailpoint.com/docs/api/authentication/#generate-a-personal-access-token) or other user-scoped OAuth token. See [API keys](https://documentation.sailpoint.com/saas/help/common/api_keys.html) and [Data Segmentation](https://documentation.sailpoint.com/saas/help/segmentation/index.html). Resolves exactly one identity using a single SCIM-style filters expression. Returns an enriched Human or non-human identity (NHI) envelope. Single-clause filters only; unsupported fields or operators return HTTP 400.
|
|
825
830
|
* @summary Get identity by filter
|
|
826
831
|
* @param {IntelligenceApiGetIdentityIntelligenceV1Request} requestParameters Request parameters.
|
|
827
832
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -845,7 +850,7 @@ var IntelligenceApi = /** @class */ (function (_super) {
|
|
|
845
850
|
return IntelligenceApiFp(this.configuration).getIntelIdentityAccessItemHistoryV1(requestParameters.id, requestParameters.limit, requestParameters.offset, requestParameters.count, axiosOptions).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
846
851
|
};
|
|
847
852
|
/**
|
|
848
|
-
* Continuation endpoint for
|
|
853
|
+
* Continuation endpoint for `accounts.next`. Pass `count=true` for `X-Total-Count`. - Human (default): omit `isNHI` or set it to `false`. Slice object (`items`). - Non-human identity (NHI): set `isNHI=true` (required for NHI aggregate `accounts.next` links). Bare JSON array.
|
|
849
854
|
* @summary List identity accounts
|
|
850
855
|
* @param {IntelligenceApiGetIntelIdentityAccountsV1Request} requestParameters Request parameters.
|
|
851
856
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -854,7 +859,7 @@ var IntelligenceApi = /** @class */ (function (_super) {
|
|
|
854
859
|
*/
|
|
855
860
|
IntelligenceApi.prototype.getIntelIdentityAccountsV1 = function (requestParameters, axiosOptions) {
|
|
856
861
|
var _this = this;
|
|
857
|
-
return IntelligenceApiFp(this.configuration).getIntelIdentityAccountsV1(requestParameters.id, requestParameters.limit, requestParameters.offset, requestParameters.count, axiosOptions).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
862
|
+
return IntelligenceApiFp(this.configuration).getIntelIdentityAccountsV1(requestParameters.id, requestParameters.limit, requestParameters.offset, requestParameters.count, requestParameters.isNHI, axiosOptions).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
858
863
|
};
|
|
859
864
|
/**
|
|
860
865
|
* Continuation endpoint for the parent response\'s `accessHistory.certifications.next` link. Returns one page of certification history events for the supplied limit and offset values. Pass `count=true` to receive `X-Total-Count` (including `0` on empty pages). Per-record decode failures are dropped server-side. Requires tenant license idn:response-and-remediation. Not applicable to non-human identities.
|
|
@@ -251,7 +251,7 @@ export var MachineAccountMappingsApiAxiosParamCreator = function (configuration)
|
|
|
251
251
|
assertParamExists('setMachineAccountMappingsV1', 'sourceId', sourceId);
|
|
252
252
|
// verify required parameter 'attributeMappings' is not null or undefined
|
|
253
253
|
assertParamExists('setMachineAccountMappingsV1', 'attributeMappings', attributeMappings);
|
|
254
|
-
localVarPath = "/sources/v1/{sourceId}/machine-mappings"
|
|
254
|
+
localVarPath = "/sources/v1/{sourceId}/machine-account-mappings"
|
|
255
255
|
.replace("{".concat("sourceId", "}"), encodeURIComponent(String(sourceId)));
|
|
256
256
|
localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
257
257
|
if (configuration) {
|
package/dist/esm/nerm/common.js
CHANGED
|
@@ -246,8 +246,8 @@ export var createRequestFunction = function (axiosArgs, globalAxios, BASE_PATH,
|
|
|
246
246
|
// header such as X-SailPoint-SDK forces a CORS preflight that tenants do
|
|
247
247
|
// not allow, which blocks the request outright.
|
|
248
248
|
if (typeof process !== 'undefined' && ((_a = process.versions) === null || _a === void 0 ? void 0 : _a.node)) {
|
|
249
|
-
headers['X-SailPoint-SDK'] = 'typescript-2.2.
|
|
250
|
-
userAgent = "SailPoint-SDK-TypeScript/2.2.
|
|
249
|
+
headers['X-SailPoint-SDK'] = 'typescript-2.2.22';
|
|
250
|
+
userAgent = "SailPoint-SDK-TypeScript/2.2.22";
|
|
251
251
|
if ((configuration === null || configuration === void 0 ? void 0 : configuration.consumerIdentifier) && (configuration === null || configuration === void 0 ? void 0 : configuration.consumerVersion)) {
|
|
252
252
|
userAgent += " (".concat(configuration.consumerIdentifier, "/").concat(configuration.consumerVersion, ")");
|
|
253
253
|
}
|
|
@@ -246,8 +246,8 @@ export var createRequestFunction = function (axiosArgs, globalAxios, BASE_PATH,
|
|
|
246
246
|
// header such as X-SailPoint-SDK forces a CORS preflight that tenants do
|
|
247
247
|
// not allow, which blocks the request outright.
|
|
248
248
|
if (typeof process !== 'undefined' && ((_a = process.versions) === null || _a === void 0 ? void 0 : _a.node)) {
|
|
249
|
-
headers['X-SailPoint-SDK'] = 'typescript-2.2.
|
|
250
|
-
userAgent = "SailPoint-SDK-TypeScript/2.2.
|
|
249
|
+
headers['X-SailPoint-SDK'] = 'typescript-2.2.22';
|
|
250
|
+
userAgent = "SailPoint-SDK-TypeScript/2.2.22";
|
|
251
251
|
if ((configuration === null || configuration === void 0 ? void 0 : configuration.consumerIdentifier) && (configuration === null || configuration === void 0 ? void 0 : configuration.consumerVersion)) {
|
|
252
252
|
userAgent += " (".concat(configuration.consumerIdentifier, "/").concat(configuration.consumerVersion, ")");
|
|
253
253
|
}
|
|
@@ -378,10 +378,11 @@ export var WorkReassignmentApiAxiosParamCreator = function (configuration) {
|
|
|
378
378
|
* @param {number} [limit] Max number of results to return.
|
|
379
379
|
* @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.
|
|
380
380
|
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
381
|
+
* @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.
|
|
381
382
|
* @param {*} [axiosOptions] Override http request option.
|
|
382
383
|
* @throws {RequiredError}
|
|
383
384
|
*/
|
|
384
|
-
listReassignmentConfigurationsV1: function (limit, offset, xSailPointExperimental, axiosOptions) {
|
|
385
|
+
listReassignmentConfigurationsV1: function (limit, offset, xSailPointExperimental, count, axiosOptions) {
|
|
385
386
|
if (axiosOptions === void 0) { axiosOptions = {}; }
|
|
386
387
|
return __awaiter(_this, void 0, void 0, function () {
|
|
387
388
|
var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
@@ -403,6 +404,9 @@ export var WorkReassignmentApiAxiosParamCreator = function (configuration) {
|
|
|
403
404
|
if (offset !== undefined) {
|
|
404
405
|
localVarQueryParameter['offset'] = offset;
|
|
405
406
|
}
|
|
407
|
+
if (count !== undefined) {
|
|
408
|
+
localVarQueryParameter['count'] = count;
|
|
409
|
+
}
|
|
406
410
|
if (xSailPointExperimental != null) {
|
|
407
411
|
localVarHeaderParameter['X-SailPoint-Experimental'] = String(xSailPointExperimental);
|
|
408
412
|
}
|
|
@@ -662,16 +666,17 @@ export var WorkReassignmentApiFp = function (configuration) {
|
|
|
662
666
|
* @param {number} [limit] Max number of results to return.
|
|
663
667
|
* @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.
|
|
664
668
|
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
669
|
+
* @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.
|
|
665
670
|
* @param {*} [axiosOptions] Override http request option.
|
|
666
671
|
* @throws {RequiredError}
|
|
667
672
|
*/
|
|
668
|
-
listReassignmentConfigurationsV1: function (limit, offset, xSailPointExperimental, axiosOptions) {
|
|
673
|
+
listReassignmentConfigurationsV1: function (limit, offset, xSailPointExperimental, count, axiosOptions) {
|
|
669
674
|
var _a, _b, _c;
|
|
670
675
|
return __awaiter(this, void 0, void 0, function () {
|
|
671
676
|
var localVarAxiosArgs, localVarOperationServerIndex, localVarOperationServerBasePath;
|
|
672
677
|
return __generator(this, function (_d) {
|
|
673
678
|
switch (_d.label) {
|
|
674
|
-
case 0: return [4 /*yield*/, localVarAxiosParamCreator.listReassignmentConfigurationsV1(limit, offset, xSailPointExperimental, axiosOptions)];
|
|
679
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.listReassignmentConfigurationsV1(limit, offset, xSailPointExperimental, count, axiosOptions)];
|
|
675
680
|
case 1:
|
|
676
681
|
localVarAxiosArgs = _d.sent();
|
|
677
682
|
localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
@@ -810,7 +815,7 @@ export var WorkReassignmentApiFactory = function (configuration, basePath, axios
|
|
|
810
815
|
*/
|
|
811
816
|
listReassignmentConfigurationsV1: function (requestParameters, axiosOptions) {
|
|
812
817
|
if (requestParameters === void 0) { requestParameters = {}; }
|
|
813
|
-
return localVarFp.listReassignmentConfigurationsV1(requestParameters.limit, requestParameters.offset, requestParameters.xSailPointExperimental, axiosOptions).then(function (request) { return request(axios, basePath); });
|
|
818
|
+
return localVarFp.listReassignmentConfigurationsV1(requestParameters.limit, requestParameters.offset, requestParameters.xSailPointExperimental, requestParameters.count, axiosOptions).then(function (request) { return request(axios, basePath); });
|
|
814
819
|
},
|
|
815
820
|
/**
|
|
816
821
|
* Replaces existing Reassignment configuration for an identity with the newly provided configuration.
|
|
@@ -930,7 +935,7 @@ var WorkReassignmentApi = /** @class */ (function (_super) {
|
|
|
930
935
|
WorkReassignmentApi.prototype.listReassignmentConfigurationsV1 = function (requestParameters, axiosOptions) {
|
|
931
936
|
var _this = this;
|
|
932
937
|
if (requestParameters === void 0) { requestParameters = {}; }
|
|
933
|
-
return WorkReassignmentApiFp(this.configuration).listReassignmentConfigurationsV1(requestParameters.limit, requestParameters.offset, requestParameters.xSailPointExperimental, axiosOptions).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
938
|
+
return WorkReassignmentApiFp(this.configuration).listReassignmentConfigurationsV1(requestParameters.limit, requestParameters.offset, requestParameters.xSailPointExperimental, requestParameters.count, axiosOptions).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
934
939
|
};
|
|
935
940
|
/**
|
|
936
941
|
* Replaces existing Reassignment configuration for an identity with the newly provided configuration.
|
|
@@ -95,6 +95,11 @@ export interface GetIdentityIntelligenceV1429Response {
|
|
|
95
95
|
*/
|
|
96
96
|
'message'?: any;
|
|
97
97
|
}
|
|
98
|
+
/**
|
|
99
|
+
* @type GetIntelIdentityAccountsV1200Response
|
|
100
|
+
* @export
|
|
101
|
+
*/
|
|
102
|
+
export type GetIntelIdentityAccountsV1200Response = Array<Intelmachineaccountwire> | IntelAccountsSlice;
|
|
98
103
|
/**
|
|
99
104
|
*
|
|
100
105
|
* @export
|
|
@@ -955,17 +960,29 @@ export declare const IntelidentitymachineaggregateMatchConfidenceEnum: {
|
|
|
955
960
|
};
|
|
956
961
|
export type IntelidentitymachineaggregateMatchConfidenceEnum = typeof IntelidentitymachineaggregateMatchConfidenceEnum[keyof typeof IntelidentitymachineaggregateMatchConfidenceEnum];
|
|
957
962
|
/**
|
|
958
|
-
*
|
|
963
|
+
* Machine accounts embedded on the non-human identity aggregate (first page).
|
|
959
964
|
* @export
|
|
960
965
|
* @interface Intelmachineaccountsslice
|
|
961
966
|
*/
|
|
962
967
|
export interface Intelmachineaccountsslice {
|
|
963
968
|
/**
|
|
964
|
-
* Machine
|
|
969
|
+
* Machine accounts correlated to the non-human identity.
|
|
965
970
|
* @type {Array<Intelmachineaccountwire>}
|
|
966
971
|
* @memberof Intelmachineaccountsslice
|
|
967
972
|
*/
|
|
968
973
|
'items': Array<Intelmachineaccountwire>;
|
|
974
|
+
/**
|
|
975
|
+
* Correlated machine account count from aggregation; omitted when items is empty.
|
|
976
|
+
* @type {number}
|
|
977
|
+
* @memberof Intelmachineaccountsslice
|
|
978
|
+
*/
|
|
979
|
+
'totalCount'?: number;
|
|
980
|
+
/**
|
|
981
|
+
* Next page URL when totalCount exceeds items returned. Includes isNHI=true.
|
|
982
|
+
* @type {string}
|
|
983
|
+
* @memberof Intelmachineaccountsslice
|
|
984
|
+
*/
|
|
985
|
+
'next'?: string;
|
|
969
986
|
}
|
|
970
987
|
/**
|
|
971
988
|
* Machine account row on the non-human identity aggregate accounts.items list. Every property in required is always present on the wire. Nullable object refs (source, machineIdentity, ownerIdentity) may be null. String fields may be empty when upstream has no value; booleans, timestamps, attributes, and connectorAttributes are always emitted (empty object when absent).
|
|
@@ -1536,7 +1553,7 @@ export declare const IntelligenceApiAxiosParamCreator: (configuration?: Configur
|
|
|
1536
1553
|
*/
|
|
1537
1554
|
createResponseActionV1: (responseactioncreaterequest: Responseactioncreaterequest, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
1538
1555
|
/**
|
|
1539
|
-
* Requires tenant license idn:response-and-remediation. **
|
|
1556
|
+
* Requires tenant license idn:response-and-remediation. **Caution:** When Data Segmentation is enabled, generic API Management API keys are not tied to a user identity and may fail or return incomplete data. Use a [personal access token](https://developer.sailpoint.com/docs/api/authentication/#generate-a-personal-access-token) or other user-scoped OAuth token. See [API keys](https://documentation.sailpoint.com/saas/help/common/api_keys.html) and [Data Segmentation](https://documentation.sailpoint.com/saas/help/segmentation/index.html). Resolves exactly one identity using a single SCIM-style filters expression. Returns an enriched Human or non-human identity (NHI) envelope. Single-clause filters only; unsupported fields or operators return HTTP 400.
|
|
1540
1557
|
* @summary Get identity by filter
|
|
1541
1558
|
* @param {string} filters Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **id**: *eq* **email**: *eq* **opaqueIdentifier**: *eq*
|
|
1542
1559
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -1555,16 +1572,17 @@ export declare const IntelligenceApiAxiosParamCreator: (configuration?: Configur
|
|
|
1555
1572
|
*/
|
|
1556
1573
|
getIntelIdentityAccessItemHistoryV1: (id: string, limit?: number, offset?: number, count?: boolean, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
1557
1574
|
/**
|
|
1558
|
-
* Continuation endpoint for
|
|
1575
|
+
* Continuation endpoint for `accounts.next`. Pass `count=true` for `X-Total-Count`. - Human (default): omit `isNHI` or set it to `false`. Slice object (`items`). - Non-human identity (NHI): set `isNHI=true` (required for NHI aggregate `accounts.next` links). Bare JSON array.
|
|
1559
1576
|
* @summary List identity accounts
|
|
1560
1577
|
* @param {string} id Non-empty identity id path segment for Intelligence sub-resources.
|
|
1561
1578
|
* @param {number} [limit] Page size. Defaults to 250; values above 250 are rejected with 400.
|
|
1562
1579
|
* @param {number} [offset] Zero-based page offset. Defaults to 0.
|
|
1563
1580
|
* @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.
|
|
1581
|
+
* @param {boolean} [isNHI] NHI accounts when `true` (bare array). Human accounts when omitted or `false` (slice object).
|
|
1564
1582
|
* @param {*} [axiosOptions] Override http request option.
|
|
1565
1583
|
* @throws {RequiredError}
|
|
1566
1584
|
*/
|
|
1567
|
-
getIntelIdentityAccountsV1: (id: string, limit?: number, offset?: number, count?: boolean, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
1585
|
+
getIntelIdentityAccountsV1: (id: string, limit?: number, offset?: number, count?: boolean, isNHI?: boolean, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
1568
1586
|
/**
|
|
1569
1587
|
* Continuation endpoint for the parent response\'s `accessHistory.certifications.next` link. Returns one page of certification history events for the supplied limit and offset values. Pass `count=true` to receive `X-Total-Count` (including `0` on empty pages). Per-record decode failures are dropped server-side. Requires tenant license idn:response-and-remediation. Not applicable to non-human identities.
|
|
1570
1588
|
* @summary List identity certification history
|
|
@@ -1623,7 +1641,7 @@ export declare const IntelligenceApiFp: (configuration?: Configuration) => {
|
|
|
1623
1641
|
*/
|
|
1624
1642
|
createResponseActionV1(responseactioncreaterequest: Responseactioncreaterequest, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Responseactionaccepted>>;
|
|
1625
1643
|
/**
|
|
1626
|
-
* Requires tenant license idn:response-and-remediation. **
|
|
1644
|
+
* Requires tenant license idn:response-and-remediation. **Caution:** When Data Segmentation is enabled, generic API Management API keys are not tied to a user identity and may fail or return incomplete data. Use a [personal access token](https://developer.sailpoint.com/docs/api/authentication/#generate-a-personal-access-token) or other user-scoped OAuth token. See [API keys](https://documentation.sailpoint.com/saas/help/common/api_keys.html) and [Data Segmentation](https://documentation.sailpoint.com/saas/help/segmentation/index.html). Resolves exactly one identity using a single SCIM-style filters expression. Returns an enriched Human or non-human identity (NHI) envelope. Single-clause filters only; unsupported fields or operators return HTTP 400.
|
|
1627
1645
|
* @summary Get identity by filter
|
|
1628
1646
|
* @param {string} filters Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **id**: *eq* **email**: *eq* **opaqueIdentifier**: *eq*
|
|
1629
1647
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -1642,16 +1660,17 @@ export declare const IntelligenceApiFp: (configuration?: Configuration) => {
|
|
|
1642
1660
|
*/
|
|
1643
1661
|
getIntelIdentityAccessItemHistoryV1(id: string, limit?: number, offset?: number, count?: boolean, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<IntelAccessItemHistoryEvent>>>;
|
|
1644
1662
|
/**
|
|
1645
|
-
* Continuation endpoint for
|
|
1663
|
+
* Continuation endpoint for `accounts.next`. Pass `count=true` for `X-Total-Count`. - Human (default): omit `isNHI` or set it to `false`. Slice object (`items`). - Non-human identity (NHI): set `isNHI=true` (required for NHI aggregate `accounts.next` links). Bare JSON array.
|
|
1646
1664
|
* @summary List identity accounts
|
|
1647
1665
|
* @param {string} id Non-empty identity id path segment for Intelligence sub-resources.
|
|
1648
1666
|
* @param {number} [limit] Page size. Defaults to 250; values above 250 are rejected with 400.
|
|
1649
1667
|
* @param {number} [offset] Zero-based page offset. Defaults to 0.
|
|
1650
1668
|
* @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.
|
|
1669
|
+
* @param {boolean} [isNHI] NHI accounts when `true` (bare array). Human accounts when omitted or `false` (slice object).
|
|
1651
1670
|
* @param {*} [axiosOptions] Override http request option.
|
|
1652
1671
|
* @throws {RequiredError}
|
|
1653
1672
|
*/
|
|
1654
|
-
getIntelIdentityAccountsV1(id: string, limit?: number, offset?: number, count?: boolean, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
1673
|
+
getIntelIdentityAccountsV1(id: string, limit?: number, offset?: number, count?: boolean, isNHI?: boolean, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetIntelIdentityAccountsV1200Response>>;
|
|
1655
1674
|
/**
|
|
1656
1675
|
* Continuation endpoint for the parent response\'s `accessHistory.certifications.next` link. Returns one page of certification history events for the supplied limit and offset values. Pass `count=true` to receive `X-Total-Count` (including `0` on empty pages). Per-record decode failures are dropped server-side. Requires tenant license idn:response-and-remediation. Not applicable to non-human identities.
|
|
1657
1676
|
* @summary List identity certification history
|
|
@@ -1710,7 +1729,7 @@ export declare const IntelligenceApiFactory: (configuration?: Configuration, bas
|
|
|
1710
1729
|
*/
|
|
1711
1730
|
createResponseActionV1(requestParameters: IntelligenceApiCreateResponseActionV1Request, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Responseactionaccepted>;
|
|
1712
1731
|
/**
|
|
1713
|
-
* Requires tenant license idn:response-and-remediation. **
|
|
1732
|
+
* Requires tenant license idn:response-and-remediation. **Caution:** When Data Segmentation is enabled, generic API Management API keys are not tied to a user identity and may fail or return incomplete data. Use a [personal access token](https://developer.sailpoint.com/docs/api/authentication/#generate-a-personal-access-token) or other user-scoped OAuth token. See [API keys](https://documentation.sailpoint.com/saas/help/common/api_keys.html) and [Data Segmentation](https://documentation.sailpoint.com/saas/help/segmentation/index.html). Resolves exactly one identity using a single SCIM-style filters expression. Returns an enriched Human or non-human identity (NHI) envelope. Single-clause filters only; unsupported fields or operators return HTTP 400.
|
|
1714
1733
|
* @summary Get identity by filter
|
|
1715
1734
|
* @param {IntelligenceApiGetIdentityIntelligenceV1Request} requestParameters Request parameters.
|
|
1716
1735
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -1726,13 +1745,13 @@ export declare const IntelligenceApiFactory: (configuration?: Configuration, bas
|
|
|
1726
1745
|
*/
|
|
1727
1746
|
getIntelIdentityAccessItemHistoryV1(requestParameters: IntelligenceApiGetIntelIdentityAccessItemHistoryV1Request, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<IntelAccessItemHistoryEvent>>;
|
|
1728
1747
|
/**
|
|
1729
|
-
* Continuation endpoint for
|
|
1748
|
+
* Continuation endpoint for `accounts.next`. Pass `count=true` for `X-Total-Count`. - Human (default): omit `isNHI` or set it to `false`. Slice object (`items`). - Non-human identity (NHI): set `isNHI=true` (required for NHI aggregate `accounts.next` links). Bare JSON array.
|
|
1730
1749
|
* @summary List identity accounts
|
|
1731
1750
|
* @param {IntelligenceApiGetIntelIdentityAccountsV1Request} requestParameters Request parameters.
|
|
1732
1751
|
* @param {*} [axiosOptions] Override http request option.
|
|
1733
1752
|
* @throws {RequiredError}
|
|
1734
1753
|
*/
|
|
1735
|
-
getIntelIdentityAccountsV1(requestParameters: IntelligenceApiGetIntelIdentityAccountsV1Request, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<
|
|
1754
|
+
getIntelIdentityAccountsV1(requestParameters: IntelligenceApiGetIntelIdentityAccountsV1Request, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<GetIntelIdentityAccountsV1200Response>;
|
|
1736
1755
|
/**
|
|
1737
1756
|
* Continuation endpoint for the parent response\'s `accessHistory.certifications.next` link. Returns one page of certification history events for the supplied limit and offset values. Pass `count=true` to receive `X-Total-Count` (including `0` on empty pages). Per-record decode failures are dropped server-side. Requires tenant license idn:response-and-remediation. Not applicable to non-human identities.
|
|
1738
1757
|
* @summary List identity certification history
|
|
@@ -1853,6 +1872,12 @@ export interface IntelligenceApiGetIntelIdentityAccountsV1Request {
|
|
|
1853
1872
|
* @memberof IntelligenceApiGetIntelIdentityAccountsV1
|
|
1854
1873
|
*/
|
|
1855
1874
|
readonly count?: boolean;
|
|
1875
|
+
/**
|
|
1876
|
+
* NHI accounts when `true` (bare array). Human accounts when omitted or `false` (slice object).
|
|
1877
|
+
* @type {boolean}
|
|
1878
|
+
* @memberof IntelligenceApiGetIntelIdentityAccountsV1
|
|
1879
|
+
*/
|
|
1880
|
+
readonly isNHI?: boolean;
|
|
1856
1881
|
}
|
|
1857
1882
|
/**
|
|
1858
1883
|
* Request parameters for getIntelIdentityCertificationHistoryV1 operation in IntelligenceApi.
|
|
@@ -1989,7 +2014,7 @@ export declare class IntelligenceApi extends BaseAPI {
|
|
|
1989
2014
|
*/
|
|
1990
2015
|
createResponseActionV1(requestParameters: IntelligenceApiCreateResponseActionV1Request, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Responseactionaccepted, any>>;
|
|
1991
2016
|
/**
|
|
1992
|
-
* Requires tenant license idn:response-and-remediation. **
|
|
2017
|
+
* Requires tenant license idn:response-and-remediation. **Caution:** When Data Segmentation is enabled, generic API Management API keys are not tied to a user identity and may fail or return incomplete data. Use a [personal access token](https://developer.sailpoint.com/docs/api/authentication/#generate-a-personal-access-token) or other user-scoped OAuth token. See [API keys](https://documentation.sailpoint.com/saas/help/common/api_keys.html) and [Data Segmentation](https://documentation.sailpoint.com/saas/help/segmentation/index.html). Resolves exactly one identity using a single SCIM-style filters expression. Returns an enriched Human or non-human identity (NHI) envelope. Single-clause filters only; unsupported fields or operators return HTTP 400.
|
|
1993
2018
|
* @summary Get identity by filter
|
|
1994
2019
|
* @param {IntelligenceApiGetIdentityIntelligenceV1Request} requestParameters Request parameters.
|
|
1995
2020
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -2007,14 +2032,14 @@ export declare class IntelligenceApi extends BaseAPI {
|
|
|
2007
2032
|
*/
|
|
2008
2033
|
getIntelIdentityAccessItemHistoryV1(requestParameters: IntelligenceApiGetIntelIdentityAccessItemHistoryV1Request, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<IntelAccessItemHistoryEvent[], any>>;
|
|
2009
2034
|
/**
|
|
2010
|
-
* Continuation endpoint for
|
|
2035
|
+
* Continuation endpoint for `accounts.next`. Pass `count=true` for `X-Total-Count`. - Human (default): omit `isNHI` or set it to `false`. Slice object (`items`). - Non-human identity (NHI): set `isNHI=true` (required for NHI aggregate `accounts.next` links). Bare JSON array.
|
|
2011
2036
|
* @summary List identity accounts
|
|
2012
2037
|
* @param {IntelligenceApiGetIntelIdentityAccountsV1Request} requestParameters Request parameters.
|
|
2013
2038
|
* @param {*} [axiosOptions] Override http request option.
|
|
2014
2039
|
* @throws {RequiredError}
|
|
2015
2040
|
* @memberof IntelligenceApi
|
|
2016
2041
|
*/
|
|
2017
|
-
getIntelIdentityAccountsV1(requestParameters: IntelligenceApiGetIntelIdentityAccountsV1Request, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
2042
|
+
getIntelIdentityAccountsV1(requestParameters: IntelligenceApiGetIntelIdentityAccountsV1Request, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetIntelIdentityAccountsV1200Response, any>>;
|
|
2018
2043
|
/**
|
|
2019
2044
|
* Continuation endpoint for the parent response\'s `accessHistory.certifications.next` link. Returns one page of certification history events for the supplied limit and offset values. Pass `count=true` to receive `X-Total-Count` (including `0` on empty pages). Per-record decode failures are dropped server-side. Requires tenant license idn:response-and-remediation. Not applicable to non-human identities.
|
|
2020
2045
|
* @summary List identity certification history
|