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.
- package/beta/README.md +2 -2
- package/beta/api.ts +287 -65
- package/beta/common.ts +2 -2
- package/beta/package.json +1 -1
- package/dist/beta/api.d.ts +283 -64
- package/dist/beta/api.js +35 -36
- package/dist/beta/api.js.map +1 -1
- package/dist/beta/common.js +2 -2
- package/dist/nerm/common.js +2 -2
- package/dist/nermv2025/common.js +2 -2
- package/dist/v2024/api.d.ts +288 -69
- package/dist/v2024/api.js +49 -52
- package/dist/v2024/api.js.map +1 -1
- package/dist/v2024/common.js +2 -2
- package/dist/v2025/api.d.ts +292 -73
- package/dist/v2025/api.js +55 -58
- package/dist/v2025/api.js.map +1 -1
- package/dist/v2025/common.js +2 -2
- package/dist/v2026/api.d.ts +691 -0
- package/dist/v2026/api.js +635 -2
- package/dist/v2026/api.js.map +1 -1
- package/dist/v2026/common.js +2 -2
- package/dist/v3/api.d.ts +47 -11
- package/dist/v3/api.js +22 -18
- package/dist/v3/api.js.map +1 -1
- package/dist/v3/common.js +2 -2
- package/nerm/README.md +2 -2
- package/nerm/common.ts +2 -2
- package/nerm/package.json +1 -1
- package/nermv2025/README.md +2 -2
- package/nermv2025/common.ts +2 -2
- package/nermv2025/package.json +1 -1
- package/package.json +1 -1
- package/v2024/README.md +2 -2
- package/v2024/api.ts +299 -80
- package/v2024/common.ts +2 -2
- package/v2024/package.json +1 -1
- package/v2025/README.md +2 -2
- package/v2025/api.ts +303 -84
- package/v2025/common.ts +2 -2
- package/v2025/package.json +1 -1
- package/v2026/README.md +2 -2
- package/v2026/api.ts +1010 -0
- package/v2026/common.ts +2 -2
- package/v2026/package.json +1 -1
- package/v3/README.md +2 -2
- package/v3/api.ts +50 -11
- package/v3/common.ts +2 -2
- package/v3/package.json +1 -1
package/dist/v2026/api.d.ts
CHANGED
|
@@ -729,6 +729,37 @@ export interface ApproverReferenceV2026 {
|
|
|
729
729
|
*/
|
|
730
730
|
export interface ArrayInnerV2026 {
|
|
731
731
|
}
|
|
732
|
+
/**
|
|
733
|
+
*
|
|
734
|
+
* @export
|
|
735
|
+
* @interface BaseCommonDtoV2026
|
|
736
|
+
*/
|
|
737
|
+
export interface BaseCommonDtoV2026 {
|
|
738
|
+
/**
|
|
739
|
+
* System-generated unique ID of the Object
|
|
740
|
+
* @type {string}
|
|
741
|
+
* @memberof BaseCommonDtoV2026
|
|
742
|
+
*/
|
|
743
|
+
'id'?: string;
|
|
744
|
+
/**
|
|
745
|
+
* Name of the Object
|
|
746
|
+
* @type {string}
|
|
747
|
+
* @memberof BaseCommonDtoV2026
|
|
748
|
+
*/
|
|
749
|
+
'name': string | null;
|
|
750
|
+
/**
|
|
751
|
+
* Creation date of the Object
|
|
752
|
+
* @type {string}
|
|
753
|
+
* @memberof BaseCommonDtoV2026
|
|
754
|
+
*/
|
|
755
|
+
'created'?: string;
|
|
756
|
+
/**
|
|
757
|
+
* Last modification date of the Object
|
|
758
|
+
* @type {string}
|
|
759
|
+
* @memberof BaseCommonDtoV2026
|
|
760
|
+
*/
|
|
761
|
+
'modified'?: string;
|
|
762
|
+
}
|
|
732
763
|
/**
|
|
733
764
|
* Base object for referencing other DTOs, containing type, id, and name fields for identification and display purposes.
|
|
734
765
|
* @export
|
|
@@ -1480,6 +1511,330 @@ export interface MachineAccountSubTypeConfigDtoV2026 {
|
|
|
1480
1511
|
*/
|
|
1481
1512
|
'machineAccountDelete'?: MachineAccountSubTypeConfigDtoMachineAccountDeleteV2026;
|
|
1482
1513
|
}
|
|
1514
|
+
/**
|
|
1515
|
+
* The owner configuration associated to the machine identity
|
|
1516
|
+
* @export
|
|
1517
|
+
* @interface MachineIdentityDtoOwnersV2026
|
|
1518
|
+
*/
|
|
1519
|
+
export interface MachineIdentityDtoOwnersV2026 {
|
|
1520
|
+
/**
|
|
1521
|
+
* Defines the identity which is selected as the primary owner
|
|
1522
|
+
* @type {object}
|
|
1523
|
+
* @memberof MachineIdentityDtoOwnersV2026
|
|
1524
|
+
*/
|
|
1525
|
+
'primaryIdentity': object;
|
|
1526
|
+
/**
|
|
1527
|
+
* Defines the identities which are selected as secondary owners
|
|
1528
|
+
* @type {Array<BaseReferenceDtoV2026>}
|
|
1529
|
+
* @memberof MachineIdentityDtoOwnersV2026
|
|
1530
|
+
*/
|
|
1531
|
+
'secondaryIdentities': Array<BaseReferenceDtoV2026>;
|
|
1532
|
+
}
|
|
1533
|
+
/**
|
|
1534
|
+
*
|
|
1535
|
+
* @export
|
|
1536
|
+
* @interface MachineIdentityRequestUserEntitlementsV2026
|
|
1537
|
+
*/
|
|
1538
|
+
export interface MachineIdentityRequestUserEntitlementsV2026 {
|
|
1539
|
+
/**
|
|
1540
|
+
* The ID of the entitlement
|
|
1541
|
+
* @type {string}
|
|
1542
|
+
* @memberof MachineIdentityRequestUserEntitlementsV2026
|
|
1543
|
+
*/
|
|
1544
|
+
'entitlementId': string;
|
|
1545
|
+
/**
|
|
1546
|
+
* The source ID of the entitlement
|
|
1547
|
+
* @type {string}
|
|
1548
|
+
* @memberof MachineIdentityRequestUserEntitlementsV2026
|
|
1549
|
+
*/
|
|
1550
|
+
'sourceId': string;
|
|
1551
|
+
}
|
|
1552
|
+
/**
|
|
1553
|
+
*
|
|
1554
|
+
* @export
|
|
1555
|
+
* @interface MachineIdentityRequestV2026
|
|
1556
|
+
*/
|
|
1557
|
+
export interface MachineIdentityRequestV2026 {
|
|
1558
|
+
/**
|
|
1559
|
+
* System-generated unique ID of the Object
|
|
1560
|
+
* @type {string}
|
|
1561
|
+
* @memberof MachineIdentityRequestV2026
|
|
1562
|
+
*/
|
|
1563
|
+
'id'?: string;
|
|
1564
|
+
/**
|
|
1565
|
+
* Name of the Object
|
|
1566
|
+
* @type {string}
|
|
1567
|
+
* @memberof MachineIdentityRequestV2026
|
|
1568
|
+
*/
|
|
1569
|
+
'name': string | null;
|
|
1570
|
+
/**
|
|
1571
|
+
* Creation date of the Object
|
|
1572
|
+
* @type {string}
|
|
1573
|
+
* @memberof MachineIdentityRequestV2026
|
|
1574
|
+
*/
|
|
1575
|
+
'created'?: string;
|
|
1576
|
+
/**
|
|
1577
|
+
* Last modification date of the Object
|
|
1578
|
+
* @type {string}
|
|
1579
|
+
* @memberof MachineIdentityRequestV2026
|
|
1580
|
+
*/
|
|
1581
|
+
'modified'?: string;
|
|
1582
|
+
/**
|
|
1583
|
+
* The native identity associated to the machine identity directly aggregated from a source
|
|
1584
|
+
* @type {string}
|
|
1585
|
+
* @memberof MachineIdentityRequestV2026
|
|
1586
|
+
*/
|
|
1587
|
+
'nativeIdentity': string;
|
|
1588
|
+
/**
|
|
1589
|
+
* Description of machine identity
|
|
1590
|
+
* @type {string}
|
|
1591
|
+
* @memberof MachineIdentityRequestV2026
|
|
1592
|
+
*/
|
|
1593
|
+
'description'?: string;
|
|
1594
|
+
/**
|
|
1595
|
+
* A map of custom machine identity attributes
|
|
1596
|
+
* @type {object}
|
|
1597
|
+
* @memberof MachineIdentityRequestV2026
|
|
1598
|
+
*/
|
|
1599
|
+
'attributes'?: object;
|
|
1600
|
+
/**
|
|
1601
|
+
* The subtype value associated to the machine identity
|
|
1602
|
+
* @type {string}
|
|
1603
|
+
* @memberof MachineIdentityRequestV2026
|
|
1604
|
+
*/
|
|
1605
|
+
'subtype': string;
|
|
1606
|
+
/**
|
|
1607
|
+
*
|
|
1608
|
+
* @type {MachineIdentityDtoOwnersV2026}
|
|
1609
|
+
* @memberof MachineIdentityRequestV2026
|
|
1610
|
+
*/
|
|
1611
|
+
'owners'?: MachineIdentityDtoOwnersV2026;
|
|
1612
|
+
/**
|
|
1613
|
+
* The source id associated to the machine identity
|
|
1614
|
+
* @type {string}
|
|
1615
|
+
* @memberof MachineIdentityRequestV2026
|
|
1616
|
+
*/
|
|
1617
|
+
'sourceId'?: string;
|
|
1618
|
+
/**
|
|
1619
|
+
* The UUID associated to the machine identity directly aggregated from a source
|
|
1620
|
+
* @type {string}
|
|
1621
|
+
* @memberof MachineIdentityRequestV2026
|
|
1622
|
+
*/
|
|
1623
|
+
'uuid'?: string;
|
|
1624
|
+
/**
|
|
1625
|
+
* The user entitlements associated to the machine identity
|
|
1626
|
+
* @type {Array<MachineIdentityRequestUserEntitlementsV2026>}
|
|
1627
|
+
* @memberof MachineIdentityRequestV2026
|
|
1628
|
+
*/
|
|
1629
|
+
'userEntitlements'?: Array<MachineIdentityRequestUserEntitlementsV2026>;
|
|
1630
|
+
}
|
|
1631
|
+
/**
|
|
1632
|
+
*
|
|
1633
|
+
* @export
|
|
1634
|
+
* @interface MachineIdentityResponseUserEntitlementsV2026
|
|
1635
|
+
*/
|
|
1636
|
+
export interface MachineIdentityResponseUserEntitlementsV2026 {
|
|
1637
|
+
/**
|
|
1638
|
+
* The source ID of the entitlement
|
|
1639
|
+
* @type {string}
|
|
1640
|
+
* @memberof MachineIdentityResponseUserEntitlementsV2026
|
|
1641
|
+
*/
|
|
1642
|
+
'sourceId'?: string;
|
|
1643
|
+
/**
|
|
1644
|
+
* The ID of the entitlement
|
|
1645
|
+
* @type {string}
|
|
1646
|
+
* @memberof MachineIdentityResponseUserEntitlementsV2026
|
|
1647
|
+
*/
|
|
1648
|
+
'entitlementId'?: string;
|
|
1649
|
+
/**
|
|
1650
|
+
* The display name of the entitlement
|
|
1651
|
+
* @type {string}
|
|
1652
|
+
* @memberof MachineIdentityResponseUserEntitlementsV2026
|
|
1653
|
+
*/
|
|
1654
|
+
'displayName'?: string;
|
|
1655
|
+
/**
|
|
1656
|
+
* The source of the entitlement
|
|
1657
|
+
* @type {object}
|
|
1658
|
+
* @memberof MachineIdentityResponseUserEntitlementsV2026
|
|
1659
|
+
*/
|
|
1660
|
+
'source'?: object;
|
|
1661
|
+
}
|
|
1662
|
+
/**
|
|
1663
|
+
*
|
|
1664
|
+
* @export
|
|
1665
|
+
* @interface MachineIdentityResponseV2026
|
|
1666
|
+
*/
|
|
1667
|
+
export interface MachineIdentityResponseV2026 {
|
|
1668
|
+
/**
|
|
1669
|
+
* System-generated unique ID of the Object
|
|
1670
|
+
* @type {string}
|
|
1671
|
+
* @memberof MachineIdentityResponseV2026
|
|
1672
|
+
*/
|
|
1673
|
+
'id'?: string;
|
|
1674
|
+
/**
|
|
1675
|
+
* Name of the Object
|
|
1676
|
+
* @type {string}
|
|
1677
|
+
* @memberof MachineIdentityResponseV2026
|
|
1678
|
+
*/
|
|
1679
|
+
'name': string | null;
|
|
1680
|
+
/**
|
|
1681
|
+
* Creation date of the Object
|
|
1682
|
+
* @type {string}
|
|
1683
|
+
* @memberof MachineIdentityResponseV2026
|
|
1684
|
+
*/
|
|
1685
|
+
'created'?: string;
|
|
1686
|
+
/**
|
|
1687
|
+
* Last modification date of the Object
|
|
1688
|
+
* @type {string}
|
|
1689
|
+
* @memberof MachineIdentityResponseV2026
|
|
1690
|
+
*/
|
|
1691
|
+
'modified'?: string;
|
|
1692
|
+
/**
|
|
1693
|
+
* The native identity associated to the machine identity directly aggregated from a source
|
|
1694
|
+
* @type {string}
|
|
1695
|
+
* @memberof MachineIdentityResponseV2026
|
|
1696
|
+
*/
|
|
1697
|
+
'nativeIdentity': string;
|
|
1698
|
+
/**
|
|
1699
|
+
* Description of machine identity
|
|
1700
|
+
* @type {string}
|
|
1701
|
+
* @memberof MachineIdentityResponseV2026
|
|
1702
|
+
*/
|
|
1703
|
+
'description'?: string;
|
|
1704
|
+
/**
|
|
1705
|
+
* A map of custom machine identity attributes
|
|
1706
|
+
* @type {object}
|
|
1707
|
+
* @memberof MachineIdentityResponseV2026
|
|
1708
|
+
*/
|
|
1709
|
+
'attributes'?: object;
|
|
1710
|
+
/**
|
|
1711
|
+
* The subtype value associated to the machine identity
|
|
1712
|
+
* @type {string}
|
|
1713
|
+
* @memberof MachineIdentityResponseV2026
|
|
1714
|
+
*/
|
|
1715
|
+
'subtype': string;
|
|
1716
|
+
/**
|
|
1717
|
+
*
|
|
1718
|
+
* @type {MachineIdentityDtoOwnersV2026}
|
|
1719
|
+
* @memberof MachineIdentityResponseV2026
|
|
1720
|
+
*/
|
|
1721
|
+
'owners'?: MachineIdentityDtoOwnersV2026;
|
|
1722
|
+
/**
|
|
1723
|
+
* The source id associated to the machine identity
|
|
1724
|
+
* @type {string}
|
|
1725
|
+
* @memberof MachineIdentityResponseV2026
|
|
1726
|
+
*/
|
|
1727
|
+
'sourceId'?: string;
|
|
1728
|
+
/**
|
|
1729
|
+
* The UUID associated to the machine identity directly aggregated from a source
|
|
1730
|
+
* @type {string}
|
|
1731
|
+
* @memberof MachineIdentityResponseV2026
|
|
1732
|
+
*/
|
|
1733
|
+
'uuid'?: string;
|
|
1734
|
+
/**
|
|
1735
|
+
* Indicates if the machine identity has been manually edited
|
|
1736
|
+
* @type {boolean}
|
|
1737
|
+
* @memberof MachineIdentityResponseV2026
|
|
1738
|
+
*/
|
|
1739
|
+
'manuallyEdited'?: boolean;
|
|
1740
|
+
/**
|
|
1741
|
+
* Indicates if the machine identity has been manually created
|
|
1742
|
+
* @type {boolean}
|
|
1743
|
+
* @memberof MachineIdentityResponseV2026
|
|
1744
|
+
*/
|
|
1745
|
+
'manuallyCreated'?: boolean;
|
|
1746
|
+
/**
|
|
1747
|
+
* The source of the machine identity
|
|
1748
|
+
* @type {object}
|
|
1749
|
+
* @memberof MachineIdentityResponseV2026
|
|
1750
|
+
*/
|
|
1751
|
+
'source'?: object;
|
|
1752
|
+
/**
|
|
1753
|
+
* The dataset id associated to the source in which the identity was retrieved from
|
|
1754
|
+
* @type {string}
|
|
1755
|
+
* @memberof MachineIdentityResponseV2026
|
|
1756
|
+
*/
|
|
1757
|
+
'datasetId'?: string;
|
|
1758
|
+
/**
|
|
1759
|
+
* The user entitlements associated to the machine identity
|
|
1760
|
+
* @type {Array<MachineIdentityResponseUserEntitlementsV2026>}
|
|
1761
|
+
* @memberof MachineIdentityResponseV2026
|
|
1762
|
+
*/
|
|
1763
|
+
'userEntitlements'?: Array<MachineIdentityResponseUserEntitlementsV2026>;
|
|
1764
|
+
}
|
|
1765
|
+
/**
|
|
1766
|
+
*
|
|
1767
|
+
* @export
|
|
1768
|
+
* @interface MachineIdentityV2026
|
|
1769
|
+
*/
|
|
1770
|
+
export interface MachineIdentityV2026 {
|
|
1771
|
+
/**
|
|
1772
|
+
* System-generated unique ID of the Object
|
|
1773
|
+
* @type {string}
|
|
1774
|
+
* @memberof MachineIdentityV2026
|
|
1775
|
+
*/
|
|
1776
|
+
'id'?: string;
|
|
1777
|
+
/**
|
|
1778
|
+
* Name of the Object
|
|
1779
|
+
* @type {string}
|
|
1780
|
+
* @memberof MachineIdentityV2026
|
|
1781
|
+
*/
|
|
1782
|
+
'name': string | null;
|
|
1783
|
+
/**
|
|
1784
|
+
* Creation date of the Object
|
|
1785
|
+
* @type {string}
|
|
1786
|
+
* @memberof MachineIdentityV2026
|
|
1787
|
+
*/
|
|
1788
|
+
'created'?: string;
|
|
1789
|
+
/**
|
|
1790
|
+
* Last modification date of the Object
|
|
1791
|
+
* @type {string}
|
|
1792
|
+
* @memberof MachineIdentityV2026
|
|
1793
|
+
*/
|
|
1794
|
+
'modified'?: string;
|
|
1795
|
+
/**
|
|
1796
|
+
* The native identity associated to the machine identity directly aggregated from a source
|
|
1797
|
+
* @type {string}
|
|
1798
|
+
* @memberof MachineIdentityV2026
|
|
1799
|
+
*/
|
|
1800
|
+
'nativeIdentity': string;
|
|
1801
|
+
/**
|
|
1802
|
+
* Description of machine identity
|
|
1803
|
+
* @type {string}
|
|
1804
|
+
* @memberof MachineIdentityV2026
|
|
1805
|
+
*/
|
|
1806
|
+
'description'?: string;
|
|
1807
|
+
/**
|
|
1808
|
+
* A map of custom machine identity attributes
|
|
1809
|
+
* @type {object}
|
|
1810
|
+
* @memberof MachineIdentityV2026
|
|
1811
|
+
*/
|
|
1812
|
+
'attributes'?: object;
|
|
1813
|
+
/**
|
|
1814
|
+
* The subtype value associated to the machine identity
|
|
1815
|
+
* @type {string}
|
|
1816
|
+
* @memberof MachineIdentityV2026
|
|
1817
|
+
*/
|
|
1818
|
+
'subtype': string;
|
|
1819
|
+
/**
|
|
1820
|
+
*
|
|
1821
|
+
* @type {MachineIdentityDtoOwnersV2026}
|
|
1822
|
+
* @memberof MachineIdentityV2026
|
|
1823
|
+
*/
|
|
1824
|
+
'owners'?: MachineIdentityDtoOwnersV2026;
|
|
1825
|
+
/**
|
|
1826
|
+
* The source id associated to the machine identity
|
|
1827
|
+
* @type {string}
|
|
1828
|
+
* @memberof MachineIdentityV2026
|
|
1829
|
+
*/
|
|
1830
|
+
'sourceId'?: string;
|
|
1831
|
+
/**
|
|
1832
|
+
* The UUID associated to the machine identity directly aggregated from a source
|
|
1833
|
+
* @type {string}
|
|
1834
|
+
* @memberof MachineIdentityV2026
|
|
1835
|
+
*/
|
|
1836
|
+
'uuid'?: string;
|
|
1837
|
+
}
|
|
1483
1838
|
/**
|
|
1484
1839
|
* 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.
|
|
1485
1840
|
* @export
|
|
@@ -3002,6 +3357,342 @@ export declare class MachineAccountDeletionApprovalConfigV2026Api extends BaseAP
|
|
|
3002
3357
|
*/
|
|
3003
3358
|
updateMachineAccountDeletionApprovalConfig(requestParameters: MachineAccountDeletionApprovalConfigV2026ApiUpdateMachineAccountDeletionApprovalConfigRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AccountDeleteConfigDtoV2026, any>>;
|
|
3004
3359
|
}
|
|
3360
|
+
/**
|
|
3361
|
+
* MachineIdentitiesV2026Api - axios parameter creator
|
|
3362
|
+
* @export
|
|
3363
|
+
*/
|
|
3364
|
+
export declare const MachineIdentitiesV2026ApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
3365
|
+
/**
|
|
3366
|
+
* Use this API to create a machine identity. The maximum supported length for the description field is 2000 characters.
|
|
3367
|
+
* @summary Create machine identities
|
|
3368
|
+
* @param {MachineIdentityRequestV2026} machineIdentityRequestV2026
|
|
3369
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
3370
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
3371
|
+
* @throws {RequiredError}
|
|
3372
|
+
*/
|
|
3373
|
+
createMachineIdentity: (machineIdentityRequestV2026: MachineIdentityRequestV2026, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
3374
|
+
/**
|
|
3375
|
+
* The API returns successful response if the requested machine identity was deleted.
|
|
3376
|
+
* @summary Delete machine identity
|
|
3377
|
+
* @param {string} id Machine Identity ID
|
|
3378
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
3379
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
3380
|
+
* @throws {RequiredError}
|
|
3381
|
+
*/
|
|
3382
|
+
deleteMachineIdentity: (id: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
3383
|
+
/**
|
|
3384
|
+
* This API returns a single machine identity using the Machine Identity ID.
|
|
3385
|
+
* @summary Machine identity details
|
|
3386
|
+
* @param {string} id Machine Identity ID
|
|
3387
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
3388
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
3389
|
+
* @throws {RequiredError}
|
|
3390
|
+
*/
|
|
3391
|
+
getMachineIdentity: (id: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
3392
|
+
/**
|
|
3393
|
+
* This API returns a list of machine identities.
|
|
3394
|
+
* @summary List machine identities
|
|
3395
|
+
* @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*
|
|
3396
|
+
* @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**
|
|
3397
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
3398
|
+
* @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=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.
|
|
3399
|
+
* @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.
|
|
3400
|
+
* @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.
|
|
3401
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
3402
|
+
* @throws {RequiredError}
|
|
3403
|
+
*/
|
|
3404
|
+
listMachineIdentities: (filters?: string, sorters?: string, xSailPointExperimental?: string, count?: boolean, limit?: number, offset?: number, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
3405
|
+
/**
|
|
3406
|
+
* Use this API to update machine identity details.
|
|
3407
|
+
* @summary Update a machine identity
|
|
3408
|
+
* @param {string} id Machine Identity ID.
|
|
3409
|
+
* @param {Array<object>} requestBody A JSON of updated values [JSON Patch](https://tools.ietf.org/html/rfc6902) standard.
|
|
3410
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
3411
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
3412
|
+
* @throws {RequiredError}
|
|
3413
|
+
*/
|
|
3414
|
+
updateMachineIdentity: (id: string, requestBody: Array<object>, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
3415
|
+
};
|
|
3416
|
+
/**
|
|
3417
|
+
* MachineIdentitiesV2026Api - functional programming interface
|
|
3418
|
+
* @export
|
|
3419
|
+
*/
|
|
3420
|
+
export declare const MachineIdentitiesV2026ApiFp: (configuration?: Configuration) => {
|
|
3421
|
+
/**
|
|
3422
|
+
* Use this API to create a machine identity. The maximum supported length for the description field is 2000 characters.
|
|
3423
|
+
* @summary Create machine identities
|
|
3424
|
+
* @param {MachineIdentityRequestV2026} machineIdentityRequestV2026
|
|
3425
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
3426
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
3427
|
+
* @throws {RequiredError}
|
|
3428
|
+
*/
|
|
3429
|
+
createMachineIdentity(machineIdentityRequestV2026: MachineIdentityRequestV2026, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MachineIdentityResponseV2026>>;
|
|
3430
|
+
/**
|
|
3431
|
+
* The API returns successful response if the requested machine identity was deleted.
|
|
3432
|
+
* @summary Delete machine identity
|
|
3433
|
+
* @param {string} id Machine Identity ID
|
|
3434
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
3435
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
3436
|
+
* @throws {RequiredError}
|
|
3437
|
+
*/
|
|
3438
|
+
deleteMachineIdentity(id: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
3439
|
+
/**
|
|
3440
|
+
* This API returns a single machine identity using the Machine Identity ID.
|
|
3441
|
+
* @summary Machine identity details
|
|
3442
|
+
* @param {string} id Machine Identity ID
|
|
3443
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
3444
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
3445
|
+
* @throws {RequiredError}
|
|
3446
|
+
*/
|
|
3447
|
+
getMachineIdentity(id: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MachineIdentityResponseV2026>>;
|
|
3448
|
+
/**
|
|
3449
|
+
* This API returns a list of machine identities.
|
|
3450
|
+
* @summary List machine identities
|
|
3451
|
+
* @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*
|
|
3452
|
+
* @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**
|
|
3453
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
3454
|
+
* @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=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.
|
|
3455
|
+
* @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.
|
|
3456
|
+
* @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.
|
|
3457
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
3458
|
+
* @throws {RequiredError}
|
|
3459
|
+
*/
|
|
3460
|
+
listMachineIdentities(filters?: string, sorters?: string, xSailPointExperimental?: string, count?: boolean, limit?: number, offset?: number, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<MachineIdentityResponseV2026>>>;
|
|
3461
|
+
/**
|
|
3462
|
+
* Use this API to update machine identity details.
|
|
3463
|
+
* @summary Update a machine identity
|
|
3464
|
+
* @param {string} id Machine Identity ID.
|
|
3465
|
+
* @param {Array<object>} requestBody A JSON of updated values [JSON Patch](https://tools.ietf.org/html/rfc6902) standard.
|
|
3466
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
3467
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
3468
|
+
* @throws {RequiredError}
|
|
3469
|
+
*/
|
|
3470
|
+
updateMachineIdentity(id: string, requestBody: Array<object>, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MachineIdentityResponseV2026>>;
|
|
3471
|
+
};
|
|
3472
|
+
/**
|
|
3473
|
+
* MachineIdentitiesV2026Api - factory interface
|
|
3474
|
+
* @export
|
|
3475
|
+
*/
|
|
3476
|
+
export declare const MachineIdentitiesV2026ApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
3477
|
+
/**
|
|
3478
|
+
* Use this API to create a machine identity. The maximum supported length for the description field is 2000 characters.
|
|
3479
|
+
* @summary Create machine identities
|
|
3480
|
+
* @param {MachineIdentitiesV2026ApiCreateMachineIdentityRequest} requestParameters Request parameters.
|
|
3481
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
3482
|
+
* @throws {RequiredError}
|
|
3483
|
+
*/
|
|
3484
|
+
createMachineIdentity(requestParameters: MachineIdentitiesV2026ApiCreateMachineIdentityRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<MachineIdentityResponseV2026>;
|
|
3485
|
+
/**
|
|
3486
|
+
* The API returns successful response if the requested machine identity was deleted.
|
|
3487
|
+
* @summary Delete machine identity
|
|
3488
|
+
* @param {MachineIdentitiesV2026ApiDeleteMachineIdentityRequest} requestParameters Request parameters.
|
|
3489
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
3490
|
+
* @throws {RequiredError}
|
|
3491
|
+
*/
|
|
3492
|
+
deleteMachineIdentity(requestParameters: MachineIdentitiesV2026ApiDeleteMachineIdentityRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
3493
|
+
/**
|
|
3494
|
+
* This API returns a single machine identity using the Machine Identity ID.
|
|
3495
|
+
* @summary Machine identity details
|
|
3496
|
+
* @param {MachineIdentitiesV2026ApiGetMachineIdentityRequest} requestParameters Request parameters.
|
|
3497
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
3498
|
+
* @throws {RequiredError}
|
|
3499
|
+
*/
|
|
3500
|
+
getMachineIdentity(requestParameters: MachineIdentitiesV2026ApiGetMachineIdentityRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<MachineIdentityResponseV2026>;
|
|
3501
|
+
/**
|
|
3502
|
+
* This API returns a list of machine identities.
|
|
3503
|
+
* @summary List machine identities
|
|
3504
|
+
* @param {MachineIdentitiesV2026ApiListMachineIdentitiesRequest} requestParameters Request parameters.
|
|
3505
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
3506
|
+
* @throws {RequiredError}
|
|
3507
|
+
*/
|
|
3508
|
+
listMachineIdentities(requestParameters?: MachineIdentitiesV2026ApiListMachineIdentitiesRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<MachineIdentityResponseV2026>>;
|
|
3509
|
+
/**
|
|
3510
|
+
* Use this API to update machine identity details.
|
|
3511
|
+
* @summary Update a machine identity
|
|
3512
|
+
* @param {MachineIdentitiesV2026ApiUpdateMachineIdentityRequest} requestParameters Request parameters.
|
|
3513
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
3514
|
+
* @throws {RequiredError}
|
|
3515
|
+
*/
|
|
3516
|
+
updateMachineIdentity(requestParameters: MachineIdentitiesV2026ApiUpdateMachineIdentityRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<MachineIdentityResponseV2026>;
|
|
3517
|
+
};
|
|
3518
|
+
/**
|
|
3519
|
+
* Request parameters for createMachineIdentity operation in MachineIdentitiesV2026Api.
|
|
3520
|
+
* @export
|
|
3521
|
+
* @interface MachineIdentitiesV2026ApiCreateMachineIdentityRequest
|
|
3522
|
+
*/
|
|
3523
|
+
export interface MachineIdentitiesV2026ApiCreateMachineIdentityRequest {
|
|
3524
|
+
/**
|
|
3525
|
+
*
|
|
3526
|
+
* @type {MachineIdentityRequestV2026}
|
|
3527
|
+
* @memberof MachineIdentitiesV2026ApiCreateMachineIdentity
|
|
3528
|
+
*/
|
|
3529
|
+
readonly machineIdentityRequestV2026: MachineIdentityRequestV2026;
|
|
3530
|
+
/**
|
|
3531
|
+
* Use this header to enable this experimental API.
|
|
3532
|
+
* @type {string}
|
|
3533
|
+
* @memberof MachineIdentitiesV2026ApiCreateMachineIdentity
|
|
3534
|
+
*/
|
|
3535
|
+
readonly xSailPointExperimental?: string;
|
|
3536
|
+
}
|
|
3537
|
+
/**
|
|
3538
|
+
* Request parameters for deleteMachineIdentity operation in MachineIdentitiesV2026Api.
|
|
3539
|
+
* @export
|
|
3540
|
+
* @interface MachineIdentitiesV2026ApiDeleteMachineIdentityRequest
|
|
3541
|
+
*/
|
|
3542
|
+
export interface MachineIdentitiesV2026ApiDeleteMachineIdentityRequest {
|
|
3543
|
+
/**
|
|
3544
|
+
* Machine Identity ID
|
|
3545
|
+
* @type {string}
|
|
3546
|
+
* @memberof MachineIdentitiesV2026ApiDeleteMachineIdentity
|
|
3547
|
+
*/
|
|
3548
|
+
readonly id: string;
|
|
3549
|
+
/**
|
|
3550
|
+
* Use this header to enable this experimental API.
|
|
3551
|
+
* @type {string}
|
|
3552
|
+
* @memberof MachineIdentitiesV2026ApiDeleteMachineIdentity
|
|
3553
|
+
*/
|
|
3554
|
+
readonly xSailPointExperimental?: string;
|
|
3555
|
+
}
|
|
3556
|
+
/**
|
|
3557
|
+
* Request parameters for getMachineIdentity operation in MachineIdentitiesV2026Api.
|
|
3558
|
+
* @export
|
|
3559
|
+
* @interface MachineIdentitiesV2026ApiGetMachineIdentityRequest
|
|
3560
|
+
*/
|
|
3561
|
+
export interface MachineIdentitiesV2026ApiGetMachineIdentityRequest {
|
|
3562
|
+
/**
|
|
3563
|
+
* Machine Identity ID
|
|
3564
|
+
* @type {string}
|
|
3565
|
+
* @memberof MachineIdentitiesV2026ApiGetMachineIdentity
|
|
3566
|
+
*/
|
|
3567
|
+
readonly id: string;
|
|
3568
|
+
/**
|
|
3569
|
+
* Use this header to enable this experimental API.
|
|
3570
|
+
* @type {string}
|
|
3571
|
+
* @memberof MachineIdentitiesV2026ApiGetMachineIdentity
|
|
3572
|
+
*/
|
|
3573
|
+
readonly xSailPointExperimental?: string;
|
|
3574
|
+
}
|
|
3575
|
+
/**
|
|
3576
|
+
* Request parameters for listMachineIdentities operation in MachineIdentitiesV2026Api.
|
|
3577
|
+
* @export
|
|
3578
|
+
* @interface MachineIdentitiesV2026ApiListMachineIdentitiesRequest
|
|
3579
|
+
*/
|
|
3580
|
+
export interface MachineIdentitiesV2026ApiListMachineIdentitiesRequest {
|
|
3581
|
+
/**
|
|
3582
|
+
* 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*
|
|
3583
|
+
* @type {string}
|
|
3584
|
+
* @memberof MachineIdentitiesV2026ApiListMachineIdentities
|
|
3585
|
+
*/
|
|
3586
|
+
readonly filters?: string;
|
|
3587
|
+
/**
|
|
3588
|
+
* 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**
|
|
3589
|
+
* @type {string}
|
|
3590
|
+
* @memberof MachineIdentitiesV2026ApiListMachineIdentities
|
|
3591
|
+
*/
|
|
3592
|
+
readonly sorters?: string;
|
|
3593
|
+
/**
|
|
3594
|
+
* Use this header to enable this experimental API.
|
|
3595
|
+
* @type {string}
|
|
3596
|
+
* @memberof MachineIdentitiesV2026ApiListMachineIdentities
|
|
3597
|
+
*/
|
|
3598
|
+
readonly xSailPointExperimental?: string;
|
|
3599
|
+
/**
|
|
3600
|
+
* 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=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.
|
|
3601
|
+
* @type {boolean}
|
|
3602
|
+
* @memberof MachineIdentitiesV2026ApiListMachineIdentities
|
|
3603
|
+
*/
|
|
3604
|
+
readonly count?: boolean;
|
|
3605
|
+
/**
|
|
3606
|
+
* Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
3607
|
+
* @type {number}
|
|
3608
|
+
* @memberof MachineIdentitiesV2026ApiListMachineIdentities
|
|
3609
|
+
*/
|
|
3610
|
+
readonly limit?: number;
|
|
3611
|
+
/**
|
|
3612
|
+
* 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.
|
|
3613
|
+
* @type {number}
|
|
3614
|
+
* @memberof MachineIdentitiesV2026ApiListMachineIdentities
|
|
3615
|
+
*/
|
|
3616
|
+
readonly offset?: number;
|
|
3617
|
+
}
|
|
3618
|
+
/**
|
|
3619
|
+
* Request parameters for updateMachineIdentity operation in MachineIdentitiesV2026Api.
|
|
3620
|
+
* @export
|
|
3621
|
+
* @interface MachineIdentitiesV2026ApiUpdateMachineIdentityRequest
|
|
3622
|
+
*/
|
|
3623
|
+
export interface MachineIdentitiesV2026ApiUpdateMachineIdentityRequest {
|
|
3624
|
+
/**
|
|
3625
|
+
* Machine Identity ID.
|
|
3626
|
+
* @type {string}
|
|
3627
|
+
* @memberof MachineIdentitiesV2026ApiUpdateMachineIdentity
|
|
3628
|
+
*/
|
|
3629
|
+
readonly id: string;
|
|
3630
|
+
/**
|
|
3631
|
+
* A JSON of updated values [JSON Patch](https://tools.ietf.org/html/rfc6902) standard.
|
|
3632
|
+
* @type {Array<object>}
|
|
3633
|
+
* @memberof MachineIdentitiesV2026ApiUpdateMachineIdentity
|
|
3634
|
+
*/
|
|
3635
|
+
readonly requestBody: Array<object>;
|
|
3636
|
+
/**
|
|
3637
|
+
* Use this header to enable this experimental API.
|
|
3638
|
+
* @type {string}
|
|
3639
|
+
* @memberof MachineIdentitiesV2026ApiUpdateMachineIdentity
|
|
3640
|
+
*/
|
|
3641
|
+
readonly xSailPointExperimental?: string;
|
|
3642
|
+
}
|
|
3643
|
+
/**
|
|
3644
|
+
* MachineIdentitiesV2026Api - object-oriented interface
|
|
3645
|
+
* @export
|
|
3646
|
+
* @class MachineIdentitiesV2026Api
|
|
3647
|
+
* @extends {BaseAPI}
|
|
3648
|
+
*/
|
|
3649
|
+
export declare class MachineIdentitiesV2026Api extends BaseAPI {
|
|
3650
|
+
/**
|
|
3651
|
+
* Use this API to create a machine identity. The maximum supported length for the description field is 2000 characters.
|
|
3652
|
+
* @summary Create machine identities
|
|
3653
|
+
* @param {MachineIdentitiesV2026ApiCreateMachineIdentityRequest} requestParameters Request parameters.
|
|
3654
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
3655
|
+
* @throws {RequiredError}
|
|
3656
|
+
* @memberof MachineIdentitiesV2026Api
|
|
3657
|
+
*/
|
|
3658
|
+
createMachineIdentity(requestParameters: MachineIdentitiesV2026ApiCreateMachineIdentityRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<MachineIdentityResponseV2026, any>>;
|
|
3659
|
+
/**
|
|
3660
|
+
* The API returns successful response if the requested machine identity was deleted.
|
|
3661
|
+
* @summary Delete machine identity
|
|
3662
|
+
* @param {MachineIdentitiesV2026ApiDeleteMachineIdentityRequest} requestParameters Request parameters.
|
|
3663
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
3664
|
+
* @throws {RequiredError}
|
|
3665
|
+
* @memberof MachineIdentitiesV2026Api
|
|
3666
|
+
*/
|
|
3667
|
+
deleteMachineIdentity(requestParameters: MachineIdentitiesV2026ApiDeleteMachineIdentityRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
3668
|
+
/**
|
|
3669
|
+
* This API returns a single machine identity using the Machine Identity ID.
|
|
3670
|
+
* @summary Machine identity details
|
|
3671
|
+
* @param {MachineIdentitiesV2026ApiGetMachineIdentityRequest} requestParameters Request parameters.
|
|
3672
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
3673
|
+
* @throws {RequiredError}
|
|
3674
|
+
* @memberof MachineIdentitiesV2026Api
|
|
3675
|
+
*/
|
|
3676
|
+
getMachineIdentity(requestParameters: MachineIdentitiesV2026ApiGetMachineIdentityRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<MachineIdentityResponseV2026, any>>;
|
|
3677
|
+
/**
|
|
3678
|
+
* This API returns a list of machine identities.
|
|
3679
|
+
* @summary List machine identities
|
|
3680
|
+
* @param {MachineIdentitiesV2026ApiListMachineIdentitiesRequest} requestParameters Request parameters.
|
|
3681
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
3682
|
+
* @throws {RequiredError}
|
|
3683
|
+
* @memberof MachineIdentitiesV2026Api
|
|
3684
|
+
*/
|
|
3685
|
+
listMachineIdentities(requestParameters?: MachineIdentitiesV2026ApiListMachineIdentitiesRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<MachineIdentityResponseV2026[], any>>;
|
|
3686
|
+
/**
|
|
3687
|
+
* Use this API to update machine identity details.
|
|
3688
|
+
* @summary Update a machine identity
|
|
3689
|
+
* @param {MachineIdentitiesV2026ApiUpdateMachineIdentityRequest} requestParameters Request parameters.
|
|
3690
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
3691
|
+
* @throws {RequiredError}
|
|
3692
|
+
* @memberof MachineIdentitiesV2026Api
|
|
3693
|
+
*/
|
|
3694
|
+
updateMachineIdentity(requestParameters: MachineIdentitiesV2026ApiUpdateMachineIdentityRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<MachineIdentityResponseV2026, any>>;
|
|
3695
|
+
}
|
|
3005
3696
|
/**
|
|
3006
3697
|
* MachineSubtypeApprovalConfigV2026Api - axios parameter creator
|
|
3007
3698
|
* @export
|