sailpoint-api-client 1.8.58 → 1.8.60

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 (46) hide show
  1. package/beta/README.md +2 -2
  2. package/beta/api.ts +36 -0
  3. package/beta/common.ts +2 -2
  4. package/beta/package.json +1 -1
  5. package/dist/beta/api.d.ts +36 -0
  6. package/dist/beta/api.js.map +1 -1
  7. package/dist/beta/common.js +2 -2
  8. package/dist/nerm/common.js +2 -2
  9. package/dist/nermv2025/common.js +2 -2
  10. package/dist/v2024/api.d.ts +36 -0
  11. package/dist/v2024/api.js.map +1 -1
  12. package/dist/v2024/common.js +2 -2
  13. package/dist/v2025/api.d.ts +60 -0
  14. package/dist/v2025/api.js +24 -0
  15. package/dist/v2025/api.js.map +1 -1
  16. package/dist/v2025/common.js +2 -2
  17. package/dist/v2026/api.d.ts +443 -176
  18. package/dist/v2026/api.js +694 -391
  19. package/dist/v2026/api.js.map +1 -1
  20. package/dist/v2026/common.js +2 -2
  21. package/dist/v3/api.d.ts +36 -0
  22. package/dist/v3/api.js.map +1 -1
  23. package/dist/v3/common.js +2 -2
  24. package/nerm/README.md +2 -2
  25. package/nerm/common.ts +2 -2
  26. package/nerm/package.json +1 -1
  27. package/nermv2025/README.md +2 -2
  28. package/nermv2025/common.ts +2 -2
  29. package/nermv2025/package.json +1 -1
  30. package/package.json +1 -1
  31. package/v2024/README.md +2 -2
  32. package/v2024/api.ts +36 -0
  33. package/v2024/common.ts +2 -2
  34. package/v2024/package.json +1 -1
  35. package/v2025/README.md +2 -2
  36. package/v2025/api.ts +60 -0
  37. package/v2025/common.ts +2 -2
  38. package/v2025/package.json +1 -1
  39. package/v2026/README.md +2 -2
  40. package/v2026/api.ts +790 -362
  41. package/v2026/common.ts +2 -2
  42. package/v2026/package.json +1 -1
  43. package/v3/README.md +2 -2
  44. package/v3/api.ts +36 -0
  45. package/v3/common.ts +2 -2
  46. package/v3/package.json +1 -1
@@ -14428,6 +14428,24 @@ export interface CompletedApprovalV2026 {
14428
14428
  * @memberof CompletedApprovalV2026
14429
14429
  */
14430
14430
  'currentRemoveDate'?: string | null;
14431
+ /**
14432
+ * The date the role or access profile or entitlement is/will assigned to the specified identity.
14433
+ * @type {string}
14434
+ * @memberof CompletedApprovalV2026
14435
+ */
14436
+ 'startDate'?: string;
14437
+ /**
14438
+ * If true, then the request is to change the start date or sunrise date.
14439
+ * @type {boolean}
14440
+ * @memberof CompletedApprovalV2026
14441
+ */
14442
+ 'startUpdateRequested'?: boolean;
14443
+ /**
14444
+ * The start date or sunrise date that was assigned at the time of the request.
14445
+ * @type {string}
14446
+ * @memberof CompletedApprovalV2026
14447
+ */
14448
+ 'currentStartDate'?: string;
14431
14449
  /**
14432
14450
  *
14433
14451
  * @type {SodViolationContextCheckCompletedV2026}
@@ -16547,6 +16565,43 @@ export interface CreateScheduledSearchRequestV2026 {
16547
16565
  */
16548
16566
  'displayQueryDetails'?: boolean;
16549
16567
  }
16568
+ /**
16569
+ *
16570
+ * @export
16571
+ * @interface CreateSourceSubtypeRequestV2026
16572
+ */
16573
+ export interface CreateSourceSubtypeRequestV2026 {
16574
+ /**
16575
+ * ID of the source where subtype is created.
16576
+ * @type {string}
16577
+ * @memberof CreateSourceSubtypeRequestV2026
16578
+ */
16579
+ 'sourceId': string;
16580
+ /**
16581
+ * Technical name of the subtype.
16582
+ * @type {string}
16583
+ * @memberof CreateSourceSubtypeRequestV2026
16584
+ */
16585
+ 'technicalName': string;
16586
+ /**
16587
+ * Display name of the subtype.
16588
+ * @type {string}
16589
+ * @memberof CreateSourceSubtypeRequestV2026
16590
+ */
16591
+ 'displayName': string;
16592
+ /**
16593
+ * Description of the subtype.
16594
+ * @type {string}
16595
+ * @memberof CreateSourceSubtypeRequestV2026
16596
+ */
16597
+ 'description': string;
16598
+ /**
16599
+ * Type of the subtype.
16600
+ * @type {string}
16601
+ * @memberof CreateSourceSubtypeRequestV2026
16602
+ */
16603
+ 'type'?: string;
16604
+ }
16550
16605
  /**
16551
16606
  * Full delivery configuration. method and endpoint_url are required.
16552
16607
  * @export
@@ -36054,6 +36109,24 @@ export interface PendingApprovalV2026 {
36054
36109
  * @memberof PendingApprovalV2026
36055
36110
  */
36056
36111
  'currentRemoveDate'?: string;
36112
+ /**
36113
+ * The date the role or access profile or entitlement is/will assigned to the specified identity.
36114
+ * @type {string}
36115
+ * @memberof PendingApprovalV2026
36116
+ */
36117
+ 'startDate'?: string;
36118
+ /**
36119
+ * If true, then the request is to change the start date or sunrise date.
36120
+ * @type {boolean}
36121
+ * @memberof PendingApprovalV2026
36122
+ */
36123
+ 'startUpdateRequested'?: boolean;
36124
+ /**
36125
+ * The start date or sunrise date that was assigned at the time of the request.
36126
+ * @type {string}
36127
+ * @memberof PendingApprovalV2026
36128
+ */
36129
+ 'currentStartDate'?: string;
36057
36130
  /**
36058
36131
  *
36059
36132
  * @type {SodViolationContextCheckCompletedV2026}
@@ -48522,6 +48595,12 @@ export interface SourceSubtypeWithSourceV2026 {
48522
48595
  * @memberof SourceSubtypeWithSourceV2026
48523
48596
  */
48524
48597
  'source'?: SourceSubtypeWithSourceSourceV2026;
48598
+ /**
48599
+ * Indicates if the subtype is managed by the system.
48600
+ * @type {boolean}
48601
+ * @memberof SourceSubtypeWithSourceV2026
48602
+ */
48603
+ 'systemManaged'?: boolean;
48525
48604
  }
48526
48605
  /**
48527
48606
  *
@@ -81501,68 +81580,182 @@ export declare class MachineAccountMappingsV2026Api extends BaseAPI {
81501
81580
  * @export
81502
81581
  */
