sailpoint-api-client 1.7.1 → 1.7.6

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
@@ -2980,13 +2980,14 @@ export interface AccessRequestTrackingV2024 {
2980
2980
  'accessRequestIds'?: Array<string>;
2981
2981
  }
2982
2982
  /**
2983
- * Access request type. Defaults to GRANT_ACCESS. REVOKE_ACCESS type can only have a single Identity ID in the requestedFor field.
2983
+ * 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.
2984
2984
  * @export
2985
2985
  * @enum {string}
2986
2986
  */
2987
2987
  export declare const AccessRequestTypeV2024: {
2988
2988
  readonly GrantAccess: "GRANT_ACCESS";
2989
2989
  readonly RevokeAccess: "REVOKE_ACCESS";
2990
+ readonly ModifyAccess: "MODIFY_ACCESS";
2990
2991
  };
2991
2992
  export type AccessRequestTypeV2024 = typeof AccessRequestTypeV2024[keyof typeof AccessRequestTypeV2024];
2992
2993
  /**
@@ -6829,7 +6830,10 @@ export interface AttributeMappingsAllOfTargetV2024 {
6829
6830
  'sourceId'?: string;
6830
6831
  }
6831
6832
  export declare const AttributeMappingsAllOfTargetV2024TypeV2024: {
6833
+ readonly Account: "ACCOUNT";
6832
6834
  readonly Identity: "IDENTITY";
6835
+ readonly OwnerAccount: "OWNER_ACCOUNT";
6836
+ readonly OwnerIdentity: "OWNER_IDENTITY";
6833
6837
  };
6834
6838
  export type AttributeMappingsAllOfTargetV2024TypeV2024 = typeof AttributeMappingsAllOfTargetV2024TypeV2024[keyof typeof AttributeMappingsAllOfTargetV2024TypeV2024];
6835
6839
  /**
@@ -17944,6 +17948,12 @@ export interface GetRoleAssignments200ResponseInnerV2024 {
17944
17948
  * @memberof GetRoleAssignments200ResponseInnerV2024
17945
17949
  */
17946
17950
  'addedDate'?: string;
17951
+ /**
17952
+ * Date that the assignment will be removed
17953
+ * @type {string}
17954
+ * @memberof GetRoleAssignments200ResponseInnerV2024
17955
+ */
17956
+ 'removeDate'?: string | null;
17947
17957
  /**
17948
17958
  * Comments added by the user when the assignment was made
17949
17959
  * @type {string}
@@ -17980,12 +17990,6 @@ export interface GetRoleAssignments200ResponseInnerV2024 {
17980
17990
  * @memberof GetRoleAssignments200ResponseInnerV2024
17981
17991
  */
17982
17992
  'accountTargets'?: Array<RoleTargetDtoV2024>;
17983
- /**
17984
- * Date that the assignment will be removed
17985
- * @type {string}
17986
- * @memberof GetRoleAssignments200ResponseInnerV2024
17987
- */
17988
- 'removeDate'?: string | null;
17989
17993
  }
17990
17994
  /**
17991
17995
  *
@@ -30126,6 +30130,18 @@ export interface RequestabilityForRoleV2024 {
30126
30130
  * @memberof RequestabilityForRoleV2024
30127
30131
  */
30128
30132
  'reauthorizationRequired'?: boolean | null;
30133
+ /**
30134
+ * Indicates whether the requester of the containing object must provide access end date.
30135
+ * @type {boolean}
30136
+ * @memberof RequestabilityForRoleV2024
30137
+ */
30138
+ 'requireEndDate'?: boolean | null;
30139
+ /**
30140
+ *
30141
+ * @type {AccessDurationV2024}
30142
+ * @memberof RequestabilityForRoleV2024
30143
+ */
30144
+ 'maxPermittedAccessDuration'?: AccessDurationV2024 | null;
30129
30145
  /**
30130
30146
  * List describing the steps in approving the request
30131
30147
  * @type {Array<ApprovalSchemeForRoleV2024>}
@@ -31697,6 +31713,12 @@ export interface RoleAssignmentRefV2024 {
31697
31713
  * @memberof RoleAssignmentRefV2024
31698
31714
  */
31699
31715
  'addedDate'?: string;
31716
+ /**
31717
+ * Date that the assignment will be removed
31718
+ * @type {string}
31719
+ * @memberof RoleAssignmentRefV2024
31720
+ */
31721
+ 'removeDate'?: string | null;
31700
31722
  }
31701
31723
  /**
31702
31724
  * Type which indicates how a particular Identity obtained a particular Role
@@ -34182,11 +34204,11 @@ export interface RoleTargetDtoV2024 {
34182
34204
  */
34183
34205
  'accountInfo'?: AccountInfoDtoV2024;
34184
34206
  /**
34185
- * Specific role name for this target if using multiple accounts
34186
- * @type {string}
34207
+ *
34208
+ * @type {BaseReferenceDtoV2024}
34187
34209
  * @memberof RoleTargetDtoV2024
34188
34210
  */
34189
- 'roleName'?: string;
34211
+ 'role'?: BaseReferenceDtoV2024;
34190
34212
  }
34191
34213
  /**
34192
34214
  * A Role
@@ -44387,6 +44409,23 @@ export interface WorkgroupMemberDeleteItemV2024 {
44387
44409
  * @export
44388
44410
  */
