sailpoint-api-client 1.8.2 → 1.8.4

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 +287 -65
  3. package/beta/common.ts +2 -2
  4. package/beta/package.json +1 -1
  5. package/dist/beta/api.d.ts +283 -64
  6. package/dist/beta/api.js +35 -36
  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 +288 -69
  12. package/dist/v2024/api.js +49 -52
  13. package/dist/v2024/api.js.map +1 -1
  14. package/dist/v2024/common.js +2 -2
  15. package/dist/v2025/api.d.ts +292 -73
  16. package/dist/v2025/api.js +55 -58
  17. package/dist/v2025/api.js.map +1 -1
  18. package/dist/v2025/common.js +2 -2
  19. package/dist/v2026/api.d.ts +691 -0
  20. package/dist/v2026/api.js +635 -2
  21. package/dist/v2026/api.js.map +1 -1
  22. package/dist/v2026/common.js +2 -2
  23. package/dist/v3/api.d.ts +47 -11
  24. package/dist/v3/api.js +22 -18
  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 +299 -80
  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 +303 -84
  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 +1010 -0
  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 +50 -11
  48. package/v3/common.ts +2 -2
  49. package/v3/package.json +1 -1
package/v2026/api.ts CHANGED
@@ -751,6 +751,37 @@ export interface ApproverReferenceV2026 {
751
751
  */
752
752
  export interface ArrayInnerV2026 {
753
753
  }
754
+ /**
755
+ *
756
+ * @export
757
+ * @interface BaseCommonDtoV2026
758
+ */
759
+ export interface BaseCommonDtoV2026 {
760
+ /**
761
+ * System-generated unique ID of the Object
762
+ * @type {string}
763
+ * @memberof BaseCommonDtoV2026
764
+ */
765
+ 'id'?: string;
766
+ /**
767
+ * Name of the Object
768
+ * @type {string}
769
+ * @memberof BaseCommonDtoV2026
770
+ */
771
+ 'name': string | null;
772
+ /**
773
+ * Creation date of the Object
774
+ * @type {string}
775
+ * @memberof BaseCommonDtoV2026
776
+ */
777
+ 'created'?: string;
778
+ /**
779
+ * Last modification date of the Object
780
+ * @type {string}
781
+ * @memberof BaseCommonDtoV2026
782
+ */
783
+ 'modified'?: string;
784
+ }
754
785
  /**
755
786
  * Base object for referencing other DTOs, containing type, id, and name fields for identification and display purposes.
756
787
  * @export
@@ -1527,6 +1558,330 @@ export interface MachineAccountSubTypeConfigDtoV2026 {
1527
1558
  */
1528
1559
  'machineAccountDelete'?: MachineAccountSubTypeConfigDtoMachineAccountDeleteV2026;
1529
1560
  }