81503
81582
  export declare const MachineAccountSubtypesV2026ApiAxiosParamCreator: (configuration?: Configuration) => {
81583
+ /**
81584
+ * Create a new machine account subtype.
81585
+ * @summary Create subtype
81586
+ * @param {CreateSourceSubtypeRequestV2026} createSourceSubtypeRequestV2026
81587
+ * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
81588
+ * @param {*} [axiosOptions] Override http request option.
81589
+ * @throws {RequiredError}
81590
+ */
81591
+ createSourceSubtype: (createSourceSubtypeRequestV2026: CreateSourceSubtypeRequestV2026, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
81504
81592
  /**
81505
81593
  * 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.
81506
81594
  * @summary Delete subtype by ID
81507
81595
  * @param {string} subtypeId The ID of the subtype.
81596
+ * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
81597
+ * @param {*} [axiosOptions] Override http request option.
81598
+ * @throws {RequiredError}
81599
+ */
81600
+ deleteMachineAccountSubtype: (subtypeId: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
81601
+ /**
81602
+ * 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.
81603
+ * @summary Machine Subtype Approval Config
81604
+ * @param {string} xSailPointExperimental Use this header to enable this experimental API.
81605
+ * @param {string} subtypeId machine subtype id.
81508
81606
  * @param {*} [axiosOptions] Override http request option.
81509
81607
  * @throws {RequiredError}
81510
81608
  */
81511
- deleteMachineAccountSubtype: (subtypeId: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
81609
+ getMachineAccountSubtypeApprovalConfig: (xSailPointExperimental: string, subtypeId: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
81512
81610
  /**
81513
81611
  * Get a machine account subtype by subtype ID.
81514
81612
  * @summary Get subtype by ID
81515
81613
  * @param {string} subtypeId The ID of the subtype.
81614
+ * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
81516
81615
  * @param {*} [axiosOptions] Override http request option.
81517
81616
  * @throws {RequiredError}
81518
81617
  */
81519
- getSourceSubtypeById: (subtypeId: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
81618
+ getSourceSubtypeById: (subtypeId: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
81619
+ /**
81620
+ * Get all machine account subtypes.
81621
+ * @summary Retrieve all subtypes
81622
+ * @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*
81623
+ * @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**
81624
+ * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
81625
+ * @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.
81626
+ * @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.
81627
+ * @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.
81628
+ * @param {*} [axiosOptions] Override http request option.
81629
+ * @throws {RequiredError}
81630
+ */
81631
+ listSourceSubtypes: (filters?: string, sorters?: string, xSailPointExperimental?: string, count?: boolean, limit?: number, offset?: number, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
81632
+ /**
81633
+ * This endpoint retrieves the subtypes for given subtypeIds.
81634
+ * @summary Bulk Retrieve of Source Subtypes
81635
+ * @param {string} xSailPointExperimental Use this header to enable this experimental API.
81636
+ * @param {Array<string>} requestBody
81637
+ * @param {*} [axiosOptions] Override http request option.
81638
+ * @throws {RequiredError}
81639
+ */
81640
+ loadBulkSourceSubtypes: (xSailPointExperimental: string, requestBody: Array<string>, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
81520
81641
  /**
81521
81642
  * Update fields of a machine account subtype by subtype ID. Patchable fields only include: `displayName`, `description`.
81522
81643
  * @summary Patch subtype by ID
81523
81644
  * @param {string} subtypeId The ID of the subtype.
81524
81645
  * @param {Array<object>} requestBody A JSON of updated values [JSON Patch](https://tools.ietf.org/html/rfc6902) standard.
81646
+ * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
81525
81647
  * @param {*} [axiosOptions] Override http request option.
81526
81648
  * @throws {RequiredError}
81527
81649
  */
81528
- patchMachineAccountSubtype: (subtypeId: string, requestBody: Array<object>, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
81650
+ patchMachineAccountSubtype: (subtypeId: string, requestBody: Array<object>, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
81651
+ /**
81652
+ * 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.
81653
+ * @summary Machine Subtype Approval Config
81654
+ * @param {string} xSailPointExperimental Use this header to enable this experimental API.
81655
+ * @param {string} subtypeId machine account subtype ID.
81656
+ * @param {Array<JsonPatchOperationV2026>} jsonPatchOperationV2026 The JSONPatch payload used to update the object.
81657
+ * @param {*} [axiosOptions] Override http request option.
81658
+ * @throws {RequiredError}
81659
+ */
81660
+ updateMachineAccountSubtypeApprovalConfig: (xSailPointExperimental: string, subtypeId: string, jsonPatchOperationV2026: Array<JsonPatchOperationV2026>, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
81529
81661
  };
81530
81662
  /**
81531
81663
  * MachineAccountSubtypesV2026Api - functional programming interface
81532
81664
  * @export
81533
81665
  */
81534
81666
  export declare const MachineAccountSubtypesV2026ApiFp: (configuration?: Configuration) => {
81667
+ /**
81668
+ * Create a new machine account subtype.
81669
+ * @summary Create subtype
81670
+ * @param {CreateSourceSubtypeRequestV2026} createSourceSubtypeRequestV2026
81671
+ * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
81672
+ * @param {*} [axiosOptions] Override http request option.
81673
+ * @throws {RequiredError}
81674
+ */
81675
+ createSourceSubtype(createSourceSubtypeRequestV2026: CreateSourceSubtypeRequestV2026, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SourceSubtypeWithSourceV2026>>;
81535
81676
  /**
81536
81677
  * 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.
81537
81678
  * @summary Delete subtype by ID
81538
81679
  * @param {string} subtypeId The ID of the subtype.
81680
+ * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
81539
81681
  * @param {*} [axiosOptions] Override http request option.
81540
81682
  * @throws {RequiredError}
81541
81683
  */
81542
- deleteMachineAccountSubtype(subtypeId: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
81684
+ deleteMachineAccountSubtype(subtypeId: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
81685
+ /**
81686
+ * 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.
81687
+ * @summary Machine Subtype Approval Config
81688
+ * @param {string} xSailPointExperimental Use this header to enable this experimental API.
81689
+ * @param {string} subtypeId machine subtype id.
81690
+ * @param {*} [axiosOptions] Override http request option.
81691
+ * @throws {RequiredError}
81692
+ */
81693
+ getMachineAccountSubtypeApprovalConfig(xSailPointExperimental: string, subtypeId: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MachineAccountSubtypeConfigDtoV2026>>;
81543
81694
  /**
81544
81695
  * Get a machine account subtype by subtype ID.
81545
81696
  * @summary Get subtype by ID
81546
81697
  * @param {string} subtypeId The ID of the subtype.
81698
+ * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
81547
81699
  * @param {*} [axiosOptions] Override http request option.
81548
81700
  * @throws {RequiredError}
81549
81701
  */
81550
- getSourceSubtypeById(subtypeId: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SourceSubtypeWithSourceV2026>>;
81702
+ getSourceSubtypeById(subtypeId: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SourceSubtypeWithSourceV2026>>;
81703
+ /**
81704
+ * Get all machine account subtypes.
81705
+ * @summary Retrieve all subtypes
81706
+ * @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*
81707
+ * @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**
81708
+ * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
81709
+ * @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.
81710
+ * @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.
81711
+ * @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.
81712
+ * @param {*} [axiosOptions] Override http request option.
81713
+ * @throws {RequiredError}
81714
+ */
81715
+ listSourceSubtypes(filters?: string, sorters?: string, xSailPointExperimental?: string, count?: boolean, limit?: number, offset?: number, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<SourceSubtypeWithSourceV2026>>>;
81716
+ /**
81717
+ * This endpoint retrieves the subtypes for given subtypeIds.
81718
+ * @summary Bulk Retrieve of Source Subtypes
81719
+ * @param {string} xSailPointExperimental Use this header to enable this experimental API.
81720
+ * @param {Array<string>} requestBody
81721
+ * @param {*} [axiosOptions] Override http request option.
81722
+ * @throws {RequiredError}
81723
+ */
81724
+ loadBulkSourceSubtypes(xSailPointExperimental: string, requestBody: Array<string>, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<SourceSubtypeWithSourceV2026>>>;
81551
81725
  /**
81552
81726
  * Update fields of a machine account subtype by subtype ID. Patchable fields only include: `displayName`, `description`.
81553
81727
  * @summary Patch subtype by ID
81554
81728
  * @param {string} subtypeId The ID of the subtype.
81555
81729
  * @param {Array<object>} requestBody A JSON of updated values [JSON Patch](https://tools.ietf.org/html/rfc6902) standard.
81730
+ * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
81556
81731
  * @param {*} [axiosOptions] Override http request option.
81557
81732
  * @throws {RequiredError}
81558
81733
  */
81559
- patchMachineAccountSubtype(subtypeId: string, requestBody: Array<object>, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SourceSubtypeWithSourceV2026>>;
81734
+ patchMachineAccountSubtype(subtypeId: string, requestBody: Array<object>, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SourceSubtypeWithSourceV2026>>;
81735
+ /**
81736
+ * 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.
81737
+ * @summary Machine Subtype Approval Config
81738
+ * @param {string} xSailPointExperimental Use this header to enable this experimental API.
81739
+ * @param {string} subtypeId machine account subtype ID.
81740
+ * @param {Array<JsonPatchOperationV2026>} jsonPatchOperationV2026 The JSONPatch payload used to update the object.
81741
+ * @param {*} [axiosOptions] Override http request option.
81742
+ * @throws {RequiredError}
81743
+ */
81744
+ updateMachineAccountSubtypeApprovalConfig(xSailPointExperimental: string, subtypeId: string, jsonPatchOperationV2026: Array<JsonPatchOperationV2026>, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MachineAccountSubtypeConfigDtoV2026>>;
81560
81745
  };
81561
81746
  /**
81562
81747
  * MachineAccountSubtypesV2026Api - factory interface
81563
81748
  * @export
81564
81749
  */
81565
81750
  export declare const MachineAccountSubtypesV2026ApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
81751
+ /**
81752
+ * Create a new machine account subtype.
81753
+ * @summary Create subtype
81754
+ * @param {MachineAccountSubtypesV2026ApiCreateSourceSubtypeRequest} requestParameters Request parameters.
81755
+ * @param {*} [axiosOptions] Override http request option.
81756
+ * @throws {RequiredError}
81757
+ */
81758
+ createSourceSubtype(requestParameters: MachineAccountSubtypesV2026ApiCreateSourceSubtypeRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<SourceSubtypeWithSourceV2026>;
81566
81759
  /**
81567
81760
  * 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.
81568
81761
  * @summary Delete subtype by ID
@@ -81571,6 +81764,14 @@ export declare const MachineAccountSubtypesV2026ApiFactory: (configuration?: Con
81571
81764
  * @throws {RequiredError}
81572
81765
  */
81573
81766
  deleteMachineAccountSubtype(requestParameters: MachineAccountSubtypesV2026ApiDeleteMachineAccountSubtypeRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<void>;
81767
+ /**
81768
+ * 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.
81769
+ * @summary Machine Subtype Approval Config
81770
+ * @param {MachineAccountSubtypesV2026ApiGetMachineAccountSubtypeApprovalConfigRequest} requestParameters Request parameters.
81771
+ * @param {*} [axiosOptions] Override http request option.
81772
+ * @throws {RequiredError}
81773
+ */
81774
+ getMachineAccountSubtypeApprovalConfig(requestParameters: MachineAccountSubtypesV2026ApiGetMachineAccountSubtypeApprovalConfigRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<MachineAccountSubtypeConfigDtoV2026>;
81574
81775
  /**
81575
81776
  * Get a machine account subtype by subtype ID.
81576
81777
  * @summary Get subtype by ID
@@ -81579,6 +81780,22 @@ export declare const MachineAccountSubtypesV2026ApiFactory: (configuration?: Con
81579
81780
  * @throws {RequiredError}
81580
81781
  */
81581
81782
  getSourceSubtypeById(requestParameters: MachineAccountSubtypesV2026ApiGetSourceSubtypeByIdRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<SourceSubtypeWithSourceV2026>;
81783
+ /**
81784
+ * Get all machine account subtypes.
81785
+ * @summary Retrieve all subtypes
81786
+ * @param {MachineAccountSubtypesV2026ApiListSourceSubtypesRequest} requestParameters Request parameters.
81787
+ * @param {*} [axiosOptions] Override http request option.
81788
+ * @throws {RequiredError}
81789
+ */
81790
+ listSourceSubtypes(requestParameters?: MachineAccountSubtypesV2026ApiListSourceSubtypesRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<SourceSubtypeWithSourceV2026>>;
81791
+ /**
81792
+ * This endpoint retrieves the subtypes for given subtypeIds.
81793
+ * @summary Bulk Retrieve of Source Subtypes
81794
+ * @param {MachineAccountSubtypesV2026ApiLoadBulkSourceSubtypesRequest} requestParameters Request parameters.
81795
+ * @param {*} [axiosOptions] Override http request option.
81796
+ * @throws {RequiredError}
81797
+ */
81798
+ loadBulkSourceSubtypes(requestParameters: MachineAccountSubtypesV2026ApiLoadBulkSourceSubtypesRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<SourceSubtypeWithSourceV2026>>;
81582
81799
  /**
81583
81800
  * Update fields of a machine account subtype by subtype ID. Patchable fields only include: `displayName`, `description`.
81584
81801
  * @summary Patch subtype by ID
@@ -81587,7 +81804,34 @@ export declare const MachineAccountSubtypesV2026ApiFactory: (configuration?: Con
81587
81804
  * @throws {RequiredError}
81588
81805
  */
81589
81806
  patchMachineAccountSubtype(requestParameters: MachineAccountSubtypesV2026ApiPatchMachineAccountSubtypeRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<SourceSubtypeWithSourceV2026>;
81807
+ /**
81808
+ * 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.
81809
+ * @summary Machine Subtype Approval Config
81810
+ * @param {MachineAccountSubtypesV2026ApiUpdateMachineAccountSubtypeApprovalConfigRequest} requestParameters Request parameters.
81811
+ * @param {*} [axiosOptions] Override http request option.
81812
+ * @throws {RequiredError}
81813
+ */
81814
+ updateMachineAccountSubtypeApprovalConfig(requestParameters: MachineAccountSubtypesV2026ApiUpdateMachineAccountSubtypeApprovalConfigRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<MachineAccountSubtypeConfigDtoV2026>;
81590
81815
  };
81816
+ /**
81817
+ * Request parameters for createSourceSubtype operation in MachineAccountSubtypesV2026Api.
81818
+ * @export
81819
+ * @interface MachineAccountSubtypesV2026ApiCreateSourceSubtypeRequest
81820
+ */
81821
+ export interface MachineAccountSubtypesV2026ApiCreateSourceSubtypeRequest {
81822
+ /**
81823
+ *
81824
+ * @type {CreateSourceSubtypeRequestV2026}
81825
+ * @memberof MachineAccountSubtypesV2026ApiCreateSourceSubtype
81826
+ */
81827
+ readonly createSourceSubtypeRequestV2026: CreateSourceSubtypeRequestV2026;
81828
+ /**
81829
+ * Use this header to enable this experimental API.
81830
+ * @type {string}
81831
+ * @memberof MachineAccountSubtypesV2026ApiCreateSourceSubtype
81832
+ */
81833
+ readonly xSailPointExperimental?: string;
81834
+ }
81591
81835
  /**
81592
81836
  * Request parameters for deleteMachineAccountSubtype operation in MachineAccountSubtypesV2026Api.
81593
81837
  * @export
@@ -81600,6 +81844,31 @@ export interface MachineAccountSubtypesV2026ApiDeleteMachineAccountSubtypeReques
81600
81844
  * @memberof MachineAccountSubtypesV2026ApiDeleteMachineAccountSubtype
81601
81845
  */
81602
81846
  readonly subtypeId: string;
81847
+ /**
81848
+ * Use this header to enable this experimental API.
81849
+ * @type {string}
81850
+ * @memberof MachineAccountSubtypesV2026ApiDeleteMachineAccountSubtype
81851
+ */
81852
+ readonly xSailPointExperimental?: string;
81853
+ }
81854
+ /**
81855
+ * Request parameters for getMachineAccountSubtypeApprovalConfig operation in MachineAccountSubtypesV2026Api.
81856
+ * @export
81857
+ * @interface MachineAccountSubtypesV2026ApiGetMachineAccountSubtypeApprovalConfigRequest
81858
+ */
81859
+ export interface MachineAccountSubtypesV2026ApiGetMachineAccountSubtypeApprovalConfigRequest {
81860
+ /**
81861
+ * Use this header to enable this experimental API.
81862
+ * @type {string}
81863
+ * @memberof MachineAccountSubtypesV2026ApiGetMachineAccountSubtypeApprovalConfig
81864
+ */
81865
+ readonly xSailPointExperimental: string;
81866
+ /**
81867
+ * machine subtype id.
81868
+ * @type {string}
81869
+ * @memberof MachineAccountSubtypesV2026ApiGetMachineAccountSubtypeApprovalConfig
81870
+ */
81871
+ readonly subtypeId: string;
81603
81872
  }
81604
81873
  /**
81605
81874
  * Request parameters for getSourceSubtypeById operation in MachineAccountSubtypesV2026Api.
@@ -81613,6 +81882,74 @@ export interface MachineAccountSubtypesV2026ApiGetSourceSubtypeByIdRequest {
81613
81882
  * @memberof MachineAccountSubtypesV2026ApiGetSourceSubtypeById
81614
81883
  */
81615
81884
  readonly subtypeId: string;
81885
+ /**
81886
+ * Use this header to enable this experimental API.
81887
+ * @type {string}
81888
+ * @memberof MachineAccountSubtypesV2026ApiGetSourceSubtypeById
81889
+ */
81890
+ readonly xSailPointExperimental?: string;
81891
+ }
81892
+ /**
81893
+ * Request parameters for listSourceSubtypes operation in MachineAccountSubtypesV2026Api.
81894
+ * @export
81895
+ * @interface MachineAccountSubtypesV2026ApiListSourceSubtypesRequest
81896
+ */
81897
+ export interface MachineAccountSubtypesV2026ApiListSourceSubtypesRequest {
81898
+ /**
81899
+ * 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*
81900
+ * @type {string}
81901
+ * @memberof MachineAccountSubtypesV2026ApiListSourceSubtypes
81902
+ */
81903
+ readonly filters?: string;
81904
+ /**
81905
+ * 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**
81906
+ * @type {string}
81907
+ * @memberof MachineAccountSubtypesV2026ApiListSourceSubtypes
81908
+ */
81909
+ readonly sorters?: string;
81910
+ /**
81911
+ * Use this header to enable this experimental API.
81912
+ * @type {string}
81913
+ * @memberof MachineAccountSubtypesV2026ApiListSourceSubtypes
81914
+ */
81915
+ readonly xSailPointExperimental?: string;
81916
+ /**
81917
+ * 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.
81918
+ * @type {boolean}
81919
+ * @memberof MachineAccountSubtypesV2026ApiListSourceSubtypes
81920
+ */
81921
+ readonly count?: boolean;
81922
+ /**
81923
+ * Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
81924
+ * @type {number}
81925
+ * @memberof MachineAccountSubtypesV2026ApiListSourceSubtypes
81926
+ */
81927
+ readonly limit?: number;
81928
+ /**
81929
+ * 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.
81930
+ * @type {number}
81931
+ * @memberof MachineAccountSubtypesV2026ApiListSourceSubtypes
81932
+ */
81933
+ readonly offset?: number;
81934
+ }
81935
+ /**
81936
+ * Request parameters for loadBulkSourceSubtypes operation in MachineAccountSubtypesV2026Api.
81937
+ * @export
81938
+ * @interface MachineAccountSubtypesV2026ApiLoadBulkSourceSubtypesRequest
81939
+ */
81940
+ export interface MachineAccountSubtypesV2026ApiLoadBulkSourceSubtypesRequest {
81941
+ /**
81942
+ * Use this header to enable this experimental API.
81943
+ * @type {string}
81944
+ * @memberof MachineAccountSubtypesV2026ApiLoadBulkSourceSubtypes
81945
+ */
81946
+ readonly xSailPointExperimental: string;
81947
+ /**
81948
+ *
81949
+ * @type {Array<string>}
81950
+ * @memberof MachineAccountSubtypesV2026ApiLoadBulkSourceSubtypes
81951
+ */
81952
+ readonly requestBody: Array<string>;
81616
81953
  }
81617
81954
  /**
81618
81955
  * Request parameters for patchMachineAccountSubtype operation in MachineAccountSubtypesV2026Api.
@@ -81632,6 +81969,37 @@ export interface MachineAccountSubtypesV2026ApiPatchMachineAccountSubtypeRequest
81632
81969
  * @memberof MachineAccountSubtypesV2026ApiPatchMachineAccountSubtype
81633
81970
  */
81634
81971
  readonly requestBody: Array<object>;
81972
+ /**
81973
+ * Use this header to enable this experimental API.
81974
+ * @type {string}
81975
+ * @memberof MachineAccountSubtypesV2026ApiPatchMachineAccountSubtype
81976
+ */
81977
+ readonly xSailPointExperimental?: string;
81978
+ }
81979
+ /**
81980
+ * Request parameters for updateMachineAccountSubtypeApprovalConfig operation in MachineAccountSubtypesV2026Api.
81981
+ * @export
81982
+ * @interface MachineAccountSubtypesV2026ApiUpdateMachineAccountSubtypeApprovalConfigRequest
81983
+ */
81984
+ export interface MachineAccountSubtypesV2026ApiUpdateMachineAccountSubtypeApprovalConfigRequest {
81985
+ /**
81986
+ * Use this header to enable this experimental API.
81987
+ * @type {string}
81988
+ * @memberof MachineAccountSubtypesV2026ApiUpdateMachineAccountSubtypeApprovalConfig
81989
+ */
81990
+ readonly xSailPointExperimental: string;
81991
+ /**
81992
+ * machine account subtype ID.
81993
+ * @type {string}
81994
+ * @memberof MachineAccountSubtypesV2026ApiUpdateMachineAccountSubtypeApprovalConfig
81995
+ */
81996
+ readonly subtypeId: string;
81997
+ /**
81998
+ * The JSONPatch payload used to update the object.
81999
+ * @type {Array<JsonPatchOperationV2026>}
82000
+ * @memberof MachineAccountSubtypesV2026ApiUpdateMachineAccountSubtypeApprovalConfig
82001
+ */
82002
+ readonly jsonPatchOperationV2026: Array<JsonPatchOperationV2026>;
81635
82003
  }
81636
82004
  /**
81637
82005
  * MachineAccountSubtypesV2026Api - object-oriented interface
@@ -81640,6 +82008,15 @@ export interface MachineAccountSubtypesV2026ApiPatchMachineAccountSubtypeRequest
81640
82008
  * @extends {BaseAPI}
81641
82009
  */
81642
82010
  export declare class MachineAccountSubtypesV2026Api extends BaseAPI {
82011
+ /**
82012
+ * Create a new machine account subtype.
82013
+ * @summary Create subtype
82014
+ * @param {MachineAccountSubtypesV2026ApiCreateSourceSubtypeRequest} requestParameters Request parameters.
82015
+ * @param {*} [axiosOptions] Override http request option.
82016
+ * @throws {RequiredError}
82017
+ * @memberof MachineAccountSubtypesV2026Api
82018
+ */
82019
+ createSourceSubtype(requestParameters: MachineAccountSubtypesV2026ApiCreateSourceSubtypeRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SourceSubtypeWithSourceV2026, any>>;
81643
82020
  /**
81644
82021
  * 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.
81645
82022
  * @summary Delete subtype by ID
@@ -81649,6 +82026,15 @@ export declare class MachineAccountSubtypesV2026Api extends BaseAPI {
81649
82026
  * @memberof MachineAccountSubtypesV2026Api
81650
82027
  */
81651
82028
  deleteMachineAccountSubtype(requestParameters: MachineAccountSubtypesV2026ApiDeleteMachineAccountSubtypeRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
82029
+ /**
82030
+ * 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.
82031
+ * @summary Machine Subtype Approval Config
82032
+ * @param {MachineAccountSubtypesV2026ApiGetMachineAccountSubtypeApprovalConfigRequest} requestParameters Request parameters.
82033
+ * @param {*} [axiosOptions] Override http request option.
82034
+ * @throws {RequiredError}
82035
+ * @memberof MachineAccountSubtypesV2026Api
82036
+ */
82037
+ getMachineAccountSubtypeApprovalConfig(requestParameters: MachineAccountSubtypesV2026ApiGetMachineAccountSubtypeApprovalConfigRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<MachineAccountSubtypeConfigDtoV2026, any>>;
81652
82038
  /**
81653
82039
  * Get a machine account subtype by subtype ID.
81654
82040
  * @summary Get subtype by ID
@@ -81658,6 +82044,24 @@ export declare class MachineAccountSubtypesV2026Api extends BaseAPI {
81658
82044
  * @memberof MachineAccountSubtypesV2026Api
81659
82045
  */
81660
82046
  getSourceSubtypeById(requestParameters: MachineAccountSubtypesV2026ApiGetSourceSubtypeByIdRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SourceSubtypeWithSourceV2026, any>>;
82047
+ /**
82048
+ * Get all machine account subtypes.
82049
+ * @summary Retrieve all subtypes
82050
+ * @param {MachineAccountSubtypesV2026ApiListSourceSubtypesRequest} requestParameters Request parameters.
82051
+ * @param {*} [axiosOptions] Override http request option.
82052
+ * @throws {RequiredError}
82053
+ * @memberof MachineAccountSubtypesV2026Api
82054
+ */
82055
+ listSourceSubtypes(requestParameters?: MachineAccountSubtypesV2026ApiListSourceSubtypesRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SourceSubtypeWithSourceV2026[], any>>;
82056
+ /**
82057
+ * This endpoint retrieves the subtypes for given subtypeIds.
82058
+ * @summary Bulk Retrieve of Source Subtypes
82059
+ * @param {MachineAccountSubtypesV2026ApiLoadBulkSourceSubtypesRequest} requestParameters Request parameters.
82060
+ * @param {*} [axiosOptions] Override http request option.
82061
+ * @throws {RequiredError}
82062
+ * @memberof MachineAccountSubtypesV2026Api
82063
+ */
82064
+ loadBulkSourceSubtypes(requestParameters: MachineAccountSubtypesV2026ApiLoadBulkSourceSubtypesRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SourceSubtypeWithSourceV2026[], any>>;
81661
82065
  /**
81662
82066
  * Update fields of a machine account subtype by subtype ID. Patchable fields only include: `displayName`, `description`.
81663
82067
  * @summary Patch subtype by ID
@@ -81667,6 +82071,15 @@ export declare class MachineAccountSubtypesV2026Api extends BaseAPI {
81667
82071
  * @memberof MachineAccountSubtypesV2026Api
81668
82072
  */
81669
82073
  patchMachineAccountSubtype(requestParameters: MachineAccountSubtypesV2026ApiPatchMachineAccountSubtypeRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SourceSubtypeWithSourceV2026, any>>;
82074
+ /**
82075
+ * 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.
82076
+ * @summary Machine Subtype Approval Config
82077
+ * @param {MachineAccountSubtypesV2026ApiUpdateMachineAccountSubtypeApprovalConfigRequest} requestParameters Request parameters.
82078
+ * @param {*} [axiosOptions] Override http request option.
82079
+ * @throws {RequiredError}
82080
+ * @memberof MachineAccountSubtypesV2026Api
82081
+ */
82082
+ updateMachineAccountSubtypeApprovalConfig(requestParameters: MachineAccountSubtypesV2026ApiUpdateMachineAccountSubtypeApprovalConfigRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<MachineAccountSubtypeConfigDtoV2026, any>>;
81670
82083
  }
81671
82084
  /**
81672
82085
  * MachineAccountsV2026Api - axios parameter creator
@@ -81680,6 +82093,7 @@ export declare const MachineAccountsV2026ApiAxiosParamCreator: (configuration?:
81680
82093
  * @param {CreateMachineAccountSubtypeRequestV2026} createMachineAccountSubtypeRequestV2026
81681
82094
  * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
81682
82095
  * @param {*} [axiosOptions] Override http request option.
82096
+ * @deprecated
81683
82097
  * @throws {RequiredError}
81684
82098
  */
81685
82099
  createMachineAccountSubtype: (sourceId: string, createMachineAccountSubtypeRequestV2026: CreateMachineAccountSubtypeRequestV2026, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
@@ -81690,6 +82104,7 @@ export declare const MachineAccountsV2026ApiAxiosParamCreator: (configuration?:
81690
82104
  * @param {string} technicalName The technical name of the subtype.
81691
82105
  * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
81692
82106
  * @param {*} [axiosOptions] Override http request option.
82107
+ * @deprecated
81693
82108
  * @throws {RequiredError}
81694
82109
  */
81695
82110
  deleteMachineAccountSubtypeByTechnicalName: (sourceId: string, technicalName: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
@@ -81702,21 +82117,13 @@ export declare const MachineAccountsV2026ApiAxiosParamCreator: (configuration?:
81702
82117
  * @throws {RequiredError}
81703
82118
  */
81704
82119
  getMachineAccount: (id: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
81705
- /**
81706
- * 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.
81707
- * @summary Machine Subtype Approval Config
81708
- * @param {string} xSailPointExperimental Use this header to enable this experimental API.
81709
- * @param {string} subtypeId machine subtype id.
81710
- * @param {*} [axiosOptions] Override http request option.
81711
- * @throws {RequiredError}
81712
- */
81713
- getMachineAccountSubtypeApprovalConfig: (xSailPointExperimental: string, subtypeId: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
81714
82120
  /**
81715
82121
  * Get a machine account subtype by its unique ID.
81716
82122
  * @summary Retrieve subtype by subtype id
81717
82123
  * @param {string} subtypeId The ID of the machine account subtype.
81718
82124
  * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
81719
82125
  * @param {*} [axiosOptions] Override http request option.
82126
+ * @deprecated
81720
82127
  * @throws {RequiredError}
81721
82128
  */
81722
82129
  getMachineAccountSubtypeById: (subtypeId: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
@@ -81727,6 +82134,7 @@ export declare const MachineAccountsV2026ApiAxiosParamCreator: (configuration?:
81727
82134
  * @param {string} technicalName The technical name of the subtype.
81728
82135
  * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
81729
82136
  * @param {*} [axiosOptions] Override http request option.
82137
+ * @deprecated
81730
82138
  * @throws {RequiredError}
81731
82139
  */
81732
82140
  getMachineAccountSubtypeByTechnicalName: (sourceId: string, technicalName: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
@@ -81741,6 +82149,7 @@ export declare const MachineAccountsV2026ApiAxiosParamCreator: (configuration?:
81741
82149
  * @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.
81742
82150
  * @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.
81743
82151
  * @param {*} [axiosOptions] Override http request option.
82152
+ * @deprecated
81744
82153
  * @throws {RequiredError}
81745
82154
  */
81746
82155
  listMachineAccountSubtypes: (sourceId: string, filters?: string, sorters?: string, xSailPointExperimental?: string, count?: boolean, limit?: number, offset?: number, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
@@ -81757,15 +82166,6 @@ export declare const MachineAccountsV2026ApiAxiosParamCreator: (configuration?:
81757
82166
  * @throws {RequiredError}
81758
82167
  */
81759
82168
  listMachineAccounts: (limit?: number, offset?: number, count?: boolean, filters?: string, sorters?: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
81760
- /**
81761
- * This endpoint retrieves the subtypes for given subtypeIds.
81762
- * @summary Bulk Retrieve of Source Subtypes
81763
- * @param {string} xSailPointExperimental Use this header to enable this experimental API.
81764
- * @param {Array<string>} requestBody
81765
- * @param {*} [axiosOptions] Override http request option.
81766
- * @throws {RequiredError}
81767
- */
81768
- loadBulkSourceSubtypes: (xSailPointExperimental: string, requestBody: Array<string>, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
81769
82169
  /**
81770
82170
  * Update fields of a machine account subtype by source ID and technical name. Patchable fields include: `displayName`, `description`.
81771
82171
  * @summary Patch subtype
@@ -81774,6 +82174,7 @@ export declare const MachineAccountsV2026ApiAxiosParamCreator: (configuration?:
81774
82174
  * @param {Array<object>} requestBody A JSON of updated values [JSON Patch](https://tools.ietf.org/html/rfc6902) standard.
81775
82175
  * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
81776
82176
  * @param {*} [axiosOptions] Override http request option.
82177
+ * @deprecated
81777
82178
  * @throws {RequiredError}
81778
82179
  */
81779
82180
  patchMachineAccountSubtypeByTechnicalName: (sourceId: string, technicalName: string, requestBody: Array<object>, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
@@ -81787,16 +82188,6 @@ export declare const MachineAccountsV2026ApiAxiosParamCreator: (configuration?:
81787
82188
  * @throws {RequiredError}
81788
82189
  */
81789
82190
  updateMachineAccount: (id: string, requestBody: Array<object>, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
81790
- /**
81791
- * 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.
81792
- * @summary Machine Subtype Approval Config
81793
- * @param {string} xSailPointExperimental Use this header to enable this experimental API.
81794
- * @param {string} subtypeId machine account subtype ID.
81795
- * @param {Array<JsonPatchOperationV2026>} jsonPatchOperationV2026 The JSONPatch payload used to update the object.
81796
- * @param {*} [axiosOptions] Override http request option.
81797
- * @throws {RequiredError}
81798
- */
81799
- updateMachineAccountSubtypeApprovalConfig: (xSailPointExperimental: string, subtypeId: string, jsonPatchOperationV2026: Array<JsonPatchOperationV2026>, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
81800
82191
  };
81801
82192
  /**
81802
82193
  * MachineAccountsV2026Api - functional programming interface
@@ -81810,6 +82201,7 @@ export declare const MachineAccountsV2026ApiFp: (configuration?: Configuration)
81810
82201
  * @param {CreateMachineAccountSubtypeRequestV2026} createMachineAccountSubtypeRequestV2026
81811
82202
  * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
81812
82203
  * @param {*} [axiosOptions] Override http request option.
82204
+ * @deprecated
81813
82205
  * @throws {RequiredError}
81814
82206
  */
81815
82207
  createMachineAccountSubtype(sourceId: string, createMachineAccountSubtypeRequestV2026: CreateMachineAccountSubtypeRequestV2026, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SourceSubtypeV2026>>;
@@ -81820,6 +82212,7 @@ export declare const MachineAccountsV2026ApiFp: (configuration?: Configuration)
81820
82212
  * @param {string} technicalName The technical name of the subtype.
81821
82213
  * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
81822
82214
  * @param {*} [axiosOptions] Override http request option.
82215
+ * @deprecated
81823
82216
  * @throws {RequiredError}
81824
82217
  */
81825
82218
  deleteMachineAccountSubtypeByTechnicalName(sourceId: string, technicalName: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
@@ -81832,21 +82225,13 @@ export declare const MachineAccountsV2026ApiFp: (configuration?: Configuration)
81832
82225
  * @throws {RequiredError}
81833
82226
  */
81834
82227
  getMachineAccount(id: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MachineAccountV2026>>;
81835
- /**
81836
- * 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.
81837
- * @summary Machine Subtype Approval Config
81838
- * @param {string} xSailPointExperimental Use this header to enable this experimental API.
81839
- * @param {string} subtypeId machine subtype id.
81840
- * @param {*} [axiosOptions] Override http request option.
81841
- * @throws {RequiredError}
81842
- */
81843
- getMachineAccountSubtypeApprovalConfig(xSailPointExperimental: string, subtypeId: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MachineAccountSubtypeConfigDtoV2026>>;
81844
82228
  /**
81845
82229
  * Get a machine account subtype by its unique ID.
81846
82230
  * @summary Retrieve subtype by subtype id
81847
82231
  * @param {string} subtypeId The ID of the machine account subtype.
81848
82232
  * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
81849
82233
  * @param {*} [axiosOptions] Override http request option.
82234
+ * @deprecated
81850
82235
  * @throws {RequiredError}
81851
82236
  */
81852
82237
  getMachineAccountSubtypeById(subtypeId: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SourceSubtypeV2026>>;
@@ -81857,6 +82242,7 @@ export declare const MachineAccountsV2026ApiFp: (configuration?: Configuration)
81857
82242
  * @param {string} technicalName The technical name of the subtype.
81858
82243
  * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
81859
82244
  * @param {*} [axiosOptions] Override http request option.
82245
+ * @deprecated
81860
82246
  * @throws {RequiredError}
81861
82247
  */
81862
82248
  getMachineAccountSubtypeByTechnicalName(sourceId: string, technicalName: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SourceSubtypeV2026>>;
@@ -81871,6 +82257,7 @@ export declare const MachineAccountsV2026ApiFp: (configuration?: Configuration)
81871
82257
  * @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.
81872
82258
  * @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.
81873
82259
  * @param {*} [axiosOptions] Override http request option.
82260
+ * @deprecated
81874
82261
  * @throws {RequiredError}
81875
82262
  */
81876
82263
  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>>>;
@@ -81887,15 +82274,6 @@ export declare const MachineAccountsV2026ApiFp: (configuration?: Configuration)
81887
82274
  * @throws {RequiredError}
81888
82275
  */
81889
82276
  listMachineAccounts(limit?: number, offset?: number, count?: boolean, filters?: string, sorters?: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<MachineAccountV2026>>>;
81890
- /**
81891
- * This endpoint retrieves the subtypes for given subtypeIds.
81892
- * @summary Bulk Retrieve of Source Subtypes
81893
- * @param {string} xSailPointExperimental Use this header to enable this experimental API.
81894
- * @param {Array<string>} requestBody
81895
- * @param {*} [axiosOptions] Override http request option.
81896
- * @throws {RequiredError}
81897
- */
81898
- loadBulkSourceSubtypes(xSailPointExperimental: string, requestBody: Array<string>, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<SourceSubtypeWithSourceV2026>>>;
81899
82277
  /**
81900
82278
  * Update fields of a machine account subtype by source ID and technical name. Patchable fields include: `displayName`, `description`.
81901
82279
  * @summary Patch subtype
@@ -81904,6 +82282,7 @@ export declare const MachineAccountsV2026ApiFp: (configuration?: Configuration)
81904
82282
  * @param {Array<object>} requestBody A JSON of updated values [JSON Patch](https://tools.ietf.org/html/rfc6902) standard.
81905
82283
  * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
81906
82284
  * @param {*} [axiosOptions] Override http request option.
82285
+ * @deprecated
81907
82286
  * @throws {RequiredError}
81908
82287
  */
81909
82288
  patchMachineAccountSubtypeByTechnicalName(sourceId: string, technicalName: string, requestBody: Array<object>, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SourceSubtypeV2026>>;
@@ -81917,16 +82296,6 @@ export declare const MachineAccountsV2026ApiFp: (configuration?: Configuration)
81917
82296
  * @throws {RequiredError}
81918
82297
  */
81919
82298
  updateMachineAccount(id: string, requestBody: Array<object>, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MachineAccountV2026>>;
81920
- /**
81921
- * 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.
81922
- * @summary Machine Subtype Approval Config
81923
- * @param {string} xSailPointExperimental Use this header to enable this experimental API.
81924
- * @param {string} subtypeId machine account subtype ID.
81925
- * @param {Array<JsonPatchOperationV2026>} jsonPatchOperationV2026 The JSONPatch payload used to update the object.
81926
- * @param {*} [axiosOptions] Override http request option.
81927
- * @throws {RequiredError}
81928
- */
81929
- updateMachineAccountSubtypeApprovalConfig(xSailPointExperimental: string, subtypeId: string, jsonPatchOperationV2026: Array<JsonPatchOperationV2026>, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MachineAccountSubtypeConfigDtoV2026>>;
81930
82299
  };
81931
82300
  /**
81932
82301
  * MachineAccountsV2026Api - factory interface
@@ -81938,6 +82307,7 @@ export declare const MachineAccountsV2026ApiFactory: (configuration?: Configurat
81938
82307
  * @summary Create subtype
81939
82308
  * @param {MachineAccountsV2026ApiCreateMachineAccountSubtypeRequest} requestParameters Request parameters.
81940
82309
  * @param {*} [axiosOptions] Override http request option.
82310
+ * @deprecated
81941
82311
  * @throws {RequiredError}
81942
82312
  */
81943
82313
  createMachineAccountSubtype(requestParameters: MachineAccountsV2026ApiCreateMachineAccountSubtypeRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<SourceSubtypeV2026>;
@@ -81946,6 +82316,7 @@ export declare const MachineAccountsV2026ApiFactory: (configuration?: Configurat
81946
82316
  * @summary Delete subtype
81947
82317
  * @param {MachineAccountsV2026ApiDeleteMachineAccountSubtypeByTechnicalNameRequest} requestParameters Request parameters.
81948
82318
  * @param {*} [axiosOptions] Override http request option.
82319
+ * @deprecated
81949
82320
  * @throws {RequiredError}
81950
82321
  */
81951
82322
  deleteMachineAccountSubtypeByTechnicalName(requestParameters: MachineAccountsV2026ApiDeleteMachineAccountSubtypeByTechnicalNameRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<void>;
@@ -81957,19 +82328,12 @@ export declare const MachineAccountsV2026ApiFactory: (configuration?: Configurat
81957
82328
  * @throws {RequiredError}
81958
82329
  */
81959
82330
  getMachineAccount(requestParameters: MachineAccountsV2026ApiGetMachineAccountRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<MachineAccountV2026>;
81960
- /**
81961
- * 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.
81962
- * @summary Machine Subtype Approval Config
81963
- * @param {MachineAccountsV2026ApiGetMachineAccountSubtypeApprovalConfigRequest} requestParameters Request parameters.
81964
- * @param {*} [axiosOptions] Override http request option.
81965
- * @throws {RequiredError}
81966
- */
81967
- getMachineAccountSubtypeApprovalConfig(requestParameters: MachineAccountsV2026ApiGetMachineAccountSubtypeApprovalConfigRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<MachineAccountSubtypeConfigDtoV2026>;
81968
82331
  /**
81969
82332
  * Get a machine account subtype by its unique ID.
81970
82333
  * @summary Retrieve subtype by subtype id
81971
82334
  * @param {MachineAccountsV2026ApiGetMachineAccountSubtypeByIdRequest} requestParameters Request parameters.
81972
82335
  * @param {*} [axiosOptions] Override http request option.
82336
+ * @deprecated
81973
82337
  * @throws {RequiredError}
81974
82338
  */
81975
82339
  getMachineAccountSubtypeById(requestParameters: MachineAccountsV2026ApiGetMachineAccountSubtypeByIdRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<SourceSubtypeV2026>;
@@ -81978,6 +82342,7 @@ export declare const MachineAccountsV2026ApiFactory: (configuration?: Configurat
81978
82342
  * @summary Retrieve subtype by source and technicalName
81979
82343
  * @param {MachineAccountsV2026ApiGetMachineAccountSubtypeByTechnicalNameRequest} requestParameters Request parameters.
81980
82344
  * @param {*} [axiosOptions] Override http request option.
82345
+ * @deprecated
81981
82346
  * @throws {RequiredError}
81982
82347
  */
81983
82348
  getMachineAccountSubtypeByTechnicalName(requestParameters: MachineAccountsV2026ApiGetMachineAccountSubtypeByTechnicalNameRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<SourceSubtypeV2026>;
@@ -81986,6 +82351,7 @@ export declare const MachineAccountsV2026ApiFactory: (configuration?: Configurat
81986
82351
  * @summary Retrieve all subtypes by source
81987
82352
  * @param {MachineAccountsV2026ApiListMachineAccountSubtypesRequest} requestParameters Request parameters.
81988
82353
  * @param {*} [axiosOptions] Override http request option.
82354
+ * @deprecated
81989
82355
  * @throws {RequiredError}
81990
82356
  */
81991
82357
  listMachineAccountSubtypes(requestParameters: MachineAccountsV2026ApiListMachineAccountSubtypesRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<SourceSubtypeV2026>>;
@@ -81997,19 +82363,12 @@ export declare const MachineAccountsV2026ApiFactory: (configuration?: Configurat
81997
82363
  * @throws {RequiredError}
81998
82364
  */
81999
82365
  listMachineAccounts(requestParameters?: MachineAccountsV2026ApiListMachineAccountsRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<MachineAccountV2026>>;
82000
- /**
82001
- * This endpoint retrieves the subtypes for given subtypeIds.
82002
- * @summary Bulk Retrieve of Source Subtypes
82003
- * @param {MachineAccountsV2026ApiLoadBulkSourceSubtypesRequest} requestParameters Request parameters.
82004
- * @param {*} [axiosOptions] Override http request option.
82005
- * @throws {RequiredError}
82006
- */
82007
- loadBulkSourceSubtypes(requestParameters: MachineAccountsV2026ApiLoadBulkSourceSubtypesRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<SourceSubtypeWithSourceV2026>>;
82008
82366
  /**
82009
82367
  * Update fields of a machine account subtype by source ID and technical name. Patchable fields include: `displayName`, `description`.
82010
82368
  * @summary Patch subtype
82011
82369
  * @param {MachineAccountsV2026ApiPatchMachineAccountSubtypeByTechnicalNameRequest} requestParameters Request parameters.
82012
82370
  * @param {*} [axiosOptions] Override http request option.
82371
+ * @deprecated
82013
82372
  * @throws {RequiredError}
82014
82373
  */
82015
82374
  patchMachineAccountSubtypeByTechnicalName(requestParameters: MachineAccountsV2026ApiPatchMachineAccountSubtypeByTechnicalNameRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<SourceSubtypeV2026>;
@@ -82021,14 +82380,6 @@ export declare const MachineAccountsV2026ApiFactory: (configuration?: Configurat
82021
82380
  * @throws {RequiredError}
82022
82381
  */
82023
82382
  updateMachineAccount(requestParameters: MachineAccountsV2026ApiUpdateMachineAccountRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<MachineAccountV2026>;
82024
- /**
82025
- * 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.
82026
- * @summary Machine Subtype Approval Config
82027
- * @param {MachineAccountsV2026ApiUpdateMachineAccountSubtypeApprovalConfigRequest} requestParameters Request parameters.
82028
- * @param {*} [axiosOptions] Override http request option.
82029
- * @throws {RequiredError}
82030
- */
82031
- updateMachineAccountSubtypeApprovalConfig(requestParameters: MachineAccountsV2026ApiUpdateMachineAccountSubtypeApprovalConfigRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<MachineAccountSubtypeConfigDtoV2026>;
82032
82383
  };
82033
82384
  /**
82034
82385
  * Request parameters for createMachineAccountSubtype operation in MachineAccountsV2026Api.
@@ -82099,25 +82450,6 @@ export interface MachineAccountsV2026ApiGetMachineAccountRequest {
82099
82450
  */
82100
82451
  readonly xSailPointExperimental?: string;
82101
82452
  }
82102
- /**
82103
- * Request parameters for getMachineAccountSubtypeApprovalConfig operation in MachineAccountsV2026Api.
82104
- * @export
82105
- * @interface MachineAccountsV2026ApiGetMachineAccountSubtypeApprovalConfigRequest
82106
- */
82107
- export interface MachineAccountsV2026ApiGetMachineAccountSubtypeApprovalConfigRequest {
82108
- /**
82109
- * Use this header to enable this experimental API.
82110
- * @type {string}
82111
- * @memberof MachineAccountsV2026ApiGetMachineAccountSubtypeApprovalConfig
82112
- */
82113
- readonly xSailPointExperimental: string;
82114
- /**
82115
- * machine subtype id.
82116
- * @type {string}
82117
- * @memberof MachineAccountsV2026ApiGetMachineAccountSubtypeApprovalConfig
82118
- */
82119
- readonly subtypeId: string;
82120
- }
82121
82453
  /**
82122
82454
  * Request parameters for getMachineAccountSubtypeById operation in MachineAccountsV2026Api.
82123
82455
  * @export
@@ -82254,25 +82586,6 @@ export interface MachineAccountsV2026ApiListMachineAccountsRequest {
82254
82586
  */
82255
82587
  readonly xSailPointExperimental?: string;
82256
82588
  }
82257
- /**
82258
- * Request parameters for loadBulkSourceSubtypes operation in MachineAccountsV2026Api.
82259
- * @export
82260
- * @interface MachineAccountsV2026ApiLoadBulkSourceSubtypesRequest
82261
- */
82262
- export interface MachineAccountsV2026ApiLoadBulkSourceSubtypesRequest {
82263
- /**
82264
- * Use this header to enable this experimental API.
82265
- * @type {string}
82266
- * @memberof MachineAccountsV2026ApiLoadBulkSourceSubtypes
82267
- */
82268
- readonly xSailPointExperimental: string;
82269
- /**
82270
- *
82271
- * @type {Array<string>}
82272
- * @memberof MachineAccountsV2026ApiLoadBulkSourceSubtypes
82273
- */
82274
- readonly requestBody: Array<string>;
82275
- }
82276
82589
  /**
82277
82590
  * Request parameters for patchMachineAccountSubtypeByTechnicalName operation in MachineAccountsV2026Api.
82278
82591
  * @export
@@ -82329,31 +82642,6 @@ export interface MachineAccountsV2026ApiUpdateMachineAccountRequest {
82329
82642
  */
82330
82643
  readonly xSailPointExperimental?: string;
82331
82644
  }
82332
- /**
82333
- * Request parameters for updateMachineAccountSubtypeApprovalConfig operation in MachineAccountsV2026Api.
82334
- * @export
82335
- * @interface MachineAccountsV2026ApiUpdateMachineAccountSubtypeApprovalConfigRequest
82336
- */
82337
- export interface MachineAccountsV2026ApiUpdateMachineAccountSubtypeApprovalConfigRequest {
82338
- /**
82339
- * Use this header to enable this experimental API.
82340
- * @type {string}
82341
- * @memberof MachineAccountsV2026ApiUpdateMachineAccountSubtypeApprovalConfig
82342
- */
82343
- readonly xSailPointExperimental: string;
82344
- /**
82345
- * machine account subtype ID.
82346
- * @type {string}
82347
- * @memberof MachineAccountsV2026ApiUpdateMachineAccountSubtypeApprovalConfig
82348
- */
82349
- readonly subtypeId: string;
82350
- /**
82351
- * The JSONPatch payload used to update the object.
82352
- * @type {Array<JsonPatchOperationV2026>}
82353
- * @memberof MachineAccountsV2026ApiUpdateMachineAccountSubtypeApprovalConfig
82354
- */
82355
- readonly jsonPatchOperationV2026: Array<JsonPatchOperationV2026>;
82356
- }
82357
82645
  /**
82358
82646
  * MachineAccountsV2026Api - object-oriented interface
82359
82647
  * @export
@@ -82366,6 +82654,7 @@ export declare class MachineAccountsV2026Api extends BaseAPI {
82366
82654
  * @summary Create subtype
82367
82655
  * @param {MachineAccountsV2026ApiCreateMachineAccountSubtypeRequest} requestParameters Request parameters.
82368
82656
  * @param {*} [axiosOptions] Override http request option.
82657
+ * @deprecated
82369
82658
  * @throws {RequiredError}
82370
82659
  * @memberof MachineAccountsV2026Api
82371
82660
  */
@@ -82375,6 +82664,7 @@ export declare class MachineAccountsV2026Api extends BaseAPI {
82375
82664
  * @summary Delete subtype
82376
82665
  * @param {MachineAccountsV2026ApiDeleteMachineAccountSubtypeByTechnicalNameRequest} requestParameters Request parameters.
82377
82666
  * @param {*} [axiosOptions] Override http request option.
82667
+ * @deprecated
82378
82668
  * @throws {RequiredError}
82379
82669
  * @memberof MachineAccountsV2026Api
82380
82670
  */
@@ -82388,20 +82678,12 @@ export declare class MachineAccountsV2026Api extends BaseAPI {
82388
82678
  * @memberof MachineAccountsV2026Api
82389
82679
  */
82390
82680
  getMachineAccount(requestParameters: MachineAccountsV2026ApiGetMachineAccountRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<MachineAccountV2026, any>>;
82391
- /**
82392
- * 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.
82393
- * @summary Machine Subtype Approval Config
82394
- * @param {MachineAccountsV2026ApiGetMachineAccountSubtypeApprovalConfigRequest} requestParameters Request parameters.
82395
- * @param {*} [axiosOptions] Override http request option.
82396
- * @throws {RequiredError}
82397
- * @memberof MachineAccountsV2026Api
82398
- */
82399
- getMachineAccountSubtypeApprovalConfig(requestParameters: MachineAccountsV2026ApiGetMachineAccountSubtypeApprovalConfigRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<MachineAccountSubtypeConfigDtoV2026, any>>;
82400
82681
  /**
82401
82682
  * Get a machine account subtype by its unique ID.
82402
82683
  * @summary Retrieve subtype by subtype id
82403
82684
  * @param {MachineAccountsV2026ApiGetMachineAccountSubtypeByIdRequest} requestParameters Request parameters.
82404
82685
  * @param {*} [axiosOptions] Override http request option.
82686
+ * @deprecated
82405
82687
  * @throws {RequiredError}
82406
82688
  * @memberof MachineAccountsV2026Api
82407
82689
  */
@@ -82411,6 +82693,7 @@ export declare class MachineAccountsV2026Api extends BaseAPI {
82411
82693
  * @summary Retrieve subtype by source and technicalName
82412
82694
  * @param {MachineAccountsV2026ApiGetMachineAccountSubtypeByTechnicalNameRequest} requestParameters Request parameters.
82413
82695
  * @param {*} [axiosOptions] Override http request option.
82696
+ * @deprecated
82414
82697
  * @throws {RequiredError}
82415
82698
  * @memberof MachineAccountsV2026Api
82416
82699
  */
@@ -82420,6 +82703,7 @@ export declare class MachineAccountsV2026Api extends BaseAPI {
82420
82703
  * @summary Retrieve all subtypes by source
82421
82704
  * @param {MachineAccountsV2026ApiListMachineAccountSubtypesRequest} requestParameters Request parameters.
82422
82705
  * @param {*} [axiosOptions] Override http request option.
82706
+ * @deprecated
82423
82707
  * @throws {RequiredError}
82424
82708
  * @memberof MachineAccountsV2026Api
82425
82709
  */
@@ -82433,20 +82717,12 @@ export declare class MachineAccountsV2026Api extends BaseAPI {
82433
82717
  * @memberof MachineAccountsV2026Api
82434
82718
  */
82435
82719
  listMachineAccounts(requestParameters?: MachineAccountsV2026ApiListMachineAccountsRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<MachineAccountV2026[], any>>;
82436
- /**
82437
- * This endpoint retrieves the subtypes for given subtypeIds.
82438
- * @summary Bulk Retrieve of Source Subtypes
82439
- * @param {MachineAccountsV2026ApiLoadBulkSourceSubtypesRequest} requestParameters Request parameters.
82440
- * @param {*} [axiosOptions] Override http request option.
82441
- * @throws {RequiredError}
82442
- * @memberof MachineAccountsV2026Api
82443
- */
82444
- loadBulkSourceSubtypes(requestParameters: MachineAccountsV2026ApiLoadBulkSourceSubtypesRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SourceSubtypeWithSourceV2026[], any>>;
82445
82720
  /**
82446
82721
  * Update fields of a machine account subtype by source ID and technical name. Patchable fields include: `displayName`, `description`.
82447
82722
  * @summary Patch subtype
82448
82723
  * @param {MachineAccountsV2026ApiPatchMachineAccountSubtypeByTechnicalNameRequest} requestParameters Request parameters.
82449
82724
  * @param {*} [axiosOptions] Override http request option.
82725
+ * @deprecated
82450
82726
  * @throws {RequiredError}
82451
82727
  * @memberof MachineAccountsV2026Api
82452
82728
  */
@@ -82460,15 +82736,6 @@ export declare class MachineAccountsV2026Api extends BaseAPI {
82460
82736
  * @memberof MachineAccountsV2026Api
82461
82737
  */
82462
82738
  updateMachineAccount(requestParameters: MachineAccountsV2026ApiUpdateMachineAccountRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<MachineAccountV2026, any>>;
82463
- /**
82464
- * 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.
82465
- * @summary Machine Subtype Approval Config
82466
- * @param {MachineAccountsV2026ApiUpdateMachineAccountSubtypeApprovalConfigRequest} requestParameters Request parameters.
82467
- * @param {*} [axiosOptions] Override http request option.
82468
- * @throws {RequiredError}
82469
- * @memberof MachineAccountsV2026Api
82470
- */
82471
- updateMachineAccountSubtypeApprovalConfig(requestParameters: MachineAccountsV2026ApiUpdateMachineAccountSubtypeApprovalConfigRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<MachineAccountSubtypeConfigDtoV2026, any>>;
82472
82739
  }
82473
82740
  /**
82474
82741
  * MachineClassificationConfigV2026Api - axios parameter creator