sailpoint-api-client 1.7.1 → 1.7.5

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.
Files changed (45) hide show
  1. package/beta/.openapi-generator/VERSION +1 -1
  2. package/beta/README.md +2 -2
  3. package/beta/api.ts +485 -56
  4. package/beta/common.ts +2 -2
  5. package/beta/package.json +1 -1
  6. package/dist/beta/api.d.ts +258 -39
  7. package/dist/beta/api.js +475 -28
  8. package/dist/beta/api.js.map +1 -1
  9. package/dist/beta/common.js +1 -1
  10. package/dist/index.spec.js +3 -3
  11. package/dist/index.spec.js.map +1 -1
  12. package/dist/v2024/api.d.ts +275 -69
  13. package/dist/v2024/api.js +497 -63
  14. package/dist/v2024/api.js.map +1 -1
  15. package/dist/v2024/common.js +1 -1
  16. package/dist/v2025/api.d.ts +848 -94
  17. package/dist/v2025/api.js +1224 -126
  18. package/dist/v2025/api.js.map +1 -1
  19. package/dist/v2025/common.js +1 -1
  20. package/dist/v2026/common.js +1 -1
  21. package/dist/v3/api.d.ts +21 -8
  22. package/dist/v3/api.js +9 -8
  23. package/dist/v3/api.js.map +1 -1
  24. package/dist/v3/common.js +1 -1
  25. package/index.spec.ts +3 -3
  26. package/package.json +15 -2
  27. package/v2024/.openapi-generator/VERSION +1 -1
  28. package/v2024/README.md +2 -2
  29. package/v2024/api.ts +509 -109
  30. package/v2024/common.ts +2 -2
  31. package/v2024/package.json +1 -1
  32. package/v2025/.openapi-generator/VERSION +1 -1
  33. package/v2025/README.md +2 -2
  34. package/v2025/api.ts +1436 -193
  35. package/v2025/common.ts +2 -2
  36. package/v2025/package.json +1 -1
  37. package/v2026/.openapi-generator/VERSION +1 -1
  38. package/v2026/README.md +2 -2
  39. package/v2026/common.ts +2 -2
  40. package/v2026/package.json +1 -1
  41. package/v3/.openapi-generator/VERSION +1 -1
  42. package/v3/README.md +2 -2
  43. package/v3/api.ts +22 -9
  44. package/v3/common.ts +2 -2
  45. package/v3/package.json +1 -1
