sailpoint-api-client 1.6.5 → 1.6.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.
@@ -13,6 +13,19 @@ import type { Configuration } from '../configuration';
13
13
  import type { AxiosPromise, AxiosInstance, RawAxiosRequestConfig } from 'axios';
14
14
  import type { RequestArgs } from './base';
15
15
  import { BaseAPI } from './base';
16
+ /**
17
+ * This is used for access configuration for a lifecycle state
18
+ * @export
19
+ * @interface AccessActionConfigurationV2025
20
+ */
21
+ export interface AccessActionConfigurationV2025 {
22
+ /**
23
+ * If true, then all accesses are marked for removal.
24
+ * @type {boolean}
25
+ * @memberof AccessActionConfigurationV2025
26
+ */
27
+ 'removeAllAccessEnabled'?: boolean;
28
+ }
16
29
  /**
17
30
  * Owner\'s identity.
18
31
  * @export
@@ -3138,11 +3151,23 @@ export interface AccountActionV2025 {
3138
3151
  */
3139
3152
  'action'?: AccountActionV2025ActionV2025;
3140
3153
  /**
3141
- * List of unique source IDs. The sources must have the ENABLE feature or flat file source. See \"/sources\" endpoint for source features.
3154
+ * A unique list of specific source IDs to apply the action to. The sources must have the ENABLE feature or flat file source. Required if allSources is not true. Must not be provided if allSources is true. Cannot be used together with excludeSourceIds See \"/sources\" endpoint for source features.
3155
+ * @type {Set<string>}
3156
+ * @memberof AccountActionV2025
3157
+ */
3158
+ 'sourceIds'?: Set<string> | null;
3159
+ /**
3160
+ * A list of source IDs to exclude from the action. Cannot be used together with sourceIds.
3142
3161
  * @type {Set<string>}
3143
3162
  * @memberof AccountActionV2025
3144
3163
  */
3145
- 'sourceIds'?: Set<string>;
3164
+ 'excludeSourceIds'?: Set<string> | null;
3165
+ /**
3166
+ * If true, the action applies to all available sources. If true, sourceIds must not be provided. If false or not set, sourceIds is required.
3167
+ * @type {boolean}
3168
+ * @memberof AccountActionV2025
3169
+ */
3170
+ 'allSources'?: boolean;
3146
3171
  }
