sailpoint-api-client 1.8.57 → 1.8.59

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 (49) hide show
  1. package/beta/README.md +2 -2
  2. package/beta/api.ts +71 -11
  3. package/beta/common.ts +2 -2
  4. package/beta/package.json +1 -1
  5. package/dist/beta/api.d.ts +71 -11
  6. package/dist/beta/api.js +8 -8
  7. package/dist/beta/api.js.map +1 -1
  8. package/dist/beta/common.js +2 -2
  9. package/dist/nerm/common.js +2 -2
  10. package/dist/nermv2025/common.js +2 -2
  11. package/dist/v2024/api.d.ts +68 -8
  12. package/dist/v2024/api.js +6 -6
  13. package/dist/v2024/api.js.map +1 -1
  14. package/dist/v2024/common.js +2 -2
  15. package/dist/v2025/api.d.ts +92 -8
  16. package/dist/v2025/api.js +30 -6
  17. package/dist/v2025/api.js.map +1 -1
  18. package/dist/v2025/common.js +2 -2
  19. package/dist/v2026/api.d.ts +475 -184
  20. package/dist/v2026/api.js +744 -441
  21. package/dist/v2026/api.js.map +1 -1
  22. package/dist/v2026/common.js +2 -2
  23. package/dist/v3/api.d.ts +62 -8
  24. package/dist/v3/api.js +6 -6
  25. package/dist/v3/api.js.map +1 -1
  26. package/dist/v3/common.js +2 -2
  27. package/nerm/README.md +2 -2
  28. package/nerm/common.ts +2 -2
  29. package/nerm/package.json +1 -1
  30. package/nermv2025/README.md +2 -2
  31. package/nermv2025/common.ts +2 -2
  32. package/nermv2025/package.json +1 -1
  33. package/package.json +1 -1
  34. package/v2024/README.md +2 -2
  35. package/v2024/api.ts +68 -8
  36. package/v2024/common.ts +2 -2
  37. package/v2024/package.json +1 -1
  38. package/v2025/README.md +2 -2
  39. package/v2025/api.ts +92 -8
  40. package/v2025/common.ts +2 -2
  41. package/v2025/package.json +1 -1
  42. package/v2026/README.md +2 -2
  43. package/v2026/api.ts +822 -370
  44. package/v2026/common.ts +2 -2
  45. package/v2026/package.json +1 -1
  46. package/v3/README.md +2 -2
  47. package/v3/api.ts +62 -8
  48. package/v3/common.ts +2 -2
  49. package/v3/package.json +1 -1
