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
package/v2026/api.ts CHANGED
@@ -2247,6 +2247,12 @@ export interface AccessRequestAdminItemStatusV2026 {
2247
2247
  * @memberof AccessRequestAdminItemStatusV2026
2248
2248
  */
2249
2249
  'description'?: string | null;
2250
+ /**
2251
+ * When the role access is scheduled for provisioning.
2252
+ * @type {string}
2253
+ * @memberof AccessRequestAdminItemStatusV2026
2254
+ */
2255
+ 'startDate'?: string | null;
2250
2256
  /**
2251
2257
  * When the role access is scheduled for removal.
2252
2258
  * @type {string}
@@ -2589,6 +2595,12 @@ export interface AccessRequestItemV2026 {
2589
2595
  * @memberof AccessRequestItemV2026
2590
2596
  */
2591
2597
  'clientMetadata'?: { [key: string]: string; };
2598
+ /**
2599
+ * 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.
2600
+ * @type {string}
2601
+ * @memberof AccessRequestItemV2026
2602
+ */
2603
+ 'startDate'?: string;
2592
2604
  /**
2593
2605
  * 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.
2594
2606
  * @type {string}
@@ -3288,7 +3300,7 @@ export interface AccessRequestV2026 {
3288
3300
  */
3289
3301
  'clientMetadata'?: { [key: string]: string; };
3290
3302
  /**
3291
- * 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
3303
+ * 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
3292
3304
  * @type {Array<RequestedForDtoRefV2026>}
3293
3305
  * @memberof AccessRequestV2026
3294
3306
  */
@@ -14900,6 +14912,24 @@ export interface CompletedApprovalV2026 {
14900
14912
  * @memberof CompletedApprovalV2026
14901
14913
  */
14902
14914
  'currentRemoveDate'?: string | null;
14915
+ /**
14916
+ * The date the role or access profile or entitlement is/will assigned to the specified identity.
14917
+ * @type {string}
14918
+ * @memberof CompletedApprovalV2026
14919
+ */
14920
+ 'startDate'?: string;
14921
+ /**
14922
+ * If true, then the request is to change the start date or sunrise date.
14923
+ * @type {boolean}
14924
+ * @memberof CompletedApprovalV2026
14925
+ */
14926
+ 'startUpdateRequested'?: boolean;
14927
+ /**
14928
+ * The start date or sunrise date that was assigned at the time of the request.
14929
+ * @type {string}
14930
+ * @memberof CompletedApprovalV2026
14931
+ */
14932
+ 'currentStartDate'?: string;
14903
14933
  /**
14904
14934
  *
14905
14935
  * @type {SodViolationContextCheckCompletedV2026}
@@ -17079,6 +17109,43 @@ export interface CreateScheduledSearchRequestV2026 {
17079
17109
  */
17080
17110
  'displayQueryDetails'?: boolean;
17081
17111
  }
17112
+ /**
17113
+ *
17114
+ * @export
17115
+ * @interface CreateSourceSubtypeRequestV2026
17116
+ */
17117
+ export interface CreateSourceSubtypeRequestV2026 {
17118
+ /**
17119
+ * ID of the source where subtype is created.
17120
+ * @type {string}
17121
+ * @memberof CreateSourceSubtypeRequestV2026
17122
+ */
17123
+ 'sourceId': string;
17124
+ /**
17125
+ * Technical name of the subtype.
17126
+ * @type {string}
17127
+ * @memberof CreateSourceSubtypeRequestV2026
17128
+ */
17129
+ 'technicalName': string;
17130
+ /**
17131
+ * Display name of the subtype.
17132
+ * @type {string}
17133
+ * @memberof CreateSourceSubtypeRequestV2026
17134
+ */
17135
+ 'displayName': string;
17136
+ /**
17137
+ * Description of the subtype.
17138
+ * @type {string}
17139
+ * @memberof CreateSourceSubtypeRequestV2026
17140
+ */
17141
+ 'description': string;
17142
+ /**
17143
+ * Type of the subtype.
17144
+ * @type {string}
17145
+ * @memberof CreateSourceSubtypeRequestV2026
17146
+ */
17147
+ 'type'?: string;
17148
+ }
17082
17149
  /**
17083
17150
  * Full delivery configuration. method and endpoint_url are required.
17084
17151
  * @export
@@ -37060,6 +37127,24 @@ export interface PendingApprovalV2026 {
37060
37127
  * @memberof PendingApprovalV2026
37061
37128
  */
37062
37129
  'currentRemoveDate'?: string;
37130
+ /**
37131
+ * The date the role or access profile or entitlement is/will assigned to the specified identity.
37132
+ * @type {string}
37133
+ * @memberof PendingApprovalV2026
37134
+ */
37135
+ 'startDate'?: string;
37136
+ /**
37137
+ * If true, then the request is to change the start date or sunrise date.
37138
+ * @type {boolean}
37139
+ * @memberof PendingApprovalV2026
37140
+ */
37141
+ 'startUpdateRequested'?: boolean;
37142
+ /**
37143
+ * The start date or sunrise date that was assigned at the time of the request.
37144
+ * @type {string}
37145
+ * @memberof PendingApprovalV2026
37146
+ */
37147
+ 'currentStartDate'?: string;
37063
37148
  /**
37064
37149
  *
37065
37150
  * @type {SodViolationContextCheckCompletedV2026}
@@ -40055,6 +40140,12 @@ export interface RequestedItemDtoRefV2026 {
40055
40140
  * @memberof RequestedItemDtoRefV2026
40056
40141
  */
40057
40142
  'clientMetadata'?: { [key: string]: string; };
40143
+ /**
40144
+ * 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.
40145
+ * @type {string}
40146
+ * @memberof RequestedItemDtoRefV2026
40147
+ */
40148
+ 'startDate'?: string;
40058
40149
  /**
40059
40150
  * 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.
40060
40151
  * @type {string}
@@ -40391,6 +40482,12 @@ export interface RequestedItemStatusV2026 {
40391
40482
  * @memberof RequestedItemStatusV2026
40392
40483
  */
40393
40484
  'description'?: string | null;
40485
+ /**
40486
+ * When the role access is scheduled for provisioning.
40487
+ * @type {string}
40488
+ * @memberof RequestedItemStatusV2026
40489
+ */
40490
+ 'startDate'?: string | null;
40394
40491
  /**
40395
40492
  * When the role access is scheduled for removal.
40396
40493
  * @type {string}
@@ -49896,6 +49993,12 @@ export interface SourceSubtypeWithSourceV2026 {
49896
49993
  * @memberof SourceSubtypeWithSourceV2026
49897
49994
  */
49898
49995
  'source'?: SourceSubtypeWithSourceSourceV2026;
49996
+ /**
49997
+ * Indicates if the subtype is managed by the system.
49998
+ * @type {boolean}
49999
+ * @memberof SourceSubtypeWithSourceV2026
50000
+ */
50001
+ 'systemManaged'?: boolean;
49899
50002
  }
49900
50003
  /**
49901
50004
  *
@@ -59719,7 +59822,7 @@ export const AccessRequestsV2026ApiAxiosParamCreator = function (configuration?:
59719
59822
  };
59720
59823
  },
59721
59824
  /**
59722
- * 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.
59825
+ * 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.
59723
59826
  * @summary Submit access request
59724
59827
  * @param {AccessRequestV2026} accessRequestV2026
59725
59828
  * @param {*} [axiosOptions] Override http request option.
@@ -59945,7 +60048,7 @@ export const AccessRequestsV2026ApiAxiosParamCreator = function (configuration?:
59945
60048
  * @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.
59946
60049
  * @param {number} [limit] Max number of results to return.
59947
60050
  * @param {number} [offset] Offset into the full result set. Usually specified with *limit* to paginate through the results. Defaults to 0 if not specified.
59948
- * @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*
60051
+ * @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*
59949
60052
  * @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**
59950
60053
  * @param {string} [requestState] Filter the results by the state of the request. The only valid value is *EXECUTING*.
59951
60054
  * @param {*} [axiosOptions] Override http request option.
@@ -60191,7 +60294,7 @@ export const AccessRequestsV2026ApiFp = function(configuration?: Configuration)
60191
60294
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
60192
60295
  },
60193
60296
  /**
60194
- * 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.
60297
+ * 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.
60195
60298
  * @summary Submit access request
60196
60299
  * @param {AccessRequestV2026} accessRequestV2026
60197
60300
  * @param {*} [axiosOptions] Override http request option.
@@ -60262,7 +60365,7 @@ export const AccessRequestsV2026ApiFp = function(configuration?: Configuration)
60262
60365
  * @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.
60263
60366
  * @param {number} [limit] Max number of results to return.
60264
60367
  * @param {number} [offset] Offset into the full result set. Usually specified with *limit* to paginate through the results. Defaults to 0 if not specified.
60265
- * @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*
60368
+ * @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*
60266
60369
  * @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**
60267
60370
  * @param {string} [requestState] Filter the results by the state of the request. The only valid value is *EXECUTING*.
60268
60371
  * @param {*} [axiosOptions] Override http request option.
@@ -60352,7 +60455,7 @@ export const AccessRequestsV2026ApiFactory = function (configuration?: Configura
60352
60455
  return localVarFp.closeAccessRequest(requestParameters.closeAccessRequestV2026, axiosOptions).then((request) => request(axios, basePath));
60353
60456
  },
60354
60457
  /**
60355
- * 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.
60458
+ * 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.
60356
60459
  * @summary Submit access request
60357
60460
  * @param {AccessRequestsV2026ApiCreateAccessRequestRequest} requestParameters Request parameters.
60358
60461
  * @param {*} [axiosOptions] Override http request option.
@@ -60654,7 +60757,7 @@ export interface AccessRequestsV2026ApiListAdministratorsAccessRequestStatusRequ
60654
60757
  readonly offset?: number
60655
60758
 
60656
60759
  /**
60657
- * 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*
60760
+ * 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*
60658
60761
  * @type {string}
60659
60762
  * @memberof AccessRequestsV2026ApiListAdministratorsAccessRequestStatus
60660
60763
  */
@@ -60766,7 +60869,7 @@ export class AccessRequestsV2026Api extends BaseAPI {
60766
60869
  }
60767
60870
 
60768
60871
  /**
60769
- * 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.
60872
+ * 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.
60770
60873
  * @summary Submit access request
60771
60874
  * @param {AccessRequestsV2026ApiCreateAccessRequestRequest} requestParameters Request parameters.
60772
60875
  * @param {*} [axiosOptions] Override http request option.
@@ -107664,16 +107767,77 @@ export class MachineAccountMappingsV2026Api extends BaseAPI {
107664
107767
  */