44389
44411
  export declare const AccessModelMetadataV2024ApiAxiosParamCreator: (configuration?: Configuration) => {
44412
+ /**
44413
+ * Create a new Access Model Metadata Attribute.
44414
+ * @summary Create access model metadata attribute
44415
+ * @param {AttributeDTOV2024} attributeDTOV2024 Attribute to create
44416
+ * @param {*} [axiosOptions] Override http request option.
44417
+ * @throws {RequiredError}
44418
+ */
44419
+ createAccessModelMetadataAttribute: (attributeDTOV2024: AttributeDTOV2024, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
44420
+ /**
44421
+ * Create a new value for an existing Access Model Metadata Attribute.
44422
+ * @summary Create access model metadata value
44423
+ * @param {string} key Technical name of the Attribute.
44424
+ * @param {AttributeValueDTOV2024} attributeValueDTOV2024 Attribute value to create
44425
+ * @param {*} [axiosOptions] Override http request option.
44426
+ * @throws {RequiredError}
44427
+ */
44428
+ createAccessModelMetadataAttributeValue: (key: string, attributeValueDTOV2024: AttributeValueDTOV2024, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
44390
44429
  /**
44391
44430
  * Get single Access Model Metadata Attribute
44392
44431
  * @summary Get access model metadata attribute
@@ -44407,32 +44446,66 @@ export declare const AccessModelMetadataV2024ApiAxiosParamCreator: (configuratio
44407
44446
  /**
44408
44447
  * Get a list of Access Model Metadata Attributes
44409
44448
  * @summary List access model metadata attributes
44410
- * @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: **key**: *eq* **name**: *eq* **type**: *eq* **status**: *eq* **objectTypes**: *eq* **Supported composite operators**: *and*
44449
+ * @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: **key**: *eq* **name**: *eq* **type**: *eq* **status**: *eq* **objectTypes**: *eq* Supported composite operators are *and, or*
44411
44450
  * @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: **name, key**
44412
- * @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.
44413
44451
  * @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.
44414
44452
  * @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&#x3D;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.
44415
44453
  * @param {*} [axiosOptions] Override http request option.
44416
44454
  * @throws {RequiredError}
44417
44455
  */
44418
- listAccessModelMetadataAttribute: (filters?: string, sorters?: string, offset?: number, limit?: number, count?: boolean, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
44456
+ listAccessModelMetadataAttribute: (filters?: string, sorters?: string, limit?: number, count?: boolean, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
44419
44457
  /**
44420
44458
  * Get a list of Access Model Metadata Attribute Values
44421
44459
  * @summary List access model metadata values
44422
44460
  * @param {string} key Technical name of the Attribute.
44423
- * @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.
44424
44461
  * @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.
44425
44462
  * @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&#x3D;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.
44426
44463
  * @param {*} [axiosOptions] Override http request option.
44427
44464
  * @throws {RequiredError}
44428
44465
  */
44429
- listAccessModelMetadataAttributeValue: (key: string, offset?: number, limit?: number, count?: boolean, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
44466
+ listAccessModelMetadataAttributeValue: (key: string, limit?: number, count?: boolean, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
44467
+ /**
44468
+ * Update an existing Access Model Metadata Attribute. The following fields are patchable: **name**, **description**, **multiselect**, **values**
44469
+ * @summary Update access model metadata attribute
44470
+ * @param {string} key Technical name of the Attribute.
44471
+ * @param {Array<JsonPatchOperationV2024>} jsonPatchOperationV2024 JSON Patch array to apply
44472
+ * @param {*} [axiosOptions] Override http request option.
44473
+ * @throws {RequiredError}
44474
+ */
44475
+ updateAccessModelMetadataAttribute: (key: string, jsonPatchOperationV2024: Array<JsonPatchOperationV2024>, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
44476
+ /**
44477
+ * Update an existing Access Model Metadata Attribute Value. The following fields are patchable: **name**
44478
+ * @summary Update access model metadata value
44479
+ * @param {string} key Technical name of the Attribute.
44480
+ * @param {string} value Technical name of the Attribute value.
44481
+ * @param {Array<JsonPatchOperationV2024>} jsonPatchOperationV2024 JSON Patch array to apply
44482
+ * @param {*} [axiosOptions] Override http request option.
44483
+ * @throws {RequiredError}
44484
+ */
44485
+ updateAccessModelMetadataAttributeValue: (key: string, value: string, jsonPatchOperationV2024: Array<JsonPatchOperationV2024>, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
44430
44486
  };
44431
44487
  /**
44432
44488
  * AccessModelMetadataV2024Api - functional programming interface
44433
44489
  * @export
44434
44490
  */
44435
44491
  export declare const AccessModelMetadataV2024ApiFp: (configuration?: Configuration) => {
44492
+ /**
44493
+ * Create a new Access Model Metadata Attribute.
44494
+ * @summary Create access model metadata attribute
44495
+ * @param {AttributeDTOV2024} attributeDTOV2024 Attribute to create
44496
+ * @param {*} [axiosOptions] Override http request option.
44497
+ * @throws {RequiredError}
44498
+ */
44499
+ createAccessModelMetadataAttribute(attributeDTOV2024: AttributeDTOV2024, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AttributeDTOV2024>>;
44500
+ /**
44501
+ * Create a new value for an existing Access Model Metadata Attribute.
44502
+ * @summary Create access model metadata value
44503
+ * @param {string} key Technical name of the Attribute.
44504
+ * @param {AttributeValueDTOV2024} attributeValueDTOV2024 Attribute value to create
44505
+ * @param {*} [axiosOptions] Override http request option.
44506
+ * @throws {RequiredError}
44507
+ */
44508
+ createAccessModelMetadataAttributeValue(key: string, attributeValueDTOV2024: AttributeValueDTOV2024, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AttributeValueDTOV2024>>;
44436
44509
  /**
44437
44510
  * Get single Access Model Metadata Attribute
44438
44511
  * @summary Get access model metadata attribute
@@ -44453,32 +44526,65 @@ export declare const AccessModelMetadataV2024ApiFp: (configuration?: Configurati
44453
44526
  /**
44454
44527
  * Get a list of Access Model Metadata Attributes
44455
44528
  * @summary List access model metadata attributes
44456
- * @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: **key**: *eq* **name**: *eq* **type**: *eq* **status**: *eq* **objectTypes**: *eq* **Supported composite operators**: *and*
44529
+ * @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: **key**: *eq* **name**: *eq* **type**: *eq* **status**: *eq* **objectTypes**: *eq* Supported composite operators are *and, or*
44457
44530
  * @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: **name, key**
44458
- * @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.
44459
44531
  * @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.
44460
44532
  * @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&#x3D;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.
44461
44533
  * @param {*} [axiosOptions] Override http request option.
44462
44534
  * @throws {RequiredError}
44463
44535
  */
44464
- listAccessModelMetadataAttribute(filters?: string, sorters?: string, offset?: number, limit?: number, count?: boolean, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<AttributeDTOV2024>>>;
44536
+ listAccessModelMetadataAttribute(filters?: string, sorters?: string, limit?: number, count?: boolean, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<AttributeDTOV2024>>>;
44465
44537
  /**
44466
44538
  * Get a list of Access Model Metadata Attribute Values
44467
44539
  * @summary List access model metadata values
44468
44540
  * @param {string} key Technical name of the Attribute.
44469
- * @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.
44470
44541
  * @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.
44471
44542
  * @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&#x3D;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.
44472
44543
  * @param {*} [axiosOptions] Override http request option.
44473
44544
  * @throws {RequiredError}
44474
44545
  */
44475
- listAccessModelMetadataAttributeValue(key: string, offset?: number, limit?: number, count?: boolean, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<AttributeValueDTOV2024>>>;
44546
+ listAccessModelMetadataAttributeValue(key: string, limit?: number, count?: boolean, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<AttributeValueDTOV2024>>>;
44547
+ /**
44548
+ * Update an existing Access Model Metadata Attribute. The following fields are patchable: **name**, **description**, **multiselect**, **values**
44549
+ * @summary Update access model metadata attribute
44550
+ * @param {string} key Technical name of the Attribute.
44551
+ * @param {Array<JsonPatchOperationV2024>} jsonPatchOperationV2024 JSON Patch array to apply
44552
+ * @param {*} [axiosOptions] Override http request option.
44553
+ * @throws {RequiredError}
44554
+ */
44555
+ updateAccessModelMetadataAttribute(key: string, jsonPatchOperationV2024: Array<JsonPatchOperationV2024>, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AttributeDTOV2024>>;
44556
+ /**
44557
+ * Update an existing Access Model Metadata Attribute Value. The following fields are patchable: **name**
44558
+ * @summary Update access model metadata value
44559
+ * @param {string} key Technical name of the Attribute.
44560
+ * @param {string} value Technical name of the Attribute value.
44561
+ * @param {Array<JsonPatchOperationV2024>} jsonPatchOperationV2024 JSON Patch array to apply
44562
+ * @param {*} [axiosOptions] Override http request option.
44563
+ * @throws {RequiredError}
44564
+ */
44565
+ updateAccessModelMetadataAttributeValue(key: string, value: string, jsonPatchOperationV2024: Array<JsonPatchOperationV2024>, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AttributeValueDTOV2024>>;
44476
44566
  };
44477
44567
  /**
44478
44568
  * AccessModelMetadataV2024Api - factory interface
44479
44569
  * @export
44480
44570
  */
44481
44571
  export declare const AccessModelMetadataV2024ApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
44572
+ /**
44573
+ * Create a new Access Model Metadata Attribute.
44574
+ * @summary Create access model metadata attribute
44575
+ * @param {AccessModelMetadataV2024ApiCreateAccessModelMetadataAttributeRequest} requestParameters Request parameters.
44576
+ * @param {*} [axiosOptions] Override http request option.
44577
+ * @throws {RequiredError}
44578
+ */
44579
+ createAccessModelMetadataAttribute(requestParameters: AccessModelMetadataV2024ApiCreateAccessModelMetadataAttributeRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<AttributeDTOV2024>;
44580
+ /**
44581
+ * Create a new value for an existing Access Model Metadata Attribute.
44582
+ * @summary Create access model metadata value
44583
+ * @param {AccessModelMetadataV2024ApiCreateAccessModelMetadataAttributeValueRequest} requestParameters Request parameters.
44584
+ * @param {*} [axiosOptions] Override http request option.
44585
+ * @throws {RequiredError}
44586
+ */
44587
+ createAccessModelMetadataAttributeValue(requestParameters: AccessModelMetadataV2024ApiCreateAccessModelMetadataAttributeValueRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<AttributeValueDTOV2024>;
44482
44588
  /**
44483
44589
  * Get single Access Model Metadata Attribute
44484
44590
  * @summary Get access model metadata attribute
@@ -44511,7 +44617,55 @@ export declare const AccessModelMetadataV2024ApiFactory: (configuration?: Config
44511
44617
  * @throws {RequiredError}
44512
44618
  */
44513
44619
  listAccessModelMetadataAttributeValue(requestParameters: AccessModelMetadataV2024ApiListAccessModelMetadataAttributeValueRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<AttributeValueDTOV2024>>;
44620
+ /**
44621
+ * Update an existing Access Model Metadata Attribute. The following fields are patchable: **name**, **description**, **multiselect**, **values**
44622
+ * @summary Update access model metadata attribute
44623
+ * @param {AccessModelMetadataV2024ApiUpdateAccessModelMetadataAttributeRequest} requestParameters Request parameters.
44624
+ * @param {*} [axiosOptions] Override http request option.
44625
+ * @throws {RequiredError}
44626
+ */
44627
+ updateAccessModelMetadataAttribute(requestParameters: AccessModelMetadataV2024ApiUpdateAccessModelMetadataAttributeRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<AttributeDTOV2024>;
44628
+ /**
44629
+ * Update an existing Access Model Metadata Attribute Value. The following fields are patchable: **name**
44630
+ * @summary Update access model metadata value
44631
+ * @param {AccessModelMetadataV2024ApiUpdateAccessModelMetadataAttributeValueRequest} requestParameters Request parameters.
44632
+ * @param {*} [axiosOptions] Override http request option.
44633
+ * @throws {RequiredError}
44634
+ */
44635
+ updateAccessModelMetadataAttributeValue(requestParameters: AccessModelMetadataV2024ApiUpdateAccessModelMetadataAttributeValueRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<AttributeValueDTOV2024>;
44514
44636
  };
44637
+ /**
44638
+ * Request parameters for createAccessModelMetadataAttribute operation in AccessModelMetadataV2024Api.
44639
+ * @export
44640
+ * @interface AccessModelMetadataV2024ApiCreateAccessModelMetadataAttributeRequest
44641
+ */
44642
+ export interface AccessModelMetadataV2024ApiCreateAccessModelMetadataAttributeRequest {
44643
+ /**
44644
+ * Attribute to create
44645
+ * @type {AttributeDTOV2024}
44646
+ * @memberof AccessModelMetadataV2024ApiCreateAccessModelMetadataAttribute
44647
+ */
44648
+ readonly attributeDTOV2024: AttributeDTOV2024;
44649
+ }
44650
+ /**
44651
+ * Request parameters for createAccessModelMetadataAttributeValue operation in AccessModelMetadataV2024Api.
44652
+ * @export
44653
+ * @interface AccessModelMetadataV2024ApiCreateAccessModelMetadataAttributeValueRequest
44654
+ */
44655
+ export interface AccessModelMetadataV2024ApiCreateAccessModelMetadataAttributeValueRequest {
44656
+ /**
44657
+ * Technical name of the Attribute.
44658
+ * @type {string}
44659
+ * @memberof AccessModelMetadataV2024ApiCreateAccessModelMetadataAttributeValue
44660
+ */
44661
+ readonly key: string;
44662
+ /**
44663
+ * Attribute value to create
44664
+ * @type {AttributeValueDTOV2024}
44665
+ * @memberof AccessModelMetadataV2024ApiCreateAccessModelMetadataAttributeValue
44666
+ */
44667
+ readonly attributeValueDTOV2024: AttributeValueDTOV2024;
44668
+ }
44515
44669
  /**
44516
44670
  * Request parameters for getAccessModelMetadataAttribute operation in AccessModelMetadataV2024Api.
44517
44671
  * @export
@@ -44551,7 +44705,7 @@ export interface AccessModelMetadataV2024ApiGetAccessModelMetadataAttributeValue
44551
44705
  */
44552
44706
  export interface AccessModelMetadataV2024ApiListAccessModelMetadataAttributeRequest {
44553
44707
  /**
44554
- * 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: **key**: *eq* **name**: *eq* **type**: *eq* **status**: *eq* **objectTypes**: *eq* **Supported composite operators**: *and*
44708
+ * 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: **key**: *eq* **name**: *eq* **type**: *eq* **status**: *eq* **objectTypes**: *eq* Supported composite operators are *and, or*
44555
44709
  * @type {string}
44556
44710
  * @memberof AccessModelMetadataV2024ApiListAccessModelMetadataAttribute
44557
44711
  */
@@ -44562,12 +44716,6 @@ export interface AccessModelMetadataV2024ApiListAccessModelMetadataAttributeRequ
44562
44716
  * @memberof AccessModelMetadataV2024ApiListAccessModelMetadataAttribute
44563
44717
  */
44564
44718
  readonly sorters?: string;
44565
- /**
44566
- * 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.
44567
- * @type {number}
44568
- * @memberof AccessModelMetadataV2024ApiListAccessModelMetadataAttribute
44569
- */
44570
- readonly offset?: number;
44571
44719
  /**
44572
44720
  * Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
44573
44721
  * @type {number}
@@ -44593,12 +44741,6 @@ export interface AccessModelMetadataV2024ApiListAccessModelMetadataAttributeValu
44593
44741
  * @memberof AccessModelMetadataV2024ApiListAccessModelMetadataAttributeValue
44594
44742
  */
44595
44743
  readonly key: string;
44596
- /**
44597
- * 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.
44598
- * @type {number}
44599
- * @memberof AccessModelMetadataV2024ApiListAccessModelMetadataAttributeValue
44600
- */
44601
- readonly offset?: number;
44602
44744
  /**
44603
44745
  * Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
44604
44746
  * @type {number}
@@ -44612,6 +44754,50 @@ export interface AccessModelMetadataV2024ApiListAccessModelMetadataAttributeValu
44612
44754
  */
44613
44755
  readonly count?: boolean;
44614
44756
  }
44757
+ /**
44758
+ * Request parameters for updateAccessModelMetadataAttribute operation in AccessModelMetadataV2024Api.
44759
+ * @export
44760
+ * @interface AccessModelMetadataV2024ApiUpdateAccessModelMetadataAttributeRequest
44761
+ */
44762
+ export interface AccessModelMetadataV2024ApiUpdateAccessModelMetadataAttributeRequest {
44763
+ /**
44764
+ * Technical name of the Attribute.
44765
+ * @type {string}
44766
+ * @memberof AccessModelMetadataV2024ApiUpdateAccessModelMetadataAttribute
44767
+ */
44768
+ readonly key: string;
44769
+ /**
44770
+ * JSON Patch array to apply
44771
+ * @type {Array<JsonPatchOperationV2024>}
44772
+ * @memberof AccessModelMetadataV2024ApiUpdateAccessModelMetadataAttribute
44773
+ */
44774
+ readonly jsonPatchOperationV2024: Array<JsonPatchOperationV2024>;
44775
+ }
44776
+ /**
44777
+ * Request parameters for updateAccessModelMetadataAttributeValue operation in AccessModelMetadataV2024Api.
44778
+ * @export
44779
+ * @interface AccessModelMetadataV2024ApiUpdateAccessModelMetadataAttributeValueRequest
44780
+ */
44781
+ export interface AccessModelMetadataV2024ApiUpdateAccessModelMetadataAttributeValueRequest {
44782
+ /**
44783
+ * Technical name of the Attribute.
44784
+ * @type {string}
44785
+ * @memberof AccessModelMetadataV2024ApiUpdateAccessModelMetadataAttributeValue
44786
+ */
44787
+ readonly key: string;
44788
+ /**
44789
+ * Technical name of the Attribute value.
44790
+ * @type {string}
44791
+ * @memberof AccessModelMetadataV2024ApiUpdateAccessModelMetadataAttributeValue
44792
+ */
44793
+ readonly value: string;
44794
+ /**
44795
+ * JSON Patch array to apply
44796
+ * @type {Array<JsonPatchOperationV2024>}
44797
+ * @memberof AccessModelMetadataV2024ApiUpdateAccessModelMetadataAttributeValue
44798
+ */
44799
+ readonly jsonPatchOperationV2024: Array<JsonPatchOperationV2024>;
44800
+ }
44615
44801
  /**
44616
44802
  * AccessModelMetadataV2024Api - object-oriented interface
44617
44803
  * @export
@@ -44619,6 +44805,24 @@ export interface AccessModelMetadataV2024ApiListAccessModelMetadataAttributeValu
44619
44805
  * @extends {BaseAPI}
44620
44806
  */
44621
44807
  export declare class AccessModelMetadataV2024Api extends BaseAPI {
44808
+ /**
44809
+ * Create a new Access Model Metadata Attribute.
44810
+ * @summary Create access model metadata attribute
44811
+ * @param {AccessModelMetadataV2024ApiCreateAccessModelMetadataAttributeRequest} requestParameters Request parameters.
44812
+ * @param {*} [axiosOptions] Override http request option.
44813
+ * @throws {RequiredError}
44814
+ * @memberof AccessModelMetadataV2024Api
44815
+ */
44816
+ createAccessModelMetadataAttribute(requestParameters: AccessModelMetadataV2024ApiCreateAccessModelMetadataAttributeRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AttributeDTOV2024, any>>;
44817
+ /**
44818
+ * Create a new value for an existing Access Model Metadata Attribute.
44819
+ * @summary Create access model metadata value
44820
+ * @param {AccessModelMetadataV2024ApiCreateAccessModelMetadataAttributeValueRequest} requestParameters Request parameters.
44821
+ * @param {*} [axiosOptions] Override http request option.
44822
+ * @throws {RequiredError}
44823
+ * @memberof AccessModelMetadataV2024Api
44824
+ */
44825
+ createAccessModelMetadataAttributeValue(requestParameters: AccessModelMetadataV2024ApiCreateAccessModelMetadataAttributeValueRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AttributeValueDTOV2024, any>>;
44622
44826
  /**
44623
44827
  * Get single Access Model Metadata Attribute
44624
44828
  * @summary Get access model metadata attribute
@@ -44655,6 +44859,24 @@ export declare class AccessModelMetadataV2024Api extends BaseAPI {
44655
44859
  * @memberof AccessModelMetadataV2024Api
44656
44860
  */
44657
44861
  listAccessModelMetadataAttributeValue(requestParameters: AccessModelMetadataV2024ApiListAccessModelMetadataAttributeValueRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AttributeValueDTOV2024[], any>>;
44862
+ /**
44863
+ * Update an existing Access Model Metadata Attribute. The following fields are patchable: **name**, **description**, **multiselect**, **values**
44864
+ * @summary Update access model metadata attribute
44865
+ * @param {AccessModelMetadataV2024ApiUpdateAccessModelMetadataAttributeRequest} requestParameters Request parameters.
44866
+ * @param {*} [axiosOptions] Override http request option.
44867
+ * @throws {RequiredError}
44868
+ * @memberof AccessModelMetadataV2024Api
44869
+ */
44870
+ updateAccessModelMetadataAttribute(requestParameters: AccessModelMetadataV2024ApiUpdateAccessModelMetadataAttributeRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AttributeDTOV2024, any>>;
44871
+ /**
44872
+ * Update an existing Access Model Metadata Attribute Value. The following fields are patchable: **name**
44873
+ * @summary Update access model metadata value
44874
+ * @param {AccessModelMetadataV2024ApiUpdateAccessModelMetadataAttributeValueRequest} requestParameters Request parameters.
44875
+ * @param {*} [axiosOptions] Override http request option.
44876
+ * @throws {RequiredError}
44877
+ * @memberof AccessModelMetadataV2024Api
44878
+ */
44879
+ updateAccessModelMetadataAttributeValue(requestParameters: AccessModelMetadataV2024ApiUpdateAccessModelMetadataAttributeValueRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AttributeValueDTOV2024, any>>;
44658
44880
  }
44659
44881
  /**
44660
44882
  * AccessProfilesV2024Api - axios parameter creator
@@ -45815,7 +46037,7 @@ export declare const AccessRequestsV2024ApiAxiosParamCreator: (configuration?: C
45815
46037
  * @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.
45816
46038
  * @param {number} [limit] Max number of results to return.
45817
46039
  * @param {number} [offset] Offset into the full result set. Usually specified with *limit* to paginate through the results. Defaults to 0 if not specified.
45818
- * @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*
46040
+ * @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*
45819
46041
  * @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**
45820
46042
  * @param {string} [requestState] Filter the results by the state of the request. The only valid value is *EXECUTING*.
45821
46043
  * @param {*} [axiosOptions] Override http request option.
@@ -45930,7 +46152,7 @@ export declare const AccessRequestsV2024ApiFp: (configuration?: Configuration) =
45930
46152
  * @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.
45931
46153
  * @param {number} [limit] Max number of results to return.
45932
46154
  * @param {number} [offset] Offset into the full result set. Usually specified with *limit* to paginate through the results. Defaults to 0 if not specified.
45933
- * @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*
46155
+ * @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*
45934
46156
  * @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**
45935
46157
  * @param {string} [requestState] Filter the results by the state of the request. The only valid value is *EXECUTING*.
45936
46158
  * @param {*} [axiosOptions] Override http request option.
@@ -46205,7 +46427,7 @@ export interface AccessRequestsV2024ApiListAccessRequestStatusRequest {
46205
46427
  */
46206
46428
  readonly offset?: number;
46207
46429
  /**
46208
- * 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*
46430
+ * 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*
46209
46431
  * @type {string}
46210
46432
  * @memberof AccessRequestsV2024ApiListAccessRequestStatus
46211
46433
  */
@@ -48057,7 +48279,7 @@ export declare const AppsV2024ApiAxiosParamCreator: (configuration?: Configurati
48057
48279
  * @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&#x3D;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.
48058
48280
  * @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.
48059
48281
  * @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: **id, name, created, modified, owner.id, accountSource.id**
48060
- * @param {string} [filters] Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **id**: *eq, in* **name**: *eq, in, co, sw* **created**: *gt, lt, ge, le* **modified**: *gt, lt, ge, le* **owner.id**: *eq, in* **accountSource.id**: *eq, in* **enabled**: *eq*
48282
+ * @param {string} [filters] Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **id**: *eq, in* **name**: *eq, in, co, sw* **created**: *gt, lt, ge, le* **modified**: *gt, ge, le* **owner.id**: *eq, in* **enabled**: *eq*
48061
48283
  * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
48062
48284
  * @param {*} [axiosOptions] Override http request option.
48063
48285
  * @throws {RequiredError}
@@ -48216,7 +48438,7 @@ export declare const AppsV2024ApiFp: (configuration?: Configuration) => {
48216
48438
  * @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&#x3D;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.
48217
48439
  * @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.
48218
48440
  * @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: **id, name, created, modified, owner.id, accountSource.id**
48219
- * @param {string} [filters] Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **id**: *eq, in* **name**: *eq, in, co, sw* **created**: *gt, lt, ge, le* **modified**: *gt, lt, ge, le* **owner.id**: *eq, in* **accountSource.id**: *eq, in* **enabled**: *eq*
48441
+ * @param {string} [filters] Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **id**: *eq, in* **name**: *eq, in, co, sw* **created**: *gt, lt, ge, le* **modified**: *gt, ge, le* **owner.id**: *eq, in* **enabled**: *eq*
48220
48442
  * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
48221
48443
  * @param {*} [axiosOptions] Override http request option.
48222
48444
  * @throws {RequiredError}
@@ -48587,7 +48809,7 @@ export interface AppsV2024ApiListAllSourceAppRequest {
48587
48809
  */
48588
48810
  readonly sorters?: string;
48589
48811
  /**
48590
- * Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **id**: *eq, in* **name**: *eq, in, co, sw* **created**: *gt, lt, ge, le* **modified**: *gt, lt, ge, le* **owner.id**: *eq, in* **accountSource.id**: *eq, in* **enabled**: *eq*
48812
+ * Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **id**: *eq, in* **name**: *eq, in, co, sw* **created**: *gt, lt, ge, le* **modified**: *gt, ge, le* **owner.id**: *eq, in* **enabled**: *eq*
48591
48813
  * @type {string}
48592
48814
  * @memberof AppsV2024ApiListAllSourceApp
48593
48815
  */
@@ -66894,8 +67116,8 @@ export declare const MachineAccountsV2024ApiAxiosParamCreator: (configuration?:
66894
67116
  * @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.
66895
67117
  * @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.
66896
67118
  * @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&#x3D;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.
66897
- * @param {string} [filters] Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **id**: *eq, in, sw* **name**: *eq, in, sw* **nativeIdentity**: *eq, in, sw* **machineIdentity**: *eq, in, sw* **description**: *eq, in, sw* **ownerIdentity**: *eq, in, sw* **ownerIdentityId**: *eq, in, sw* **entitlements**: *eq* **accessType**: *eq, in, sw* **subType**: *eq, in, sw* **environment**: *eq, in, sw* **classificationMethod**: *eq, in, sw* **manuallyCorrelated**: *eq* **manuallyEdited**: *eq* **identity**: *eq, in, sw* **source**: *eq, in* **hasEntitlement**: *eq* **locked**: *eq* **connectorAttributes**: *eq*
66898
- * @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: **id, name, created, modified, machineIdentity, identity.id, nativeIdentity, uuid, manuallyCorrelated, connectorAttributes, entitlements, identity.name, identity.type, source.id, source.name, source.type**
67119
+ * @param {string} [filters] Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **id**: *eq, in* **name**: *eq, in, sw* **nativeIdentity**: *eq, in, sw* **uuid**: *eq, in* **description**: *eq, in, sw* **machineIdentity.id**: *eq, in* **machineIdentity.name**: *eq, in, sw* **subtype.technicalName**: *eq, in, sw* **subtype.displayName**: *eq, in, sw* **accessType**: *eq, in, sw* **environment**: *eq, in, sw* **ownerIdentity**: *eq, in* **ownerIdentity.id**: *eq, in* **ownerIdentity.name**: *eq, in, sw* **manuallyCorrelated**: *eq* **enabled**: *eq* **locked**: *eq* **hasEntitlements**: *eq* **attributes**: *eq* **source.id**: *eq, in* **source.name**: *eq, in, sw* **created**: *eq, gt, lt, ge, le* **modified**: *eq, gt, lt, ge, le*
67120
+ * @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: **id, name, nativeIdentity, ownerIdentity, uuid, description, machineIdentity.id, machineIdentity.name, subtype.technicalName, subtype.displayName, accessType, environment, manuallyCorrelated, enabled, locked, hasEntitlements, ownerIdentity.id, ownerIdentity.name, attributes, source.id, source.name, created, modified**
66899
67121
  * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
66900
67122
  * @param {*} [axiosOptions] Override http request option.
66901
67123
  * @throws {RequiredError}
@@ -66932,8 +67154,8 @@ export declare const MachineAccountsV2024ApiFp: (configuration?: Configuration)
66932
67154
  * @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.
66933
67155
  * @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.
66934
67156
  * @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&#x3D;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.
66935
- * @param {string} [filters] Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **id**: *eq, in, sw* **name**: *eq, in, sw* **nativeIdentity**: *eq, in, sw* **machineIdentity**: *eq, in, sw* **description**: *eq, in, sw* **ownerIdentity**: *eq, in, sw* **ownerIdentityId**: *eq, in, sw* **entitlements**: *eq* **accessType**: *eq, in, sw* **subType**: *eq, in, sw* **environment**: *eq, in, sw* **classificationMethod**: *eq, in, sw* **manuallyCorrelated**: *eq* **manuallyEdited**: *eq* **identity**: *eq, in, sw* **source**: *eq, in* **hasEntitlement**: *eq* **locked**: *eq* **connectorAttributes**: *eq*
66936
- * @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: **id, name, created, modified, machineIdentity, identity.id, nativeIdentity, uuid, manuallyCorrelated, connectorAttributes, entitlements, identity.name, identity.type, source.id, source.name, source.type**
67157
+ * @param {string} [filters] Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **id**: *eq, in* **name**: *eq, in, sw* **nativeIdentity**: *eq, in, sw* **uuid**: *eq, in* **description**: *eq, in, sw* **machineIdentity.id**: *eq, in* **machineIdentity.name**: *eq, in, sw* **subtype.technicalName**: *eq, in, sw* **subtype.displayName**: *eq, in, sw* **accessType**: *eq, in, sw* **environment**: *eq, in, sw* **ownerIdentity**: *eq, in* **ownerIdentity.id**: *eq, in* **ownerIdentity.name**: *eq, in, sw* **manuallyCorrelated**: *eq* **enabled**: *eq* **locked**: *eq* **hasEntitlements**: *eq* **attributes**: *eq* **source.id**: *eq, in* **source.name**: *eq, in, sw* **created**: *eq, gt, lt, ge, le* **modified**: *eq, gt, lt, ge, le*
67158
+ * @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: **id, name, nativeIdentity, ownerIdentity, uuid, description, machineIdentity.id, machineIdentity.name, subtype.technicalName, subtype.displayName, accessType, environment, manuallyCorrelated, enabled, locked, hasEntitlements, ownerIdentity.id, ownerIdentity.name, attributes, source.id, source.name, created, modified**
66937
67159
  * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
66938
67160
  * @param {*} [axiosOptions] Override http request option.
66939
67161
  * @throws {RequiredError}
@@ -67024,13 +67246,13 @@ export interface MachineAccountsV2024ApiListMachineAccountsRequest {
67024
67246
  */
67025
67247
  readonly count?: boolean;
67026
67248
  /**
67027
- * Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **id**: *eq, in, sw* **name**: *eq, in, sw* **nativeIdentity**: *eq, in, sw* **machineIdentity**: *eq, in, sw* **description**: *eq, in, sw* **ownerIdentity**: *eq, in, sw* **ownerIdentityId**: *eq, in, sw* **entitlements**: *eq* **accessType**: *eq, in, sw* **subType**: *eq, in, sw* **environment**: *eq, in, sw* **classificationMethod**: *eq, in, sw* **manuallyCorrelated**: *eq* **manuallyEdited**: *eq* **identity**: *eq, in, sw* **source**: *eq, in* **hasEntitlement**: *eq* **locked**: *eq* **connectorAttributes**: *eq*
67249
+ * Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **id**: *eq, in* **name**: *eq, in, sw* **nativeIdentity**: *eq, in, sw* **uuid**: *eq, in* **description**: *eq, in, sw* **machineIdentity.id**: *eq, in* **machineIdentity.name**: *eq, in, sw* **subtype.technicalName**: *eq, in, sw* **subtype.displayName**: *eq, in, sw* **accessType**: *eq, in, sw* **environment**: *eq, in, sw* **ownerIdentity**: *eq, in* **ownerIdentity.id**: *eq, in* **ownerIdentity.name**: *eq, in, sw* **manuallyCorrelated**: *eq* **enabled**: *eq* **locked**: *eq* **hasEntitlements**: *eq* **attributes**: *eq* **source.id**: *eq, in* **source.name**: *eq, in, sw* **created**: *eq, gt, lt, ge, le* **modified**: *eq, gt, lt, ge, le*
67028
67250
  * @type {string}
67029
67251
  * @memberof MachineAccountsV2024ApiListMachineAccounts
67030
67252
  */
67031
67253
  readonly filters?: string;
67032
67254
  /**
67033
- * 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: **id, name, created, modified, machineIdentity, identity.id, nativeIdentity, uuid, manuallyCorrelated, connectorAttributes, entitlements, identity.name, identity.type, source.id, source.name, source.type**
67255
+ * 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: **id, name, nativeIdentity, ownerIdentity, uuid, description, machineIdentity.id, machineIdentity.name, subtype.technicalName, subtype.displayName, accessType, environment, manuallyCorrelated, enabled, locked, hasEntitlements, ownerIdentity.id, ownerIdentity.name, attributes, source.id, source.name, created, modified**
67034
67256
  * @type {string}
67035
67257
  * @memberof MachineAccountsV2024ApiListMachineAccounts
67036
67258
  */
@@ -78465,7 +78687,7 @@ export declare const SearchV2024ApiAxiosParamCreator: (configuration?: Configura
78465
78687
  */
78466
78688
  searchGet: (index: SearchGetIndexV2024, id: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
78467
78689
  /**
78468
- * 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.
78690
+ * 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).
78469
78691
  * @summary Perform search
78470
78692
  * @param {SearchV2024} searchV2024
78471
78693
  * @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.
@@ -78510,7 +78732,7 @@ export declare const SearchV2024ApiFp: (configuration?: Configuration) => {
78510
78732
  */
78511
78733
  searchGet(index: SearchGetIndexV2024, id: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SearchDocumentV2024>>;
78512
78734
  /**
78513
- * 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.
78735
+ * 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).
78514
78736
  * @summary Perform search
78515
78737
  * @param {SearchV2024} searchV2024
78516
78738
  * @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.
@@ -78551,7 +78773,7 @@ export declare const SearchV2024ApiFactory: (configuration?: Configuration, base
78551
78773
  */
78552
78774
  searchGet(requestParameters: SearchV2024ApiSearchGetRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<SearchDocumentV2024>;
78553
78775
  /**
78554
- * 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.
78776
+ * 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).
78555
78777
  * @summary Perform search
78556
78778
  * @param {SearchV2024ApiSearchPostRequest} requestParameters Request parameters.
78557
78779
  * @param {*} [axiosOptions] Override http request option.
@@ -78688,7 +78910,7 @@ export declare class SearchV2024Api extends BaseAPI {
78688
78910
  */
78689
78911
  searchGet(requestParameters: SearchV2024ApiSearchGetRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SearchDocumentV2024, any>>;
78690
78912
  /**
78691
- * 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.
78913
+ * 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).
78692
78914
  * @summary Perform search
78693
78915
  * @param {SearchV2024ApiSearchPostRequest} requestParameters Request parameters.
78694
78916
  * @param {*} [axiosOptions] Override http request option.
@@ -85665,11 +85887,10 @@ export declare const WorkItemsV2024ApiAxiosParamCreator: (configuration?: Config
85665
85887
  * @summary Forward a work item
85666
85888
  * @param {string} id The ID of the work item
85667
85889
  * @param {WorkItemForwardV2024} workItemForwardV2024
85668
- * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
85669
85890
  * @param {*} [axiosOptions] Override http request option.
85670
85891
  * @throws {RequiredError}
85671
85892
  */
85672
- forwardWorkItem: (id: string, workItemForwardV2024: WorkItemForwardV2024, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
85893
+ forwardWorkItem: (id: string, workItemForwardV2024: WorkItemForwardV2024, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
85673
85894
  /**
85674
85895
  * This gets a collection of completed work items belonging to either the specified user(admin required), or the current user.
85675
85896
  * @summary Completed work items
@@ -85685,11 +85906,10 @@ export declare const WorkItemsV2024ApiAxiosParamCreator: (configuration?: Config
85685
85906
  * This gets a count of completed work items belonging to either the specified user(admin required), or the current user.
85686
85907
  * @summary Count completed work items
85687
85908
  * @param {string} [ownerId] ID of the work item owner.
85688
- * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
85689
85909
  * @param {*} [axiosOptions] Override http request option.
85690
85910
  * @throws {RequiredError}
85691
85911
  */
85692
- getCountCompletedWorkItems: (ownerId?: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
85912
+ getCountCompletedWorkItems: (ownerId?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
85693
85913
  /**
85694
85914
  * This gets a count of work items belonging to either the specified user(admin required), or the current user.
85695
85915
  * @summary Count work items
@@ -85790,11 +86010,10 @@ export declare const WorkItemsV2024ApiFp: (configuration?: Configuration) => {
85790
86010
  * @summary Forward a work item
85791
86011
  * @param {string} id The ID of the work item
85792
86012
  * @param {WorkItemForwardV2024} workItemForwardV2024
85793
- * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
85794
86013
  * @param {*} [axiosOptions] Override http request option.
85795
86014
  * @throws {RequiredError}
85796
86015
  */
85797
- forwardWorkItem(id: string, workItemForwardV2024: WorkItemForwardV2024, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
86016
+ forwardWorkItem(id: string, workItemForwardV2024: WorkItemForwardV2024, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
85798
86017
  /**
85799
86018
  * This gets a collection of completed work items belonging to either the specified user(admin required), or the current user.
85800
86019
  * @summary Completed work items
@@ -85810,11 +86029,10 @@ export declare const WorkItemsV2024ApiFp: (configuration?: Configuration) => {
85810
86029
  * This gets a count of completed work items belonging to either the specified user(admin required), or the current user.
85811
86030
  * @summary Count completed work items
85812
86031
  * @param {string} [ownerId] ID of the work item owner.
85813
- * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
85814
86032
  * @param {*} [axiosOptions] Override http request option.
85815
86033
  * @throws {RequiredError}
85816
86034
  */
85817
- getCountCompletedWorkItems(ownerId?: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WorkItemsCountV2024>>;
86035
+ getCountCompletedWorkItems(ownerId?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WorkItemsCountV2024>>;
85818
86036
  /**
85819
86037
  * This gets a count of work items belonging to either the specified user(admin required), or the current user.
85820
86038
  * @summary Count work items
@@ -86058,12 +86276,6 @@ export interface WorkItemsV2024ApiForwardWorkItemRequest {
86058
86276
  * @memberof WorkItemsV2024ApiForwardWorkItem
86059
86277
  */
86060
86278
  readonly workItemForwardV2024: WorkItemForwardV2024;
86061
- /**
86062
- * Use this header to enable this experimental API.
86063
- * @type {string}
86064
- * @memberof WorkItemsV2024ApiForwardWorkItem
86065
- */
86066
- readonly xSailPointExperimental?: string;
86067
86279
  }
86068
86280
  /**
86069
86281
  * Request parameters for getCompletedWorkItems operation in WorkItemsV2024Api.
@@ -86108,12 +86320,6 @@ export interface WorkItemsV2024ApiGetCountCompletedWorkItemsRequest {
86108
86320
  * @memberof WorkItemsV2024ApiGetCountCompletedWorkItems
86109
86321
  */
86110
86322
  readonly ownerId?: string;
86111
- /**
86112
- * Use this header to enable this experimental API.
86113
- * @type {string}
86114
- * @memberof WorkItemsV2024ApiGetCountCompletedWorkItems
86115
- */
86116
- readonly xSailPointExperimental?: string;
86117
86323
  }
86118
86324
  /**
86119
86325
  * Request parameters for getCountWorkItems operation in WorkItemsV2024Api.