@@ -250,12 +250,12 @@ var createRequestFunction = function (axiosArgs, globalAxios, BASE_PATH, configu
250
250
  if (axios === void 0) { axios = globalAxios; }
251
251
  if (basePath === void 0) { basePath = BASE_PATH; }
252
252
  (0, axios_retry_1.default)(axios, configuration.retriesConfig);
253
- var userAgent = "SailPoint-SDK-TypeScript/1.8.57";
253
+ var userAgent = "SailPoint-SDK-TypeScript/1.8.59";
254
254
  if ((configuration === null || configuration === void 0 ? void 0 : configuration.consumerIdentifier) && (configuration === null || configuration === void 0 ? void 0 : configuration.consumerVersion)) {
255
255
  userAgent += " (".concat(configuration.consumerIdentifier, "/").concat(configuration.consumerVersion, ")");
256
256
  }
257
257
  userAgent += " (".concat(process.platform, "; ").concat(process.arch, ") Node/").concat(process.versions.node, " (openapi-generator/7.12.0)");
258
- var headers = __assign(__assign(__assign({}, axiosArgs.axiosOptions.headers), { 'X-SailPoint-SDK': 'typescript-1.8.57' }), { 'User-Agent': userAgent });
258
+ var headers = __assign(__assign(__assign({}, axiosArgs.axiosOptions.headers), { 'X-SailPoint-SDK': 'typescript-1.8.59' }), { 'User-Agent': userAgent });
259
259
  if (!configuration.experimental && ("X-SailPoint-Experimental" in headers)) {
260
260
  throw new Error("You are using Experimental APIs. Set configuration.experimental = True to enable these APIs in the SDK.");
261
261
  }
@@ -2177,6 +2177,12 @@ export interface AccessRequestAdminItemStatusV2025 {
2177
2177
  * @memberof AccessRequestAdminItemStatusV2025
2178
2178
  */
2179
2179
  'description'?: string | null;
2180
+ /**
2181
+ * When the role access is scheduled for provisioning.
2182
+ * @type {string}
2183
+ * @memberof AccessRequestAdminItemStatusV2025
2184
+ */
2185
+ 'startDate'?: string | null;
2180
2186
  /**
2181
2187
  * When the role access is scheduled for removal.
2182
2188
  * @type {string}
@@ -2516,6 +2522,12 @@ export interface AccessRequestItemV2025 {
2516
2522
  'clientMetadata'?: {
2517
2523
  [key: string]: string;
2518
2524
  };
2525
+ /**
2526
+ * The date and time the role or access profile or entitlement is/will be provisioned to the specified identity. Also known as the sunrise date. * Specify a date-time in the future. * This date-time can be used to indicate date-time when access item will be provisioned on the identity account. A GRANT_ACCESS request can use startDate to specify when to schedule provisioning of access item for an identity/account & a MODIFY_ACCESS request can use startDate to change the provisioning date-time of already assigned access item. But REVOKE_ACCESS request can not have startDate field. You can change the sunrise date in requests for yourself or others you are authorized to request for. * If the startDate is in the past, then the provisioning will be processed as soon as possible, but no guarantees can be made about when the provisioning will occur. If the startDate is in the future, then the provisioning will be scheduled to occur on that date and time. If no startDate is provided, then the provisioning will be processed as soon as possible.
2527
+ * @type {string}
2528
+ * @memberof AccessRequestItemV2025
2529
+ */
2530
+ 'startDate'?: string;
2519
2531
  /**
2520
2532
  * The date and time the role or access profile or entitlement is no longer assigned to the specified identity. Also known as the expiration date. * Specify a date-time in the future. * The current SLA for the deprovisioning is 24 hours. * This date-time can be used to change the duration of an existing access item assignment for the specified identity. A GRANT_ACCESS request can extend duration or even remove an expiration date, and either a GRANT_ACCESS or REVOKE_ACCESS request can reduce duration or add an expiration date where one has not previously been present. You can change the expiration date in requests for yourself or others you are authorized to request for.
2521
2533
  * @type {string}
@@ -3186,7 +3198,7 @@ export interface AccessRequestV2025 {
3186
3198
  [key: string]: string;
3187
3199
  };
3188
3200
  /**
3189
- * Additional submit data structure with requestedFor containing requestedItems allowing distinction for each request item and Identity. * Can only be used when \'requestedFor\' and \'requestedItems\' are not separately provided * Adds ability to specify which account the user wants the access on, in case they have multiple accounts on a source * Allows the ability to request items with different remove dates * Also allows different combinations of request items and identities in the same request * Only for use in GRANT_ACCESS type requests
3201
+ * Additional submit data structure with requestedFor containing requestedItems allowing distinction for each request item and Identity. * Can only be used when \'requestedFor\' and \'requestedItems\' are not separately provided * Adds ability to specify which account the user wants the access on, in case they have multiple accounts on a source * Allows the ability to request items with different start dates * Allows the ability to request items with different remove dates * Also allows different combinations of request items and identities in the same request * Only for use in GRANT_ACCESS type requests
3190
3202
  * @type {Array<RequestedForDtoRefV2025>}
3191
3203
  * @memberof AccessRequestV2025
3192
3204
  */
@@ -13449,6 +13461,24 @@ export interface CompletedApprovalV2025 {
13449
13461
  * @memberof CompletedApprovalV2025
13450
13462
  */
13451
13463
  'currentRemoveDate'?: string | null;
13464
+ /**
13465
+ * The date the role or access profile or entitlement is/will assigned to the specified identity.
13466
+ * @type {string}
13467
+ * @memberof CompletedApprovalV2025
13468
+ */
13469
+ 'startDate'?: string;
13470
+ /**
13471
+ * If true, then the request is to change the start date or sunrise date.
13472
+ * @type {boolean}
13473
+ * @memberof CompletedApprovalV2025
13474
+ */
13475
+ 'startUpdateRequested'?: boolean;
13476
+ /**
13477
+ * The start date or sunrise date that was assigned at the time of the request.
13478
+ * @type {string}
13479
+ * @memberof CompletedApprovalV2025
13480
+ */
13481
+ 'currentStartDate'?: string;
13452
13482
  /**
13453
13483
  *
13454
13484
  * @type {SodViolationContextCheckCompletedV2025}
@@ -33337,6 +33367,24 @@ export interface PendingApprovalV2025 {
33337
33367
  * @memberof PendingApprovalV2025
33338
33368
  */
33339
33369
  'currentRemoveDate'?: string;
33370
+ /**
33371
+ * The date the role or access profile or entitlement is/will assigned to the specified identity.
33372
+ * @type {string}
33373
+ * @memberof PendingApprovalV2025
33374
+ */
33375
+ 'startDate'?: string;
33376
+ /**
33377
+ * If true, then the request is to change the start date or sunrise date.
33378
+ * @type {boolean}
33379
+ * @memberof PendingApprovalV2025
33380
+ */
33381
+ 'startUpdateRequested'?: boolean;
33382
+ /**
33383
+ * The start date or sunrise date that was assigned at the time of the request.
33384
+ * @type {string}
33385
+ * @memberof PendingApprovalV2025
33386
+ */
33387
+ 'currentStartDate'?: string;
33340
33388
  /**
33341
33389
  *
33342
33390
  * @type {SodViolationContextCheckCompletedV2025}
@@ -36017,6 +36065,12 @@ export interface RequestedItemDtoRefV2025 {
36017
36065
  'clientMetadata'?: {
36018
36066
  [key: string]: string;
36019
36067
  };
36068
+ /**
36069
+ * The date and time the role or access profile or entitlement is/will be provisioned to the specified identity. Also known as the sunrise date. * Specify a date-time in the future. * This date-time can be used to indicate date-time when access item will be provisioned on the identity account. A GRANT_ACCESS request can use startDate to specify when to schedule provisioning of access item for an identity/account & a MODIFY_ACCESS request can use startDate to change the provisioning date-time of already assigned access item. But REVOKE_ACCESS request can not have startDate field. You can change the sunrise date in requests for yourself or others you are authorized to request for. * If the startDate is in the past, then the provisioning will be processed as soon as possible, but no guarantees can be made about when the provisioning will occur. If the startDate is in the future, then the provisioning will be scheduled to occur on that date and time. If no startDate is provided, then the provisioning will be processed as soon as possible.
36070
+ * @type {string}
36071
+ * @memberof RequestedItemDtoRefV2025
36072
+ */
36073
+ 'startDate'?: string;
36020
36074
  /**
36021
36075
  * The date and time the role or access profile or entitlement is no longer assigned to the specified identity. Also known as the expiration date. * Specify a date-time in the future. * The current SLA for the deprovisioning is 24 hours. * This date-time can be used to change the duration of an existing access item assignment for the specified identity. A GRANT_ACCESS request can extend duration or even remove an expiration date, and either a GRANT_ACCESS or REVOKE_ACCESS request can reduce duration or add an expiration date where one has not previously been present. You can change the expiration date in requests for yourself or others you are authorized to request for.
36022
36076
  * @type {string}
@@ -36337,6 +36391,12 @@ export interface RequestedItemStatusV2025 {
36337
36391
  * @memberof RequestedItemStatusV2025
36338
36392
  */
36339
36393
  'description'?: string | null;
36394
+ /**
36395
+ * When the role access is scheduled for provisioning.
36396
+ * @type {string}
36397
+ * @memberof RequestedItemStatusV2025
36398
+ */
36399
+ 'startDate'?: string | null;
36340
36400
  /**
36341
36401
  * When the role access is scheduled for removal.
36342
36402
  * @type {string}
@@ -53358,7 +53418,7 @@ export declare const AccessRequestsV2025ApiAxiosParamCreator: (configuration?: C
53358
53418
  */
53359
53419
  closeAccessRequest: (closeAccessRequestV2025: CloseAccessRequestV2025, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
53360
53420
  /**
53361
- * Use this API to submit an access request in Identity Security Cloud (ISC), where it follows any ISC approval processes. >**Security:** idn:access-request:manage is for ORG_ADMIN level. idn:access-request-self:manage is for USER level. :::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 does not 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 is 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.
53421
+ * Use this API to submit an access request in Identity Security Cloud (ISC), where it follows any ISC approval processes. >**Security:** idn:access-request:manage is for ORG_ADMIN level. idn:access-request-self:manage is for USER level. :::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 does not 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 is 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 `startDate` to set or alter a sunrise date-time on an assignment. The startDate must be a future date-time, in the UTC timezone. Additionally, if the user already has the access assigned with a sunrise date and its yet to be provisioned, you can also submit a request without a `startDate` to request immediate provisioning after approval. * If a `startDate` is specified, then the requested role, access profile, or entitlement will be provisioned on that date and time. * 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 cannot specify a \'startDate\' in a REVOKE_ACCESS request, as startDate is only applicable for GRANT_ACCESS requests to indicate when the access should be provisioned, and it does not make sense in the context of revoking access. * 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.
53362
53422
  * @summary Submit access request
53363
53423
  * @param {AccessRequestV2025} accessRequestV2025
53364
53424
  * @param {*} [axiosOptions] Override http request option.
@@ -53410,7 +53470,7 @@ export declare const AccessRequestsV2025ApiAxiosParamCreator: (configuration?: C
53410
53470
  * @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.
53411
53471
  * @param {number} [limit] Max number of results to return.
53412
53472
  * @param {number} [offset] Offset into the full result set. Usually specified with *limit* to paginate through the results. Defaults to 0 if not specified.
53413
- * @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: **accountActivityItemId**: *eq, in, ge, gt, le, lt, ne, isnull, sw* **accessRequestId**: *in* **status**: *in, eq, ne* **created**: *eq, in, ge, gt, le, lt, ne, isnull, sw*
53473
+ * @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: **accountActivityItemId**: *eq, in, ge, gt, le, lt, ne, isnull, sw* **accessRequestId**: *in, eq, ne, ge, gt, le, lt, sw* **status**: *in, eq, ne* **created**: *eq, in, ge, gt, le, lt, ne, isnull, sw*
53414
53474
  * @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, accessRequestId**
53415
53475
  * @param {string} [requestState] Filter the results by the state of the request. The only valid value is *EXECUTING*.
53416
53476
  * @param {*} [axiosOptions] Override http request option.
@@ -53474,7 +53534,7 @@ export declare const AccessRequestsV2025ApiFp: (configuration?: Configuration) =
53474
53534
  */
53475
53535
  closeAccessRequest(closeAccessRequestV2025: CloseAccessRequestV2025, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>>;
53476
53536
  /**
53477
- * Use this API to submit an access request in Identity Security Cloud (ISC), where it follows any ISC approval processes. >**Security:** idn:access-request:manage is for ORG_ADMIN level. idn:access-request-self:manage is for USER level. :::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 does not 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 is 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.
53537
+ * Use this API to submit an access request in Identity Security Cloud (ISC), where it follows any ISC approval processes. >**Security:** idn:access-request:manage is for ORG_ADMIN level. idn:access-request-self:manage is for USER level. :::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 does not 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 is 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 `startDate` to set or alter a sunrise date-time on an assignment. The startDate must be a future date-time, in the UTC timezone. Additionally, if the user already has the access assigned with a sunrise date and its yet to be provisioned, you can also submit a request without a `startDate` to request immediate provisioning after approval. * If a `startDate` is specified, then the requested role, access profile, or entitlement will be provisioned on that date and time. * 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 cannot specify a \'startDate\' in a REVOKE_ACCESS request, as startDate is only applicable for GRANT_ACCESS requests to indicate when the access should be provisioned, and it does not make sense in the context of revoking access. * 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.
53478
53538
  * @summary Submit access request
53479
53539
  * @param {AccessRequestV2025} accessRequestV2025
53480
53540
  * @param {*} [axiosOptions] Override http request option.
@@ -53526,7 +53586,7 @@ export declare const AccessRequestsV2025ApiFp: (configuration?: Configuration) =
53526
53586
  * @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.
53527
53587
  * @param {number} [limit] Max number of results to return.
53528
53588
  * @param {number} [offset] Offset into the full result set. Usually specified with *limit* to paginate through the results. Defaults to 0 if not specified.
53529
- * @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: **accountActivityItemId**: *eq, in, ge, gt, le, lt, ne, isnull, sw* **accessRequestId**: *in* **status**: *in, eq, ne* **created**: *eq, in, ge, gt, le, lt, ne, isnull, sw*
53589
+ * @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: **accountActivityItemId**: *eq, in, ge, gt, le, lt, ne, isnull, sw* **accessRequestId**: *in, eq, ne, ge, gt, le, lt, sw* **status**: *in, eq, ne* **created**: *eq, in, ge, gt, le, lt, ne, isnull, sw*
53530
53590
  * @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, accessRequestId**
53531
53591
  * @param {string} [requestState] Filter the results by the state of the request. The only valid value is *EXECUTING*.
53532
53592
  * @param {*} [axiosOptions] Override http request option.
@@ -53590,7 +53650,7 @@ export declare const AccessRequestsV2025ApiFactory: (configuration?: Configurati
53590
53650
  */
53591
53651
  closeAccessRequest(requestParameters: AccessRequestsV2025ApiCloseAccessRequestRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<object>;
53592
53652
  /**
53593
- * Use this API to submit an access request in Identity Security Cloud (ISC), where it follows any ISC approval processes. >**Security:** idn:access-request:manage is for ORG_ADMIN level. idn:access-request-self:manage is for USER level. :::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 does not 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 is 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.
53653
+ * Use this API to submit an access request in Identity Security Cloud (ISC), where it follows any ISC approval processes. >**Security:** idn:access-request:manage is for ORG_ADMIN level. idn:access-request-self:manage is for USER level. :::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 does not 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 is 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 `startDate` to set or alter a sunrise date-time on an assignment. The startDate must be a future date-time, in the UTC timezone. Additionally, if the user already has the access assigned with a sunrise date and its yet to be provisioned, you can also submit a request without a `startDate` to request immediate provisioning after approval. * If a `startDate` is specified, then the requested role, access profile, or entitlement will be provisioned on that date and time. * 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 cannot specify a \'startDate\' in a REVOKE_ACCESS request, as startDate is only applicable for GRANT_ACCESS requests to indicate when the access should be provisioned, and it does not make sense in the context of revoking access. * 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.
53594
53654
  * @summary Submit access request
53595
53655
  * @param {AccessRequestsV2025ApiCreateAccessRequestRequest} requestParameters Request parameters.
53596
53656
  * @param {*} [axiosOptions] Override http request option.
@@ -53853,7 +53913,7 @@ export interface AccessRequestsV2025ApiListAdministratorsAccessRequestStatusRequ
53853
53913
  */
53854
53914
  readonly offset?: number;
53855
53915
  /**
53856
- * 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: **accountActivityItemId**: *eq, in, ge, gt, le, lt, ne, isnull, sw* **accessRequestId**: *in* **status**: *in, eq, ne* **created**: *eq, in, ge, gt, le, lt, ne, isnull, sw*
53916
+ * 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: **accountActivityItemId**: *eq, in, ge, gt, le, lt, ne, isnull, sw* **accessRequestId**: *in, eq, ne, ge, gt, le, lt, sw* **status**: *in, eq, ne* **created**: *eq, in, ge, gt, le, lt, ne, isnull, sw*
53857
53917
  * @type {string}
53858
53918
  * @memberof AccessRequestsV2025ApiListAdministratorsAccessRequestStatus
53859
53919
  */
@@ -53947,7 +54007,7 @@ export declare class AccessRequestsV2025Api extends BaseAPI {
53947
54007
  */
53948
54008
  closeAccessRequest(requestParameters: AccessRequestsV2025ApiCloseAccessRequestRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any>>;
53949
54009
  /**
53950
- * Use this API to submit an access request in Identity Security Cloud (ISC), where it follows any ISC approval processes. >**Security:** idn:access-request:manage is for ORG_ADMIN level. idn:access-request-self:manage is for USER level. :::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 does not 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 is 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.
54010
+ * Use this API to submit an access request in Identity Security Cloud (ISC), where it follows any ISC approval processes. >**Security:** idn:access-request:manage is for ORG_ADMIN level. idn:access-request-self:manage is for USER level. :::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 does not 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 is 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 `startDate` to set or alter a sunrise date-time on an assignment. The startDate must be a future date-time, in the UTC timezone. Additionally, if the user already has the access assigned with a sunrise date and its yet to be provisioned, you can also submit a request without a `startDate` to request immediate provisioning after approval. * If a `startDate` is specified, then the requested role, access profile, or entitlement will be provisioned on that date and time. * 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 cannot specify a \'startDate\' in a REVOKE_ACCESS request, as startDate is only applicable for GRANT_ACCESS requests to indicate when the access should be provisioned, and it does not make sense in the context of revoking access. * 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.
53951
54011
  * @summary Submit access request
53952
54012
  * @param {AccessRequestsV2025ApiCreateAccessRequestRequest} requestParameters Request parameters.
53953
54013
  * @param {*} [axiosOptions] Override http request option.
@@ -77303,6 +77363,7 @@ export declare const MachineAccountsV2025ApiAxiosParamCreator: (configuration?:
77303
77363
  * @param {CreateMachineAccountSubtypeRequestV2025} createMachineAccountSubtypeRequestV2025
77304
77364
  * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
77305
77365
  * @param {*} [axiosOptions] Override http request option.
77366
+ * @deprecated
77306
77367
  * @throws {RequiredError}
77307
77368
  */
77308
77369
  createMachineAccountSubtype: (sourceId: string, createMachineAccountSubtypeRequestV2025: CreateMachineAccountSubtypeRequestV2025, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
@@ -77313,6 +77374,7 @@ export declare const MachineAccountsV2025ApiAxiosParamCreator: (configuration?:
77313
77374
  * @param {string} technicalName The technical name of the subtype.
77314
77375
  * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
77315
77376
  * @param {*} [axiosOptions] Override http request option.
77377
+ * @deprecated
77316
77378
  * @throws {RequiredError}
77317
77379
  */
77318
77380
  deleteMachineAccountSubtype: (sourceId: string, technicalName: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
@@ -77330,6 +77392,7 @@ export declare const MachineAccountsV2025ApiAxiosParamCreator: (configuration?:
77330
77392
  * @param {string} subtypeId The ID of the machine account subtype.
77331
77393
  * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
77332
77394
  * @param {*} [axiosOptions] Override http request option.
77395
+ * @deprecated
77333
77396
  * @throws {RequiredError}
77334
77397
  */
77335
77398
  getMachineAccountSubtypeById: (subtypeId: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
@@ -77340,6 +77403,7 @@ export declare const MachineAccountsV2025ApiAxiosParamCreator: (configuration?:
77340
77403
  * @param {string} technicalName The technical name of the subtype.
77341
77404
  * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
77342
77405
  * @param {*} [axiosOptions] Override http request option.
77406
+ * @deprecated
77343
77407
  * @throws {RequiredError}
77344
77408
  */
77345
77409
  getMachineAccountSubtypeByTechnicalName: (sourceId: string, technicalName: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
@@ -77354,6 +77418,7 @@ export declare const MachineAccountsV2025ApiAxiosParamCreator: (configuration?:
77354
77418
  * @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.
77355
77419
  * @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.
77356
77420
  * @param {*} [axiosOptions] Override http request option.
77421
+ * @deprecated
77357
77422
  * @throws {RequiredError}
77358
77423
  */
77359
77424
  listMachineAccountSubtypes: (sourceId: string, filters?: string, sorters?: string, xSailPointExperimental?: string, count?: boolean, limit?: number, offset?: number, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
@@ -77377,6 +77442,7 @@ export declare const MachineAccountsV2025ApiAxiosParamCreator: (configuration?:
77377
77442
  * @param {Array<object>} requestBody A JSON of updated values [JSON Patch](https://tools.ietf.org/html/rfc6902) standard.
77378
77443
  * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
77379
77444
  * @param {*} [axiosOptions] Override http request option.
77445
+ * @deprecated
77380
77446
  * @throws {RequiredError}
77381
77447
  */
77382
77448
  patchMachineAccountSubtype: (sourceId: string, technicalName: string, requestBody: Array<object>, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
@@ -77402,6 +77468,7 @@ export declare const MachineAccountsV2025ApiFp: (configuration?: Configuration)
77402
77468
  * @param {CreateMachineAccountSubtypeRequestV2025} createMachineAccountSubtypeRequestV2025
77403
77469
  * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
77404
77470
  * @param {*} [axiosOptions] Override http request option.
77471
+ * @deprecated
77405
77472
  * @throws {RequiredError}
77406
77473
  */
77407
77474
  createMachineAccountSubtype(sourceId: string, createMachineAccountSubtypeRequestV2025: CreateMachineAccountSubtypeRequestV2025, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SourceSubtypeV2025>>;
@@ -77412,6 +77479,7 @@ export declare const MachineAccountsV2025ApiFp: (configuration?: Configuration)
77412
77479
  * @param {string} technicalName The technical name of the subtype.
77413
77480
  * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
77414
77481
  * @param {*} [axiosOptions] Override http request option.
77482
+ * @deprecated
77415
77483
  * @throws {RequiredError}
77416
77484
  */
77417
77485
  deleteMachineAccountSubtype(sourceId: string, technicalName: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
@@ -77429,6 +77497,7 @@ export declare const MachineAccountsV2025ApiFp: (configuration?: Configuration)
77429
77497
  * @param {string} subtypeId The ID of the machine account subtype.
77430
77498
  * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
77431
77499
  * @param {*} [axiosOptions] Override http request option.
77500
+ * @deprecated
77432
77501
  * @throws {RequiredError}
77433
77502
  */
77434
77503
  getMachineAccountSubtypeById(subtypeId: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SourceSubtypeV2025>>;
@@ -77439,6 +77508,7 @@ export declare const MachineAccountsV2025ApiFp: (configuration?: Configuration)
77439
77508
  * @param {string} technicalName The technical name of the subtype.
77440
77509
  * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
77441
77510
  * @param {*} [axiosOptions] Override http request option.
77511
+ * @deprecated
77442
77512
  * @throws {RequiredError}
77443
77513
  */
77444
77514
  getMachineAccountSubtypeByTechnicalName(sourceId: string, technicalName: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SourceSubtypeV2025>>;
@@ -77453,6 +77523,7 @@ export declare const MachineAccountsV2025ApiFp: (configuration?: Configuration)
77453
77523
  * @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.
77454
77524
  * @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.
77455
77525
  * @param {*} [axiosOptions] Override http request option.
77526
+ * @deprecated
77456
77527
  * @throws {RequiredError}
77457
77528
  */
77458
77529
  listMachineAccountSubtypes(sourceId: string, filters?: string, sorters?: string, xSailPointExperimental?: string, count?: boolean, limit?: number, offset?: number, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<SourceSubtypeV2025>>>;
@@ -77476,6 +77547,7 @@ export declare const MachineAccountsV2025ApiFp: (configuration?: Configuration)
77476
77547
  * @param {Array<object>} requestBody A JSON of updated values [JSON Patch](https://tools.ietf.org/html/rfc6902) standard.
77477
77548
  * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
77478
77549
  * @param {*} [axiosOptions] Override http request option.
77550
+ * @deprecated
77479
77551
  * @throws {RequiredError}
77480
77552
  */
77481
77553
  patchMachineAccountSubtype(sourceId: string, technicalName: string, requestBody: Array<object>, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SourceSubtypeV2025>>;
@@ -77499,6 +77571,7 @@ export declare const MachineAccountsV2025ApiFactory: (configuration?: Configurat
77499
77571
  * @summary Create subtype
77500
77572
  * @param {MachineAccountsV2025ApiCreateMachineAccountSubtypeRequest} requestParameters Request parameters.
77501
77573
  * @param {*} [axiosOptions] Override http request option.
77574
+ * @deprecated
77502
77575
  * @throws {RequiredError}
77503
77576
  */
77504
77577
  createMachineAccountSubtype(requestParameters: MachineAccountsV2025ApiCreateMachineAccountSubtypeRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<SourceSubtypeV2025>;
@@ -77507,6 +77580,7 @@ export declare const MachineAccountsV2025ApiFactory: (configuration?: Configurat
77507
77580
  * @summary Delete subtype
77508
77581
  * @param {MachineAccountsV2025ApiDeleteMachineAccountSubtypeRequest} requestParameters Request parameters.
77509
77582
  * @param {*} [axiosOptions] Override http request option.
77583
+ * @deprecated
77510
77584
  * @throws {RequiredError}
77511
77585
  */
77512
77586
  deleteMachineAccountSubtype(requestParameters: MachineAccountsV2025ApiDeleteMachineAccountSubtypeRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<void>;
@@ -77523,6 +77597,7 @@ export declare const MachineAccountsV2025ApiFactory: (configuration?: Configurat
77523
77597
  * @summary Retrieve subtype by subtype id
77524
77598
  * @param {MachineAccountsV2025ApiGetMachineAccountSubtypeByIdRequest} requestParameters Request parameters.
77525
77599
  * @param {*} [axiosOptions] Override http request option.
77600
+ * @deprecated
77526
77601
  * @throws {RequiredError}
77527
77602
  */
77528
77603
  getMachineAccountSubtypeById(requestParameters: MachineAccountsV2025ApiGetMachineAccountSubtypeByIdRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<SourceSubtypeV2025>;
@@ -77531,6 +77606,7 @@ export declare const MachineAccountsV2025ApiFactory: (configuration?: Configurat
77531
77606
  * @summary Retrieve subtype by source and technicalName
77532
77607
  * @param {MachineAccountsV2025ApiGetMachineAccountSubtypeByTechnicalNameRequest} requestParameters Request parameters.
77533
77608
  * @param {*} [axiosOptions] Override http request option.
77609
+ * @deprecated
77534
77610
  * @throws {RequiredError}
77535
77611
  */
77536
77612
  getMachineAccountSubtypeByTechnicalName(requestParameters: MachineAccountsV2025ApiGetMachineAccountSubtypeByTechnicalNameRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<SourceSubtypeV2025>;
@@ -77539,6 +77615,7 @@ export declare const MachineAccountsV2025ApiFactory: (configuration?: Configurat
77539
77615
  * @summary Retrieve all subtypes by source
77540
77616
  * @param {MachineAccountsV2025ApiListMachineAccountSubtypesRequest} requestParameters Request parameters.
77541
77617
  * @param {*} [axiosOptions] Override http request option.
77618
+ * @deprecated
77542
77619
  * @throws {RequiredError}
77543
77620
  */
77544
77621
  listMachineAccountSubtypes(requestParameters: MachineAccountsV2025ApiListMachineAccountSubtypesRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<SourceSubtypeV2025>>;
@@ -77555,6 +77632,7 @@ export declare const MachineAccountsV2025ApiFactory: (configuration?: Configurat
77555
77632
  * @summary Patch subtype
77556
77633
  * @param {MachineAccountsV2025ApiPatchMachineAccountSubtypeRequest} requestParameters Request parameters.
77557
77634
  * @param {*} [axiosOptions] Override http request option.
77635
+ * @deprecated
77558
77636
  * @throws {RequiredError}
77559
77637
  */
77560
77638
  patchMachineAccountSubtype(requestParameters: MachineAccountsV2025ApiPatchMachineAccountSubtypeRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<SourceSubtypeV2025>;
@@ -77822,6 +77900,7 @@ export declare class MachineAccountsV2025Api extends BaseAPI {
77822
77900
  * @summary Create subtype
77823
77901
  * @param {MachineAccountsV2025ApiCreateMachineAccountSubtypeRequest} requestParameters Request parameters.
77824
77902
  * @param {*} [axiosOptions] Override http request option.
77903
+ * @deprecated
77825
77904
  * @throws {RequiredError}
77826
77905
  * @memberof MachineAccountsV2025Api
77827
77906
  */
@@ -77831,6 +77910,7 @@ export declare class MachineAccountsV2025Api extends BaseAPI {
77831
77910
  * @summary Delete subtype
77832
77911
  * @param {MachineAccountsV2025ApiDeleteMachineAccountSubtypeRequest} requestParameters Request parameters.
77833
77912
  * @param {*} [axiosOptions] Override http request option.
77913
+ * @deprecated
77834
77914
  * @throws {RequiredError}
77835
77915
  * @memberof MachineAccountsV2025Api
77836
77916
  */
@@ -77849,6 +77929,7 @@ export declare class MachineAccountsV2025Api extends BaseAPI {
77849
77929
  * @summary Retrieve subtype by subtype id
77850
77930
  * @param {MachineAccountsV2025ApiGetMachineAccountSubtypeByIdRequest} requestParameters Request parameters.
77851
77931
  * @param {*} [axiosOptions] Override http request option.
77932
+ * @deprecated
77852
77933
  * @throws {RequiredError}
77853
77934
  * @memberof MachineAccountsV2025Api
77854
77935
  */
@@ -77858,6 +77939,7 @@ export declare class MachineAccountsV2025Api extends BaseAPI {
77858
77939
  * @summary Retrieve subtype by source and technicalName
77859
77940
  * @param {MachineAccountsV2025ApiGetMachineAccountSubtypeByTechnicalNameRequest} requestParameters Request parameters.
77860
77941
  * @param {*} [axiosOptions] Override http request option.
77942
+ * @deprecated
77861
77943
  * @throws {RequiredError}
77862
77944
  * @memberof MachineAccountsV2025Api
77863
77945
  */
@@ -77867,6 +77949,7 @@ export declare class MachineAccountsV2025Api extends BaseAPI {
77867
77949
  * @summary Retrieve all subtypes by source
77868
77950
  * @param {MachineAccountsV2025ApiListMachineAccountSubtypesRequest} requestParameters Request parameters.
77869
77951
  * @param {*} [axiosOptions] Override http request option.
77952
+ * @deprecated
77870
77953
  * @throws {RequiredError}
77871
77954
  * @memberof MachineAccountsV2025Api
77872
77955
  */
@@ -77885,6 +77968,7 @@ export declare class MachineAccountsV2025Api extends BaseAPI {
77885
77968
  * @summary Patch subtype
77886
77969
  * @param {MachineAccountsV2025ApiPatchMachineAccountSubtypeRequest} requestParameters Request parameters.
77887
77970
  * @param {*} [axiosOptions] Override http request option.
77971
+ * @deprecated
77888
77972
  * @throws {RequiredError}
77889
77973
  * @memberof MachineAccountsV2025Api
77890
77974
  */