@@ -250,7 +250,7 @@ var createRequestFunction = function (axiosArgs, globalAxios, BASE_PATH, configu
250
250
  if (axios === void 0) { axios = globalAxios; }
251
251
  if (basePath === void 0) { basePath = BASE_PATH; }
252
252
  (0, axios_retry_1.default)(axios, configuration.retriesConfig);
253
- var headers = __assign(__assign({ 'User-Agent': 'OpenAPI-Generator/1.7.1/ts' }, axiosArgs.axiosOptions.headers), { 'X-SailPoint-SDK': 'typescript-1.7.1' });
253
+ var headers = __assign(__assign({ 'User-Agent': 'OpenAPI-Generator/1.7.5/ts' }, axiosArgs.axiosOptions.headers), { 'X-SailPoint-SDK': 'typescript-1.7.5' });
254
254
  if (!configuration.experimental && ("X-SailPoint-Experimental" in headers)) {
255
255
  throw new Error("You are using Experimental APIs. Set configuration.experimental = True to enable these APIs in the SDK.");
256
256
  }
@@ -250,7 +250,7 @@ var createRequestFunction = function (axiosArgs, globalAxios, BASE_PATH, configu
250
250
  if (axios === void 0) { axios = globalAxios; }
251
251
  if (basePath === void 0) { basePath = BASE_PATH; }
252
252
  (0, axios_retry_1.default)(axios, configuration.retriesConfig);
253
- var headers = __assign(__assign({ 'User-Agent': 'OpenAPI-Generator/1.7.1/ts' }, axiosArgs.axiosOptions.headers), { 'X-SailPoint-SDK': 'typescript-1.7.1' });
253
+ var headers = __assign(__assign({ 'User-Agent': 'OpenAPI-Generator/1.7.5/ts' }, axiosArgs.axiosOptions.headers), { 'X-SailPoint-SDK': 'typescript-1.7.5' });
254
254
  if (!configuration.experimental && ("X-SailPoint-Experimental" in headers)) {
255
255
  throw new Error("You are using Experimental APIs. Set configuration.experimental = True to enable these APIs in the SDK.");
256
256
  }
package/dist/v3/api.d.ts CHANGED
@@ -1400,13 +1400,14 @@ export interface AccessRequestTracking {
1400
1400
  'accessRequestIds'?: Array<string>;
1401
1401
  }
1402
1402
  /**
1403
- * Access request type. Defaults to GRANT_ACCESS. REVOKE_ACCESS type can only have a single Identity ID in the requestedFor field.
1403
+ * Access request type. Defaults to GRANT_ACCESS. REVOKE_ACCESS type can only have a single Identity ID in the requestedFor field. MODIFY_ACCESS type is used for updating access expiration dates or other access modifications.
1404
1404
  * @export
1405
1405
  * @enum {string}
1406
1406
  */
1407
1407
  export declare const AccessRequestType: {
1408
1408
  readonly GrantAccess: "GRANT_ACCESS";
1409
1409
  readonly RevokeAccess: "REVOKE_ACCESS";
1410
+ readonly ModifyAccess: "MODIFY_ACCESS";
1410
1411
  };
1411
1412
  export type AccessRequestType = typeof AccessRequestType[keyof typeof AccessRequestType];
1412
1413
  /**
@@ -17012,6 +17013,18 @@ export interface RequestabilityForRole {
17012
17013
  * @memberof RequestabilityForRole
17013
17014
  */
17014
17015
  'reauthorizationRequired'?: boolean | null;
17016
+ /**
17017
+ * Indicates whether the requester of the containing object must provide access end date.
17018
+ * @type {boolean}
17019
+ * @memberof RequestabilityForRole
17020
+ */
17021
+ 'requireEndDate'?: boolean;
17022
+ /**
17023
+ *
17024
+ * @type {AccessDuration}
17025
+ * @memberof RequestabilityForRole
17026
+ */
17027
+ 'maxPermittedAccessDuration'?: AccessDuration | null;
17015
17028
  /**
17016
17029
  * List describing the steps in approving the request
17017
17030
  * @type {Array<ApprovalSchemeForRole>}
@@ -25820,7 +25833,7 @@ export declare const AccessRequestsApiAxiosParamCreator: (configuration?: Config
25820
25833
  * @param {boolean} [count] If this is true, the *X-Total-Count* response header populates with the number of results that would be returned if limit and offset were ignored.
25821
25834
  * @param {number} [limit] Max number of results to return.
25822
25835
  * @param {number} [offset] Offset into the full result set. Usually specified with *limit* to paginate through the results. Defaults to 0 if not specified.
25823
- * @param {string} [filters] Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **accessRequestId**: *eq, in, ge, gt, le, lt, ne, sw* **accountActivityItemId**: *eq, in, ge, gt, le, lt, ne, isnull, sw* **created**: *eq, in, ge, gt, le, lt, ne, isnull, sw*
25836
+ * @param {string} [filters] Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **accessRequestId**: *eq, ge, gt, le, lt, ne, sw* **accountActivityItemId**: *eq, in, ge, gt, le, ne, sw* **created**: *eq, ge, gt, le, lt, ne*
25824
25837
  * @param {string} [sorters] Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) Sorting is supported for the following fields: **created, modified, accountActivityItemId, name**
25825
25838
  * @param {string} [requestState] Filter the results by the state of the request. The only valid value is *EXECUTING*.
25826
25839
  * @param {*} [axiosOptions] Override http request option.
@@ -25874,7 +25887,7 @@ export declare const AccessRequestsApiFp: (configuration?: Configuration) => {
25874
25887
  * @param {boolean} [count] If this is true, the *X-Total-Count* response header populates with the number of results that would be returned if limit and offset were ignored.
25875
25888
  * @param {number} [limit] Max number of results to return.
25876
25889
  * @param {number} [offset] Offset into the full result set. Usually specified with *limit* to paginate through the results. Defaults to 0 if not specified.
25877
- * @param {string} [filters] Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **accessRequestId**: *eq, in, ge, gt, le, lt, ne, sw* **accountActivityItemId**: *eq, in, ge, gt, le, lt, ne, isnull, sw* **created**: *eq, in, ge, gt, le, lt, ne, isnull, sw*
25890
+ * @param {string} [filters] Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **accessRequestId**: *eq, ge, gt, le, lt, ne, sw* **accountActivityItemId**: *eq, in, ge, gt, le, ne, sw* **created**: *eq, ge, gt, le, lt, ne*
25878
25891
  * @param {string} [sorters] Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) Sorting is supported for the following fields: **created, modified, accountActivityItemId, name**
25879
25892
  * @param {string} [requestState] Filter the results by the state of the request. The only valid value is *EXECUTING*.
25880
25893
  * @param {*} [axiosOptions] Override http request option.
@@ -26010,7 +26023,7 @@ export interface AccessRequestsApiListAccessRequestStatusRequest {
26010
26023
  */
26011
26024
  readonly offset?: number;
26012
26025
  /**
26013
- * Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **accessRequestId**: *eq, in, ge, gt, le, lt, ne, sw* **accountActivityItemId**: *eq, in, ge, gt, le, lt, ne, isnull, sw* **created**: *eq, in, ge, gt, le, lt, ne, isnull, sw*
26026
+ * Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **accessRequestId**: *eq, ge, gt, le, lt, ne, sw* **accountActivityItemId**: *eq, in, ge, gt, le, ne, sw* **created**: *eq, ge, gt, le, lt, ne*
26014
26027
  * @type {string}
26015
26028
  * @memberof AccessRequestsApiListAccessRequestStatus
26016
26029
  */
@@ -40186,7 +40199,7 @@ export declare const SearchApiAxiosParamCreator: (configuration?: Configuration)
40186
40199
  */
40187
40200
  searchGet: (index: SearchGetIndexV3, id: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
40188
40201
  /**
40189
- * Perform a search with the provided query and return a matching result collection. To page past 10,000 records, you can use `searchAfter` paging. Refer to [Paginating Search Queries](https://developer.sailpoint.com/idn/api/standard-collection-parameters#paginating-search-queries) for more information about how to implement `searchAfter` paging.
40202
+ * Perform a search with the provided query and return a matching result collection. To page past 10,000 records, you can use `searchAfter` paging. Refer to [Paginating Search Queries](https://developer.sailpoint.com/idn/api/standard-collection-parameters#paginating-search-queries) for more information about how to implement `searchAfter` paging. The search query itself has a size limitation of approximately 800 objects when filtering by large lists of IDs or values (e.g., using `terms` filters with extensive lists).
40190
40203
  * @summary Perform search
40191
40204
  * @param {Search} search
40192
40205
  * @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.
@@ -40231,7 +40244,7 @@ export declare const SearchApiFp: (configuration?: Configuration) => {
40231
40244
  */
40232
40245
  searchGet(index: SearchGetIndexV3, id: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SearchDocument>>;
40233
40246
  /**
40234
- * Perform a search with the provided query and return a matching result collection. To page past 10,000 records, you can use `searchAfter` paging. Refer to [Paginating Search Queries](https://developer.sailpoint.com/idn/api/standard-collection-parameters#paginating-search-queries) for more information about how to implement `searchAfter` paging.
40247
+ * Perform a search with the provided query and return a matching result collection. To page past 10,000 records, you can use `searchAfter` paging. Refer to [Paginating Search Queries](https://developer.sailpoint.com/idn/api/standard-collection-parameters#paginating-search-queries) for more information about how to implement `searchAfter` paging. The search query itself has a size limitation of approximately 800 objects when filtering by large lists of IDs or values (e.g., using `terms` filters with extensive lists).
40235
40248
  * @summary Perform search
40236
40249
  * @param {Search} search
40237
40250
  * @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.
@@ -40272,7 +40285,7 @@ export declare const SearchApiFactory: (configuration?: Configuration, basePath?
40272
40285
  */
40273
40286
  searchGet(requestParameters: SearchApiSearchGetRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<SearchDocument>;
40274
40287
  /**
40275
- * Perform a search with the provided query and return a matching result collection. To page past 10,000 records, you can use `searchAfter` paging. Refer to [Paginating Search Queries](https://developer.sailpoint.com/idn/api/standard-collection-parameters#paginating-search-queries) for more information about how to implement `searchAfter` paging.
40288
+ * Perform a search with the provided query and return a matching result collection. To page past 10,000 records, you can use `searchAfter` paging. Refer to [Paginating Search Queries](https://developer.sailpoint.com/idn/api/standard-collection-parameters#paginating-search-queries) for more information about how to implement `searchAfter` paging. The search query itself has a size limitation of approximately 800 objects when filtering by large lists of IDs or values (e.g., using `terms` filters with extensive lists).
40276
40289
  * @summary Perform search
40277
40290
  * @param {SearchApiSearchPostRequest} requestParameters Request parameters.
40278
40291
  * @param {*} [axiosOptions] Override http request option.
@@ -40409,7 +40422,7 @@ export declare class SearchApi extends BaseAPI {
40409
40422
  */
40410
40423
  searchGet(requestParameters: SearchApiSearchGetRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SearchDocument, any>>;
40411
40424
  /**
40412
- * Perform a search with the provided query and return a matching result collection. To page past 10,000 records, you can use `searchAfter` paging. Refer to [Paginating Search Queries](https://developer.sailpoint.com/idn/api/standard-collection-parameters#paginating-search-queries) for more information about how to implement `searchAfter` paging.
40425
+ * Perform a search with the provided query and return a matching result collection. To page past 10,000 records, you can use `searchAfter` paging. Refer to [Paginating Search Queries](https://developer.sailpoint.com/idn/api/standard-collection-parameters#paginating-search-queries) for more information about how to implement `searchAfter` paging. The search query itself has a size limitation of approximately 800 objects when filtering by large lists of IDs or values (e.g., using `terms` filters with extensive lists).
40413
40426
  * @summary Perform search
40414
40427
  * @param {SearchApiSearchPostRequest} requestParameters Request parameters.
40415
40428
  * @param {*} [axiosOptions] Override http request option.
package/dist/v3/api.js CHANGED
@@ -161,13 +161,14 @@ exports.AccessRequestPhasesResultV3 = {
161
161
  Failed: 'FAILED'
162
162
  };
163
163
  /**
164
- * Access request type. Defaults to GRANT_ACCESS. REVOKE_ACCESS type can only have a single Identity ID in the requestedFor field.
164
+ * Access request type. Defaults to GRANT_ACCESS. REVOKE_ACCESS type can only have a single Identity ID in the requestedFor field. MODIFY_ACCESS type is used for updating access expiration dates or other access modifications.
165
165
  * @export
166
166
  * @enum {string}
167
167
  */
168
168
  exports.AccessRequestType = {
169
169
  GrantAccess: 'GRANT_ACCESS',
170
- RevokeAccess: 'REVOKE_ACCESS'
170
+ RevokeAccess: 'REVOKE_ACCESS',
171
+ ModifyAccess: 'MODIFY_ACCESS'
171
172
  };
172
173
  /**
173
174
  * Access type of API Client indicating online or offline use
@@ -3684,7 +3685,7 @@ var AccessRequestsApiAxiosParamCreator = function (configuration) {
3684
3685
  * @param {boolean} [count] If this is true, the *X-Total-Count* response header populates with the number of results that would be returned if limit and offset were ignored.
3685
3686
  * @param {number} [limit] Max number of results to return.
3686
3687
  * @param {number} [offset] Offset into the full result set. Usually specified with *limit* to paginate through the results. Defaults to 0 if not specified.
3687
- * @param {string} [filters] Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **accessRequestId**: *eq, in, ge, gt, le, lt, ne, sw* **accountActivityItemId**: *eq, in, ge, gt, le, lt, ne, isnull, sw* **created**: *eq, in, ge, gt, le, lt, ne, isnull, sw*
3688
+ * @param {string} [filters] Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **accessRequestId**: *eq, ge, gt, le, lt, ne, sw* **accountActivityItemId**: *eq, in, ge, gt, le, ne, sw* **created**: *eq, ge, gt, le, lt, ne*
3688
3689
  * @param {string} [sorters] Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) Sorting is supported for the following fields: **created, modified, accountActivityItemId, name**
3689
3690
  * @param {string} [requestState] Filter the results by the state of the request. The only valid value is *EXECUTING*.
3690
3691
  * @param {*} [axiosOptions] Override http request option.
@@ -3905,7 +3906,7 @@ var AccessRequestsApiFp = function (configuration) {
3905
3906
  * @param {boolean} [count] If this is true, the *X-Total-Count* response header populates with the number of results that would be returned if limit and offset were ignored.
3906
3907
  * @param {number} [limit] Max number of results to return.
3907
3908
  * @param {number} [offset] Offset into the full result set. Usually specified with *limit* to paginate through the results. Defaults to 0 if not specified.
3908
- * @param {string} [filters] Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **accessRequestId**: *eq, in, ge, gt, le, lt, ne, sw* **accountActivityItemId**: *eq, in, ge, gt, le, lt, ne, isnull, sw* **created**: *eq, in, ge, gt, le, lt, ne, isnull, sw*
3909
+ * @param {string} [filters] Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **accessRequestId**: *eq, ge, gt, le, lt, ne, sw* **accountActivityItemId**: *eq, in, ge, gt, le, ne, sw* **created**: *eq, ge, gt, le, lt, ne*
3909
3910
  * @param {string} [sorters] Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) Sorting is supported for the following fields: **created, modified, accountActivityItemId, name**
3910
3911
  * @param {string} [requestState] Filter the results by the state of the request. The only valid value is *EXECUTING*.
3911
3912
  * @param {*} [axiosOptions] Override http request option.
@@ -32185,7 +32186,7 @@ var SearchApiAxiosParamCreator = function (configuration) {
32185
32186
  });
32186
32187
  },
32187
32188
  /**
32188
- * Perform a search with the provided query and return a matching result collection. To page past 10,000 records, you can use `searchAfter` paging. Refer to [Paginating Search Queries](https://developer.sailpoint.com/idn/api/standard-collection-parameters#paginating-search-queries) for more information about how to implement `searchAfter` paging.
32189
+ * Perform a search with the provided query and return a matching result collection. To page past 10,000 records, you can use `searchAfter` paging. Refer to [Paginating Search Queries](https://developer.sailpoint.com/idn/api/standard-collection-parameters#paginating-search-queries) for more information about how to implement `searchAfter` paging. The search query itself has a size limitation of approximately 800 objects when filtering by large lists of IDs or values (e.g., using `terms` filters with extensive lists).
32189
32190
  * @summary Perform search
32190
32191
  * @param {Search} search
32191
32192
  * @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.
@@ -32344,7 +32345,7 @@ var SearchApiFp = function (configuration) {
32344
32345
  });
32345
32346
  },
32346
32347
  /**
32347
- * Perform a search with the provided query and return a matching result collection. To page past 10,000 records, you can use `searchAfter` paging. Refer to [Paginating Search Queries](https://developer.sailpoint.com/idn/api/standard-collection-parameters#paginating-search-queries) for more information about how to implement `searchAfter` paging.
32348
+ * Perform a search with the provided query and return a matching result collection. To page past 10,000 records, you can use `searchAfter` paging. Refer to [Paginating Search Queries](https://developer.sailpoint.com/idn/api/standard-collection-parameters#paginating-search-queries) for more information about how to implement `searchAfter` paging. The search query itself has a size limitation of approximately 800 objects when filtering by large lists of IDs or values (e.g., using `terms` filters with extensive lists).
32348
32349
  * @summary Perform search
32349
32350
  * @param {Search} search
32350
32351
  * @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.
@@ -32410,7 +32411,7 @@ var SearchApiFactory = function (configuration, basePath, axios) {
32410
32411
  return localVarFp.searchGet(requestParameters.index, requestParameters.id, axiosOptions).then(function (request) { return request(axios, basePath); });
32411
32412
  },
32412
32413
  /**
32413
- * Perform a search with the provided query and return a matching result collection. To page past 10,000 records, you can use `searchAfter` paging. Refer to [Paginating Search Queries](https://developer.sailpoint.com/idn/api/standard-collection-parameters#paginating-search-queries) for more information about how to implement `searchAfter` paging.
32414
+ * Perform a search with the provided query and return a matching result collection. To page past 10,000 records, you can use `searchAfter` paging. Refer to [Paginating Search Queries](https://developer.sailpoint.com/idn/api/standard-collection-parameters#paginating-search-queries) for more information about how to implement `searchAfter` paging. The search query itself has a size limitation of approximately 800 objects when filtering by large lists of IDs or values (e.g., using `terms` filters with extensive lists).
32414
32415
  * @summary Perform search
32415
32416
  * @param {SearchApiSearchPostRequest} requestParameters Request parameters.
32416
32417
  * @param {*} [axiosOptions] Override http request option.
@@ -32470,7 +32471,7 @@ var SearchApi = /** @class */ (function (_super) {
32470
32471
  return (0, exports.SearchApiFp)(this.configuration).searchGet(requestParameters.index, requestParameters.id, axiosOptions).then(function (request) { return request(_this.axios, _this.basePath); });
32471
32472
  };
32472
32473
  /**
32473
- * Perform a search with the provided query and return a matching result collection. To page past 10,000 records, you can use `searchAfter` paging. Refer to [Paginating Search Queries](https://developer.sailpoint.com/idn/api/standard-collection-parameters#paginating-search-queries) for more information about how to implement `searchAfter` paging.
32474
+ * Perform a search with the provided query and return a matching result collection. To page past 10,000 records, you can use `searchAfter` paging. Refer to [Paginating Search Queries](https://developer.sailpoint.com/idn/api/standard-collection-parameters#paginating-search-queries) for more information about how to implement `searchAfter` paging. The search query itself has a size limitation of approximately 800 objects when filtering by large lists of IDs or values (e.g., using `terms` filters with extensive lists).
32474
32475
  * @summary Perform search
32475
32476
  * @param {SearchApiSearchPostRequest} requestParameters Request parameters.
32476
32477
  * @param {*} [axiosOptions] Override http request option.