@sailpoint/api-client 2.2.20 → 2.2.21
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/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/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
|
@@ -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.21';
|
|
250
|
+
userAgent = "SailPoint-SDK-TypeScript/2.2.21";
|
|
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.21';
|
|
250
|
+
userAgent = "SailPoint-SDK-TypeScript/2.2.21";
|
|
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.
|
|
@@ -257,7 +257,7 @@ var MachineAccountMappingsApiAxiosParamCreator = function (configuration) {
|
|
|
257
257
|
(0, common_1.assertParamExists)('setMachineAccountMappingsV1', 'sourceId', sourceId);
|
|
258
258
|
// verify required parameter 'attributeMappings' is not null or undefined
|
|
259
259
|
(0, common_1.assertParamExists)('setMachineAccountMappingsV1', 'attributeMappings', attributeMappings);
|
|
260
|
-
localVarPath = "/sources/v1/{sourceId}/machine-mappings"
|
|
260
|
+
localVarPath = "/sources/v1/{sourceId}/machine-account-mappings"
|
|
261
261
|
.replace("{".concat("sourceId", "}"), encodeURIComponent(String(sourceId)));
|
|
262
262
|
localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
263
263
|
if (configuration) {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"api.js","sourceRoot":"","sources":["../../machine_account_mappings/api.ts"],"names":[],"mappings":"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","sourcesContent":["/* tslint:disable */\n/* eslint-disable */\n/**\n * Identity Security Cloud API - Machine Account Mappings\n * Use these APIs to interact with the Identity Security Cloud platform to achieve repeatable, automated processes with greater scalability. We encourage you to join the SailPoint Developer Community forum at https://developer.sailpoint.com/discuss to connect with other developers using our APIs.\n *\n * The version of the OpenAPI document: v1\n * \n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n\nimport type { Configuration } from '../configuration';\nimport type { AxiosPromise, AxiosInstance, RawAxiosRequestConfig } from 'axios';\nimport globalAxios from 'axios';\n// Some imports not used depending on template conditions\n// @ts-ignore\nimport { DUMMY_BASE_URL, assertParamExists, setApiKeyToObject, setBasicAuthToObject, setBearerAuthToObject, setOAuthToObject, setSearchParams, serializeDataIfNeeded, toPathString, createRequestFunction } from './common';\nimport type { RequestArgs } from './base';\n// @ts-ignore\nimport { BASE_PATH, COLLECTION_FORMATS, BaseAPI, RequiredError, operationServerMap } from './base';\n\n/**\n * \n * @export\n * @interface AttributeMappings\n */\nexport interface AttributeMappings {\n /**\n * \n * @type {AttributeMappingsAllOfTarget}\n * @memberof AttributeMappings\n */\n 'target'?: AttributeMappingsAllOfTarget;\n /**\n * \n * @type {AttributeMappingsAllOfTransformDefinition}\n * @memberof AttributeMappings\n */\n 'transformDefinition'?: AttributeMappingsAllOfTransformDefinition;\n}\n/**\n * Targeted Entity\n * @export\n * @interface AttributeMappingsAllOfTarget\n */\nexport interface AttributeMappingsAllOfTarget {\n /**\n * The type of target entity\n * @type {string}\n * @memberof AttributeMappingsAllOfTarget\n */\n 'type'?: AttributeMappingsAllOfTargetTypeEnum;\n /**\n * Name of the targeted attribute\n * @type {string}\n * @memberof AttributeMappingsAllOfTarget\n */\n 'attributeName'?: string;\n /**\n * The ID of Source\n * @type {string}\n * @memberof AttributeMappingsAllOfTarget\n */\n 'sourceId'?: string;\n}\n\nexport const AttributeMappingsAllOfTargetTypeEnum = {\n Account: 'ACCOUNT',\n Identity: 'IDENTITY',\n OwnerAccount: 'OWNER_ACCOUNT',\n OwnerIdentity: 'OWNER_IDENTITY'\n} as const;\n\nexport type AttributeMappingsAllOfTargetTypeEnum = typeof AttributeMappingsAllOfTargetTypeEnum[keyof typeof AttributeMappingsAllOfTargetTypeEnum];\n\n/**\n * \n * @export\n * @interface AttributeMappingsAllOfTransformDefinition\n */\nexport interface AttributeMappingsAllOfTransformDefinition {\n /**\n * The type of transform\n * @type {string}\n * @memberof AttributeMappingsAllOfTransformDefinition\n */\n 'type'?: string;\n /**\n * \n * @type {AttributeMappingsAllOfTransformDefinitionAttributes}\n * @memberof AttributeMappingsAllOfTransformDefinition\n */\n 'attributes'?: AttributeMappingsAllOfTransformDefinitionAttributes;\n /**\n * Transform Operation\n * @type {string}\n * @memberof AttributeMappingsAllOfTransformDefinition\n */\n 'id'?: string;\n}\n/**\n * attributes object\n * @export\n * @interface AttributeMappingsAllOfTransformDefinitionAttributes\n */\nexport interface AttributeMappingsAllOfTransformDefinitionAttributes {\n /**\n * \n * @type {AttributeMappingsAllOfTransformDefinitionAttributesInput}\n * @memberof AttributeMappingsAllOfTransformDefinitionAttributes\n */\n 'input'?: AttributeMappingsAllOfTransformDefinitionAttributesInput;\n}\n/**\n * Input Object\n * @export\n * @interface AttributeMappingsAllOfTransformDefinitionAttributesInput\n */\nexport interface AttributeMappingsAllOfTransformDefinitionAttributesInput {\n /**\n * The Type of Attribute\n * @type {string}\n * @memberof AttributeMappingsAllOfTransformDefinitionAttributesInput\n */\n 'type'?: string;\n /**\n * \n * @type {AttributeMappingsAllOfTransformDefinitionAttributesInputAttributes}\n * @memberof AttributeMappingsAllOfTransformDefinitionAttributesInput\n */\n 'attributes'?: AttributeMappingsAllOfTransformDefinitionAttributesInputAttributes;\n}\n/**\n * Attibute Mapping Object\n * @export\n * @interface AttributeMappingsAllOfTransformDefinitionAttributesInputAttributes\n */\nexport interface AttributeMappingsAllOfTransformDefinitionAttributesInputAttributes {\n /**\n * The name of attribute\n * @type {string}\n * @memberof AttributeMappingsAllOfTransformDefinitionAttributesInputAttributes\n */\n 'attributeName'?: string;\n /**\n * Name of the Source\n * @type {string}\n * @memberof AttributeMappingsAllOfTransformDefinitionAttributesInputAttributes\n */\n 'sourceName'?: string;\n /**\n * ID of the Source\n * @type {string}\n * @memberof AttributeMappingsAllOfTransformDefinitionAttributesInputAttributes\n */\n 'name'?: string;\n}\n/**\n * \n * @export\n * @interface ErrorMessageDto\n */\nexport interface ErrorMessageDto {\n /**\n * The locale for the message text, a BCP 47 language tag.\n * @type {string}\n * @memberof ErrorMessageDto\n */\n 'locale'?: string | null;\n /**\n * \n * @type {LocaleOrigin}\n * @memberof ErrorMessageDto\n */\n 'localeOrigin'?: LocaleOrigin | null;\n /**\n * Actual text of the error message in the indicated locale.\n * @type {string}\n * @memberof ErrorMessageDto\n */\n 'text'?: string;\n}\n\n\n/**\n * \n * @export\n * @interface ErrorResponseDto\n */\nexport interface ErrorResponseDto {\n /**\n * Fine-grained error code providing more detail of the error.\n * @type {string}\n * @memberof ErrorResponseDto\n */\n 'detailCode'?: string;\n /**\n * Unique tracking id for the error.\n * @type {string}\n * @memberof ErrorResponseDto\n */\n 'trackingId'?: string;\n /**\n * Generic localized reason for error\n * @type {Array<ErrorMessageDto>}\n * @memberof ErrorResponseDto\n */\n 'messages'?: Array<ErrorMessageDto>;\n /**\n * Plain-text descriptive reasons to provide additional detail to the text provided in the messages field\n * @type {Array<ErrorMessageDto>}\n * @memberof ErrorResponseDto\n */\n 'causes'?: Array<ErrorMessageDto>;\n}\n/**\n * \n * @export\n * @interface ListMachineAccountMappingsV1401Response\n */\nexport interface ListMachineAccountMappingsV1401Response {\n /**\n * A message describing the error\n * @type {any}\n * @memberof ListMachineAccountMappingsV1401Response\n */\n 'error'?: any;\n}\n/**\n * \n * @export\n * @interface ListMachineAccountMappingsV1429Response\n */\nexport interface ListMachineAccountMappingsV1429Response {\n /**\n * A message describing the error\n * @type {any}\n * @memberof ListMachineAccountMappingsV1429Response\n */\n 'message'?: any;\n}\n/**\n * An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.\n * @export\n * @enum {string}\n */\n\nexport const LocaleOrigin = {\n Default: 'DEFAULT',\n Request: 'REQUEST'\n} as const;\n\nexport type LocaleOrigin = typeof LocaleOrigin[keyof typeof LocaleOrigin];\n\n\n\n/**\n * MachineAccountMappingsApi - axios parameter creator\n * @export\n */\nexport const MachineAccountMappingsApiAxiosParamCreator = function (configuration?: Configuration) {\n return {\n /**\n * Creates Machine Account Mappings for both identities and accounts for a source. A token with API, ORG_ADMIN, ROLE_ADMIN, ROLE_SUBADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API.\n * @summary Create machine account mappings\n * @param {string} sourceId Source ID.\n * @param {AttributeMappings} attributeMappings \n * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.\n * @param {*} [axiosOptions] Override http request option.\n * @throws {RequiredError}\n */\n createMachineAccountMappingsV1: async (sourceId: string, attributeMappings: AttributeMappings, xSailPointExperimental?: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {\n // verify required parameter 'sourceId' is not null or undefined\n assertParamExists('createMachineAccountMappingsV1', 'sourceId', sourceId)\n // verify required parameter 'attributeMappings' is not null or undefined\n assertParamExists('createMachineAccountMappingsV1', 'attributeMappings', attributeMappings)\n if (xSailPointExperimental === undefined) {\n xSailPointExperimental = 'true';\n }\n \n const localVarPath = `/sources/v1/{sourceId}/machine-account-mappings`\n .replace(`{${\"sourceId\"}}`, encodeURIComponent(String(sourceId)));\n // use dummy base URL string because the URL constructor only accepts absolute URLs.\n const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);\n let baseOptions;\n if (configuration) {\n baseOptions = configuration.baseOptions;\n }\n\n const localVarRequestOptions = { method: 'POST', ...baseOptions, ...axiosOptions};\n const localVarHeaderParameter = {} as any;\n const localVarQueryParameter = {} as any;\n\n\n \n localVarHeaderParameter['Content-Type'] = 'application/json';\n\n if (xSailPointExperimental != null) {\n localVarHeaderParameter['X-SailPoint-Experimental'] = String(xSailPointExperimental);\n }\n setSearchParams(localVarUrlObj, localVarQueryParameter);\n let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};\n localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};\n localVarRequestOptions.data = serializeDataIfNeeded(attributeMappings, localVarRequestOptions, configuration)\n\n return {\n url: toPathString(localVarUrlObj),\n axiosOptions: localVarRequestOptions,\n };\n },\n /**\n * Use this API to remove machine account attribute mappings for a Source. A token with ORG_ADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API.\n * @summary Delete source\\'s machine account mappings\n * @param {string} sourceId source ID.\n * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.\n * @param {*} [axiosOptions] Override http request option.\n * @throws {RequiredError}\n */\n deleteMachineAccountMappingsV1: async (sourceId: string, xSailPointExperimental?: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {\n // verify required parameter 'sourceId' is not null or undefined\n assertParamExists('deleteMachineAccountMappingsV1', 'sourceId', sourceId)\n if (xSailPointExperimental === undefined) {\n xSailPointExperimental = 'true';\n }\n \n const localVarPath = `/sources/v1/{sourceId}/machine-account-mappings`\n .replace(`{${\"sourceId\"}}`, encodeURIComponent(String(sourceId)));\n // use dummy base URL string because the URL constructor only accepts absolute URLs.\n const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);\n let baseOptions;\n if (configuration) {\n baseOptions = configuration.baseOptions;\n }\n\n const localVarRequestOptions = { method: 'DELETE', ...baseOptions, ...axiosOptions};\n const localVarHeaderParameter = {} as any;\n const localVarQueryParameter = {} as any;\n\n\n \n if (xSailPointExperimental != null) {\n localVarHeaderParameter['X-SailPoint-Experimental'] = String(xSailPointExperimental);\n }\n setSearchParams(localVarUrlObj, localVarQueryParameter);\n let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};\n localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};\n\n return {\n url: toPathString(localVarUrlObj),\n axiosOptions: localVarRequestOptions,\n };\n },\n /**\n * Retrieves Machine account mappings for a specified source using Source ID.\n * @summary Machine account mapping for source\n * @param {string} sourceId Source ID\n * @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.\n * @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.\n * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.\n * @param {*} [axiosOptions] Override http request option.\n * @throws {RequiredError}\n */\n listMachineAccountMappingsV1: async (sourceId: string, limit?: number, offset?: number, xSailPointExperimental?: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {\n // verify required parameter 'sourceId' is not null or undefined\n assertParamExists('listMachineAccountMappingsV1', 'sourceId', sourceId)\n if (xSailPointExperimental === undefined) {\n xSailPointExperimental = 'true';\n }\n \n const localVarPath = `/sources/v1/{sourceId}/machine-account-mappings`\n .replace(`{${\"sourceId\"}}`, encodeURIComponent(String(sourceId)));\n // use dummy base URL string because the URL constructor only accepts absolute URLs.\n const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);\n let baseOptions;\n if (configuration) {\n baseOptions = configuration.baseOptions;\n }\n\n const localVarRequestOptions = { method: 'GET', ...baseOptions, ...axiosOptions};\n const localVarHeaderParameter = {} as any;\n const localVarQueryParameter = {} as any;\n\n if (limit !== undefined) {\n localVarQueryParameter['limit'] = limit;\n }\n\n if (offset !== undefined) {\n localVarQueryParameter['offset'] = offset;\n }\n\n\n \n if (xSailPointExperimental != null) {\n localVarHeaderParameter['X-SailPoint-Experimental'] = String(xSailPointExperimental);\n }\n setSearchParams(localVarUrlObj, localVarQueryParameter);\n let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};\n localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};\n\n return {\n url: toPathString(localVarUrlObj),\n axiosOptions: localVarRequestOptions,\n };\n },\n /**\n * Use this API to update Machine Account Attribute Mapping for a Source. A token with ORG_ADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API.\n * @summary Update source\\'s machine account mappings\n * @param {string} sourceId Source ID.\n * @param {AttributeMappings} attributeMappings \n * @param {*} [axiosOptions] Override http request option.\n * @throws {RequiredError}\n */\n setMachineAccountMappingsV1: async (sourceId: string, attributeMappings: AttributeMappings, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {\n // verify required parameter 'sourceId' is not null or undefined\n assertParamExists('setMachineAccountMappingsV1', 'sourceId', sourceId)\n // verify required parameter 'attributeMappings' is not null or undefined\n assertParamExists('setMachineAccountMappingsV1', 'attributeMappings', attributeMappings)\n const localVarPath = `/sources/v1/{sourceId}/machine-mappings`\n .replace(`{${\"sourceId\"}}`, encodeURIComponent(String(sourceId)));\n // use dummy base URL string because the URL constructor only accepts absolute URLs.\n const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);\n let baseOptions;\n if (configuration) {\n baseOptions = configuration.baseOptions;\n }\n\n const localVarRequestOptions = { method: 'PUT', ...baseOptions, ...axiosOptions};\n const localVarHeaderParameter = {} as any;\n const localVarQueryParameter = {} as any;\n\n\n \n localVarHeaderParameter['Content-Type'] = 'application/json';\n\n setSearchParams(localVarUrlObj, localVarQueryParameter);\n let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};\n localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};\n localVarRequestOptions.data = serializeDataIfNeeded(attributeMappings, localVarRequestOptions, configuration)\n\n return {\n url: toPathString(localVarUrlObj),\n axiosOptions: localVarRequestOptions,\n };\n },\n }\n};\n\n/**\n * MachineAccountMappingsApi - functional programming interface\n * @export\n */\nexport const MachineAccountMappingsApiFp = function(configuration?: Configuration) {\n const localVarAxiosParamCreator = MachineAccountMappingsApiAxiosParamCreator(configuration)\n return {\n /**\n * Creates Machine Account Mappings for both identities and accounts for a source. A token with API, ORG_ADMIN, ROLE_ADMIN, ROLE_SUBADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API.\n * @summary Create machine account mappings\n * @param {string} sourceId Source ID.\n * @param {AttributeMappings} attributeMappings \n * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.\n * @param {*} [axiosOptions] Override http request option.\n * @throws {RequiredError}\n */\n async createMachineAccountMappingsV1(sourceId: string, attributeMappings: AttributeMappings, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<AttributeMappings>>> {\n const localVarAxiosArgs = await localVarAxiosParamCreator.createMachineAccountMappingsV1(sourceId, attributeMappings, xSailPointExperimental, axiosOptions);\n const localVarOperationServerIndex = configuration?.serverIndex ?? 0;\n const localVarOperationServerBasePath = operationServerMap['MachineAccountMappingsApi.createMachineAccountMappingsV1']?.[localVarOperationServerIndex]?.url;\n return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);\n },\n /**\n * Use this API to remove machine account attribute mappings for a Source. A token with ORG_ADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API.\n * @summary Delete source\\'s machine account mappings\n * @param {string} sourceId source ID.\n * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.\n * @param {*} [axiosOptions] Override http request option.\n * @throws {RequiredError}\n */\n async deleteMachineAccountMappingsV1(sourceId: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {\n const localVarAxiosArgs = await localVarAxiosParamCreator.deleteMachineAccountMappingsV1(sourceId, xSailPointExperimental, axiosOptions);\n const localVarOperationServerIndex = configuration?.serverIndex ?? 0;\n const localVarOperationServerBasePath = operationServerMap['MachineAccountMappingsApi.deleteMachineAccountMappingsV1']?.[localVarOperationServerIndex]?.url;\n return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);\n },\n /**\n * Retrieves Machine account mappings for a specified source using Source ID.\n * @summary Machine account mapping for source\n * @param {string} sourceId Source ID\n * @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.\n * @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.\n * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.\n * @param {*} [axiosOptions] Override http request option.\n * @throws {RequiredError}\n */\n async listMachineAccountMappingsV1(sourceId: string, limit?: number, offset?: number, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<AttributeMappings>>> {\n const localVarAxiosArgs = await localVarAxiosParamCreator.listMachineAccountMappingsV1(sourceId, limit, offset, xSailPointExperimental, axiosOptions);\n const localVarOperationServerIndex = configuration?.serverIndex ?? 0;\n const localVarOperationServerBasePath = operationServerMap['MachineAccountMappingsApi.listMachineAccountMappingsV1']?.[localVarOperationServerIndex]?.url;\n return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);\n },\n /**\n * Use this API to update Machine Account Attribute Mapping for a Source. A token with ORG_ADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API.\n * @summary Update source\\'s machine account mappings\n * @param {string} sourceId Source ID.\n * @param {AttributeMappings} attributeMappings \n * @param {*} [axiosOptions] Override http request option.\n * @throws {RequiredError}\n */\n async setMachineAccountMappingsV1(sourceId: string, attributeMappings: AttributeMappings, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<AttributeMappings>>> {\n const localVarAxiosArgs = await localVarAxiosParamCreator.setMachineAccountMappingsV1(sourceId, attributeMappings, axiosOptions);\n const localVarOperationServerIndex = configuration?.serverIndex ?? 0;\n const localVarOperationServerBasePath = operationServerMap['MachineAccountMappingsApi.setMachineAccountMappingsV1']?.[localVarOperationServerIndex]?.url;\n return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);\n },\n }\n};\n\n/**\n * MachineAccountMappingsApi - factory interface\n * @export\n */\nexport const MachineAccountMappingsApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {\n const localVarFp = MachineAccountMappingsApiFp(configuration)\n return {\n /**\n * Creates Machine Account Mappings for both identities and accounts for a source. A token with API, ORG_ADMIN, ROLE_ADMIN, ROLE_SUBADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API.\n * @summary Create machine account mappings\n * @param {MachineAccountMappingsApiCreateMachineAccountMappingsV1Request} requestParameters Request parameters.\n * @param {*} [axiosOptions] Override http request option.\n * @throws {RequiredError}\n */\n createMachineAccountMappingsV1(requestParameters: MachineAccountMappingsApiCreateMachineAccountMappingsV1Request, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<AttributeMappings>> {\n return localVarFp.createMachineAccountMappingsV1(requestParameters.sourceId, requestParameters.attributeMappings, requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(axios, basePath));\n },\n /**\n * Use this API to remove machine account attribute mappings for a Source. A token with ORG_ADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API.\n * @summary Delete source\\'s machine account mappings\n * @param {MachineAccountMappingsApiDeleteMachineAccountMappingsV1Request} requestParameters Request parameters.\n * @param {*} [axiosOptions] Override http request option.\n * @throws {RequiredError}\n */\n deleteMachineAccountMappingsV1(requestParameters: MachineAccountMappingsApiDeleteMachineAccountMappingsV1Request, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<void> {\n return localVarFp.deleteMachineAccountMappingsV1(requestParameters.sourceId, requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(axios, basePath));\n },\n /**\n * Retrieves Machine account mappings for a specified source using Source ID.\n * @summary Machine account mapping for source\n * @param {MachineAccountMappingsApiListMachineAccountMappingsV1Request} requestParameters Request parameters.\n * @param {*} [axiosOptions] Override http request option.\n * @throws {RequiredError}\n */\n listMachineAccountMappingsV1(requestParameters: MachineAccountMappingsApiListMachineAccountMappingsV1Request, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<AttributeMappings>> {\n return localVarFp.listMachineAccountMappingsV1(requestParameters.sourceId, requestParameters.limit, requestParameters.offset, requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(axios, basePath));\n },\n /**\n * Use this API to update Machine Account Attribute Mapping for a Source. A token with ORG_ADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API.\n * @summary Update source\\'s machine account mappings\n * @param {MachineAccountMappingsApiSetMachineAccountMappingsV1Request} requestParameters Request parameters.\n * @param {*} [axiosOptions] Override http request option.\n * @throws {RequiredError}\n */\n setMachineAccountMappingsV1(requestParameters: MachineAccountMappingsApiSetMachineAccountMappingsV1Request, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<AttributeMappings>> {\n return localVarFp.setMachineAccountMappingsV1(requestParameters.sourceId, requestParameters.attributeMappings, axiosOptions).then((request) => request(axios, basePath));\n },\n };\n};\n\n/**\n * Request parameters for createMachineAccountMappingsV1 operation in MachineAccountMappingsApi.\n * @export\n * @interface MachineAccountMappingsApiCreateMachineAccountMappingsV1Request\n */\nexport interface MachineAccountMappingsApiCreateMachineAccountMappingsV1Request {\n /**\n * Source ID.\n * @type {string}\n * @memberof MachineAccountMappingsApiCreateMachineAccountMappingsV1\n */\n readonly sourceId: string\n\n /**\n * \n * @type {AttributeMappings}\n * @memberof MachineAccountMappingsApiCreateMachineAccountMappingsV1\n */\n readonly attributeMappings: AttributeMappings\n\n /**\n * Use this header to enable this experimental API.\n * @type {string}\n * @memberof MachineAccountMappingsApiCreateMachineAccountMappingsV1\n */\n readonly xSailPointExperimental?: string\n}\n\n/**\n * Request parameters for deleteMachineAccountMappingsV1 operation in MachineAccountMappingsApi.\n * @export\n * @interface MachineAccountMappingsApiDeleteMachineAccountMappingsV1Request\n */\nexport interface MachineAccountMappingsApiDeleteMachineAccountMappingsV1Request {\n /**\n * source ID.\n * @type {string}\n * @memberof MachineAccountMappingsApiDeleteMachineAccountMappingsV1\n */\n readonly sourceId: string\n\n /**\n * Use this header to enable this experimental API.\n * @type {string}\n * @memberof MachineAccountMappingsApiDeleteMachineAccountMappingsV1\n */\n readonly xSailPointExperimental?: string\n}\n\n/**\n * Request parameters for listMachineAccountMappingsV1 operation in MachineAccountMappingsApi.\n * @export\n * @interface MachineAccountMappingsApiListMachineAccountMappingsV1Request\n */\nexport interface MachineAccountMappingsApiListMachineAccountMappingsV1Request {\n /**\n * Source ID\n * @type {string}\n * @memberof MachineAccountMappingsApiListMachineAccountMappingsV1\n */\n readonly sourceId: string\n\n /**\n * Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.\n * @type {number}\n * @memberof MachineAccountMappingsApiListMachineAccountMappingsV1\n */\n readonly limit?: number\n\n /**\n * 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.\n * @type {number}\n * @memberof MachineAccountMappingsApiListMachineAccountMappingsV1\n */\n readonly offset?: number\n\n /**\n * Use this header to enable this experimental API.\n * @type {string}\n * @memberof MachineAccountMappingsApiListMachineAccountMappingsV1\n */\n readonly xSailPointExperimental?: string\n}\n\n/**\n * Request parameters for setMachineAccountMappingsV1 operation in MachineAccountMappingsApi.\n * @export\n * @interface MachineAccountMappingsApiSetMachineAccountMappingsV1Request\n */\nexport interface MachineAccountMappingsApiSetMachineAccountMappingsV1Request {\n /**\n * Source ID.\n * @type {string}\n * @memberof MachineAccountMappingsApiSetMachineAccountMappingsV1\n */\n readonly sourceId: string\n\n /**\n * \n * @type {AttributeMappings}\n * @memberof MachineAccountMappingsApiSetMachineAccountMappingsV1\n */\n readonly attributeMappings: AttributeMappings\n}\n\n/**\n * MachineAccountMappingsApi - object-oriented interface\n * @export\n * @class MachineAccountMappingsApi\n * @extends {BaseAPI}\n */\nexport class MachineAccountMappingsApi extends BaseAPI {\n /**\n * Creates Machine Account Mappings for both identities and accounts for a source. A token with API, ORG_ADMIN, ROLE_ADMIN, ROLE_SUBADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API.\n * @summary Create machine account mappings\n * @param {MachineAccountMappingsApiCreateMachineAccountMappingsV1Request} requestParameters Request parameters.\n * @param {*} [axiosOptions] Override http request option.\n * @throws {RequiredError}\n * @memberof MachineAccountMappingsApi\n */\n public createMachineAccountMappingsV1(requestParameters: MachineAccountMappingsApiCreateMachineAccountMappingsV1Request, axiosOptions?: RawAxiosRequestConfig) {\n return MachineAccountMappingsApiFp(this.configuration).createMachineAccountMappingsV1(requestParameters.sourceId, requestParameters.attributeMappings, requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(this.axios, this.basePath));\n }\n\n /**\n * Use this API to remove machine account attribute mappings for a Source. A token with ORG_ADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API.\n * @summary Delete source\\'s machine account mappings\n * @param {MachineAccountMappingsApiDeleteMachineAccountMappingsV1Request} requestParameters Request parameters.\n * @param {*} [axiosOptions] Override http request option.\n * @throws {RequiredError}\n * @memberof MachineAccountMappingsApi\n */\n public deleteMachineAccountMappingsV1(requestParameters: MachineAccountMappingsApiDeleteMachineAccountMappingsV1Request, axiosOptions?: RawAxiosRequestConfig) {\n return MachineAccountMappingsApiFp(this.configuration).deleteMachineAccountMappingsV1(requestParameters.sourceId, requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(this.axios, this.basePath));\n }\n\n /**\n * Retrieves Machine account mappings for a specified source using Source ID.\n * @summary Machine account mapping for source\n * @param {MachineAccountMappingsApiListMachineAccountMappingsV1Request} requestParameters Request parameters.\n * @param {*} [axiosOptions] Override http request option.\n * @throws {RequiredError}\n * @memberof MachineAccountMappingsApi\n */\n public listMachineAccountMappingsV1(requestParameters: MachineAccountMappingsApiListMachineAccountMappingsV1Request, axiosOptions?: RawAxiosRequestConfig) {\n return MachineAccountMappingsApiFp(this.configuration).listMachineAccountMappingsV1(requestParameters.sourceId, requestParameters.limit, requestParameters.offset, requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(this.axios, this.basePath));\n }\n\n /**\n * Use this API to update Machine Account Attribute Mapping for a Source. A token with ORG_ADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API.\n * @summary Update source\\'s machine account mappings\n * @param {MachineAccountMappingsApiSetMachineAccountMappingsV1Request} requestParameters Request parameters.\n * @param {*} [axiosOptions] Override http request option.\n * @throws {RequiredError}\n * @memberof MachineAccountMappingsApi\n */\n public setMachineAccountMappingsV1(requestParameters: MachineAccountMappingsApiSetMachineAccountMappingsV1Request, axiosOptions?: RawAxiosRequestConfig) {\n return MachineAccountMappingsApiFp(this.configuration).setMachineAccountMappingsV1(requestParameters.sourceId, requestParameters.attributeMappings, axiosOptions).then((request) => request(this.axios, this.basePath));\n }\n}\n\n\n\n"]}
|
|
1
|
+
{"version":3,"file":"api.js","sourceRoot":"","sources":["../../machine_account_mappings/api.ts"],"names":[],"mappings":"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","sourcesContent":["/* tslint:disable */\n/* eslint-disable */\n/**\n * Identity Security Cloud API - Machine Account Mappings\n * Use these APIs to interact with the Identity Security Cloud platform to achieve repeatable, automated processes with greater scalability. We encourage you to join the SailPoint Developer Community forum at https://developer.sailpoint.com/discuss to connect with other developers using our APIs.\n *\n * The version of the OpenAPI document: v1\n * \n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n\nimport type { Configuration } from '../configuration';\nimport type { AxiosPromise, AxiosInstance, RawAxiosRequestConfig } from 'axios';\nimport globalAxios from 'axios';\n// Some imports not used depending on template conditions\n// @ts-ignore\nimport { DUMMY_BASE_URL, assertParamExists, setApiKeyToObject, setBasicAuthToObject, setBearerAuthToObject, setOAuthToObject, setSearchParams, serializeDataIfNeeded, toPathString, createRequestFunction } from './common';\nimport type { RequestArgs } from './base';\n// @ts-ignore\nimport { BASE_PATH, COLLECTION_FORMATS, BaseAPI, RequiredError, operationServerMap } from './base';\n\n/**\n * \n * @export\n * @interface AttributeMappings\n */\nexport interface AttributeMappings {\n /**\n * \n * @type {AttributeMappingsAllOfTarget}\n * @memberof AttributeMappings\n */\n 'target'?: AttributeMappingsAllOfTarget;\n /**\n * \n * @type {AttributeMappingsAllOfTransformDefinition}\n * @memberof AttributeMappings\n */\n 'transformDefinition'?: AttributeMappingsAllOfTransformDefinition;\n}\n/**\n * Targeted Entity\n * @export\n * @interface AttributeMappingsAllOfTarget\n */\nexport interface AttributeMappingsAllOfTarget {\n /**\n * The type of target entity\n * @type {string}\n * @memberof AttributeMappingsAllOfTarget\n */\n 'type'?: AttributeMappingsAllOfTargetTypeEnum;\n /**\n * Name of the targeted attribute\n * @type {string}\n * @memberof AttributeMappingsAllOfTarget\n */\n 'attributeName'?: string;\n /**\n * The ID of Source\n * @type {string}\n * @memberof AttributeMappingsAllOfTarget\n */\n 'sourceId'?: string;\n}\n\nexport const AttributeMappingsAllOfTargetTypeEnum = {\n Account: 'ACCOUNT',\n Identity: 'IDENTITY',\n OwnerAccount: 'OWNER_ACCOUNT',\n OwnerIdentity: 'OWNER_IDENTITY'\n} as const;\n\nexport type AttributeMappingsAllOfTargetTypeEnum = typeof AttributeMappingsAllOfTargetTypeEnum[keyof typeof AttributeMappingsAllOfTargetTypeEnum];\n\n/**\n * \n * @export\n * @interface AttributeMappingsAllOfTransformDefinition\n */\nexport interface AttributeMappingsAllOfTransformDefinition {\n /**\n * The type of transform\n * @type {string}\n * @memberof AttributeMappingsAllOfTransformDefinition\n */\n 'type'?: string;\n /**\n * \n * @type {AttributeMappingsAllOfTransformDefinitionAttributes}\n * @memberof AttributeMappingsAllOfTransformDefinition\n */\n 'attributes'?: AttributeMappingsAllOfTransformDefinitionAttributes;\n /**\n * Transform Operation\n * @type {string}\n * @memberof AttributeMappingsAllOfTransformDefinition\n */\n 'id'?: string;\n}\n/**\n * attributes object\n * @export\n * @interface AttributeMappingsAllOfTransformDefinitionAttributes\n */\nexport interface AttributeMappingsAllOfTransformDefinitionAttributes {\n /**\n * \n * @type {AttributeMappingsAllOfTransformDefinitionAttributesInput}\n * @memberof AttributeMappingsAllOfTransformDefinitionAttributes\n */\n 'input'?: AttributeMappingsAllOfTransformDefinitionAttributesInput;\n}\n/**\n * Input Object\n * @export\n * @interface AttributeMappingsAllOfTransformDefinitionAttributesInput\n */\nexport interface AttributeMappingsAllOfTransformDefinitionAttributesInput {\n /**\n * The Type of Attribute\n * @type {string}\n * @memberof AttributeMappingsAllOfTransformDefinitionAttributesInput\n */\n 'type'?: string;\n /**\n * \n * @type {AttributeMappingsAllOfTransformDefinitionAttributesInputAttributes}\n * @memberof AttributeMappingsAllOfTransformDefinitionAttributesInput\n */\n 'attributes'?: AttributeMappingsAllOfTransformDefinitionAttributesInputAttributes;\n}\n/**\n * Attibute Mapping Object\n * @export\n * @interface AttributeMappingsAllOfTransformDefinitionAttributesInputAttributes\n */\nexport interface AttributeMappingsAllOfTransformDefinitionAttributesInputAttributes {\n /**\n * The name of attribute\n * @type {string}\n * @memberof AttributeMappingsAllOfTransformDefinitionAttributesInputAttributes\n */\n 'attributeName'?: string;\n /**\n * Name of the Source\n * @type {string}\n * @memberof AttributeMappingsAllOfTransformDefinitionAttributesInputAttributes\n */\n 'sourceName'?: string;\n /**\n * ID of the Source\n * @type {string}\n * @memberof AttributeMappingsAllOfTransformDefinitionAttributesInputAttributes\n */\n 'name'?: string;\n}\n/**\n * \n * @export\n * @interface ErrorMessageDto\n */\nexport interface ErrorMessageDto {\n /**\n * The locale for the message text, a BCP 47 language tag.\n * @type {string}\n * @memberof ErrorMessageDto\n */\n 'locale'?: string | null;\n /**\n * \n * @type {LocaleOrigin}\n * @memberof ErrorMessageDto\n */\n 'localeOrigin'?: LocaleOrigin | null;\n /**\n * Actual text of the error message in the indicated locale.\n * @type {string}\n * @memberof ErrorMessageDto\n */\n 'text'?: string;\n}\n\n\n/**\n * \n * @export\n * @interface ErrorResponseDto\n */\nexport interface ErrorResponseDto {\n /**\n * Fine-grained error code providing more detail of the error.\n * @type {string}\n * @memberof ErrorResponseDto\n */\n 'detailCode'?: string;\n /**\n * Unique tracking id for the error.\n * @type {string}\n * @memberof ErrorResponseDto\n */\n 'trackingId'?: string;\n /**\n * Generic localized reason for error\n * @type {Array<ErrorMessageDto>}\n * @memberof ErrorResponseDto\n */\n 'messages'?: Array<ErrorMessageDto>;\n /**\n * Plain-text descriptive reasons to provide additional detail to the text provided in the messages field\n * @type {Array<ErrorMessageDto>}\n * @memberof ErrorResponseDto\n */\n 'causes'?: Array<ErrorMessageDto>;\n}\n/**\n * \n * @export\n * @interface ListMachineAccountMappingsV1401Response\n */\nexport interface ListMachineAccountMappingsV1401Response {\n /**\n * A message describing the error\n * @type {any}\n * @memberof ListMachineAccountMappingsV1401Response\n */\n 'error'?: any;\n}\n/**\n * \n * @export\n * @interface ListMachineAccountMappingsV1429Response\n */\nexport interface ListMachineAccountMappingsV1429Response {\n /**\n * A message describing the error\n * @type {any}\n * @memberof ListMachineAccountMappingsV1429Response\n */\n 'message'?: any;\n}\n/**\n * An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.\n * @export\n * @enum {string}\n */\n\nexport const LocaleOrigin = {\n Default: 'DEFAULT',\n Request: 'REQUEST'\n} as const;\n\nexport type LocaleOrigin = typeof LocaleOrigin[keyof typeof LocaleOrigin];\n\n\n\n/**\n * MachineAccountMappingsApi - axios parameter creator\n * @export\n */\nexport const MachineAccountMappingsApiAxiosParamCreator = function (configuration?: Configuration) {\n return {\n /**\n * Creates Machine Account Mappings for both identities and accounts for a source. A token with API, ORG_ADMIN, ROLE_ADMIN, ROLE_SUBADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API.\n * @summary Create machine account mappings\n * @param {string} sourceId Source ID.\n * @param {AttributeMappings} attributeMappings \n * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.\n * @param {*} [axiosOptions] Override http request option.\n * @throws {RequiredError}\n */\n createMachineAccountMappingsV1: async (sourceId: string, attributeMappings: AttributeMappings, xSailPointExperimental?: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {\n // verify required parameter 'sourceId' is not null or undefined\n assertParamExists('createMachineAccountMappingsV1', 'sourceId', sourceId)\n // verify required parameter 'attributeMappings' is not null or undefined\n assertParamExists('createMachineAccountMappingsV1', 'attributeMappings', attributeMappings)\n if (xSailPointExperimental === undefined) {\n xSailPointExperimental = 'true';\n }\n \n const localVarPath = `/sources/v1/{sourceId}/machine-account-mappings`\n .replace(`{${\"sourceId\"}}`, encodeURIComponent(String(sourceId)));\n // use dummy base URL string because the URL constructor only accepts absolute URLs.\n const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);\n let baseOptions;\n if (configuration) {\n baseOptions = configuration.baseOptions;\n }\n\n const localVarRequestOptions = { method: 'POST', ...baseOptions, ...axiosOptions};\n const localVarHeaderParameter = {} as any;\n const localVarQueryParameter = {} as any;\n\n\n \n localVarHeaderParameter['Content-Type'] = 'application/json';\n\n if (xSailPointExperimental != null) {\n localVarHeaderParameter['X-SailPoint-Experimental'] = String(xSailPointExperimental);\n }\n setSearchParams(localVarUrlObj, localVarQueryParameter);\n let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};\n localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};\n localVarRequestOptions.data = serializeDataIfNeeded(attributeMappings, localVarRequestOptions, configuration)\n\n return {\n url: toPathString(localVarUrlObj),\n axiosOptions: localVarRequestOptions,\n };\n },\n /**\n * Use this API to remove machine account attribute mappings for a Source. A token with ORG_ADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API.\n * @summary Delete source\\'s machine account mappings\n * @param {string} sourceId source ID.\n * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.\n * @param {*} [axiosOptions] Override http request option.\n * @throws {RequiredError}\n */\n deleteMachineAccountMappingsV1: async (sourceId: string, xSailPointExperimental?: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {\n // verify required parameter 'sourceId' is not null or undefined\n assertParamExists('deleteMachineAccountMappingsV1', 'sourceId', sourceId)\n if (xSailPointExperimental === undefined) {\n xSailPointExperimental = 'true';\n }\n \n const localVarPath = `/sources/v1/{sourceId}/machine-account-mappings`\n .replace(`{${\"sourceId\"}}`, encodeURIComponent(String(sourceId)));\n // use dummy base URL string because the URL constructor only accepts absolute URLs.\n const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);\n let baseOptions;\n if (configuration) {\n baseOptions = configuration.baseOptions;\n }\n\n const localVarRequestOptions = { method: 'DELETE', ...baseOptions, ...axiosOptions};\n const localVarHeaderParameter = {} as any;\n const localVarQueryParameter = {} as any;\n\n\n \n if (xSailPointExperimental != null) {\n localVarHeaderParameter['X-SailPoint-Experimental'] = String(xSailPointExperimental);\n }\n setSearchParams(localVarUrlObj, localVarQueryParameter);\n let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};\n localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};\n\n return {\n url: toPathString(localVarUrlObj),\n axiosOptions: localVarRequestOptions,\n };\n },\n /**\n * Retrieves Machine account mappings for a specified source using Source ID.\n * @summary Machine account mapping for source\n * @param {string} sourceId Source ID\n * @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.\n * @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.\n * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.\n * @param {*} [axiosOptions] Override http request option.\n * @throws {RequiredError}\n */\n listMachineAccountMappingsV1: async (sourceId: string, limit?: number, offset?: number, xSailPointExperimental?: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {\n // verify required parameter 'sourceId' is not null or undefined\n assertParamExists('listMachineAccountMappingsV1', 'sourceId', sourceId)\n if (xSailPointExperimental === undefined) {\n xSailPointExperimental = 'true';\n }\n \n const localVarPath = `/sources/v1/{sourceId}/machine-account-mappings`\n .replace(`{${\"sourceId\"}}`, encodeURIComponent(String(sourceId)));\n // use dummy base URL string because the URL constructor only accepts absolute URLs.\n const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);\n let baseOptions;\n if (configuration) {\n baseOptions = configuration.baseOptions;\n }\n\n const localVarRequestOptions = { method: 'GET', ...baseOptions, ...axiosOptions};\n const localVarHeaderParameter = {} as any;\n const localVarQueryParameter = {} as any;\n\n if (limit !== undefined) {\n localVarQueryParameter['limit'] = limit;\n }\n\n if (offset !== undefined) {\n localVarQueryParameter['offset'] = offset;\n }\n\n\n \n if (xSailPointExperimental != null) {\n localVarHeaderParameter['X-SailPoint-Experimental'] = String(xSailPointExperimental);\n }\n setSearchParams(localVarUrlObj, localVarQueryParameter);\n let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};\n localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};\n\n return {\n url: toPathString(localVarUrlObj),\n axiosOptions: localVarRequestOptions,\n };\n },\n /**\n * Use this API to update Machine Account Attribute Mapping for a Source. A token with ORG_ADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API.\n * @summary Update source\\'s machine account mappings\n * @param {string} sourceId Source ID.\n * @param {AttributeMappings} attributeMappings \n * @param {*} [axiosOptions] Override http request option.\n * @throws {RequiredError}\n */\n setMachineAccountMappingsV1: async (sourceId: string, attributeMappings: AttributeMappings, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {\n // verify required parameter 'sourceId' is not null or undefined\n assertParamExists('setMachineAccountMappingsV1', 'sourceId', sourceId)\n // verify required parameter 'attributeMappings' is not null or undefined\n assertParamExists('setMachineAccountMappingsV1', 'attributeMappings', attributeMappings)\n const localVarPath = `/sources/v1/{sourceId}/machine-account-mappings`\n .replace(`{${\"sourceId\"}}`, encodeURIComponent(String(sourceId)));\n // use dummy base URL string because the URL constructor only accepts absolute URLs.\n const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);\n let baseOptions;\n if (configuration) {\n baseOptions = configuration.baseOptions;\n }\n\n const localVarRequestOptions = { method: 'PUT', ...baseOptions, ...axiosOptions};\n const localVarHeaderParameter = {} as any;\n const localVarQueryParameter = {} as any;\n\n\n \n localVarHeaderParameter['Content-Type'] = 'application/json';\n\n setSearchParams(localVarUrlObj, localVarQueryParameter);\n let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};\n localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};\n localVarRequestOptions.data = serializeDataIfNeeded(attributeMappings, localVarRequestOptions, configuration)\n\n return {\n url: toPathString(localVarUrlObj),\n axiosOptions: localVarRequestOptions,\n };\n },\n }\n};\n\n/**\n * MachineAccountMappingsApi - functional programming interface\n * @export\n */\nexport const MachineAccountMappingsApiFp = function(configuration?: Configuration) {\n const localVarAxiosParamCreator = MachineAccountMappingsApiAxiosParamCreator(configuration)\n return {\n /**\n * Creates Machine Account Mappings for both identities and accounts for a source. A token with API, ORG_ADMIN, ROLE_ADMIN, ROLE_SUBADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API.\n * @summary Create machine account mappings\n * @param {string} sourceId Source ID.\n * @param {AttributeMappings} attributeMappings \n * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.\n * @param {*} [axiosOptions] Override http request option.\n * @throws {RequiredError}\n */\n async createMachineAccountMappingsV1(sourceId: string, attributeMappings: AttributeMappings, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<AttributeMappings>>> {\n const localVarAxiosArgs = await localVarAxiosParamCreator.createMachineAccountMappingsV1(sourceId, attributeMappings, xSailPointExperimental, axiosOptions);\n const localVarOperationServerIndex = configuration?.serverIndex ?? 0;\n const localVarOperationServerBasePath = operationServerMap['MachineAccountMappingsApi.createMachineAccountMappingsV1']?.[localVarOperationServerIndex]?.url;\n return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);\n },\n /**\n * Use this API to remove machine account attribute mappings for a Source. A token with ORG_ADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API.\n * @summary Delete source\\'s machine account mappings\n * @param {string} sourceId source ID.\n * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.\n * @param {*} [axiosOptions] Override http request option.\n * @throws {RequiredError}\n */\n async deleteMachineAccountMappingsV1(sourceId: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {\n const localVarAxiosArgs = await localVarAxiosParamCreator.deleteMachineAccountMappingsV1(sourceId, xSailPointExperimental, axiosOptions);\n const localVarOperationServerIndex = configuration?.serverIndex ?? 0;\n const localVarOperationServerBasePath = operationServerMap['MachineAccountMappingsApi.deleteMachineAccountMappingsV1']?.[localVarOperationServerIndex]?.url;\n return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);\n },\n /**\n * Retrieves Machine account mappings for a specified source using Source ID.\n * @summary Machine account mapping for source\n * @param {string} sourceId Source ID\n * @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.\n * @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.\n * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.\n * @param {*} [axiosOptions] Override http request option.\n * @throws {RequiredError}\n */\n async listMachineAccountMappingsV1(sourceId: string, limit?: number, offset?: number, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<AttributeMappings>>> {\n const localVarAxiosArgs = await localVarAxiosParamCreator.listMachineAccountMappingsV1(sourceId, limit, offset, xSailPointExperimental, axiosOptions);\n const localVarOperationServerIndex = configuration?.serverIndex ?? 0;\n const localVarOperationServerBasePath = operationServerMap['MachineAccountMappingsApi.listMachineAccountMappingsV1']?.[localVarOperationServerIndex]?.url;\n return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);\n },\n /**\n * Use this API to update Machine Account Attribute Mapping for a Source. A token with ORG_ADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API.\n * @summary Update source\\'s machine account mappings\n * @param {string} sourceId Source ID.\n * @param {AttributeMappings} attributeMappings \n * @param {*} [axiosOptions] Override http request option.\n * @throws {RequiredError}\n */\n async setMachineAccountMappingsV1(sourceId: string, attributeMappings: AttributeMappings, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<AttributeMappings>>> {\n const localVarAxiosArgs = await localVarAxiosParamCreator.setMachineAccountMappingsV1(sourceId, attributeMappings, axiosOptions);\n const localVarOperationServerIndex = configuration?.serverIndex ?? 0;\n const localVarOperationServerBasePath = operationServerMap['MachineAccountMappingsApi.setMachineAccountMappingsV1']?.[localVarOperationServerIndex]?.url;\n return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);\n },\n }\n};\n\n/**\n * MachineAccountMappingsApi - factory interface\n * @export\n */\nexport const MachineAccountMappingsApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {\n const localVarFp = MachineAccountMappingsApiFp(configuration)\n return {\n /**\n * Creates Machine Account Mappings for both identities and accounts for a source. A token with API, ORG_ADMIN, ROLE_ADMIN, ROLE_SUBADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API.\n * @summary Create machine account mappings\n * @param {MachineAccountMappingsApiCreateMachineAccountMappingsV1Request} requestParameters Request parameters.\n * @param {*} [axiosOptions] Override http request option.\n * @throws {RequiredError}\n */\n createMachineAccountMappingsV1(requestParameters: MachineAccountMappingsApiCreateMachineAccountMappingsV1Request, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<AttributeMappings>> {\n return localVarFp.createMachineAccountMappingsV1(requestParameters.sourceId, requestParameters.attributeMappings, requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(axios, basePath));\n },\n /**\n * Use this API to remove machine account attribute mappings for a Source. A token with ORG_ADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API.\n * @summary Delete source\\'s machine account mappings\n * @param {MachineAccountMappingsApiDeleteMachineAccountMappingsV1Request} requestParameters Request parameters.\n * @param {*} [axiosOptions] Override http request option.\n * @throws {RequiredError}\n */\n deleteMachineAccountMappingsV1(requestParameters: MachineAccountMappingsApiDeleteMachineAccountMappingsV1Request, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<void> {\n return localVarFp.deleteMachineAccountMappingsV1(requestParameters.sourceId, requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(axios, basePath));\n },\n /**\n * Retrieves Machine account mappings for a specified source using Source ID.\n * @summary Machine account mapping for source\n * @param {MachineAccountMappingsApiListMachineAccountMappingsV1Request} requestParameters Request parameters.\n * @param {*} [axiosOptions] Override http request option.\n * @throws {RequiredError}\n */\n listMachineAccountMappingsV1(requestParameters: MachineAccountMappingsApiListMachineAccountMappingsV1Request, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<AttributeMappings>> {\n return localVarFp.listMachineAccountMappingsV1(requestParameters.sourceId, requestParameters.limit, requestParameters.offset, requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(axios, basePath));\n },\n /**\n * Use this API to update Machine Account Attribute Mapping for a Source. A token with ORG_ADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API.\n * @summary Update source\\'s machine account mappings\n * @param {MachineAccountMappingsApiSetMachineAccountMappingsV1Request} requestParameters Request parameters.\n * @param {*} [axiosOptions] Override http request option.\n * @throws {RequiredError}\n */\n setMachineAccountMappingsV1(requestParameters: MachineAccountMappingsApiSetMachineAccountMappingsV1Request, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<AttributeMappings>> {\n return localVarFp.setMachineAccountMappingsV1(requestParameters.sourceId, requestParameters.attributeMappings, axiosOptions).then((request) => request(axios, basePath));\n },\n };\n};\n\n/**\n * Request parameters for createMachineAccountMappingsV1 operation in MachineAccountMappingsApi.\n * @export\n * @interface MachineAccountMappingsApiCreateMachineAccountMappingsV1Request\n */\nexport interface MachineAccountMappingsApiCreateMachineAccountMappingsV1Request {\n /**\n * Source ID.\n * @type {string}\n * @memberof MachineAccountMappingsApiCreateMachineAccountMappingsV1\n */\n readonly sourceId: string\n\n /**\n * \n * @type {AttributeMappings}\n * @memberof MachineAccountMappingsApiCreateMachineAccountMappingsV1\n */\n readonly attributeMappings: AttributeMappings\n\n /**\n * Use this header to enable this experimental API.\n * @type {string}\n * @memberof MachineAccountMappingsApiCreateMachineAccountMappingsV1\n */\n readonly xSailPointExperimental?: string\n}\n\n/**\n * Request parameters for deleteMachineAccountMappingsV1 operation in MachineAccountMappingsApi.\n * @export\n * @interface MachineAccountMappingsApiDeleteMachineAccountMappingsV1Request\n */\nexport interface MachineAccountMappingsApiDeleteMachineAccountMappingsV1Request {\n /**\n * source ID.\n * @type {string}\n * @memberof MachineAccountMappingsApiDeleteMachineAccountMappingsV1\n */\n readonly sourceId: string\n\n /**\n * Use this header to enable this experimental API.\n * @type {string}\n * @memberof MachineAccountMappingsApiDeleteMachineAccountMappingsV1\n */\n readonly xSailPointExperimental?: string\n}\n\n/**\n * Request parameters for listMachineAccountMappingsV1 operation in MachineAccountMappingsApi.\n * @export\n * @interface MachineAccountMappingsApiListMachineAccountMappingsV1Request\n */\nexport interface MachineAccountMappingsApiListMachineAccountMappingsV1Request {\n /**\n * Source ID\n * @type {string}\n * @memberof MachineAccountMappingsApiListMachineAccountMappingsV1\n */\n readonly sourceId: string\n\n /**\n * Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.\n * @type {number}\n * @memberof MachineAccountMappingsApiListMachineAccountMappingsV1\n */\n readonly limit?: number\n\n /**\n * 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.\n * @type {number}\n * @memberof MachineAccountMappingsApiListMachineAccountMappingsV1\n */\n readonly offset?: number\n\n /**\n * Use this header to enable this experimental API.\n * @type {string}\n * @memberof MachineAccountMappingsApiListMachineAccountMappingsV1\n */\n readonly xSailPointExperimental?: string\n}\n\n/**\n * Request parameters for setMachineAccountMappingsV1 operation in MachineAccountMappingsApi.\n * @export\n * @interface MachineAccountMappingsApiSetMachineAccountMappingsV1Request\n */\nexport interface MachineAccountMappingsApiSetMachineAccountMappingsV1Request {\n /**\n * Source ID.\n * @type {string}\n * @memberof MachineAccountMappingsApiSetMachineAccountMappingsV1\n */\n readonly sourceId: string\n\n /**\n * \n * @type {AttributeMappings}\n * @memberof MachineAccountMappingsApiSetMachineAccountMappingsV1\n */\n readonly attributeMappings: AttributeMappings\n}\n\n/**\n * MachineAccountMappingsApi - object-oriented interface\n * @export\n * @class MachineAccountMappingsApi\n * @extends {BaseAPI}\n */\nexport class MachineAccountMappingsApi extends BaseAPI {\n /**\n * Creates Machine Account Mappings for both identities and accounts for a source. A token with API, ORG_ADMIN, ROLE_ADMIN, ROLE_SUBADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API.\n * @summary Create machine account mappings\n * @param {MachineAccountMappingsApiCreateMachineAccountMappingsV1Request} requestParameters Request parameters.\n * @param {*} [axiosOptions] Override http request option.\n * @throws {RequiredError}\n * @memberof MachineAccountMappingsApi\n */\n public createMachineAccountMappingsV1(requestParameters: MachineAccountMappingsApiCreateMachineAccountMappingsV1Request, axiosOptions?: RawAxiosRequestConfig) {\n return MachineAccountMappingsApiFp(this.configuration).createMachineAccountMappingsV1(requestParameters.sourceId, requestParameters.attributeMappings, requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(this.axios, this.basePath));\n }\n\n /**\n * Use this API to remove machine account attribute mappings for a Source. A token with ORG_ADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API.\n * @summary Delete source\\'s machine account mappings\n * @param {MachineAccountMappingsApiDeleteMachineAccountMappingsV1Request} requestParameters Request parameters.\n * @param {*} [axiosOptions] Override http request option.\n * @throws {RequiredError}\n * @memberof MachineAccountMappingsApi\n */\n public deleteMachineAccountMappingsV1(requestParameters: MachineAccountMappingsApiDeleteMachineAccountMappingsV1Request, axiosOptions?: RawAxiosRequestConfig) {\n return MachineAccountMappingsApiFp(this.configuration).deleteMachineAccountMappingsV1(requestParameters.sourceId, requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(this.axios, this.basePath));\n }\n\n /**\n * Retrieves Machine account mappings for a specified source using Source ID.\n * @summary Machine account mapping for source\n * @param {MachineAccountMappingsApiListMachineAccountMappingsV1Request} requestParameters Request parameters.\n * @param {*} [axiosOptions] Override http request option.\n * @throws {RequiredError}\n * @memberof MachineAccountMappingsApi\n */\n public listMachineAccountMappingsV1(requestParameters: MachineAccountMappingsApiListMachineAccountMappingsV1Request, axiosOptions?: RawAxiosRequestConfig) {\n return MachineAccountMappingsApiFp(this.configuration).listMachineAccountMappingsV1(requestParameters.sourceId, requestParameters.limit, requestParameters.offset, requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(this.axios, this.basePath));\n }\n\n /**\n * Use this API to update Machine Account Attribute Mapping for a Source. A token with ORG_ADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API.\n * @summary Update source\\'s machine account mappings\n * @param {MachineAccountMappingsApiSetMachineAccountMappingsV1Request} requestParameters Request parameters.\n * @param {*} [axiosOptions] Override http request option.\n * @throws {RequiredError}\n * @memberof MachineAccountMappingsApi\n */\n public setMachineAccountMappingsV1(requestParameters: MachineAccountMappingsApiSetMachineAccountMappingsV1Request, axiosOptions?: RawAxiosRequestConfig) {\n return MachineAccountMappingsApiFp(this.configuration).setMachineAccountMappingsV1(requestParameters.sourceId, requestParameters.attributeMappings, axiosOptions).then((request) => request(this.axios, this.basePath));\n }\n}\n\n\n\n"]}
|
package/dist/nerm/common.js
CHANGED
|
@@ -257,8 +257,8 @@ var createRequestFunction = function (axiosArgs, globalAxios, BASE_PATH, configu
|
|
|
257
257
|
// header such as X-SailPoint-SDK forces a CORS preflight that tenants do
|
|
258
258
|
// not allow, which blocks the request outright.
|
|
259
259
|
if (typeof process !== 'undefined' && ((_a = process.versions) === null || _a === void 0 ? void 0 : _a.node)) {
|
|
260
|
-
headers['X-SailPoint-SDK'] = 'typescript-2.2.
|
|
261
|
-
userAgent = "SailPoint-SDK-TypeScript/2.2.
|
|
260
|
+
headers['X-SailPoint-SDK'] = 'typescript-2.2.21';
|
|
261
|
+
userAgent = "SailPoint-SDK-TypeScript/2.2.21";
|
|
262
262
|
if ((configuration === null || configuration === void 0 ? void 0 : configuration.consumerIdentifier) && (configuration === null || configuration === void 0 ? void 0 : configuration.consumerVersion)) {
|
|
263
263
|
userAgent += " (".concat(configuration.consumerIdentifier, "/").concat(configuration.consumerVersion, ")");
|
|
264
264
|
}
|
package/dist/nerm/common.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"common.js","sourceRoot":"","sources":["../../nerm/common.ts"],"names":[],"mappings":"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","sourcesContent":["/* tslint:disable */\n/* eslint-disable */\n/**\n * NERM API\n * The NERM API accesss and modifies resources in your environment.\n *\n * The version of the OpenAPI document: 1.0.0\n * \n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n\nimport type { Configuration } from \"../configuration\";\nimport type { RequestArgs } from \"./base\";\nimport type { AxiosInstance, AxiosResponse } from 'axios';\nimport { RequiredError } from \"./base\";\n\n/**\n *\n * @export\n */\nexport const DUMMY_BASE_URL = 'https://example.com'\n\n/**\n *\n * @throws {RequiredError}\n * @export\n */\nexport const assertParamExists = function (functionName: string, paramName: string, paramValue: unknown) {\n if (paramValue === null || paramValue === undefined) {\n throw new RequiredError(paramName, `Required parameter ${paramName} was null or undefined when calling ${functionName}.`);\n }\n}\n\n/**\n *\n * @export\n */\nexport const setApiKeyToObject = async function (object: any, keyParamName: string, configuration?: Configuration) {\n if (configuration && configuration.apiKey) {\n const localVarApiKeyValue = typeof configuration.apiKey === 'function'\n ? await configuration.apiKey(keyParamName)\n : await configuration.apiKey;\n object[keyParamName] = localVarApiKeyValue;\n }\n}\n\n/**\n *\n * @export\n */\nexport const setBasicAuthToObject = function (object: any, configuration?: Configuration) {\n if (configuration && (configuration.username || configuration.password)) {\n object[\"auth\"] = { username: configuration.username, password: configuration.password };\n }\n}\n\n/**\n *\n * @export\n */\nexport const setBearerAuthToObject = async function (object: any, configuration?: Configuration) {\n if (configuration && configuration.accessToken) {\n const accessToken = typeof configuration.accessToken === 'function'\n ? await configuration.accessToken()\n : await configuration.accessToken;\n object[\"Authorization\"] = \"Bearer \" + accessToken;\n }\n}\n\n/**\n *\n * @export\n */\nexport const setOAuthToObject = async function (object: any, name: string, scopes: string[], configuration?: Configuration) {\n if (configuration && configuration.accessToken) {\n const localVarAccessTokenValue = typeof configuration.accessToken === 'function'\n ? await configuration.accessToken(name, scopes)\n : await configuration.accessToken;\n object[\"Authorization\"] = \"Bearer \" + localVarAccessTokenValue;\n }\n}\n\nfunction setFlattenedQueryParams(urlSearchParams: URLSearchParams, parameter: any, key: string = \"\"): void {\n if (parameter == null) return;\n if (typeof parameter === \"object\") {\n if (Array.isArray(parameter)) {\n (parameter as any[]).forEach(item => setFlattenedQueryParams(urlSearchParams, item, key));\n } \n else {\n Object.keys(parameter).forEach(currentKey => \n setFlattenedQueryParams(urlSearchParams, parameter[currentKey], `${key}${key !== '' ? '.' : ''}${currentKey}`)\n );\n }\n } \n else {\n if (urlSearchParams.has(key)) {\n urlSearchParams.append(key, parameter);\n } \n else {\n urlSearchParams.set(key, parameter);\n }\n }\n}\n\n/**\n *\n * @export\n */\nexport const setSearchParams = function (url: URL, ...objects: any[]) {\n const searchParams = new URLSearchParams(url.search);\n setFlattenedQueryParams(searchParams, objects);\n url.search = searchParams.toString();\n}\n\n/**\n *\n * @export\n */\nexport const serializeDataIfNeeded = function (value: any, requestOptions: any, configuration?: Configuration) {\n const nonString = typeof value !== 'string';\n const needsSerialization = nonString && configuration && configuration.isJsonMime\n ? configuration.isJsonMime(requestOptions.headers['Content-Type'])\n : nonString;\n return needsSerialization\n ? JSON.stringify(value !== undefined ? value : {})\n : (value || \"\");\n}\n\n/**\n *\n * @export\n */\nexport const toPathString = function (url: URL) {\n return url.pathname + url.search + url.hash\n}\n\n/**\n *\n * @export\n */\nexport const createRequestFunction = function (axiosArgs: RequestArgs, globalAxios: AxiosInstance, BASE_PATH: string, configuration?: Configuration) {\n return async <T = unknown, R = AxiosResponse<T>>(axios: AxiosInstance = globalAxios, basePath: string = BASE_PATH) => {\n const headers: Record<string, any> = {\n ...{'Accept': 'application/json'},\n ...axiosArgs.axiosOptions.headers,\n }\n\n // Node-only headers. Browsers reject a User-Agent override, and a custom\n // header such as X-SailPoint-SDK forces a CORS preflight that tenants do\n // not allow, which blocks the request outright.\n if (typeof process !== 'undefined' && process.versions?.node) {\n headers['X-SailPoint-SDK'] = 'typescript-2.2.20';\n let userAgent = `SailPoint-SDK-TypeScript/2.2.20`;\n if (configuration?.consumerIdentifier && configuration?.consumerVersion) {\n userAgent += ` (${configuration.consumerIdentifier}/${configuration.consumerVersion})`;\n }\n userAgent += ` (${process.platform}; ${process.arch}) Node/${process.versions.node} (openapi-generator/7.12.0)`;\n headers['User-Agent'] = userAgent;\n }\n\n if(!configuration.experimental && (\"X-SailPoint-Experimental\" in headers)) {\n throw new Error(\"You are using Experimental APIs. Set configuration.experimental = True to enable these APIs in the SDK.\")\n } else if(configuration.experimental == true && (\"X-SailPoint-Experimental\" in headers)) {\n console.log(\"Warning: You are using Experimental APIs\")\n }\n\n await setBearerAuthToObject(headers, configuration);\n\n const axiosRequestArgs = {...axiosArgs.axiosOptions, url: (basePath || configuration?.nermBasePath) + axiosArgs.url, headers};\n return axios.request<T, R>(axiosRequestArgs).catch((error: any) => {\n if (error?.isAxiosError === true) {\n const clean: any = new Error(error.message ?? 'API request failed');\n clean.name = 'ApiError';\n clean.stack = error.stack;\n clean.code = error.code;\n if (error.response) {\n clean.status = error.response.status;\n clean.statusText = error.response.statusText;\n clean.data = error.response.data;\n }\n throw clean;\n }\n throw error;\n });\n };\n}\n"]}
|
|
1
|
+
{"version":3,"file":"common.js","sourceRoot":"","sources":["../../nerm/common.ts"],"names":[],"mappings":"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","sourcesContent":["/* tslint:disable */\n/* eslint-disable */\n/**\n * NERM API\n * The NERM API accesss and modifies resources in your environment.\n *\n * The version of the OpenAPI document: 1.0.0\n * \n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n\nimport type { Configuration } from \"../configuration\";\nimport type { RequestArgs } from \"./base\";\nimport type { AxiosInstance, AxiosResponse } from 'axios';\nimport { RequiredError } from \"./base\";\n\n/**\n *\n * @export\n */\nexport const DUMMY_BASE_URL = 'https://example.com'\n\n/**\n *\n * @throws {RequiredError}\n * @export\n */\nexport const assertParamExists = function (functionName: string, paramName: string, paramValue: unknown) {\n if (paramValue === null || paramValue === undefined) {\n throw new RequiredError(paramName, `Required parameter ${paramName} was null or undefined when calling ${functionName}.`);\n }\n}\n\n/**\n *\n * @export\n */\nexport const setApiKeyToObject = async function (object: any, keyParamName: string, configuration?: Configuration) {\n if (configuration && configuration.apiKey) {\n const localVarApiKeyValue = typeof configuration.apiKey === 'function'\n ? await configuration.apiKey(keyParamName)\n : await configuration.apiKey;\n object[keyParamName] = localVarApiKeyValue;\n }\n}\n\n/**\n *\n * @export\n */\nexport const setBasicAuthToObject = function (object: any, configuration?: Configuration) {\n if (configuration && (configuration.username || configuration.password)) {\n object[\"auth\"] = { username: configuration.username, password: configuration.password };\n }\n}\n\n/**\n *\n * @export\n */\nexport const setBearerAuthToObject = async function (object: any, configuration?: Configuration) {\n if (configuration && configuration.accessToken) {\n const accessToken = typeof configuration.accessToken === 'function'\n ? await configuration.accessToken()\n : await configuration.accessToken;\n object[\"Authorization\"] = \"Bearer \" + accessToken;\n }\n}\n\n/**\n *\n * @export\n */\nexport const setOAuthToObject = async function (object: any, name: string, scopes: string[], configuration?: Configuration) {\n if (configuration && configuration.accessToken) {\n const localVarAccessTokenValue = typeof configuration.accessToken === 'function'\n ? await configuration.accessToken(name, scopes)\n : await configuration.accessToken;\n object[\"Authorization\"] = \"Bearer \" + localVarAccessTokenValue;\n }\n}\n\nfunction setFlattenedQueryParams(urlSearchParams: URLSearchParams, parameter: any, key: string = \"\"): void {\n if (parameter == null) return;\n if (typeof parameter === \"object\") {\n if (Array.isArray(parameter)) {\n (parameter as any[]).forEach(item => setFlattenedQueryParams(urlSearchParams, item, key));\n } \n else {\n Object.keys(parameter).forEach(currentKey => \n setFlattenedQueryParams(urlSearchParams, parameter[currentKey], `${key}${key !== '' ? '.' : ''}${currentKey}`)\n );\n }\n } \n else {\n if (urlSearchParams.has(key)) {\n urlSearchParams.append(key, parameter);\n } \n else {\n urlSearchParams.set(key, parameter);\n }\n }\n}\n\n/**\n *\n * @export\n */\nexport const setSearchParams = function (url: URL, ...objects: any[]) {\n const searchParams = new URLSearchParams(url.search);\n setFlattenedQueryParams(searchParams, objects);\n url.search = searchParams.toString();\n}\n\n/**\n *\n * @export\n */\nexport const serializeDataIfNeeded = function (value: any, requestOptions: any, configuration?: Configuration) {\n const nonString = typeof value !== 'string';\n const needsSerialization = nonString && configuration && configuration.isJsonMime\n ? configuration.isJsonMime(requestOptions.headers['Content-Type'])\n : nonString;\n return needsSerialization\n ? JSON.stringify(value !== undefined ? value : {})\n : (value || \"\");\n}\n\n/**\n *\n * @export\n */\nexport const toPathString = function (url: URL) {\n return url.pathname + url.search + url.hash\n}\n\n/**\n *\n * @export\n */\nexport const createRequestFunction = function (axiosArgs: RequestArgs, globalAxios: AxiosInstance, BASE_PATH: string, configuration?: Configuration) {\n return async <T = unknown, R = AxiosResponse<T>>(axios: AxiosInstance = globalAxios, basePath: string = BASE_PATH) => {\n const headers: Record<string, any> = {\n ...{'Accept': 'application/json'},\n ...axiosArgs.axiosOptions.headers,\n }\n\n // Node-only headers. Browsers reject a User-Agent override, and a custom\n // header such as X-SailPoint-SDK forces a CORS preflight that tenants do\n // not allow, which blocks the request outright.\n if (typeof process !== 'undefined' && process.versions?.node) {\n headers['X-SailPoint-SDK'] = 'typescript-2.2.21';\n let userAgent = `SailPoint-SDK-TypeScript/2.2.21`;\n if (configuration?.consumerIdentifier && configuration?.consumerVersion) {\n userAgent += ` (${configuration.consumerIdentifier}/${configuration.consumerVersion})`;\n }\n userAgent += ` (${process.platform}; ${process.arch}) Node/${process.versions.node} (openapi-generator/7.12.0)`;\n headers['User-Agent'] = userAgent;\n }\n\n if(!configuration.experimental && (\"X-SailPoint-Experimental\" in headers)) {\n throw new Error(\"You are using Experimental APIs. Set configuration.experimental = True to enable these APIs in the SDK.\")\n } else if(configuration.experimental == true && (\"X-SailPoint-Experimental\" in headers)) {\n console.log(\"Warning: You are using Experimental APIs\")\n }\n\n await setBearerAuthToObject(headers, configuration);\n\n const axiosRequestArgs = {...axiosArgs.axiosOptions, url: (basePath || configuration?.nermBasePath) + axiosArgs.url, headers};\n return axios.request<T, R>(axiosRequestArgs).catch((error: any) => {\n if (error?.isAxiosError === true) {\n const clean: any = new Error(error.message ?? 'API request failed');\n clean.name = 'ApiError';\n clean.stack = error.stack;\n clean.code = error.code;\n if (error.response) {\n clean.status = error.response.status;\n clean.statusText = error.response.statusText;\n clean.data = error.response.data;\n }\n throw clean;\n }\n throw error;\n });\n };\n}\n"]}
|
package/dist/nermv2025/common.js
CHANGED
|
@@ -257,8 +257,8 @@ var createRequestFunction = function (axiosArgs, globalAxios, BASE_PATH, configu
|
|
|
257
257
|
// header such as X-SailPoint-SDK forces a CORS preflight that tenants do
|
|
258
258
|
// not allow, which blocks the request outright.
|
|
259
259
|
if (typeof process !== 'undefined' && ((_a = process.versions) === null || _a === void 0 ? void 0 : _a.node)) {
|
|
260
|
-
headers['X-SailPoint-SDK'] = 'typescript-2.2.
|
|
261
|
-
userAgent = "SailPoint-SDK-TypeScript/2.2.
|
|
260
|
+
headers['X-SailPoint-SDK'] = 'typescript-2.2.21';
|
|
261
|
+
userAgent = "SailPoint-SDK-TypeScript/2.2.21";
|
|
262
262
|
if ((configuration === null || configuration === void 0 ? void 0 : configuration.consumerIdentifier) && (configuration === null || configuration === void 0 ? void 0 : configuration.consumerVersion)) {
|
|
263
263
|
userAgent += " (".concat(configuration.consumerIdentifier, "/").concat(configuration.consumerVersion, ")");
|
|
264
264
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"common.js","sourceRoot":"","sources":["../../nermv2025/common.ts"],"names":[],"mappings":"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","sourcesContent":["/* tslint:disable */\n/* eslint-disable */\n/**\n * NERM API v2025\n * The NERM API v2025 accesss and modifies resources in your environment.\n *\n * The version of the OpenAPI document: 1.0.0\n * \n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n\nimport type { Configuration } from \"../configuration\";\nimport type { RequestArgs } from \"./base\";\nimport type { AxiosInstance, AxiosResponse } from 'axios';\nimport { RequiredError } from \"./base\";\n\n/**\n *\n * @export\n */\nexport const DUMMY_BASE_URL = 'https://example.com'\n\n/**\n *\n * @throws {RequiredError}\n * @export\n */\nexport const assertParamExists = function (functionName: string, paramName: string, paramValue: unknown) {\n if (paramValue === null || paramValue === undefined) {\n throw new RequiredError(paramName, `Required parameter ${paramName} was null or undefined when calling ${functionName}.`);\n }\n}\n\n/**\n *\n * @export\n */\nexport const setApiKeyToObject = async function (object: any, keyParamName: string, configuration?: Configuration) {\n if (configuration && configuration.apiKey) {\n const localVarApiKeyValue = typeof configuration.apiKey === 'function'\n ? await configuration.apiKey(keyParamName)\n : await configuration.apiKey;\n object[keyParamName] = localVarApiKeyValue;\n }\n}\n\n/**\n *\n * @export\n */\nexport const setBasicAuthToObject = function (object: any, configuration?: Configuration) {\n if (configuration && (configuration.username || configuration.password)) {\n object[\"auth\"] = { username: configuration.username, password: configuration.password };\n }\n}\n\n/**\n *\n * @export\n */\nexport const setBearerAuthToObject = async function (object: any, configuration?: Configuration) {\n if (configuration && configuration.accessToken) {\n const accessToken = typeof configuration.accessToken === 'function'\n ? await configuration.accessToken()\n : await configuration.accessToken;\n object[\"Authorization\"] = \"Bearer \" + accessToken;\n }\n}\n\n/**\n *\n * @export\n */\nexport const setOAuthToObject = async function (object: any, name: string, scopes: string[], configuration?: Configuration) {\n if (configuration && configuration.accessToken) {\n const localVarAccessTokenValue = typeof configuration.accessToken === 'function'\n ? await configuration.accessToken(name, scopes)\n : await configuration.accessToken;\n object[\"Authorization\"] = \"Bearer \" + localVarAccessTokenValue;\n }\n}\n\nfunction setFlattenedQueryParams(urlSearchParams: URLSearchParams, parameter: any, key: string = \"\"): void {\n if (parameter == null) return;\n if (typeof parameter === \"object\") {\n if (Array.isArray(parameter)) {\n (parameter as any[]).forEach(item => setFlattenedQueryParams(urlSearchParams, item, key));\n } \n else {\n Object.keys(parameter).forEach(currentKey => \n setFlattenedQueryParams(urlSearchParams, parameter[currentKey], `${key}${key !== '' ? '.' : ''}${currentKey}`)\n );\n }\n } \n else {\n if (urlSearchParams.has(key)) {\n urlSearchParams.append(key, parameter);\n } \n else {\n urlSearchParams.set(key, parameter);\n }\n }\n}\n\n/**\n *\n * @export\n */\nexport const setSearchParams = function (url: URL, ...objects: any[]) {\n const searchParams = new URLSearchParams(url.search);\n setFlattenedQueryParams(searchParams, objects);\n url.search = searchParams.toString();\n}\n\n/**\n *\n * @export\n */\nexport const serializeDataIfNeeded = function (value: any, requestOptions: any, configuration?: Configuration) {\n const nonString = typeof value !== 'string';\n const needsSerialization = nonString && configuration && configuration.isJsonMime\n ? configuration.isJsonMime(requestOptions.headers['Content-Type'])\n : nonString;\n return needsSerialization\n ? JSON.stringify(value !== undefined ? value : {})\n : (value || \"\");\n}\n\n/**\n *\n * @export\n */\nexport const toPathString = function (url: URL) {\n return url.pathname + url.search + url.hash\n}\n\n/**\n *\n * @export\n */\nexport const createRequestFunction = function (axiosArgs: RequestArgs, globalAxios: AxiosInstance, BASE_PATH: string, configuration?: Configuration) {\n return async <T = unknown, R = AxiosResponse<T>>(axios: AxiosInstance = globalAxios, basePath: string = BASE_PATH) => {\n const headers: Record<string, any> = {\n ...{'Accept': 'application/json'},\n ...axiosArgs.axiosOptions.headers,\n }\n\n // Node-only headers. Browsers reject a User-Agent override, and a custom\n // header such as X-SailPoint-SDK forces a CORS preflight that tenants do\n // not allow, which blocks the request outright.\n if (typeof process !== 'undefined' && process.versions?.node) {\n headers['X-SailPoint-SDK'] = 'typescript-2.2.20';\n let userAgent = `SailPoint-SDK-TypeScript/2.2.20`;\n if (configuration?.consumerIdentifier && configuration?.consumerVersion) {\n userAgent += ` (${configuration.consumerIdentifier}/${configuration.consumerVersion})`;\n }\n userAgent += ` (${process.platform}; ${process.arch}) Node/${process.versions.node} (openapi-generator/7.12.0)`;\n headers['User-Agent'] = userAgent;\n }\n\n if(!configuration.experimental && (\"X-SailPoint-Experimental\" in headers)) {\n throw new Error(\"You are using Experimental APIs. Set configuration.experimental = True to enable these APIs in the SDK.\")\n } else if(configuration.experimental == true && (\"X-SailPoint-Experimental\" in headers)) {\n console.log(\"Warning: You are using Experimental APIs\")\n }\n\n await setBearerAuthToObject(headers, configuration);\n\n const axiosRequestArgs = {...axiosArgs.axiosOptions, url: (basePath || configuration?.nermBasePath) + axiosArgs.url, headers};\n return axios.request<T, R>(axiosRequestArgs).catch((error: any) => {\n if (error?.isAxiosError === true) {\n const clean: any = new Error(error.message ?? 'API request failed');\n clean.name = 'ApiError';\n clean.stack = error.stack;\n clean.code = error.code;\n if (error.response) {\n clean.status = error.response.status;\n clean.statusText = error.response.statusText;\n clean.data = error.response.data;\n }\n throw clean;\n }\n throw error;\n });\n };\n}\n"]}
|
|
1
|
+
{"version":3,"file":"common.js","sourceRoot":"","sources":["../../nermv2025/common.ts"],"names":[],"mappings":"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","sourcesContent":["/* tslint:disable */\n/* eslint-disable */\n/**\n * NERM API v2025\n * The NERM API v2025 accesss and modifies resources in your environment.\n *\n * The version of the OpenAPI document: 1.0.0\n * \n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n\nimport type { Configuration } from \"../configuration\";\nimport type { RequestArgs } from \"./base\";\nimport type { AxiosInstance, AxiosResponse } from 'axios';\nimport { RequiredError } from \"./base\";\n\n/**\n *\n * @export\n */\nexport const DUMMY_BASE_URL = 'https://example.com'\n\n/**\n *\n * @throws {RequiredError}\n * @export\n */\nexport const assertParamExists = function (functionName: string, paramName: string, paramValue: unknown) {\n if (paramValue === null || paramValue === undefined) {\n throw new RequiredError(paramName, `Required parameter ${paramName} was null or undefined when calling ${functionName}.`);\n }\n}\n\n/**\n *\n * @export\n */\nexport const setApiKeyToObject = async function (object: any, keyParamName: string, configuration?: Configuration) {\n if (configuration && configuration.apiKey) {\n const localVarApiKeyValue = typeof configuration.apiKey === 'function'\n ? await configuration.apiKey(keyParamName)\n : await configuration.apiKey;\n object[keyParamName] = localVarApiKeyValue;\n }\n}\n\n/**\n *\n * @export\n */\nexport const setBasicAuthToObject = function (object: any, configuration?: Configuration) {\n if (configuration && (configuration.username || configuration.password)) {\n object[\"auth\"] = { username: configuration.username, password: configuration.password };\n }\n}\n\n/**\n *\n * @export\n */\nexport const setBearerAuthToObject = async function (object: any, configuration?: Configuration) {\n if (configuration && configuration.accessToken) {\n const accessToken = typeof configuration.accessToken === 'function'\n ? await configuration.accessToken()\n : await configuration.accessToken;\n object[\"Authorization\"] = \"Bearer \" + accessToken;\n }\n}\n\n/**\n *\n * @export\n */\nexport const setOAuthToObject = async function (object: any, name: string, scopes: string[], configuration?: Configuration) {\n if (configuration && configuration.accessToken) {\n const localVarAccessTokenValue = typeof configuration.accessToken === 'function'\n ? await configuration.accessToken(name, scopes)\n : await configuration.accessToken;\n object[\"Authorization\"] = \"Bearer \" + localVarAccessTokenValue;\n }\n}\n\nfunction setFlattenedQueryParams(urlSearchParams: URLSearchParams, parameter: any, key: string = \"\"): void {\n if (parameter == null) return;\n if (typeof parameter === \"object\") {\n if (Array.isArray(parameter)) {\n (parameter as any[]).forEach(item => setFlattenedQueryParams(urlSearchParams, item, key));\n } \n else {\n Object.keys(parameter).forEach(currentKey => \n setFlattenedQueryParams(urlSearchParams, parameter[currentKey], `${key}${key !== '' ? '.' : ''}${currentKey}`)\n );\n }\n } \n else {\n if (urlSearchParams.has(key)) {\n urlSearchParams.append(key, parameter);\n } \n else {\n urlSearchParams.set(key, parameter);\n }\n }\n}\n\n/**\n *\n * @export\n */\nexport const setSearchParams = function (url: URL, ...objects: any[]) {\n const searchParams = new URLSearchParams(url.search);\n setFlattenedQueryParams(searchParams, objects);\n url.search = searchParams.toString();\n}\n\n/**\n *\n * @export\n */\nexport const serializeDataIfNeeded = function (value: any, requestOptions: any, configuration?: Configuration) {\n const nonString = typeof value !== 'string';\n const needsSerialization = nonString && configuration && configuration.isJsonMime\n ? configuration.isJsonMime(requestOptions.headers['Content-Type'])\n : nonString;\n return needsSerialization\n ? JSON.stringify(value !== undefined ? value : {})\n : (value || \"\");\n}\n\n/**\n *\n * @export\n */\nexport const toPathString = function (url: URL) {\n return url.pathname + url.search + url.hash\n}\n\n/**\n *\n * @export\n */\nexport const createRequestFunction = function (axiosArgs: RequestArgs, globalAxios: AxiosInstance, BASE_PATH: string, configuration?: Configuration) {\n return async <T = unknown, R = AxiosResponse<T>>(axios: AxiosInstance = globalAxios, basePath: string = BASE_PATH) => {\n const headers: Record<string, any> = {\n ...{'Accept': 'application/json'},\n ...axiosArgs.axiosOptions.headers,\n }\n\n // Node-only headers. Browsers reject a User-Agent override, and a custom\n // header such as X-SailPoint-SDK forces a CORS preflight that tenants do\n // not allow, which blocks the request outright.\n if (typeof process !== 'undefined' && process.versions?.node) {\n headers['X-SailPoint-SDK'] = 'typescript-2.2.21';\n let userAgent = `SailPoint-SDK-TypeScript/2.2.21`;\n if (configuration?.consumerIdentifier && configuration?.consumerVersion) {\n userAgent += ` (${configuration.consumerIdentifier}/${configuration.consumerVersion})`;\n }\n userAgent += ` (${process.platform}; ${process.arch}) Node/${process.versions.node} (openapi-generator/7.12.0)`;\n headers['User-Agent'] = userAgent;\n }\n\n if(!configuration.experimental && (\"X-SailPoint-Experimental\" in headers)) {\n throw new Error(\"You are using Experimental APIs. Set configuration.experimental = True to enable these APIs in the SDK.\")\n } else if(configuration.experimental == true && (\"X-SailPoint-Experimental\" in headers)) {\n console.log(\"Warning: You are using Experimental APIs\")\n }\n\n await setBearerAuthToObject(headers, configuration);\n\n const axiosRequestArgs = {...axiosArgs.axiosOptions, url: (basePath || configuration?.nermBasePath) + axiosArgs.url, headers};\n return axios.request<T, R>(axiosRequestArgs).catch((error: any) => {\n if (error?.isAxiosError === true) {\n const clean: any = new Error(error.message ?? 'API request failed');\n clean.name = 'ApiError';\n clean.stack = error.stack;\n clean.code = error.code;\n if (error.response) {\n clean.status = error.response.status;\n clean.statusText = error.response.statusText;\n clean.data = error.response.data;\n }\n throw clean;\n }\n throw error;\n });\n };\n}\n"]}
|
|
@@ -494,10 +494,11 @@ export declare const WorkReassignmentApiAxiosParamCreator: (configuration?: Conf
|
|
|
494
494
|
* @param {number} [limit] Max number of results to return.
|
|
495
495
|
* @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.
|
|
496
496
|
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
497
|
+
* @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.
|
|
497
498
|
* @param {*} [axiosOptions] Override http request option.
|
|
498
499
|
* @throws {RequiredError}
|
|
499
500
|
*/
|
|
500
|
-
listReassignmentConfigurationsV1: (limit?: number, offset?: number, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
501
|
+
listReassignmentConfigurationsV1: (limit?: number, offset?: number, xSailPointExperimental?: string, count?: boolean, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
501
502
|
/**
|
|
502
503
|
* Replaces existing Reassignment configuration for an identity with the newly provided configuration.
|
|
503
504
|
* @summary Update reassignment configuration
|
|
@@ -584,10 +585,11 @@ export declare const WorkReassignmentApiFp: (configuration?: Configuration) => {
|
|
|
584
585
|
* @param {number} [limit] Max number of results to return.
|
|
585
586
|
* @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.
|
|
586
587
|
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
588
|
+
* @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.
|
|
587
589
|
* @param {*} [axiosOptions] Override http request option.
|
|
588
590
|
* @throws {RequiredError}
|
|
589
591
|
*/
|
|
590
|
-
listReassignmentConfigurationsV1(limit?: number, offset?: number, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<ConfigurationResponse>>>;
|
|
592
|
+
listReassignmentConfigurationsV1(limit?: number, offset?: number, xSailPointExperimental?: string, count?: boolean, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<ConfigurationResponse>>>;
|
|
591
593
|
/**
|
|
592
594
|
* Replaces existing Reassignment configuration for an identity with the newly provided configuration.
|
|
593
595
|
* @summary Update reassignment configuration
|
|
@@ -830,6 +832,12 @@ export interface WorkReassignmentApiListReassignmentConfigurationsV1Request {
|
|
|
830
832
|
* @memberof WorkReassignmentApiListReassignmentConfigurationsV1
|
|
831
833
|
*/
|
|
832
834
|
readonly xSailPointExperimental?: string;
|
|
835
|
+
/**
|
|
836
|
+
* 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.
|
|
837
|
+
* @type {boolean}
|
|
838
|
+
* @memberof WorkReassignmentApiListReassignmentConfigurationsV1
|
|
839
|
+
*/
|
|
840
|
+
readonly count?: boolean;
|
|
833
841
|
}
|
|
834
842
|
/**
|
|
835
843
|
* Request parameters for putReassignmentConfigV1 operation in WorkReassignmentApi.
|
|
@@ -384,10 +384,11 @@ var WorkReassignmentApiAxiosParamCreator = function (configuration) {
|
|
|
384
384
|
* @param {number} [limit] Max number of results to return.
|
|
385
385
|
* @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.
|
|
386
386
|
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
387
|
+
* @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.
|
|
387
388
|
* @param {*} [axiosOptions] Override http request option.
|
|
388
389
|
* @throws {RequiredError}
|
|
389
390
|
*/
|
|
390
|
-
listReassignmentConfigurationsV1: function (limit, offset, xSailPointExperimental, axiosOptions) {
|
|
391
|
+
listReassignmentConfigurationsV1: function (limit, offset, xSailPointExperimental, count, axiosOptions) {
|
|
391
392
|
if (axiosOptions === void 0) { axiosOptions = {}; }
|
|
392
393
|
return __awaiter(_this, void 0, void 0, function () {
|
|
393
394
|
var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
@@ -409,6 +410,9 @@ var WorkReassignmentApiAxiosParamCreator = function (configuration) {
|
|
|
409
410
|
if (offset !== undefined) {
|
|
410
411
|
localVarQueryParameter['offset'] = offset;
|
|
411
412
|
}
|
|
413
|
+
if (count !== undefined) {
|
|
414
|
+
localVarQueryParameter['count'] = count;
|
|
415
|
+
}
|
|
412
416
|
if (xSailPointExperimental != null) {
|
|
413
417
|
localVarHeaderParameter['X-SailPoint-Experimental'] = String(xSailPointExperimental);
|
|
414
418
|
}
|
|
@@ -669,16 +673,17 @@ var WorkReassignmentApiFp = function (configuration) {
|
|
|
669
673
|
* @param {number} [limit] Max number of results to return.
|
|
670
674
|
* @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.
|
|
671
675
|
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
676
|
+
* @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.
|
|
672
677
|
* @param {*} [axiosOptions] Override http request option.
|
|
673
678
|
* @throws {RequiredError}
|
|
674
679
|
*/
|
|
675
|
-
listReassignmentConfigurationsV1: function (limit, offset, xSailPointExperimental, axiosOptions) {
|
|
680
|
+
listReassignmentConfigurationsV1: function (limit, offset, xSailPointExperimental, count, axiosOptions) {
|
|
676
681
|
var _a, _b, _c;
|
|
677
682
|
return __awaiter(this, void 0, void 0, function () {
|
|
678
683
|
var localVarAxiosArgs, localVarOperationServerIndex, localVarOperationServerBasePath;
|
|
679
684
|
return __generator(this, function (_d) {
|
|
680
685
|
switch (_d.label) {
|
|
681
|
-
case 0: return [4 /*yield*/, localVarAxiosParamCreator.listReassignmentConfigurationsV1(limit, offset, xSailPointExperimental, axiosOptions)];
|
|
686
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.listReassignmentConfigurationsV1(limit, offset, xSailPointExperimental, count, axiosOptions)];
|
|
682
687
|
case 1:
|
|
683
688
|
localVarAxiosArgs = _d.sent();
|
|
684
689
|
localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
@@ -818,7 +823,7 @@ var WorkReassignmentApiFactory = function (configuration, basePath, axios) {
|
|
|
818
823
|
*/
|
|
819
824
|
listReassignmentConfigurationsV1: function (requestParameters, axiosOptions) {
|
|
820
825
|
if (requestParameters === void 0) { requestParameters = {}; }
|
|
821
|
-
return localVarFp.listReassignmentConfigurationsV1(requestParameters.limit, requestParameters.offset, requestParameters.xSailPointExperimental, axiosOptions).then(function (request) { return request(axios, basePath); });
|
|
826
|
+
return localVarFp.listReassignmentConfigurationsV1(requestParameters.limit, requestParameters.offset, requestParameters.xSailPointExperimental, requestParameters.count, axiosOptions).then(function (request) { return request(axios, basePath); });
|
|
822
827
|
},
|
|
823
828
|
/**
|
|
824
829
|
* Replaces existing Reassignment configuration for an identity with the newly provided configuration.
|
|
@@ -939,7 +944,7 @@ var WorkReassignmentApi = /** @class */ (function (_super) {
|
|
|
939
944
|
WorkReassignmentApi.prototype.listReassignmentConfigurationsV1 = function (requestParameters, axiosOptions) {
|
|
940
945
|
var _this = this;
|
|
941
946
|
if (requestParameters === void 0) { requestParameters = {}; }
|
|
942
|
-
return (0, exports.WorkReassignmentApiFp)(this.configuration).listReassignmentConfigurationsV1(requestParameters.limit, requestParameters.offset, requestParameters.xSailPointExperimental, axiosOptions).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
947
|
+
return (0, exports.WorkReassignmentApiFp)(this.configuration).listReassignmentConfigurationsV1(requestParameters.limit, requestParameters.offset, requestParameters.xSailPointExperimental, requestParameters.count, axiosOptions).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
943
948
|
};
|
|
944
949
|
/**
|
|
945
950
|
* Replaces existing Reassignment configuration for an identity with the newly provided configuration.
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"api.js","sourceRoot":"","sources":["../../work_reassignment/api.ts"],"names":[],"mappings":"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","sourcesContent":["/* tslint:disable */\n/* eslint-disable */\n/**\n * Identity Security Cloud API - Work Reassignment\n * Use these APIs to interact with the Identity Security Cloud platform to achieve repeatable, automated processes with greater scalability. We encourage you to join the SailPoint Developer Community forum at https://developer.sailpoint.com/discuss to connect with other developers using our APIs.\n *\n * The version of the OpenAPI document: v1\n * \n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n\nimport type { Configuration } from '../configuration';\nimport type { AxiosPromise, AxiosInstance, RawAxiosRequestConfig } from 'axios';\nimport globalAxios from 'axios';\n// Some imports not used depending on template conditions\n// @ts-ignore\nimport { DUMMY_BASE_URL, assertParamExists, setApiKeyToObject, setBasicAuthToObject, setBearerAuthToObject, setOAuthToObject, setSearchParams, serializeDataIfNeeded, toPathString, createRequestFunction } from './common';\nimport type { RequestArgs } from './base';\n// @ts-ignore\nimport { BASE_PATH, COLLECTION_FORMATS, BaseAPI, RequiredError, operationServerMap } from './base';\n\n/**\n * Audit details for the reassignment configuration of an identity\n * @export\n * @interface AuditDetails\n */\nexport interface AuditDetails {\n /**\n * Initial date and time when the record was created\n * @type {string}\n * @memberof AuditDetails\n */\n 'created'?: string;\n /**\n * \n * @type {Identity2}\n * @memberof AuditDetails\n */\n 'createdBy'?: Identity2;\n /**\n * Last modified date and time for the record\n * @type {string}\n * @memberof AuditDetails\n */\n 'modified'?: string;\n /**\n * \n * @type {Identity2}\n * @memberof AuditDetails\n */\n 'modifiedBy'?: Identity2;\n}\n/**\n * Type of Reassignment Configuration.\n * @export\n * @interface ConfigType\n */\nexport interface ConfigType {\n /**\n * \n * @type {number}\n * @memberof ConfigType\n */\n 'priority'?: number;\n /**\n * \n * @type {ConfigTypeEnumCamel}\n * @memberof ConfigType\n */\n 'internalName'?: ConfigTypeEnumCamel;\n /**\n * \n * @type {ConfigTypeEnum}\n * @memberof ConfigType\n */\n 'internalNameCamel'?: ConfigTypeEnum;\n /**\n * Human readable display name of the type to be shown on UI\n * @type {string}\n * @memberof ConfigType\n */\n 'displayName'?: string;\n /**\n * Description of the type of work to be reassigned, displayed by the UI.\n * @type {string}\n * @memberof ConfigType\n */\n 'description'?: string;\n}\n\n\n/**\n * Enum list of valid work types that can be selected for a Reassignment Configuration\n * @export\n * @enum {string}\n */\n\nexport const ConfigTypeEnum = {\n AccessRequests: 'ACCESS_REQUESTS',\n Certifications: 'CERTIFICATIONS',\n ManualTasks: 'MANUAL_TASKS',\n GenericApprovals: 'GENERIC_APPROVALS'\n} as const;\n\nexport type ConfigTypeEnum = typeof ConfigTypeEnum[keyof typeof ConfigTypeEnum];\n\n\n/**\n * Enum list of valid work types that can be selected for a Reassignment Configuration\n * @export\n * @enum {string}\n */\n\nexport const ConfigTypeEnumCamel = {\n AccessRequests: 'accessRequests',\n Certifications: 'certifications',\n ManualTasks: 'manualTasks'\n} as const;\n\nexport type ConfigTypeEnumCamel = typeof ConfigTypeEnumCamel[keyof typeof ConfigTypeEnumCamel];\n\n\n/**\n * The request body of Reassignment Configuration Details for a specific identity and config type\n * @export\n * @interface ConfigurationDetailsResponse\n */\nexport interface ConfigurationDetailsResponse {\n /**\n * \n * @type {ConfigTypeEnum}\n * @memberof ConfigurationDetailsResponse\n */\n 'configType'?: ConfigTypeEnum;\n /**\n * \n * @type {Identity2}\n * @memberof ConfigurationDetailsResponse\n */\n 'targetIdentity'?: Identity2;\n /**\n * The date from which to start reassigning work items\n * @type {string}\n * @memberof ConfigurationDetailsResponse\n */\n 'startDate'?: string;\n /**\n * The date from which to stop reassigning work items. If this is an empty string it indicates a permanent reassignment.\n * @type {string}\n * @memberof ConfigurationDetailsResponse\n */\n 'endDate'?: string;\n /**\n * \n * @type {AuditDetails}\n * @memberof ConfigurationDetailsResponse\n */\n 'auditDetails'?: AuditDetails;\n}\n\n\n/**\n * The request body for creation or update of a Reassignment Configuration for a single identity and work type\n * @export\n * @interface ConfigurationItemRequest\n */\nexport interface ConfigurationItemRequest {\n /**\n * The identity id to reassign an item from\n * @type {string}\n * @memberof ConfigurationItemRequest\n */\n 'reassignedFromId'?: string;\n /**\n * The identity id to reassign an item to\n * @type {string}\n * @memberof ConfigurationItemRequest\n */\n 'reassignedToId'?: string;\n /**\n * \n * @type {ConfigTypeEnum}\n * @memberof ConfigurationItemRequest\n */\n 'configType'?: ConfigTypeEnum;\n /**\n * The date from which to start reassigning work items\n * @type {string}\n * @memberof ConfigurationItemRequest\n */\n 'startDate'?: string;\n /**\n * The date from which to stop reassigning work items. If this is an null string it indicates a permanent reassignment.\n * @type {string}\n * @memberof ConfigurationItemRequest\n */\n 'endDate'?: string | null;\n}\n\n\n/**\n * The response body of a Reassignment Configuration for a single identity\n * @export\n * @interface ConfigurationItemResponse\n */\nexport interface ConfigurationItemResponse {\n /**\n * \n * @type {Identity2}\n * @memberof ConfigurationItemResponse\n */\n 'identity'?: Identity2;\n /**\n * Details of how work should be reassigned for an Identity\n * @type {Array<ConfigurationDetailsResponse>}\n * @memberof ConfigurationItemResponse\n */\n 'configDetails'?: Array<ConfigurationDetailsResponse>;\n}\n/**\n * The response body of a Reassignment Configuration for a single identity\n * @export\n * @interface ConfigurationResponse\n */\nexport interface ConfigurationResponse {\n /**\n * \n * @type {Identity2}\n * @memberof ConfigurationResponse\n */\n 'identity'?: Identity2;\n /**\n * Details of how work should be reassigned for an Identity\n * @type {Array<ConfigurationDetailsResponse>}\n * @memberof ConfigurationResponse\n */\n 'configDetails'?: Array<ConfigurationDetailsResponse>;\n}\n/**\n * \n * @export\n * @interface ErrorMessageDto\n */\nexport interface ErrorMessageDto {\n /**\n * The locale for the message text, a BCP 47 language tag.\n * @type {string}\n * @memberof ErrorMessageDto\n */\n 'locale'?: string | null;\n /**\n * \n * @type {LocaleOrigin}\n * @memberof ErrorMessageDto\n */\n 'localeOrigin'?: LocaleOrigin | null;\n /**\n * Actual text of the error message in the indicated locale.\n * @type {string}\n * @memberof ErrorMessageDto\n */\n 'text'?: string;\n}\n\n\n/**\n * \n * @export\n * @interface ErrorResponseDto\n */\nexport interface ErrorResponseDto {\n /**\n * Fine-grained error code providing more detail of the error.\n * @type {string}\n * @memberof ErrorResponseDto\n */\n 'detailCode'?: string;\n /**\n * Unique tracking id for the error.\n * @type {string}\n * @memberof ErrorResponseDto\n */\n 'trackingId'?: string;\n /**\n * Generic localized reason for error\n * @type {Array<ErrorMessageDto>}\n * @memberof ErrorResponseDto\n */\n 'messages'?: Array<ErrorMessageDto>;\n /**\n * Plain-text descriptive reasons to provide additional detail to the text provided in the messages field\n * @type {Array<ErrorMessageDto>}\n * @memberof ErrorResponseDto\n */\n 'causes'?: Array<ErrorMessageDto>;\n}\n/**\n * The response body for Evaluate Reassignment Configuration\n * @export\n * @interface EvaluateResponse\n */\nexport interface EvaluateResponse {\n /**\n * The Identity ID which should be the recipient of any work items sent to a specific identity & work type\n * @type {string}\n * @memberof EvaluateResponse\n */\n 'reassignToId'?: string;\n /**\n * List of Reassignments found by looking up the next `TargetIdentity` in a ReassignmentConfiguration\n * @type {Array<LookupStep>}\n * @memberof EvaluateResponse\n */\n 'lookupTrail'?: Array<LookupStep>;\n}\n/**\n * \n * @export\n * @interface GetReassignmentConfigTypesV1401Response\n */\nexport interface GetReassignmentConfigTypesV1401Response {\n /**\n * A message describing the error\n * @type {any}\n * @memberof GetReassignmentConfigTypesV1401Response\n */\n 'error'?: any;\n}\n/**\n * \n * @export\n * @interface GetReassignmentConfigTypesV1429Response\n */\nexport interface GetReassignmentConfigTypesV1429Response {\n /**\n * A message describing the error\n * @type {any}\n * @memberof GetReassignmentConfigTypesV1429Response\n */\n 'message'?: any;\n}\n/**\n * The definition of an Identity according to the Reassignment Configuration service\n * @export\n * @interface Identity2\n */\nexport interface Identity2 {\n /**\n * The ID of the object\n * @type {string}\n * @memberof Identity2\n */\n 'id'?: string;\n /**\n * Human-readable display name of the object\n * @type {string}\n * @memberof Identity2\n */\n 'name'?: string;\n}\n/**\n * An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.\n * @export\n * @enum {string}\n */\n\nexport const LocaleOrigin = {\n Default: 'DEFAULT',\n Request: 'REQUEST'\n} as const;\n\nexport type LocaleOrigin = typeof LocaleOrigin[keyof typeof LocaleOrigin];\n\n\n/**\n * The definition of an Identity according to the Reassignment Configuration service\n * @export\n * @interface LookupStep\n */\nexport interface LookupStep {\n /**\n * The ID of the Identity who work is reassigned to\n * @type {string}\n * @memberof LookupStep\n */\n 'reassignedToId'?: string;\n /**\n * The ID of the Identity who work is reassigned from\n * @type {string}\n * @memberof LookupStep\n */\n 'reassignedFromId'?: string;\n /**\n * \n * @type {ReassignmentTypeEnum}\n * @memberof LookupStep\n */\n 'reassignmentType'?: ReassignmentTypeEnum;\n}\n\n\n/**\n * Enum list containing types of Reassignment that can be found in the evaluate response.\n * @export\n * @enum {string}\n */\n\nexport const ReassignmentTypeEnum = {\n ManualReassignment: 'MANUAL_REASSIGNMENT,',\n AutomaticReassignment: 'AUTOMATIC_REASSIGNMENT,',\n AutoEscalation: 'AUTO_ESCALATION,',\n SelfReviewDelegation: 'SELF_REVIEW_DELEGATION'\n} as const;\n\nexport type ReassignmentTypeEnum = typeof ReassignmentTypeEnum[keyof typeof ReassignmentTypeEnum];\n\n\n/**\n * Details of any tenant-wide Reassignment Configurations (eg. enabled/disabled)\n * @export\n * @interface TenantConfigurationDetails\n */\nexport interface TenantConfigurationDetails {\n /**\n * Flag to determine if Reassignment Configuration is enabled or disabled for a tenant. When this flag is set to true, Reassignment Configuration is disabled.\n * @type {boolean}\n * @memberof TenantConfigurationDetails\n */\n 'disabled'?: boolean | null;\n}\n/**\n * Tenant-wide Reassignment Configuration settings\n * @export\n * @interface TenantConfigurationRequest\n */\nexport interface TenantConfigurationRequest {\n /**\n * \n * @type {TenantConfigurationDetails}\n * @memberof TenantConfigurationRequest\n */\n 'configDetails'?: TenantConfigurationDetails;\n}\n/**\n * Tenant-wide Reassignment Configuration settings\n * @export\n * @interface TenantConfigurationResponse\n */\nexport interface TenantConfigurationResponse {\n /**\n * \n * @type {AuditDetails}\n * @memberof TenantConfigurationResponse\n */\n 'auditDetails'?: AuditDetails;\n /**\n * \n * @type {TenantConfigurationDetails}\n * @memberof TenantConfigurationResponse\n */\n 'configDetails'?: TenantConfigurationDetails;\n}\n\n/**\n * WorkReassignmentApi - axios parameter creator\n * @export\n */\nexport const WorkReassignmentApiAxiosParamCreator = function (configuration?: Configuration) {\n return {\n /**\n * Creates a new Reassignment Configuration for the specified identity.\n * @summary Create a reassignment configuration\n * @param {ConfigurationItemRequest} configurationItemRequest \n * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.\n * @param {*} [axiosOptions] Override http request option.\n * @throws {RequiredError}\n */\n createReassignmentConfigurationV1: async (configurationItemRequest: ConfigurationItemRequest, xSailPointExperimental?: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {\n // verify required parameter 'configurationItemRequest' is not null or undefined\n assertParamExists('createReassignmentConfigurationV1', 'configurationItemRequest', configurationItemRequest)\n if (xSailPointExperimental === undefined) {\n xSailPointExperimental = 'true';\n }\n \n const localVarPath = `/reassignment-configurations/v1`;\n // use dummy base URL string because the URL constructor only accepts absolute URLs.\n const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);\n let baseOptions;\n if (configuration) {\n baseOptions = configuration.baseOptions;\n }\n\n const localVarRequestOptions = { method: 'POST', ...baseOptions, ...axiosOptions};\n const localVarHeaderParameter = {} as any;\n const localVarQueryParameter = {} as any;\n\n\n \n localVarHeaderParameter['Content-Type'] = 'application/json';\n\n if (xSailPointExperimental != null) {\n localVarHeaderParameter['X-SailPoint-Experimental'] = String(xSailPointExperimental);\n }\n setSearchParams(localVarUrlObj, localVarQueryParameter);\n let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};\n localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};\n localVarRequestOptions.data = serializeDataIfNeeded(configurationItemRequest, localVarRequestOptions, configuration)\n\n return {\n url: toPathString(localVarUrlObj),\n axiosOptions: localVarRequestOptions,\n };\n },\n /**\n * Deletes a single reassignment configuration for the specified identity\n * @summary Delete reassignment configuration\n * @param {string} identityId unique identity id\n * @param {ConfigTypeEnum} configType \n * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.\n * @param {*} [axiosOptions] Override http request option.\n * @throws {RequiredError}\n */\n deleteReassignmentConfigurationV1: async (identityId: string, configType: ConfigTypeEnum, xSailPointExperimental?: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {\n // verify required parameter 'identityId' is not null or undefined\n assertParamExists('deleteReassignmentConfigurationV1', 'identityId', identityId)\n // verify required parameter 'configType' is not null or undefined\n assertParamExists('deleteReassignmentConfigurationV1', 'configType', configType)\n if (xSailPointExperimental === undefined) {\n xSailPointExperimental = 'true';\n }\n \n const localVarPath = `/reassignment-configurations/v1/{identityId}/{configType}`\n .replace(`{${\"identityId\"}}`, encodeURIComponent(String(identityId)))\n .replace(`{${\"configType\"}}`, encodeURIComponent(String(configType)));\n // use dummy base URL string because the URL constructor only accepts absolute URLs.\n const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);\n let baseOptions;\n if (configuration) {\n baseOptions = configuration.baseOptions;\n }\n\n const localVarRequestOptions = { method: 'DELETE', ...baseOptions, ...axiosOptions};\n const localVarHeaderParameter = {} as any;\n const localVarQueryParameter = {} as any;\n\n\n \n if (xSailPointExperimental != null) {\n localVarHeaderParameter['X-SailPoint-Experimental'] = String(xSailPointExperimental);\n }\n setSearchParams(localVarUrlObj, localVarQueryParameter);\n let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};\n localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};\n\n return {\n url: toPathString(localVarUrlObj),\n axiosOptions: localVarRequestOptions,\n };\n },\n /**\n * Evaluates the Reassignment Configuration for an `Identity` to determine if work items for the specified type should be reassigned. If a valid Reassignment Configuration is found for the identity & work type, then a lookup is initiated which recursively fetches the Reassignment Configuration for the next `TargetIdentity` until no more results are found or a max depth of 5. That lookup trail is provided in the response and the final reassigned identity in the lookup list is returned as the `reassignToId` property. If no Reassignment Configuration is found for the specified identity & config type then the requested Identity ID will be used as the `reassignToId` value and the lookupTrail node will be empty.\n * @summary Evaluate reassignment configuration\n * @param {string} identityId unique identity id\n * @param {ConfigTypeEnum} configType Reassignment work type\n * @param {Array<string>} [exclusionFilters] Exclusion filters that disable parts of the reassignment evaluation. Possible values are listed below: - `SELF_REVIEW_DELEGATION`: This will exclude delegations of self-review reassignments\n * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.\n * @param {*} [axiosOptions] Override http request option.\n * @throws {RequiredError}\n */\n getEvaluateReassignmentConfigurationV1: async (identityId: string, configType: ConfigTypeEnum, exclusionFilters?: Array<string>, xSailPointExperimental?: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {\n // verify required parameter 'identityId' is not null or undefined\n assertParamExists('getEvaluateReassignmentConfigurationV1', 'identityId', identityId)\n // verify required parameter 'configType' is not null or undefined\n assertParamExists('getEvaluateReassignmentConfigurationV1', 'configType', configType)\n if (xSailPointExperimental === undefined) {\n xSailPointExperimental = 'true';\n }\n \n const localVarPath = `/reassignment-configurations/v1/{identityId}/evaluate/{configType}`\n .replace(`{${\"identityId\"}}`, encodeURIComponent(String(identityId)))\n .replace(`{${\"configType\"}}`, encodeURIComponent(String(configType)));\n // use dummy base URL string because the URL constructor only accepts absolute URLs.\n const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);\n let baseOptions;\n if (configuration) {\n baseOptions = configuration.baseOptions;\n }\n\n const localVarRequestOptions = { method: 'GET', ...baseOptions, ...axiosOptions};\n const localVarHeaderParameter = {} as any;\n const localVarQueryParameter = {} as any;\n\n if (exclusionFilters) {\n localVarQueryParameter['exclusionFilters'] = exclusionFilters;\n }\n\n\n \n if (xSailPointExperimental != null) {\n localVarHeaderParameter['X-SailPoint-Experimental'] = String(xSailPointExperimental);\n }\n setSearchParams(localVarUrlObj, localVarQueryParameter);\n let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};\n localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};\n\n return {\n url: toPathString(localVarUrlObj),\n axiosOptions: localVarRequestOptions,\n };\n },\n /**\n * Gets a collection of types which are available in the Reassignment Configuration UI.\n * @summary List reassignment config types\n * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.\n * @param {*} [axiosOptions] Override http request option.\n * @throws {RequiredError}\n */\n getReassignmentConfigTypesV1: async (xSailPointExperimental?: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {\n if (xSailPointExperimental === undefined) {\n xSailPointExperimental = 'true';\n }\n \n const localVarPath = `/reassignment-configurations/v1/types`;\n // use dummy base URL string because the URL constructor only accepts absolute URLs.\n const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);\n let baseOptions;\n if (configuration) {\n baseOptions = configuration.baseOptions;\n }\n\n const localVarRequestOptions = { method: 'GET', ...baseOptions, ...axiosOptions};\n const localVarHeaderParameter = {} as any;\n const localVarQueryParameter = {} as any;\n\n\n \n if (xSailPointExperimental != null) {\n localVarHeaderParameter['X-SailPoint-Experimental'] = String(xSailPointExperimental);\n }\n setSearchParams(localVarUrlObj, localVarQueryParameter);\n let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};\n localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};\n\n return {\n url: toPathString(localVarUrlObj),\n axiosOptions: localVarRequestOptions,\n };\n },\n /**\n * Gets the Reassignment Configuration for an identity.\n * @summary Get reassignment configuration\n * @param {string} identityId unique identity id\n * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.\n * @param {*} [axiosOptions] Override http request option.\n * @throws {RequiredError}\n */\n getReassignmentConfigurationV1: async (identityId: string, xSailPointExperimental?: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {\n // verify required parameter 'identityId' is not null or undefined\n assertParamExists('getReassignmentConfigurationV1', 'identityId', identityId)\n if (xSailPointExperimental === undefined) {\n xSailPointExperimental = 'true';\n }\n \n const localVarPath = `/reassignment-configurations/v1/{identityId}`\n .replace(`{${\"identityId\"}}`, encodeURIComponent(String(identityId)));\n // use dummy base URL string because the URL constructor only accepts absolute URLs.\n const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);\n let baseOptions;\n if (configuration) {\n baseOptions = configuration.baseOptions;\n }\n\n const localVarRequestOptions = { method: 'GET', ...baseOptions, ...axiosOptions};\n const localVarHeaderParameter = {} as any;\n const localVarQueryParameter = {} as any;\n\n\n \n if (xSailPointExperimental != null) {\n localVarHeaderParameter['X-SailPoint-Experimental'] = String(xSailPointExperimental);\n }\n setSearchParams(localVarUrlObj, localVarQueryParameter);\n let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};\n localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};\n\n return {\n url: toPathString(localVarUrlObj),\n axiosOptions: localVarRequestOptions,\n };\n },\n /**\n * Gets the global Reassignment Configuration settings for the requestor\\'s tenant.\n * @summary Get tenant-wide reassignment configuration settings\n * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.\n * @param {*} [axiosOptions] Override http request option.\n * @throws {RequiredError}\n */\n getTenantConfigConfigurationV1: async (xSailPointExperimental?: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {\n if (xSailPointExperimental === undefined) {\n xSailPointExperimental = 'true';\n }\n \n const localVarPath = `/reassignment-configurations/v1/tenant-config`;\n // use dummy base URL string because the URL constructor only accepts absolute URLs.\n const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);\n let baseOptions;\n if (configuration) {\n baseOptions = configuration.baseOptions;\n }\n\n const localVarRequestOptions = { method: 'GET', ...baseOptions, ...axiosOptions};\n const localVarHeaderParameter = {} as any;\n const localVarQueryParameter = {} as any;\n\n\n \n if (xSailPointExperimental != null) {\n localVarHeaderParameter['X-SailPoint-Experimental'] = String(xSailPointExperimental);\n }\n setSearchParams(localVarUrlObj, localVarQueryParameter);\n let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};\n localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};\n\n return {\n url: toPathString(localVarUrlObj),\n axiosOptions: localVarRequestOptions,\n };\n },\n /**\n * Gets a paginated list of Reassignment configurations for the current org.\n * @summary List reassignment configurations\n * @param {number} [limit] Max number of results to return.\n * @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.\n * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.\n * @param {*} [axiosOptions] Override http request option.\n * @throws {RequiredError}\n */\n listReassignmentConfigurationsV1: async (limit?: number, offset?: number, xSailPointExperimental?: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {\n if (xSailPointExperimental === undefined) {\n xSailPointExperimental = 'true';\n }\n \n const localVarPath = `/reassignment-configurations/v1`;\n // use dummy base URL string because the URL constructor only accepts absolute URLs.\n const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);\n let baseOptions;\n if (configuration) {\n baseOptions = configuration.baseOptions;\n }\n\n const localVarRequestOptions = { method: 'GET', ...baseOptions, ...axiosOptions};\n const localVarHeaderParameter = {} as any;\n const localVarQueryParameter = {} as any;\n\n if (limit !== undefined) {\n localVarQueryParameter['limit'] = limit;\n }\n\n if (offset !== undefined) {\n localVarQueryParameter['offset'] = offset;\n }\n\n\n \n if (xSailPointExperimental != null) {\n localVarHeaderParameter['X-SailPoint-Experimental'] = String(xSailPointExperimental);\n }\n setSearchParams(localVarUrlObj, localVarQueryParameter);\n let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};\n localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};\n\n return {\n url: toPathString(localVarUrlObj),\n axiosOptions: localVarRequestOptions,\n };\n },\n /**\n * Replaces existing Reassignment configuration for an identity with the newly provided configuration.\n * @summary Update reassignment configuration\n * @param {string} identityId unique identity id\n * @param {ConfigurationItemRequest} configurationItemRequest \n * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.\n * @param {*} [axiosOptions] Override http request option.\n * @throws {RequiredError}\n */\n putReassignmentConfigV1: async (identityId: string, configurationItemRequest: ConfigurationItemRequest, xSailPointExperimental?: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {\n // verify required parameter 'identityId' is not null or undefined\n assertParamExists('putReassignmentConfigV1', 'identityId', identityId)\n // verify required parameter 'configurationItemRequest' is not null or undefined\n assertParamExists('putReassignmentConfigV1', 'configurationItemRequest', configurationItemRequest)\n if (xSailPointExperimental === undefined) {\n xSailPointExperimental = 'true';\n }\n \n const localVarPath = `/reassignment-configurations/v1/{identityId}`\n .replace(`{${\"identityId\"}}`, encodeURIComponent(String(identityId)));\n // use dummy base URL string because the URL constructor only accepts absolute URLs.\n const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);\n let baseOptions;\n if (configuration) {\n baseOptions = configuration.baseOptions;\n }\n\n const localVarRequestOptions = { method: 'PUT', ...baseOptions, ...axiosOptions};\n const localVarHeaderParameter = {} as any;\n const localVarQueryParameter = {} as any;\n\n\n \n localVarHeaderParameter['Content-Type'] = 'application/json';\n\n if (xSailPointExperimental != null) {\n localVarHeaderParameter['X-SailPoint-Experimental'] = String(xSailPointExperimental);\n }\n setSearchParams(localVarUrlObj, localVarQueryParameter);\n let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};\n localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};\n localVarRequestOptions.data = serializeDataIfNeeded(configurationItemRequest, localVarRequestOptions, configuration)\n\n return {\n url: toPathString(localVarUrlObj),\n axiosOptions: localVarRequestOptions,\n };\n },\n /**\n * Replaces existing Tenant-wide Reassignment Configuration settings with the newly provided settings.\n * @summary Update tenant-wide reassignment configuration settings\n * @param {TenantConfigurationRequest} tenantConfigurationRequest \n * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.\n * @param {*} [axiosOptions] Override http request option.\n * @throws {RequiredError}\n */\n putTenantConfigurationV1: async (tenantConfigurationRequest: TenantConfigurationRequest, xSailPointExperimental?: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {\n // verify required parameter 'tenantConfigurationRequest' is not null or undefined\n assertParamExists('putTenantConfigurationV1', 'tenantConfigurationRequest', tenantConfigurationRequest)\n if (xSailPointExperimental === undefined) {\n xSailPointExperimental = 'true';\n }\n \n const localVarPath = `/reassignment-configurations/v1/tenant-config`;\n // use dummy base URL string because the URL constructor only accepts absolute URLs.\n const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);\n let baseOptions;\n if (configuration) {\n baseOptions = configuration.baseOptions;\n }\n\n const localVarRequestOptions = { method: 'PUT', ...baseOptions, ...axiosOptions};\n const localVarHeaderParameter = {} as any;\n const localVarQueryParameter = {} as any;\n\n\n \n localVarHeaderParameter['Content-Type'] = 'application/json';\n\n if (xSailPointExperimental != null) {\n localVarHeaderParameter['X-SailPoint-Experimental'] = String(xSailPointExperimental);\n }\n setSearchParams(localVarUrlObj, localVarQueryParameter);\n let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};\n localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};\n localVarRequestOptions.data = serializeDataIfNeeded(tenantConfigurationRequest, localVarRequestOptions, configuration)\n\n return {\n url: toPathString(localVarUrlObj),\n axiosOptions: localVarRequestOptions,\n };\n },\n }\n};\n\n/**\n * WorkReassignmentApi - functional programming interface\n * @export\n */\nexport const WorkReassignmentApiFp = function(configuration?: Configuration) {\n const localVarAxiosParamCreator = WorkReassignmentApiAxiosParamCreator(configuration)\n return {\n /**\n * Creates a new Reassignment Configuration for the specified identity.\n * @summary Create a reassignment configuration\n * @param {ConfigurationItemRequest} configurationItemRequest \n * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.\n * @param {*} [axiosOptions] Override http request option.\n * @throws {RequiredError}\n */\n async createReassignmentConfigurationV1(configurationItemRequest: ConfigurationItemRequest, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ConfigurationItemResponse>> {\n const localVarAxiosArgs = await localVarAxiosParamCreator.createReassignmentConfigurationV1(configurationItemRequest, xSailPointExperimental, axiosOptions);\n const localVarOperationServerIndex = configuration?.serverIndex ?? 0;\n const localVarOperationServerBasePath = operationServerMap['WorkReassignmentApi.createReassignmentConfigurationV1']?.[localVarOperationServerIndex]?.url;\n return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);\n },\n /**\n * Deletes a single reassignment configuration for the specified identity\n * @summary Delete reassignment configuration\n * @param {string} identityId unique identity id\n * @param {ConfigTypeEnum} configType \n * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.\n * @param {*} [axiosOptions] Override http request option.\n * @throws {RequiredError}\n */\n async deleteReassignmentConfigurationV1(identityId: string, configType: ConfigTypeEnum, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {\n const localVarAxiosArgs = await localVarAxiosParamCreator.deleteReassignmentConfigurationV1(identityId, configType, xSailPointExperimental, axiosOptions);\n const localVarOperationServerIndex = configuration?.serverIndex ?? 0;\n const localVarOperationServerBasePath = operationServerMap['WorkReassignmentApi.deleteReassignmentConfigurationV1']?.[localVarOperationServerIndex]?.url;\n return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);\n },\n /**\n * Evaluates the Reassignment Configuration for an `Identity` to determine if work items for the specified type should be reassigned. If a valid Reassignment Configuration is found for the identity & work type, then a lookup is initiated which recursively fetches the Reassignment Configuration for the next `TargetIdentity` until no more results are found or a max depth of 5. That lookup trail is provided in the response and the final reassigned identity in the lookup list is returned as the `reassignToId` property. If no Reassignment Configuration is found for the specified identity & config type then the requested Identity ID will be used as the `reassignToId` value and the lookupTrail node will be empty.\n * @summary Evaluate reassignment configuration\n * @param {string} identityId unique identity id\n * @param {ConfigTypeEnum} configType Reassignment work type\n * @param {Array<string>} [exclusionFilters] Exclusion filters that disable parts of the reassignment evaluation. Possible values are listed below: - `SELF_REVIEW_DELEGATION`: This will exclude delegations of self-review reassignments\n * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.\n * @param {*} [axiosOptions] Override http request option.\n * @throws {RequiredError}\n */\n async getEvaluateReassignmentConfigurationV1(identityId: string, configType: ConfigTypeEnum, exclusionFilters?: Array<string>, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<EvaluateResponse>>> {\n const localVarAxiosArgs = await localVarAxiosParamCreator.getEvaluateReassignmentConfigurationV1(identityId, configType, exclusionFilters, xSailPointExperimental, axiosOptions);\n const localVarOperationServerIndex = configuration?.serverIndex ?? 0;\n const localVarOperationServerBasePath = operationServerMap['WorkReassignmentApi.getEvaluateReassignmentConfigurationV1']?.[localVarOperationServerIndex]?.url;\n return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);\n },\n /**\n * Gets a collection of types which are available in the Reassignment Configuration UI.\n * @summary List reassignment config types\n * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.\n * @param {*} [axiosOptions] Override http request option.\n * @throws {RequiredError}\n */\n async getReassignmentConfigTypesV1(xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<ConfigType>>> {\n const localVarAxiosArgs = await localVarAxiosParamCreator.getReassignmentConfigTypesV1(xSailPointExperimental, axiosOptions);\n const localVarOperationServerIndex = configuration?.serverIndex ?? 0;\n const localVarOperationServerBasePath = operationServerMap['WorkReassignmentApi.getReassignmentConfigTypesV1']?.[localVarOperationServerIndex]?.url;\n return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);\n },\n /**\n * Gets the Reassignment Configuration for an identity.\n * @summary Get reassignment configuration\n * @param {string} identityId unique identity id\n * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.\n * @param {*} [axiosOptions] Override http request option.\n * @throws {RequiredError}\n */\n async getReassignmentConfigurationV1(identityId: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ConfigurationResponse>> {\n const localVarAxiosArgs = await localVarAxiosParamCreator.getReassignmentConfigurationV1(identityId, xSailPointExperimental, axiosOptions);\n const localVarOperationServerIndex = configuration?.serverIndex ?? 0;\n const localVarOperationServerBasePath = operationServerMap['WorkReassignmentApi.getReassignmentConfigurationV1']?.[localVarOperationServerIndex]?.url;\n return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);\n },\n /**\n * Gets the global Reassignment Configuration settings for the requestor\\'s tenant.\n * @summary Get tenant-wide reassignment configuration settings\n * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.\n * @param {*} [axiosOptions] Override http request option.\n * @throws {RequiredError}\n */\n async getTenantConfigConfigurationV1(xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TenantConfigurationResponse>> {\n const localVarAxiosArgs = await localVarAxiosParamCreator.getTenantConfigConfigurationV1(xSailPointExperimental, axiosOptions);\n const localVarOperationServerIndex = configuration?.serverIndex ?? 0;\n const localVarOperationServerBasePath = operationServerMap['WorkReassignmentApi.getTenantConfigConfigurationV1']?.[localVarOperationServerIndex]?.url;\n return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);\n },\n /**\n * Gets a paginated list of Reassignment configurations for the current org.\n * @summary List reassignment configurations\n * @param {number} [limit] Max number of results to return.\n * @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.\n * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.\n * @param {*} [axiosOptions] Override http request option.\n * @throws {RequiredError}\n */\n async listReassignmentConfigurationsV1(limit?: number, offset?: number, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<ConfigurationResponse>>> {\n const localVarAxiosArgs = await localVarAxiosParamCreator.listReassignmentConfigurationsV1(limit, offset, xSailPointExperimental, axiosOptions);\n const localVarOperationServerIndex = configuration?.serverIndex ?? 0;\n const localVarOperationServerBasePath = operationServerMap['WorkReassignmentApi.listReassignmentConfigurationsV1']?.[localVarOperationServerIndex]?.url;\n return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);\n },\n /**\n * Replaces existing Reassignment configuration for an identity with the newly provided configuration.\n * @summary Update reassignment configuration\n * @param {string} identityId unique identity id\n * @param {ConfigurationItemRequest} configurationItemRequest \n * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.\n * @param {*} [axiosOptions] Override http request option.\n * @throws {RequiredError}\n */\n async putReassignmentConfigV1(identityId: string, configurationItemRequest: ConfigurationItemRequest, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ConfigurationItemResponse>> {\n const localVarAxiosArgs = await localVarAxiosParamCreator.putReassignmentConfigV1(identityId, configurationItemRequest, xSailPointExperimental, axiosOptions);\n const localVarOperationServerIndex = configuration?.serverIndex ?? 0;\n const localVarOperationServerBasePath = operationServerMap['WorkReassignmentApi.putReassignmentConfigV1']?.[localVarOperationServerIndex]?.url;\n return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);\n },\n /**\n * Replaces existing Tenant-wide Reassignment Configuration settings with the newly provided settings.\n * @summary Update tenant-wide reassignment configuration settings\n * @param {TenantConfigurationRequest} tenantConfigurationRequest \n * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.\n * @param {*} [axiosOptions] Override http request option.\n * @throws {RequiredError}\n */\n async putTenantConfigurationV1(tenantConfigurationRequest: TenantConfigurationRequest, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TenantConfigurationResponse>> {\n const localVarAxiosArgs = await localVarAxiosParamCreator.putTenantConfigurationV1(tenantConfigurationRequest, xSailPointExperimental, axiosOptions);\n const localVarOperationServerIndex = configuration?.serverIndex ?? 0;\n const localVarOperationServerBasePath = operationServerMap['WorkReassignmentApi.putTenantConfigurationV1']?.[localVarOperationServerIndex]?.url;\n return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);\n },\n }\n};\n\n/**\n * WorkReassignmentApi - factory interface\n * @export\n */\nexport const WorkReassignmentApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {\n const localVarFp = WorkReassignmentApiFp(configuration)\n return {\n /**\n * Creates a new Reassignment Configuration for the specified identity.\n * @summary Create a reassignment configuration\n * @param {WorkReassignmentApiCreateReassignmentConfigurationV1Request} requestParameters Request parameters.\n * @param {*} [axiosOptions] Override http request option.\n * @throws {RequiredError}\n */\n createReassignmentConfigurationV1(requestParameters: WorkReassignmentApiCreateReassignmentConfigurationV1Request, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<ConfigurationItemResponse> {\n return localVarFp.createReassignmentConfigurationV1(requestParameters.configurationItemRequest, requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(axios, basePath));\n },\n /**\n * Deletes a single reassignment configuration for the specified identity\n * @summary Delete reassignment configuration\n * @param {WorkReassignmentApiDeleteReassignmentConfigurationV1Request} requestParameters Request parameters.\n * @param {*} [axiosOptions] Override http request option.\n * @throws {RequiredError}\n */\n deleteReassignmentConfigurationV1(requestParameters: WorkReassignmentApiDeleteReassignmentConfigurationV1Request, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<void> {\n return localVarFp.deleteReassignmentConfigurationV1(requestParameters.identityId, requestParameters.configType, requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(axios, basePath));\n },\n /**\n * Evaluates the Reassignment Configuration for an `Identity` to determine if work items for the specified type should be reassigned. If a valid Reassignment Configuration is found for the identity & work type, then a lookup is initiated which recursively fetches the Reassignment Configuration for the next `TargetIdentity` until no more results are found or a max depth of 5. That lookup trail is provided in the response and the final reassigned identity in the lookup list is returned as the `reassignToId` property. If no Reassignment Configuration is found for the specified identity & config type then the requested Identity ID will be used as the `reassignToId` value and the lookupTrail node will be empty.\n * @summary Evaluate reassignment configuration\n * @param {WorkReassignmentApiGetEvaluateReassignmentConfigurationV1Request} requestParameters Request parameters.\n * @param {*} [axiosOptions] Override http request option.\n * @throws {RequiredError}\n */\n getEvaluateReassignmentConfigurationV1(requestParameters: WorkReassignmentApiGetEvaluateReassignmentConfigurationV1Request, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<EvaluateResponse>> {\n return localVarFp.getEvaluateReassignmentConfigurationV1(requestParameters.identityId, requestParameters.configType, requestParameters.exclusionFilters, requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(axios, basePath));\n },\n /**\n * Gets a collection of types which are available in the Reassignment Configuration UI.\n * @summary List reassignment config types\n * @param {WorkReassignmentApiGetReassignmentConfigTypesV1Request} requestParameters Request parameters.\n * @param {*} [axiosOptions] Override http request option.\n * @throws {RequiredError}\n */\n getReassignmentConfigTypesV1(requestParameters: WorkReassignmentApiGetReassignmentConfigTypesV1Request = {}, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<ConfigType>> {\n return localVarFp.getReassignmentConfigTypesV1(requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(axios, basePath));\n },\n /**\n * Gets the Reassignment Configuration for an identity.\n * @summary Get reassignment configuration\n * @param {WorkReassignmentApiGetReassignmentConfigurationV1Request} requestParameters Request parameters.\n * @param {*} [axiosOptions] Override http request option.\n * @throws {RequiredError}\n */\n getReassignmentConfigurationV1(requestParameters: WorkReassignmentApiGetReassignmentConfigurationV1Request, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<ConfigurationResponse> {\n return localVarFp.getReassignmentConfigurationV1(requestParameters.identityId, requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(axios, basePath));\n },\n /**\n * Gets the global Reassignment Configuration settings for the requestor\\'s tenant.\n * @summary Get tenant-wide reassignment configuration settings\n * @param {WorkReassignmentApiGetTenantConfigConfigurationV1Request} requestParameters Request parameters.\n * @param {*} [axiosOptions] Override http request option.\n * @throws {RequiredError}\n */\n getTenantConfigConfigurationV1(requestParameters: WorkReassignmentApiGetTenantConfigConfigurationV1Request = {}, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<TenantConfigurationResponse> {\n return localVarFp.getTenantConfigConfigurationV1(requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(axios, basePath));\n },\n /**\n * Gets a paginated list of Reassignment configurations for the current org.\n * @summary List reassignment configurations\n * @param {WorkReassignmentApiListReassignmentConfigurationsV1Request} requestParameters Request parameters.\n * @param {*} [axiosOptions] Override http request option.\n * @throws {RequiredError}\n */\n listReassignmentConfigurationsV1(requestParameters: WorkReassignmentApiListReassignmentConfigurationsV1Request = {}, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<ConfigurationResponse>> {\n return localVarFp.listReassignmentConfigurationsV1(requestParameters.limit, requestParameters.offset, requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(axios, basePath));\n },\n /**\n * Replaces existing Reassignment configuration for an identity with the newly provided configuration.\n * @summary Update reassignment configuration\n * @param {WorkReassignmentApiPutReassignmentConfigV1Request} requestParameters Request parameters.\n * @param {*} [axiosOptions] Override http request option.\n * @throws {RequiredError}\n */\n putReassignmentConfigV1(requestParameters: WorkReassignmentApiPutReassignmentConfigV1Request, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<ConfigurationItemResponse> {\n return localVarFp.putReassignmentConfigV1(requestParameters.identityId, requestParameters.configurationItemRequest, requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(axios, basePath));\n },\n /**\n * Replaces existing Tenant-wide Reassignment Configuration settings with the newly provided settings.\n * @summary Update tenant-wide reassignment configuration settings\n * @param {WorkReassignmentApiPutTenantConfigurationV1Request} requestParameters Request parameters.\n * @param {*} [axiosOptions] Override http request option.\n * @throws {RequiredError}\n */\n putTenantConfigurationV1(requestParameters: WorkReassignmentApiPutTenantConfigurationV1Request, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<TenantConfigurationResponse> {\n return localVarFp.putTenantConfigurationV1(requestParameters.tenantConfigurationRequest, requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(axios, basePath));\n },\n };\n};\n\n/**\n * Request parameters for createReassignmentConfigurationV1 operation in WorkReassignmentApi.\n * @export\n * @interface WorkReassignmentApiCreateReassignmentConfigurationV1Request\n */\nexport interface WorkReassignmentApiCreateReassignmentConfigurationV1Request {\n /**\n * \n * @type {ConfigurationItemRequest}\n * @memberof WorkReassignmentApiCreateReassignmentConfigurationV1\n */\n readonly configurationItemRequest: ConfigurationItemRequest\n\n /**\n * Use this header to enable this experimental API.\n * @type {string}\n * @memberof WorkReassignmentApiCreateReassignmentConfigurationV1\n */\n readonly xSailPointExperimental?: string\n}\n\n/**\n * Request parameters for deleteReassignmentConfigurationV1 operation in WorkReassignmentApi.\n * @export\n * @interface WorkReassignmentApiDeleteReassignmentConfigurationV1Request\n */\nexport interface WorkReassignmentApiDeleteReassignmentConfigurationV1Request {\n /**\n * unique identity id\n * @type {string}\n * @memberof WorkReassignmentApiDeleteReassignmentConfigurationV1\n */\n readonly identityId: string\n\n /**\n * \n * @type {ConfigTypeEnum}\n * @memberof WorkReassignmentApiDeleteReassignmentConfigurationV1\n */\n readonly configType: ConfigTypeEnum\n\n /**\n * Use this header to enable this experimental API.\n * @type {string}\n * @memberof WorkReassignmentApiDeleteReassignmentConfigurationV1\n */\n readonly xSailPointExperimental?: string\n}\n\n/**\n * Request parameters for getEvaluateReassignmentConfigurationV1 operation in WorkReassignmentApi.\n * @export\n * @interface WorkReassignmentApiGetEvaluateReassignmentConfigurationV1Request\n */\nexport interface WorkReassignmentApiGetEvaluateReassignmentConfigurationV1Request {\n /**\n * unique identity id\n * @type {string}\n * @memberof WorkReassignmentApiGetEvaluateReassignmentConfigurationV1\n */\n readonly identityId: string\n\n /**\n * Reassignment work type\n * @type {ConfigTypeEnum}\n * @memberof WorkReassignmentApiGetEvaluateReassignmentConfigurationV1\n */\n readonly configType: ConfigTypeEnum\n\n /**\n * Exclusion filters that disable parts of the reassignment evaluation. Possible values are listed below: - `SELF_REVIEW_DELEGATION`: This will exclude delegations of self-review reassignments\n * @type {Array<string>}\n * @memberof WorkReassignmentApiGetEvaluateReassignmentConfigurationV1\n */\n readonly exclusionFilters?: Array<string>\n\n /**\n * Use this header to enable this experimental API.\n * @type {string}\n * @memberof WorkReassignmentApiGetEvaluateReassignmentConfigurationV1\n */\n readonly xSailPointExperimental?: string\n}\n\n/**\n * Request parameters for getReassignmentConfigTypesV1 operation in WorkReassignmentApi.\n * @export\n * @interface WorkReassignmentApiGetReassignmentConfigTypesV1Request\n */\nexport interface WorkReassignmentApiGetReassignmentConfigTypesV1Request {\n /**\n * Use this header to enable this experimental API.\n * @type {string}\n * @memberof WorkReassignmentApiGetReassignmentConfigTypesV1\n */\n readonly xSailPointExperimental?: string\n}\n\n/**\n * Request parameters for getReassignmentConfigurationV1 operation in WorkReassignmentApi.\n * @export\n * @interface WorkReassignmentApiGetReassignmentConfigurationV1Request\n */\nexport interface WorkReassignmentApiGetReassignmentConfigurationV1Request {\n /**\n * unique identity id\n * @type {string}\n * @memberof WorkReassignmentApiGetReassignmentConfigurationV1\n */\n readonly identityId: string\n\n /**\n * Use this header to enable this experimental API.\n * @type {string}\n * @memberof WorkReassignmentApiGetReassignmentConfigurationV1\n */\n readonly xSailPointExperimental?: string\n}\n\n/**\n * Request parameters for getTenantConfigConfigurationV1 operation in WorkReassignmentApi.\n * @export\n * @interface WorkReassignmentApiGetTenantConfigConfigurationV1Request\n */\nexport interface WorkReassignmentApiGetTenantConfigConfigurationV1Request {\n /**\n * Use this header to enable this experimental API.\n * @type {string}\n * @memberof WorkReassignmentApiGetTenantConfigConfigurationV1\n */\n readonly xSailPointExperimental?: string\n}\n\n/**\n * Request parameters for listReassignmentConfigurationsV1 operation in WorkReassignmentApi.\n * @export\n * @interface WorkReassignmentApiListReassignmentConfigurationsV1Request\n */\nexport interface WorkReassignmentApiListReassignmentConfigurationsV1Request {\n /**\n * Max number of results to return.\n * @type {number}\n * @memberof WorkReassignmentApiListReassignmentConfigurationsV1\n */\n readonly limit?: number\n\n /**\n * 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.\n * @type {number}\n * @memberof WorkReassignmentApiListReassignmentConfigurationsV1\n */\n readonly offset?: number\n\n /**\n * Use this header to enable this experimental API.\n * @type {string}\n * @memberof WorkReassignmentApiListReassignmentConfigurationsV1\n */\n readonly xSailPointExperimental?: string\n}\n\n/**\n * Request parameters for putReassignmentConfigV1 operation in WorkReassignmentApi.\n * @export\n * @interface WorkReassignmentApiPutReassignmentConfigV1Request\n */\nexport interface WorkReassignmentApiPutReassignmentConfigV1Request {\n /**\n * unique identity id\n * @type {string}\n * @memberof WorkReassignmentApiPutReassignmentConfigV1\n */\n readonly identityId: string\n\n /**\n * \n * @type {ConfigurationItemRequest}\n * @memberof WorkReassignmentApiPutReassignmentConfigV1\n */\n readonly configurationItemRequest: ConfigurationItemRequest\n\n /**\n * Use this header to enable this experimental API.\n * @type {string}\n * @memberof WorkReassignmentApiPutReassignmentConfigV1\n */\n readonly xSailPointExperimental?: string\n}\n\n/**\n * Request parameters for putTenantConfigurationV1 operation in WorkReassignmentApi.\n * @export\n * @interface WorkReassignmentApiPutTenantConfigurationV1Request\n */\nexport interface WorkReassignmentApiPutTenantConfigurationV1Request {\n /**\n * \n * @type {TenantConfigurationRequest}\n * @memberof WorkReassignmentApiPutTenantConfigurationV1\n */\n readonly tenantConfigurationRequest: TenantConfigurationRequest\n\n /**\n * Use this header to enable this experimental API.\n * @type {string}\n * @memberof WorkReassignmentApiPutTenantConfigurationV1\n */\n readonly xSailPointExperimental?: string\n}\n\n/**\n * WorkReassignmentApi - object-oriented interface\n * @export\n * @class WorkReassignmentApi\n * @extends {BaseAPI}\n */\nexport class WorkReassignmentApi extends BaseAPI {\n /**\n * Creates a new Reassignment Configuration for the specified identity.\n * @summary Create a reassignment configuration\n * @param {WorkReassignmentApiCreateReassignmentConfigurationV1Request} requestParameters Request parameters.\n * @param {*} [axiosOptions] Override http request option.\n * @throws {RequiredError}\n * @memberof WorkReassignmentApi\n */\n public createReassignmentConfigurationV1(requestParameters: WorkReassignmentApiCreateReassignmentConfigurationV1Request, axiosOptions?: RawAxiosRequestConfig) {\n return WorkReassignmentApiFp(this.configuration).createReassignmentConfigurationV1(requestParameters.configurationItemRequest, requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(this.axios, this.basePath));\n }\n\n /**\n * Deletes a single reassignment configuration for the specified identity\n * @summary Delete reassignment configuration\n * @param {WorkReassignmentApiDeleteReassignmentConfigurationV1Request} requestParameters Request parameters.\n * @param {*} [axiosOptions] Override http request option.\n * @throws {RequiredError}\n * @memberof WorkReassignmentApi\n */\n public deleteReassignmentConfigurationV1(requestParameters: WorkReassignmentApiDeleteReassignmentConfigurationV1Request, axiosOptions?: RawAxiosRequestConfig) {\n return WorkReassignmentApiFp(this.configuration).deleteReassignmentConfigurationV1(requestParameters.identityId, requestParameters.configType, requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(this.axios, this.basePath));\n }\n\n /**\n * Evaluates the Reassignment Configuration for an `Identity` to determine if work items for the specified type should be reassigned. If a valid Reassignment Configuration is found for the identity & work type, then a lookup is initiated which recursively fetches the Reassignment Configuration for the next `TargetIdentity` until no more results are found or a max depth of 5. That lookup trail is provided in the response and the final reassigned identity in the lookup list is returned as the `reassignToId` property. If no Reassignment Configuration is found for the specified identity & config type then the requested Identity ID will be used as the `reassignToId` value and the lookupTrail node will be empty.\n * @summary Evaluate reassignment configuration\n * @param {WorkReassignmentApiGetEvaluateReassignmentConfigurationV1Request} requestParameters Request parameters.\n * @param {*} [axiosOptions] Override http request option.\n * @throws {RequiredError}\n * @memberof WorkReassignmentApi\n */\n public getEvaluateReassignmentConfigurationV1(requestParameters: WorkReassignmentApiGetEvaluateReassignmentConfigurationV1Request, axiosOptions?: RawAxiosRequestConfig) {\n return WorkReassignmentApiFp(this.configuration).getEvaluateReassignmentConfigurationV1(requestParameters.identityId, requestParameters.configType, requestParameters.exclusionFilters, requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(this.axios, this.basePath));\n }\n\n /**\n * Gets a collection of types which are available in the Reassignment Configuration UI.\n * @summary List reassignment config types\n * @param {WorkReassignmentApiGetReassignmentConfigTypesV1Request} requestParameters Request parameters.\n * @param {*} [axiosOptions] Override http request option.\n * @throws {RequiredError}\n * @memberof WorkReassignmentApi\n */\n public getReassignmentConfigTypesV1(requestParameters: WorkReassignmentApiGetReassignmentConfigTypesV1Request = {}, axiosOptions?: RawAxiosRequestConfig) {\n return WorkReassignmentApiFp(this.configuration).getReassignmentConfigTypesV1(requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(this.axios, this.basePath));\n }\n\n /**\n * Gets the Reassignment Configuration for an identity.\n * @summary Get reassignment configuration\n * @param {WorkReassignmentApiGetReassignmentConfigurationV1Request} requestParameters Request parameters.\n * @param {*} [axiosOptions] Override http request option.\n * @throws {RequiredError}\n * @memberof WorkReassignmentApi\n */\n public getReassignmentConfigurationV1(requestParameters: WorkReassignmentApiGetReassignmentConfigurationV1Request, axiosOptions?: RawAxiosRequestConfig) {\n return WorkReassignmentApiFp(this.configuration).getReassignmentConfigurationV1(requestParameters.identityId, requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(this.axios, this.basePath));\n }\n\n /**\n * Gets the global Reassignment Configuration settings for the requestor\\'s tenant.\n * @summary Get tenant-wide reassignment configuration settings\n * @param {WorkReassignmentApiGetTenantConfigConfigurationV1Request} requestParameters Request parameters.\n * @param {*} [axiosOptions] Override http request option.\n * @throws {RequiredError}\n * @memberof WorkReassignmentApi\n */\n public getTenantConfigConfigurationV1(requestParameters: WorkReassignmentApiGetTenantConfigConfigurationV1Request = {}, axiosOptions?: RawAxiosRequestConfig) {\n return WorkReassignmentApiFp(this.configuration).getTenantConfigConfigurationV1(requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(this.axios, this.basePath));\n }\n\n /**\n * Gets a paginated list of Reassignment configurations for the current org.\n * @summary List reassignment configurations\n * @param {WorkReassignmentApiListReassignmentConfigurationsV1Request} requestParameters Request parameters.\n * @param {*} [axiosOptions] Override http request option.\n * @throws {RequiredError}\n * @memberof WorkReassignmentApi\n */\n public listReassignmentConfigurationsV1(requestParameters: WorkReassignmentApiListReassignmentConfigurationsV1Request = {}, axiosOptions?: RawAxiosRequestConfig) {\n return WorkReassignmentApiFp(this.configuration).listReassignmentConfigurationsV1(requestParameters.limit, requestParameters.offset, requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(this.axios, this.basePath));\n }\n\n /**\n * Replaces existing Reassignment configuration for an identity with the newly provided configuration.\n * @summary Update reassignment configuration\n * @param {WorkReassignmentApiPutReassignmentConfigV1Request} requestParameters Request parameters.\n * @param {*} [axiosOptions] Override http request option.\n * @throws {RequiredError}\n * @memberof WorkReassignmentApi\n */\n public putReassignmentConfigV1(requestParameters: WorkReassignmentApiPutReassignmentConfigV1Request, axiosOptions?: RawAxiosRequestConfig) {\n return WorkReassignmentApiFp(this.configuration).putReassignmentConfigV1(requestParameters.identityId, requestParameters.configurationItemRequest, requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(this.axios, this.basePath));\n }\n\n /**\n * Replaces existing Tenant-wide Reassignment Configuration settings with the newly provided settings.\n * @summary Update tenant-wide reassignment configuration settings\n * @param {WorkReassignmentApiPutTenantConfigurationV1Request} requestParameters Request parameters.\n * @param {*} [axiosOptions] Override http request option.\n * @throws {RequiredError}\n * @memberof WorkReassignmentApi\n */\n public putTenantConfigurationV1(requestParameters: WorkReassignmentApiPutTenantConfigurationV1Request, axiosOptions?: RawAxiosRequestConfig) {\n return WorkReassignmentApiFp(this.configuration).putTenantConfigurationV1(requestParameters.tenantConfigurationRequest, requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(this.axios, this.basePath));\n }\n}\n\n\n\n"]}
|
|
1
|
+
{"version":3,"file":"api.js","sourceRoot":"","sources":["../../work_reassignment/api.ts"],"names":[],"mappings":"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","sourcesContent":["/* tslint:disable */\n/* eslint-disable */\n/**\n * Identity Security Cloud API - Work Reassignment\n * Use these APIs to interact with the Identity Security Cloud platform to achieve repeatable, automated processes with greater scalability. We encourage you to join the SailPoint Developer Community forum at https://developer.sailpoint.com/discuss to connect with other developers using our APIs.\n *\n * The version of the OpenAPI document: v1\n * \n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n\nimport type { Configuration } from '../configuration';\nimport type { AxiosPromise, AxiosInstance, RawAxiosRequestConfig } from 'axios';\nimport globalAxios from 'axios';\n// Some imports not used depending on template conditions\n// @ts-ignore\nimport { DUMMY_BASE_URL, assertParamExists, setApiKeyToObject, setBasicAuthToObject, setBearerAuthToObject, setOAuthToObject, setSearchParams, serializeDataIfNeeded, toPathString, createRequestFunction } from './common';\nimport type { RequestArgs } from './base';\n// @ts-ignore\nimport { BASE_PATH, COLLECTION_FORMATS, BaseAPI, RequiredError, operationServerMap } from './base';\n\n/**\n * Audit details for the reassignment configuration of an identity\n * @export\n * @interface AuditDetails\n */\nexport interface AuditDetails {\n /**\n * Initial date and time when the record was created\n * @type {string}\n * @memberof AuditDetails\n */\n 'created'?: string;\n /**\n * \n * @type {Identity2}\n * @memberof AuditDetails\n */\n 'createdBy'?: Identity2;\n /**\n * Last modified date and time for the record\n * @type {string}\n * @memberof AuditDetails\n */\n 'modified'?: string;\n /**\n * \n * @type {Identity2}\n * @memberof AuditDetails\n */\n 'modifiedBy'?: Identity2;\n}\n/**\n * Type of Reassignment Configuration.\n * @export\n * @interface ConfigType\n */\nexport interface ConfigType {\n /**\n * \n * @type {number}\n * @memberof ConfigType\n */\n 'priority'?: number;\n /**\n * \n * @type {ConfigTypeEnumCamel}\n * @memberof ConfigType\n */\n 'internalName'?: ConfigTypeEnumCamel;\n /**\n * \n * @type {ConfigTypeEnum}\n * @memberof ConfigType\n */\n 'internalNameCamel'?: ConfigTypeEnum;\n /**\n * Human readable display name of the type to be shown on UI\n * @type {string}\n * @memberof ConfigType\n */\n 'displayName'?: string;\n /**\n * Description of the type of work to be reassigned, displayed by the UI.\n * @type {string}\n * @memberof ConfigType\n */\n 'description'?: string;\n}\n\n\n/**\n * Enum list of valid work types that can be selected for a Reassignment Configuration\n * @export\n * @enum {string}\n */\n\nexport const ConfigTypeEnum = {\n AccessRequests: 'ACCESS_REQUESTS',\n Certifications: 'CERTIFICATIONS',\n ManualTasks: 'MANUAL_TASKS',\n GenericApprovals: 'GENERIC_APPROVALS'\n} as const;\n\nexport type ConfigTypeEnum = typeof ConfigTypeEnum[keyof typeof ConfigTypeEnum];\n\n\n/**\n * Enum list of valid work types that can be selected for a Reassignment Configuration\n * @export\n * @enum {string}\n */\n\nexport const ConfigTypeEnumCamel = {\n AccessRequests: 'accessRequests',\n Certifications: 'certifications',\n ManualTasks: 'manualTasks'\n} as const;\n\nexport type ConfigTypeEnumCamel = typeof ConfigTypeEnumCamel[keyof typeof ConfigTypeEnumCamel];\n\n\n/**\n * The request body of Reassignment Configuration Details for a specific identity and config type\n * @export\n * @interface ConfigurationDetailsResponse\n */\nexport interface ConfigurationDetailsResponse {\n /**\n * \n * @type {ConfigTypeEnum}\n * @memberof ConfigurationDetailsResponse\n */\n 'configType'?: ConfigTypeEnum;\n /**\n * \n * @type {Identity2}\n * @memberof ConfigurationDetailsResponse\n */\n 'targetIdentity'?: Identity2;\n /**\n * The date from which to start reassigning work items\n * @type {string}\n * @memberof ConfigurationDetailsResponse\n */\n 'startDate'?: string;\n /**\n * The date from which to stop reassigning work items. If this is an empty string it indicates a permanent reassignment.\n * @type {string}\n * @memberof ConfigurationDetailsResponse\n */\n 'endDate'?: string;\n /**\n * \n * @type {AuditDetails}\n * @memberof ConfigurationDetailsResponse\n */\n 'auditDetails'?: AuditDetails;\n}\n\n\n/**\n * The request body for creation or update of a Reassignment Configuration for a single identity and work type\n * @export\n * @interface ConfigurationItemRequest\n */\nexport interface ConfigurationItemRequest {\n /**\n * The identity id to reassign an item from\n * @type {string}\n * @memberof ConfigurationItemRequest\n */\n 'reassignedFromId'?: string;\n /**\n * The identity id to reassign an item to\n * @type {string}\n * @memberof ConfigurationItemRequest\n */\n 'reassignedToId'?: string;\n /**\n * \n * @type {ConfigTypeEnum}\n * @memberof ConfigurationItemRequest\n */\n 'configType'?: ConfigTypeEnum;\n /**\n * The date from which to start reassigning work items\n * @type {string}\n * @memberof ConfigurationItemRequest\n */\n 'startDate'?: string;\n /**\n * The date from which to stop reassigning work items. If this is an null string it indicates a permanent reassignment.\n * @type {string}\n * @memberof ConfigurationItemRequest\n */\n 'endDate'?: string | null;\n}\n\n\n/**\n * The response body of a Reassignment Configuration for a single identity\n * @export\n * @interface ConfigurationItemResponse\n */\nexport interface ConfigurationItemResponse {\n /**\n * \n * @type {Identity2}\n * @memberof ConfigurationItemResponse\n */\n 'identity'?: Identity2;\n /**\n * Details of how work should be reassigned for an Identity\n * @type {Array<ConfigurationDetailsResponse>}\n * @memberof ConfigurationItemResponse\n */\n 'configDetails'?: Array<ConfigurationDetailsResponse>;\n}\n/**\n * The response body of a Reassignment Configuration for a single identity\n * @export\n * @interface ConfigurationResponse\n */\nexport interface ConfigurationResponse {\n /**\n * \n * @type {Identity2}\n * @memberof ConfigurationResponse\n */\n 'identity'?: Identity2;\n /**\n * Details of how work should be reassigned for an Identity\n * @type {Array<ConfigurationDetailsResponse>}\n * @memberof ConfigurationResponse\n */\n 'configDetails'?: Array<ConfigurationDetailsResponse>;\n}\n/**\n * \n * @export\n * @interface ErrorMessageDto\n */\nexport interface ErrorMessageDto {\n /**\n * The locale for the message text, a BCP 47 language tag.\n * @type {string}\n * @memberof ErrorMessageDto\n */\n 'locale'?: string | null;\n /**\n * \n * @type {LocaleOrigin}\n * @memberof ErrorMessageDto\n */\n 'localeOrigin'?: LocaleOrigin | null;\n /**\n * Actual text of the error message in the indicated locale.\n * @type {string}\n * @memberof ErrorMessageDto\n */\n 'text'?: string;\n}\n\n\n/**\n * \n * @export\n * @interface ErrorResponseDto\n */\nexport interface ErrorResponseDto {\n /**\n * Fine-grained error code providing more detail of the error.\n * @type {string}\n * @memberof ErrorResponseDto\n */\n 'detailCode'?: string;\n /**\n * Unique tracking id for the error.\n * @type {string}\n * @memberof ErrorResponseDto\n */\n 'trackingId'?: string;\n /**\n * Generic localized reason for error\n * @type {Array<ErrorMessageDto>}\n * @memberof ErrorResponseDto\n */\n 'messages'?: Array<ErrorMessageDto>;\n /**\n * Plain-text descriptive reasons to provide additional detail to the text provided in the messages field\n * @type {Array<ErrorMessageDto>}\n * @memberof ErrorResponseDto\n */\n 'causes'?: Array<ErrorMessageDto>;\n}\n/**\n * The response body for Evaluate Reassignment Configuration\n * @export\n * @interface EvaluateResponse\n */\nexport interface EvaluateResponse {\n /**\n * The Identity ID which should be the recipient of any work items sent to a specific identity & work type\n * @type {string}\n * @memberof EvaluateResponse\n */\n 'reassignToId'?: string;\n /**\n * List of Reassignments found by looking up the next `TargetIdentity` in a ReassignmentConfiguration\n * @type {Array<LookupStep>}\n * @memberof EvaluateResponse\n */\n 'lookupTrail'?: Array<LookupStep>;\n}\n/**\n * \n * @export\n * @interface GetReassignmentConfigTypesV1401Response\n */\nexport interface GetReassignmentConfigTypesV1401Response {\n /**\n * A message describing the error\n * @type {any}\n * @memberof GetReassignmentConfigTypesV1401Response\n */\n 'error'?: any;\n}\n/**\n * \n * @export\n * @interface GetReassignmentConfigTypesV1429Response\n */\nexport interface GetReassignmentConfigTypesV1429Response {\n /**\n * A message describing the error\n * @type {any}\n * @memberof GetReassignmentConfigTypesV1429Response\n */\n 'message'?: any;\n}\n/**\n * The definition of an Identity according to the Reassignment Configuration service\n * @export\n * @interface Identity2\n */\nexport interface Identity2 {\n /**\n * The ID of the object\n * @type {string}\n * @memberof Identity2\n */\n 'id'?: string;\n /**\n * Human-readable display name of the object\n * @type {string}\n * @memberof Identity2\n */\n 'name'?: string;\n}\n/**\n * An indicator of how the locale was selected. *DEFAULT* means the locale is the system default. *REQUEST* means the locale was selected from the request context (i.e., best match based on the *Accept-Language* header). Additional values may be added in the future without notice.\n * @export\n * @enum {string}\n */\n\nexport const LocaleOrigin = {\n Default: 'DEFAULT',\n Request: 'REQUEST'\n} as const;\n\nexport type LocaleOrigin = typeof LocaleOrigin[keyof typeof LocaleOrigin];\n\n\n/**\n * The definition of an Identity according to the Reassignment Configuration service\n * @export\n * @interface LookupStep\n */\nexport interface LookupStep {\n /**\n * The ID of the Identity who work is reassigned to\n * @type {string}\n * @memberof LookupStep\n */\n 'reassignedToId'?: string;\n /**\n * The ID of the Identity who work is reassigned from\n * @type {string}\n * @memberof LookupStep\n */\n 'reassignedFromId'?: string;\n /**\n * \n * @type {ReassignmentTypeEnum}\n * @memberof LookupStep\n */\n 'reassignmentType'?: ReassignmentTypeEnum;\n}\n\n\n/**\n * Enum list containing types of Reassignment that can be found in the evaluate response.\n * @export\n * @enum {string}\n */\n\nexport const ReassignmentTypeEnum = {\n ManualReassignment: 'MANUAL_REASSIGNMENT,',\n AutomaticReassignment: 'AUTOMATIC_REASSIGNMENT,',\n AutoEscalation: 'AUTO_ESCALATION,',\n SelfReviewDelegation: 'SELF_REVIEW_DELEGATION'\n} as const;\n\nexport type ReassignmentTypeEnum = typeof ReassignmentTypeEnum[keyof typeof ReassignmentTypeEnum];\n\n\n/**\n * Details of any tenant-wide Reassignment Configurations (eg. enabled/disabled)\n * @export\n * @interface TenantConfigurationDetails\n */\nexport interface TenantConfigurationDetails {\n /**\n * Flag to determine if Reassignment Configuration is enabled or disabled for a tenant. When this flag is set to true, Reassignment Configuration is disabled.\n * @type {boolean}\n * @memberof TenantConfigurationDetails\n */\n 'disabled'?: boolean | null;\n}\n/**\n * Tenant-wide Reassignment Configuration settings\n * @export\n * @interface TenantConfigurationRequest\n */\nexport interface TenantConfigurationRequest {\n /**\n * \n * @type {TenantConfigurationDetails}\n * @memberof TenantConfigurationRequest\n */\n 'configDetails'?: TenantConfigurationDetails;\n}\n/**\n * Tenant-wide Reassignment Configuration settings\n * @export\n * @interface TenantConfigurationResponse\n */\nexport interface TenantConfigurationResponse {\n /**\n * \n * @type {AuditDetails}\n * @memberof TenantConfigurationResponse\n */\n 'auditDetails'?: AuditDetails;\n /**\n * \n * @type {TenantConfigurationDetails}\n * @memberof TenantConfigurationResponse\n */\n 'configDetails'?: TenantConfigurationDetails;\n}\n\n/**\n * WorkReassignmentApi - axios parameter creator\n * @export\n */\nexport const WorkReassignmentApiAxiosParamCreator = function (configuration?: Configuration) {\n return {\n /**\n * Creates a new Reassignment Configuration for the specified identity.\n * @summary Create a reassignment configuration\n * @param {ConfigurationItemRequest} configurationItemRequest \n * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.\n * @param {*} [axiosOptions] Override http request option.\n * @throws {RequiredError}\n */\n createReassignmentConfigurationV1: async (configurationItemRequest: ConfigurationItemRequest, xSailPointExperimental?: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {\n // verify required parameter 'configurationItemRequest' is not null or undefined\n assertParamExists('createReassignmentConfigurationV1', 'configurationItemRequest', configurationItemRequest)\n if (xSailPointExperimental === undefined) {\n xSailPointExperimental = 'true';\n }\n \n const localVarPath = `/reassignment-configurations/v1`;\n // use dummy base URL string because the URL constructor only accepts absolute URLs.\n const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);\n let baseOptions;\n if (configuration) {\n baseOptions = configuration.baseOptions;\n }\n\n const localVarRequestOptions = { method: 'POST', ...baseOptions, ...axiosOptions};\n const localVarHeaderParameter = {} as any;\n const localVarQueryParameter = {} as any;\n\n\n \n localVarHeaderParameter['Content-Type'] = 'application/json';\n\n if (xSailPointExperimental != null) {\n localVarHeaderParameter['X-SailPoint-Experimental'] = String(xSailPointExperimental);\n }\n setSearchParams(localVarUrlObj, localVarQueryParameter);\n let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};\n localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};\n localVarRequestOptions.data = serializeDataIfNeeded(configurationItemRequest, localVarRequestOptions, configuration)\n\n return {\n url: toPathString(localVarUrlObj),\n axiosOptions: localVarRequestOptions,\n };\n },\n /**\n * Deletes a single reassignment configuration for the specified identity\n * @summary Delete reassignment configuration\n * @param {string} identityId unique identity id\n * @param {ConfigTypeEnum} configType \n * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.\n * @param {*} [axiosOptions] Override http request option.\n * @throws {RequiredError}\n */\n deleteReassignmentConfigurationV1: async (identityId: string, configType: ConfigTypeEnum, xSailPointExperimental?: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {\n // verify required parameter 'identityId' is not null or undefined\n assertParamExists('deleteReassignmentConfigurationV1', 'identityId', identityId)\n // verify required parameter 'configType' is not null or undefined\n assertParamExists('deleteReassignmentConfigurationV1', 'configType', configType)\n if (xSailPointExperimental === undefined) {\n xSailPointExperimental = 'true';\n }\n \n const localVarPath = `/reassignment-configurations/v1/{identityId}/{configType}`\n .replace(`{${\"identityId\"}}`, encodeURIComponent(String(identityId)))\n .replace(`{${\"configType\"}}`, encodeURIComponent(String(configType)));\n // use dummy base URL string because the URL constructor only accepts absolute URLs.\n const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);\n let baseOptions;\n if (configuration) {\n baseOptions = configuration.baseOptions;\n }\n\n const localVarRequestOptions = { method: 'DELETE', ...baseOptions, ...axiosOptions};\n const localVarHeaderParameter = {} as any;\n const localVarQueryParameter = {} as any;\n\n\n \n if (xSailPointExperimental != null) {\n localVarHeaderParameter['X-SailPoint-Experimental'] = String(xSailPointExperimental);\n }\n setSearchParams(localVarUrlObj, localVarQueryParameter);\n let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};\n localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};\n\n return {\n url: toPathString(localVarUrlObj),\n axiosOptions: localVarRequestOptions,\n };\n },\n /**\n * Evaluates the Reassignment Configuration for an `Identity` to determine if work items for the specified type should be reassigned. If a valid Reassignment Configuration is found for the identity & work type, then a lookup is initiated which recursively fetches the Reassignment Configuration for the next `TargetIdentity` until no more results are found or a max depth of 5. That lookup trail is provided in the response and the final reassigned identity in the lookup list is returned as the `reassignToId` property. If no Reassignment Configuration is found for the specified identity & config type then the requested Identity ID will be used as the `reassignToId` value and the lookupTrail node will be empty.\n * @summary Evaluate reassignment configuration\n * @param {string} identityId unique identity id\n * @param {ConfigTypeEnum} configType Reassignment work type\n * @param {Array<string>} [exclusionFilters] Exclusion filters that disable parts of the reassignment evaluation. Possible values are listed below: - `SELF_REVIEW_DELEGATION`: This will exclude delegations of self-review reassignments\n * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.\n * @param {*} [axiosOptions] Override http request option.\n * @throws {RequiredError}\n */\n getEvaluateReassignmentConfigurationV1: async (identityId: string, configType: ConfigTypeEnum, exclusionFilters?: Array<string>, xSailPointExperimental?: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {\n // verify required parameter 'identityId' is not null or undefined\n assertParamExists('getEvaluateReassignmentConfigurationV1', 'identityId', identityId)\n // verify required parameter 'configType' is not null or undefined\n assertParamExists('getEvaluateReassignmentConfigurationV1', 'configType', configType)\n if (xSailPointExperimental === undefined) {\n xSailPointExperimental = 'true';\n }\n \n const localVarPath = `/reassignment-configurations/v1/{identityId}/evaluate/{configType}`\n .replace(`{${\"identityId\"}}`, encodeURIComponent(String(identityId)))\n .replace(`{${\"configType\"}}`, encodeURIComponent(String(configType)));\n // use dummy base URL string because the URL constructor only accepts absolute URLs.\n const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);\n let baseOptions;\n if (configuration) {\n baseOptions = configuration.baseOptions;\n }\n\n const localVarRequestOptions = { method: 'GET', ...baseOptions, ...axiosOptions};\n const localVarHeaderParameter = {} as any;\n const localVarQueryParameter = {} as any;\n\n if (exclusionFilters) {\n localVarQueryParameter['exclusionFilters'] = exclusionFilters;\n }\n\n\n \n if (xSailPointExperimental != null) {\n localVarHeaderParameter['X-SailPoint-Experimental'] = String(xSailPointExperimental);\n }\n setSearchParams(localVarUrlObj, localVarQueryParameter);\n let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};\n localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};\n\n return {\n url: toPathString(localVarUrlObj),\n axiosOptions: localVarRequestOptions,\n };\n },\n /**\n * Gets a collection of types which are available in the Reassignment Configuration UI.\n * @summary List reassignment config types\n * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.\n * @param {*} [axiosOptions] Override http request option.\n * @throws {RequiredError}\n */\n getReassignmentConfigTypesV1: async (xSailPointExperimental?: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {\n if (xSailPointExperimental === undefined) {\n xSailPointExperimental = 'true';\n }\n \n const localVarPath = `/reassignment-configurations/v1/types`;\n // use dummy base URL string because the URL constructor only accepts absolute URLs.\n const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);\n let baseOptions;\n if (configuration) {\n baseOptions = configuration.baseOptions;\n }\n\n const localVarRequestOptions = { method: 'GET', ...baseOptions, ...axiosOptions};\n const localVarHeaderParameter = {} as any;\n const localVarQueryParameter = {} as any;\n\n\n \n if (xSailPointExperimental != null) {\n localVarHeaderParameter['X-SailPoint-Experimental'] = String(xSailPointExperimental);\n }\n setSearchParams(localVarUrlObj, localVarQueryParameter);\n let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};\n localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};\n\n return {\n url: toPathString(localVarUrlObj),\n axiosOptions: localVarRequestOptions,\n };\n },\n /**\n * Gets the Reassignment Configuration for an identity.\n * @summary Get reassignment configuration\n * @param {string} identityId unique identity id\n * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.\n * @param {*} [axiosOptions] Override http request option.\n * @throws {RequiredError}\n */\n getReassignmentConfigurationV1: async (identityId: string, xSailPointExperimental?: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {\n // verify required parameter 'identityId' is not null or undefined\n assertParamExists('getReassignmentConfigurationV1', 'identityId', identityId)\n if (xSailPointExperimental === undefined) {\n xSailPointExperimental = 'true';\n }\n \n const localVarPath = `/reassignment-configurations/v1/{identityId}`\n .replace(`{${\"identityId\"}}`, encodeURIComponent(String(identityId)));\n // use dummy base URL string because the URL constructor only accepts absolute URLs.\n const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);\n let baseOptions;\n if (configuration) {\n baseOptions = configuration.baseOptions;\n }\n\n const localVarRequestOptions = { method: 'GET', ...baseOptions, ...axiosOptions};\n const localVarHeaderParameter = {} as any;\n const localVarQueryParameter = {} as any;\n\n\n \n if (xSailPointExperimental != null) {\n localVarHeaderParameter['X-SailPoint-Experimental'] = String(xSailPointExperimental);\n }\n setSearchParams(localVarUrlObj, localVarQueryParameter);\n let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};\n localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};\n\n return {\n url: toPathString(localVarUrlObj),\n axiosOptions: localVarRequestOptions,\n };\n },\n /**\n * Gets the global Reassignment Configuration settings for the requestor\\'s tenant.\n * @summary Get tenant-wide reassignment configuration settings\n * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.\n * @param {*} [axiosOptions] Override http request option.\n * @throws {RequiredError}\n */\n getTenantConfigConfigurationV1: async (xSailPointExperimental?: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {\n if (xSailPointExperimental === undefined) {\n xSailPointExperimental = 'true';\n }\n \n const localVarPath = `/reassignment-configurations/v1/tenant-config`;\n // use dummy base URL string because the URL constructor only accepts absolute URLs.\n const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);\n let baseOptions;\n if (configuration) {\n baseOptions = configuration.baseOptions;\n }\n\n const localVarRequestOptions = { method: 'GET', ...baseOptions, ...axiosOptions};\n const localVarHeaderParameter = {} as any;\n const localVarQueryParameter = {} as any;\n\n\n \n if (xSailPointExperimental != null) {\n localVarHeaderParameter['X-SailPoint-Experimental'] = String(xSailPointExperimental);\n }\n setSearchParams(localVarUrlObj, localVarQueryParameter);\n let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};\n localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};\n\n return {\n url: toPathString(localVarUrlObj),\n axiosOptions: localVarRequestOptions,\n };\n },\n /**\n * Gets a paginated list of Reassignment configurations for the current org.\n * @summary List reassignment configurations\n * @param {number} [limit] Max number of results to return.\n * @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.\n * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.\n * @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.\n * @param {*} [axiosOptions] Override http request option.\n * @throws {RequiredError}\n */\n listReassignmentConfigurationsV1: async (limit?: number, offset?: number, xSailPointExperimental?: string, count?: boolean, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {\n if (xSailPointExperimental === undefined) {\n xSailPointExperimental = 'true';\n }\n \n const localVarPath = `/reassignment-configurations/v1`;\n // use dummy base URL string because the URL constructor only accepts absolute URLs.\n const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);\n let baseOptions;\n if (configuration) {\n baseOptions = configuration.baseOptions;\n }\n\n const localVarRequestOptions = { method: 'GET', ...baseOptions, ...axiosOptions};\n const localVarHeaderParameter = {} as any;\n const localVarQueryParameter = {} as any;\n\n if (limit !== undefined) {\n localVarQueryParameter['limit'] = limit;\n }\n\n if (offset !== undefined) {\n localVarQueryParameter['offset'] = offset;\n }\n\n if (count !== undefined) {\n localVarQueryParameter['count'] = count;\n }\n\n\n \n if (xSailPointExperimental != null) {\n localVarHeaderParameter['X-SailPoint-Experimental'] = String(xSailPointExperimental);\n }\n setSearchParams(localVarUrlObj, localVarQueryParameter);\n let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};\n localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};\n\n return {\n url: toPathString(localVarUrlObj),\n axiosOptions: localVarRequestOptions,\n };\n },\n /**\n * Replaces existing Reassignment configuration for an identity with the newly provided configuration.\n * @summary Update reassignment configuration\n * @param {string} identityId unique identity id\n * @param {ConfigurationItemRequest} configurationItemRequest \n * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.\n * @param {*} [axiosOptions] Override http request option.\n * @throws {RequiredError}\n */\n putReassignmentConfigV1: async (identityId: string, configurationItemRequest: ConfigurationItemRequest, xSailPointExperimental?: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {\n // verify required parameter 'identityId' is not null or undefined\n assertParamExists('putReassignmentConfigV1', 'identityId', identityId)\n // verify required parameter 'configurationItemRequest' is not null or undefined\n assertParamExists('putReassignmentConfigV1', 'configurationItemRequest', configurationItemRequest)\n if (xSailPointExperimental === undefined) {\n xSailPointExperimental = 'true';\n }\n \n const localVarPath = `/reassignment-configurations/v1/{identityId}`\n .replace(`{${\"identityId\"}}`, encodeURIComponent(String(identityId)));\n // use dummy base URL string because the URL constructor only accepts absolute URLs.\n const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);\n let baseOptions;\n if (configuration) {\n baseOptions = configuration.baseOptions;\n }\n\n const localVarRequestOptions = { method: 'PUT', ...baseOptions, ...axiosOptions};\n const localVarHeaderParameter = {} as any;\n const localVarQueryParameter = {} as any;\n\n\n \n localVarHeaderParameter['Content-Type'] = 'application/json';\n\n if (xSailPointExperimental != null) {\n localVarHeaderParameter['X-SailPoint-Experimental'] = String(xSailPointExperimental);\n }\n setSearchParams(localVarUrlObj, localVarQueryParameter);\n let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};\n localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};\n localVarRequestOptions.data = serializeDataIfNeeded(configurationItemRequest, localVarRequestOptions, configuration)\n\n return {\n url: toPathString(localVarUrlObj),\n axiosOptions: localVarRequestOptions,\n };\n },\n /**\n * Replaces existing Tenant-wide Reassignment Configuration settings with the newly provided settings.\n * @summary Update tenant-wide reassignment configuration settings\n * @param {TenantConfigurationRequest} tenantConfigurationRequest \n * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.\n * @param {*} [axiosOptions] Override http request option.\n * @throws {RequiredError}\n */\n putTenantConfigurationV1: async (tenantConfigurationRequest: TenantConfigurationRequest, xSailPointExperimental?: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {\n // verify required parameter 'tenantConfigurationRequest' is not null or undefined\n assertParamExists('putTenantConfigurationV1', 'tenantConfigurationRequest', tenantConfigurationRequest)\n if (xSailPointExperimental === undefined) {\n xSailPointExperimental = 'true';\n }\n \n const localVarPath = `/reassignment-configurations/v1/tenant-config`;\n // use dummy base URL string because the URL constructor only accepts absolute URLs.\n const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);\n let baseOptions;\n if (configuration) {\n baseOptions = configuration.baseOptions;\n }\n\n const localVarRequestOptions = { method: 'PUT', ...baseOptions, ...axiosOptions};\n const localVarHeaderParameter = {} as any;\n const localVarQueryParameter = {} as any;\n\n\n \n localVarHeaderParameter['Content-Type'] = 'application/json';\n\n if (xSailPointExperimental != null) {\n localVarHeaderParameter['X-SailPoint-Experimental'] = String(xSailPointExperimental);\n }\n setSearchParams(localVarUrlObj, localVarQueryParameter);\n let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};\n localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};\n localVarRequestOptions.data = serializeDataIfNeeded(tenantConfigurationRequest, localVarRequestOptions, configuration)\n\n return {\n url: toPathString(localVarUrlObj),\n axiosOptions: localVarRequestOptions,\n };\n },\n }\n};\n\n/**\n * WorkReassignmentApi - functional programming interface\n * @export\n */\nexport const WorkReassignmentApiFp = function(configuration?: Configuration) {\n const localVarAxiosParamCreator = WorkReassignmentApiAxiosParamCreator(configuration)\n return {\n /**\n * Creates a new Reassignment Configuration for the specified identity.\n * @summary Create a reassignment configuration\n * @param {ConfigurationItemRequest} configurationItemRequest \n * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.\n * @param {*} [axiosOptions] Override http request option.\n * @throws {RequiredError}\n */\n async createReassignmentConfigurationV1(configurationItemRequest: ConfigurationItemRequest, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ConfigurationItemResponse>> {\n const localVarAxiosArgs = await localVarAxiosParamCreator.createReassignmentConfigurationV1(configurationItemRequest, xSailPointExperimental, axiosOptions);\n const localVarOperationServerIndex = configuration?.serverIndex ?? 0;\n const localVarOperationServerBasePath = operationServerMap['WorkReassignmentApi.createReassignmentConfigurationV1']?.[localVarOperationServerIndex]?.url;\n return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);\n },\n /**\n * Deletes a single reassignment configuration for the specified identity\n * @summary Delete reassignment configuration\n * @param {string} identityId unique identity id\n * @param {ConfigTypeEnum} configType \n * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.\n * @param {*} [axiosOptions] Override http request option.\n * @throws {RequiredError}\n */\n async deleteReassignmentConfigurationV1(identityId: string, configType: ConfigTypeEnum, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {\n const localVarAxiosArgs = await localVarAxiosParamCreator.deleteReassignmentConfigurationV1(identityId, configType, xSailPointExperimental, axiosOptions);\n const localVarOperationServerIndex = configuration?.serverIndex ?? 0;\n const localVarOperationServerBasePath = operationServerMap['WorkReassignmentApi.deleteReassignmentConfigurationV1']?.[localVarOperationServerIndex]?.url;\n return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);\n },\n /**\n * Evaluates the Reassignment Configuration for an `Identity` to determine if work items for the specified type should be reassigned. If a valid Reassignment Configuration is found for the identity & work type, then a lookup is initiated which recursively fetches the Reassignment Configuration for the next `TargetIdentity` until no more results are found or a max depth of 5. That lookup trail is provided in the response and the final reassigned identity in the lookup list is returned as the `reassignToId` property. If no Reassignment Configuration is found for the specified identity & config type then the requested Identity ID will be used as the `reassignToId` value and the lookupTrail node will be empty.\n * @summary Evaluate reassignment configuration\n * @param {string} identityId unique identity id\n * @param {ConfigTypeEnum} configType Reassignment work type\n * @param {Array<string>} [exclusionFilters] Exclusion filters that disable parts of the reassignment evaluation. Possible values are listed below: - `SELF_REVIEW_DELEGATION`: This will exclude delegations of self-review reassignments\n * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.\n * @param {*} [axiosOptions] Override http request option.\n * @throws {RequiredError}\n */\n async getEvaluateReassignmentConfigurationV1(identityId: string, configType: ConfigTypeEnum, exclusionFilters?: Array<string>, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<EvaluateResponse>>> {\n const localVarAxiosArgs = await localVarAxiosParamCreator.getEvaluateReassignmentConfigurationV1(identityId, configType, exclusionFilters, xSailPointExperimental, axiosOptions);\n const localVarOperationServerIndex = configuration?.serverIndex ?? 0;\n const localVarOperationServerBasePath = operationServerMap['WorkReassignmentApi.getEvaluateReassignmentConfigurationV1']?.[localVarOperationServerIndex]?.url;\n return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);\n },\n /**\n * Gets a collection of types which are available in the Reassignment Configuration UI.\n * @summary List reassignment config types\n * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.\n * @param {*} [axiosOptions] Override http request option.\n * @throws {RequiredError}\n */\n async getReassignmentConfigTypesV1(xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<ConfigType>>> {\n const localVarAxiosArgs = await localVarAxiosParamCreator.getReassignmentConfigTypesV1(xSailPointExperimental, axiosOptions);\n const localVarOperationServerIndex = configuration?.serverIndex ?? 0;\n const localVarOperationServerBasePath = operationServerMap['WorkReassignmentApi.getReassignmentConfigTypesV1']?.[localVarOperationServerIndex]?.url;\n return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);\n },\n /**\n * Gets the Reassignment Configuration for an identity.\n * @summary Get reassignment configuration\n * @param {string} identityId unique identity id\n * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.\n * @param {*} [axiosOptions] Override http request option.\n * @throws {RequiredError}\n */\n async getReassignmentConfigurationV1(identityId: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ConfigurationResponse>> {\n const localVarAxiosArgs = await localVarAxiosParamCreator.getReassignmentConfigurationV1(identityId, xSailPointExperimental, axiosOptions);\n const localVarOperationServerIndex = configuration?.serverIndex ?? 0;\n const localVarOperationServerBasePath = operationServerMap['WorkReassignmentApi.getReassignmentConfigurationV1']?.[localVarOperationServerIndex]?.url;\n return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);\n },\n /**\n * Gets the global Reassignment Configuration settings for the requestor\\'s tenant.\n * @summary Get tenant-wide reassignment configuration settings\n * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.\n * @param {*} [axiosOptions] Override http request option.\n * @throws {RequiredError}\n */\n async getTenantConfigConfigurationV1(xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TenantConfigurationResponse>> {\n const localVarAxiosArgs = await localVarAxiosParamCreator.getTenantConfigConfigurationV1(xSailPointExperimental, axiosOptions);\n const localVarOperationServerIndex = configuration?.serverIndex ?? 0;\n const localVarOperationServerBasePath = operationServerMap['WorkReassignmentApi.getTenantConfigConfigurationV1']?.[localVarOperationServerIndex]?.url;\n return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);\n },\n /**\n * Gets a paginated list of Reassignment configurations for the current org.\n * @summary List reassignment configurations\n * @param {number} [limit] Max number of results to return.\n * @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.\n * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.\n * @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.\n * @param {*} [axiosOptions] Override http request option.\n * @throws {RequiredError}\n */\n async listReassignmentConfigurationsV1(limit?: number, offset?: number, xSailPointExperimental?: string, count?: boolean, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<ConfigurationResponse>>> {\n const localVarAxiosArgs = await localVarAxiosParamCreator.listReassignmentConfigurationsV1(limit, offset, xSailPointExperimental, count, axiosOptions);\n const localVarOperationServerIndex = configuration?.serverIndex ?? 0;\n const localVarOperationServerBasePath = operationServerMap['WorkReassignmentApi.listReassignmentConfigurationsV1']?.[localVarOperationServerIndex]?.url;\n return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);\n },\n /**\n * Replaces existing Reassignment configuration for an identity with the newly provided configuration.\n * @summary Update reassignment configuration\n * @param {string} identityId unique identity id\n * @param {ConfigurationItemRequest} configurationItemRequest \n * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.\n * @param {*} [axiosOptions] Override http request option.\n * @throws {RequiredError}\n */\n async putReassignmentConfigV1(identityId: string, configurationItemRequest: ConfigurationItemRequest, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ConfigurationItemResponse>> {\n const localVarAxiosArgs = await localVarAxiosParamCreator.putReassignmentConfigV1(identityId, configurationItemRequest, xSailPointExperimental, axiosOptions);\n const localVarOperationServerIndex = configuration?.serverIndex ?? 0;\n const localVarOperationServerBasePath = operationServerMap['WorkReassignmentApi.putReassignmentConfigV1']?.[localVarOperationServerIndex]?.url;\n return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);\n },\n /**\n * Replaces existing Tenant-wide Reassignment Configuration settings with the newly provided settings.\n * @summary Update tenant-wide reassignment configuration settings\n * @param {TenantConfigurationRequest} tenantConfigurationRequest \n * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.\n * @param {*} [axiosOptions] Override http request option.\n * @throws {RequiredError}\n */\n async putTenantConfigurationV1(tenantConfigurationRequest: TenantConfigurationRequest, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TenantConfigurationResponse>> {\n const localVarAxiosArgs = await localVarAxiosParamCreator.putTenantConfigurationV1(tenantConfigurationRequest, xSailPointExperimental, axiosOptions);\n const localVarOperationServerIndex = configuration?.serverIndex ?? 0;\n const localVarOperationServerBasePath = operationServerMap['WorkReassignmentApi.putTenantConfigurationV1']?.[localVarOperationServerIndex]?.url;\n return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);\n },\n }\n};\n\n/**\n * WorkReassignmentApi - factory interface\n * @export\n */\nexport const WorkReassignmentApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {\n const localVarFp = WorkReassignmentApiFp(configuration)\n return {\n /**\n * Creates a new Reassignment Configuration for the specified identity.\n * @summary Create a reassignment configuration\n * @param {WorkReassignmentApiCreateReassignmentConfigurationV1Request} requestParameters Request parameters.\n * @param {*} [axiosOptions] Override http request option.\n * @throws {RequiredError}\n */\n createReassignmentConfigurationV1(requestParameters: WorkReassignmentApiCreateReassignmentConfigurationV1Request, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<ConfigurationItemResponse> {\n return localVarFp.createReassignmentConfigurationV1(requestParameters.configurationItemRequest, requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(axios, basePath));\n },\n /**\n * Deletes a single reassignment configuration for the specified identity\n * @summary Delete reassignment configuration\n * @param {WorkReassignmentApiDeleteReassignmentConfigurationV1Request} requestParameters Request parameters.\n * @param {*} [axiosOptions] Override http request option.\n * @throws {RequiredError}\n */\n deleteReassignmentConfigurationV1(requestParameters: WorkReassignmentApiDeleteReassignmentConfigurationV1Request, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<void> {\n return localVarFp.deleteReassignmentConfigurationV1(requestParameters.identityId, requestParameters.configType, requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(axios, basePath));\n },\n /**\n * Evaluates the Reassignment Configuration for an `Identity` to determine if work items for the specified type should be reassigned. If a valid Reassignment Configuration is found for the identity & work type, then a lookup is initiated which recursively fetches the Reassignment Configuration for the next `TargetIdentity` until no more results are found or a max depth of 5. That lookup trail is provided in the response and the final reassigned identity in the lookup list is returned as the `reassignToId` property. If no Reassignment Configuration is found for the specified identity & config type then the requested Identity ID will be used as the `reassignToId` value and the lookupTrail node will be empty.\n * @summary Evaluate reassignment configuration\n * @param {WorkReassignmentApiGetEvaluateReassignmentConfigurationV1Request} requestParameters Request parameters.\n * @param {*} [axiosOptions] Override http request option.\n * @throws {RequiredError}\n */\n getEvaluateReassignmentConfigurationV1(requestParameters: WorkReassignmentApiGetEvaluateReassignmentConfigurationV1Request, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<EvaluateResponse>> {\n return localVarFp.getEvaluateReassignmentConfigurationV1(requestParameters.identityId, requestParameters.configType, requestParameters.exclusionFilters, requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(axios, basePath));\n },\n /**\n * Gets a collection of types which are available in the Reassignment Configuration UI.\n * @summary List reassignment config types\n * @param {WorkReassignmentApiGetReassignmentConfigTypesV1Request} requestParameters Request parameters.\n * @param {*} [axiosOptions] Override http request option.\n * @throws {RequiredError}\n */\n getReassignmentConfigTypesV1(requestParameters: WorkReassignmentApiGetReassignmentConfigTypesV1Request = {}, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<ConfigType>> {\n return localVarFp.getReassignmentConfigTypesV1(requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(axios, basePath));\n },\n /**\n * Gets the Reassignment Configuration for an identity.\n * @summary Get reassignment configuration\n * @param {WorkReassignmentApiGetReassignmentConfigurationV1Request} requestParameters Request parameters.\n * @param {*} [axiosOptions] Override http request option.\n * @throws {RequiredError}\n */\n getReassignmentConfigurationV1(requestParameters: WorkReassignmentApiGetReassignmentConfigurationV1Request, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<ConfigurationResponse> {\n return localVarFp.getReassignmentConfigurationV1(requestParameters.identityId, requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(axios, basePath));\n },\n /**\n * Gets the global Reassignment Configuration settings for the requestor\\'s tenant.\n * @summary Get tenant-wide reassignment configuration settings\n * @param {WorkReassignmentApiGetTenantConfigConfigurationV1Request} requestParameters Request parameters.\n * @param {*} [axiosOptions] Override http request option.\n * @throws {RequiredError}\n */\n getTenantConfigConfigurationV1(requestParameters: WorkReassignmentApiGetTenantConfigConfigurationV1Request = {}, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<TenantConfigurationResponse> {\n return localVarFp.getTenantConfigConfigurationV1(requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(axios, basePath));\n },\n /**\n * Gets a paginated list of Reassignment configurations for the current org.\n * @summary List reassignment configurations\n * @param {WorkReassignmentApiListReassignmentConfigurationsV1Request} requestParameters Request parameters.\n * @param {*} [axiosOptions] Override http request option.\n * @throws {RequiredError}\n */\n listReassignmentConfigurationsV1(requestParameters: WorkReassignmentApiListReassignmentConfigurationsV1Request = {}, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<ConfigurationResponse>> {\n return localVarFp.listReassignmentConfigurationsV1(requestParameters.limit, requestParameters.offset, requestParameters.xSailPointExperimental, requestParameters.count, axiosOptions).then((request) => request(axios, basePath));\n },\n /**\n * Replaces existing Reassignment configuration for an identity with the newly provided configuration.\n * @summary Update reassignment configuration\n * @param {WorkReassignmentApiPutReassignmentConfigV1Request} requestParameters Request parameters.\n * @param {*} [axiosOptions] Override http request option.\n * @throws {RequiredError}\n */\n putReassignmentConfigV1(requestParameters: WorkReassignmentApiPutReassignmentConfigV1Request, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<ConfigurationItemResponse> {\n return localVarFp.putReassignmentConfigV1(requestParameters.identityId, requestParameters.configurationItemRequest, requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(axios, basePath));\n },\n /**\n * Replaces existing Tenant-wide Reassignment Configuration settings with the newly provided settings.\n * @summary Update tenant-wide reassignment configuration settings\n * @param {WorkReassignmentApiPutTenantConfigurationV1Request} requestParameters Request parameters.\n * @param {*} [axiosOptions] Override http request option.\n * @throws {RequiredError}\n */\n putTenantConfigurationV1(requestParameters: WorkReassignmentApiPutTenantConfigurationV1Request, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<TenantConfigurationResponse> {\n return localVarFp.putTenantConfigurationV1(requestParameters.tenantConfigurationRequest, requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(axios, basePath));\n },\n };\n};\n\n/**\n * Request parameters for createReassignmentConfigurationV1 operation in WorkReassignmentApi.\n * @export\n * @interface WorkReassignmentApiCreateReassignmentConfigurationV1Request\n */\nexport interface WorkReassignmentApiCreateReassignmentConfigurationV1Request {\n /**\n * \n * @type {ConfigurationItemRequest}\n * @memberof WorkReassignmentApiCreateReassignmentConfigurationV1\n */\n readonly configurationItemRequest: ConfigurationItemRequest\n\n /**\n * Use this header to enable this experimental API.\n * @type {string}\n * @memberof WorkReassignmentApiCreateReassignmentConfigurationV1\n */\n readonly xSailPointExperimental?: string\n}\n\n/**\n * Request parameters for deleteReassignmentConfigurationV1 operation in WorkReassignmentApi.\n * @export\n * @interface WorkReassignmentApiDeleteReassignmentConfigurationV1Request\n */\nexport interface WorkReassignmentApiDeleteReassignmentConfigurationV1Request {\n /**\n * unique identity id\n * @type {string}\n * @memberof WorkReassignmentApiDeleteReassignmentConfigurationV1\n */\n readonly identityId: string\n\n /**\n * \n * @type {ConfigTypeEnum}\n * @memberof WorkReassignmentApiDeleteReassignmentConfigurationV1\n */\n readonly configType: ConfigTypeEnum\n\n /**\n * Use this header to enable this experimental API.\n * @type {string}\n * @memberof WorkReassignmentApiDeleteReassignmentConfigurationV1\n */\n readonly xSailPointExperimental?: string\n}\n\n/**\n * Request parameters for getEvaluateReassignmentConfigurationV1 operation in WorkReassignmentApi.\n * @export\n * @interface WorkReassignmentApiGetEvaluateReassignmentConfigurationV1Request\n */\nexport interface WorkReassignmentApiGetEvaluateReassignmentConfigurationV1Request {\n /**\n * unique identity id\n * @type {string}\n * @memberof WorkReassignmentApiGetEvaluateReassignmentConfigurationV1\n */\n readonly identityId: string\n\n /**\n * Reassignment work type\n * @type {ConfigTypeEnum}\n * @memberof WorkReassignmentApiGetEvaluateReassignmentConfigurationV1\n */\n readonly configType: ConfigTypeEnum\n\n /**\n * Exclusion filters that disable parts of the reassignment evaluation. Possible values are listed below: - `SELF_REVIEW_DELEGATION`: This will exclude delegations of self-review reassignments\n * @type {Array<string>}\n * @memberof WorkReassignmentApiGetEvaluateReassignmentConfigurationV1\n */\n readonly exclusionFilters?: Array<string>\n\n /**\n * Use this header to enable this experimental API.\n * @type {string}\n * @memberof WorkReassignmentApiGetEvaluateReassignmentConfigurationV1\n */\n readonly xSailPointExperimental?: string\n}\n\n/**\n * Request parameters for getReassignmentConfigTypesV1 operation in WorkReassignmentApi.\n * @export\n * @interface WorkReassignmentApiGetReassignmentConfigTypesV1Request\n */\nexport interface WorkReassignmentApiGetReassignmentConfigTypesV1Request {\n /**\n * Use this header to enable this experimental API.\n * @type {string}\n * @memberof WorkReassignmentApiGetReassignmentConfigTypesV1\n */\n readonly xSailPointExperimental?: string\n}\n\n/**\n * Request parameters for getReassignmentConfigurationV1 operation in WorkReassignmentApi.\n * @export\n * @interface WorkReassignmentApiGetReassignmentConfigurationV1Request\n */\nexport interface WorkReassignmentApiGetReassignmentConfigurationV1Request {\n /**\n * unique identity id\n * @type {string}\n * @memberof WorkReassignmentApiGetReassignmentConfigurationV1\n */\n readonly identityId: string\n\n /**\n * Use this header to enable this experimental API.\n * @type {string}\n * @memberof WorkReassignmentApiGetReassignmentConfigurationV1\n */\n readonly xSailPointExperimental?: string\n}\n\n/**\n * Request parameters for getTenantConfigConfigurationV1 operation in WorkReassignmentApi.\n * @export\n * @interface WorkReassignmentApiGetTenantConfigConfigurationV1Request\n */\nexport interface WorkReassignmentApiGetTenantConfigConfigurationV1Request {\n /**\n * Use this header to enable this experimental API.\n * @type {string}\n * @memberof WorkReassignmentApiGetTenantConfigConfigurationV1\n */\n readonly xSailPointExperimental?: string\n}\n\n/**\n * Request parameters for listReassignmentConfigurationsV1 operation in WorkReassignmentApi.\n * @export\n * @interface WorkReassignmentApiListReassignmentConfigurationsV1Request\n */\nexport interface WorkReassignmentApiListReassignmentConfigurationsV1Request {\n /**\n * Max number of results to return.\n * @type {number}\n * @memberof WorkReassignmentApiListReassignmentConfigurationsV1\n */\n readonly limit?: number\n\n /**\n * 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.\n * @type {number}\n * @memberof WorkReassignmentApiListReassignmentConfigurationsV1\n */\n readonly offset?: number\n\n /**\n * Use this header to enable this experimental API.\n * @type {string}\n * @memberof WorkReassignmentApiListReassignmentConfigurationsV1\n */\n readonly xSailPointExperimental?: string\n\n /**\n * 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.\n * @type {boolean}\n * @memberof WorkReassignmentApiListReassignmentConfigurationsV1\n */\n readonly count?: boolean\n}\n\n/**\n * Request parameters for putReassignmentConfigV1 operation in WorkReassignmentApi.\n * @export\n * @interface WorkReassignmentApiPutReassignmentConfigV1Request\n */\nexport interface WorkReassignmentApiPutReassignmentConfigV1Request {\n /**\n * unique identity id\n * @type {string}\n * @memberof WorkReassignmentApiPutReassignmentConfigV1\n */\n readonly identityId: string\n\n /**\n * \n * @type {ConfigurationItemRequest}\n * @memberof WorkReassignmentApiPutReassignmentConfigV1\n */\n readonly configurationItemRequest: ConfigurationItemRequest\n\n /**\n * Use this header to enable this experimental API.\n * @type {string}\n * @memberof WorkReassignmentApiPutReassignmentConfigV1\n */\n readonly xSailPointExperimental?: string\n}\n\n/**\n * Request parameters for putTenantConfigurationV1 operation in WorkReassignmentApi.\n * @export\n * @interface WorkReassignmentApiPutTenantConfigurationV1Request\n */\nexport interface WorkReassignmentApiPutTenantConfigurationV1Request {\n /**\n * \n * @type {TenantConfigurationRequest}\n * @memberof WorkReassignmentApiPutTenantConfigurationV1\n */\n readonly tenantConfigurationRequest: TenantConfigurationRequest\n\n /**\n * Use this header to enable this experimental API.\n * @type {string}\n * @memberof WorkReassignmentApiPutTenantConfigurationV1\n */\n readonly xSailPointExperimental?: string\n}\n\n/**\n * WorkReassignmentApi - object-oriented interface\n * @export\n * @class WorkReassignmentApi\n * @extends {BaseAPI}\n */\nexport class WorkReassignmentApi extends BaseAPI {\n /**\n * Creates a new Reassignment Configuration for the specified identity.\n * @summary Create a reassignment configuration\n * @param {WorkReassignmentApiCreateReassignmentConfigurationV1Request} requestParameters Request parameters.\n * @param {*} [axiosOptions] Override http request option.\n * @throws {RequiredError}\n * @memberof WorkReassignmentApi\n */\n public createReassignmentConfigurationV1(requestParameters: WorkReassignmentApiCreateReassignmentConfigurationV1Request, axiosOptions?: RawAxiosRequestConfig) {\n return WorkReassignmentApiFp(this.configuration).createReassignmentConfigurationV1(requestParameters.configurationItemRequest, requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(this.axios, this.basePath));\n }\n\n /**\n * Deletes a single reassignment configuration for the specified identity\n * @summary Delete reassignment configuration\n * @param {WorkReassignmentApiDeleteReassignmentConfigurationV1Request} requestParameters Request parameters.\n * @param {*} [axiosOptions] Override http request option.\n * @throws {RequiredError}\n * @memberof WorkReassignmentApi\n */\n public deleteReassignmentConfigurationV1(requestParameters: WorkReassignmentApiDeleteReassignmentConfigurationV1Request, axiosOptions?: RawAxiosRequestConfig) {\n return WorkReassignmentApiFp(this.configuration).deleteReassignmentConfigurationV1(requestParameters.identityId, requestParameters.configType, requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(this.axios, this.basePath));\n }\n\n /**\n * Evaluates the Reassignment Configuration for an `Identity` to determine if work items for the specified type should be reassigned. If a valid Reassignment Configuration is found for the identity & work type, then a lookup is initiated which recursively fetches the Reassignment Configuration for the next `TargetIdentity` until no more results are found or a max depth of 5. That lookup trail is provided in the response and the final reassigned identity in the lookup list is returned as the `reassignToId` property. If no Reassignment Configuration is found for the specified identity & config type then the requested Identity ID will be used as the `reassignToId` value and the lookupTrail node will be empty.\n * @summary Evaluate reassignment configuration\n * @param {WorkReassignmentApiGetEvaluateReassignmentConfigurationV1Request} requestParameters Request parameters.\n * @param {*} [axiosOptions] Override http request option.\n * @throws {RequiredError}\n * @memberof WorkReassignmentApi\n */\n public getEvaluateReassignmentConfigurationV1(requestParameters: WorkReassignmentApiGetEvaluateReassignmentConfigurationV1Request, axiosOptions?: RawAxiosRequestConfig) {\n return WorkReassignmentApiFp(this.configuration).getEvaluateReassignmentConfigurationV1(requestParameters.identityId, requestParameters.configType, requestParameters.exclusionFilters, requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(this.axios, this.basePath));\n }\n\n /**\n * Gets a collection of types which are available in the Reassignment Configuration UI.\n * @summary List reassignment config types\n * @param {WorkReassignmentApiGetReassignmentConfigTypesV1Request} requestParameters Request parameters.\n * @param {*} [axiosOptions] Override http request option.\n * @throws {RequiredError}\n * @memberof WorkReassignmentApi\n */\n public getReassignmentConfigTypesV1(requestParameters: WorkReassignmentApiGetReassignmentConfigTypesV1Request = {}, axiosOptions?: RawAxiosRequestConfig) {\n return WorkReassignmentApiFp(this.configuration).getReassignmentConfigTypesV1(requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(this.axios, this.basePath));\n }\n\n /**\n * Gets the Reassignment Configuration for an identity.\n * @summary Get reassignment configuration\n * @param {WorkReassignmentApiGetReassignmentConfigurationV1Request} requestParameters Request parameters.\n * @param {*} [axiosOptions] Override http request option.\n * @throws {RequiredError}\n * @memberof WorkReassignmentApi\n */\n public getReassignmentConfigurationV1(requestParameters: WorkReassignmentApiGetReassignmentConfigurationV1Request, axiosOptions?: RawAxiosRequestConfig) {\n return WorkReassignmentApiFp(this.configuration).getReassignmentConfigurationV1(requestParameters.identityId, requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(this.axios, this.basePath));\n }\n\n /**\n * Gets the global Reassignment Configuration settings for the requestor\\'s tenant.\n * @summary Get tenant-wide reassignment configuration settings\n * @param {WorkReassignmentApiGetTenantConfigConfigurationV1Request} requestParameters Request parameters.\n * @param {*} [axiosOptions] Override http request option.\n * @throws {RequiredError}\n * @memberof WorkReassignmentApi\n */\n public getTenantConfigConfigurationV1(requestParameters: WorkReassignmentApiGetTenantConfigConfigurationV1Request = {}, axiosOptions?: RawAxiosRequestConfig) {\n return WorkReassignmentApiFp(this.configuration).getTenantConfigConfigurationV1(requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(this.axios, this.basePath));\n }\n\n /**\n * Gets a paginated list of Reassignment configurations for the current org.\n * @summary List reassignment configurations\n * @param {WorkReassignmentApiListReassignmentConfigurationsV1Request} requestParameters Request parameters.\n * @param {*} [axiosOptions] Override http request option.\n * @throws {RequiredError}\n * @memberof WorkReassignmentApi\n */\n public listReassignmentConfigurationsV1(requestParameters: WorkReassignmentApiListReassignmentConfigurationsV1Request = {}, axiosOptions?: RawAxiosRequestConfig) {\n return WorkReassignmentApiFp(this.configuration).listReassignmentConfigurationsV1(requestParameters.limit, requestParameters.offset, requestParameters.xSailPointExperimental, requestParameters.count, axiosOptions).then((request) => request(this.axios, this.basePath));\n }\n\n /**\n * Replaces existing Reassignment configuration for an identity with the newly provided configuration.\n * @summary Update reassignment configuration\n * @param {WorkReassignmentApiPutReassignmentConfigV1Request} requestParameters Request parameters.\n * @param {*} [axiosOptions] Override http request option.\n * @throws {RequiredError}\n * @memberof WorkReassignmentApi\n */\n public putReassignmentConfigV1(requestParameters: WorkReassignmentApiPutReassignmentConfigV1Request, axiosOptions?: RawAxiosRequestConfig) {\n return WorkReassignmentApiFp(this.configuration).putReassignmentConfigV1(requestParameters.identityId, requestParameters.configurationItemRequest, requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(this.axios, this.basePath));\n }\n\n /**\n * Replaces existing Tenant-wide Reassignment Configuration settings with the newly provided settings.\n * @summary Update tenant-wide reassignment configuration settings\n * @param {WorkReassignmentApiPutTenantConfigurationV1Request} requestParameters Request parameters.\n * @param {*} [axiosOptions] Override http request option.\n * @throws {RequiredError}\n * @memberof WorkReassignmentApi\n */\n public putTenantConfigurationV1(requestParameters: WorkReassignmentApiPutTenantConfigurationV1Request, axiosOptions?: RawAxiosRequestConfig) {\n return WorkReassignmentApiFp(this.configuration).putTenantConfigurationV1(requestParameters.tenantConfigurationRequest, requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(this.axios, this.basePath));\n }\n}\n\n\n\n"]}
|