1561
+ /**
1562
+ * The owner configuration associated to the machine identity
1563
+ * @export
1564
+ * @interface MachineIdentityDtoOwnersV2026
1565
+ */
1566
+ export interface MachineIdentityDtoOwnersV2026 {
1567
+ /**
1568
+ * Defines the identity which is selected as the primary owner
1569
+ * @type {object}
1570
+ * @memberof MachineIdentityDtoOwnersV2026
1571
+ */
1572
+ 'primaryIdentity': object;
1573
+ /**
1574
+ * Defines the identities which are selected as secondary owners
1575
+ * @type {Array<BaseReferenceDtoV2026>}
1576
+ * @memberof MachineIdentityDtoOwnersV2026
1577
+ */
1578
+ 'secondaryIdentities': Array<BaseReferenceDtoV2026>;
1579
+ }
1580
+ /**
1581
+ *
1582
+ * @export
1583
+ * @interface MachineIdentityRequestUserEntitlementsV2026
1584
+ */
1585
+ export interface MachineIdentityRequestUserEntitlementsV2026 {
1586
+ /**
1587
+ * The ID of the entitlement
1588
+ * @type {string}
1589
+ * @memberof MachineIdentityRequestUserEntitlementsV2026
1590
+ */
1591
+ 'entitlementId': string;
1592
+ /**
1593
+ * The source ID of the entitlement
1594
+ * @type {string}
1595
+ * @memberof MachineIdentityRequestUserEntitlementsV2026
1596
+ */
1597
+ 'sourceId': string;
1598
+ }
1599
+ /**
1600
+ *
1601
+ * @export
1602
+ * @interface MachineIdentityRequestV2026
1603
+ */
1604
+ export interface MachineIdentityRequestV2026 {
1605
+ /**
1606
+ * System-generated unique ID of the Object
1607
+ * @type {string}
1608
+ * @memberof MachineIdentityRequestV2026
1609
+ */
1610
+ 'id'?: string;
1611
+ /**
1612
+ * Name of the Object
1613
+ * @type {string}
1614
+ * @memberof MachineIdentityRequestV2026
1615
+ */
1616
+ 'name': string | null;
1617
+ /**
1618
+ * Creation date of the Object
1619
+ * @type {string}
1620
+ * @memberof MachineIdentityRequestV2026
1621
+ */
1622
+ 'created'?: string;
1623
+ /**
1624
+ * Last modification date of the Object
1625
+ * @type {string}
1626
+ * @memberof MachineIdentityRequestV2026
1627
+ */
1628
+ 'modified'?: string;
1629
+ /**
1630
+ * The native identity associated to the machine identity directly aggregated from a source
1631
+ * @type {string}
1632
+ * @memberof MachineIdentityRequestV2026
1633
+ */
1634
+ 'nativeIdentity': string;
1635
+ /**
1636
+ * Description of machine identity
1637
+ * @type {string}
1638
+ * @memberof MachineIdentityRequestV2026
1639
+ */
1640
+ 'description'?: string;
1641
+ /**
1642
+ * A map of custom machine identity attributes
1643
+ * @type {object}
1644
+ * @memberof MachineIdentityRequestV2026
1645
+ */
1646
+ 'attributes'?: object;
1647
+ /**
1648
+ * The subtype value associated to the machine identity
1649
+ * @type {string}
1650
+ * @memberof MachineIdentityRequestV2026
1651
+ */
1652
+ 'subtype': string;
1653
+ /**
1654
+ *
1655
+ * @type {MachineIdentityDtoOwnersV2026}
1656
+ * @memberof MachineIdentityRequestV2026
1657
+ */
1658
+ 'owners'?: MachineIdentityDtoOwnersV2026;
1659
+ /**
1660
+ * The source id associated to the machine identity
1661
+ * @type {string}
1662
+ * @memberof MachineIdentityRequestV2026
1663
+ */
1664
+ 'sourceId'?: string;
1665
+ /**
1666
+ * The UUID associated to the machine identity directly aggregated from a source
1667
+ * @type {string}
1668
+ * @memberof MachineIdentityRequestV2026
1669
+ */
1670
+ 'uuid'?: string;
1671
+ /**
1672
+ * The user entitlements associated to the machine identity
1673
+ * @type {Array<MachineIdentityRequestUserEntitlementsV2026>}
1674
+ * @memberof MachineIdentityRequestV2026
1675
+ */
1676
+ 'userEntitlements'?: Array<MachineIdentityRequestUserEntitlementsV2026>;
1677
+ }
1678
+ /**
1679
+ *
1680
+ * @export
1681
+ * @interface MachineIdentityResponseUserEntitlementsV2026
1682
+ */
1683
+ export interface MachineIdentityResponseUserEntitlementsV2026 {
1684
+ /**
1685
+ * The source ID of the entitlement
1686
+ * @type {string}
1687
+ * @memberof MachineIdentityResponseUserEntitlementsV2026
1688
+ */
1689
+ 'sourceId'?: string;
1690
+ /**
1691
+ * The ID of the entitlement
1692
+ * @type {string}
1693
+ * @memberof MachineIdentityResponseUserEntitlementsV2026
1694
+ */
1695
+ 'entitlementId'?: string;
1696
+ /**
1697
+ * The display name of the entitlement
1698
+ * @type {string}
1699
+ * @memberof MachineIdentityResponseUserEntitlementsV2026
1700
+ */
1701
+ 'displayName'?: string;
1702
+ /**
1703
+ * The source of the entitlement
1704
+ * @type {object}
1705
+ * @memberof MachineIdentityResponseUserEntitlementsV2026
1706
+ */
1707
+ 'source'?: object;
1708
+ }
1709
+ /**
1710
+ *
1711
+ * @export
1712
+ * @interface MachineIdentityResponseV2026
1713
+ */
1714
+ export interface MachineIdentityResponseV2026 {
1715
+ /**
1716
+ * System-generated unique ID of the Object
1717
+ * @type {string}
1718
+ * @memberof MachineIdentityResponseV2026
1719
+ */
1720
+ 'id'?: string;
1721
+ /**
1722
+ * Name of the Object
1723
+ * @type {string}
1724
+ * @memberof MachineIdentityResponseV2026
1725
+ */
1726
+ 'name': string | null;
1727
+ /**
1728
+ * Creation date of the Object
1729
+ * @type {string}
1730
+ * @memberof MachineIdentityResponseV2026
1731
+ */
1732
+ 'created'?: string;
1733
+ /**
1734
+ * Last modification date of the Object
1735
+ * @type {string}
1736
+ * @memberof MachineIdentityResponseV2026
1737
+ */
1738
+ 'modified'?: string;
1739
+ /**
1740
+ * The native identity associated to the machine identity directly aggregated from a source
1741
+ * @type {string}
1742
+ * @memberof MachineIdentityResponseV2026
1743
+ */
1744
+ 'nativeIdentity': string;
1745
+ /**
1746
+ * Description of machine identity
1747
+ * @type {string}
1748
+ * @memberof MachineIdentityResponseV2026
1749
+ */
1750
+ 'description'?: string;
1751
+ /**
1752
+ * A map of custom machine identity attributes
1753
+ * @type {object}
1754
+ * @memberof MachineIdentityResponseV2026
1755
+ */
1756
+ 'attributes'?: object;
1757
+ /**
1758
+ * The subtype value associated to the machine identity
1759
+ * @type {string}
1760
+ * @memberof MachineIdentityResponseV2026
1761
+ */
1762
+ 'subtype': string;
1763
+ /**
1764
+ *
1765
+ * @type {MachineIdentityDtoOwnersV2026}
1766
+ * @memberof MachineIdentityResponseV2026
1767
+ */
1768
+ 'owners'?: MachineIdentityDtoOwnersV2026;
1769
+ /**
1770
+ * The source id associated to the machine identity
1771
+ * @type {string}
1772
+ * @memberof MachineIdentityResponseV2026
1773
+ */
1774
+ 'sourceId'?: string;
1775
+ /**
1776
+ * The UUID associated to the machine identity directly aggregated from a source
1777
+ * @type {string}
1778
+ * @memberof MachineIdentityResponseV2026
1779
+ */
1780
+ 'uuid'?: string;
1781
+ /**
1782
+ * Indicates if the machine identity has been manually edited
1783
+ * @type {boolean}
1784
+ * @memberof MachineIdentityResponseV2026
1785
+ */
1786
+ 'manuallyEdited'?: boolean;
1787
+ /**
1788
+ * Indicates if the machine identity has been manually created
1789
+ * @type {boolean}
1790
+ * @memberof MachineIdentityResponseV2026
1791
+ */
1792
+ 'manuallyCreated'?: boolean;
1793
+ /**
1794
+ * The source of the machine identity
1795
+ * @type {object}
1796
+ * @memberof MachineIdentityResponseV2026
1797
+ */
1798
+ 'source'?: object;
1799
+ /**
1800
+ * The dataset id associated to the source in which the identity was retrieved from
1801
+ * @type {string}
1802
+ * @memberof MachineIdentityResponseV2026
1803
+ */
1804
+ 'datasetId'?: string;
1805
+ /**
1806
+ * The user entitlements associated to the machine identity
1807
+ * @type {Array<MachineIdentityResponseUserEntitlementsV2026>}
1808
+ * @memberof MachineIdentityResponseV2026
1809
+ */
1810
+ 'userEntitlements'?: Array<MachineIdentityResponseUserEntitlementsV2026>;
1811
+ }
1812
+ /**
1813
+ *
1814
+ * @export
1815
+ * @interface MachineIdentityV2026
1816
+ */
1817
+ export interface MachineIdentityV2026 {
1818
+ /**
1819
+ * System-generated unique ID of the Object
1820
+ * @type {string}
1821
+ * @memberof MachineIdentityV2026
1822
+ */
1823
+ 'id'?: string;
1824
+ /**
1825
+ * Name of the Object
1826
+ * @type {string}
1827
+ * @memberof MachineIdentityV2026
1828
+ */
1829
+ 'name': string | null;
1830
+ /**
1831
+ * Creation date of the Object
1832
+ * @type {string}
1833
+ * @memberof MachineIdentityV2026
1834
+ */
1835
+ 'created'?: string;
1836
+ /**
1837
+ * Last modification date of the Object
1838
+ * @type {string}
1839
+ * @memberof MachineIdentityV2026
1840
+ */
1841
+ 'modified'?: string;
1842
+ /**
1843
+ * The native identity associated to the machine identity directly aggregated from a source
1844
+ * @type {string}
1845
+ * @memberof MachineIdentityV2026
1846
+ */
1847
+ 'nativeIdentity': string;
1848
+ /**
1849
+ * Description of machine identity
1850
+ * @type {string}
1851
+ * @memberof MachineIdentityV2026
1852
+ */
1853
+ 'description'?: string;
1854
+ /**
1855
+ * A map of custom machine identity attributes
1856
+ * @type {object}
1857
+ * @memberof MachineIdentityV2026
1858
+ */
1859
+ 'attributes'?: object;
1860
+ /**
1861
+ * The subtype value associated to the machine identity
1862
+ * @type {string}
1863
+ * @memberof MachineIdentityV2026
1864
+ */
1865
+ 'subtype': string;
1866
+ /**
1867
+ *
1868
+ * @type {MachineIdentityDtoOwnersV2026}
1869
+ * @memberof MachineIdentityV2026
1870
+ */
1871
+ 'owners'?: MachineIdentityDtoOwnersV2026;
1872
+ /**
1873
+ * The source id associated to the machine identity
1874
+ * @type {string}
1875
+ * @memberof MachineIdentityV2026
1876
+ */
1877
+ 'sourceId'?: string;
1878
+ /**
1879
+ * The UUID associated to the machine identity directly aggregated from a source
1880
+ * @type {string}
1881
+ * @memberof MachineIdentityV2026
1882
+ */
1883
+ 'uuid'?: string;
1884
+ }
1530
1885
  /**
1531
1886
  * Simplified DTO for the Permission objects stored in SailPoint\'s database. The data is aggregated from customer systems and is free-form, so its appearance can vary largely between different clients/customers.
1532
1887
  * @export
@@ -4040,6 +4395,661 @@ export class MachineAccountDeletionApprovalConfigV2026Api extends BaseAPI {
4040
4395
 
4041
4396
 
4042
4397
 
4398
+ /**
4399
+ * MachineIdentitiesV2026Api - axios parameter creator
4400
+ * @export
4401
+ */
4402
+ export const MachineIdentitiesV2026ApiAxiosParamCreator = function (configuration?: Configuration) {
4403
+ return {
4404
+ /**
4405
+ * Use this API to create a machine identity. The maximum supported length for the description field is 2000 characters.
4406
+ * @summary Create machine identities
4407
+ * @param {MachineIdentityRequestV2026} machineIdentityRequestV2026
4408
+ * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
4409
+ * @param {*} [axiosOptions] Override http request option.
4410
+ * @throws {RequiredError}
4411
+ */
4412
+ createMachineIdentity: async (machineIdentityRequestV2026: MachineIdentityRequestV2026, xSailPointExperimental?: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
4413
+ // verify required parameter 'machineIdentityRequestV2026' is not null or undefined
4414
+ assertParamExists('createMachineIdentity', 'machineIdentityRequestV2026', machineIdentityRequestV2026)
4415
+ if (xSailPointExperimental === undefined) {
4416
+ xSailPointExperimental = 'true';
4417
+ }
4418
+
4419
+ const localVarPath = `/machine-identities`;
4420
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
4421
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
4422
+ let baseOptions;
4423
+ if (configuration) {
4424
+ baseOptions = configuration.baseOptions;
4425
+ }
4426
+
4427
+ const localVarRequestOptions = { method: 'POST', ...baseOptions, ...axiosOptions};
4428
+ const localVarHeaderParameter = {} as any;
4429
+ const localVarQueryParameter = {} as any;
4430
+
4431
+ // authentication userAuth required
4432
+ // oauth required
4433
+ await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
4434
+
4435
+ // authentication userAuth required
4436
+ // oauth required
4437
+ await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
4438
+
4439
+ // authentication applicationAuth required
4440
+ // oauth required
4441
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
4442
+
4443
+
4444
+
4445
+ localVarHeaderParameter['Content-Type'] = 'application/json';
4446
+
4447
+ if (xSailPointExperimental != null) {
4448
+ localVarHeaderParameter['X-SailPoint-Experimental'] = String(xSailPointExperimental);
4449
+ }
4450
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
4451
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
4452
+ localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
4453
+ localVarRequestOptions.data = serializeDataIfNeeded(machineIdentityRequestV2026, localVarRequestOptions, configuration)
4454
+
4455
+ return {
4456
+ url: toPathString(localVarUrlObj),
4457
+ axiosOptions: localVarRequestOptions,
4458
+ };
4459
+ },
4460
+ /**
4461
+ * The API returns successful response if the requested machine identity was deleted.
4462
+ * @summary Delete machine identity
4463
+ * @param {string} id Machine Identity ID
4464
+ * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
4465
+ * @param {*} [axiosOptions] Override http request option.
4466
+ * @throws {RequiredError}
4467
+ */
4468
+ deleteMachineIdentity: async (id: string, xSailPointExperimental?: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
4469
+ // verify required parameter 'id' is not null or undefined
4470
+ assertParamExists('deleteMachineIdentity', 'id', id)
4471
+ if (xSailPointExperimental === undefined) {
4472
+ xSailPointExperimental = 'true';
4473
+ }
4474
+
4475
+ const localVarPath = `/machine-identities/{id}`
4476
+ .replace(`{${"id"}}`, encodeURIComponent(String(id)));
4477
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
4478
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
4479
+ let baseOptions;
4480
+ if (configuration) {
4481
+ baseOptions = configuration.baseOptions;
4482
+ }
4483
+
4484
+ const localVarRequestOptions = { method: 'DELETE', ...baseOptions, ...axiosOptions};
4485
+ const localVarHeaderParameter = {} as any;
4486
+ const localVarQueryParameter = {} as any;
4487
+
4488
+ // authentication userAuth required
4489
+ // oauth required
4490
+ await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
4491
+
4492
+ // authentication userAuth required
4493
+ // oauth required
4494
+ await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
4495
+
4496
+ // authentication applicationAuth required
4497
+ // oauth required
4498
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
4499
+
4500
+
4501
+
4502
+ if (xSailPointExperimental != null) {
4503
+ localVarHeaderParameter['X-SailPoint-Experimental'] = String(xSailPointExperimental);
4504
+ }
4505
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
4506
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
4507
+ localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
4508
+
4509
+ return {
4510
+ url: toPathString(localVarUrlObj),
4511
+ axiosOptions: localVarRequestOptions,
4512
+ };
4513
+ },
4514
+ /**
4515
+ * This API returns a single machine identity using the Machine Identity ID.
4516
+ * @summary Machine identity details
4517
+ * @param {string} id Machine Identity ID
4518
+ * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
4519
+ * @param {*} [axiosOptions] Override http request option.
4520
+ * @throws {RequiredError}
4521
+ */
4522
+ getMachineIdentity: async (id: string, xSailPointExperimental?: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
4523
+ // verify required parameter 'id' is not null or undefined
4524
+ assertParamExists('getMachineIdentity', 'id', id)
4525
+ if (xSailPointExperimental === undefined) {
4526
+ xSailPointExperimental = 'true';
4527
+ }
4528
+
4529
+ const localVarPath = `/machine-identities/{id}`
4530
+ .replace(`{${"id"}}`, encodeURIComponent(String(id)));
4531
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
4532
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
4533
+ let baseOptions;
4534
+ if (configuration) {
4535
+ baseOptions = configuration.baseOptions;
4536
+ }
4537
+
4538
+ const localVarRequestOptions = { method: 'GET', ...baseOptions, ...axiosOptions};
4539
+ const localVarHeaderParameter = {} as any;
4540
+ const localVarQueryParameter = {} as any;
4541
+
4542
+ // authentication userAuth required
4543
+ // oauth required
4544
+ await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
4545
+
4546
+ // authentication userAuth required
4547
+ // oauth required
4548
+ await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
4549
+
4550
+
4551
+
4552
+ if (xSailPointExperimental != null) {
4553
+ localVarHeaderParameter['X-SailPoint-Experimental'] = String(xSailPointExperimental);
4554
+ }
4555
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
4556
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
4557
+ localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
4558
+
4559
+ return {
4560
+ url: toPathString(localVarUrlObj),
4561
+ axiosOptions: localVarRequestOptions,
4562
+ };
4563
+ },
4564
+ /**
4565
+ * This API returns a list of machine identities.
4566
+ * @summary List machine identities
4567
+ * @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, in, sw* **cisIdentityId**: *eq, in, sw* **nativeIdentity**: *eq, in, sw* **attributes**: *eq* **manuallyEdited**: *eq* **subtype**: *eq, in* **owners.primaryIdentity.id**: *eq, in, sw* **owners.primaryIdentity.name**: *eq, in, isnull, pr* **owners.secondaryIdentity.id**: *eq, in, sw* **owners.secondaryIdentity.name**: *eq, in, isnull, pr* **source.name**: *eq, in, sw* **source.id**: *eq, in* **entitlement.id**: *eq, in* **entitlement.name**: *eq, in, sw*
4568
+ * @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: **nativeIdentity, name, owners.primaryIdentity.name, source.name, created, modified**
4569
+ * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
4570
+ * @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.
4571
+ * @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.
4572
+ * @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.
4573
+ * @param {*} [axiosOptions] Override http request option.
4574
+ * @throws {RequiredError}
4575
+ */
4576
+ listMachineIdentities: async (filters?: string, sorters?: string, xSailPointExperimental?: string, count?: boolean, limit?: number, offset?: number, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
4577
+ if (xSailPointExperimental === undefined) {
4578
+ xSailPointExperimental = 'true';
4579
+ }
4580
+
4581
+ const localVarPath = `/machine-identities`;
4582
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
4583
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
4584
+ let baseOptions;
4585
+ if (configuration) {
4586
+ baseOptions = configuration.baseOptions;
4587
+ }
4588
+
4589
+ const localVarRequestOptions = { method: 'GET', ...baseOptions, ...axiosOptions};
4590
+ const localVarHeaderParameter = {} as any;
4591
+ const localVarQueryParameter = {} as any;
4592
+
4593
+ // authentication userAuth required
4594
+ // oauth required
4595
+ await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
4596
+
4597
+ // authentication userAuth required
4598
+ // oauth required
4599
+ await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
4600
+
4601
+ if (filters !== undefined) {
4602
+ localVarQueryParameter['filters'] = filters;
4603
+ }
4604
+
4605
+ if (sorters !== undefined) {
4606
+ localVarQueryParameter['sorters'] = sorters;
4607
+ }
4608
+
4609
+ if (count !== undefined) {
4610
+ localVarQueryParameter['count'] = count;
4611
+ }
4612
+
4613
+ if (limit !== undefined) {
4614
+ localVarQueryParameter['limit'] = limit;
4615
+ }
4616
+
4617
+ if (offset !== undefined) {
4618
+ localVarQueryParameter['offset'] = offset;
4619
+ }
4620
+
4621
+
4622
+
4623
+ if (xSailPointExperimental != null) {
4624
+ localVarHeaderParameter['X-SailPoint-Experimental'] = String(xSailPointExperimental);
4625
+ }
4626
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
4627
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
4628
+ localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
4629
+
4630
+ return {
4631
+ url: toPathString(localVarUrlObj),
4632
+ axiosOptions: localVarRequestOptions,
4633
+ };
4634
+ },
4635
+ /**
4636
+ * Use this API to update machine identity details.
4637
+ * @summary Update a machine identity
4638
+ * @param {string} id Machine Identity ID.
4639
+ * @param {Array<object>} requestBody A JSON of updated values [JSON Patch](https://tools.ietf.org/html/rfc6902) standard.
4640
+ * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
4641
+ * @param {*} [axiosOptions] Override http request option.
4642
+ * @throws {RequiredError}
4643
+ */
4644
+ updateMachineIdentity: async (id: string, requestBody: Array<object>, xSailPointExperimental?: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
4645
+ // verify required parameter 'id' is not null or undefined
4646
+ assertParamExists('updateMachineIdentity', 'id', id)
4647
+ // verify required parameter 'requestBody' is not null or undefined
4648
+ assertParamExists('updateMachineIdentity', 'requestBody', requestBody)
4649
+ if (xSailPointExperimental === undefined) {
4650
+ xSailPointExperimental = 'true';
4651
+ }
4652
+
4653
+ const localVarPath = `/machine-identities/{id}`
4654
+ .replace(`{${"id"}}`, encodeURIComponent(String(id)));
4655
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
4656
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
4657
+ let baseOptions;
4658
+ if (configuration) {
4659
+ baseOptions = configuration.baseOptions;
4660
+ }
4661
+
4662
+ const localVarRequestOptions = { method: 'PATCH', ...baseOptions, ...axiosOptions};
4663
+ const localVarHeaderParameter = {} as any;
4664
+ const localVarQueryParameter = {} as any;
4665
+
4666
+ // authentication userAuth required
4667
+ // oauth required
4668
+ await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
4669
+
4670
+ // authentication userAuth required
4671
+ // oauth required
4672
+ await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
4673
+
4674
+ // authentication applicationAuth required
4675
+ // oauth required
4676
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
4677
+
4678
+
4679
+
4680
+ localVarHeaderParameter['Content-Type'] = 'application/json-patch+json';
4681
+
4682
+ if (xSailPointExperimental != null) {
4683
+ localVarHeaderParameter['X-SailPoint-Experimental'] = String(xSailPointExperimental);
4684
+ }
4685
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
4686
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
4687
+ localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
4688
+ localVarRequestOptions.data = serializeDataIfNeeded(requestBody, localVarRequestOptions, configuration)
4689
+
4690
+ return {
4691
+ url: toPathString(localVarUrlObj),
4692
+ axiosOptions: localVarRequestOptions,
4693
+ };
4694
+ },
4695
+ }
4696
+ };
4697
+
4698
+ /**
4699
+ * MachineIdentitiesV2026Api - functional programming interface
4700
+ * @export
4701
+ */
4702
+ export const MachineIdentitiesV2026ApiFp = function(configuration?: Configuration) {
4703
+ const localVarAxiosParamCreator = MachineIdentitiesV2026ApiAxiosParamCreator(configuration)
4704
+ return {
4705
+ /**
4706
+ * Use this API to create a machine identity. The maximum supported length for the description field is 2000 characters.
4707
+ * @summary Create machine identities
4708
+ * @param {MachineIdentityRequestV2026} machineIdentityRequestV2026
4709
+ * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
4710
+ * @param {*} [axiosOptions] Override http request option.
4711
+ * @throws {RequiredError}
4712
+ */
4713
+ async createMachineIdentity(machineIdentityRequestV2026: MachineIdentityRequestV2026, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MachineIdentityResponseV2026>> {
4714
+ const localVarAxiosArgs = await localVarAxiosParamCreator.createMachineIdentity(machineIdentityRequestV2026, xSailPointExperimental, axiosOptions);
4715
+ const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
4716
+ const localVarOperationServerBasePath = operationServerMap['MachineIdentitiesV2026Api.createMachineIdentity']?.[localVarOperationServerIndex]?.url;
4717
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
4718
+ },
4719
+ /**
4720
+ * The API returns successful response if the requested machine identity was deleted.
4721
+ * @summary Delete machine identity
4722
+ * @param {string} id Machine Identity ID
4723
+ * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
4724
+ * @param {*} [axiosOptions] Override http request option.
4725
+ * @throws {RequiredError}
4726
+ */
4727
+ async deleteMachineIdentity(id: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
4728
+ const localVarAxiosArgs = await localVarAxiosParamCreator.deleteMachineIdentity(id, xSailPointExperimental, axiosOptions);
4729
+ const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
4730
+ const localVarOperationServerBasePath = operationServerMap['MachineIdentitiesV2026Api.deleteMachineIdentity']?.[localVarOperationServerIndex]?.url;
4731
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
4732
+ },
4733
+ /**
4734
+ * This API returns a single machine identity using the Machine Identity ID.
4735
+ * @summary Machine identity details
4736
+ * @param {string} id Machine Identity ID
4737
+ * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
4738
+ * @param {*} [axiosOptions] Override http request option.
4739
+ * @throws {RequiredError}
4740
+ */
4741
+ async getMachineIdentity(id: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MachineIdentityResponseV2026>> {
4742
+ const localVarAxiosArgs = await localVarAxiosParamCreator.getMachineIdentity(id, xSailPointExperimental, axiosOptions);
4743
+ const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
4744
+ const localVarOperationServerBasePath = operationServerMap['MachineIdentitiesV2026Api.getMachineIdentity']?.[localVarOperationServerIndex]?.url;
4745
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
4746
+ },
4747
+ /**
4748
+ * This API returns a list of machine identities.
4749
+ * @summary List machine identities
4750
+ * @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, in, sw* **cisIdentityId**: *eq, in, sw* **nativeIdentity**: *eq, in, sw* **attributes**: *eq* **manuallyEdited**: *eq* **subtype**: *eq, in* **owners.primaryIdentity.id**: *eq, in, sw* **owners.primaryIdentity.name**: *eq, in, isnull, pr* **owners.secondaryIdentity.id**: *eq, in, sw* **owners.secondaryIdentity.name**: *eq, in, isnull, pr* **source.name**: *eq, in, sw* **source.id**: *eq, in* **entitlement.id**: *eq, in* **entitlement.name**: *eq, in, sw*
4751
+ * @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: **nativeIdentity, name, owners.primaryIdentity.name, source.name, created, modified**
4752
+ * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
4753
+ * @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.
4754
+ * @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.
4755
+ * @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.
4756
+ * @param {*} [axiosOptions] Override http request option.
4757
+ * @throws {RequiredError}
4758
+ */
4759
+ async listMachineIdentities(filters?: string, sorters?: string, xSailPointExperimental?: string, count?: boolean, limit?: number, offset?: number, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<MachineIdentityResponseV2026>>> {
4760
+ const localVarAxiosArgs = await localVarAxiosParamCreator.listMachineIdentities(filters, sorters, xSailPointExperimental, count, limit, offset, axiosOptions);
4761
+ const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
4762
+ const localVarOperationServerBasePath = operationServerMap['MachineIdentitiesV2026Api.listMachineIdentities']?.[localVarOperationServerIndex]?.url;
4763
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
4764
+ },
4765
+ /**
4766
+ * Use this API to update machine identity details.
4767
+ * @summary Update a machine identity
4768
+ * @param {string} id Machine Identity ID.
4769
+ * @param {Array<object>} requestBody A JSON of updated values [JSON Patch](https://tools.ietf.org/html/rfc6902) standard.
4770
+ * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
4771
+ * @param {*} [axiosOptions] Override http request option.
4772
+ * @throws {RequiredError}
4773
+ */
4774
+ async updateMachineIdentity(id: string, requestBody: Array<object>, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MachineIdentityResponseV2026>> {
4775
+ const localVarAxiosArgs = await localVarAxiosParamCreator.updateMachineIdentity(id, requestBody, xSailPointExperimental, axiosOptions);
4776
+ const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
4777
+ const localVarOperationServerBasePath = operationServerMap['MachineIdentitiesV2026Api.updateMachineIdentity']?.[localVarOperationServerIndex]?.url;
4778
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
4779
+ },
4780
+ }
4781
+ };
4782
+
4783
+ /**
4784
+ * MachineIdentitiesV2026Api - factory interface
4785
+ * @export
4786
+ */
4787
+ export const MachineIdentitiesV2026ApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {
4788
+ const localVarFp = MachineIdentitiesV2026ApiFp(configuration)
4789
+ return {
4790
+ /**
4791
+ * Use this API to create a machine identity. The maximum supported length for the description field is 2000 characters.
4792
+ * @summary Create machine identities
4793
+ * @param {MachineIdentitiesV2026ApiCreateMachineIdentityRequest} requestParameters Request parameters.
4794
+ * @param {*} [axiosOptions] Override http request option.
4795
+ * @throws {RequiredError}
4796
+ */
4797
+ createMachineIdentity(requestParameters: MachineIdentitiesV2026ApiCreateMachineIdentityRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<MachineIdentityResponseV2026> {
4798
+ return localVarFp.createMachineIdentity(requestParameters.machineIdentityRequestV2026, requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(axios, basePath));
4799
+ },
4800
+ /**
4801
+ * The API returns successful response if the requested machine identity was deleted.
4802
+ * @summary Delete machine identity
4803
+ * @param {MachineIdentitiesV2026ApiDeleteMachineIdentityRequest} requestParameters Request parameters.
4804
+ * @param {*} [axiosOptions] Override http request option.
4805
+ * @throws {RequiredError}
4806
+ */
4807
+ deleteMachineIdentity(requestParameters: MachineIdentitiesV2026ApiDeleteMachineIdentityRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<void> {
4808
+ return localVarFp.deleteMachineIdentity(requestParameters.id, requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(axios, basePath));
4809
+ },
4810
+ /**
4811
+ * This API returns a single machine identity using the Machine Identity ID.
4812
+ * @summary Machine identity details
4813
+ * @param {MachineIdentitiesV2026ApiGetMachineIdentityRequest} requestParameters Request parameters.
4814
+ * @param {*} [axiosOptions] Override http request option.
4815
+ * @throws {RequiredError}
4816
+ */
4817
+ getMachineIdentity(requestParameters: MachineIdentitiesV2026ApiGetMachineIdentityRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<MachineIdentityResponseV2026> {
4818
+ return localVarFp.getMachineIdentity(requestParameters.id, requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(axios, basePath));
4819
+ },
4820
+ /**
4821
+ * This API returns a list of machine identities.
4822
+ * @summary List machine identities
4823
+ * @param {MachineIdentitiesV2026ApiListMachineIdentitiesRequest} requestParameters Request parameters.
4824
+ * @param {*} [axiosOptions] Override http request option.
4825
+ * @throws {RequiredError}
4826
+ */
4827
+ listMachineIdentities(requestParameters: MachineIdentitiesV2026ApiListMachineIdentitiesRequest = {}, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<MachineIdentityResponseV2026>> {
4828
+ return localVarFp.listMachineIdentities(requestParameters.filters, requestParameters.sorters, requestParameters.xSailPointExperimental, requestParameters.count, requestParameters.limit, requestParameters.offset, axiosOptions).then((request) => request(axios, basePath));
4829
+ },
4830
+ /**
4831
+ * Use this API to update machine identity details.
4832
+ * @summary Update a machine identity
4833
+ * @param {MachineIdentitiesV2026ApiUpdateMachineIdentityRequest} requestParameters Request parameters.
4834
+ * @param {*} [axiosOptions] Override http request option.
4835
+ * @throws {RequiredError}
4836
+ */
4837
+ updateMachineIdentity(requestParameters: MachineIdentitiesV2026ApiUpdateMachineIdentityRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<MachineIdentityResponseV2026> {
4838
+ return localVarFp.updateMachineIdentity(requestParameters.id, requestParameters.requestBody, requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(axios, basePath));
4839
+ },
4840
+ };
4841
+ };
4842
+
4843
+ /**
4844
+ * Request parameters for createMachineIdentity operation in MachineIdentitiesV2026Api.
4845
+ * @export
4846
+ * @interface MachineIdentitiesV2026ApiCreateMachineIdentityRequest
4847
+ */
4848
+ export interface MachineIdentitiesV2026ApiCreateMachineIdentityRequest {
4849
+ /**
4850
+ *
4851
+ * @type {MachineIdentityRequestV2026}
4852
+ * @memberof MachineIdentitiesV2026ApiCreateMachineIdentity
4853
+ */
4854
+ readonly machineIdentityRequestV2026: MachineIdentityRequestV2026
4855
+
4856
+ /**
4857
+ * Use this header to enable this experimental API.
4858
+ * @type {string}
4859
+ * @memberof MachineIdentitiesV2026ApiCreateMachineIdentity
4860
+ */
4861
+ readonly xSailPointExperimental?: string
4862
+ }
4863
+
4864
+ /**
4865
+ * Request parameters for deleteMachineIdentity operation in MachineIdentitiesV2026Api.
4866
+ * @export
4867
+ * @interface MachineIdentitiesV2026ApiDeleteMachineIdentityRequest
4868
+ */
4869
+ export interface MachineIdentitiesV2026ApiDeleteMachineIdentityRequest {
4870
+ /**
4871
+ * Machine Identity ID
4872
+ * @type {string}
4873
+ * @memberof MachineIdentitiesV2026ApiDeleteMachineIdentity
4874
+ */
4875
+ readonly id: string
4876
+
4877
+ /**
4878
+ * Use this header to enable this experimental API.
4879
+ * @type {string}
4880
+ * @memberof MachineIdentitiesV2026ApiDeleteMachineIdentity
4881
+ */
4882
+ readonly xSailPointExperimental?: string
4883
+ }
4884
+
4885
+ /**
4886
+ * Request parameters for getMachineIdentity operation in MachineIdentitiesV2026Api.
4887
+ * @export
4888
+ * @interface MachineIdentitiesV2026ApiGetMachineIdentityRequest
4889
+ */
4890
+ export interface MachineIdentitiesV2026ApiGetMachineIdentityRequest {
4891
+ /**
4892
+ * Machine Identity ID
4893
+ * @type {string}
4894
+ * @memberof MachineIdentitiesV2026ApiGetMachineIdentity
4895
+ */
4896
+ readonly id: string
4897
+
4898
+ /**
4899
+ * Use this header to enable this experimental API.
4900
+ * @type {string}
4901
+ * @memberof MachineIdentitiesV2026ApiGetMachineIdentity
4902
+ */
4903
+ readonly xSailPointExperimental?: string
4904
+ }
4905
+
4906
+ /**
4907
+ * Request parameters for listMachineIdentities operation in MachineIdentitiesV2026Api.
4908
+ * @export
4909
+ * @interface MachineIdentitiesV2026ApiListMachineIdentitiesRequest
4910
+ */
4911
+ export interface MachineIdentitiesV2026ApiListMachineIdentitiesRequest {
4912
+ /**
4913
+ * 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, in, sw* **cisIdentityId**: *eq, in, sw* **nativeIdentity**: *eq, in, sw* **attributes**: *eq* **manuallyEdited**: *eq* **subtype**: *eq, in* **owners.primaryIdentity.id**: *eq, in, sw* **owners.primaryIdentity.name**: *eq, in, isnull, pr* **owners.secondaryIdentity.id**: *eq, in, sw* **owners.secondaryIdentity.name**: *eq, in, isnull, pr* **source.name**: *eq, in, sw* **source.id**: *eq, in* **entitlement.id**: *eq, in* **entitlement.name**: *eq, in, sw*
4914
+ * @type {string}
4915
+ * @memberof MachineIdentitiesV2026ApiListMachineIdentities
4916
+ */
4917
+ readonly filters?: string
4918
+
4919
+ /**
4920
+ * 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: **nativeIdentity, name, owners.primaryIdentity.name, source.name, created, modified**
4921
+ * @type {string}
4922
+ * @memberof MachineIdentitiesV2026ApiListMachineIdentities
4923
+ */
4924
+ readonly sorters?: string
4925
+
4926
+ /**
4927
+ * Use this header to enable this experimental API.
4928
+ * @type {string}
4929
+ * @memberof MachineIdentitiesV2026ApiListMachineIdentities
4930
+ */
4931
+ readonly xSailPointExperimental?: string
4932
+
4933
+ /**
4934
+ * 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.
4935
+ * @type {boolean}
4936
+ * @memberof MachineIdentitiesV2026ApiListMachineIdentities
4937
+ */
4938
+ readonly count?: boolean
4939
+
4940
+ /**
4941
+ * Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
4942
+ * @type {number}
4943
+ * @memberof MachineIdentitiesV2026ApiListMachineIdentities
4944
+ */
4945
+ readonly limit?: number
4946
+
4947
+ /**
4948
+ * 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.
4949
+ * @type {number}
4950
+ * @memberof MachineIdentitiesV2026ApiListMachineIdentities
4951
+ */
4952
+ readonly offset?: number
4953
+ }
4954
+
4955
+ /**
4956
+ * Request parameters for updateMachineIdentity operation in MachineIdentitiesV2026Api.
4957
+ * @export
4958
+ * @interface MachineIdentitiesV2026ApiUpdateMachineIdentityRequest
4959
+ */
4960
+ export interface MachineIdentitiesV2026ApiUpdateMachineIdentityRequest {
4961
+ /**
4962
+ * Machine Identity ID.
4963
+ * @type {string}
4964
+ * @memberof MachineIdentitiesV2026ApiUpdateMachineIdentity
4965
+ */
4966
+ readonly id: string
4967
+
4968
+ /**
4969
+ * A JSON of updated values [JSON Patch](https://tools.ietf.org/html/rfc6902) standard.
4970
+ * @type {Array<object>}
4971
+ * @memberof MachineIdentitiesV2026ApiUpdateMachineIdentity
4972
+ */
4973
+ readonly requestBody: Array<object>
4974
+
4975
+ /**
4976
+ * Use this header to enable this experimental API.
4977
+ * @type {string}
4978
+ * @memberof MachineIdentitiesV2026ApiUpdateMachineIdentity
4979
+ */
4980
+ readonly xSailPointExperimental?: string
4981
+ }
4982
+
4983
+ /**
4984
+ * MachineIdentitiesV2026Api - object-oriented interface
4985
+ * @export
4986
+ * @class MachineIdentitiesV2026Api
4987
+ * @extends {BaseAPI}
4988
+ */
4989
+ export class MachineIdentitiesV2026Api extends BaseAPI {
4990
+ /**
4991
+ * Use this API to create a machine identity. The maximum supported length for the description field is 2000 characters.
4992
+ * @summary Create machine identities
4993
+ * @param {MachineIdentitiesV2026ApiCreateMachineIdentityRequest} requestParameters Request parameters.
4994
+ * @param {*} [axiosOptions] Override http request option.
4995
+ * @throws {RequiredError}
4996
+ * @memberof MachineIdentitiesV2026Api
4997
+ */
4998
+ public createMachineIdentity(requestParameters: MachineIdentitiesV2026ApiCreateMachineIdentityRequest, axiosOptions?: RawAxiosRequestConfig) {
4999
+ return MachineIdentitiesV2026ApiFp(this.configuration).createMachineIdentity(requestParameters.machineIdentityRequestV2026, requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(this.axios, this.basePath));
5000
+ }
5001
+
5002
+ /**
5003
+ * The API returns successful response if the requested machine identity was deleted.
5004
+ * @summary Delete machine identity
5005
+ * @param {MachineIdentitiesV2026ApiDeleteMachineIdentityRequest} requestParameters Request parameters.
5006
+ * @param {*} [axiosOptions] Override http request option.
5007
+ * @throws {RequiredError}
5008
+ * @memberof MachineIdentitiesV2026Api
5009
+ */
5010
+ public deleteMachineIdentity(requestParameters: MachineIdentitiesV2026ApiDeleteMachineIdentityRequest, axiosOptions?: RawAxiosRequestConfig) {
5011
+ return MachineIdentitiesV2026ApiFp(this.configuration).deleteMachineIdentity(requestParameters.id, requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(this.axios, this.basePath));
5012
+ }
5013
+
5014
+ /**
5015
+ * This API returns a single machine identity using the Machine Identity ID.
5016
+ * @summary Machine identity details
5017
+ * @param {MachineIdentitiesV2026ApiGetMachineIdentityRequest} requestParameters Request parameters.
5018
+ * @param {*} [axiosOptions] Override http request option.
5019
+ * @throws {RequiredError}
5020
+ * @memberof MachineIdentitiesV2026Api
5021
+ */
5022
+ public getMachineIdentity(requestParameters: MachineIdentitiesV2026ApiGetMachineIdentityRequest, axiosOptions?: RawAxiosRequestConfig) {
5023
+ return MachineIdentitiesV2026ApiFp(this.configuration).getMachineIdentity(requestParameters.id, requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(this.axios, this.basePath));
5024
+ }
5025
+
5026
+ /**
5027
+ * This API returns a list of machine identities.
5028
+ * @summary List machine identities
5029
+ * @param {MachineIdentitiesV2026ApiListMachineIdentitiesRequest} requestParameters Request parameters.
5030
+ * @param {*} [axiosOptions] Override http request option.
5031
+ * @throws {RequiredError}
5032
+ * @memberof MachineIdentitiesV2026Api
5033
+ */
5034
+ public listMachineIdentities(requestParameters: MachineIdentitiesV2026ApiListMachineIdentitiesRequest = {}, axiosOptions?: RawAxiosRequestConfig) {
5035
+ return MachineIdentitiesV2026ApiFp(this.configuration).listMachineIdentities(requestParameters.filters, requestParameters.sorters, requestParameters.xSailPointExperimental, requestParameters.count, requestParameters.limit, requestParameters.offset, axiosOptions).then((request) => request(this.axios, this.basePath));
5036
+ }
5037
+
5038
+ /**
5039
+ * Use this API to update machine identity details.
5040
+ * @summary Update a machine identity
5041
+ * @param {MachineIdentitiesV2026ApiUpdateMachineIdentityRequest} requestParameters Request parameters.
5042
+ * @param {*} [axiosOptions] Override http request option.
5043
+ * @throws {RequiredError}
5044
+ * @memberof MachineIdentitiesV2026Api
5045
+ */
5046
+ public updateMachineIdentity(requestParameters: MachineIdentitiesV2026ApiUpdateMachineIdentityRequest, axiosOptions?: RawAxiosRequestConfig) {
5047
+ return MachineIdentitiesV2026ApiFp(this.configuration).updateMachineIdentity(requestParameters.id, requestParameters.requestBody, requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(this.axios, this.basePath));
5048
+ }
5049
+ }
5050
+
5051
+
5052
+
4043
5053
  /**
4044
5054
  * MachineSubtypeApprovalConfigV2026Api - axios parameter creator
4045
5055
  * @export