107665
107768
  export const MachineAccountSubtypesV2026ApiAxiosParamCreator = function (configuration?: Configuration) {
107666
107769
  return {
107770
+ /**
107771
+ * Create a new machine account subtype.
107772
+ * @summary Create subtype
107773
+ * @param {CreateSourceSubtypeRequestV2026} createSourceSubtypeRequestV2026
107774
+ * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
107775
+ * @param {*} [axiosOptions] Override http request option.
107776
+ * @throws {RequiredError}
107777
+ */
107778
+ createSourceSubtype: async (createSourceSubtypeRequestV2026: CreateSourceSubtypeRequestV2026, xSailPointExperimental?: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
107779
+ // verify required parameter 'createSourceSubtypeRequestV2026' is not null or undefined
107780
+ assertParamExists('createSourceSubtype', 'createSourceSubtypeRequestV2026', createSourceSubtypeRequestV2026)
107781
+ if (xSailPointExperimental === undefined) {
107782
+ xSailPointExperimental = 'true';
107783
+ }
107784
+
107785
+ const localVarPath = `/source-subtypes`;
107786
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
107787
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
107788
+ let baseOptions;
107789
+ if (configuration) {
107790
+ baseOptions = configuration.baseOptions;
107791
+ }
107792
+
107793
+ const localVarRequestOptions = { method: 'POST', ...baseOptions, ...axiosOptions};
107794
+ const localVarHeaderParameter = {} as any;
107795
+ const localVarQueryParameter = {} as any;
107796
+
107797
+ // authentication userAuth required
107798
+ // oauth required
107799
+ await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
107800
+
107801
+ // authentication userAuth required
107802
+ // oauth required
107803
+ await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
107804
+
107805
+ // authentication applicationAuth required
107806
+ // oauth required
107807
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
107808
+
107809
+
107810
+
107811
+ localVarHeaderParameter['Content-Type'] = 'application/json';
107812
+
107813
+ if (xSailPointExperimental != null) {
107814
+ localVarHeaderParameter['X-SailPoint-Experimental'] = String(xSailPointExperimental);
107815
+ }
107816
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
107817
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
107818
+ localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
107819
+ localVarRequestOptions.data = serializeDataIfNeeded(createSourceSubtypeRequestV2026, localVarRequestOptions, configuration)
107820
+
107821
+ return {
107822
+ url: toPathString(localVarUrlObj),
107823
+ axiosOptions: localVarRequestOptions,
107824
+ };
107825
+ },
107667
107826
  /**
107668
107827
  * Delete a machine account subtype by subtype ID. Note: If subtype has approval settings or entitlement for machine account creation enablement then it\'ll be also deleted.
107669
107828
  * @summary Delete subtype by ID
107670
107829
  * @param {string} subtypeId The ID of the subtype.
107830
+ * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
107671
107831
  * @param {*} [axiosOptions] Override http request option.
107672
107832
  * @throws {RequiredError}
107673
107833
  */
107674
- deleteMachineAccountSubtype: async (subtypeId: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
107834
+ deleteMachineAccountSubtype: async (subtypeId: string, xSailPointExperimental?: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
107675
107835
  // verify required parameter 'subtypeId' is not null or undefined
107676
107836
  assertParamExists('deleteMachineAccountSubtype', 'subtypeId', subtypeId)
107837
+ if (xSailPointExperimental === undefined) {
107838
+ xSailPointExperimental = 'true';
107839
+ }
107840
+
107677
107841
  const localVarPath = `/source-subtypes/{subtypeId}`
107678
107842
  .replace(`{${"subtypeId"}}`, encodeURIComponent(String(subtypeId)));
107679
107843
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
@@ -107701,6 +107865,61 @@ export const MachineAccountSubtypesV2026ApiAxiosParamCreator = function (configu
107701
107865
 
107702
107866
 
107703
107867
 
107868
+ if (xSailPointExperimental != null) {
107869
+ localVarHeaderParameter['X-SailPoint-Experimental'] = String(xSailPointExperimental);
107870
+ }
107871
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
107872
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
107873
+ localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
107874
+
107875
+ return {
107876
+ url: toPathString(localVarUrlObj),
107877
+ axiosOptions: localVarRequestOptions,
107878
+ };
107879
+ },
107880
+ /**
107881
+ * This endpoint retrieves the approval configuration for machine account creation and deletion at the machine subtype level. By providing a specific subtypeId in the path, clients can fetch the approval rules and settings (such as required approvers and comments policy) that govern account creation and deletion for that particular machine subtype. The response includes a MachineAccountSubtypeConfigDto object detailing these configurations, enabling clients to understand or display the approval workflow required for creating and deleting machine accounts of the given subtype. Use this endpoint to get machine subtype level approval config for account creation and deletion.
107882
+ * @summary Machine Subtype Approval Config
107883
+ * @param {string} xSailPointExperimental Use this header to enable this experimental API.
107884
+ * @param {string} subtypeId machine subtype id.
107885
+ * @param {*} [axiosOptions] Override http request option.
107886
+ * @throws {RequiredError}
107887
+ */
107888
+ getMachineAccountSubtypeApprovalConfig: async (xSailPointExperimental: string, subtypeId: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
107889
+ if (xSailPointExperimental === undefined) {
107890
+ xSailPointExperimental = 'true';
107891
+ }
107892
+
107893
+ // verify required parameter 'xSailPointExperimental' is not null or undefined
107894
+ assertParamExists('getMachineAccountSubtypeApprovalConfig', 'xSailPointExperimental', xSailPointExperimental)
107895
+ // verify required parameter 'subtypeId' is not null or undefined
107896
+ assertParamExists('getMachineAccountSubtypeApprovalConfig', 'subtypeId', subtypeId)
107897
+ const localVarPath = `/source-subtypes/{subtypeId}/machine-config`
107898
+ .replace(`{${"subtypeId"}}`, encodeURIComponent(String(subtypeId)));
107899
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
107900
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
107901
+ let baseOptions;
107902
+ if (configuration) {
107903
+ baseOptions = configuration.baseOptions;
107904
+ }
107905
+
107906
+ const localVarRequestOptions = { method: 'GET', ...baseOptions, ...axiosOptions};
107907
+ const localVarHeaderParameter = {} as any;
107908
+ const localVarQueryParameter = {} as any;
107909
+
107910
+ // authentication userAuth required
107911
+ // oauth required
107912
+ await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
107913
+
107914
+ // authentication userAuth required
107915
+ // oauth required
107916
+ await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
107917
+
107918
+
107919
+
107920
+ if (xSailPointExperimental != null) {
107921
+ localVarHeaderParameter['X-SailPoint-Experimental'] = String(xSailPointExperimental);
107922
+ }
107704
107923
  setSearchParams(localVarUrlObj, localVarQueryParameter);
107705
107924
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
107706
107925
  localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
@@ -107714,12 +107933,17 @@ export const MachineAccountSubtypesV2026ApiAxiosParamCreator = function (configu
107714
107933
  * Get a machine account subtype by subtype ID.
107715
107934
  * @summary Get subtype by ID
107716
107935
  * @param {string} subtypeId The ID of the subtype.
107936
+ * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
107717
107937
  * @param {*} [axiosOptions] Override http request option.
107718
107938
  * @throws {RequiredError}
107719
107939
  */
107720
- getSourceSubtypeById: async (subtypeId: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
107940
+ getSourceSubtypeById: async (subtypeId: string, xSailPointExperimental?: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
107721
107941
  // verify required parameter 'subtypeId' is not null or undefined
107722
107942
  assertParamExists('getSourceSubtypeById', 'subtypeId', subtypeId)
107943
+ if (xSailPointExperimental === undefined) {
107944
+ xSailPointExperimental = 'true';
107945
+ }
107946
+
107723
107947
  const localVarPath = `/source-subtypes/{subtypeId}`
107724
107948
  .replace(`{${"subtypeId"}}`, encodeURIComponent(String(subtypeId)));
107725
107949
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
@@ -107747,9 +107971,145 @@ export const MachineAccountSubtypesV2026ApiAxiosParamCreator = function (configu
107747
107971
 
107748
107972
 
107749
107973
 
107974
+ if (xSailPointExperimental != null) {
107975
+ localVarHeaderParameter['X-SailPoint-Experimental'] = String(xSailPointExperimental);
107976
+ }
107977
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
107978
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
107979
+ localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
107980
+
107981
+ return {
107982
+ url: toPathString(localVarUrlObj),
107983
+ axiosOptions: localVarRequestOptions,
107984
+ };
107985
+ },
107986
+ /**
107987
+ * Get all machine account subtypes.
107988
+ * @summary Retrieve all subtypes
107989
+ * @param {string} [filters] Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **id**: *eq, in, sw* **displayName**: *eq, sw* **technicalName**: *eq, sw* **source.id**: *eq, in*
107990
+ * @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: **displayName, technicalName**
107991
+ * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
107992
+ * @param {boolean} [count] If *true* it will populate the *X-Total-Count* response header with the number of results that would be returned if *limit* and *offset* were ignored. Since requesting a total count can have a performance impact, it is recommended not to send **count&#x3D;true** if that value will not be used. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
107993
+ * @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.
107994
+ * @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.
107995
+ * @param {*} [axiosOptions] Override http request option.
107996
+ * @throws {RequiredError}
107997
+ */
107998
+ listSourceSubtypes: async (filters?: string, sorters?: string, xSailPointExperimental?: string, count?: boolean, limit?: number, offset?: number, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
107999
+ if (xSailPointExperimental === undefined) {
108000
+ xSailPointExperimental = 'true';
108001
+ }
108002
+
108003
+ const localVarPath = `/source-subtypes`;
108004
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
108005
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
108006
+ let baseOptions;
108007
+ if (configuration) {
108008
+ baseOptions = configuration.baseOptions;
108009
+ }
108010
+
108011
+ const localVarRequestOptions = { method: 'GET', ...baseOptions, ...axiosOptions};
108012
+ const localVarHeaderParameter = {} as any;
108013
+ const localVarQueryParameter = {} as any;
108014
+
108015
+ // authentication userAuth required
108016
+ // oauth required
108017
+ await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
108018
+
108019
+ // authentication userAuth required
108020
+ // oauth required
108021
+ await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
108022
+
108023
+ // authentication applicationAuth required
108024
+ // oauth required
108025
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
108026
+
108027
+ if (filters !== undefined) {
108028
+ localVarQueryParameter['filters'] = filters;
108029
+ }
108030
+
108031
+ if (sorters !== undefined) {
108032
+ localVarQueryParameter['sorters'] = sorters;
108033
+ }
108034
+
108035
+ if (count !== undefined) {
108036
+ localVarQueryParameter['count'] = count;
108037
+ }
108038
+
108039
+ if (limit !== undefined) {
108040
+ localVarQueryParameter['limit'] = limit;
108041
+ }
108042
+
108043
+ if (offset !== undefined) {
108044
+ localVarQueryParameter['offset'] = offset;
108045
+ }
108046
+
108047
+
108048
+
108049
+ if (xSailPointExperimental != null) {
108050
+ localVarHeaderParameter['X-SailPoint-Experimental'] = String(xSailPointExperimental);
108051
+ }
108052
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
108053
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
108054
+ localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
108055
+
108056
+ return {
108057
+ url: toPathString(localVarUrlObj),
108058
+ axiosOptions: localVarRequestOptions,
108059
+ };
108060
+ },
108061
+ /**
108062
+ * This endpoint retrieves the subtypes for given subtypeIds.
108063
+ * @summary Bulk Retrieve of Source Subtypes
108064
+ * @param {string} xSailPointExperimental Use this header to enable this experimental API.
108065
+ * @param {Array<string>} requestBody
108066
+ * @param {*} [axiosOptions] Override http request option.
108067
+ * @throws {RequiredError}
108068
+ */
108069
+ loadBulkSourceSubtypes: async (xSailPointExperimental: string, requestBody: Array<string>, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
108070
+ if (xSailPointExperimental === undefined) {
108071
+ xSailPointExperimental = 'true';
108072
+ }
108073
+
108074
+ // verify required parameter 'xSailPointExperimental' is not null or undefined
108075
+ assertParamExists('loadBulkSourceSubtypes', 'xSailPointExperimental', xSailPointExperimental)
108076
+ // verify required parameter 'requestBody' is not null or undefined
108077
+ assertParamExists('loadBulkSourceSubtypes', 'requestBody', requestBody)
108078
+ const localVarPath = `/source-subtypes/bulk-retrieve`;
108079
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
108080
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
108081
+ let baseOptions;
108082
+ if (configuration) {
108083
+ baseOptions = configuration.baseOptions;
108084
+ }
108085
+
108086
+ const localVarRequestOptions = { method: 'POST', ...baseOptions, ...axiosOptions};
108087
+ const localVarHeaderParameter = {} as any;
108088
+ const localVarQueryParameter = {} as any;
108089
+
108090
+ // authentication userAuth required
108091
+ // oauth required
108092
+ await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
108093
+
108094
+ // authentication userAuth required
108095
+ // oauth required
108096
+ await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
108097
+
108098
+ // authentication applicationAuth required
108099
+ // oauth required
108100
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
108101
+
108102
+
108103
+
108104
+ localVarHeaderParameter['Content-Type'] = 'application/json';
108105
+
108106
+ if (xSailPointExperimental != null) {
108107
+ localVarHeaderParameter['X-SailPoint-Experimental'] = String(xSailPointExperimental);
108108
+ }
107750
108109
  setSearchParams(localVarUrlObj, localVarQueryParameter);
107751
108110
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
107752
108111
  localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
108112
+ localVarRequestOptions.data = serializeDataIfNeeded(requestBody, localVarRequestOptions, configuration)
107753
108113
 
107754
108114
  return {
107755
108115
  url: toPathString(localVarUrlObj),
@@ -107761,14 +108121,19 @@ export const MachineAccountSubtypesV2026ApiAxiosParamCreator = function (configu
107761
108121
  * @summary Patch subtype by ID
107762
108122
  * @param {string} subtypeId The ID of the subtype.
107763
108123
  * @param {Array<object>} requestBody A JSON of updated values [JSON Patch](https://tools.ietf.org/html/rfc6902) standard.
108124
+ * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
107764
108125
  * @param {*} [axiosOptions] Override http request option.
107765
108126
  * @throws {RequiredError}
107766
108127
  */
107767
- patchMachineAccountSubtype: async (subtypeId: string, requestBody: Array<object>, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
108128
+ patchMachineAccountSubtype: async (subtypeId: string, requestBody: Array<object>, xSailPointExperimental?: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
107768
108129
  // verify required parameter 'subtypeId' is not null or undefined
107769
108130
  assertParamExists('patchMachineAccountSubtype', 'subtypeId', subtypeId)
107770
108131
  // verify required parameter 'requestBody' is not null or undefined
107771
108132
  assertParamExists('patchMachineAccountSubtype', 'requestBody', requestBody)
108133
+ if (xSailPointExperimental === undefined) {
108134
+ xSailPointExperimental = 'true';
108135
+ }
108136
+
107772
108137
  const localVarPath = `/source-subtypes/{subtypeId}`
107773
108138
  .replace(`{${"subtypeId"}}`, encodeURIComponent(String(subtypeId)));
107774
108139
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
@@ -107798,11 +108163,72 @@ export const MachineAccountSubtypesV2026ApiAxiosParamCreator = function (configu
107798
108163
 
107799
108164
  localVarHeaderParameter['Content-Type'] = 'application/json-patch+json';
107800
108165
 
108166
+ if (xSailPointExperimental != null) {
108167
+ localVarHeaderParameter['X-SailPoint-Experimental'] = String(xSailPointExperimental);
108168
+ }
107801
108169
  setSearchParams(localVarUrlObj, localVarQueryParameter);
107802
108170
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
107803
108171
  localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
107804
108172
  localVarRequestOptions.data = serializeDataIfNeeded(requestBody, localVarRequestOptions, configuration)
107805
108173
 
108174
+ return {
108175
+ url: toPathString(localVarUrlObj),
108176
+ axiosOptions: localVarRequestOptions,
108177
+ };
108178
+ },
108179
+ /**
108180
+ * Updates the approval configuration for machine account deletion at the specified machine subtype level. This endpoint allows clients to modify approval rules and settings (such as required approvers and comments policy) for account creation and deletion workflows associated with a given subtypeId. Use this to customize or enforce approval requirements for creating and deleting machine accounts of a particular subtype.
108181
+ * @summary Machine Subtype Approval Config
108182
+ * @param {string} xSailPointExperimental Use this header to enable this experimental API.
108183
+ * @param {string} subtypeId machine account subtype ID.
108184
+ * @param {Array<JsonPatchOperationV2026>} jsonPatchOperationV2026 The JSONPatch payload used to update the object.
108185
+ * @param {*} [axiosOptions] Override http request option.
108186
+ * @throws {RequiredError}
108187
+ */
108188
+ updateMachineAccountSubtypeApprovalConfig: async (xSailPointExperimental: string, subtypeId: string, jsonPatchOperationV2026: Array<JsonPatchOperationV2026>, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
108189
+ if (xSailPointExperimental === undefined) {
108190
+ xSailPointExperimental = 'true';
108191
+ }
108192
+
108193
+ // verify required parameter 'xSailPointExperimental' is not null or undefined
108194
+ assertParamExists('updateMachineAccountSubtypeApprovalConfig', 'xSailPointExperimental', xSailPointExperimental)
108195
+ // verify required parameter 'subtypeId' is not null or undefined
108196
+ assertParamExists('updateMachineAccountSubtypeApprovalConfig', 'subtypeId', subtypeId)
108197
+ // verify required parameter 'jsonPatchOperationV2026' is not null or undefined
108198
+ assertParamExists('updateMachineAccountSubtypeApprovalConfig', 'jsonPatchOperationV2026', jsonPatchOperationV2026)
108199
+ const localVarPath = `/source-subtypes/{subtypeId}/machine-config`
108200
+ .replace(`{${"subtypeId"}}`, encodeURIComponent(String(subtypeId)));
108201
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
108202
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
108203
+ let baseOptions;
108204
+ if (configuration) {
108205
+ baseOptions = configuration.baseOptions;
108206
+ }
108207
+
108208
+ const localVarRequestOptions = { method: 'PATCH', ...baseOptions, ...axiosOptions};
108209
+ const localVarHeaderParameter = {} as any;
108210
+ const localVarQueryParameter = {} as any;
108211
+
108212
+ // authentication userAuth required
108213
+ // oauth required
108214
+ await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
108215
+
108216
+ // authentication userAuth required
108217
+ // oauth required
108218
+ await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
108219
+
108220
+
108221
+
108222
+ localVarHeaderParameter['Content-Type'] = 'application/json-patch+json';
108223
+
108224
+ if (xSailPointExperimental != null) {
108225
+ localVarHeaderParameter['X-SailPoint-Experimental'] = String(xSailPointExperimental);
108226
+ }
108227
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
108228
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
108229
+ localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
108230
+ localVarRequestOptions.data = serializeDataIfNeeded(jsonPatchOperationV2026, localVarRequestOptions, configuration)
108231
+
107806
108232
  return {
107807
108233
  url: toPathString(localVarUrlObj),
107808
108234
  axiosOptions: localVarRequestOptions,
@@ -107818,46 +108244,124 @@ export const MachineAccountSubtypesV2026ApiAxiosParamCreator = function (configu
107818
108244
  export const MachineAccountSubtypesV2026ApiFp = function(configuration?: Configuration) {
107819
108245
  const localVarAxiosParamCreator = MachineAccountSubtypesV2026ApiAxiosParamCreator(configuration)
107820
108246
  return {
108247
+ /**
108248
+ * Create a new machine account subtype.
108249
+ * @summary Create subtype
108250
+ * @param {CreateSourceSubtypeRequestV2026} createSourceSubtypeRequestV2026
108251
+ * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
108252
+ * @param {*} [axiosOptions] Override http request option.
108253
+ * @throws {RequiredError}
108254
+ */
108255
+ async createSourceSubtype(createSourceSubtypeRequestV2026: CreateSourceSubtypeRequestV2026, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SourceSubtypeWithSourceV2026>> {
108256
+ const localVarAxiosArgs = await localVarAxiosParamCreator.createSourceSubtype(createSourceSubtypeRequestV2026, xSailPointExperimental, axiosOptions);
108257
+ const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
108258
+ const localVarOperationServerBasePath = operationServerMap['MachineAccountSubtypesV2026Api.createSourceSubtype']?.[localVarOperationServerIndex]?.url;
108259
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
108260
+ },
107821
108261
  /**
107822
108262
  * Delete a machine account subtype by subtype ID. Note: If subtype has approval settings or entitlement for machine account creation enablement then it\'ll be also deleted.
107823
108263
  * @summary Delete subtype by ID
107824
108264
  * @param {string} subtypeId The ID of the subtype.
108265
+ * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
107825
108266
  * @param {*} [axiosOptions] Override http request option.
107826
108267
  * @throws {RequiredError}
107827
108268
  */
107828
- async deleteMachineAccountSubtype(subtypeId: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
107829
- const localVarAxiosArgs = await localVarAxiosParamCreator.deleteMachineAccountSubtype(subtypeId, axiosOptions);
108269
+ async deleteMachineAccountSubtype(subtypeId: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
108270
+ const localVarAxiosArgs = await localVarAxiosParamCreator.deleteMachineAccountSubtype(subtypeId, xSailPointExperimental, axiosOptions);
107830
108271
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
107831
108272
  const localVarOperationServerBasePath = operationServerMap['MachineAccountSubtypesV2026Api.deleteMachineAccountSubtype']?.[localVarOperationServerIndex]?.url;
107832
108273
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
107833
108274
  },
108275
+ /**
108276
+ * This endpoint retrieves the approval configuration for machine account creation and deletion at the machine subtype level. By providing a specific subtypeId in the path, clients can fetch the approval rules and settings (such as required approvers and comments policy) that govern account creation and deletion for that particular machine subtype. The response includes a MachineAccountSubtypeConfigDto object detailing these configurations, enabling clients to understand or display the approval workflow required for creating and deleting machine accounts of the given subtype. Use this endpoint to get machine subtype level approval config for account creation and deletion.
108277
+ * @summary Machine Subtype Approval Config
108278
+ * @param {string} xSailPointExperimental Use this header to enable this experimental API.
108279
+ * @param {string} subtypeId machine subtype id.
108280
+ * @param {*} [axiosOptions] Override http request option.
108281
+ * @throws {RequiredError}
108282
+ */
108283
+ async getMachineAccountSubtypeApprovalConfig(xSailPointExperimental: string, subtypeId: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MachineAccountSubtypeConfigDtoV2026>> {
108284
+ const localVarAxiosArgs = await localVarAxiosParamCreator.getMachineAccountSubtypeApprovalConfig(xSailPointExperimental, subtypeId, axiosOptions);
108285
+ const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
108286
+ const localVarOperationServerBasePath = operationServerMap['MachineAccountSubtypesV2026Api.getMachineAccountSubtypeApprovalConfig']?.[localVarOperationServerIndex]?.url;
108287
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
108288
+ },
107834
108289
  /**
107835
108290
  * Get a machine account subtype by subtype ID.
107836
108291
  * @summary Get subtype by ID
107837
108292
  * @param {string} subtypeId The ID of the subtype.
108293
+ * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
107838
108294
  * @param {*} [axiosOptions] Override http request option.
107839
108295
  * @throws {RequiredError}
107840
108296
  */
107841
- async getSourceSubtypeById(subtypeId: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SourceSubtypeWithSourceV2026>> {
107842
- const localVarAxiosArgs = await localVarAxiosParamCreator.getSourceSubtypeById(subtypeId, axiosOptions);
108297
+ async getSourceSubtypeById(subtypeId: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SourceSubtypeWithSourceV2026>> {
108298
+ const localVarAxiosArgs = await localVarAxiosParamCreator.getSourceSubtypeById(subtypeId, xSailPointExperimental, axiosOptions);
107843
108299
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
107844
108300
  const localVarOperationServerBasePath = operationServerMap['MachineAccountSubtypesV2026Api.getSourceSubtypeById']?.[localVarOperationServerIndex]?.url;
107845
108301
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
107846
108302
  },
108303
+ /**
108304
+ * Get all machine account subtypes.
108305
+ * @summary Retrieve all subtypes
108306
+ * @param {string} [filters] Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **id**: *eq, in, sw* **displayName**: *eq, sw* **technicalName**: *eq, sw* **source.id**: *eq, in*
108307
+ * @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: **displayName, technicalName**
108308
+ * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
108309
+ * @param {boolean} [count] If *true* it will populate the *X-Total-Count* response header with the number of results that would be returned if *limit* and *offset* were ignored. Since requesting a total count can have a performance impact, it is recommended not to send **count&#x3D;true** if that value will not be used. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
108310
+ * @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.
108311
+ * @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.
108312
+ * @param {*} [axiosOptions] Override http request option.
108313
+ * @throws {RequiredError}
108314
+ */
108315
+ async listSourceSubtypes(filters?: string, sorters?: string, xSailPointExperimental?: string, count?: boolean, limit?: number, offset?: number, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<SourceSubtypeWithSourceV2026>>> {
108316
+ const localVarAxiosArgs = await localVarAxiosParamCreator.listSourceSubtypes(filters, sorters, xSailPointExperimental, count, limit, offset, axiosOptions);
108317
+ const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
108318
+ const localVarOperationServerBasePath = operationServerMap['MachineAccountSubtypesV2026Api.listSourceSubtypes']?.[localVarOperationServerIndex]?.url;
108319
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
108320
+ },
108321
+ /**
108322
+ * This endpoint retrieves the subtypes for given subtypeIds.
108323
+ * @summary Bulk Retrieve of Source Subtypes
108324
+ * @param {string} xSailPointExperimental Use this header to enable this experimental API.
108325
+ * @param {Array<string>} requestBody
108326
+ * @param {*} [axiosOptions] Override http request option.
108327
+ * @throws {RequiredError}
108328
+ */
108329
+ async loadBulkSourceSubtypes(xSailPointExperimental: string, requestBody: Array<string>, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<SourceSubtypeWithSourceV2026>>> {
108330
+ const localVarAxiosArgs = await localVarAxiosParamCreator.loadBulkSourceSubtypes(xSailPointExperimental, requestBody, axiosOptions);
108331
+ const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
108332
+ const localVarOperationServerBasePath = operationServerMap['MachineAccountSubtypesV2026Api.loadBulkSourceSubtypes']?.[localVarOperationServerIndex]?.url;
108333
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
108334
+ },
107847
108335
  /**
107848
108336
  * Update fields of a machine account subtype by subtype ID. Patchable fields only include: `displayName`, `description`.
107849
108337
  * @summary Patch subtype by ID
107850
108338
  * @param {string} subtypeId The ID of the subtype.
107851
108339
  * @param {Array<object>} requestBody A JSON of updated values [JSON Patch](https://tools.ietf.org/html/rfc6902) standard.
108340
+ * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
107852
108341
  * @param {*} [axiosOptions] Override http request option.
107853
108342
  * @throws {RequiredError}
107854
108343
  */
107855
- async patchMachineAccountSubtype(subtypeId: string, requestBody: Array<object>, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SourceSubtypeWithSourceV2026>> {
107856
- const localVarAxiosArgs = await localVarAxiosParamCreator.patchMachineAccountSubtype(subtypeId, requestBody, axiosOptions);
108344
+ async patchMachineAccountSubtype(subtypeId: string, requestBody: Array<object>, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SourceSubtypeWithSourceV2026>> {
108345
+ const localVarAxiosArgs = await localVarAxiosParamCreator.patchMachineAccountSubtype(subtypeId, requestBody, xSailPointExperimental, axiosOptions);
107857
108346
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
107858
108347
  const localVarOperationServerBasePath = operationServerMap['MachineAccountSubtypesV2026Api.patchMachineAccountSubtype']?.[localVarOperationServerIndex]?.url;
107859
108348
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
107860
108349
  },
108350
+ /**
108351
+ * Updates the approval configuration for machine account deletion at the specified machine subtype level. This endpoint allows clients to modify approval rules and settings (such as required approvers and comments policy) for account creation and deletion workflows associated with a given subtypeId. Use this to customize or enforce approval requirements for creating and deleting machine accounts of a particular subtype.
108352
+ * @summary Machine Subtype Approval Config
108353
+ * @param {string} xSailPointExperimental Use this header to enable this experimental API.
108354
+ * @param {string} subtypeId machine account subtype ID.
108355
+ * @param {Array<JsonPatchOperationV2026>} jsonPatchOperationV2026 The JSONPatch payload used to update the object.
108356
+ * @param {*} [axiosOptions] Override http request option.
108357
+ * @throws {RequiredError}
108358
+ */
108359
+ async updateMachineAccountSubtypeApprovalConfig(xSailPointExperimental: string, subtypeId: string, jsonPatchOperationV2026: Array<JsonPatchOperationV2026>, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MachineAccountSubtypeConfigDtoV2026>> {
108360
+ const localVarAxiosArgs = await localVarAxiosParamCreator.updateMachineAccountSubtypeApprovalConfig(xSailPointExperimental, subtypeId, jsonPatchOperationV2026, axiosOptions);
108361
+ const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
108362
+ const localVarOperationServerBasePath = operationServerMap['MachineAccountSubtypesV2026Api.updateMachineAccountSubtypeApprovalConfig']?.[localVarOperationServerIndex]?.url;
108363
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
108364
+ },
107861
108365
  }
107862
108366
  };
107863
108367
 
@@ -107868,6 +108372,16 @@ export const MachineAccountSubtypesV2026ApiFp = function(configuration?: Configu
107868
108372
  export const MachineAccountSubtypesV2026ApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {
107869
108373
  const localVarFp = MachineAccountSubtypesV2026ApiFp(configuration)
107870
108374
  return {
108375
+ /**
108376
+ * Create a new machine account subtype.
108377
+ * @summary Create subtype
108378
+ * @param {MachineAccountSubtypesV2026ApiCreateSourceSubtypeRequest} requestParameters Request parameters.
108379
+ * @param {*} [axiosOptions] Override http request option.
108380
+ * @throws {RequiredError}
108381
+ */
108382
+ createSourceSubtype(requestParameters: MachineAccountSubtypesV2026ApiCreateSourceSubtypeRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<SourceSubtypeWithSourceV2026> {
108383
+ return localVarFp.createSourceSubtype(requestParameters.createSourceSubtypeRequestV2026, requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(axios, basePath));
108384
+ },
107871
108385
  /**
107872
108386
  * Delete a machine account subtype by subtype ID. Note: If subtype has approval settings or entitlement for machine account creation enablement then it\'ll be also deleted.
107873
108387
  * @summary Delete subtype by ID
@@ -107876,7 +108390,17 @@ export const MachineAccountSubtypesV2026ApiFactory = function (configuration?: C
107876
108390
  * @throws {RequiredError}
107877
108391
  */
107878
108392
  deleteMachineAccountSubtype(requestParameters: MachineAccountSubtypesV2026ApiDeleteMachineAccountSubtypeRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<void> {
107879
- return localVarFp.deleteMachineAccountSubtype(requestParameters.subtypeId, axiosOptions).then((request) => request(axios, basePath));
108393
+ return localVarFp.deleteMachineAccountSubtype(requestParameters.subtypeId, requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(axios, basePath));
108394
+ },
108395
+ /**
108396
+ * This endpoint retrieves the approval configuration for machine account creation and deletion at the machine subtype level. By providing a specific subtypeId in the path, clients can fetch the approval rules and settings (such as required approvers and comments policy) that govern account creation and deletion for that particular machine subtype. The response includes a MachineAccountSubtypeConfigDto object detailing these configurations, enabling clients to understand or display the approval workflow required for creating and deleting machine accounts of the given subtype. Use this endpoint to get machine subtype level approval config for account creation and deletion.
108397
+ * @summary Machine Subtype Approval Config
108398
+ * @param {MachineAccountSubtypesV2026ApiGetMachineAccountSubtypeApprovalConfigRequest} requestParameters Request parameters.
108399
+ * @param {*} [axiosOptions] Override http request option.
108400
+ * @throws {RequiredError}
108401
+ */
108402
+ getMachineAccountSubtypeApprovalConfig(requestParameters: MachineAccountSubtypesV2026ApiGetMachineAccountSubtypeApprovalConfigRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<MachineAccountSubtypeConfigDtoV2026> {
108403
+ return localVarFp.getMachineAccountSubtypeApprovalConfig(requestParameters.xSailPointExperimental, requestParameters.subtypeId, axiosOptions).then((request) => request(axios, basePath));
107880
108404
  },
107881
108405
  /**
107882
108406
  * Get a machine account subtype by subtype ID.
@@ -107886,7 +108410,27 @@ export const MachineAccountSubtypesV2026ApiFactory = function (configuration?: C
107886
108410
  * @throws {RequiredError}
107887
108411
  */
107888
108412
  getSourceSubtypeById(requestParameters: MachineAccountSubtypesV2026ApiGetSourceSubtypeByIdRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<SourceSubtypeWithSourceV2026> {
107889
- return localVarFp.getSourceSubtypeById(requestParameters.subtypeId, axiosOptions).then((request) => request(axios, basePath));
108413
+ return localVarFp.getSourceSubtypeById(requestParameters.subtypeId, requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(axios, basePath));
108414
+ },
108415
+ /**
108416
+ * Get all machine account subtypes.
108417
+ * @summary Retrieve all subtypes
108418
+ * @param {MachineAccountSubtypesV2026ApiListSourceSubtypesRequest} requestParameters Request parameters.
108419
+ * @param {*} [axiosOptions] Override http request option.
108420
+ * @throws {RequiredError}
108421
+ */
108422
+ listSourceSubtypes(requestParameters: MachineAccountSubtypesV2026ApiListSourceSubtypesRequest = {}, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<SourceSubtypeWithSourceV2026>> {
108423
+ return localVarFp.listSourceSubtypes(requestParameters.filters, requestParameters.sorters, requestParameters.xSailPointExperimental, requestParameters.count, requestParameters.limit, requestParameters.offset, axiosOptions).then((request) => request(axios, basePath));
108424
+ },
108425
+ /**
108426
+ * This endpoint retrieves the subtypes for given subtypeIds.
108427
+ * @summary Bulk Retrieve of Source Subtypes
108428
+ * @param {MachineAccountSubtypesV2026ApiLoadBulkSourceSubtypesRequest} requestParameters Request parameters.
108429
+ * @param {*} [axiosOptions] Override http request option.
108430
+ * @throws {RequiredError}
108431
+ */
108432
+ loadBulkSourceSubtypes(requestParameters: MachineAccountSubtypesV2026ApiLoadBulkSourceSubtypesRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<SourceSubtypeWithSourceV2026>> {
108433
+ return localVarFp.loadBulkSourceSubtypes(requestParameters.xSailPointExperimental, requestParameters.requestBody, axiosOptions).then((request) => request(axios, basePath));
107890
108434
  },
107891
108435
  /**
107892
108436
  * Update fields of a machine account subtype by subtype ID. Patchable fields only include: `displayName`, `description`.
@@ -107896,11 +108440,42 @@ export const MachineAccountSubtypesV2026ApiFactory = function (configuration?: C
107896
108440
  * @throws {RequiredError}
107897
108441
  */
107898
108442
  patchMachineAccountSubtype(requestParameters: MachineAccountSubtypesV2026ApiPatchMachineAccountSubtypeRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<SourceSubtypeWithSourceV2026> {
107899
- return localVarFp.patchMachineAccountSubtype(requestParameters.subtypeId, requestParameters.requestBody, axiosOptions).then((request) => request(axios, basePath));
108443
+ return localVarFp.patchMachineAccountSubtype(requestParameters.subtypeId, requestParameters.requestBody, requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(axios, basePath));
108444
+ },
108445
+ /**
108446
+ * Updates the approval configuration for machine account deletion at the specified machine subtype level. This endpoint allows clients to modify approval rules and settings (such as required approvers and comments policy) for account creation and deletion workflows associated with a given subtypeId. Use this to customize or enforce approval requirements for creating and deleting machine accounts of a particular subtype.
108447
+ * @summary Machine Subtype Approval Config
108448
+ * @param {MachineAccountSubtypesV2026ApiUpdateMachineAccountSubtypeApprovalConfigRequest} requestParameters Request parameters.
108449
+ * @param {*} [axiosOptions] Override http request option.
108450
+ * @throws {RequiredError}
108451
+ */
108452
+ updateMachineAccountSubtypeApprovalConfig(requestParameters: MachineAccountSubtypesV2026ApiUpdateMachineAccountSubtypeApprovalConfigRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<MachineAccountSubtypeConfigDtoV2026> {
108453
+ return localVarFp.updateMachineAccountSubtypeApprovalConfig(requestParameters.xSailPointExperimental, requestParameters.subtypeId, requestParameters.jsonPatchOperationV2026, axiosOptions).then((request) => request(axios, basePath));
107900
108454
  },
107901
108455
  };
107902
108456
  };
107903
108457
 
108458
+ /**
108459
+ * Request parameters for createSourceSubtype operation in MachineAccountSubtypesV2026Api.
108460
+ * @export
108461
+ * @interface MachineAccountSubtypesV2026ApiCreateSourceSubtypeRequest
108462
+ */
108463
+ export interface MachineAccountSubtypesV2026ApiCreateSourceSubtypeRequest {
108464
+ /**
108465
+ *
108466
+ * @type {CreateSourceSubtypeRequestV2026}
108467
+ * @memberof MachineAccountSubtypesV2026ApiCreateSourceSubtype
108468
+ */
108469
+ readonly createSourceSubtypeRequestV2026: CreateSourceSubtypeRequestV2026
108470
+
108471
+ /**
108472
+ * Use this header to enable this experimental API.
108473
+ * @type {string}
108474
+ * @memberof MachineAccountSubtypesV2026ApiCreateSourceSubtype
108475
+ */
108476
+ readonly xSailPointExperimental?: string
108477
+ }
108478
+
107904
108479
  /**
107905
108480
  * Request parameters for deleteMachineAccountSubtype operation in MachineAccountSubtypesV2026Api.
107906
108481
  * @export
@@ -107913,6 +108488,34 @@ export interface MachineAccountSubtypesV2026ApiDeleteMachineAccountSubtypeReques
107913
108488
  * @memberof MachineAccountSubtypesV2026ApiDeleteMachineAccountSubtype
107914
108489
  */
107915
108490
  readonly subtypeId: string
108491
+
108492
+ /**
108493
+ * Use this header to enable this experimental API.
108494
+ * @type {string}
108495
+ * @memberof MachineAccountSubtypesV2026ApiDeleteMachineAccountSubtype
108496
+ */
108497
+ readonly xSailPointExperimental?: string
108498
+ }
108499
+
108500
+ /**
108501
+ * Request parameters for getMachineAccountSubtypeApprovalConfig operation in MachineAccountSubtypesV2026Api.
108502
+ * @export
108503
+ * @interface MachineAccountSubtypesV2026ApiGetMachineAccountSubtypeApprovalConfigRequest
108504
+ */
108505
+ export interface MachineAccountSubtypesV2026ApiGetMachineAccountSubtypeApprovalConfigRequest {
108506
+ /**
108507
+ * Use this header to enable this experimental API.
108508
+ * @type {string}
108509
+ * @memberof MachineAccountSubtypesV2026ApiGetMachineAccountSubtypeApprovalConfig
108510
+ */
108511
+ readonly xSailPointExperimental: string
108512
+
108513
+ /**
108514
+ * machine subtype id.
108515
+ * @type {string}
108516
+ * @memberof MachineAccountSubtypesV2026ApiGetMachineAccountSubtypeApprovalConfig
108517
+ */
108518
+ readonly subtypeId: string
107916
108519
  }
107917
108520
 
107918
108521
  /**
@@ -107927,6 +108530,83 @@ export interface MachineAccountSubtypesV2026ApiGetSourceSubtypeByIdRequest {
107927
108530
  * @memberof MachineAccountSubtypesV2026ApiGetSourceSubtypeById
107928
108531
  */
107929
108532
  readonly subtypeId: string
108533
+
108534
+ /**
108535
+ * Use this header to enable this experimental API.
108536
+ * @type {string}
108537
+ * @memberof MachineAccountSubtypesV2026ApiGetSourceSubtypeById
108538
+ */
108539
+ readonly xSailPointExperimental?: string
108540
+ }
108541
+
108542
+ /**
108543
+ * Request parameters for listSourceSubtypes operation in MachineAccountSubtypesV2026Api.
108544
+ * @export
108545
+ * @interface MachineAccountSubtypesV2026ApiListSourceSubtypesRequest
108546
+ */
108547
+ export interface MachineAccountSubtypesV2026ApiListSourceSubtypesRequest {
108548
+ /**
108549
+ * Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **id**: *eq, in, sw* **displayName**: *eq, sw* **technicalName**: *eq, sw* **source.id**: *eq, in*
108550
+ * @type {string}
108551
+ * @memberof MachineAccountSubtypesV2026ApiListSourceSubtypes
108552
+ */
108553
+ readonly filters?: string
108554
+
108555
+ /**
108556
+ * 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: **displayName, technicalName**
108557
+ * @type {string}
108558
+ * @memberof MachineAccountSubtypesV2026ApiListSourceSubtypes
108559
+ */
108560
+ readonly sorters?: string
108561
+
108562
+ /**
108563
+ * Use this header to enable this experimental API.
108564
+ * @type {string}
108565
+ * @memberof MachineAccountSubtypesV2026ApiListSourceSubtypes
108566
+ */
108567
+ readonly xSailPointExperimental?: string
108568
+
108569
+ /**
108570
+ * If *true* it will populate the *X-Total-Count* response header with the number of results that would be returned if *limit* and *offset* were ignored. Since requesting a total count can have a performance impact, it is recommended not to send **count&#x3D;true** if that value will not be used. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
108571
+ * @type {boolean}
108572
+ * @memberof MachineAccountSubtypesV2026ApiListSourceSubtypes
108573
+ */
108574
+ readonly count?: boolean
108575
+
108576
+ /**
108577
+ * Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
108578
+ * @type {number}
108579
+ * @memberof MachineAccountSubtypesV2026ApiListSourceSubtypes
108580
+ */
108581
+ readonly limit?: number
108582
+
108583
+ /**
108584
+ * 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.
108585
+ * @type {number}
108586
+ * @memberof MachineAccountSubtypesV2026ApiListSourceSubtypes
108587
+ */
108588
+ readonly offset?: number
108589
+ }
108590
+
108591
+ /**
108592
+ * Request parameters for loadBulkSourceSubtypes operation in MachineAccountSubtypesV2026Api.
108593
+ * @export
108594
+ * @interface MachineAccountSubtypesV2026ApiLoadBulkSourceSubtypesRequest
108595
+ */
108596
+ export interface MachineAccountSubtypesV2026ApiLoadBulkSourceSubtypesRequest {
108597
+ /**
108598
+ * Use this header to enable this experimental API.
108599
+ * @type {string}
108600
+ * @memberof MachineAccountSubtypesV2026ApiLoadBulkSourceSubtypes
108601
+ */
108602
+ readonly xSailPointExperimental: string
108603
+
108604
+ /**
108605
+ *
108606
+ * @type {Array<string>}
108607
+ * @memberof MachineAccountSubtypesV2026ApiLoadBulkSourceSubtypes
108608
+ */
108609
+ readonly requestBody: Array<string>
107930
108610
  }
107931
108611
 
107932
108612
  /**
@@ -107948,6 +108628,41 @@ export interface MachineAccountSubtypesV2026ApiPatchMachineAccountSubtypeRequest
107948
108628
  * @memberof MachineAccountSubtypesV2026ApiPatchMachineAccountSubtype
107949
108629
  */
107950
108630
  readonly requestBody: Array<object>
108631
+
108632
+ /**
108633
+ * Use this header to enable this experimental API.
108634
+ * @type {string}
108635
+ * @memberof MachineAccountSubtypesV2026ApiPatchMachineAccountSubtype
108636
+ */
108637
+ readonly xSailPointExperimental?: string
108638
+ }
108639
+
108640
+ /**
108641
+ * Request parameters for updateMachineAccountSubtypeApprovalConfig operation in MachineAccountSubtypesV2026Api.
108642
+ * @export
108643
+ * @interface MachineAccountSubtypesV2026ApiUpdateMachineAccountSubtypeApprovalConfigRequest
108644
+ */
108645
+ export interface MachineAccountSubtypesV2026ApiUpdateMachineAccountSubtypeApprovalConfigRequest {
108646
+ /**
108647
+ * Use this header to enable this experimental API.
108648
+ * @type {string}
108649
+ * @memberof MachineAccountSubtypesV2026ApiUpdateMachineAccountSubtypeApprovalConfig
108650
+ */
108651
+ readonly xSailPointExperimental: string
108652
+
108653
+ /**
108654
+ * machine account subtype ID.
108655
+ * @type {string}
108656
+ * @memberof MachineAccountSubtypesV2026ApiUpdateMachineAccountSubtypeApprovalConfig
108657
+ */
108658
+ readonly subtypeId: string
108659
+
108660
+ /**
108661
+ * The JSONPatch payload used to update the object.
108662
+ * @type {Array<JsonPatchOperationV2026>}
108663
+ * @memberof MachineAccountSubtypesV2026ApiUpdateMachineAccountSubtypeApprovalConfig
108664
+ */
108665
+ readonly jsonPatchOperationV2026: Array<JsonPatchOperationV2026>
107951
108666
  }
107952
108667
 
107953
108668
  /**
@@ -107957,6 +108672,18 @@ export interface MachineAccountSubtypesV2026ApiPatchMachineAccountSubtypeRequest
107957
108672
  * @extends {BaseAPI}
107958
108673
  */
107959
108674
  export class MachineAccountSubtypesV2026Api extends BaseAPI {
108675
+ /**
108676
+ * Create a new machine account subtype.
108677
+ * @summary Create subtype
108678
+ * @param {MachineAccountSubtypesV2026ApiCreateSourceSubtypeRequest} requestParameters Request parameters.
108679
+ * @param {*} [axiosOptions] Override http request option.
108680
+ * @throws {RequiredError}
108681
+ * @memberof MachineAccountSubtypesV2026Api
108682
+ */
108683
+ public createSourceSubtype(requestParameters: MachineAccountSubtypesV2026ApiCreateSourceSubtypeRequest, axiosOptions?: RawAxiosRequestConfig) {
108684
+ return MachineAccountSubtypesV2026ApiFp(this.configuration).createSourceSubtype(requestParameters.createSourceSubtypeRequestV2026, requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(this.axios, this.basePath));
108685
+ }
108686
+
107960
108687
  /**
107961
108688
  * Delete a machine account subtype by subtype ID. Note: If subtype has approval settings or entitlement for machine account creation enablement then it\'ll be also deleted.
107962
108689
  * @summary Delete subtype by ID
@@ -107966,7 +108693,19 @@ export class MachineAccountSubtypesV2026Api extends BaseAPI {
107966
108693
  * @memberof MachineAccountSubtypesV2026Api
107967
108694
  */
107968
108695
  public deleteMachineAccountSubtype(requestParameters: MachineAccountSubtypesV2026ApiDeleteMachineAccountSubtypeRequest, axiosOptions?: RawAxiosRequestConfig) {
107969
- return MachineAccountSubtypesV2026ApiFp(this.configuration).deleteMachineAccountSubtype(requestParameters.subtypeId, axiosOptions).then((request) => request(this.axios, this.basePath));
108696
+ return MachineAccountSubtypesV2026ApiFp(this.configuration).deleteMachineAccountSubtype(requestParameters.subtypeId, requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(this.axios, this.basePath));
108697
+ }
108698
+
108699
+ /**
108700
+ * This endpoint retrieves the approval configuration for machine account creation and deletion at the machine subtype level. By providing a specific subtypeId in the path, clients can fetch the approval rules and settings (such as required approvers and comments policy) that govern account creation and deletion for that particular machine subtype. The response includes a MachineAccountSubtypeConfigDto object detailing these configurations, enabling clients to understand or display the approval workflow required for creating and deleting machine accounts of the given subtype. Use this endpoint to get machine subtype level approval config for account creation and deletion.
108701
+ * @summary Machine Subtype Approval Config
108702
+ * @param {MachineAccountSubtypesV2026ApiGetMachineAccountSubtypeApprovalConfigRequest} requestParameters Request parameters.
108703
+ * @param {*} [axiosOptions] Override http request option.
108704
+ * @throws {RequiredError}
108705
+ * @memberof MachineAccountSubtypesV2026Api
108706
+ */
108707
+ public getMachineAccountSubtypeApprovalConfig(requestParameters: MachineAccountSubtypesV2026ApiGetMachineAccountSubtypeApprovalConfigRequest, axiosOptions?: RawAxiosRequestConfig) {
108708
+ return MachineAccountSubtypesV2026ApiFp(this.configuration).getMachineAccountSubtypeApprovalConfig(requestParameters.xSailPointExperimental, requestParameters.subtypeId, axiosOptions).then((request) => request(this.axios, this.basePath));
107970
108709
  }
107971
108710
 
107972
108711
  /**
@@ -107978,7 +108717,31 @@ export class MachineAccountSubtypesV2026Api extends BaseAPI {
107978
108717
  * @memberof MachineAccountSubtypesV2026Api
107979
108718
  */
107980
108719
  public getSourceSubtypeById(requestParameters: MachineAccountSubtypesV2026ApiGetSourceSubtypeByIdRequest, axiosOptions?: RawAxiosRequestConfig) {
107981
- return MachineAccountSubtypesV2026ApiFp(this.configuration).getSourceSubtypeById(requestParameters.subtypeId, axiosOptions).then((request) => request(this.axios, this.basePath));
108720
+ return MachineAccountSubtypesV2026ApiFp(this.configuration).getSourceSubtypeById(requestParameters.subtypeId, requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(this.axios, this.basePath));
108721
+ }
108722
+
108723
+ /**
108724
+ * Get all machine account subtypes.
108725
+ * @summary Retrieve all subtypes
108726
+ * @param {MachineAccountSubtypesV2026ApiListSourceSubtypesRequest} requestParameters Request parameters.
108727
+ * @param {*} [axiosOptions] Override http request option.
108728
+ * @throws {RequiredError}
108729
+ * @memberof MachineAccountSubtypesV2026Api
108730
+ */
108731
+ public listSourceSubtypes(requestParameters: MachineAccountSubtypesV2026ApiListSourceSubtypesRequest = {}, axiosOptions?: RawAxiosRequestConfig) {
108732
+ return MachineAccountSubtypesV2026ApiFp(this.configuration).listSourceSubtypes(requestParameters.filters, requestParameters.sorters, requestParameters.xSailPointExperimental, requestParameters.count, requestParameters.limit, requestParameters.offset, axiosOptions).then((request) => request(this.axios, this.basePath));
108733
+ }
108734
+
108735
+ /**
108736
+ * This endpoint retrieves the subtypes for given subtypeIds.
108737
+ * @summary Bulk Retrieve of Source Subtypes
108738
+ * @param {MachineAccountSubtypesV2026ApiLoadBulkSourceSubtypesRequest} requestParameters Request parameters.
108739
+ * @param {*} [axiosOptions] Override http request option.
108740
+ * @throws {RequiredError}
108741
+ * @memberof MachineAccountSubtypesV2026Api
108742
+ */
108743
+ public loadBulkSourceSubtypes(requestParameters: MachineAccountSubtypesV2026ApiLoadBulkSourceSubtypesRequest, axiosOptions?: RawAxiosRequestConfig) {
108744
+ return MachineAccountSubtypesV2026ApiFp(this.configuration).loadBulkSourceSubtypes(requestParameters.xSailPointExperimental, requestParameters.requestBody, axiosOptions).then((request) => request(this.axios, this.basePath));
107982
108745
  }
107983
108746
 
107984
108747
  /**
@@ -107990,7 +108753,19 @@ export class MachineAccountSubtypesV2026Api extends BaseAPI {
107990
108753
  * @memberof MachineAccountSubtypesV2026Api
107991
108754
  */
107992
108755
  public patchMachineAccountSubtype(requestParameters: MachineAccountSubtypesV2026ApiPatchMachineAccountSubtypeRequest, axiosOptions?: RawAxiosRequestConfig) {
107993
- return MachineAccountSubtypesV2026ApiFp(this.configuration).patchMachineAccountSubtype(requestParameters.subtypeId, requestParameters.requestBody, axiosOptions).then((request) => request(this.axios, this.basePath));
108756
+ return MachineAccountSubtypesV2026ApiFp(this.configuration).patchMachineAccountSubtype(requestParameters.subtypeId, requestParameters.requestBody, requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(this.axios, this.basePath));
108757
+ }
108758
+
108759
+ /**
108760
+ * Updates the approval configuration for machine account deletion at the specified machine subtype level. This endpoint allows clients to modify approval rules and settings (such as required approvers and comments policy) for account creation and deletion workflows associated with a given subtypeId. Use this to customize or enforce approval requirements for creating and deleting machine accounts of a particular subtype.
108761
+ * @summary Machine Subtype Approval Config
108762
+ * @param {MachineAccountSubtypesV2026ApiUpdateMachineAccountSubtypeApprovalConfigRequest} requestParameters Request parameters.
108763
+ * @param {*} [axiosOptions] Override http request option.
108764
+ * @throws {RequiredError}
108765
+ * @memberof MachineAccountSubtypesV2026Api
108766
+ */
108767
+ public updateMachineAccountSubtypeApprovalConfig(requestParameters: MachineAccountSubtypesV2026ApiUpdateMachineAccountSubtypeApprovalConfigRequest, axiosOptions?: RawAxiosRequestConfig) {
108768
+ return MachineAccountSubtypesV2026ApiFp(this.configuration).updateMachineAccountSubtypeApprovalConfig(requestParameters.xSailPointExperimental, requestParameters.subtypeId, requestParameters.jsonPatchOperationV2026, axiosOptions).then((request) => request(this.axios, this.basePath));
107994
108769
  }
107995
108770
  }
107996
108771
 
@@ -108009,6 +108784,7 @@ export const MachineAccountsV2026ApiAxiosParamCreator = function (configuration?
108009
108784
  * @param {CreateMachineAccountSubtypeRequestV2026} createMachineAccountSubtypeRequestV2026
108010
108785
  * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
108011
108786
  * @param {*} [axiosOptions] Override http request option.
108787
+ * @deprecated
108012
108788
  * @throws {RequiredError}
108013
108789
  */
108014
108790
  createMachineAccountSubtype: async (sourceId: string, createMachineAccountSubtypeRequestV2026: CreateMachineAccountSubtypeRequestV2026, xSailPointExperimental?: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
@@ -108069,6 +108845,7 @@ export const MachineAccountsV2026ApiAxiosParamCreator = function (configuration?
108069
108845
  * @param {string} technicalName The technical name of the subtype.
108070
108846
  * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
108071
108847
  * @param {*} [axiosOptions] Override http request option.
108848
+ * @deprecated
108072
108849
  * @throws {RequiredError}
108073
108850
  */
108074
108851
  deleteMachineAccountSubtypeByTechnicalName: async (sourceId: string, technicalName: string, xSailPointExperimental?: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
@@ -108158,58 +108935,6 @@ export const MachineAccountsV2026ApiAxiosParamCreator = function (configuration?
108158
108935
 
108159
108936
 
108160
108937
 
108161
- if (xSailPointExperimental != null) {
108162
- localVarHeaderParameter['X-SailPoint-Experimental'] = String(xSailPointExperimental);
108163
- }
108164
- setSearchParams(localVarUrlObj, localVarQueryParameter);
108165
- let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
108166
- localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
108167
-
108168
- return {
108169
- url: toPathString(localVarUrlObj),
108170
- axiosOptions: localVarRequestOptions,
108171
- };
108172
- },
108173
- /**
108174
- * This endpoint retrieves the approval configuration for machine account creation and deletion at the machine subtype level. By providing a specific subtypeId in the path, clients can fetch the approval rules and settings (such as required approvers and comments policy) that govern account creation and deletion for that particular machine subtype. The response includes a MachineAccountSubtypeConfigDto object detailing these configurations, enabling clients to understand or display the approval workflow required for creating and deleting machine accounts of the given subtype. Use this endpoint to get machine subtype level approval config for account creation and deletion.
108175
- * @summary Machine Subtype Approval Config
108176
- * @param {string} xSailPointExperimental Use this header to enable this experimental API.
108177
- * @param {string} subtypeId machine subtype id.
108178
- * @param {*} [axiosOptions] Override http request option.
108179
- * @throws {RequiredError}
108180
- */
108181
- getMachineAccountSubtypeApprovalConfig: async (xSailPointExperimental: string, subtypeId: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
108182
- if (xSailPointExperimental === undefined) {
108183
- xSailPointExperimental = 'true';
108184
- }
108185
-
108186
- // verify required parameter 'xSailPointExperimental' is not null or undefined
108187
- assertParamExists('getMachineAccountSubtypeApprovalConfig', 'xSailPointExperimental', xSailPointExperimental)
108188
- // verify required parameter 'subtypeId' is not null or undefined
108189
- assertParamExists('getMachineAccountSubtypeApprovalConfig', 'subtypeId', subtypeId)
108190
- const localVarPath = `/source-subtypes/{subtypeId}/machine-config`
108191
- .replace(`{${"subtypeId"}}`, encodeURIComponent(String(subtypeId)));
108192
- // use dummy base URL string because the URL constructor only accepts absolute URLs.
108193
- const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
108194
- let baseOptions;
108195
- if (configuration) {
108196
- baseOptions = configuration.baseOptions;
108197
- }
108198
-
108199
- const localVarRequestOptions = { method: 'GET', ...baseOptions, ...axiosOptions};
108200
- const localVarHeaderParameter = {} as any;
108201
- const localVarQueryParameter = {} as any;
108202
-
108203
- // authentication userAuth required
108204
- // oauth required
108205
- await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
108206
-
108207
- // authentication userAuth required
108208
- // oauth required
108209
- await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
108210
-
108211
-
108212
-
108213
108938
  if (xSailPointExperimental != null) {
108214
108939
  localVarHeaderParameter['X-SailPoint-Experimental'] = String(xSailPointExperimental);
108215
108940
  }
@@ -108228,6 +108953,7 @@ export const MachineAccountsV2026ApiAxiosParamCreator = function (configuration?
108228
108953
  * @param {string} subtypeId The ID of the machine account subtype.
108229
108954
  * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
108230
108955
  * @param {*} [axiosOptions] Override http request option.
108956
+ * @deprecated
108231
108957
  * @throws {RequiredError}
108232
108958
  */
108233
108959
  getMachineAccountSubtypeById: async (subtypeId: string, xSailPointExperimental?: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
@@ -108283,6 +109009,7 @@ export const MachineAccountsV2026ApiAxiosParamCreator = function (configuration?
108283
109009
  * @param {string} technicalName The technical name of the subtype.
108284
109010
  * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
108285
109011
  * @param {*} [axiosOptions] Override http request option.
109012
+ * @deprecated
108286
109013
  * @throws {RequiredError}
108287
109014
  */
108288
109015
  getMachineAccountSubtypeByTechnicalName: async (sourceId: string, technicalName: string, xSailPointExperimental?: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
@@ -108345,6 +109072,7 @@ export const MachineAccountsV2026ApiAxiosParamCreator = function (configuration?
108345
109072
  * @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.
108346
109073
  * @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.
108347
109074
  * @param {*} [axiosOptions] Override http request option.
109075
+ * @deprecated
108348
109076
  * @throws {RequiredError}
108349
109077
  */
108350
109078
  listMachineAccountSubtypes: async (sourceId: string, filters?: string, sorters?: string, xSailPointExperimental?: string, count?: boolean, limit?: number, offset?: number, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
@@ -108484,64 +109212,6 @@ export const MachineAccountsV2026ApiAxiosParamCreator = function (configuration?
108484
109212
  axiosOptions: localVarRequestOptions,
108485
109213
  };
108486
109214
  },
108487
- /**
108488
- * This endpoint retrieves the subtypes for given subtypeIds.
108489
- * @summary Bulk Retrieve of Source Subtypes
108490
- * @param {string} xSailPointExperimental Use this header to enable this experimental API.
108491
- * @param {Array<string>} requestBody
108492
- * @param {*} [axiosOptions] Override http request option.
108493
- * @throws {RequiredError}
108494
- */
108495
- loadBulkSourceSubtypes: async (xSailPointExperimental: string, requestBody: Array<string>, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
108496
- if (xSailPointExperimental === undefined) {
108497
- xSailPointExperimental = 'true';
108498
- }
108499
-
108500
- // verify required parameter 'xSailPointExperimental' is not null or undefined
108501
- assertParamExists('loadBulkSourceSubtypes', 'xSailPointExperimental', xSailPointExperimental)
108502
- // verify required parameter 'requestBody' is not null or undefined
108503
- assertParamExists('loadBulkSourceSubtypes', 'requestBody', requestBody)
108504
- const localVarPath = `/source-subtypes/bulk-retrieve`;
108505
- // use dummy base URL string because the URL constructor only accepts absolute URLs.
108506
- const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
108507
- let baseOptions;
108508
- if (configuration) {
108509
- baseOptions = configuration.baseOptions;
108510
- }
108511
-
108512
- const localVarRequestOptions = { method: 'POST', ...baseOptions, ...axiosOptions};
108513
- const localVarHeaderParameter = {} as any;
108514
- const localVarQueryParameter = {} as any;
108515
-
108516
- // authentication userAuth required
108517
- // oauth required
108518
- await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
108519
-
108520
- // authentication userAuth required
108521
- // oauth required
108522
- await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
108523
-
108524
- // authentication applicationAuth required
108525
- // oauth required
108526
- await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
108527
-
108528
-
108529
-
108530
- localVarHeaderParameter['Content-Type'] = 'application/json';
108531
-
108532
- if (xSailPointExperimental != null) {
108533
- localVarHeaderParameter['X-SailPoint-Experimental'] = String(xSailPointExperimental);
108534
- }
108535
- setSearchParams(localVarUrlObj, localVarQueryParameter);
108536
- let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
108537
- localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
108538
- localVarRequestOptions.data = serializeDataIfNeeded(requestBody, localVarRequestOptions, configuration)
108539
-
108540
- return {
108541
- url: toPathString(localVarUrlObj),
108542
- axiosOptions: localVarRequestOptions,
108543
- };
108544
- },
108545
109215
  /**
108546
109216
  * Update fields of a machine account subtype by source ID and technical name. Patchable fields include: `displayName`, `description`.
108547
109217
  * @summary Patch subtype
@@ -108550,6 +109220,7 @@ export const MachineAccountsV2026ApiAxiosParamCreator = function (configuration?
108550
109220
  * @param {Array<object>} requestBody A JSON of updated values [JSON Patch](https://tools.ietf.org/html/rfc6902) standard.
108551
109221
  * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
108552
109222
  * @param {*} [axiosOptions] Override http request option.
109223
+ * @deprecated
108553
109224
  * @throws {RequiredError}
108554
109225
  */
108555
109226
  patchMachineAccountSubtypeByTechnicalName: async (sourceId: string, technicalName: string, requestBody: Array<object>, xSailPointExperimental?: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
@@ -108661,64 +109332,6 @@ export const MachineAccountsV2026ApiAxiosParamCreator = function (configuration?
108661
109332
  localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
108662
109333
  localVarRequestOptions.data = serializeDataIfNeeded(requestBody, localVarRequestOptions, configuration)
108663
109334
 
108664
- return {
108665
- url: toPathString(localVarUrlObj),
108666
- axiosOptions: localVarRequestOptions,
108667
- };
108668
- },
108669
- /**
108670
- * Updates the approval configuration for machine account deletion at the specified machine subtype level. This endpoint allows clients to modify approval rules and settings (such as required approvers and comments policy) for account creation and deletion workflows associated with a given subtypeId. Use this to customize or enforce approval requirements for creating and deleting machine accounts of a particular subtype.
108671
- * @summary Machine Subtype Approval Config
108672
- * @param {string} xSailPointExperimental Use this header to enable this experimental API.
108673
- * @param {string} subtypeId machine account subtype ID.
108674
- * @param {Array<JsonPatchOperationV2026>} jsonPatchOperationV2026 The JSONPatch payload used to update the object.
108675
- * @param {*} [axiosOptions] Override http request option.
108676
- * @throws {RequiredError}
108677
- */
108678
- updateMachineAccountSubtypeApprovalConfig: async (xSailPointExperimental: string, subtypeId: string, jsonPatchOperationV2026: Array<JsonPatchOperationV2026>, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
108679
- if (xSailPointExperimental === undefined) {
108680
- xSailPointExperimental = 'true';
108681
- }
108682
-
108683
- // verify required parameter 'xSailPointExperimental' is not null or undefined
108684
- assertParamExists('updateMachineAccountSubtypeApprovalConfig', 'xSailPointExperimental', xSailPointExperimental)
108685
- // verify required parameter 'subtypeId' is not null or undefined
108686
- assertParamExists('updateMachineAccountSubtypeApprovalConfig', 'subtypeId', subtypeId)
108687
- // verify required parameter 'jsonPatchOperationV2026' is not null or undefined
108688
- assertParamExists('updateMachineAccountSubtypeApprovalConfig', 'jsonPatchOperationV2026', jsonPatchOperationV2026)
108689
- const localVarPath = `/source-subtypes/{subtypeId}/machine-config`
108690
- .replace(`{${"subtypeId"}}`, encodeURIComponent(String(subtypeId)));
108691
- // use dummy base URL string because the URL constructor only accepts absolute URLs.
108692
- const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
108693
- let baseOptions;
108694
- if (configuration) {
108695
- baseOptions = configuration.baseOptions;
108696
- }
108697
-
108698
- const localVarRequestOptions = { method: 'PATCH', ...baseOptions, ...axiosOptions};
108699
- const localVarHeaderParameter = {} as any;
108700
- const localVarQueryParameter = {} as any;
108701
-
108702
- // authentication userAuth required
108703
- // oauth required
108704
- await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
108705
-
108706
- // authentication userAuth required
108707
- // oauth required
108708
- await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
108709
-
108710
-
108711
-
108712
- localVarHeaderParameter['Content-Type'] = 'application/json-patch+json';
108713
-
108714
- if (xSailPointExperimental != null) {
108715
- localVarHeaderParameter['X-SailPoint-Experimental'] = String(xSailPointExperimental);
108716
- }
108717
- setSearchParams(localVarUrlObj, localVarQueryParameter);
108718
- let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
108719
- localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
108720
- localVarRequestOptions.data = serializeDataIfNeeded(jsonPatchOperationV2026, localVarRequestOptions, configuration)
108721
-
108722
109335
  return {
108723
109336
  url: toPathString(localVarUrlObj),
108724
109337
  axiosOptions: localVarRequestOptions,
@@ -108741,6 +109354,7 @@ export const MachineAccountsV2026ApiFp = function(configuration?: Configuration)
108741
109354
  * @param {CreateMachineAccountSubtypeRequestV2026} createMachineAccountSubtypeRequestV2026
108742
109355
  * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
108743
109356
  * @param {*} [axiosOptions] Override http request option.
109357
+ * @deprecated
108744
109358
  * @throws {RequiredError}
108745
109359
  */
108746
109360
  async createMachineAccountSubtype(sourceId: string, createMachineAccountSubtypeRequestV2026: CreateMachineAccountSubtypeRequestV2026, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SourceSubtypeV2026>> {
@@ -108756,6 +109370,7 @@ export const MachineAccountsV2026ApiFp = function(configuration?: Configuration)
108756
109370
  * @param {string} technicalName The technical name of the subtype.
108757
109371
  * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
108758
109372
  * @param {*} [axiosOptions] Override http request option.
109373
+ * @deprecated
108759
109374
  * @throws {RequiredError}
108760
109375
  */
108761
109376
  async deleteMachineAccountSubtypeByTechnicalName(sourceId: string, technicalName: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
@@ -108778,26 +109393,13 @@ export const MachineAccountsV2026ApiFp = function(configuration?: Configuration)
108778
109393
  const localVarOperationServerBasePath = operationServerMap['MachineAccountsV2026Api.getMachineAccount']?.[localVarOperationServerIndex]?.url;
108779
109394
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
108780
109395
  },
108781
- /**
108782
- * This endpoint retrieves the approval configuration for machine account creation and deletion at the machine subtype level. By providing a specific subtypeId in the path, clients can fetch the approval rules and settings (such as required approvers and comments policy) that govern account creation and deletion for that particular machine subtype. The response includes a MachineAccountSubtypeConfigDto object detailing these configurations, enabling clients to understand or display the approval workflow required for creating and deleting machine accounts of the given subtype. Use this endpoint to get machine subtype level approval config for account creation and deletion.
108783
- * @summary Machine Subtype Approval Config
108784
- * @param {string} xSailPointExperimental Use this header to enable this experimental API.
108785
- * @param {string} subtypeId machine subtype id.
108786
- * @param {*} [axiosOptions] Override http request option.
108787
- * @throws {RequiredError}
108788
- */
108789
- async getMachineAccountSubtypeApprovalConfig(xSailPointExperimental: string, subtypeId: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MachineAccountSubtypeConfigDtoV2026>> {
108790
- const localVarAxiosArgs = await localVarAxiosParamCreator.getMachineAccountSubtypeApprovalConfig(xSailPointExperimental, subtypeId, axiosOptions);
108791
- const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
108792
- const localVarOperationServerBasePath = operationServerMap['MachineAccountsV2026Api.getMachineAccountSubtypeApprovalConfig']?.[localVarOperationServerIndex]?.url;
108793
- return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
108794
- },
108795
109396
  /**
108796
109397
  * Get a machine account subtype by its unique ID.
108797
109398
  * @summary Retrieve subtype by subtype id
108798
109399
  * @param {string} subtypeId The ID of the machine account subtype.
108799
109400
  * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
108800
109401
  * @param {*} [axiosOptions] Override http request option.
109402
+ * @deprecated
108801
109403
  * @throws {RequiredError}
108802
109404
  */
108803
109405
  async getMachineAccountSubtypeById(subtypeId: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SourceSubtypeV2026>> {
@@ -108813,6 +109415,7 @@ export const MachineAccountsV2026ApiFp = function(configuration?: Configuration)
108813
109415
  * @param {string} technicalName The technical name of the subtype.
108814
109416
  * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
108815
109417
  * @param {*} [axiosOptions] Override http request option.
109418
+ * @deprecated
108816
109419
  * @throws {RequiredError}
108817
109420
  */
108818
109421
  async getMachineAccountSubtypeByTechnicalName(sourceId: string, technicalName: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SourceSubtypeV2026>> {
@@ -108832,6 +109435,7 @@ export const MachineAccountsV2026ApiFp = function(configuration?: Configuration)
108832
109435
  * @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.
108833
109436
  * @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.
108834
109437
  * @param {*} [axiosOptions] Override http request option.
109438
+ * @deprecated
108835
109439
  * @throws {RequiredError}
108836
109440
  */
108837
109441
  async listMachineAccountSubtypes(sourceId: string, filters?: string, sorters?: string, xSailPointExperimental?: string, count?: boolean, limit?: number, offset?: number, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<SourceSubtypeV2026>>> {
@@ -108858,20 +109462,6 @@ export const MachineAccountsV2026ApiFp = function(configuration?: Configuration)
108858
109462
  const localVarOperationServerBasePath = operationServerMap['MachineAccountsV2026Api.listMachineAccounts']?.[localVarOperationServerIndex]?.url;
108859
109463
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
108860
109464
  },
108861
- /**
108862
- * This endpoint retrieves the subtypes for given subtypeIds.
108863
- * @summary Bulk Retrieve of Source Subtypes
108864
- * @param {string} xSailPointExperimental Use this header to enable this experimental API.
108865
- * @param {Array<string>} requestBody
108866
- * @param {*} [axiosOptions] Override http request option.
108867
- * @throws {RequiredError}
108868
- */
108869
- async loadBulkSourceSubtypes(xSailPointExperimental: string, requestBody: Array<string>, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<SourceSubtypeWithSourceV2026>>> {
108870
- const localVarAxiosArgs = await localVarAxiosParamCreator.loadBulkSourceSubtypes(xSailPointExperimental, requestBody, axiosOptions);
108871
- const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
108872
- const localVarOperationServerBasePath = operationServerMap['MachineAccountsV2026Api.loadBulkSourceSubtypes']?.[localVarOperationServerIndex]?.url;
108873
- return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
108874
- },
108875
109465
  /**
108876
109466
  * Update fields of a machine account subtype by source ID and technical name. Patchable fields include: `displayName`, `description`.
108877
109467
  * @summary Patch subtype
@@ -108880,6 +109470,7 @@ export const MachineAccountsV2026ApiFp = function(configuration?: Configuration)
108880
109470
  * @param {Array<object>} requestBody A JSON of updated values [JSON Patch](https://tools.ietf.org/html/rfc6902) standard.
108881
109471
  * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
108882
109472
  * @param {*} [axiosOptions] Override http request option.
109473
+ * @deprecated
108883
109474
  * @throws {RequiredError}
108884
109475
  */
108885
109476
  async patchMachineAccountSubtypeByTechnicalName(sourceId: string, technicalName: string, requestBody: Array<object>, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SourceSubtypeV2026>> {
@@ -108903,21 +109494,6 @@ export const MachineAccountsV2026ApiFp = function(configuration?: Configuration)
108903
109494
  const localVarOperationServerBasePath = operationServerMap['MachineAccountsV2026Api.updateMachineAccount']?.[localVarOperationServerIndex]?.url;
108904
109495
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
108905
109496
  },
108906
- /**
108907
- * Updates the approval configuration for machine account deletion at the specified machine subtype level. This endpoint allows clients to modify approval rules and settings (such as required approvers and comments policy) for account creation and deletion workflows associated with a given subtypeId. Use this to customize or enforce approval requirements for creating and deleting machine accounts of a particular subtype.
108908
- * @summary Machine Subtype Approval Config
108909
- * @param {string} xSailPointExperimental Use this header to enable this experimental API.
108910
- * @param {string} subtypeId machine account subtype ID.
108911
- * @param {Array<JsonPatchOperationV2026>} jsonPatchOperationV2026 The JSONPatch payload used to update the object.
108912
- * @param {*} [axiosOptions] Override http request option.
108913
- * @throws {RequiredError}
108914
- */
108915
- async updateMachineAccountSubtypeApprovalConfig(xSailPointExperimental: string, subtypeId: string, jsonPatchOperationV2026: Array<JsonPatchOperationV2026>, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MachineAccountSubtypeConfigDtoV2026>> {
108916
- const localVarAxiosArgs = await localVarAxiosParamCreator.updateMachineAccountSubtypeApprovalConfig(xSailPointExperimental, subtypeId, jsonPatchOperationV2026, axiosOptions);
108917
- const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
108918
- const localVarOperationServerBasePath = operationServerMap['MachineAccountsV2026Api.updateMachineAccountSubtypeApprovalConfig']?.[localVarOperationServerIndex]?.url;
108919
- return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
108920
- },
108921
109497
  }
108922
109498
  };
108923
109499
 
@@ -108933,6 +109509,7 @@ export const MachineAccountsV2026ApiFactory = function (configuration?: Configur
108933
109509
  * @summary Create subtype
108934
109510
  * @param {MachineAccountsV2026ApiCreateMachineAccountSubtypeRequest} requestParameters Request parameters.
108935
109511
  * @param {*} [axiosOptions] Override http request option.
109512
+ * @deprecated
108936
109513
  * @throws {RequiredError}
108937
109514
  */
108938
109515
  createMachineAccountSubtype(requestParameters: MachineAccountsV2026ApiCreateMachineAccountSubtypeRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<SourceSubtypeV2026> {
@@ -108943,6 +109520,7 @@ export const MachineAccountsV2026ApiFactory = function (configuration?: Configur
108943
109520
  * @summary Delete subtype
108944
109521
  * @param {MachineAccountsV2026ApiDeleteMachineAccountSubtypeByTechnicalNameRequest} requestParameters Request parameters.
108945
109522
  * @param {*} [axiosOptions] Override http request option.
109523
+ * @deprecated
108946
109524
  * @throws {RequiredError}
108947
109525
  */
108948
109526
  deleteMachineAccountSubtypeByTechnicalName(requestParameters: MachineAccountsV2026ApiDeleteMachineAccountSubtypeByTechnicalNameRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<void> {
@@ -108958,21 +109536,12 @@ export const MachineAccountsV2026ApiFactory = function (configuration?: Configur
108958
109536
  getMachineAccount(requestParameters: MachineAccountsV2026ApiGetMachineAccountRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<MachineAccountV2026> {
108959
109537
  return localVarFp.getMachineAccount(requestParameters.id, requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(axios, basePath));
108960
109538
  },
108961
- /**
108962
- * This endpoint retrieves the approval configuration for machine account creation and deletion at the machine subtype level. By providing a specific subtypeId in the path, clients can fetch the approval rules and settings (such as required approvers and comments policy) that govern account creation and deletion for that particular machine subtype. The response includes a MachineAccountSubtypeConfigDto object detailing these configurations, enabling clients to understand or display the approval workflow required for creating and deleting machine accounts of the given subtype. Use this endpoint to get machine subtype level approval config for account creation and deletion.
108963
- * @summary Machine Subtype Approval Config
108964
- * @param {MachineAccountsV2026ApiGetMachineAccountSubtypeApprovalConfigRequest} requestParameters Request parameters.
108965
- * @param {*} [axiosOptions] Override http request option.
108966
- * @throws {RequiredError}
108967
- */
108968
- getMachineAccountSubtypeApprovalConfig(requestParameters: MachineAccountsV2026ApiGetMachineAccountSubtypeApprovalConfigRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<MachineAccountSubtypeConfigDtoV2026> {
108969
- return localVarFp.getMachineAccountSubtypeApprovalConfig(requestParameters.xSailPointExperimental, requestParameters.subtypeId, axiosOptions).then((request) => request(axios, basePath));
108970
- },
108971
109539
  /**
108972
109540
  * Get a machine account subtype by its unique ID.
108973
109541
  * @summary Retrieve subtype by subtype id
108974
109542
  * @param {MachineAccountsV2026ApiGetMachineAccountSubtypeByIdRequest} requestParameters Request parameters.
108975
109543
  * @param {*} [axiosOptions] Override http request option.
109544
+ * @deprecated
108976
109545
  * @throws {RequiredError}
108977
109546
  */
108978
109547
  getMachineAccountSubtypeById(requestParameters: MachineAccountsV2026ApiGetMachineAccountSubtypeByIdRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<SourceSubtypeV2026> {
@@ -108983,6 +109552,7 @@ export const MachineAccountsV2026ApiFactory = function (configuration?: Configur
108983
109552
  * @summary Retrieve subtype by source and technicalName
108984
109553
  * @param {MachineAccountsV2026ApiGetMachineAccountSubtypeByTechnicalNameRequest} requestParameters Request parameters.
108985
109554
  * @param {*} [axiosOptions] Override http request option.
109555
+ * @deprecated
108986
109556
  * @throws {RequiredError}
108987
109557
  */
108988
109558
  getMachineAccountSubtypeByTechnicalName(requestParameters: MachineAccountsV2026ApiGetMachineAccountSubtypeByTechnicalNameRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<SourceSubtypeV2026> {
@@ -108993,6 +109563,7 @@ export const MachineAccountsV2026ApiFactory = function (configuration?: Configur
108993
109563
  * @summary Retrieve all subtypes by source
108994
109564
  * @param {MachineAccountsV2026ApiListMachineAccountSubtypesRequest} requestParameters Request parameters.
108995
109565
  * @param {*} [axiosOptions] Override http request option.
109566
+ * @deprecated
108996
109567
  * @throws {RequiredError}
108997
109568
  */
108998
109569
  listMachineAccountSubtypes(requestParameters: MachineAccountsV2026ApiListMachineAccountSubtypesRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<SourceSubtypeV2026>> {
@@ -109008,21 +109579,12 @@ export const MachineAccountsV2026ApiFactory = function (configuration?: Configur
109008
109579
  listMachineAccounts(requestParameters: MachineAccountsV2026ApiListMachineAccountsRequest = {}, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<MachineAccountV2026>> {
109009
109580
  return localVarFp.listMachineAccounts(requestParameters.limit, requestParameters.offset, requestParameters.count, requestParameters.filters, requestParameters.sorters, requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(axios, basePath));
109010
109581
  },
109011
- /**
109012
- * This endpoint retrieves the subtypes for given subtypeIds.
109013
- * @summary Bulk Retrieve of Source Subtypes
109014
- * @param {MachineAccountsV2026ApiLoadBulkSourceSubtypesRequest} requestParameters Request parameters.
109015
- * @param {*} [axiosOptions] Override http request option.
109016
- * @throws {RequiredError}
109017
- */
109018
- loadBulkSourceSubtypes(requestParameters: MachineAccountsV2026ApiLoadBulkSourceSubtypesRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<SourceSubtypeWithSourceV2026>> {
109019
- return localVarFp.loadBulkSourceSubtypes(requestParameters.xSailPointExperimental, requestParameters.requestBody, axiosOptions).then((request) => request(axios, basePath));
109020
- },
109021
109582
  /**
109022
109583
  * Update fields of a machine account subtype by source ID and technical name. Patchable fields include: `displayName`, `description`.
109023
109584
  * @summary Patch subtype
109024
109585
  * @param {MachineAccountsV2026ApiPatchMachineAccountSubtypeByTechnicalNameRequest} requestParameters Request parameters.
109025
109586
  * @param {*} [axiosOptions] Override http request option.
109587
+ * @deprecated
109026
109588
  * @throws {RequiredError}
109027
109589
  */
109028
109590
  patchMachineAccountSubtypeByTechnicalName(requestParameters: MachineAccountsV2026ApiPatchMachineAccountSubtypeByTechnicalNameRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<SourceSubtypeV2026> {
@@ -109038,16 +109600,6 @@ export const MachineAccountsV2026ApiFactory = function (configuration?: Configur
109038
109600
  updateMachineAccount(requestParameters: MachineAccountsV2026ApiUpdateMachineAccountRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<MachineAccountV2026> {
109039
109601
  return localVarFp.updateMachineAccount(requestParameters.id, requestParameters.requestBody, requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(axios, basePath));
109040
109602
  },
109041
- /**
109042
- * Updates the approval configuration for machine account deletion at the specified machine subtype level. This endpoint allows clients to modify approval rules and settings (such as required approvers and comments policy) for account creation and deletion workflows associated with a given subtypeId. Use this to customize or enforce approval requirements for creating and deleting machine accounts of a particular subtype.
109043
- * @summary Machine Subtype Approval Config
109044
- * @param {MachineAccountsV2026ApiUpdateMachineAccountSubtypeApprovalConfigRequest} requestParameters Request parameters.
109045
- * @param {*} [axiosOptions] Override http request option.
109046
- * @throws {RequiredError}
109047
- */
109048
- updateMachineAccountSubtypeApprovalConfig(requestParameters: MachineAccountsV2026ApiUpdateMachineAccountSubtypeApprovalConfigRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<MachineAccountSubtypeConfigDtoV2026> {
109049
- return localVarFp.updateMachineAccountSubtypeApprovalConfig(requestParameters.xSailPointExperimental, requestParameters.subtypeId, requestParameters.jsonPatchOperationV2026, axiosOptions).then((request) => request(axios, basePath));
109050
- },
109051
109603
  };
109052
109604
  };
109053
109605
 
@@ -109128,27 +109680,6 @@ export interface MachineAccountsV2026ApiGetMachineAccountRequest {
109128
109680
  readonly xSailPointExperimental?: string
109129
109681
  }
109130
109682
 
109131
- /**
109132
- * Request parameters for getMachineAccountSubtypeApprovalConfig operation in MachineAccountsV2026Api.
109133
- * @export
109134
- * @interface MachineAccountsV2026ApiGetMachineAccountSubtypeApprovalConfigRequest
109135
- */
109136
- export interface MachineAccountsV2026ApiGetMachineAccountSubtypeApprovalConfigRequest {
109137
- /**
109138
- * Use this header to enable this experimental API.
109139
- * @type {string}
109140
- * @memberof MachineAccountsV2026ApiGetMachineAccountSubtypeApprovalConfig
109141
- */
109142
- readonly xSailPointExperimental: string
109143
-
109144
- /**
109145
- * machine subtype id.
109146
- * @type {string}
109147
- * @memberof MachineAccountsV2026ApiGetMachineAccountSubtypeApprovalConfig
109148
- */
109149
- readonly subtypeId: string
109150
- }
109151
-
109152
109683
  /**
109153
109684
  * Request parameters for getMachineAccountSubtypeById operation in MachineAccountsV2026Api.
109154
109685
  * @export
@@ -109303,27 +109834,6 @@ export interface MachineAccountsV2026ApiListMachineAccountsRequest {
109303
109834
  readonly xSailPointExperimental?: string
109304
109835
  }
109305
109836
 
109306
- /**
109307
- * Request parameters for loadBulkSourceSubtypes operation in MachineAccountsV2026Api.
109308
- * @export
109309
- * @interface MachineAccountsV2026ApiLoadBulkSourceSubtypesRequest
109310
- */
109311
- export interface MachineAccountsV2026ApiLoadBulkSourceSubtypesRequest {
109312
- /**
109313
- * Use this header to enable this experimental API.
109314
- * @type {string}
109315
- * @memberof MachineAccountsV2026ApiLoadBulkSourceSubtypes
109316
- */
109317
- readonly xSailPointExperimental: string
109318
-
109319
- /**
109320
- *
109321
- * @type {Array<string>}
109322
- * @memberof MachineAccountsV2026ApiLoadBulkSourceSubtypes
109323
- */
109324
- readonly requestBody: Array<string>
109325
- }
109326
-
109327
109837
  /**
109328
109838
  * Request parameters for patchMachineAccountSubtypeByTechnicalName operation in MachineAccountsV2026Api.
109329
109839
  * @export
@@ -109387,34 +109897,6 @@ export interface MachineAccountsV2026ApiUpdateMachineAccountRequest {
109387
109897
  readonly xSailPointExperimental?: string
109388
109898
  }
109389
109899
 
109390
- /**
109391
- * Request parameters for updateMachineAccountSubtypeApprovalConfig operation in MachineAccountsV2026Api.
109392
- * @export
109393
- * @interface MachineAccountsV2026ApiUpdateMachineAccountSubtypeApprovalConfigRequest
109394
- */
109395
- export interface MachineAccountsV2026ApiUpdateMachineAccountSubtypeApprovalConfigRequest {
109396
- /**
109397
- * Use this header to enable this experimental API.
109398
- * @type {string}
109399
- * @memberof MachineAccountsV2026ApiUpdateMachineAccountSubtypeApprovalConfig
109400
- */
109401
- readonly xSailPointExperimental: string
109402
-
109403
- /**
109404
- * machine account subtype ID.
109405
- * @type {string}
109406
- * @memberof MachineAccountsV2026ApiUpdateMachineAccountSubtypeApprovalConfig
109407
- */
109408
- readonly subtypeId: string
109409
-
109410
- /**
109411
- * The JSONPatch payload used to update the object.
109412
- * @type {Array<JsonPatchOperationV2026>}
109413
- * @memberof MachineAccountsV2026ApiUpdateMachineAccountSubtypeApprovalConfig
109414
- */
109415
- readonly jsonPatchOperationV2026: Array<JsonPatchOperationV2026>
109416
- }
109417
-
109418
109900
  /**
109419
109901
  * MachineAccountsV2026Api - object-oriented interface
109420
109902
  * @export
@@ -109427,6 +109909,7 @@ export class MachineAccountsV2026Api extends BaseAPI {
109427
109909
  * @summary Create subtype
109428
109910
  * @param {MachineAccountsV2026ApiCreateMachineAccountSubtypeRequest} requestParameters Request parameters.
109429
109911
  * @param {*} [axiosOptions] Override http request option.
109912
+ * @deprecated
109430
109913
  * @throws {RequiredError}
109431
109914
  * @memberof MachineAccountsV2026Api
109432
109915
  */
@@ -109439,6 +109922,7 @@ export class MachineAccountsV2026Api extends BaseAPI {
109439
109922
  * @summary Delete subtype
109440
109923
  * @param {MachineAccountsV2026ApiDeleteMachineAccountSubtypeByTechnicalNameRequest} requestParameters Request parameters.
109441
109924
  * @param {*} [axiosOptions] Override http request option.
109925
+ * @deprecated
109442
109926
  * @throws {RequiredError}
109443
109927
  * @memberof MachineAccountsV2026Api
109444
109928
  */
@@ -109458,23 +109942,12 @@ export class MachineAccountsV2026Api extends BaseAPI {
109458
109942
  return MachineAccountsV2026ApiFp(this.configuration).getMachineAccount(requestParameters.id, requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(this.axios, this.basePath));
109459
109943
  }
109460
109944
 
109461
- /**
109462
- * This endpoint retrieves the approval configuration for machine account creation and deletion at the machine subtype level. By providing a specific subtypeId in the path, clients can fetch the approval rules and settings (such as required approvers and comments policy) that govern account creation and deletion for that particular machine subtype. The response includes a MachineAccountSubtypeConfigDto object detailing these configurations, enabling clients to understand or display the approval workflow required for creating and deleting machine accounts of the given subtype. Use this endpoint to get machine subtype level approval config for account creation and deletion.
109463
- * @summary Machine Subtype Approval Config
109464
- * @param {MachineAccountsV2026ApiGetMachineAccountSubtypeApprovalConfigRequest} requestParameters Request parameters.
109465
- * @param {*} [axiosOptions] Override http request option.
109466
- * @throws {RequiredError}
109467
- * @memberof MachineAccountsV2026Api
109468
- */
109469
- public getMachineAccountSubtypeApprovalConfig(requestParameters: MachineAccountsV2026ApiGetMachineAccountSubtypeApprovalConfigRequest, axiosOptions?: RawAxiosRequestConfig) {
109470
- return MachineAccountsV2026ApiFp(this.configuration).getMachineAccountSubtypeApprovalConfig(requestParameters.xSailPointExperimental, requestParameters.subtypeId, axiosOptions).then((request) => request(this.axios, this.basePath));
109471
- }
109472
-
109473
109945
  /**
109474
109946
  * Get a machine account subtype by its unique ID.
109475
109947
  * @summary Retrieve subtype by subtype id
109476
109948
  * @param {MachineAccountsV2026ApiGetMachineAccountSubtypeByIdRequest} requestParameters Request parameters.
109477
109949
  * @param {*} [axiosOptions] Override http request option.
109950
+ * @deprecated
109478
109951
  * @throws {RequiredError}
109479
109952
  * @memberof MachineAccountsV2026Api
109480
109953
  */
@@ -109487,6 +109960,7 @@ export class MachineAccountsV2026Api extends BaseAPI {
109487
109960
  * @summary Retrieve subtype by source and technicalName
109488
109961
  * @param {MachineAccountsV2026ApiGetMachineAccountSubtypeByTechnicalNameRequest} requestParameters Request parameters.
109489
109962
  * @param {*} [axiosOptions] Override http request option.
109963
+ * @deprecated
109490
109964
  * @throws {RequiredError}
109491
109965
  * @memberof MachineAccountsV2026Api
109492
109966
  */
@@ -109499,6 +109973,7 @@ export class MachineAccountsV2026Api extends BaseAPI {
109499
109973
  * @summary Retrieve all subtypes by source
109500
109974
  * @param {MachineAccountsV2026ApiListMachineAccountSubtypesRequest} requestParameters Request parameters.
109501
109975
  * @param {*} [axiosOptions] Override http request option.
109976
+ * @deprecated
109502
109977
  * @throws {RequiredError}
109503
109978
  * @memberof MachineAccountsV2026Api
109504
109979
  */
@@ -109518,23 +109993,12 @@ export class MachineAccountsV2026Api extends BaseAPI {
109518
109993
  return MachineAccountsV2026ApiFp(this.configuration).listMachineAccounts(requestParameters.limit, requestParameters.offset, requestParameters.count, requestParameters.filters, requestParameters.sorters, requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(this.axios, this.basePath));
109519
109994
  }
109520
109995
 
109521
- /**
109522
- * This endpoint retrieves the subtypes for given subtypeIds.
109523
- * @summary Bulk Retrieve of Source Subtypes
109524
- * @param {MachineAccountsV2026ApiLoadBulkSourceSubtypesRequest} requestParameters Request parameters.
109525
- * @param {*} [axiosOptions] Override http request option.
109526
- * @throws {RequiredError}
109527
- * @memberof MachineAccountsV2026Api
109528
- */
109529
- public loadBulkSourceSubtypes(requestParameters: MachineAccountsV2026ApiLoadBulkSourceSubtypesRequest, axiosOptions?: RawAxiosRequestConfig) {
109530
- return MachineAccountsV2026ApiFp(this.configuration).loadBulkSourceSubtypes(requestParameters.xSailPointExperimental, requestParameters.requestBody, axiosOptions).then((request) => request(this.axios, this.basePath));
109531
- }
109532
-
109533
109996
  /**
109534
109997
  * Update fields of a machine account subtype by source ID and technical name. Patchable fields include: `displayName`, `description`.
109535
109998
  * @summary Patch subtype
109536
109999
  * @param {MachineAccountsV2026ApiPatchMachineAccountSubtypeByTechnicalNameRequest} requestParameters Request parameters.
109537
110000
  * @param {*} [axiosOptions] Override http request option.
110001
+ * @deprecated
109538
110002
  * @throws {RequiredError}
109539
110003
  * @memberof MachineAccountsV2026Api
109540
110004
  */
@@ -109553,18 +110017,6 @@ export class MachineAccountsV2026Api extends BaseAPI {
109553
110017
  public updateMachineAccount(requestParameters: MachineAccountsV2026ApiUpdateMachineAccountRequest, axiosOptions?: RawAxiosRequestConfig) {
109554
110018
  return MachineAccountsV2026ApiFp(this.configuration).updateMachineAccount(requestParameters.id, requestParameters.requestBody, requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(this.axios, this.basePath));
109555
110019
  }
109556
-
109557
- /**
109558
- * Updates the approval configuration for machine account deletion at the specified machine subtype level. This endpoint allows clients to modify approval rules and settings (such as required approvers and comments policy) for account creation and deletion workflows associated with a given subtypeId. Use this to customize or enforce approval requirements for creating and deleting machine accounts of a particular subtype.
109559
- * @summary Machine Subtype Approval Config
109560
- * @param {MachineAccountsV2026ApiUpdateMachineAccountSubtypeApprovalConfigRequest} requestParameters Request parameters.
109561
- * @param {*} [axiosOptions] Override http request option.
109562
- * @throws {RequiredError}
109563
- * @memberof MachineAccountsV2026Api
109564
- */
109565
- public updateMachineAccountSubtypeApprovalConfig(requestParameters: MachineAccountsV2026ApiUpdateMachineAccountSubtypeApprovalConfigRequest, axiosOptions?: RawAxiosRequestConfig) {
109566
- return MachineAccountsV2026ApiFp(this.configuration).updateMachineAccountSubtypeApprovalConfig(requestParameters.xSailPointExperimental, requestParameters.subtypeId, requestParameters.jsonPatchOperationV2026, axiosOptions).then((request) => request(this.axios, this.basePath));
109567
- }
109568
110020
  }
109569
110021
 
109570
110022