3147
3172
  export declare const AccountActionV2025ActionV2025: {
3148
3173
  readonly Enable: "ENABLE";
@@ -3887,6 +3912,30 @@ export interface AccountAggregationStatusV2025 {
3887
3912
  * @memberof AccountAggregationStatusV2025
3888
3913
  */
3889
3914
  'processedAccounts'?: number;
3915
+ /**
3916
+ * The total number of accounts that have been marked for deletion during the aggregation. *Only available when status is ACCOUNTS_COLLECTED or COMPLETED.*
3917
+ * @type {number}
3918
+ * @memberof AccountAggregationStatusV2025
3919
+ */
3920
+ 'totalAccountsMarkedForDeletion'?: number;
3921
+ /**
3922
+ * The number of accounts that have been deleted during the aggregation. *Only available when status is ACCOUNTS_COLLECTED or COMPLETED.*
3923
+ * @type {number}
3924
+ * @memberof AccountAggregationStatusV2025
3925
+ */
3926
+ 'deletedAccounts'?: number;
3927
+ /**
3928
+ * The total number of unique identities that have been marked for refresh. *Only available when status is ACCOUNTS_COLLECTED or COMPLETED.*
3929
+ * @type {number}
3930
+ * @memberof AccountAggregationStatusV2025
3931
+ */
3932
+ 'totalIdentities'?: number;
3933
+ /**
3934
+ * The number of unique identities that have been refreshed at the time of the API call, and may increase on subsequent API calls while the status is ACCOUNTS_COLLECTED. *Only available when status is ACCOUNTS_COLLECTED or COMPLETED.*
3935
+ * @type {number}
3936
+ * @memberof AccountAggregationStatusV2025
3937
+ */
3938
+ 'processedIdentities'?: number;
3890
3939
  }
3891
3940
  export declare const AccountAggregationStatusV2025StatusV2025: {
3892
3941
  readonly Started: "STARTED";
@@ -8437,7 +8486,6 @@ export interface CampaignAllOfFilterV2025 {
8437
8486
  }
8438
8487
  export declare const CampaignAllOfFilterV2025TypeV2025: {
8439
8488
  readonly CampaignFilter: "CAMPAIGN_FILTER";
8440
- readonly Rule: "RULE";
8441
8489
  };
8442
8490
  export type CampaignAllOfFilterV2025TypeV2025 = typeof CampaignAllOfFilterV2025TypeV2025[keyof typeof CampaignAllOfFilterV2025TypeV2025];
8443
8491
  /**
@@ -21451,8 +21499,26 @@ export interface LifecycleStateV2025 {
21451
21499
  * @type {string}
21452
21500
  * @memberof LifecycleStateV2025
21453
21501
  */
21454
- 'identityState'?: string | null;
21502
+ 'identityState'?: LifecycleStateV2025IdentityStateV2025 | null;
21503
+ /**
21504
+ *
21505
+ * @type {AccessActionConfigurationV2025}
21506
+ * @memberof LifecycleStateV2025
21507
+ */
21508
+ 'accessActionConfiguration'?: AccessActionConfigurationV2025;
21509
+ /**
21510
+ * Priority level used to determine which profile to assign when a user exists in multiple profiles. Lower numeric values have higher priority. By default, new profiles are assigned the lowest priority. The assigned profile also controls access granted or removed during provisioning based on lifecycle state changes.
21511
+ * @type {number}
21512
+ * @memberof LifecycleStateV2025
21513
+ */
21514
+ 'priority'?: number | null;
21455
21515
  }
21516
+ export declare const LifecycleStateV2025IdentityStateV2025: {
21517
+ readonly Active: "ACTIVE";
21518
+ readonly InactiveShortTerm: "INACTIVE_SHORT_TERM";
21519
+ readonly InactiveLongTerm: "INACTIVE_LONG_TERM";
21520
+ };
21521
+ export type LifecycleStateV2025IdentityStateV2025 = typeof LifecycleStateV2025IdentityStateV2025[keyof typeof LifecycleStateV2025IdentityStateV2025];
21456
21522
  /**
21457
21523
  * Deleted lifecycle state.
21458
21524
  * @export
@@ -28031,7 +28097,7 @@ export interface ProvisioningCompletedV2025 {
28031
28097
  */
28032
28098
  'requester'?: ProvisioningCompletedRequesterV2025 | null;
28033
28099
  /**
28034
- * A list of provisioning instructions to perform on an account-by-account basis.
28100
+ * A list of provisioning instructions to be executed on a per-account basis. The order in which operations are executed may not always be predictable.
28035
28101
  * @type {Array<ProvisioningCompletedAccountRequestsInnerV2025>}
28036
28102
  * @memberof ProvisioningCompletedV2025
28037
28103
  */
@@ -45215,11 +45281,10 @@ export declare const AccessRequestsV2025ApiAxiosParamCreator: (configuration?: C
45215
45281
  * This endpoint closes access requests that are stuck in a pending state. It can be used throughout a request\'s lifecycle even after the approval state, unlike the [Cancel Access Request endpoint](https://developer.sailpoint.com/idn/api/v3/cancel-access-request/). To find pending access requests with the UI, navigate to Search and use this query: status: Pending AND \"Access Request\". Use the Column Chooser to select \'Tracking Number\', and use the \'Download\' button to export a CSV containing the tracking numbers. To find pending access requests with the API, use the [List Account Activities endpoint](https://developer.sailpoint.com/idn/api/v3/list-account-activities/). Input the IDs from either source. To track the status of endpoint requests, navigate to Search and use this query: name:\"Close Identity Requests\". Search will include \"Close Identity Requests Started\" audits when requests are initiated and \"Close Identity Requests Completed\" audits when requests are completed. The completion audit will list the identity request IDs that finished in error. This API triggers the [Provisioning Completed event trigger](https://developer.sailpoint.com/idn/docs/event-triggers/triggers/provisioning-completed/) for each access request that is closed.
45216
45282
  * @summary Close access request
45217
45283
  * @param {CloseAccessRequestV2025} closeAccessRequestV2025
45218
- * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
45219
45284
  * @param {*} [axiosOptions] Override http request option.
45220
45285
  * @throws {RequiredError}
45221
45286
  */
45222
- closeAccessRequest: (closeAccessRequestV2025: CloseAccessRequestV2025, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
45287
+ closeAccessRequest: (closeAccessRequestV2025: CloseAccessRequestV2025, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
45223
45288
  /**
45224
45289
  * Use this API to submit an access request in Identity Security Cloud (ISC), where it follows any ISC approval processes. :::info The ability to request access using this API is constrained by the Access Request Segments defined in the API token’s user context. ::: Access requests are processed asynchronously by ISC. A successful response from this endpoint means that the request has been submitted to ISC and is queued for processing. Because this endpoint is asynchronous, it doesn\'t return an error if you submit duplicate access requests in quick succession or submit an access request for access that is already in progress, approved, or rejected. It\'s best practice to check for any existing access requests that reference the same access items before submitting a new access request. This can be accomplished by using the [List Access Request Status](https://developer.sailpoint.com/idn/api/v3/list-access-request-status) or the [Pending Access Request Approvals](https://developer.sailpoint.com/idn/api/v3/list-pending-approvals) APIs. You can also use the [Search API](https://developer.sailpoint.com/idn/api/v3/search) to check the existing access items an identity has before submitting an access request to ensure that you aren\'t requesting access that is already granted. If you use this API to request access that an identity already has, without changing the account details or end date information from the existing assignment, the API will cancel the request as a duplicate. There are two types of access request: __GRANT_ACCESS__ * Can be requested for multiple identities in a single request. * Supports self request and request on behalf of other users. Refer to the [Get Access Request Configuration](https://developer.sailpoint.com/idn/api/v3/get-access-request-config) endpoint for request configuration options. * Allows any authenticated token (except API) to call this endpoint to request to grant access to themselves. Depending on the configuration, a user can request access for others. * Roles, access profiles and entitlements can be requested. * You can specify a `removeDate` to set or alter a sunset date-time on an assignment. The removeDate must be a future date-time, in the UTC timezone. Additionally, if the user already has the access assigned with a sunset date, you can also submit a request without a `removeDate` to request removal of the sunset date and time. * If a `removeDate` is specified, then the requested role, access profile, or entitlement will be removed on that date and time. * Now supports an alternate field \'requestedForWithRequestedItems\' for users to specify account selections while requesting items where they have more than one account on the source. :::caution If any entitlements are being requested, then the maximum number of entitlements that can be requested is 25, and the maximum number of identities that can be requested for is 10. If you exceed these limits, the request will fail with a 400 error. If you are not requesting any entitlements, then there are no limits. ::: __REVOKE_ACCESS__ * Can only be requested for a single identity at a time. * You cannot use an access request to revoke access from an identity if that access has been granted by role membership or by birthright provisioning. * Does not support self request. Only manager can request to revoke access for their directly managed employees. * If a `removeDate` is specified, then the requested role, access profile, or entitlement will be removed on that date and time. * Roles, access profiles, and entitlements can be requested for revocation. * Revoke requests for entitlements are limited to 1 entitlement per access request currently. * You can specify a `removeDate` to add or alter a sunset date and time on an assignment. The `removeDate` must be a future date-time, in the UTC timezone. If the user already has the access assigned with a sunset date and time, the removeDate must be a date-time earlier than the existing sunset date and time. * Allows a manager to request to revoke access for direct employees. A user with ORG_ADMIN authority can also request to revoke access from anyone. * Now supports REVOKE_ACCESS requests for identities with multiple accounts on a single source, with the help of \'assignmentId\' and \'nativeIdentity\' fields. These fields should be used within the \'requestedItems\' section for the revoke requests. * Usage of \'requestedForWithRequestedItems\' field is not supported for revoke requests.
45225
45290
  * @summary Submit access request
@@ -45329,11 +45394,10 @@ export declare const AccessRequestsV2025ApiFp: (configuration?: Configuration) =
45329
45394
  * This endpoint closes access requests that are stuck in a pending state. It can be used throughout a request\'s lifecycle even after the approval state, unlike the [Cancel Access Request endpoint](https://developer.sailpoint.com/idn/api/v3/cancel-access-request/). To find pending access requests with the UI, navigate to Search and use this query: status: Pending AND \"Access Request\". Use the Column Chooser to select \'Tracking Number\', and use the \'Download\' button to export a CSV containing the tracking numbers. To find pending access requests with the API, use the [List Account Activities endpoint](https://developer.sailpoint.com/idn/api/v3/list-account-activities/). Input the IDs from either source. To track the status of endpoint requests, navigate to Search and use this query: name:\"Close Identity Requests\". Search will include \"Close Identity Requests Started\" audits when requests are initiated and \"Close Identity Requests Completed\" audits when requests are completed. The completion audit will list the identity request IDs that finished in error. This API triggers the [Provisioning Completed event trigger](https://developer.sailpoint.com/idn/docs/event-triggers/triggers/provisioning-completed/) for each access request that is closed.
45330
45395
  * @summary Close access request
45331
45396
  * @param {CloseAccessRequestV2025} closeAccessRequestV2025
45332
- * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
45333
45397
  * @param {*} [axiosOptions] Override http request option.
45334
45398
  * @throws {RequiredError}
45335
45399
  */
45336
- closeAccessRequest(closeAccessRequestV2025: CloseAccessRequestV2025, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>>;
45400
+ closeAccessRequest(closeAccessRequestV2025: CloseAccessRequestV2025, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>>;
45337
45401
  /**
45338
45402
  * Use this API to submit an access request in Identity Security Cloud (ISC), where it follows any ISC approval processes. :::info The ability to request access using this API is constrained by the Access Request Segments defined in the API token’s user context. ::: Access requests are processed asynchronously by ISC. A successful response from this endpoint means that the request has been submitted to ISC and is queued for processing. Because this endpoint is asynchronous, it doesn\'t return an error if you submit duplicate access requests in quick succession or submit an access request for access that is already in progress, approved, or rejected. It\'s best practice to check for any existing access requests that reference the same access items before submitting a new access request. This can be accomplished by using the [List Access Request Status](https://developer.sailpoint.com/idn/api/v3/list-access-request-status) or the [Pending Access Request Approvals](https://developer.sailpoint.com/idn/api/v3/list-pending-approvals) APIs. You can also use the [Search API](https://developer.sailpoint.com/idn/api/v3/search) to check the existing access items an identity has before submitting an access request to ensure that you aren\'t requesting access that is already granted. If you use this API to request access that an identity already has, without changing the account details or end date information from the existing assignment, the API will cancel the request as a duplicate. There are two types of access request: __GRANT_ACCESS__ * Can be requested for multiple identities in a single request. * Supports self request and request on behalf of other users. Refer to the [Get Access Request Configuration](https://developer.sailpoint.com/idn/api/v3/get-access-request-config) endpoint for request configuration options. * Allows any authenticated token (except API) to call this endpoint to request to grant access to themselves. Depending on the configuration, a user can request access for others. * Roles, access profiles and entitlements can be requested. * You can specify a `removeDate` to set or alter a sunset date-time on an assignment. The removeDate must be a future date-time, in the UTC timezone. Additionally, if the user already has the access assigned with a sunset date, you can also submit a request without a `removeDate` to request removal of the sunset date and time. * If a `removeDate` is specified, then the requested role, access profile, or entitlement will be removed on that date and time. * Now supports an alternate field \'requestedForWithRequestedItems\' for users to specify account selections while requesting items where they have more than one account on the source. :::caution If any entitlements are being requested, then the maximum number of entitlements that can be requested is 25, and the maximum number of identities that can be requested for is 10. If you exceed these limits, the request will fail with a 400 error. If you are not requesting any entitlements, then there are no limits. ::: __REVOKE_ACCESS__ * Can only be requested for a single identity at a time. * You cannot use an access request to revoke access from an identity if that access has been granted by role membership or by birthright provisioning. * Does not support self request. Only manager can request to revoke access for their directly managed employees. * If a `removeDate` is specified, then the requested role, access profile, or entitlement will be removed on that date and time. * Roles, access profiles, and entitlements can be requested for revocation. * Revoke requests for entitlements are limited to 1 entitlement per access request currently. * You can specify a `removeDate` to add or alter a sunset date and time on an assignment. The `removeDate` must be a future date-time, in the UTC timezone. If the user already has the access assigned with a sunset date and time, the removeDate must be a date-time earlier than the existing sunset date and time. * Allows a manager to request to revoke access for direct employees. A user with ORG_ADMIN authority can also request to revoke access from anyone. * Now supports REVOKE_ACCESS requests for identities with multiple accounts on a single source, with the help of \'assignmentId\' and \'nativeIdentity\' fields. These fields should be used within the \'requestedItems\' section for the revoke requests. * Usage of \'requestedForWithRequestedItems\' field is not supported for revoke requests.
45339
45403
  * @summary Submit access request
@@ -45554,12 +45618,6 @@ export interface AccessRequestsV2025ApiCloseAccessRequestRequest {
45554
45618
  * @memberof AccessRequestsV2025ApiCloseAccessRequest
45555
45619
  */
45556
45620
  readonly closeAccessRequestV2025: CloseAccessRequestV2025;
45557
- /**
45558
- * Use this header to enable this experimental API.
45559
- * @type {string}
45560
- * @memberof AccessRequestsV2025ApiCloseAccessRequest
45561
- */
45562
- readonly xSailPointExperimental?: string;
45563
45621
  }
45564
45622
  /**
45565
45623
  * Request parameters for createAccessRequest operation in AccessRequestsV2025Api.
@@ -46048,11 +46106,10 @@ export declare const AccountAggregationsV2025ApiAxiosParamCreator: (configuratio
46048
46106
  * This API returns the status of an *in-progress* account aggregation, along with the total number of **NEW**, **CHANGED** and **DELETED** accounts found since the previous aggregation, and the number of those accounts that have been processed so far. Accounts that have not changed since the previous aggregation are not included in **totalAccounts** and **processedAccounts** counts returned by this API. This is distinct from **Accounts Scanned** shown in the Aggregation UI, which indicates total accounts scanned regardless of whether they changed or not. Since this endpoint reports on the status of an *in-progress* account aggregation, totalAccounts and processedAccounts may change between calls to this endpoint. *Only available up to an hour after the aggregation completes. May respond with *404 Not Found* after that.* required to call this API.
46049
46107
  * @summary In-progress account aggregation status
46050
46108
  * @param {string} id The account aggregation id
46051
- * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
46052
46109
  * @param {*} [axiosOptions] Override http request option.
46053
46110
  * @throws {RequiredError}
46054
46111
  */
46055
- getAccountAggregationStatus: (id: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
46112
+ getAccountAggregationStatus: (id: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
46056
46113
  };
46057
46114
  /**
46058
46115
  * AccountAggregationsV2025Api - functional programming interface
@@ -46063,11 +46120,10 @@ export declare const AccountAggregationsV2025ApiFp: (configuration?: Configurati
46063
46120
  * This API returns the status of an *in-progress* account aggregation, along with the total number of **NEW**, **CHANGED** and **DELETED** accounts found since the previous aggregation, and the number of those accounts that have been processed so far. Accounts that have not changed since the previous aggregation are not included in **totalAccounts** and **processedAccounts** counts returned by this API. This is distinct from **Accounts Scanned** shown in the Aggregation UI, which indicates total accounts scanned regardless of whether they changed or not. Since this endpoint reports on the status of an *in-progress* account aggregation, totalAccounts and processedAccounts may change between calls to this endpoint. *Only available up to an hour after the aggregation completes. May respond with *404 Not Found* after that.* required to call this API.
46064
46121
  * @summary In-progress account aggregation status
46065
46122
  * @param {string} id The account aggregation id
46066
- * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
46067
46123
  * @param {*} [axiosOptions] Override http request option.
46068
46124
  * @throws {RequiredError}
46069
46125
  */
46070
- getAccountAggregationStatus(id: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AccountAggregationStatusV2025>>;
46126
+ getAccountAggregationStatus(id: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AccountAggregationStatusV2025>>;
46071
46127
  };
46072
46128
  /**
46073
46129
  * AccountAggregationsV2025Api - factory interface
@@ -46095,12 +46151,6 @@ export interface AccountAggregationsV2025ApiGetAccountAggregationStatusRequest {
46095
46151
  * @memberof AccountAggregationsV2025ApiGetAccountAggregationStatus
46096
46152
  */
46097
46153
  readonly id: string;
46098
- /**
46099
- * Use this header to enable this experimental API.
46100
- * @type {string}
46101
- * @memberof AccountAggregationsV2025ApiGetAccountAggregationStatus
46102
- */
46103
- readonly xSailPointExperimental?: string;
46104
46154
  }
46105
46155
  /**
46106
46156
  * AccountAggregationsV2025Api - object-oriented interface
@@ -46248,11 +46298,10 @@ export declare const AccountsV2025ApiAxiosParamCreator: (configuration?: Configu
46248
46298
  * Use this endpoint to remove accounts from the system without provisioning changes to the source. Accounts that are removed could be re-created during the next aggregation. This endpoint is good for: * Removing accounts that no longer exist on the source. * Removing accounts that won\'t be aggregated following updates to the source configuration. * Forcing accounts to be re-created following the next aggregation to re-run account processing, support testing, etc.
46249
46299
  * @summary Remove account
46250
46300
  * @param {string} id The account id
46251
- * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
46252
46301
  * @param {*} [axiosOptions] Override http request option.
46253
46302
  * @throws {RequiredError}
46254
46303
  */
46255
- deleteAccountAsync: (id: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
46304
+ deleteAccountAsync: (id: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
46256
46305
  /**
46257
46306
  * This API submits a task to disable the account and returns the task ID.
46258
46307
  * @summary Disable account
@@ -46266,20 +46315,18 @@ export declare const AccountsV2025ApiAxiosParamCreator: (configuration?: Configu
46266
46315
  * This API submits a task to disable IDN account for a single identity.
46267
46316
  * @summary Disable idn account for identity
46268
46317
  * @param {string} id The identity id.
46269
- * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
46270
46318
  * @param {*} [axiosOptions] Override http request option.
46271
46319
  * @throws {RequiredError}
46272
46320
  */
46273
- disableAccountForIdentity: (id: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
46321
+ disableAccountForIdentity: (id: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
46274
46322
  /**
46275
46323
  * This API submits tasks to disable IDN account for each identity provided in the request body.
46276
46324
  * @summary Disable idn accounts for identities
46277
46325
  * @param {IdentitiesAccountsBulkRequestV2025} identitiesAccountsBulkRequestV2025
46278
- * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
46279
46326
  * @param {*} [axiosOptions] Override http request option.
46280
46327
  * @throws {RequiredError}
46281
46328
  */
46282
- disableAccountsForIdentities: (identitiesAccountsBulkRequestV2025: IdentitiesAccountsBulkRequestV2025, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
46329
+ disableAccountsForIdentities: (identitiesAccountsBulkRequestV2025: IdentitiesAccountsBulkRequestV2025, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
46283
46330
  /**
46284
46331
  * This API submits a task to enable account and returns the task ID.
46285
46332
  * @summary Enable account
@@ -46293,20 +46340,18 @@ export declare const AccountsV2025ApiAxiosParamCreator: (configuration?: Configu
46293
46340
  * This API submits a task to enable IDN account for a single identity.
46294
46341
  * @summary Enable idn account for identity
46295
46342
  * @param {string} id The identity id.
46296
- * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
46297
46343
  * @param {*} [axiosOptions] Override http request option.
46298
46344
  * @throws {RequiredError}
46299
46345
  */
46300
- enableAccountForIdentity: (id: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
46346
+ enableAccountForIdentity: (id: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
46301
46347
  /**
46302
46348
  * This API submits tasks to enable IDN account for each identity provided in the request body.
46303
46349
  * @summary Enable idn accounts for identities
46304
46350
  * @param {IdentitiesAccountsBulkRequestV2025} identitiesAccountsBulkRequestV2025
46305
- * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
46306
46351
  * @param {*} [axiosOptions] Override http request option.
46307
46352
  * @throws {RequiredError}
46308
46353
  */
46309
- enableAccountsForIdentities: (identitiesAccountsBulkRequestV2025: IdentitiesAccountsBulkRequestV2025, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
46354
+ enableAccountsForIdentities: (identitiesAccountsBulkRequestV2025: IdentitiesAccountsBulkRequestV2025, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
46310
46355
  /**
46311
46356
  * Use this API to return the details for a single account by its ID.
46312
46357
  * @summary Account details
@@ -46400,11 +46445,10 @@ export declare const AccountsV2025ApiFp: (configuration?: Configuration) => {
46400
46445
  * Use this endpoint to remove accounts from the system without provisioning changes to the source. Accounts that are removed could be re-created during the next aggregation. This endpoint is good for: * Removing accounts that no longer exist on the source. * Removing accounts that won\'t be aggregated following updates to the source configuration. * Forcing accounts to be re-created following the next aggregation to re-run account processing, support testing, etc.
46401
46446
  * @summary Remove account
46402
46447
  * @param {string} id The account id
46403
- * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
46404
46448
  * @param {*} [axiosOptions] Override http request option.
46405
46449
  * @throws {RequiredError}
46406
46450
  */
46407
- deleteAccountAsync(id: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TaskResultDtoV2025>>;
46451
+ deleteAccountAsync(id: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TaskResultDtoV2025>>;
46408
46452
  /**
46409
46453
  * This API submits a task to disable the account and returns the task ID.
46410
46454
  * @summary Disable account
@@ -46418,20 +46462,18 @@ export declare const AccountsV2025ApiFp: (configuration?: Configuration) => {
46418
46462
  * This API submits a task to disable IDN account for a single identity.
46419
46463
  * @summary Disable idn account for identity
46420
46464
  * @param {string} id The identity id.
46421
- * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
46422
46465
  * @param {*} [axiosOptions] Override http request option.
46423
46466
  * @throws {RequiredError}
46424
46467
  */
46425
- disableAccountForIdentity(id: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>>;
46468
+ disableAccountForIdentity(id: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>>;
46426
46469
  /**
46427
46470
  * This API submits tasks to disable IDN account for each identity provided in the request body.
46428
46471
  * @summary Disable idn accounts for identities
46429
46472
  * @param {IdentitiesAccountsBulkRequestV2025} identitiesAccountsBulkRequestV2025
46430
- * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
46431
46473
  * @param {*} [axiosOptions] Override http request option.
46432
46474
  * @throws {RequiredError}
46433
46475
  */
46434
- disableAccountsForIdentities(identitiesAccountsBulkRequestV2025: IdentitiesAccountsBulkRequestV2025, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<BulkIdentitiesAccountsResponseV2025>>>;
46476
+ disableAccountsForIdentities(identitiesAccountsBulkRequestV2025: IdentitiesAccountsBulkRequestV2025, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<BulkIdentitiesAccountsResponseV2025>>>;
46435
46477
  /**
46436
46478
  * This API submits a task to enable account and returns the task ID.
46437
46479
  * @summary Enable account
@@ -46445,20 +46487,18 @@ export declare const AccountsV2025ApiFp: (configuration?: Configuration) => {
46445
46487
  * This API submits a task to enable IDN account for a single identity.
46446
46488
  * @summary Enable idn account for identity
46447
46489
  * @param {string} id The identity id.
46448
- * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
46449
46490
  * @param {*} [axiosOptions] Override http request option.
46450
46491
  * @throws {RequiredError}
46451
46492
  */
46452
- enableAccountForIdentity(id: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>>;
46493
+ enableAccountForIdentity(id: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>>;
46453
46494
  /**
46454
46495
  * This API submits tasks to enable IDN account for each identity provided in the request body.
46455
46496
  * @summary Enable idn accounts for identities
46456
46497
  * @param {IdentitiesAccountsBulkRequestV2025} identitiesAccountsBulkRequestV2025
46457
- * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
46458
46498
  * @param {*} [axiosOptions] Override http request option.
46459
46499
  * @throws {RequiredError}
46460
46500
  */
46461
- enableAccountsForIdentities(identitiesAccountsBulkRequestV2025: IdentitiesAccountsBulkRequestV2025, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<BulkIdentitiesAccountsResponseV2025>>>;
46501
+ enableAccountsForIdentities(identitiesAccountsBulkRequestV2025: IdentitiesAccountsBulkRequestV2025, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<BulkIdentitiesAccountsResponseV2025>>>;
46462
46502
  /**
46463
46503
  * Use this API to return the details for a single account by its ID.
46464
46504
  * @summary Account details
@@ -46699,12 +46739,6 @@ export interface AccountsV2025ApiDeleteAccountAsyncRequest {
46699
46739
  * @memberof AccountsV2025ApiDeleteAccountAsync
46700
46740
  */
46701
46741
  readonly id: string;
46702
- /**
46703
- * Use this header to enable this experimental API.
46704
- * @type {string}
46705
- * @memberof AccountsV2025ApiDeleteAccountAsync
46706
- */
46707
- readonly xSailPointExperimental?: string;
46708
46742
  }
46709
46743
  /**
46710
46744
  * Request parameters for disableAccount operation in AccountsV2025Api.
@@ -46737,12 +46771,6 @@ export interface AccountsV2025ApiDisableAccountForIdentityRequest {
46737
46771
  * @memberof AccountsV2025ApiDisableAccountForIdentity
46738
46772
  */
46739
46773
  readonly id: string;
46740
- /**
46741
- * Use this header to enable this experimental API.
46742
- * @type {string}
46743
- * @memberof AccountsV2025ApiDisableAccountForIdentity
46744
- */
46745
- readonly xSailPointExperimental?: string;
46746
46774
  }
46747
46775
  /**
46748
46776
  * Request parameters for disableAccountsForIdentities operation in AccountsV2025Api.
@@ -46756,12 +46784,6 @@ export interface AccountsV2025ApiDisableAccountsForIdentitiesRequest {
46756
46784
  * @memberof AccountsV2025ApiDisableAccountsForIdentities
46757
46785
  */
46758
46786
  readonly identitiesAccountsBulkRequestV2025: IdentitiesAccountsBulkRequestV2025;
46759
- /**
46760
- * Use this header to enable this experimental API.
46761
- * @type {string}
46762
- * @memberof AccountsV2025ApiDisableAccountsForIdentities
46763
- */
46764
- readonly xSailPointExperimental?: string;
46765
46787
  }
46766
46788
  /**
46767
46789
  * Request parameters for enableAccount operation in AccountsV2025Api.
@@ -46794,12 +46816,6 @@ export interface AccountsV2025ApiEnableAccountForIdentityRequest {
46794
46816
  * @memberof AccountsV2025ApiEnableAccountForIdentity
46795
46817
  */
46796
46818
  readonly id: string;
46797
- /**
46798
- * Use this header to enable this experimental API.
46799
- * @type {string}
46800
- * @memberof AccountsV2025ApiEnableAccountForIdentity
46801
- */
46802
- readonly xSailPointExperimental?: string;
46803
46819
  }
46804
46820
  /**
46805
46821
  * Request parameters for enableAccountsForIdentities operation in AccountsV2025Api.
@@ -46813,12 +46829,6 @@ export interface AccountsV2025ApiEnableAccountsForIdentitiesRequest {
46813
46829
  * @memberof AccountsV2025ApiEnableAccountsForIdentities
46814
46830
  */
46815
46831
  readonly identitiesAccountsBulkRequestV2025: IdentitiesAccountsBulkRequestV2025;
46816
- /**
46817
- * Use this header to enable this experimental API.
46818
- * @type {string}
46819
- * @memberof AccountsV2025ApiEnableAccountsForIdentities
46820
- */
46821
- readonly xSailPointExperimental?: string;
46822
46832
  }
46823
46833
  /**
46824
46834
  * Request parameters for getAccount operation in AccountsV2025Api.
@@ -65219,7 +65229,7 @@ export declare const LifecycleStatesV2025ApiAxiosParamCreator: (configuration?:
65219
65229
  * @summary Update lifecycle state
65220
65230
  * @param {string} identityProfileId Identity profile ID.
65221
65231
  * @param {string} lifecycleStateId Lifecycle state ID.
65222
- * @param {Array<JsonPatchOperationV2025>} jsonPatchOperationV2025 A list of lifecycle state update operations according to the [JSON Patch](https://tools.ietf.org/html/rfc6902) standard. The following fields can be updated: * enabled * description * accountActions * accessProfileIds * emailNotificationOption
65232
+ * @param {Array<JsonPatchOperationV2025>} jsonPatchOperationV2025 A list of lifecycle state update operations according to the [JSON Patch](https://tools.ietf.org/html/rfc6902) standard. The following fields can be updated: * enabled * description * accountActions * accessProfileIds * emailNotificationOption * accessActionConfiguration * priority
65223
65233
  * @param {*} [axiosOptions] Override http request option.
65224
65234
  * @throws {RequiredError}
65225
65235
  */
@@ -65283,7 +65293,7 @@ export declare const LifecycleStatesV2025ApiFp: (configuration?: Configuration)
65283
65293
  * @summary Update lifecycle state
65284
65294
  * @param {string} identityProfileId Identity profile ID.
65285
65295
  * @param {string} lifecycleStateId Lifecycle state ID.
65286
- * @param {Array<JsonPatchOperationV2025>} jsonPatchOperationV2025 A list of lifecycle state update operations according to the [JSON Patch](https://tools.ietf.org/html/rfc6902) standard. The following fields can be updated: * enabled * description * accountActions * accessProfileIds * emailNotificationOption
65296
+ * @param {Array<JsonPatchOperationV2025>} jsonPatchOperationV2025 A list of lifecycle state update operations according to the [JSON Patch](https://tools.ietf.org/html/rfc6902) standard. The following fields can be updated: * enabled * description * accountActions * accessProfileIds * emailNotificationOption * accessActionConfiguration * priority
65287
65297
  * @param {*} [axiosOptions] Override http request option.
65288
65298
  * @throws {RequiredError}
65289
65299
  */
@@ -65475,7 +65485,7 @@ export interface LifecycleStatesV2025ApiUpdateLifecycleStatesRequest {
65475
65485
  */
65476
65486
  readonly lifecycleStateId: string;
65477
65487
  /**
65478
- * A list of lifecycle state update operations according to the [JSON Patch](https://tools.ietf.org/html/rfc6902) standard. The following fields can be updated: * enabled * description * accountActions * accessProfileIds * emailNotificationOption
65488
+ * A list of lifecycle state update operations according to the [JSON Patch](https://tools.ietf.org/html/rfc6902) standard. The following fields can be updated: * enabled * description * accountActions * accessProfileIds * emailNotificationOption * accessActionConfiguration * priority
65479
65489
  * @type {Array<JsonPatchOperationV2025>}
65480
65490
  * @memberof LifecycleStatesV2025ApiUpdateLifecycleStates
65481
65491
  */
@@ -70517,7 +70527,7 @@ export declare const NotificationsV2025ApiAxiosParamCreator: (configuration?: Co
70517
70527
  */
70518
70528
  createDomainDkim: (xSailPointExperimental: string, domainAddressV2025: DomainAddressV2025, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
70519
70529
  /**
70520
- * This creates a template for your site. You can also use this endpoint to update a template. First, copy the response body from the [get notification template endpoint](https://developer.sailpoint.com/idn/api/beta/get-notification-template) for a template you wish to update and paste it into the request body for this endpoint. Modify the fields you want to change and submit the POST request when ready.
70530
+ * This will update notification templates that are available in your tenant. Note that you cannot create new templates in your tenant, but you can use this to create custom notifications from existing templates. First, copy the response body from the [get notification template endpoint](https://developer.sailpoint.com/idn/api/beta/get-notification-template) for a template you wish to update and paste it into the request body for this endpoint. Modify the fields you want to change and submit the POST request when ready.
70521
70531
  * @summary Create notification template
70522
70532
  * @param {string} xSailPointExperimental Use this header to enable this experimental API.
70523
70533
  * @param {TemplateDtoV2025} templateDtoV2025
@@ -70624,11 +70634,12 @@ export declare const NotificationsV2025ApiAxiosParamCreator: (configuration?: Co
70624
70634
  * @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.
70625
70635
  * @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.
70626
70636
  * @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, in, sw* **medium**: *eq, sw* **locale**: *eq, sw*
70637
+ * @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: **key, name, medium**
70627
70638
  * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
70628
70639
  * @param {*} [axiosOptions] Override http request option.
70629
70640
  * @throws {RequiredError}
70630
70641
  */
70631
- listNotificationTemplates: (limit?: number, offset?: number, filters?: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
70642
+ listNotificationTemplates: (limit?: number, offset?: number, filters?: string, sorters?: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
70632
70643
  /**
70633
70644
  * Change the MAIL FROM domain of an AWS SES email identity and provide the MX and TXT records to be placed in the caller\'s DNS
70634
70645
  * @summary Change mail from domain
@@ -70663,7 +70674,7 @@ export declare const NotificationsV2025ApiFp: (configuration?: Configuration) =>
70663
70674
  */
70664
70675
  createDomainDkim(xSailPointExperimental: string, domainAddressV2025: DomainAddressV2025, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DomainStatusDtoV2025>>;
70665
70676
  /**
70666
- * This creates a template for your site. You can also use this endpoint to update a template. First, copy the response body from the [get notification template endpoint](https://developer.sailpoint.com/idn/api/beta/get-notification-template) for a template you wish to update and paste it into the request body for this endpoint. Modify the fields you want to change and submit the POST request when ready.
70677
+ * This will update notification templates that are available in your tenant. Note that you cannot create new templates in your tenant, but you can use this to create custom notifications from existing templates. First, copy the response body from the [get notification template endpoint](https://developer.sailpoint.com/idn/api/beta/get-notification-template) for a template you wish to update and paste it into the request body for this endpoint. Modify the fields you want to change and submit the POST request when ready.
70667
70678
  * @summary Create notification template
70668
70679
  * @param {string} xSailPointExperimental Use this header to enable this experimental API.
70669
70680
  * @param {TemplateDtoV2025} templateDtoV2025
@@ -70770,11 +70781,12 @@ export declare const NotificationsV2025ApiFp: (configuration?: Configuration) =>
70770
70781
  * @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.
70771
70782
  * @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.
70772
70783
  * @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, in, sw* **medium**: *eq, sw* **locale**: *eq, sw*
70784
+ * @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: **key, name, medium**
70773
70785
  * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
70774
70786
  * @param {*} [axiosOptions] Override http request option.
70775
70787
  * @throws {RequiredError}
70776
70788
  */
70777
- listNotificationTemplates(limit?: number, offset?: number, filters?: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<TemplateDtoV2025>>>;
70789
+ listNotificationTemplates(limit?: number, offset?: number, filters?: string, sorters?: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<TemplateDtoV2025>>>;
70778
70790
  /**
70779
70791
  * Change the MAIL FROM domain of an AWS SES email identity and provide the MX and TXT records to be placed in the caller\'s DNS
70780
70792
  * @summary Change mail from domain
@@ -70808,7 +70820,7 @@ export declare const NotificationsV2025ApiFactory: (configuration?: Configuratio
70808
70820
  */
70809
70821
  createDomainDkim(requestParameters: NotificationsV2025ApiCreateDomainDkimRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<DomainStatusDtoV2025>;
70810
70822
  /**
70811
- * This creates a template for your site. You can also use this endpoint to update a template. First, copy the response body from the [get notification template endpoint](https://developer.sailpoint.com/idn/api/beta/get-notification-template) for a template you wish to update and paste it into the request body for this endpoint. Modify the fields you want to change and submit the POST request when ready.
70823
+ * This will update notification templates that are available in your tenant. Note that you cannot create new templates in your tenant, but you can use this to create custom notifications from existing templates. First, copy the response body from the [get notification template endpoint](https://developer.sailpoint.com/idn/api/beta/get-notification-template) for a template you wish to update and paste it into the request body for this endpoint. Modify the fields you want to change and submit the POST request when ready.
70812
70824
  * @summary Create notification template
70813
70825
  * @param {NotificationsV2025ApiCreateNotificationTemplateRequest} requestParameters Request parameters.
70814
70826
  * @param {*} [axiosOptions] Override http request option.
@@ -71190,6 +71202,12 @@ export interface NotificationsV2025ApiListNotificationTemplatesRequest {
71190
71202
  * @memberof NotificationsV2025ApiListNotificationTemplates
71191
71203
  */
71192
71204
  readonly filters?: string;
71205
+ /**
71206
+ * 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: **key, name, medium**
71207
+ * @type {string}
71208
+ * @memberof NotificationsV2025ApiListNotificationTemplates
71209
+ */
71210
+ readonly sorters?: string;
71193
71211
  /**
71194
71212
  * Use this header to enable this experimental API.
71195
71213
  * @type {string}
@@ -71252,7 +71270,7 @@ export declare class NotificationsV2025Api extends BaseAPI {
71252
71270
  */
71253
71271
  createDomainDkim(requestParameters: NotificationsV2025ApiCreateDomainDkimRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DomainStatusDtoV2025, any>>;
71254
71272
  /**
71255
- * This creates a template for your site. You can also use this endpoint to update a template. First, copy the response body from the [get notification template endpoint](https://developer.sailpoint.com/idn/api/beta/get-notification-template) for a template you wish to update and paste it into the request body for this endpoint. Modify the fields you want to change and submit the POST request when ready.
71273
+ * This will update notification templates that are available in your tenant. Note that you cannot create new templates in your tenant, but you can use this to create custom notifications from existing templates. First, copy the response body from the [get notification template endpoint](https://developer.sailpoint.com/idn/api/beta/get-notification-template) for a template you wish to update and paste it into the request body for this endpoint. Modify the fields you want to change and submit the POST request when ready.
71256
71274
  * @summary Create notification template
71257
71275
  * @param {NotificationsV2025ApiCreateNotificationTemplateRequest} requestParameters Request parameters.
71258
71276
  * @param {*} [axiosOptions] Override http request option.
@@ -71650,11 +71668,10 @@ export declare const OrgConfigV2025ApiAxiosParamCreator: (configuration?: Config
71650
71668
  /**
71651
71669
  * Get the current organization\'s configuration settings, only external accessible properties.
71652
71670
  * @summary Get org config settings
71653
- * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
71654
71671
  * @param {*} [axiosOptions] Override http request option.
71655
71672
  * @throws {RequiredError}
71656
71673
  */
71657
- getOrgConfig: (xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
71674
+ getOrgConfig: (axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
71658
71675
  /**
71659
71676
  * List the valid time zones that can be set in organization configurations.
71660
71677
  * @summary Get valid time zones
@@ -71669,12 +71686,11 @@ export declare const OrgConfigV2025ApiAxiosParamCreator: (configuration?: Config
71669
71686
  /**
71670
71687
  * Patch the current organization\'s configuration, using http://jsonpatch.com/ syntax. This is commonly used to changing an organization\'s time zone.
71671
71688
  * @summary Patch org config
71672
- * @param {string} xSailPointExperimental Use this header to enable this experimental API.
71673
71689
  * @param {Array<JsonPatchOperationV2025>} jsonPatchOperationV2025 A list of schema attribute update operations according to the [JSON Patch](https://tools.ietf.org/html/rfc6902) standard.
71674
71690
  * @param {*} [axiosOptions] Override http request option.
71675
71691
  * @throws {RequiredError}
71676
71692
  */
71677
- patchOrgConfig: (xSailPointExperimental: string, jsonPatchOperationV2025: Array<JsonPatchOperationV2025>, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
71693
+ patchOrgConfig: (jsonPatchOperationV2025: Array<JsonPatchOperationV2025>, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
71678
71694
  };
71679
71695
  /**
71680
71696
  * OrgConfigV2025Api - functional programming interface
@@ -71684,11 +71700,10 @@ export declare const OrgConfigV2025ApiFp: (configuration?: Configuration) => {
71684
71700
  /**
71685
71701
  * Get the current organization\'s configuration settings, only external accessible properties.
71686
71702
  * @summary Get org config settings
71687
- * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
71688
71703
  * @param {*} [axiosOptions] Override http request option.
71689
71704
  * @throws {RequiredError}
71690
71705
  */
71691
- getOrgConfig(xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<OrgConfigV2025>>;
71706
+ getOrgConfig(axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<OrgConfigV2025>>;
71692
71707
  /**
71693
71708
  * List the valid time zones that can be set in organization configurations.
71694
71709
  * @summary Get valid time zones
@@ -71703,12 +71718,11 @@ export declare const OrgConfigV2025ApiFp: (configuration?: Configuration) => {
71703
71718
  /**
71704
71719
  * Patch the current organization\'s configuration, using http://jsonpatch.com/ syntax. This is commonly used to changing an organization\'s time zone.
71705
71720
  * @summary Patch org config
71706
- * @param {string} xSailPointExperimental Use this header to enable this experimental API.
71707
71721
  * @param {Array<JsonPatchOperationV2025>} jsonPatchOperationV2025 A list of schema attribute update operations according to the [JSON Patch](https://tools.ietf.org/html/rfc6902) standard.
71708
71722
  * @param {*} [axiosOptions] Override http request option.
71709
71723
  * @throws {RequiredError}
71710
71724
  */
71711
- patchOrgConfig(xSailPointExperimental: string, jsonPatchOperationV2025: Array<JsonPatchOperationV2025>, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<OrgConfigV2025>>;
71725
+ patchOrgConfig(jsonPatchOperationV2025: Array<JsonPatchOperationV2025>, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<OrgConfigV2025>>;
71712
71726
  };
71713
71727
  /**
71714
71728
  * OrgConfigV2025Api - factory interface
@@ -71718,11 +71732,10 @@ export declare const OrgConfigV2025ApiFactory: (configuration?: Configuration, b
71718
71732
  /**
71719
71733
  * Get the current organization\'s configuration settings, only external accessible properties.
71720
71734
  * @summary Get org config settings
71721
- * @param {OrgConfigV2025ApiGetOrgConfigRequest} requestParameters Request parameters.
71722
71735
  * @param {*} [axiosOptions] Override http request option.
71723
71736
  * @throws {RequiredError}
71724
71737
  */
71725
- getOrgConfig(requestParameters?: OrgConfigV2025ApiGetOrgConfigRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<OrgConfigV2025>;
71738
+ getOrgConfig(axiosOptions?: RawAxiosRequestConfig): AxiosPromise<OrgConfigV2025>;
71726
71739
  /**
71727
71740
  * List the valid time zones that can be set in organization configurations.
71728
71741
  * @summary Get valid time zones
@@ -71740,19 +71753,6 @@ export declare const OrgConfigV2025ApiFactory: (configuration?: Configuration, b
71740
71753
  */
71741
71754
  patchOrgConfig(requestParameters: OrgConfigV2025ApiPatchOrgConfigRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<OrgConfigV2025>;
71742
71755
  };
71743
- /**
71744
- * Request parameters for getOrgConfig operation in OrgConfigV2025Api.
71745
- * @export
71746
- * @interface OrgConfigV2025ApiGetOrgConfigRequest
71747
- */
71748
- export interface OrgConfigV2025ApiGetOrgConfigRequest {
71749
- /**
71750
- * Use this header to enable this experimental API.
71751
- * @type {string}
71752
- * @memberof OrgConfigV2025ApiGetOrgConfig
71753
- */
71754
- readonly xSailPointExperimental?: string;
71755
- }
71756
71756
  /**
71757
71757
  * Request parameters for getValidTimeZones operation in OrgConfigV2025Api.
71758
71758
  * @export
@@ -71790,12 +71790,6 @@ export interface OrgConfigV2025ApiGetValidTimeZonesRequest {
71790
71790
  * @interface OrgConfigV2025ApiPatchOrgConfigRequest
71791
71791
  */
71792
71792
  export interface OrgConfigV2025ApiPatchOrgConfigRequest {
71793
- /**
71794
- * Use this header to enable this experimental API.
71795
- * @type {string}
71796
- * @memberof OrgConfigV2025ApiPatchOrgConfig
71797
- */
71798
- readonly xSailPointExperimental: string;
71799
71793
  /**
71800
71794
  * A list of schema attribute update operations according to the [JSON Patch](https://tools.ietf.org/html/rfc6902) standard.
71801
71795
  * @type {Array<JsonPatchOperationV2025>}
@@ -71813,12 +71807,11 @@ export declare class OrgConfigV2025Api extends BaseAPI {
71813
71807
  /**
71814
71808
  * Get the current organization\'s configuration settings, only external accessible properties.
71815
71809
  * @summary Get org config settings
71816
- * @param {OrgConfigV2025ApiGetOrgConfigRequest} requestParameters Request parameters.
71817
71810
  * @param {*} [axiosOptions] Override http request option.
71818
71811
  * @throws {RequiredError}
71819
71812
  * @memberof OrgConfigV2025Api
71820
71813
  */
71821
- getOrgConfig(requestParameters?: OrgConfigV2025ApiGetOrgConfigRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OrgConfigV2025, any>>;
71814
+ getOrgConfig(axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OrgConfigV2025, any>>;
71822
71815
  /**
71823
71816
  * List the valid time zones that can be set in organization configurations.
71824
71817
  * @summary Get valid time zones
@@ -79309,13 +79302,12 @@ export declare const SourcesV2025ApiAxiosParamCreator: (configuration?: Configur
79309
79302
  createSourceSchema: (sourceId: string, schemaV2025: SchemaV2025, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
79310
79303
  /**
79311
79304
  * Use this endpoint to remove all accounts from the system without provisioning changes to the source. Accounts that are removed could be re-created during the next aggregation. This endpoint is good for: * Removing accounts that no longer exist on the source. * Removing accounts that won\'t be aggregated following updates to the source configuration. * Forcing accounts to be re-created following the next aggregation to re-run account processing, support testing, etc.
79312
- * @summary Remove all accounts in a source
79305
+ * @summary Remove all accounts in source
79313
79306
  * @param {string} id The source id
79314
- * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
79315
79307
  * @param {*} [axiosOptions] Override http request option.
79316
79308
  * @throws {RequiredError}
79317
79309
  */
79318
- deleteAccountsAsync: (id: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
79310
+ deleteAccountsAsync: (id: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
79319
79311
  /**
79320
79312
  * Deletes the native change detection configuration for the source specified by the given ID.
79321
79313
  * @summary Delete native change detection configuration
@@ -79539,12 +79531,11 @@ export declare const SourcesV2025ApiAxiosParamCreator: (configuration?: Configur
79539
79531
  * File is required for upload. You will also need to set the Content-Type header to `multipart/form-data`
79540
79532
  * @summary Process uncorrelated accounts
79541
79533
  * @param {string} id Source Id
79542
- * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
79543
79534
  * @param {File} [file]
79544
79535
  * @param {*} [axiosOptions] Override http request option.
79545
79536
  * @throws {RequiredError}
79546
79537
  */
79547
- importUncorrelatedAccounts: (id: string, xSailPointExperimental?: string, file?: File, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
79538
+ importUncorrelatedAccounts: (id: string, file?: File, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
79548
79539
  /**
79549
79540
  * This end-point lists all the ProvisioningPolicies in IdentityNow.
79550
79541
  * @summary Lists provisioningpolicies
@@ -79776,13 +79767,12 @@ export declare const SourcesV2025ApiFp: (configuration?: Configuration) => {
79776
79767
  createSourceSchema(sourceId: string, schemaV2025: SchemaV2025, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SchemaV2025>>;
79777
79768
  /**
79778
79769
  * Use this endpoint to remove all accounts from the system without provisioning changes to the source. Accounts that are removed could be re-created during the next aggregation. This endpoint is good for: * Removing accounts that no longer exist on the source. * Removing accounts that won\'t be aggregated following updates to the source configuration. * Forcing accounts to be re-created following the next aggregation to re-run account processing, support testing, etc.
79779
- * @summary Remove all accounts in a source
79770
+ * @summary Remove all accounts in source
79780
79771
  * @param {string} id The source id
79781
- * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
79782
79772
  * @param {*} [axiosOptions] Override http request option.
79783
79773
  * @throws {RequiredError}
79784
79774
  */
79785
- deleteAccountsAsync(id: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TaskResultDtoV2025>>;
79775
+ deleteAccountsAsync(id: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TaskResultDtoV2025>>;
79786
79776
  /**
79787
79777
  * Deletes the native change detection configuration for the source specified by the given ID.
79788
79778
  * @summary Delete native change detection configuration
@@ -80006,12 +79996,11 @@ export declare const SourcesV2025ApiFp: (configuration?: Configuration) => {
80006
79996
  * File is required for upload. You will also need to set the Content-Type header to `multipart/form-data`
80007
79997
  * @summary Process uncorrelated accounts
80008
79998
  * @param {string} id Source Id
80009
- * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
80010
79999
  * @param {File} [file]
80011
80000
  * @param {*} [axiosOptions] Override http request option.
80012
80001
  * @throws {RequiredError}
80013
80002
  */
80014
- importUncorrelatedAccounts(id: string, xSailPointExperimental?: string, file?: File, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<LoadUncorrelatedAccountsTaskV2025>>;
80003
+ importUncorrelatedAccounts(id: string, file?: File, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<LoadUncorrelatedAccountsTaskV2025>>;
80015
80004
  /**
80016
80005
  * This end-point lists all the ProvisioningPolicies in IdentityNow.
80017
80006
  * @summary Lists provisioningpolicies
@@ -80239,7 +80228,7 @@ export declare const SourcesV2025ApiFactory: (configuration?: Configuration, bas
80239
80228
  createSourceSchema(requestParameters: SourcesV2025ApiCreateSourceSchemaRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<SchemaV2025>;
80240
80229
  /**
80241
80230
  * Use this endpoint to remove all accounts from the system without provisioning changes to the source. Accounts that are removed could be re-created during the next aggregation. This endpoint is good for: * Removing accounts that no longer exist on the source. * Removing accounts that won\'t be aggregated following updates to the source configuration. * Forcing accounts to be re-created following the next aggregation to re-run account processing, support testing, etc.
80242
- * @summary Remove all accounts in a source
80231
+ * @summary Remove all accounts in source
80243
80232
  * @param {SourcesV2025ApiDeleteAccountsAsyncRequest} requestParameters Request parameters.
80244
80233
  * @param {*} [axiosOptions] Override http request option.
80245
80234
  * @throws {RequiredError}
@@ -80702,12 +80691,6 @@ export interface SourcesV2025ApiDeleteAccountsAsyncRequest {
80702
80691
  * @memberof SourcesV2025ApiDeleteAccountsAsync
80703
80692
  */
80704
80693
  readonly id: string;
80705
- /**
80706
- * Use this header to enable this experimental API.
80707
- * @type {string}
80708
- * @memberof SourcesV2025ApiDeleteAccountsAsync
80709
- */
80710
- readonly xSailPointExperimental?: string;
80711
80694
  }
80712
80695
  /**
80713
80696
  * Request parameters for deleteNativeChangeDetectionConfig operation in SourcesV2025Api.
@@ -81160,12 +81143,6 @@ export interface SourcesV2025ApiImportUncorrelatedAccountsRequest {
81160
81143
  * @memberof SourcesV2025ApiImportUncorrelatedAccounts
81161
81144
  */
81162
81145
  readonly id: string;
81163
- /**
81164
- * Use this header to enable this experimental API.
81165
- * @type {string}
81166
- * @memberof SourcesV2025ApiImportUncorrelatedAccounts
81167
- */
81168
- readonly xSailPointExperimental?: string;
81169
81146
  /**
81170
81147
  *
81171
81148
  * @type {File}
@@ -81640,7 +81617,7 @@ export declare class SourcesV2025Api extends BaseAPI {
81640
81617
  createSourceSchema(requestParameters: SourcesV2025ApiCreateSourceSchemaRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SchemaV2025, any>>;
81641
81618
  /**
81642
81619
  * Use this endpoint to remove all accounts from the system without provisioning changes to the source. Accounts that are removed could be re-created during the next aggregation. This endpoint is good for: * Removing accounts that no longer exist on the source. * Removing accounts that won\'t be aggregated following updates to the source configuration. * Forcing accounts to be re-created following the next aggregation to re-run account processing, support testing, etc.
81643
- * @summary Remove all accounts in a source
81620
+ * @summary Remove all accounts in source
81644
81621
  * @param {SourcesV2025ApiDeleteAccountsAsyncRequest} requestParameters Request parameters.
81645
81622
  * @param {*} [axiosOptions] Override http request option.
81646
81623
  * @throws {RequiredError}