sailpoint-api-client 1.0.3 → 1.0.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 +408 -288
- package/beta/common.ts +2 -2
- package/beta/package.json +1 -1
- package/cc/README.md +2 -2
- package/cc/api.ts +1096 -9
- package/cc/common.ts +2 -2
- package/cc/package.json +1 -1
- package/dist/beta/api.d.ts +361 -278
- package/dist/beta/api.js +284 -184
- package/dist/beta/api.js.map +1 -1
- package/dist/beta/common.js +2 -2
- package/dist/cc/api.d.ts +1055 -11
- package/dist/cc/api.js +95 -0
- package/dist/cc/api.js.map +1 -1
- package/dist/cc/common.js +2 -2
- package/dist/v2/common.js +2 -2
- package/dist/v3/api.d.ts +90 -78
- package/dist/v3/api.js +43 -43
- package/dist/v3/api.js.map +1 -1
- package/dist/v3/common.js +2 -2
- package/package.json +1 -1
- package/v2/README.md +2 -2
- package/v2/common.ts +2 -2
- package/v2/package.json +1 -1
- package/v3/README.md +2 -2
- package/v3/api.ts +90 -78
- package/v3/common.ts +2 -2
- package/v3/package.json +1 -1
package/dist/beta/api.d.ts
CHANGED
|
@@ -1622,83 +1622,91 @@ export declare type AccountAggregationStatusBetaStatusEnum = typeof AccountAggre
|
|
|
1622
1622
|
*/
|
|
1623
1623
|
export interface AccountAllOfBeta {
|
|
1624
1624
|
/**
|
|
1625
|
-
*
|
|
1625
|
+
* The unique ID of the source this account belongs to
|
|
1626
1626
|
* @type {string}
|
|
1627
1627
|
* @memberof AccountAllOfBeta
|
|
1628
1628
|
*/
|
|
1629
|
-
'sourceId'
|
|
1629
|
+
'sourceId': string;
|
|
1630
1630
|
/**
|
|
1631
|
-
*
|
|
1631
|
+
* The display name of the source this account belongs to
|
|
1632
|
+
* @type {string}
|
|
1633
|
+
* @memberof AccountAllOfBeta
|
|
1634
|
+
*/
|
|
1635
|
+
'sourceName': string;
|
|
1636
|
+
/**
|
|
1637
|
+
* The unique ID of the identity this account is correlated to
|
|
1632
1638
|
* @type {string}
|
|
1633
1639
|
* @memberof AccountAllOfBeta
|
|
1634
1640
|
*/
|
|
1635
1641
|
'identityId'?: string;
|
|
1636
1642
|
/**
|
|
1637
|
-
*
|
|
1638
|
-
* @type {
|
|
1643
|
+
* The account attributes that are aggregated
|
|
1644
|
+
* @type {{ [key: string]: any; }}
|
|
1639
1645
|
* @memberof AccountAllOfBeta
|
|
1640
1646
|
*/
|
|
1641
|
-
'attributes'
|
|
1647
|
+
'attributes': {
|
|
1648
|
+
[key: string]: any;
|
|
1649
|
+
};
|
|
1642
1650
|
/**
|
|
1643
|
-
*
|
|
1651
|
+
* Indicates if this account is from an authoritative source
|
|
1644
1652
|
* @type {boolean}
|
|
1645
1653
|
* @memberof AccountAllOfBeta
|
|
1646
1654
|
*/
|
|
1647
|
-
'authoritative'
|
|
1655
|
+
'authoritative': boolean;
|
|
1648
1656
|
/**
|
|
1649
|
-
*
|
|
1657
|
+
* A description of the account
|
|
1650
1658
|
* @type {string}
|
|
1651
1659
|
* @memberof AccountAllOfBeta
|
|
1652
1660
|
*/
|
|
1653
|
-
'description'?: string;
|
|
1661
|
+
'description'?: string | null;
|
|
1654
1662
|
/**
|
|
1655
|
-
*
|
|
1663
|
+
* Indicates if the account is currently disabled
|
|
1656
1664
|
* @type {boolean}
|
|
1657
1665
|
* @memberof AccountAllOfBeta
|
|
1658
1666
|
*/
|
|
1659
|
-
'disabled'
|
|
1667
|
+
'disabled': boolean;
|
|
1660
1668
|
/**
|
|
1661
|
-
*
|
|
1669
|
+
* Indicates if the account is currently locked
|
|
1662
1670
|
* @type {boolean}
|
|
1663
1671
|
* @memberof AccountAllOfBeta
|
|
1664
1672
|
*/
|
|
1665
|
-
'locked'
|
|
1673
|
+
'locked': boolean;
|
|
1666
1674
|
/**
|
|
1667
|
-
*
|
|
1675
|
+
* The unique ID of the account generated by the source system
|
|
1668
1676
|
* @type {string}
|
|
1669
1677
|
* @memberof AccountAllOfBeta
|
|
1670
1678
|
*/
|
|
1671
|
-
'nativeIdentity'
|
|
1679
|
+
'nativeIdentity': string;
|
|
1672
1680
|
/**
|
|
1673
|
-
*
|
|
1681
|
+
* If true, this is a user account within IdentityNow. If false, this is an account from a source system.
|
|
1674
1682
|
* @type {boolean}
|
|
1675
1683
|
* @memberof AccountAllOfBeta
|
|
1676
1684
|
*/
|
|
1677
|
-
'systemAccount'
|
|
1685
|
+
'systemAccount': boolean;
|
|
1678
1686
|
/**
|
|
1679
|
-
*
|
|
1687
|
+
* Indicates if this account is not correlated to an identity
|
|
1680
1688
|
* @type {boolean}
|
|
1681
1689
|
* @memberof AccountAllOfBeta
|
|
1682
1690
|
*/
|
|
1683
|
-
'uncorrelated'
|
|
1691
|
+
'uncorrelated': boolean;
|
|
1684
1692
|
/**
|
|
1685
|
-
*
|
|
1693
|
+
* The unique ID of the account as determined by the account schema
|
|
1686
1694
|
* @type {string}
|
|
1687
1695
|
* @memberof AccountAllOfBeta
|
|
1688
1696
|
*/
|
|
1689
|
-
'uuid'?: string;
|
|
1697
|
+
'uuid'?: string | null;
|
|
1690
1698
|
/**
|
|
1691
|
-
*
|
|
1699
|
+
* Indicates if the account has been manually correlated to an identity
|
|
1692
1700
|
* @type {boolean}
|
|
1693
1701
|
* @memberof AccountAllOfBeta
|
|
1694
1702
|
*/
|
|
1695
|
-
'manuallyCorrelated'
|
|
1703
|
+
'manuallyCorrelated': boolean;
|
|
1696
1704
|
/**
|
|
1697
|
-
*
|
|
1705
|
+
* Indicates if the account has entitlements
|
|
1698
1706
|
* @type {boolean}
|
|
1699
1707
|
* @memberof AccountAllOfBeta
|
|
1700
1708
|
*/
|
|
1701
|
-
'hasEntitlements'
|
|
1709
|
+
'hasEntitlements': boolean;
|
|
1702
1710
|
}
|
|
1703
1711
|
/**
|
|
1704
1712
|
*
|
|
@@ -1775,83 +1783,91 @@ export interface AccountBeta {
|
|
|
1775
1783
|
*/
|
|
1776
1784
|
'modified'?: string;
|
|
1777
1785
|
/**
|
|
1778
|
-
*
|
|
1786
|
+
* The unique ID of the source this account belongs to
|
|
1779
1787
|
* @type {string}
|
|
1780
1788
|
* @memberof AccountBeta
|
|
1781
1789
|
*/
|
|
1782
|
-
'sourceId'
|
|
1790
|
+
'sourceId': string;
|
|
1783
1791
|
/**
|
|
1784
|
-
*
|
|
1792
|
+
* The display name of the source this account belongs to
|
|
1793
|
+
* @type {string}
|
|
1794
|
+
* @memberof AccountBeta
|
|
1795
|
+
*/
|
|
1796
|
+
'sourceName': string;
|
|
1797
|
+
/**
|
|
1798
|
+
* The unique ID of the identity this account is correlated to
|
|
1785
1799
|
* @type {string}
|
|
1786
1800
|
* @memberof AccountBeta
|
|
1787
1801
|
*/
|
|
1788
1802
|
'identityId'?: string;
|
|
1789
1803
|
/**
|
|
1790
|
-
*
|
|
1791
|
-
* @type {
|
|
1804
|
+
* The account attributes that are aggregated
|
|
1805
|
+
* @type {{ [key: string]: any; }}
|
|
1792
1806
|
* @memberof AccountBeta
|
|
1793
1807
|
*/
|
|
1794
|
-
'attributes'
|
|
1808
|
+
'attributes': {
|
|
1809
|
+
[key: string]: any;
|
|
1810
|
+
};
|
|
1795
1811
|
/**
|
|
1796
|
-
*
|
|
1812
|
+
* Indicates if this account is from an authoritative source
|
|
1797
1813
|
* @type {boolean}
|
|
1798
1814
|
* @memberof AccountBeta
|
|
1799
1815
|
*/
|
|
1800
|
-
'authoritative'
|
|
1816
|
+
'authoritative': boolean;
|
|
1801
1817
|
/**
|
|
1802
|
-
*
|
|
1818
|
+
* A description of the account
|
|
1803
1819
|
* @type {string}
|
|
1804
1820
|
* @memberof AccountBeta
|
|
1805
1821
|
*/
|
|
1806
|
-
'description'?: string;
|
|
1822
|
+
'description'?: string | null;
|
|
1807
1823
|
/**
|
|
1808
|
-
*
|
|
1824
|
+
* Indicates if the account is currently disabled
|
|
1809
1825
|
* @type {boolean}
|
|
1810
1826
|
* @memberof AccountBeta
|
|
1811
1827
|
*/
|
|
1812
|
-
'disabled'
|
|
1828
|
+
'disabled': boolean;
|
|
1813
1829
|
/**
|
|
1814
|
-
*
|
|
1830
|
+
* Indicates if the account is currently locked
|
|
1815
1831
|
* @type {boolean}
|
|
1816
1832
|
* @memberof AccountBeta
|
|
1817
1833
|
*/
|
|
1818
|
-
'locked'
|
|
1834
|
+
'locked': boolean;
|
|
1819
1835
|
/**
|
|
1820
|
-
*
|
|
1836
|
+
* The unique ID of the account generated by the source system
|
|
1821
1837
|
* @type {string}
|
|
1822
1838
|
* @memberof AccountBeta
|
|
1823
1839
|
*/
|
|
1824
|
-
'nativeIdentity'
|
|
1840
|
+
'nativeIdentity': string;
|
|
1825
1841
|
/**
|
|
1826
|
-
*
|
|
1842
|
+
* If true, this is a user account within IdentityNow. If false, this is an account from a source system.
|
|
1827
1843
|
* @type {boolean}
|
|
1828
1844
|
* @memberof AccountBeta
|
|
1829
1845
|
*/
|
|
1830
|
-
'systemAccount'
|
|
1846
|
+
'systemAccount': boolean;
|
|
1831
1847
|
/**
|
|
1832
|
-
*
|
|
1848
|
+
* Indicates if this account is not correlated to an identity
|
|
1833
1849
|
* @type {boolean}
|
|
1834
1850
|
* @memberof AccountBeta
|
|
1835
1851
|
*/
|
|
1836
|
-
'uncorrelated'
|
|
1852
|
+
'uncorrelated': boolean;
|
|
1837
1853
|
/**
|
|
1838
|
-
*
|
|
1854
|
+
* The unique ID of the account as determined by the account schema
|
|
1839
1855
|
* @type {string}
|
|
1840
1856
|
* @memberof AccountBeta
|
|
1841
1857
|
*/
|
|
1842
|
-
'uuid'?: string;
|
|
1858
|
+
'uuid'?: string | null;
|
|
1843
1859
|
/**
|
|
1844
|
-
*
|
|
1860
|
+
* Indicates if the account has been manually correlated to an identity
|
|
1845
1861
|
* @type {boolean}
|
|
1846
1862
|
* @memberof AccountBeta
|
|
1847
1863
|
*/
|
|
1848
|
-
'manuallyCorrelated'
|
|
1864
|
+
'manuallyCorrelated': boolean;
|
|
1849
1865
|
/**
|
|
1850
|
-
*
|
|
1866
|
+
* Indicates if the account has entitlements
|
|
1851
1867
|
* @type {boolean}
|
|
1852
1868
|
* @memberof AccountBeta
|
|
1853
1869
|
*/
|
|
1854
|
-
'hasEntitlements'
|
|
1870
|
+
'hasEntitlements': boolean;
|
|
1855
1871
|
}
|
|
1856
1872
|
/**
|
|
1857
1873
|
*
|
|
@@ -2603,7 +2619,7 @@ export interface ArgumentBeta {
|
|
|
2603
2619
|
* @type {string}
|
|
2604
2620
|
* @memberof ArgumentBeta
|
|
2605
2621
|
*/
|
|
2606
|
-
'type'?: string;
|
|
2622
|
+
'type'?: string | null;
|
|
2607
2623
|
}
|
|
2608
2624
|
/**
|
|
2609
2625
|
* Specification of source attribute sync mapping configuration for an identity attribute
|
|
@@ -4575,7 +4591,7 @@ export interface ConnectorRuleCreateRequestBeta {
|
|
|
4575
4591
|
* @type {object}
|
|
4576
4592
|
* @memberof ConnectorRuleCreateRequestBeta
|
|
4577
4593
|
*/
|
|
4578
|
-
'attributes'?: object;
|
|
4594
|
+
'attributes'?: object | null;
|
|
4579
4595
|
}
|
|
4580
4596
|
export declare const ConnectorRuleCreateRequestBetaTypeEnum: {
|
|
4581
4597
|
readonly BuildMap: "BuildMap";
|
|
@@ -4618,7 +4634,7 @@ export interface ConnectorRuleCreateRequestSignatureBeta {
|
|
|
4618
4634
|
* @type {ArgumentBeta}
|
|
4619
4635
|
* @memberof ConnectorRuleCreateRequestSignatureBeta
|
|
4620
4636
|
*/
|
|
4621
|
-
'output'?: ArgumentBeta;
|
|
4637
|
+
'output'?: ArgumentBeta | null;
|
|
4622
4638
|
}
|
|
4623
4639
|
/**
|
|
4624
4640
|
*
|
|
@@ -4643,7 +4659,7 @@ export interface ConnectorRuleResponseAllOfBeta {
|
|
|
4643
4659
|
* @type {string}
|
|
4644
4660
|
* @memberof ConnectorRuleResponseAllOfBeta
|
|
4645
4661
|
*/
|
|
4646
|
-
'modified'?: string;
|
|
4662
|
+
'modified'?: string | null;
|
|
4647
4663
|
}
|
|
4648
4664
|
/**
|
|
4649
4665
|
* ConnectorRuleResponse
|
|
@@ -4686,7 +4702,7 @@ export interface ConnectorRuleResponseBeta {
|
|
|
4686
4702
|
* @type {object}
|
|
4687
4703
|
* @memberof ConnectorRuleResponseBeta
|
|
4688
4704
|
*/
|
|
4689
|
-
'attributes'?: object;
|
|
4705
|
+
'attributes'?: object | null;
|
|
4690
4706
|
/**
|
|
4691
4707
|
* the ID of the rule
|
|
4692
4708
|
* @type {string}
|
|
@@ -4704,7 +4720,7 @@ export interface ConnectorRuleResponseBeta {
|
|
|
4704
4720
|
* @type {string}
|
|
4705
4721
|
* @memberof ConnectorRuleResponseBeta
|
|
4706
4722
|
*/
|
|
4707
|
-
'modified'?: string;
|
|
4723
|
+
'modified'?: string | null;
|
|
4708
4724
|
}
|
|
4709
4725
|
export declare const ConnectorRuleResponseBetaTypeEnum: {
|
|
4710
4726
|
readonly BuildMap: "BuildMap";
|
|
@@ -4790,7 +4806,7 @@ export interface ConnectorRuleUpdateRequestBeta {
|
|
|
4790
4806
|
* @type {object}
|
|
4791
4807
|
* @memberof ConnectorRuleUpdateRequestBeta
|
|
4792
4808
|
*/
|
|
4793
|
-
'attributes'?: object;
|
|
4809
|
+
'attributes'?: object | null;
|
|
4794
4810
|
}
|
|
4795
4811
|
export declare const ConnectorRuleUpdateRequestBetaTypeEnum: {
|
|
4796
4812
|
readonly BuildMap: "BuildMap";
|
|
@@ -6540,10 +6556,12 @@ export interface FullAccountBeta {
|
|
|
6540
6556
|
'identityId'?: string;
|
|
6541
6557
|
/**
|
|
6542
6558
|
* A map containing attributes associated with the account
|
|
6543
|
-
* @type {
|
|
6559
|
+
* @type {{ [key: string]: any; }}
|
|
6544
6560
|
* @memberof FullAccountBeta
|
|
6545
6561
|
*/
|
|
6546
|
-
'attributes'?:
|
|
6562
|
+
'attributes'?: {
|
|
6563
|
+
[key: string]: any;
|
|
6564
|
+
};
|
|
6547
6565
|
/**
|
|
6548
6566
|
* Whether this account belongs to an authoritative source
|
|
6549
6567
|
* @type {boolean}
|
|
@@ -7313,13 +7331,13 @@ export interface HttpConfigBeta {
|
|
|
7313
7331
|
* @type {BasicAuthConfigBeta}
|
|
7314
7332
|
* @memberof HttpConfigBeta
|
|
7315
7333
|
*/
|
|
7316
|
-
'basicAuthConfig'?: BasicAuthConfigBeta;
|
|
7334
|
+
'basicAuthConfig'?: BasicAuthConfigBeta | null;
|
|
7317
7335
|
/**
|
|
7318
7336
|
*
|
|
7319
7337
|
* @type {BearerTokenAuthConfigBeta}
|
|
7320
7338
|
* @memberof HttpConfigBeta
|
|
7321
7339
|
*/
|
|
7322
|
-
'bearerTokenAuthConfig'?: BearerTokenAuthConfigBeta;
|
|
7340
|
+
'bearerTokenAuthConfig'?: BearerTokenAuthConfigBeta | null;
|
|
7323
7341
|
}
|
|
7324
7342
|
/**
|
|
7325
7343
|
* HTTP response modes, i.e. SYNC, ASYNC, or DYNAMIC.
|
|
@@ -8182,7 +8200,7 @@ export interface IdentityProfileAllOfBeta {
|
|
|
8182
8200
|
* @type {string}
|
|
8183
8201
|
* @memberof IdentityProfileAllOfBeta
|
|
8184
8202
|
*/
|
|
8185
|
-
'description'?: string;
|
|
8203
|
+
'description'?: string | null;
|
|
8186
8204
|
/**
|
|
8187
8205
|
*
|
|
8188
8206
|
* @type {IdentityProfileAllOfOwnerBeta}
|
|
@@ -8224,7 +8242,7 @@ export interface IdentityProfileAllOfBeta {
|
|
|
8224
8242
|
* @type {IdentityExceptionReportReferenceBeta}
|
|
8225
8243
|
* @memberof IdentityProfileAllOfBeta
|
|
8226
8244
|
*/
|
|
8227
|
-
'identityExceptionReportReference'?: IdentityExceptionReportReferenceBeta;
|
|
8245
|
+
'identityExceptionReportReference'?: IdentityExceptionReportReferenceBeta | null;
|
|
8228
8246
|
/**
|
|
8229
8247
|
* Indicates the value of requiresPeriodicRefresh attribute for the Identity Profile.
|
|
8230
8248
|
* @type {boolean}
|
|
@@ -8296,7 +8314,7 @@ export interface IdentityProfileBeta {
|
|
|
8296
8314
|
* @type {string}
|
|
8297
8315
|
* @memberof IdentityProfileBeta
|
|
8298
8316
|
*/
|
|
8299
|
-
'description'?: string;
|
|
8317
|
+
'description'?: string | null;
|
|
8300
8318
|
/**
|
|
8301
8319
|
*
|
|
8302
8320
|
* @type {IdentityProfileAllOfOwnerBeta}
|
|
@@ -8338,7 +8356,7 @@ export interface IdentityProfileBeta {
|
|
|
8338
8356
|
* @type {IdentityExceptionReportReferenceBeta}
|
|
8339
8357
|
* @memberof IdentityProfileBeta
|
|
8340
8358
|
*/
|
|
8341
|
-
'identityExceptionReportReference'?: IdentityExceptionReportReferenceBeta;
|
|
8359
|
+
'identityExceptionReportReference'?: IdentityExceptionReportReferenceBeta | null;
|
|
8342
8360
|
/**
|
|
8343
8361
|
* Indicates the value of requiresPeriodicRefresh attribute for the Identity Profile.
|
|
8344
8362
|
* @type {boolean}
|
|
@@ -8946,10 +8964,10 @@ export interface ListAccessProfiles429ResponseBeta {
|
|
|
8946
8964
|
'message'?: object;
|
|
8947
8965
|
}
|
|
8948
8966
|
/**
|
|
8949
|
-
* @type
|
|
8967
|
+
* @type ListAccounts200ResponseBeta
|
|
8950
8968
|
* @export
|
|
8951
8969
|
*/
|
|
8952
|
-
export declare type
|
|
8970
|
+
export declare type ListAccounts200ResponseBeta = Array<FullAccountBeta> | Array<SlimAccountBeta>;
|
|
8953
8971
|
/**
|
|
8954
8972
|
*
|
|
8955
8973
|
* @export
|
|
@@ -9171,7 +9189,7 @@ export interface ManagedClientStatusAggResponseBeta {
|
|
|
9171
9189
|
* @type {ManagedClientTypeBeta}
|
|
9172
9190
|
* @memberof ManagedClientStatusAggResponseBeta
|
|
9173
9191
|
*/
|
|
9174
|
-
'type': ManagedClientTypeBeta;
|
|
9192
|
+
'type': ManagedClientTypeBeta | null;
|
|
9175
9193
|
/**
|
|
9176
9194
|
* timestamp on the Client Status update
|
|
9177
9195
|
* @type {string}
|
|
@@ -9202,7 +9220,7 @@ export interface ManagedClientStatusBeta {
|
|
|
9202
9220
|
* @type {ManagedClientTypeBeta}
|
|
9203
9221
|
* @memberof ManagedClientStatusBeta
|
|
9204
9222
|
*/
|
|
9205
|
-
'type': ManagedClientTypeBeta;
|
|
9223
|
+
'type': ManagedClientTypeBeta | null;
|
|
9206
9224
|
/**
|
|
9207
9225
|
* timestamp on the Client Status update
|
|
9208
9226
|
* @type {string}
|
|
@@ -9234,6 +9252,7 @@ export declare const ManagedClientTypeBeta: {
|
|
|
9234
9252
|
readonly Ccg: "CCG";
|
|
9235
9253
|
readonly Va: "VA";
|
|
9236
9254
|
readonly Internal: "INTERNAL";
|
|
9255
|
+
readonly Null: "null";
|
|
9237
9256
|
};
|
|
9238
9257
|
export declare type ManagedClientTypeBeta = typeof ManagedClientTypeBeta[keyof typeof ManagedClientTypeBeta];
|
|
9239
9258
|
/**
|
|
@@ -9253,7 +9272,7 @@ export interface ManagedClusterAttributesBeta {
|
|
|
9253
9272
|
* @type {string}
|
|
9254
9273
|
* @memberof ManagedClusterAttributesBeta
|
|
9255
9274
|
*/
|
|
9256
|
-
'keystore'?: string;
|
|
9275
|
+
'keystore'?: string | null;
|
|
9257
9276
|
}
|
|
9258
9277
|
/**
|
|
9259
9278
|
* Managed Cluster
|
|
@@ -9328,7 +9347,7 @@ export interface ManagedClusterBeta {
|
|
|
9328
9347
|
* @type {ManagedClientTypeBeta}
|
|
9329
9348
|
* @memberof ManagedClusterBeta
|
|
9330
9349
|
*/
|
|
9331
|
-
'clientType': ManagedClientTypeBeta;
|
|
9350
|
+
'clientType': ManagedClientTypeBeta | null;
|
|
9332
9351
|
/**
|
|
9333
9352
|
* CCG version used by the ManagedCluster
|
|
9334
9353
|
* @type {string}
|
|
@@ -9346,7 +9365,7 @@ export interface ManagedClusterBeta {
|
|
|
9346
9365
|
* @type {ClientLogConfigurationBeta}
|
|
9347
9366
|
* @memberof ManagedClusterBeta
|
|
9348
9367
|
*/
|
|
9349
|
-
'logConfiguration'?: ClientLogConfigurationBeta;
|
|
9368
|
+
'logConfiguration'?: ClientLogConfigurationBeta | null;
|
|
9350
9369
|
/**
|
|
9351
9370
|
* Whether or not the cluster is operational or not
|
|
9352
9371
|
* @type {boolean}
|
|
@@ -9364,19 +9383,19 @@ export interface ManagedClusterBeta {
|
|
|
9364
9383
|
* @type {string}
|
|
9365
9384
|
* @memberof ManagedClusterBeta
|
|
9366
9385
|
*/
|
|
9367
|
-
'publicKeyCertificate'?: string;
|
|
9386
|
+
'publicKeyCertificate'?: string | null;
|
|
9368
9387
|
/**
|
|
9369
9388
|
* Public key thumbprint
|
|
9370
9389
|
* @type {string}
|
|
9371
9390
|
* @memberof ManagedClusterBeta
|
|
9372
9391
|
*/
|
|
9373
|
-
'publicKeyThumbprint'?: string;
|
|
9392
|
+
'publicKeyThumbprint'?: string | null;
|
|
9374
9393
|
/**
|
|
9375
9394
|
* Public key
|
|
9376
9395
|
* @type {string}
|
|
9377
9396
|
* @memberof ManagedClusterBeta
|
|
9378
9397
|
*/
|
|
9379
|
-
'publicKey'?: string;
|
|
9398
|
+
'publicKey'?: string | null;
|
|
9380
9399
|
/**
|
|
9381
9400
|
* Key describing any immediate cluster alerts
|
|
9382
9401
|
* @type {string}
|
|
@@ -9413,19 +9432,19 @@ export interface ManagedClusterKeyPairBeta {
|
|
|
9413
9432
|
* @type {string}
|
|
9414
9433
|
* @memberof ManagedClusterKeyPairBeta
|
|
9415
9434
|
*/
|
|
9416
|
-
'publicKey'?: string;
|
|
9435
|
+
'publicKey'?: string | null;
|
|
9417
9436
|
/**
|
|
9418
9437
|
* ManagedCluster publicKeyThumbprint
|
|
9419
9438
|
* @type {string}
|
|
9420
9439
|
* @memberof ManagedClusterKeyPairBeta
|
|
9421
9440
|
*/
|
|
9422
|
-
'publicKeyThumbprint'?: string;
|
|
9441
|
+
'publicKeyThumbprint'?: string | null;
|
|
9423
9442
|
/**
|
|
9424
9443
|
* ManagedCluster publicKeyCertificate
|
|
9425
9444
|
* @type {string}
|
|
9426
9445
|
* @memberof ManagedClusterKeyPairBeta
|
|
9427
9446
|
*/
|
|
9428
|
-
'publicKeyCertificate'?: string;
|
|
9447
|
+
'publicKeyCertificate'?: string | null;
|
|
9429
9448
|
}
|
|
9430
9449
|
/**
|
|
9431
9450
|
* Managed Cluster key pair for Cluster
|
|
@@ -13680,6 +13699,19 @@ export interface RoleBeta {
|
|
|
13680
13699
|
*/
|
|
13681
13700
|
'segments'?: Array<string> | null;
|
|
13682
13701
|
}
|
|
13702
|
+
/**
|
|
13703
|
+
*
|
|
13704
|
+
* @export
|
|
13705
|
+
* @interface RoleBulkDeleteRequestBeta
|
|
13706
|
+
*/
|
|
13707
|
+
export interface RoleBulkDeleteRequestBeta {
|
|
13708
|
+
/**
|
|
13709
|
+
* List of IDs of Roles to be deleted.
|
|
13710
|
+
* @type {Array<string>}
|
|
13711
|
+
* @memberof RoleBulkDeleteRequestBeta
|
|
13712
|
+
*/
|
|
13713
|
+
'roleIds': Array<string>;
|
|
13714
|
+
}
|
|
13683
13715
|
/**
|
|
13684
13716
|
* Refers to a specific Identity attribute, Account attibute, or Entitlement used in Role membership criteria
|
|
13685
13717
|
* @export
|
|
@@ -15863,10 +15895,12 @@ export interface SlimAccountAllOfBeta {
|
|
|
15863
15895
|
'identityId'?: string;
|
|
15864
15896
|
/**
|
|
15865
15897
|
* A map containing attributes associated with the account
|
|
15866
|
-
* @type {
|
|
15898
|
+
* @type {{ [key: string]: any; }}
|
|
15867
15899
|
* @memberof SlimAccountAllOfBeta
|
|
15868
15900
|
*/
|
|
15869
|
-
'attributes'?:
|
|
15901
|
+
'attributes'?: {
|
|
15902
|
+
[key: string]: any;
|
|
15903
|
+
};
|
|
15870
15904
|
}
|
|
15871
15905
|
/**
|
|
15872
15906
|
*
|
|
@@ -15960,10 +15994,12 @@ export interface SlimAccountBeta {
|
|
|
15960
15994
|
'identityId'?: string;
|
|
15961
15995
|
/**
|
|
15962
15996
|
* A map containing attributes associated with the account
|
|
15963
|
-
* @type {
|
|
15997
|
+
* @type {{ [key: string]: any; }}
|
|
15964
15998
|
* @memberof SlimAccountBeta
|
|
15965
15999
|
*/
|
|
15966
|
-
'attributes'?:
|
|
16000
|
+
'attributes'?: {
|
|
16001
|
+
[key: string]: any;
|
|
16002
|
+
};
|
|
15967
16003
|
}
|
|
15968
16004
|
/**
|
|
15969
16005
|
*
|
|
@@ -16761,7 +16797,7 @@ export interface SourceBeta {
|
|
|
16761
16797
|
*/
|
|
16762
16798
|
'features'?: Array<SourceFeatureBeta>;
|
|
16763
16799
|
/**
|
|
16764
|
-
* Specifies the type of system being managed e.g. Active Directory, Workday, etc..
|
|
16800
|
+
* Specifies the type of system being managed e.g. Active Directory, Workday, etc.. If you are creating a Delimited File source, you must set the `provisionasCsv` query parameter to `true`.
|
|
16765
16801
|
* @type {string}
|
|
16766
16802
|
* @memberof SourceBeta
|
|
16767
16803
|
*/
|
|
@@ -17449,17 +17485,17 @@ export interface SpConfigObjectBeta {
|
|
|
17449
17485
|
*/
|
|
17450
17486
|
'resolveByIdUrl'?: SpConfigUrlBeta;
|
|
17451
17487
|
/**
|
|
17452
|
-
*
|
|
17453
|
-
* @type {SpConfigUrlBeta}
|
|
17488
|
+
* Url and query parameters to be used to resolve this type of object by name.
|
|
17489
|
+
* @type {Array<SpConfigUrlBeta>}
|
|
17454
17490
|
* @memberof SpConfigObjectBeta
|
|
17455
17491
|
*/
|
|
17456
|
-
'resolveByNameUrl'?: SpConfigUrlBeta
|
|
17492
|
+
'resolveByNameUrl'?: Array<SpConfigUrlBeta>;
|
|
17457
17493
|
/**
|
|
17458
|
-
*
|
|
17459
|
-
* @type {
|
|
17494
|
+
*
|
|
17495
|
+
* @type {SpConfigUrlBeta}
|
|
17460
17496
|
* @memberof SpConfigObjectBeta
|
|
17461
17497
|
*/
|
|
17462
|
-
'exportUrl'?:
|
|
17498
|
+
'exportUrl'?: SpConfigUrlBeta;
|
|
17463
17499
|
/**
|
|
17464
17500
|
* Rights needed by the invoker of sp-config/export in order to export this type of object.
|
|
17465
17501
|
* @type {string}
|
|
@@ -17473,11 +17509,11 @@ export interface SpConfigObjectBeta {
|
|
|
17473
17509
|
*/
|
|
17474
17510
|
'exportLimit'?: number;
|
|
17475
17511
|
/**
|
|
17476
|
-
*
|
|
17477
|
-
* @type {
|
|
17512
|
+
*
|
|
17513
|
+
* @type {SpConfigUrlBeta}
|
|
17478
17514
|
* @memberof SpConfigObjectBeta
|
|
17479
17515
|
*/
|
|
17480
|
-
'importUrl'?:
|
|
17516
|
+
'importUrl'?: SpConfigUrlBeta;
|
|
17481
17517
|
/**
|
|
17482
17518
|
* Rights needed by the invoker of sp-config/import in order to import this type of object.
|
|
17483
17519
|
* @type {string}
|
|
@@ -17834,6 +17870,9 @@ export interface SubscriptionPutRequestBeta {
|
|
|
17834
17870
|
export declare const SubscriptionTypeBeta: {
|
|
17835
17871
|
readonly Http: "HTTP";
|
|
17836
17872
|
readonly Eventbridge: "EVENTBRIDGE";
|
|
17873
|
+
readonly Inline: "INLINE";
|
|
17874
|
+
readonly Script: "SCRIPT";
|
|
17875
|
+
readonly Workflow: "WORKFLOW";
|
|
17837
17876
|
};
|
|
17838
17877
|
export declare type SubscriptionTypeBeta = typeof SubscriptionTypeBeta[keyof typeof SubscriptionTypeBeta];
|
|
17839
17878
|
/**
|
|
@@ -18175,12 +18214,10 @@ export interface TransformBeta {
|
|
|
18175
18214
|
'type': string;
|
|
18176
18215
|
/**
|
|
18177
18216
|
* Meta-data about the transform. Values in this list are specific to the type of transform to be executed.
|
|
18178
|
-
* @type {
|
|
18217
|
+
* @type {object}
|
|
18179
18218
|
* @memberof TransformBeta
|
|
18180
18219
|
*/
|
|
18181
|
-
'attributes':
|
|
18182
|
-
[key: string]: any;
|
|
18183
|
-
};
|
|
18220
|
+
'attributes': object | null;
|
|
18184
18221
|
/**
|
|
18185
18222
|
* Indicates whether this is an internal SailPoint-created transform or a customer-created transform
|
|
18186
18223
|
* @type {boolean}
|
|
@@ -18230,12 +18267,12 @@ export interface TransformDefinitionBeta {
|
|
|
18230
18267
|
'type'?: string;
|
|
18231
18268
|
/**
|
|
18232
18269
|
* Arbitrary key-value pairs to store any metadata for the object
|
|
18233
|
-
* @type {{ [key: string]:
|
|
18270
|
+
* @type {{ [key: string]: any; }}
|
|
18234
18271
|
* @memberof TransformDefinitionBeta
|
|
18235
18272
|
*/
|
|
18236
18273
|
'attributes'?: {
|
|
18237
|
-
[key: string]:
|
|
18238
|
-
};
|
|
18274
|
+
[key: string]: any;
|
|
18275
|
+
} | null;
|
|
18239
18276
|
}
|
|
18240
18277
|
/**
|
|
18241
18278
|
*
|
|
@@ -23856,7 +23893,7 @@ export declare const AccountsBetaApiFp: (configuration?: Configuration) => {
|
|
|
23856
23893
|
* @param {*} [axiosOptions] Override http request option.
|
|
23857
23894
|
* @throws {RequiredError}
|
|
23858
23895
|
*/
|
|
23859
|
-
listAccounts(detailLevel?: 'SLIM' | 'FULL', limit?: number, offset?: number, count?: boolean, filters?: string, axiosOptions?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
23896
|
+
listAccounts(detailLevel?: 'SLIM' | 'FULL', limit?: number, offset?: number, count?: boolean, filters?: string, axiosOptions?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListAccounts200ResponseBeta>>;
|
|
23860
23897
|
/**
|
|
23861
23898
|
* This API submits an account update task and returns the task ID. A token with ORG_ADMIN authority is required to call this API.
|
|
23862
23899
|
* @summary Update Account
|
|
@@ -23994,7 +24031,7 @@ export declare const AccountsBetaApiFactory: (configuration?: Configuration, bas
|
|
|
23994
24031
|
* @param {*} [axiosOptions] Override http request option.
|
|
23995
24032
|
* @throws {RequiredError}
|
|
23996
24033
|
*/
|
|
23997
|
-
listAccounts(detailLevel?: 'SLIM' | 'FULL', limit?: number, offset?: number, count?: boolean, filters?: string, axiosOptions?: any): AxiosPromise<
|
|
24034
|
+
listAccounts(detailLevel?: 'SLIM' | 'FULL', limit?: number, offset?: number, count?: boolean, filters?: string, axiosOptions?: any): AxiosPromise<ListAccounts200ResponseBeta>;
|
|
23998
24035
|
/**
|
|
23999
24036
|
* This API submits an account update task and returns the task ID. A token with ORG_ADMIN authority is required to call this API.
|
|
24000
24037
|
* @summary Update Account
|
|
@@ -24403,7 +24440,7 @@ export declare class AccountsBetaApi extends BaseAPI {
|
|
|
24403
24440
|
* @throws {RequiredError}
|
|
24404
24441
|
* @memberof AccountsBetaApi
|
|
24405
24442
|
*/
|
|
24406
|
-
listAccounts(requestParameters?: AccountsBetaApiListAccountsRequest, axiosOptions?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
24443
|
+
listAccounts(requestParameters?: AccountsBetaApiListAccountsRequest, axiosOptions?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ListAccounts200ResponseBeta, any>>;
|
|
24407
24444
|
/**
|
|
24408
24445
|
* This API submits an account update task and returns the task ID. A token with ORG_ADMIN authority is required to call this API.
|
|
24409
24446
|
* @summary Update Account
|
|
@@ -26608,7 +26645,7 @@ export declare const EntitlementsBetaApiAxiosParamCreator: (configuration?: Conf
|
|
|
26608
26645
|
* @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.
|
|
26609
26646
|
* @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.
|
|
26610
26647
|
* @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: **id, name, created, modified, type, attribute, value, source.id**
|
|
26611
|
-
* @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* **name**: *eq, in, sw* **type**: *eq, in* **attribute**: *eq, in* **value**: *eq, in, sw* **source.id**: *eq, in* **requestable**: *eq*
|
|
26648
|
+
* @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* **name**: *eq, in, sw* **type**: *eq, in* **attribute**: *eq, in* **value**: *eq, in, sw* **source.id**: *eq, in* **requestable**: *eq* **created**: *gt, lt, ge, le* **modified**: *gt, lt, ge, le*
|
|
26612
26649
|
* @param {*} [axiosOptions] Override http request option.
|
|
26613
26650
|
* @throws {RequiredError}
|
|
26614
26651
|
*/
|
|
@@ -26694,7 +26731,7 @@ export declare const EntitlementsBetaApiFp: (configuration?: Configuration) => {
|
|
|
26694
26731
|
* @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.
|
|
26695
26732
|
* @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.
|
|
26696
26733
|
* @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: **id, name, created, modified, type, attribute, value, source.id**
|
|
26697
|
-
* @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* **name**: *eq, in, sw* **type**: *eq, in* **attribute**: *eq, in* **value**: *eq, in, sw* **source.id**: *eq, in* **requestable**: *eq*
|
|
26734
|
+
* @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* **name**: *eq, in, sw* **type**: *eq, in* **attribute**: *eq, in* **value**: *eq, in, sw* **source.id**: *eq, in* **requestable**: *eq* **created**: *gt, lt, ge, le* **modified**: *gt, lt, ge, le*
|
|
26698
26735
|
* @param {*} [axiosOptions] Override http request option.
|
|
26699
26736
|
* @throws {RequiredError}
|
|
26700
26737
|
*/
|
|
@@ -26780,7 +26817,7 @@ export declare const EntitlementsBetaApiFactory: (configuration?: Configuration,
|
|
|
26780
26817
|
* @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.
|
|
26781
26818
|
* @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.
|
|
26782
26819
|
* @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: **id, name, created, modified, type, attribute, value, source.id**
|
|
26783
|
-
* @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* **name**: *eq, in, sw* **type**: *eq, in* **attribute**: *eq, in* **value**: *eq, in, sw* **source.id**: *eq, in* **requestable**: *eq*
|
|
26820
|
+
* @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* **name**: *eq, in, sw* **type**: *eq, in* **attribute**: *eq, in* **value**: *eq, in, sw* **source.id**: *eq, in* **requestable**: *eq* **created**: *gt, lt, ge, le* **modified**: *gt, lt, ge, le*
|
|
26784
26821
|
* @param {*} [axiosOptions] Override http request option.
|
|
26785
26822
|
* @throws {RequiredError}
|
|
26786
26823
|
*/
|
|
@@ -26955,7 +26992,7 @@ export interface EntitlementsBetaApiListEntitlementsRequest {
|
|
|
26955
26992
|
*/
|
|
26956
26993
|
readonly sorters?: string;
|
|
26957
26994
|
/**
|
|
26958
|
-
* 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* **name**: *eq, in, sw* **type**: *eq, in* **attribute**: *eq, in* **value**: *eq, in, sw* **source.id**: *eq, in* **requestable**: *eq*
|
|
26995
|
+
* 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* **name**: *eq, in, sw* **type**: *eq, in* **attribute**: *eq, in* **value**: *eq, in, sw* **source.id**: *eq, in* **requestable**: *eq* **created**: *gt, lt, ge, le* **modified**: *gt, lt, ge, le*
|
|
26959
26996
|
* @type {string}
|
|
26960
26997
|
* @memberof EntitlementsBetaApiListEntitlements
|
|
26961
26998
|
*/
|
|
@@ -30037,19 +30074,19 @@ export declare const IdentitiesBetaApiAxiosParamCreator: (configuration?: Config
|
|
|
30037
30074
|
/**
|
|
30038
30075
|
* The API returns successful response if the requested identity was deleted.
|
|
30039
30076
|
* @summary Deletes an identity.
|
|
30040
|
-
* @param {string}
|
|
30077
|
+
* @param {string} id Identity Id
|
|
30041
30078
|
* @param {*} [axiosOptions] Override http request option.
|
|
30042
30079
|
* @throws {RequiredError}
|
|
30043
30080
|
*/
|
|
30044
|
-
deleteIdentity: (
|
|
30081
|
+
deleteIdentity: (id: string, axiosOptions?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
30045
30082
|
/**
|
|
30046
30083
|
* This API returns a single identity using the Identity ID.
|
|
30047
30084
|
* @summary Identity Details
|
|
30048
|
-
* @param {string}
|
|
30085
|
+
* @param {string} id Identity Id
|
|
30049
30086
|
* @param {*} [axiosOptions] Override http request option.
|
|
30050
30087
|
* @throws {RequiredError}
|
|
30051
30088
|
*/
|
|
30052
|
-
getIdentity: (
|
|
30089
|
+
getIdentity: (id: string, axiosOptions?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
30053
30090
|
/**
|
|
30054
30091
|
* This API returns a list of identities.
|
|
30055
30092
|
* @summary List Identities
|
|
@@ -30080,19 +30117,19 @@ export declare const IdentitiesBetaApiFp: (configuration?: Configuration) => {
|
|
|
30080
30117
|
/**
|
|
30081
30118
|
* The API returns successful response if the requested identity was deleted.
|
|
30082
30119
|
* @summary Deletes an identity.
|
|
30083
|
-
* @param {string}
|
|
30120
|
+
* @param {string} id Identity Id
|
|
30084
30121
|
* @param {*} [axiosOptions] Override http request option.
|
|
30085
30122
|
* @throws {RequiredError}
|
|
30086
30123
|
*/
|
|
30087
|
-
deleteIdentity(
|
|
30124
|
+
deleteIdentity(id: string, axiosOptions?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
30088
30125
|
/**
|
|
30089
30126
|
* This API returns a single identity using the Identity ID.
|
|
30090
30127
|
* @summary Identity Details
|
|
30091
|
-
* @param {string}
|
|
30128
|
+
* @param {string} id Identity Id
|
|
30092
30129
|
* @param {*} [axiosOptions] Override http request option.
|
|
30093
30130
|
* @throws {RequiredError}
|
|
30094
30131
|
*/
|
|
30095
|
-
getIdentity(
|
|
30132
|
+
getIdentity(id: string, axiosOptions?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<IdentityBeta>>;
|
|
30096
30133
|
/**
|
|
30097
30134
|
* This API returns a list of identities.
|
|
30098
30135
|
* @summary List Identities
|
|
@@ -30123,19 +30160,19 @@ export declare const IdentitiesBetaApiFactory: (configuration?: Configuration, b
|
|
|
30123
30160
|
/**
|
|
30124
30161
|
* The API returns successful response if the requested identity was deleted.
|
|
30125
30162
|
* @summary Deletes an identity.
|
|
30126
|
-
* @param {string}
|
|
30163
|
+
* @param {string} id Identity Id
|
|
30127
30164
|
* @param {*} [axiosOptions] Override http request option.
|
|
30128
30165
|
* @throws {RequiredError}
|
|
30129
30166
|
*/
|
|
30130
|
-
deleteIdentity(
|
|
30167
|
+
deleteIdentity(id: string, axiosOptions?: any): AxiosPromise<void>;
|
|
30131
30168
|
/**
|
|
30132
30169
|
* This API returns a single identity using the Identity ID.
|
|
30133
30170
|
* @summary Identity Details
|
|
30134
|
-
* @param {string}
|
|
30171
|
+
* @param {string} id Identity Id
|
|
30135
30172
|
* @param {*} [axiosOptions] Override http request option.
|
|
30136
30173
|
* @throws {RequiredError}
|
|
30137
30174
|
*/
|
|
30138
|
-
getIdentity(
|
|
30175
|
+
getIdentity(id: string, axiosOptions?: any): AxiosPromise<IdentityBeta>;
|
|
30139
30176
|
/**
|
|
30140
30177
|
* This API returns a list of identities.
|
|
30141
30178
|
* @summary List Identities
|
|
@@ -30169,7 +30206,7 @@ export interface IdentitiesBetaApiDeleteIdentityRequest {
|
|
|
30169
30206
|
* @type {string}
|
|
30170
30207
|
* @memberof IdentitiesBetaApiDeleteIdentity
|
|
30171
30208
|
*/
|
|
30172
|
-
readonly
|
|
30209
|
+
readonly id: string;
|
|
30173
30210
|
}
|
|
30174
30211
|
/**
|
|
30175
30212
|
* Request parameters for getIdentity operation in IdentitiesBetaApi.
|
|
@@ -30182,7 +30219,7 @@ export interface IdentitiesBetaApiGetIdentityRequest {
|
|
|
30182
30219
|
* @type {string}
|
|
30183
30220
|
* @memberof IdentitiesBetaApiGetIdentity
|
|
30184
30221
|
*/
|
|
30185
|
-
readonly
|
|
30222
|
+
readonly id: string;
|
|
30186
30223
|
}
|
|
30187
30224
|
/**
|
|
30188
30225
|
* Request parameters for listIdentities operation in IdentitiesBetaApi.
|
|
@@ -31209,7 +31246,7 @@ export declare const IdentityProfilesBetaApiAxiosParamCreator: (configuration?:
|
|
|
31209
31246
|
generateIdentityPreview: (identityPreviewRequestBeta: IdentityPreviewRequestBeta, axiosOptions?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
31210
31247
|
/**
|
|
31211
31248
|
* This returns the default identity attribute config A token with ORG_ADMIN authority is required to call this API to get the default identity attribute config.
|
|
31212
|
-
* @summary
|
|
31249
|
+
* @summary Default identity attribute config
|
|
31213
31250
|
* @param {string} identityProfileId The Identity Profile ID
|
|
31214
31251
|
* @param {*} [axiosOptions] Override http request option.
|
|
31215
31252
|
* @throws {RequiredError}
|
|
@@ -31245,7 +31282,7 @@ export declare const IdentityProfilesBetaApiAxiosParamCreator: (configuration?:
|
|
|
31245
31282
|
listIdentityProfiles: (limit?: number, offset?: number, count?: boolean, filters?: string, sorters?: string, axiosOptions?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
31246
31283
|
/**
|
|
31247
31284
|
* This refreshes all identities under the profile A token with ORG_ADMIN authority is required to call this API to refresh identities under this Identity Profile.
|
|
31248
|
-
* @summary Refreshes all
|
|
31285
|
+
* @summary Refreshes all identities under profile
|
|
31249
31286
|
* @param {string} identityProfileId The Identity Profile ID to be refreshed
|
|
31250
31287
|
* @param {*} [axiosOptions] Override http request option.
|
|
31251
31288
|
* @throws {RequiredError}
|
|
@@ -31312,7 +31349,7 @@ export declare const IdentityProfilesBetaApiFp: (configuration?: Configuration)
|
|
|
31312
31349
|
generateIdentityPreview(identityPreviewRequestBeta: IdentityPreviewRequestBeta, axiosOptions?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<IdentityPreviewResponseBeta>>;
|
|
31313
31350
|
/**
|
|
31314
31351
|
* This returns the default identity attribute config A token with ORG_ADMIN authority is required to call this API to get the default identity attribute config.
|
|
31315
|
-
* @summary
|
|
31352
|
+
* @summary Default identity attribute config
|
|
31316
31353
|
* @param {string} identityProfileId The Identity Profile ID
|
|
31317
31354
|
* @param {*} [axiosOptions] Override http request option.
|
|
31318
31355
|
* @throws {RequiredError}
|
|
@@ -31348,7 +31385,7 @@ export declare const IdentityProfilesBetaApiFp: (configuration?: Configuration)
|
|
|
31348
31385
|
listIdentityProfiles(limit?: number, offset?: number, count?: boolean, filters?: string, sorters?: string, axiosOptions?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<IdentityProfileBeta>>>;
|
|
31349
31386
|
/**
|
|
31350
31387
|
* This refreshes all identities under the profile A token with ORG_ADMIN authority is required to call this API to refresh identities under this Identity Profile.
|
|
31351
|
-
* @summary Refreshes all
|
|
31388
|
+
* @summary Refreshes all identities under profile
|
|
31352
31389
|
* @param {string} identityProfileId The Identity Profile ID to be refreshed
|
|
31353
31390
|
* @param {*} [axiosOptions] Override http request option.
|
|
31354
31391
|
* @throws {RequiredError}
|
|
@@ -31415,7 +31452,7 @@ export declare const IdentityProfilesBetaApiFactory: (configuration?: Configurat
|
|
|
31415
31452
|
generateIdentityPreview(identityPreviewRequestBeta: IdentityPreviewRequestBeta, axiosOptions?: any): AxiosPromise<IdentityPreviewResponseBeta>;
|
|
31416
31453
|
/**
|
|
31417
31454
|
* This returns the default identity attribute config A token with ORG_ADMIN authority is required to call this API to get the default identity attribute config.
|
|
31418
|
-
* @summary
|
|
31455
|
+
* @summary Default identity attribute config
|
|
31419
31456
|
* @param {string} identityProfileId The Identity Profile ID
|
|
31420
31457
|
* @param {*} [axiosOptions] Override http request option.
|
|
31421
31458
|
* @throws {RequiredError}
|
|
@@ -31451,7 +31488,7 @@ export declare const IdentityProfilesBetaApiFactory: (configuration?: Configurat
|
|
|
31451
31488
|
listIdentityProfiles(limit?: number, offset?: number, count?: boolean, filters?: string, sorters?: string, axiosOptions?: any): AxiosPromise<Array<IdentityProfileBeta>>;
|
|
31452
31489
|
/**
|
|
31453
31490
|
* This refreshes all identities under the profile A token with ORG_ADMIN authority is required to call this API to refresh identities under this Identity Profile.
|
|
31454
|
-
* @summary Refreshes all
|
|
31491
|
+
* @summary Refreshes all identities under profile
|
|
31455
31492
|
* @param {string} identityProfileId The Identity Profile ID to be refreshed
|
|
31456
31493
|
* @param {*} [axiosOptions] Override http request option.
|
|
31457
31494
|
* @throws {RequiredError}
|
|
@@ -31718,7 +31755,7 @@ export declare class IdentityProfilesBetaApi extends BaseAPI {
|
|
|
31718
31755
|
generateIdentityPreview(requestParameters: IdentityProfilesBetaApiGenerateIdentityPreviewRequest, axiosOptions?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<IdentityPreviewResponseBeta, any>>;
|
|
31719
31756
|
/**
|
|
31720
31757
|
* This returns the default identity attribute config A token with ORG_ADMIN authority is required to call this API to get the default identity attribute config.
|
|
31721
|
-
* @summary
|
|
31758
|
+
* @summary Default identity attribute config
|
|
31722
31759
|
* @param {IdentityProfilesBetaApiGetDefaultIdentityAttributeConfigRequest} requestParameters Request parameters.
|
|
31723
31760
|
* @param {*} [axiosOptions] Override http request option.
|
|
31724
31761
|
* @throws {RequiredError}
|
|
@@ -31754,7 +31791,7 @@ export declare class IdentityProfilesBetaApi extends BaseAPI {
|
|
|
31754
31791
|
listIdentityProfiles(requestParameters?: IdentityProfilesBetaApiListIdentityProfilesRequest, axiosOptions?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<IdentityProfileBeta[], any>>;
|
|
31755
31792
|
/**
|
|
31756
31793
|
* This refreshes all identities under the profile A token with ORG_ADMIN authority is required to call this API to refresh identities under this Identity Profile.
|
|
31757
|
-
* @summary Refreshes all
|
|
31794
|
+
* @summary Refreshes all identities under profile
|
|
31758
31795
|
* @param {IdentityProfilesBetaApiRefreshIdentityProfileRequest} requestParameters Request parameters.
|
|
31759
31796
|
* @param {*} [axiosOptions] Override http request option.
|
|
31760
31797
|
* @throws {RequiredError}
|
|
@@ -31923,7 +31960,7 @@ export declare class LifecycleStatesBetaApi extends BaseAPI {
|
|
|
31923
31960
|
export declare const MFAConfigurationBetaApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
31924
31961
|
/**
|
|
31925
31962
|
* This API returns the configuration of a given MFA method. A token with ORG_ADMIN authority is required to call this API.
|
|
31926
|
-
* @summary
|
|
31963
|
+
* @summary Configuration of a MFA method
|
|
31927
31964
|
* @param {string} method The name of the MFA method. The currently supported method name is okta-verify.
|
|
31928
31965
|
* @param {*} [axiosOptions] Override http request option.
|
|
31929
31966
|
* @throws {RequiredError}
|
|
@@ -31931,7 +31968,7 @@ export declare const MFAConfigurationBetaApiAxiosParamCreator: (configuration?:
|
|
|
31931
31968
|
getMFAConfig: (method: string, axiosOptions?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
31932
31969
|
/**
|
|
31933
31970
|
* This API sets the configuration of a given MFA method. A token with ORG_ADMIN authority is required to call this API.
|
|
31934
|
-
* @summary Set
|
|
31971
|
+
* @summary Set MFA method configuration
|
|
31935
31972
|
* @param {string} method The name of the MFA method. The currently supported method name is okta-verify.
|
|
31936
31973
|
* @param {MfaConfigBeta} mfaConfigBeta
|
|
31937
31974
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -31940,7 +31977,7 @@ export declare const MFAConfigurationBetaApiAxiosParamCreator: (configuration?:
|
|
|
31940
31977
|
setMFAConfig: (method: string, mfaConfigBeta: MfaConfigBeta, axiosOptions?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
31941
31978
|
/**
|
|
31942
31979
|
* This API validates that the configuration is valid and will properly authenticate with the MFA provider identified by the method path parameter. A token with ORG_ADMIN authority is required to call this API.
|
|
31943
|
-
* @summary
|
|
31980
|
+
* @summary MFA method\'s test configuration
|
|
31944
31981
|
* @param {string} method The name of the MFA method. The currently supported method name is okta-verify.
|
|
31945
31982
|
* @param {*} [axiosOptions] Override http request option.
|
|
31946
31983
|
* @throws {RequiredError}
|
|
@@ -31954,7 +31991,7 @@ export declare const MFAConfigurationBetaApiAxiosParamCreator: (configuration?:
|
|
|
31954
31991
|
export declare const MFAConfigurationBetaApiFp: (configuration?: Configuration) => {
|
|
31955
31992
|
/**
|
|
31956
31993
|
* This API returns the configuration of a given MFA method. A token with ORG_ADMIN authority is required to call this API.
|
|
31957
|
-
* @summary
|
|
31994
|
+
* @summary Configuration of a MFA method
|
|
31958
31995
|
* @param {string} method The name of the MFA method. The currently supported method name is okta-verify.
|
|
31959
31996
|
* @param {*} [axiosOptions] Override http request option.
|
|
31960
31997
|
* @throws {RequiredError}
|
|
@@ -31962,7 +31999,7 @@ export declare const MFAConfigurationBetaApiFp: (configuration?: Configuration)
|
|
|
31962
31999
|
getMFAConfig(method: string, axiosOptions?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MfaConfigBeta>>;
|
|
31963
32000
|
/**
|
|
31964
32001
|
* This API sets the configuration of a given MFA method. A token with ORG_ADMIN authority is required to call this API.
|
|
31965
|
-
* @summary Set
|
|
32002
|
+
* @summary Set MFA method configuration
|
|
31966
32003
|
* @param {string} method The name of the MFA method. The currently supported method name is okta-verify.
|
|
31967
32004
|
* @param {MfaConfigBeta} mfaConfigBeta
|
|
31968
32005
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -31971,7 +32008,7 @@ export declare const MFAConfigurationBetaApiFp: (configuration?: Configuration)
|
|
|
31971
32008
|
setMFAConfig(method: string, mfaConfigBeta: MfaConfigBeta, axiosOptions?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MfaConfigBeta>>;
|
|
31972
32009
|
/**
|
|
31973
32010
|
* This API validates that the configuration is valid and will properly authenticate with the MFA provider identified by the method path parameter. A token with ORG_ADMIN authority is required to call this API.
|
|
31974
|
-
* @summary
|
|
32011
|
+
* @summary MFA method\'s test configuration
|
|
31975
32012
|
* @param {string} method The name of the MFA method. The currently supported method name is okta-verify.
|
|
31976
32013
|
* @param {*} [axiosOptions] Override http request option.
|
|
31977
32014
|
* @throws {RequiredError}
|
|
@@ -31985,7 +32022,7 @@ export declare const MFAConfigurationBetaApiFp: (configuration?: Configuration)
|
|
|
31985
32022
|
export declare const MFAConfigurationBetaApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
31986
32023
|
/**
|
|
31987
32024
|
* This API returns the configuration of a given MFA method. A token with ORG_ADMIN authority is required to call this API.
|
|
31988
|
-
* @summary
|
|
32025
|
+
* @summary Configuration of a MFA method
|
|
31989
32026
|
* @param {string} method The name of the MFA method. The currently supported method name is okta-verify.
|
|
31990
32027
|
* @param {*} [axiosOptions] Override http request option.
|
|
31991
32028
|
* @throws {RequiredError}
|
|
@@ -31993,7 +32030,7 @@ export declare const MFAConfigurationBetaApiFactory: (configuration?: Configurat
|
|
|
31993
32030
|
getMFAConfig(method: string, axiosOptions?: any): AxiosPromise<MfaConfigBeta>;
|
|
31994
32031
|
/**
|
|
31995
32032
|
* This API sets the configuration of a given MFA method. A token with ORG_ADMIN authority is required to call this API.
|
|
31996
|
-
* @summary Set
|
|
32033
|
+
* @summary Set MFA method configuration
|
|
31997
32034
|
* @param {string} method The name of the MFA method. The currently supported method name is okta-verify.
|
|
31998
32035
|
* @param {MfaConfigBeta} mfaConfigBeta
|
|
31999
32036
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -32002,7 +32039,7 @@ export declare const MFAConfigurationBetaApiFactory: (configuration?: Configurat
|
|
|
32002
32039
|
setMFAConfig(method: string, mfaConfigBeta: MfaConfigBeta, axiosOptions?: any): AxiosPromise<MfaConfigBeta>;
|
|
32003
32040
|
/**
|
|
32004
32041
|
* This API validates that the configuration is valid and will properly authenticate with the MFA provider identified by the method path parameter. A token with ORG_ADMIN authority is required to call this API.
|
|
32005
|
-
* @summary
|
|
32042
|
+
* @summary MFA method\'s test configuration
|
|
32006
32043
|
* @param {string} method The name of the MFA method. The currently supported method name is okta-verify.
|
|
32007
32044
|
* @param {*} [axiosOptions] Override http request option.
|
|
32008
32045
|
* @throws {RequiredError}
|
|
@@ -32063,7 +32100,7 @@ export interface MFAConfigurationBetaApiTestMFAConfigRequest {
|
|
|
32063
32100
|
export declare class MFAConfigurationBetaApi extends BaseAPI {
|
|
32064
32101
|
/**
|
|
32065
32102
|
* This API returns the configuration of a given MFA method. A token with ORG_ADMIN authority is required to call this API.
|
|
32066
|
-
* @summary
|
|
32103
|
+
* @summary Configuration of a MFA method
|
|
32067
32104
|
* @param {MFAConfigurationBetaApiGetMFAConfigRequest} requestParameters Request parameters.
|
|
32068
32105
|
* @param {*} [axiosOptions] Override http request option.
|
|
32069
32106
|
* @throws {RequiredError}
|
|
@@ -32072,7 +32109,7 @@ export declare class MFAConfigurationBetaApi extends BaseAPI {
|
|
|
32072
32109
|
getMFAConfig(requestParameters: MFAConfigurationBetaApiGetMFAConfigRequest, axiosOptions?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<MfaConfigBeta, any>>;
|
|
32073
32110
|
/**
|
|
32074
32111
|
* This API sets the configuration of a given MFA method. A token with ORG_ADMIN authority is required to call this API.
|
|
32075
|
-
* @summary Set
|
|
32112
|
+
* @summary Set MFA method configuration
|
|
32076
32113
|
* @param {MFAConfigurationBetaApiSetMFAConfigRequest} requestParameters Request parameters.
|
|
32077
32114
|
* @param {*} [axiosOptions] Override http request option.
|
|
32078
32115
|
* @throws {RequiredError}
|
|
@@ -32081,7 +32118,7 @@ export declare class MFAConfigurationBetaApi extends BaseAPI {
|
|
|
32081
32118
|
setMFAConfig(requestParameters: MFAConfigurationBetaApiSetMFAConfigRequest, axiosOptions?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<MfaConfigBeta, any>>;
|
|
32082
32119
|
/**
|
|
32083
32120
|
* This API validates that the configuration is valid and will properly authenticate with the MFA provider identified by the method path parameter. A token with ORG_ADMIN authority is required to call this API.
|
|
32084
|
-
* @summary
|
|
32121
|
+
* @summary MFA method\'s test configuration
|
|
32085
32122
|
* @param {MFAConfigurationBetaApiTestMFAConfigRequest} requestParameters Request parameters.
|
|
32086
32123
|
* @param {*} [axiosOptions] Override http request option.
|
|
32087
32124
|
* @throws {RequiredError}
|
|
@@ -32096,7 +32133,7 @@ export declare class MFAConfigurationBetaApi extends BaseAPI {
|
|
|
32096
32133
|
export declare const ManagedClientsBetaApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
32097
32134
|
/**
|
|
32098
32135
|
* Retrieve Managed Client Status by ID.
|
|
32099
|
-
* @summary
|
|
32136
|
+
* @summary Specified Managed Client Status.
|
|
32100
32137
|
* @param {string} id ID of the Managed Client Status to get
|
|
32101
32138
|
* @param {ManagedClientTypeBeta} type Type of the Managed Client Status to get
|
|
32102
32139
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -32105,7 +32142,7 @@ export declare const ManagedClientsBetaApiAxiosParamCreator: (configuration?: Co
|
|
|
32105
32142
|
getManagedClientStatus: (id: string, type: ManagedClientTypeBeta, axiosOptions?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
32106
32143
|
/**
|
|
32107
32144
|
* Update a status detail passed in from the client
|
|
32108
|
-
* @summary Handle
|
|
32145
|
+
* @summary Handle status request from client
|
|
32109
32146
|
* @param {string} id ID of the Managed Client Status to update
|
|
32110
32147
|
* @param {ManagedClientStatusBeta} managedClientStatusBeta
|
|
32111
32148
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -32120,7 +32157,7 @@ export declare const ManagedClientsBetaApiAxiosParamCreator: (configuration?: Co
|
|
|
32120
32157
|
export declare const ManagedClientsBetaApiFp: (configuration?: Configuration) => {
|
|
32121
32158
|
/**
|
|
32122
32159
|
* Retrieve Managed Client Status by ID.
|
|
32123
|
-
* @summary
|
|
32160
|
+
* @summary Specified Managed Client Status.
|
|
32124
32161
|
* @param {string} id ID of the Managed Client Status to get
|
|
32125
32162
|
* @param {ManagedClientTypeBeta} type Type of the Managed Client Status to get
|
|
32126
32163
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -32129,7 +32166,7 @@ export declare const ManagedClientsBetaApiFp: (configuration?: Configuration) =>
|
|
|
32129
32166
|
getManagedClientStatus(id: string, type: ManagedClientTypeBeta, axiosOptions?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ManagedClientStatusBeta>>;
|
|
32130
32167
|
/**
|
|
32131
32168
|
* Update a status detail passed in from the client
|
|
32132
|
-
* @summary Handle
|
|
32169
|
+
* @summary Handle status request from client
|
|
32133
32170
|
* @param {string} id ID of the Managed Client Status to update
|
|
32134
32171
|
* @param {ManagedClientStatusBeta} managedClientStatusBeta
|
|
32135
32172
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -32144,7 +32181,7 @@ export declare const ManagedClientsBetaApiFp: (configuration?: Configuration) =>
|
|
|
32144
32181
|
export declare const ManagedClientsBetaApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
32145
32182
|
/**
|
|
32146
32183
|
* Retrieve Managed Client Status by ID.
|
|
32147
|
-
* @summary
|
|
32184
|
+
* @summary Specified Managed Client Status.
|
|
32148
32185
|
* @param {string} id ID of the Managed Client Status to get
|
|
32149
32186
|
* @param {ManagedClientTypeBeta} type Type of the Managed Client Status to get
|
|
32150
32187
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -32153,7 +32190,7 @@ export declare const ManagedClientsBetaApiFactory: (configuration?: Configuratio
|
|
|
32153
32190
|
getManagedClientStatus(id: string, type: ManagedClientTypeBeta, axiosOptions?: any): AxiosPromise<ManagedClientStatusBeta>;
|
|
32154
32191
|
/**
|
|
32155
32192
|
* Update a status detail passed in from the client
|
|
32156
|
-
* @summary Handle
|
|
32193
|
+
* @summary Handle status request from client
|
|
32157
32194
|
* @param {string} id ID of the Managed Client Status to update
|
|
32158
32195
|
* @param {ManagedClientStatusBeta} managedClientStatusBeta
|
|
32159
32196
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -32208,7 +32245,7 @@ export interface ManagedClientsBetaApiUpdateManagedClientStatusRequest {
|
|
|
32208
32245
|
export declare class ManagedClientsBetaApi extends BaseAPI {
|
|
32209
32246
|
/**
|
|
32210
32247
|
* Retrieve Managed Client Status by ID.
|
|
32211
|
-
* @summary
|
|
32248
|
+
* @summary Specified Managed Client Status.
|
|
32212
32249
|
* @param {ManagedClientsBetaApiGetManagedClientStatusRequest} requestParameters Request parameters.
|
|
32213
32250
|
* @param {*} [axiosOptions] Override http request option.
|
|
32214
32251
|
* @throws {RequiredError}
|
|
@@ -32217,7 +32254,7 @@ export declare class ManagedClientsBetaApi extends BaseAPI {
|
|
|
32217
32254
|
getManagedClientStatus(requestParameters: ManagedClientsBetaApiGetManagedClientStatusRequest, axiosOptions?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ManagedClientStatusBeta, any>>;
|
|
32218
32255
|
/**
|
|
32219
32256
|
* Update a status detail passed in from the client
|
|
32220
|
-
* @summary Handle
|
|
32257
|
+
* @summary Handle status request from client
|
|
32221
32258
|
* @param {ManagedClientsBetaApiUpdateManagedClientStatusRequest} requestParameters Request parameters.
|
|
32222
32259
|
* @param {*} [axiosOptions] Override http request option.
|
|
32223
32260
|
* @throws {RequiredError}
|
|
@@ -32510,8 +32547,8 @@ export declare const NonEmployeeLifecycleManagementBetaApiAxiosParamCreator: (co
|
|
|
32510
32547
|
*/
|
|
32511
32548
|
createNonEmployeeSource: (nonEmployeeSourceRequestBodyBeta: NonEmployeeSourceRequestBodyBeta, axiosOptions?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
32512
32549
|
/**
|
|
32513
|
-
* This API creates a new schema attribute for Non-Employee Source. The schema technical name must be unique in the source. Attempts to create a schema attribute with an existing name will result in a \"400.1.409 Reference conflict\" response. At most, 10 custom attributes can be created per schema. Attempts to create more than 10 will result in a \"400.1.4 Limit violation\" response.
|
|
32514
|
-
* @summary Create
|
|
32550
|
+
* This API creates a new schema attribute for Non-Employee Source. The schema technical name must be unique in the source. Attempts to create a schema attribute with an existing name will result in a \"400.1.409 Reference conflict\" response. At most, 10 custom attributes can be created per schema. Attempts to create more than 10 will result in a \"400.1.4 Limit violation\" response.
|
|
32551
|
+
* @summary Create Non-Employee Source Schema Attribute
|
|
32515
32552
|
* @param {string} sourceId The Source id
|
|
32516
32553
|
* @param {NonEmployeeSchemaAttributeBodyBeta} nonEmployeeSchemaAttributeBodyBeta
|
|
32517
32554
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -32519,7 +32556,7 @@ export declare const NonEmployeeLifecycleManagementBetaApiAxiosParamCreator: (co
|
|
|
32519
32556
|
*/
|
|
32520
32557
|
createNonEmployeeSourceSchemaAttributes: (sourceId: string, nonEmployeeSchemaAttributeBodyBeta: NonEmployeeSchemaAttributeBodyBeta, axiosOptions?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
32521
32558
|
/**
|
|
32522
|
-
* This request will delete a non-employee record.
|
|
32559
|
+
* This request will delete a non-employee record.
|
|
32523
32560
|
* @summary Delete Non-Employee Record
|
|
32524
32561
|
* @param {string} id Non-Employee record id (UUID)
|
|
32525
32562
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -32535,7 +32572,7 @@ export declare const NonEmployeeLifecycleManagementBetaApiAxiosParamCreator: (co
|
|
|
32535
32572
|
*/
|
|
32536
32573
|
deleteNonEmployeeRecordInBulk: (deleteNonEmployeeRecordInBulkRequestBeta: DeleteNonEmployeeRecordInBulkRequestBeta, axiosOptions?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
32537
32574
|
/**
|
|
32538
|
-
* This request will delete a non-employee request.
|
|
32575
|
+
* This request will delete a non-employee request.
|
|
32539
32576
|
* @summary Delete Non-Employee Request
|
|
32540
32577
|
* @param {string} id Non-Employee request id in the UUID format
|
|
32541
32578
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -32543,8 +32580,8 @@ export declare const NonEmployeeLifecycleManagementBetaApiAxiosParamCreator: (co
|
|
|
32543
32580
|
*/
|
|
32544
32581
|
deleteNonEmployeeRequest: (id: string, axiosOptions?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
32545
32582
|
/**
|
|
32546
|
-
* This end-point deletes a specific schema attribute for a non-employee source.
|
|
32547
|
-
* @summary Delete
|
|
32583
|
+
* This end-point deletes a specific schema attribute for a non-employee source.
|
|
32584
|
+
* @summary Delete Non-Employee Source\'s Schema Attribute
|
|
32548
32585
|
* @param {string} attributeId The Schema Attribute Id (UUID)
|
|
32549
32586
|
* @param {string} sourceId The Source id
|
|
32550
32587
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -32552,7 +32589,7 @@ export declare const NonEmployeeLifecycleManagementBetaApiAxiosParamCreator: (co
|
|
|
32552
32589
|
*/
|
|
32553
32590
|
deleteNonEmployeeSchemaAttribute: (attributeId: string, sourceId: string, axiosOptions?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
32554
32591
|
/**
|
|
32555
|
-
* This request will delete a non-employee source.
|
|
32592
|
+
* This request will delete a non-employee source.
|
|
32556
32593
|
* @summary Delete Non-Employee Source
|
|
32557
32594
|
* @param {string} sourceId Source Id
|
|
32558
32595
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -32560,15 +32597,15 @@ export declare const NonEmployeeLifecycleManagementBetaApiAxiosParamCreator: (co
|
|
|
32560
32597
|
*/
|
|
32561
32598
|
deleteNonEmployeeSource: (sourceId: string, axiosOptions?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
32562
32599
|
/**
|
|
32563
|
-
* This end-point deletes all custom schema attributes for a non-employee source.
|
|
32564
|
-
* @summary Delete all custom schema attributes
|
|
32600
|
+
* This end-point deletes all custom schema attributes for a non-employee source.
|
|
32601
|
+
* @summary Delete all custom schema attributes
|
|
32565
32602
|
* @param {string} sourceId The Source id
|
|
32566
32603
|
* @param {*} [axiosOptions] Override http request option.
|
|
32567
32604
|
* @throws {RequiredError}
|
|
32568
32605
|
*/
|
|
32569
32606
|
deleteNonEmployeeSourceSchemaAttributes: (sourceId: string, axiosOptions?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
32570
32607
|
/**
|
|
32571
|
-
* This requests a CSV download for all non-employees from a provided source.
|
|
32608
|
+
* This requests a CSV download for all non-employees from a provided source.
|
|
32572
32609
|
* @summary Exports Non-Employee Records to CSV
|
|
32573
32610
|
* @param {string} id Source Id (UUID)
|
|
32574
32611
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -32601,15 +32638,15 @@ export declare const NonEmployeeLifecycleManagementBetaApiAxiosParamCreator: (co
|
|
|
32601
32638
|
*/
|
|
32602
32639
|
getNonEmployeeApprovalSummary: (requestedFor: string, axiosOptions?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
32603
32640
|
/**
|
|
32604
|
-
* The nonEmployeeBulkUploadStatus API returns the status of the newest bulk upload job for the specified source.
|
|
32605
|
-
* @summary
|
|
32641
|
+
* The nonEmployeeBulkUploadStatus API returns the status of the newest bulk upload job for the specified source.
|
|
32642
|
+
* @summary Bulk upload status on source
|
|
32606
32643
|
* @param {string} id Source ID (UUID)
|
|
32607
32644
|
* @param {*} [axiosOptions] Override http request option.
|
|
32608
32645
|
* @throws {RequiredError}
|
|
32609
32646
|
*/
|
|
32610
32647
|
getNonEmployeeBulkUploadStatus: (id: string, axiosOptions?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
32611
32648
|
/**
|
|
32612
|
-
* This gets a non-employee record.
|
|
32649
|
+
* This gets a non-employee record.
|
|
32613
32650
|
* @summary Get a Non-Employee Record
|
|
32614
32651
|
* @param {string} id Non-Employee record id (UUID)
|
|
32615
32652
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -32718,8 +32755,8 @@ export declare const NonEmployeeLifecycleManagementBetaApiAxiosParamCreator: (co
|
|
|
32718
32755
|
*/
|
|
32719
32756
|
patchNonEmployeeRecord: (id: string, jsonPatchOperationBeta: Array<JsonPatchOperationBeta>, axiosOptions?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
32720
32757
|
/**
|
|
32721
|
-
* This end-point patches a specific schema attribute for a non-employee SourceId.
|
|
32722
|
-
* @summary Patch
|
|
32758
|
+
* This end-point patches a specific schema attribute for a non-employee SourceId.
|
|
32759
|
+
* @summary Patch Non-Employee Source\'s Schema Attribute
|
|
32723
32760
|
* @param {string} attributeId The Schema Attribute Id (UUID)
|
|
32724
32761
|
* @param {string} sourceId The Source id
|
|
32725
32762
|
* @param {Array<JsonPatchOperationBeta>} jsonPatchOperationBeta A list of schema attribute update operations according to the [JSON Patch](https://tools.ietf.org/html/rfc6902) standard. The following properties are allowed for update \':\' \'label\', \'helpText\', \'placeholder\', \'required\'.
|
|
@@ -32728,7 +32765,7 @@ export declare const NonEmployeeLifecycleManagementBetaApiAxiosParamCreator: (co
|
|
|
32728
32765
|
*/
|
|
32729
32766
|
patchNonEmployeeSchemaAttribute: (attributeId: string, sourceId: string, jsonPatchOperationBeta: Array<JsonPatchOperationBeta>, axiosOptions?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
32730
32767
|
/**
|
|
32731
|
-
* patch a non-employee source. (Partial Update) Patchable field: **name, description, approvers, accountManagers**
|
|
32768
|
+
* patch a non-employee source. (Partial Update) Patchable field: **name, description, approvers, accountManagers**
|
|
32732
32769
|
* @summary Patch a Non-Employee Source
|
|
32733
32770
|
* @param {string} sourceId Source Id
|
|
32734
32771
|
* @param {Array<JsonPatchOperationBeta>} jsonPatchOperationBeta A list of non-employee source update operations according to the [JSON Patch](https://tools.ietf.org/html/rfc6902) standard.
|
|
@@ -32803,8 +32840,8 @@ export declare const NonEmployeeLifecycleManagementBetaApiFp: (configuration?: C
|
|
|
32803
32840
|
*/
|
|
32804
32841
|
createNonEmployeeSource(nonEmployeeSourceRequestBodyBeta: NonEmployeeSourceRequestBodyBeta, axiosOptions?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<NonEmployeeSourceWithCloudExternalIdBeta>>;
|
|
32805
32842
|
/**
|
|
32806
|
-
* This API creates a new schema attribute for Non-Employee Source. The schema technical name must be unique in the source. Attempts to create a schema attribute with an existing name will result in a \"400.1.409 Reference conflict\" response. At most, 10 custom attributes can be created per schema. Attempts to create more than 10 will result in a \"400.1.4 Limit violation\" response.
|
|
32807
|
-
* @summary Create
|
|
32843
|
+
* This API creates a new schema attribute for Non-Employee Source. The schema technical name must be unique in the source. Attempts to create a schema attribute with an existing name will result in a \"400.1.409 Reference conflict\" response. At most, 10 custom attributes can be created per schema. Attempts to create more than 10 will result in a \"400.1.4 Limit violation\" response.
|
|
32844
|
+
* @summary Create Non-Employee Source Schema Attribute
|
|
32808
32845
|
* @param {string} sourceId The Source id
|
|
32809
32846
|
* @param {NonEmployeeSchemaAttributeBodyBeta} nonEmployeeSchemaAttributeBodyBeta
|
|
32810
32847
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -32812,7 +32849,7 @@ export declare const NonEmployeeLifecycleManagementBetaApiFp: (configuration?: C
|
|
|
32812
32849
|
*/
|
|
32813
32850
|
createNonEmployeeSourceSchemaAttributes(sourceId: string, nonEmployeeSchemaAttributeBodyBeta: NonEmployeeSchemaAttributeBodyBeta, axiosOptions?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<NonEmployeeSchemaAttributeBeta>>;
|
|
32814
32851
|
/**
|
|
32815
|
-
* This request will delete a non-employee record.
|
|
32852
|
+
* This request will delete a non-employee record.
|
|
32816
32853
|
* @summary Delete Non-Employee Record
|
|
32817
32854
|
* @param {string} id Non-Employee record id (UUID)
|
|
32818
32855
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -32828,7 +32865,7 @@ export declare const NonEmployeeLifecycleManagementBetaApiFp: (configuration?: C
|
|
|
32828
32865
|
*/
|
|
32829
32866
|
deleteNonEmployeeRecordInBulk(deleteNonEmployeeRecordInBulkRequestBeta: DeleteNonEmployeeRecordInBulkRequestBeta, axiosOptions?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
32830
32867
|
/**
|
|
32831
|
-
* This request will delete a non-employee request.
|
|
32868
|
+
* This request will delete a non-employee request.
|
|
32832
32869
|
* @summary Delete Non-Employee Request
|
|
32833
32870
|
* @param {string} id Non-Employee request id in the UUID format
|
|
32834
32871
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -32836,8 +32873,8 @@ export declare const NonEmployeeLifecycleManagementBetaApiFp: (configuration?: C
|
|
|
32836
32873
|
*/
|
|
32837
32874
|
deleteNonEmployeeRequest(id: string, axiosOptions?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
32838
32875
|
/**
|
|
32839
|
-
* This end-point deletes a specific schema attribute for a non-employee source.
|
|
32840
|
-
* @summary Delete
|
|
32876
|
+
* This end-point deletes a specific schema attribute for a non-employee source.
|
|
32877
|
+
* @summary Delete Non-Employee Source\'s Schema Attribute
|
|
32841
32878
|
* @param {string} attributeId The Schema Attribute Id (UUID)
|
|
32842
32879
|
* @param {string} sourceId The Source id
|
|
32843
32880
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -32845,7 +32882,7 @@ export declare const NonEmployeeLifecycleManagementBetaApiFp: (configuration?: C
|
|
|
32845
32882
|
*/
|
|
32846
32883
|
deleteNonEmployeeSchemaAttribute(attributeId: string, sourceId: string, axiosOptions?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
32847
32884
|
/**
|
|
32848
|
-
* This request will delete a non-employee source.
|
|
32885
|
+
* This request will delete a non-employee source.
|
|
32849
32886
|
* @summary Delete Non-Employee Source
|
|
32850
32887
|
* @param {string} sourceId Source Id
|
|
32851
32888
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -32853,15 +32890,15 @@ export declare const NonEmployeeLifecycleManagementBetaApiFp: (configuration?: C
|
|
|
32853
32890
|
*/
|
|
32854
32891
|
deleteNonEmployeeSource(sourceId: string, axiosOptions?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
32855
32892
|
/**
|
|
32856
|
-
* This end-point deletes all custom schema attributes for a non-employee source.
|
|
32857
|
-
* @summary Delete all custom schema attributes
|
|
32893
|
+
* This end-point deletes all custom schema attributes for a non-employee source.
|
|
32894
|
+
* @summary Delete all custom schema attributes
|
|
32858
32895
|
* @param {string} sourceId The Source id
|
|
32859
32896
|
* @param {*} [axiosOptions] Override http request option.
|
|
32860
32897
|
* @throws {RequiredError}
|
|
32861
32898
|
*/
|
|
32862
32899
|
deleteNonEmployeeSourceSchemaAttributes(sourceId: string, axiosOptions?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
32863
32900
|
/**
|
|
32864
|
-
* This requests a CSV download for all non-employees from a provided source.
|
|
32901
|
+
* This requests a CSV download for all non-employees from a provided source.
|
|
32865
32902
|
* @summary Exports Non-Employee Records to CSV
|
|
32866
32903
|
* @param {string} id Source Id (UUID)
|
|
32867
32904
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -32894,15 +32931,15 @@ export declare const NonEmployeeLifecycleManagementBetaApiFp: (configuration?: C
|
|
|
32894
32931
|
*/
|
|
32895
32932
|
getNonEmployeeApprovalSummary(requestedFor: string, axiosOptions?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<NonEmployeeApprovalSummaryBeta>>;
|
|
32896
32933
|
/**
|
|
32897
|
-
* The nonEmployeeBulkUploadStatus API returns the status of the newest bulk upload job for the specified source.
|
|
32898
|
-
* @summary
|
|
32934
|
+
* The nonEmployeeBulkUploadStatus API returns the status of the newest bulk upload job for the specified source.
|
|
32935
|
+
* @summary Bulk upload status on source
|
|
32899
32936
|
* @param {string} id Source ID (UUID)
|
|
32900
32937
|
* @param {*} [axiosOptions] Override http request option.
|
|
32901
32938
|
* @throws {RequiredError}
|
|
32902
32939
|
*/
|
|
32903
32940
|
getNonEmployeeBulkUploadStatus(id: string, axiosOptions?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<NonEmployeeBulkUploadStatusBeta>>;
|
|
32904
32941
|
/**
|
|
32905
|
-
* This gets a non-employee record.
|
|
32942
|
+
* This gets a non-employee record.
|
|
32906
32943
|
* @summary Get a Non-Employee Record
|
|
32907
32944
|
* @param {string} id Non-Employee record id (UUID)
|
|
32908
32945
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -33011,8 +33048,8 @@ export declare const NonEmployeeLifecycleManagementBetaApiFp: (configuration?: C
|
|
|
33011
33048
|
*/
|
|
33012
33049
|
patchNonEmployeeRecord(id: string, jsonPatchOperationBeta: Array<JsonPatchOperationBeta>, axiosOptions?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<NonEmployeeRecordBeta>>;
|
|
33013
33050
|
/**
|
|
33014
|
-
* This end-point patches a specific schema attribute for a non-employee SourceId.
|
|
33015
|
-
* @summary Patch
|
|
33051
|
+
* This end-point patches a specific schema attribute for a non-employee SourceId.
|
|
33052
|
+
* @summary Patch Non-Employee Source\'s Schema Attribute
|
|
33016
33053
|
* @param {string} attributeId The Schema Attribute Id (UUID)
|
|
33017
33054
|
* @param {string} sourceId The Source id
|
|
33018
33055
|
* @param {Array<JsonPatchOperationBeta>} jsonPatchOperationBeta A list of schema attribute update operations according to the [JSON Patch](https://tools.ietf.org/html/rfc6902) standard. The following properties are allowed for update \':\' \'label\', \'helpText\', \'placeholder\', \'required\'.
|
|
@@ -33021,7 +33058,7 @@ export declare const NonEmployeeLifecycleManagementBetaApiFp: (configuration?: C
|
|
|
33021
33058
|
*/
|
|
33022
33059
|
patchNonEmployeeSchemaAttribute(attributeId: string, sourceId: string, jsonPatchOperationBeta: Array<JsonPatchOperationBeta>, axiosOptions?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<NonEmployeeSchemaAttributeBeta>>;
|
|
33023
33060
|
/**
|
|
33024
|
-
* patch a non-employee source. (Partial Update) Patchable field: **name, description, approvers, accountManagers**
|
|
33061
|
+
* patch a non-employee source. (Partial Update) Patchable field: **name, description, approvers, accountManagers**
|
|
33025
33062
|
* @summary Patch a Non-Employee Source
|
|
33026
33063
|
* @param {string} sourceId Source Id
|
|
33027
33064
|
* @param {Array<JsonPatchOperationBeta>} jsonPatchOperationBeta A list of non-employee source update operations according to the [JSON Patch](https://tools.ietf.org/html/rfc6902) standard.
|
|
@@ -33096,8 +33133,8 @@ export declare const NonEmployeeLifecycleManagementBetaApiFactory: (configuratio
|
|
|
33096
33133
|
*/
|
|
33097
33134
|
createNonEmployeeSource(nonEmployeeSourceRequestBodyBeta: NonEmployeeSourceRequestBodyBeta, axiosOptions?: any): AxiosPromise<NonEmployeeSourceWithCloudExternalIdBeta>;
|
|
33098
33135
|
/**
|
|
33099
|
-
* This API creates a new schema attribute for Non-Employee Source. The schema technical name must be unique in the source. Attempts to create a schema attribute with an existing name will result in a \"400.1.409 Reference conflict\" response. At most, 10 custom attributes can be created per schema. Attempts to create more than 10 will result in a \"400.1.4 Limit violation\" response.
|
|
33100
|
-
* @summary Create
|
|
33136
|
+
* This API creates a new schema attribute for Non-Employee Source. The schema technical name must be unique in the source. Attempts to create a schema attribute with an existing name will result in a \"400.1.409 Reference conflict\" response. At most, 10 custom attributes can be created per schema. Attempts to create more than 10 will result in a \"400.1.4 Limit violation\" response.
|
|
33137
|
+
* @summary Create Non-Employee Source Schema Attribute
|
|
33101
33138
|
* @param {string} sourceId The Source id
|
|
33102
33139
|
* @param {NonEmployeeSchemaAttributeBodyBeta} nonEmployeeSchemaAttributeBodyBeta
|
|
33103
33140
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -33105,7 +33142,7 @@ export declare const NonEmployeeLifecycleManagementBetaApiFactory: (configuratio
|
|
|
33105
33142
|
*/
|
|
33106
33143
|
createNonEmployeeSourceSchemaAttributes(sourceId: string, nonEmployeeSchemaAttributeBodyBeta: NonEmployeeSchemaAttributeBodyBeta, axiosOptions?: any): AxiosPromise<NonEmployeeSchemaAttributeBeta>;
|
|
33107
33144
|
/**
|
|
33108
|
-
* This request will delete a non-employee record.
|
|
33145
|
+
* This request will delete a non-employee record.
|
|
33109
33146
|
* @summary Delete Non-Employee Record
|
|
33110
33147
|
* @param {string} id Non-Employee record id (UUID)
|
|
33111
33148
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -33121,7 +33158,7 @@ export declare const NonEmployeeLifecycleManagementBetaApiFactory: (configuratio
|
|
|
33121
33158
|
*/
|
|
33122
33159
|
deleteNonEmployeeRecordInBulk(deleteNonEmployeeRecordInBulkRequestBeta: DeleteNonEmployeeRecordInBulkRequestBeta, axiosOptions?: any): AxiosPromise<void>;
|
|
33123
33160
|
/**
|
|
33124
|
-
* This request will delete a non-employee request.
|
|
33161
|
+
* This request will delete a non-employee request.
|
|
33125
33162
|
* @summary Delete Non-Employee Request
|
|
33126
33163
|
* @param {string} id Non-Employee request id in the UUID format
|
|
33127
33164
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -33129,8 +33166,8 @@ export declare const NonEmployeeLifecycleManagementBetaApiFactory: (configuratio
|
|
|
33129
33166
|
*/
|
|
33130
33167
|
deleteNonEmployeeRequest(id: string, axiosOptions?: any): AxiosPromise<void>;
|
|
33131
33168
|
/**
|
|
33132
|
-
* This end-point deletes a specific schema attribute for a non-employee source.
|
|
33133
|
-
* @summary Delete
|
|
33169
|
+
* This end-point deletes a specific schema attribute for a non-employee source.
|
|
33170
|
+
* @summary Delete Non-Employee Source\'s Schema Attribute
|
|
33134
33171
|
* @param {string} attributeId The Schema Attribute Id (UUID)
|
|
33135
33172
|
* @param {string} sourceId The Source id
|
|
33136
33173
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -33138,7 +33175,7 @@ export declare const NonEmployeeLifecycleManagementBetaApiFactory: (configuratio
|
|
|
33138
33175
|
*/
|
|
33139
33176
|
deleteNonEmployeeSchemaAttribute(attributeId: string, sourceId: string, axiosOptions?: any): AxiosPromise<void>;
|
|
33140
33177
|
/**
|
|
33141
|
-
* This request will delete a non-employee source.
|
|
33178
|
+
* This request will delete a non-employee source.
|
|
33142
33179
|
* @summary Delete Non-Employee Source
|
|
33143
33180
|
* @param {string} sourceId Source Id
|
|
33144
33181
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -33146,15 +33183,15 @@ export declare const NonEmployeeLifecycleManagementBetaApiFactory: (configuratio
|
|
|
33146
33183
|
*/
|
|
33147
33184
|
deleteNonEmployeeSource(sourceId: string, axiosOptions?: any): AxiosPromise<void>;
|
|
33148
33185
|
/**
|
|
33149
|
-
* This end-point deletes all custom schema attributes for a non-employee source.
|
|
33150
|
-
* @summary Delete all custom schema attributes
|
|
33186
|
+
* This end-point deletes all custom schema attributes for a non-employee source.
|
|
33187
|
+
* @summary Delete all custom schema attributes
|
|
33151
33188
|
* @param {string} sourceId The Source id
|
|
33152
33189
|
* @param {*} [axiosOptions] Override http request option.
|
|
33153
33190
|
* @throws {RequiredError}
|
|
33154
33191
|
*/
|
|
33155
33192
|
deleteNonEmployeeSourceSchemaAttributes(sourceId: string, axiosOptions?: any): AxiosPromise<void>;
|
|
33156
33193
|
/**
|
|
33157
|
-
* This requests a CSV download for all non-employees from a provided source.
|
|
33194
|
+
* This requests a CSV download for all non-employees from a provided source.
|
|
33158
33195
|
* @summary Exports Non-Employee Records to CSV
|
|
33159
33196
|
* @param {string} id Source Id (UUID)
|
|
33160
33197
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -33187,15 +33224,15 @@ export declare const NonEmployeeLifecycleManagementBetaApiFactory: (configuratio
|
|
|
33187
33224
|
*/
|
|
33188
33225
|
getNonEmployeeApprovalSummary(requestedFor: string, axiosOptions?: any): AxiosPromise<NonEmployeeApprovalSummaryBeta>;
|
|
33189
33226
|
/**
|
|
33190
|
-
* The nonEmployeeBulkUploadStatus API returns the status of the newest bulk upload job for the specified source.
|
|
33191
|
-
* @summary
|
|
33227
|
+
* The nonEmployeeBulkUploadStatus API returns the status of the newest bulk upload job for the specified source.
|
|
33228
|
+
* @summary Bulk upload status on source
|
|
33192
33229
|
* @param {string} id Source ID (UUID)
|
|
33193
33230
|
* @param {*} [axiosOptions] Override http request option.
|
|
33194
33231
|
* @throws {RequiredError}
|
|
33195
33232
|
*/
|
|
33196
33233
|
getNonEmployeeBulkUploadStatus(id: string, axiosOptions?: any): AxiosPromise<NonEmployeeBulkUploadStatusBeta>;
|
|
33197
33234
|
/**
|
|
33198
|
-
* This gets a non-employee record.
|
|
33235
|
+
* This gets a non-employee record.
|
|
33199
33236
|
* @summary Get a Non-Employee Record
|
|
33200
33237
|
* @param {string} id Non-Employee record id (UUID)
|
|
33201
33238
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -33304,8 +33341,8 @@ export declare const NonEmployeeLifecycleManagementBetaApiFactory: (configuratio
|
|
|
33304
33341
|
*/
|
|
33305
33342
|
patchNonEmployeeRecord(id: string, jsonPatchOperationBeta: Array<JsonPatchOperationBeta>, axiosOptions?: any): AxiosPromise<NonEmployeeRecordBeta>;
|
|
33306
33343
|
/**
|
|
33307
|
-
* This end-point patches a specific schema attribute for a non-employee SourceId.
|
|
33308
|
-
* @summary Patch
|
|
33344
|
+
* This end-point patches a specific schema attribute for a non-employee SourceId.
|
|
33345
|
+
* @summary Patch Non-Employee Source\'s Schema Attribute
|
|
33309
33346
|
* @param {string} attributeId The Schema Attribute Id (UUID)
|
|
33310
33347
|
* @param {string} sourceId The Source id
|
|
33311
33348
|
* @param {Array<JsonPatchOperationBeta>} jsonPatchOperationBeta A list of schema attribute update operations according to the [JSON Patch](https://tools.ietf.org/html/rfc6902) standard. The following properties are allowed for update \':\' \'label\', \'helpText\', \'placeholder\', \'required\'.
|
|
@@ -33314,7 +33351,7 @@ export declare const NonEmployeeLifecycleManagementBetaApiFactory: (configuratio
|
|
|
33314
33351
|
*/
|
|
33315
33352
|
patchNonEmployeeSchemaAttribute(attributeId: string, sourceId: string, jsonPatchOperationBeta: Array<JsonPatchOperationBeta>, axiosOptions?: any): AxiosPromise<NonEmployeeSchemaAttributeBeta>;
|
|
33316
33353
|
/**
|
|
33317
|
-
* patch a non-employee source. (Partial Update) Patchable field: **name, description, approvers, accountManagers**
|
|
33354
|
+
* patch a non-employee source. (Partial Update) Patchable field: **name, description, approvers, accountManagers**
|
|
33318
33355
|
* @summary Patch a Non-Employee Source
|
|
33319
33356
|
* @param {string} sourceId Source Id
|
|
33320
33357
|
* @param {Array<JsonPatchOperationBeta>} jsonPatchOperationBeta A list of non-employee source update operations according to the [JSON Patch](https://tools.ietf.org/html/rfc6902) standard.
|
|
@@ -33996,8 +34033,8 @@ export declare class NonEmployeeLifecycleManagementBetaApi extends BaseAPI {
|
|
|
33996
34033
|
*/
|
|
33997
34034
|
createNonEmployeeSource(requestParameters: NonEmployeeLifecycleManagementBetaApiCreateNonEmployeeSourceRequest, axiosOptions?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<NonEmployeeSourceWithCloudExternalIdBeta, any>>;
|
|
33998
34035
|
/**
|
|
33999
|
-
* This API creates a new schema attribute for Non-Employee Source. The schema technical name must be unique in the source. Attempts to create a schema attribute with an existing name will result in a \"400.1.409 Reference conflict\" response. At most, 10 custom attributes can be created per schema. Attempts to create more than 10 will result in a \"400.1.4 Limit violation\" response.
|
|
34000
|
-
* @summary Create
|
|
34036
|
+
* This API creates a new schema attribute for Non-Employee Source. The schema technical name must be unique in the source. Attempts to create a schema attribute with an existing name will result in a \"400.1.409 Reference conflict\" response. At most, 10 custom attributes can be created per schema. Attempts to create more than 10 will result in a \"400.1.4 Limit violation\" response.
|
|
34037
|
+
* @summary Create Non-Employee Source Schema Attribute
|
|
34001
34038
|
* @param {NonEmployeeLifecycleManagementBetaApiCreateNonEmployeeSourceSchemaAttributesRequest} requestParameters Request parameters.
|
|
34002
34039
|
* @param {*} [axiosOptions] Override http request option.
|
|
34003
34040
|
* @throws {RequiredError}
|
|
@@ -34005,7 +34042,7 @@ export declare class NonEmployeeLifecycleManagementBetaApi extends BaseAPI {
|
|
|
34005
34042
|
*/
|
|
34006
34043
|
createNonEmployeeSourceSchemaAttributes(requestParameters: NonEmployeeLifecycleManagementBetaApiCreateNonEmployeeSourceSchemaAttributesRequest, axiosOptions?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<NonEmployeeSchemaAttributeBeta, any>>;
|
|
34007
34044
|
/**
|
|
34008
|
-
* This request will delete a non-employee record.
|
|
34045
|
+
* This request will delete a non-employee record.
|
|
34009
34046
|
* @summary Delete Non-Employee Record
|
|
34010
34047
|
* @param {NonEmployeeLifecycleManagementBetaApiDeleteNonEmployeeRecordRequest} requestParameters Request parameters.
|
|
34011
34048
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -34023,7 +34060,7 @@ export declare class NonEmployeeLifecycleManagementBetaApi extends BaseAPI {
|
|
|
34023
34060
|
*/
|
|
34024
34061
|
deleteNonEmployeeRecordInBulk(requestParameters: NonEmployeeLifecycleManagementBetaApiDeleteNonEmployeeRecordInBulkRequest, axiosOptions?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
34025
34062
|
/**
|
|
34026
|
-
* This request will delete a non-employee request.
|
|
34063
|
+
* This request will delete a non-employee request.
|
|
34027
34064
|
* @summary Delete Non-Employee Request
|
|
34028
34065
|
* @param {NonEmployeeLifecycleManagementBetaApiDeleteNonEmployeeRequestRequest} requestParameters Request parameters.
|
|
34029
34066
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -34032,8 +34069,8 @@ export declare class NonEmployeeLifecycleManagementBetaApi extends BaseAPI {
|
|
|
34032
34069
|
*/
|
|
34033
34070
|
deleteNonEmployeeRequest(requestParameters: NonEmployeeLifecycleManagementBetaApiDeleteNonEmployeeRequestRequest, axiosOptions?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
34034
34071
|
/**
|
|
34035
|
-
* This end-point deletes a specific schema attribute for a non-employee source.
|
|
34036
|
-
* @summary Delete
|
|
34072
|
+
* This end-point deletes a specific schema attribute for a non-employee source.
|
|
34073
|
+
* @summary Delete Non-Employee Source\'s Schema Attribute
|
|
34037
34074
|
* @param {NonEmployeeLifecycleManagementBetaApiDeleteNonEmployeeSchemaAttributeRequest} requestParameters Request parameters.
|
|
34038
34075
|
* @param {*} [axiosOptions] Override http request option.
|
|
34039
34076
|
* @throws {RequiredError}
|
|
@@ -34041,7 +34078,7 @@ export declare class NonEmployeeLifecycleManagementBetaApi extends BaseAPI {
|
|
|
34041
34078
|
*/
|
|
34042
34079
|
deleteNonEmployeeSchemaAttribute(requestParameters: NonEmployeeLifecycleManagementBetaApiDeleteNonEmployeeSchemaAttributeRequest, axiosOptions?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
34043
34080
|
/**
|
|
34044
|
-
* This request will delete a non-employee source.
|
|
34081
|
+
* This request will delete a non-employee source.
|
|
34045
34082
|
* @summary Delete Non-Employee Source
|
|
34046
34083
|
* @param {NonEmployeeLifecycleManagementBetaApiDeleteNonEmployeeSourceRequest} requestParameters Request parameters.
|
|
34047
34084
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -34050,8 +34087,8 @@ export declare class NonEmployeeLifecycleManagementBetaApi extends BaseAPI {
|
|
|
34050
34087
|
*/
|
|
34051
34088
|
deleteNonEmployeeSource(requestParameters: NonEmployeeLifecycleManagementBetaApiDeleteNonEmployeeSourceRequest, axiosOptions?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
34052
34089
|
/**
|
|
34053
|
-
* This end-point deletes all custom schema attributes for a non-employee source.
|
|
34054
|
-
* @summary Delete all custom schema attributes
|
|
34090
|
+
* This end-point deletes all custom schema attributes for a non-employee source.
|
|
34091
|
+
* @summary Delete all custom schema attributes
|
|
34055
34092
|
* @param {NonEmployeeLifecycleManagementBetaApiDeleteNonEmployeeSourceSchemaAttributesRequest} requestParameters Request parameters.
|
|
34056
34093
|
* @param {*} [axiosOptions] Override http request option.
|
|
34057
34094
|
* @throws {RequiredError}
|
|
@@ -34059,7 +34096,7 @@ export declare class NonEmployeeLifecycleManagementBetaApi extends BaseAPI {
|
|
|
34059
34096
|
*/
|
|
34060
34097
|
deleteNonEmployeeSourceSchemaAttributes(requestParameters: NonEmployeeLifecycleManagementBetaApiDeleteNonEmployeeSourceSchemaAttributesRequest, axiosOptions?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
34061
34098
|
/**
|
|
34062
|
-
* This requests a CSV download for all non-employees from a provided source.
|
|
34099
|
+
* This requests a CSV download for all non-employees from a provided source.
|
|
34063
34100
|
* @summary Exports Non-Employee Records to CSV
|
|
34064
34101
|
* @param {NonEmployeeLifecycleManagementBetaApiExportNonEmployeeRecordsRequest} requestParameters Request parameters.
|
|
34065
34102
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -34095,8 +34132,8 @@ export declare class NonEmployeeLifecycleManagementBetaApi extends BaseAPI {
|
|
|
34095
34132
|
*/
|
|
34096
34133
|
getNonEmployeeApprovalSummary(requestParameters: NonEmployeeLifecycleManagementBetaApiGetNonEmployeeApprovalSummaryRequest, axiosOptions?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<NonEmployeeApprovalSummaryBeta, any>>;
|
|
34097
34134
|
/**
|
|
34098
|
-
* The nonEmployeeBulkUploadStatus API returns the status of the newest bulk upload job for the specified source.
|
|
34099
|
-
* @summary
|
|
34135
|
+
* The nonEmployeeBulkUploadStatus API returns the status of the newest bulk upload job for the specified source.
|
|
34136
|
+
* @summary Bulk upload status on source
|
|
34100
34137
|
* @param {NonEmployeeLifecycleManagementBetaApiGetNonEmployeeBulkUploadStatusRequest} requestParameters Request parameters.
|
|
34101
34138
|
* @param {*} [axiosOptions] Override http request option.
|
|
34102
34139
|
* @throws {RequiredError}
|
|
@@ -34104,7 +34141,7 @@ export declare class NonEmployeeLifecycleManagementBetaApi extends BaseAPI {
|
|
|
34104
34141
|
*/
|
|
34105
34142
|
getNonEmployeeBulkUploadStatus(requestParameters: NonEmployeeLifecycleManagementBetaApiGetNonEmployeeBulkUploadStatusRequest, axiosOptions?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<NonEmployeeBulkUploadStatusBeta, any>>;
|
|
34106
34143
|
/**
|
|
34107
|
-
* This gets a non-employee record.
|
|
34144
|
+
* This gets a non-employee record.
|
|
34108
34145
|
* @summary Get a Non-Employee Record
|
|
34109
34146
|
* @param {NonEmployeeLifecycleManagementBetaApiGetNonEmployeeRecordRequest} requestParameters Request parameters.
|
|
34110
34147
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -34203,8 +34240,8 @@ export declare class NonEmployeeLifecycleManagementBetaApi extends BaseAPI {
|
|
|
34203
34240
|
*/
|
|
34204
34241
|
patchNonEmployeeRecord(requestParameters: NonEmployeeLifecycleManagementBetaApiPatchNonEmployeeRecordRequest, axiosOptions?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<NonEmployeeRecordBeta, any>>;
|
|
34205
34242
|
/**
|
|
34206
|
-
* This end-point patches a specific schema attribute for a non-employee SourceId.
|
|
34207
|
-
* @summary Patch
|
|
34243
|
+
* This end-point patches a specific schema attribute for a non-employee SourceId.
|
|
34244
|
+
* @summary Patch Non-Employee Source\'s Schema Attribute
|
|
34208
34245
|
* @param {NonEmployeeLifecycleManagementBetaApiPatchNonEmployeeSchemaAttributeRequest} requestParameters Request parameters.
|
|
34209
34246
|
* @param {*} [axiosOptions] Override http request option.
|
|
34210
34247
|
* @throws {RequiredError}
|
|
@@ -34212,7 +34249,7 @@ export declare class NonEmployeeLifecycleManagementBetaApi extends BaseAPI {
|
|
|
34212
34249
|
*/
|
|
34213
34250
|
patchNonEmployeeSchemaAttribute(requestParameters: NonEmployeeLifecycleManagementBetaApiPatchNonEmployeeSchemaAttributeRequest, axiosOptions?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<NonEmployeeSchemaAttributeBeta, any>>;
|
|
34214
34251
|
/**
|
|
34215
|
-
* patch a non-employee source. (Partial Update) Patchable field: **name, description, approvers, accountManagers**
|
|
34252
|
+
* patch a non-employee source. (Partial Update) Patchable field: **name, description, approvers, accountManagers**
|
|
34216
34253
|
* @summary Patch a Non-Employee Source
|
|
34217
34254
|
* @param {NonEmployeeLifecycleManagementBetaApiPatchNonEmployeeSourceRequest} requestParameters Request parameters.
|
|
34218
34255
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -35655,7 +35692,7 @@ export declare const PasswordManagementBetaApiAxiosParamCreator: (configuration?
|
|
|
35655
35692
|
*/
|
|
35656
35693
|
queryPasswordInfo: (passwordInfoQueryDTOBeta: PasswordInfoQueryDTOBeta, axiosOptions?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
35657
35694
|
/**
|
|
35658
|
-
* This API is used to set a password for an identity. An identity can change their own password if they use a token generated by their IDN user, such as a [personal access token](https://developer.sailpoint.com/idn/api/authentication#personal-access-tokens) or [\"authorization_code\" derived OAuth token](https://developer.sailpoint.com/idn/api/authentication#authorization-code-grant-flow). A token with [API authority](https://developer.sailpoint.com/idn/api/authentication#client-credentials-grant-flow) can be used to change **any** identity\'s password. \"API authority\" refers to a token that only has the \"client_credentials\" grant type.
|
|
35695
|
+
* This API is used to set a password for an identity. An identity can change their own password (as well as any of their accounts\' passwords) if they use a token generated by their IDN user, such as a [personal access token](https://developer.sailpoint.com/idn/api/authentication#personal-access-tokens) or [\"authorization_code\" derived OAuth token](https://developer.sailpoint.com/idn/api/authentication#authorization-code-grant-flow). A token with [API authority](https://developer.sailpoint.com/idn/api/authentication#client-credentials-grant-flow) can be used to change **any** identity\'s password or the password of any of the identity\'s accounts. \"API authority\" refers to a token that only has the \"client_credentials\" grant type. You can use this endpoint to generate an `encryptedPassword` (RSA encrypted using publicKey). To do so, follow these steps: 1. Use [Query Password Info](https://developer.sailpoint.com/idn/api/v3/query-password-info) to get the following information: `identityId`, `sourceId`, `publicKeyId`, `publicKey`, `accounts`, and `policies`. 2. Choose an account from the previous response that you will provide as an `accountId` in your request to set an encrypted password. 3. Use [Set Identity\'s Password](https://developer.sailpoint.com/idn/api/v3/set-password) and provide the information you got from your earlier query. Then add this code to your request to get the encrypted password: ```java import javax.crypto.Cipher; import java.security.KeyFactory; import java.security.PublicKey; import java.security.spec.X509EncodedKeySpec; import java util.Base64; String encrypt(String publicKey, String toEncrypt) throws Exception { byte[] publicKeyBytes = Base64.getDecoder().decode(publicKey); byte[] encryptedBytes = encryptRsa(publicKeyBytes, toEncrypt.getBytes(\"UTF-8\")); return Base64.getEncoder().encodeToString(encryptedBytes); } private byte[] encryptRsa(byte[] publicKeyBytes, byte[] toEncryptBytes) throws Exception { PublicKey key = KeyFactory.getInstance(\"RSA\").generatePublic(new X509EncodedKeySpec(publicKeyBytes)); String transformation = \"RSA/ECB/PKCS1Padding\"; Cipher cipher = Cipher.getInstance(transformation); cipher.init(1, key); return cipher.doFinal(toEncryptBytes); } ``` In this example, `toEncrypt` refers to the plain text password you are setting and then encrypting, and the `publicKey` refers to the publicKey you got from the first request you sent. You can then use [Get Password Change Request Status](https://developer.sailpoint.com/idn/api/v3/get-password-change-status) to check the password change request status. To do so, you must provide the `requestId` from your earlier request to set the password.
|
|
35659
35696
|
* @summary Set Identity\'s Password
|
|
35660
35697
|
* @param {PasswordChangeRequestBeta} passwordChangeRequestBeta
|
|
35661
35698
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -35693,7 +35730,7 @@ export declare const PasswordManagementBetaApiFp: (configuration?: Configuration
|
|
|
35693
35730
|
*/
|
|
35694
35731
|
queryPasswordInfo(passwordInfoQueryDTOBeta: PasswordInfoQueryDTOBeta, axiosOptions?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PasswordInfoBeta>>;
|
|
35695
35732
|
/**
|
|
35696
|
-
* This API is used to set a password for an identity. An identity can change their own password if they use a token generated by their IDN user, such as a [personal access token](https://developer.sailpoint.com/idn/api/authentication#personal-access-tokens) or [\"authorization_code\" derived OAuth token](https://developer.sailpoint.com/idn/api/authentication#authorization-code-grant-flow). A token with [API authority](https://developer.sailpoint.com/idn/api/authentication#client-credentials-grant-flow) can be used to change **any** identity\'s password. \"API authority\" refers to a token that only has the \"client_credentials\" grant type.
|
|
35733
|
+
* This API is used to set a password for an identity. An identity can change their own password (as well as any of their accounts\' passwords) if they use a token generated by their IDN user, such as a [personal access token](https://developer.sailpoint.com/idn/api/authentication#personal-access-tokens) or [\"authorization_code\" derived OAuth token](https://developer.sailpoint.com/idn/api/authentication#authorization-code-grant-flow). A token with [API authority](https://developer.sailpoint.com/idn/api/authentication#client-credentials-grant-flow) can be used to change **any** identity\'s password or the password of any of the identity\'s accounts. \"API authority\" refers to a token that only has the \"client_credentials\" grant type. You can use this endpoint to generate an `encryptedPassword` (RSA encrypted using publicKey). To do so, follow these steps: 1. Use [Query Password Info](https://developer.sailpoint.com/idn/api/v3/query-password-info) to get the following information: `identityId`, `sourceId`, `publicKeyId`, `publicKey`, `accounts`, and `policies`. 2. Choose an account from the previous response that you will provide as an `accountId` in your request to set an encrypted password. 3. Use [Set Identity\'s Password](https://developer.sailpoint.com/idn/api/v3/set-password) and provide the information you got from your earlier query. Then add this code to your request to get the encrypted password: ```java import javax.crypto.Cipher; import java.security.KeyFactory; import java.security.PublicKey; import java.security.spec.X509EncodedKeySpec; import java util.Base64; String encrypt(String publicKey, String toEncrypt) throws Exception { byte[] publicKeyBytes = Base64.getDecoder().decode(publicKey); byte[] encryptedBytes = encryptRsa(publicKeyBytes, toEncrypt.getBytes(\"UTF-8\")); return Base64.getEncoder().encodeToString(encryptedBytes); } private byte[] encryptRsa(byte[] publicKeyBytes, byte[] toEncryptBytes) throws Exception { PublicKey key = KeyFactory.getInstance(\"RSA\").generatePublic(new X509EncodedKeySpec(publicKeyBytes)); String transformation = \"RSA/ECB/PKCS1Padding\"; Cipher cipher = Cipher.getInstance(transformation); cipher.init(1, key); return cipher.doFinal(toEncryptBytes); } ``` In this example, `toEncrypt` refers to the plain text password you are setting and then encrypting, and the `publicKey` refers to the publicKey you got from the first request you sent. You can then use [Get Password Change Request Status](https://developer.sailpoint.com/idn/api/v3/get-password-change-status) to check the password change request status. To do so, you must provide the `requestId` from your earlier request to set the password.
|
|
35697
35734
|
* @summary Set Identity\'s Password
|
|
35698
35735
|
* @param {PasswordChangeRequestBeta} passwordChangeRequestBeta
|
|
35699
35736
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -35731,7 +35768,7 @@ export declare const PasswordManagementBetaApiFactory: (configuration?: Configur
|
|
|
35731
35768
|
*/
|
|
35732
35769
|
queryPasswordInfo(passwordInfoQueryDTOBeta: PasswordInfoQueryDTOBeta, axiosOptions?: any): AxiosPromise<PasswordInfoBeta>;
|
|
35733
35770
|
/**
|
|
35734
|
-
* This API is used to set a password for an identity. An identity can change their own password if they use a token generated by their IDN user, such as a [personal access token](https://developer.sailpoint.com/idn/api/authentication#personal-access-tokens) or [\"authorization_code\" derived OAuth token](https://developer.sailpoint.com/idn/api/authentication#authorization-code-grant-flow). A token with [API authority](https://developer.sailpoint.com/idn/api/authentication#client-credentials-grant-flow) can be used to change **any** identity\'s password. \"API authority\" refers to a token that only has the \"client_credentials\" grant type.
|
|
35771
|
+
* This API is used to set a password for an identity. An identity can change their own password (as well as any of their accounts\' passwords) if they use a token generated by their IDN user, such as a [personal access token](https://developer.sailpoint.com/idn/api/authentication#personal-access-tokens) or [\"authorization_code\" derived OAuth token](https://developer.sailpoint.com/idn/api/authentication#authorization-code-grant-flow). A token with [API authority](https://developer.sailpoint.com/idn/api/authentication#client-credentials-grant-flow) can be used to change **any** identity\'s password or the password of any of the identity\'s accounts. \"API authority\" refers to a token that only has the \"client_credentials\" grant type. You can use this endpoint to generate an `encryptedPassword` (RSA encrypted using publicKey). To do so, follow these steps: 1. Use [Query Password Info](https://developer.sailpoint.com/idn/api/v3/query-password-info) to get the following information: `identityId`, `sourceId`, `publicKeyId`, `publicKey`, `accounts`, and `policies`. 2. Choose an account from the previous response that you will provide as an `accountId` in your request to set an encrypted password. 3. Use [Set Identity\'s Password](https://developer.sailpoint.com/idn/api/v3/set-password) and provide the information you got from your earlier query. Then add this code to your request to get the encrypted password: ```java import javax.crypto.Cipher; import java.security.KeyFactory; import java.security.PublicKey; import java.security.spec.X509EncodedKeySpec; import java util.Base64; String encrypt(String publicKey, String toEncrypt) throws Exception { byte[] publicKeyBytes = Base64.getDecoder().decode(publicKey); byte[] encryptedBytes = encryptRsa(publicKeyBytes, toEncrypt.getBytes(\"UTF-8\")); return Base64.getEncoder().encodeToString(encryptedBytes); } private byte[] encryptRsa(byte[] publicKeyBytes, byte[] toEncryptBytes) throws Exception { PublicKey key = KeyFactory.getInstance(\"RSA\").generatePublic(new X509EncodedKeySpec(publicKeyBytes)); String transformation = \"RSA/ECB/PKCS1Padding\"; Cipher cipher = Cipher.getInstance(transformation); cipher.init(1, key); return cipher.doFinal(toEncryptBytes); } ``` In this example, `toEncrypt` refers to the plain text password you are setting and then encrypting, and the `publicKey` refers to the publicKey you got from the first request you sent. You can then use [Get Password Change Request Status](https://developer.sailpoint.com/idn/api/v3/get-password-change-status) to check the password change request status. To do so, you must provide the `requestId` from your earlier request to set the password.
|
|
35735
35772
|
* @summary Set Identity\'s Password
|
|
35736
35773
|
* @param {PasswordChangeRequestBeta} passwordChangeRequestBeta
|
|
35737
35774
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -35826,7 +35863,7 @@ export declare class PasswordManagementBetaApi extends BaseAPI {
|
|
|
35826
35863
|
*/
|
|
35827
35864
|
queryPasswordInfo(requestParameters: PasswordManagementBetaApiQueryPasswordInfoRequest, axiosOptions?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<PasswordInfoBeta, any>>;
|
|
35828
35865
|
/**
|
|
35829
|
-
* This API is used to set a password for an identity. An identity can change their own password if they use a token generated by their IDN user, such as a [personal access token](https://developer.sailpoint.com/idn/api/authentication#personal-access-tokens) or [\"authorization_code\" derived OAuth token](https://developer.sailpoint.com/idn/api/authentication#authorization-code-grant-flow). A token with [API authority](https://developer.sailpoint.com/idn/api/authentication#client-credentials-grant-flow) can be used to change **any** identity\'s password. \"API authority\" refers to a token that only has the \"client_credentials\" grant type.
|
|
35866
|
+
* This API is used to set a password for an identity. An identity can change their own password (as well as any of their accounts\' passwords) if they use a token generated by their IDN user, such as a [personal access token](https://developer.sailpoint.com/idn/api/authentication#personal-access-tokens) or [\"authorization_code\" derived OAuth token](https://developer.sailpoint.com/idn/api/authentication#authorization-code-grant-flow). A token with [API authority](https://developer.sailpoint.com/idn/api/authentication#client-credentials-grant-flow) can be used to change **any** identity\'s password or the password of any of the identity\'s accounts. \"API authority\" refers to a token that only has the \"client_credentials\" grant type. You can use this endpoint to generate an `encryptedPassword` (RSA encrypted using publicKey). To do so, follow these steps: 1. Use [Query Password Info](https://developer.sailpoint.com/idn/api/v3/query-password-info) to get the following information: `identityId`, `sourceId`, `publicKeyId`, `publicKey`, `accounts`, and `policies`. 2. Choose an account from the previous response that you will provide as an `accountId` in your request to set an encrypted password. 3. Use [Set Identity\'s Password](https://developer.sailpoint.com/idn/api/v3/set-password) and provide the information you got from your earlier query. Then add this code to your request to get the encrypted password: ```java import javax.crypto.Cipher; import java.security.KeyFactory; import java.security.PublicKey; import java.security.spec.X509EncodedKeySpec; import java util.Base64; String encrypt(String publicKey, String toEncrypt) throws Exception { byte[] publicKeyBytes = Base64.getDecoder().decode(publicKey); byte[] encryptedBytes = encryptRsa(publicKeyBytes, toEncrypt.getBytes(\"UTF-8\")); return Base64.getEncoder().encodeToString(encryptedBytes); } private byte[] encryptRsa(byte[] publicKeyBytes, byte[] toEncryptBytes) throws Exception { PublicKey key = KeyFactory.getInstance(\"RSA\").generatePublic(new X509EncodedKeySpec(publicKeyBytes)); String transformation = \"RSA/ECB/PKCS1Padding\"; Cipher cipher = Cipher.getInstance(transformation); cipher.init(1, key); return cipher.doFinal(toEncryptBytes); } ``` In this example, `toEncrypt` refers to the plain text password you are setting and then encrypting, and the `publicKey` refers to the publicKey you got from the first request you sent. You can then use [Get Password Change Request Status](https://developer.sailpoint.com/idn/api/v3/get-password-change-status) to check the password change request status. To do so, you must provide the `requestId` from your earlier request to set the password.
|
|
35830
35867
|
* @summary Set Identity\'s Password
|
|
35831
35868
|
* @param {PasswordManagementBetaApiSetIdentityPasswordRequest} requestParameters Request parameters.
|
|
35832
35869
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -37146,6 +37183,14 @@ export declare class RoleInsightsBetaApi extends BaseAPI {
|
|
|
37146
37183
|
* @export
|
|
37147
37184
|
*/
|
|
37148
37185
|
export declare const RolesBetaApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
37186
|
+
/**
|
|
37187
|
+
* This API initiates a bulk deletion of one or more Roles. A token with API, ORG_ADMIN, ROLE_ADMIN, or ROLE_SUBADMIN authority is required to call this API. In addition, a token with ROLE_SUBADMIN authority may only call this API if all Roles included in the request are associated to Sources with management workgroups of which the ROLE_SUBADMIN is a member.
|
|
37188
|
+
* @summary Delete Role(s)
|
|
37189
|
+
* @param {RoleBulkDeleteRequestBeta} roleBulkDeleteRequestBeta
|
|
37190
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
37191
|
+
* @throws {RequiredError}
|
|
37192
|
+
*/
|
|
37193
|
+
bulkDeleteRoles: (roleBulkDeleteRequestBeta: RoleBulkDeleteRequestBeta, axiosOptions?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
37149
37194
|
/**
|
|
37150
37195
|
* This API creates a Role. There is a soft limit of 800 roles per org in IdentityNow. You will receive an error if you attempt to add more than 800 roles via the API or the UI. If you need to add roles above this limit, please create a support ticket. A token with API, ORG_ADMIN, ROLE_ADMIN, or ROLE_SUBADMIN authority is required to call this API. In addition, a ROLE_SUBADMIN may not create a Role including an Access Profile if that Access Profile is associated with a Source with which the ROLE_SUBADMIN is not themselves associated. The maximum supported length for the description field is 2000 characters. Longer descriptions will be preserved for existing roles, however, any new roles as well as any updates to existing descriptions will be limited to 2000 characters.
|
|
37151
37196
|
* @summary Create a Role
|
|
@@ -37172,7 +37217,7 @@ export declare const RolesBetaApiAxiosParamCreator: (configuration?: Configurati
|
|
|
37172
37217
|
getRole: (id: string, axiosOptions?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
37173
37218
|
/**
|
|
37174
37219
|
*
|
|
37175
|
-
* @summary
|
|
37220
|
+
* @summary Identities assigned a Role
|
|
37176
37221
|
* @param {string} id ID of the Role for which the assigned Identities are to be listed
|
|
37177
37222
|
* @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.
|
|
37178
37223
|
* @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.
|
|
@@ -37213,6 +37258,14 @@ export declare const RolesBetaApiAxiosParamCreator: (configuration?: Configurati
|
|
|
37213
37258
|
* @export
|
|
37214
37259
|
*/
|
|
37215
37260
|
export declare const RolesBetaApiFp: (configuration?: Configuration) => {
|
|
37261
|
+
/**
|
|
37262
|
+
* This API initiates a bulk deletion of one or more Roles. A token with API, ORG_ADMIN, ROLE_ADMIN, or ROLE_SUBADMIN authority is required to call this API. In addition, a token with ROLE_SUBADMIN authority may only call this API if all Roles included in the request are associated to Sources with management workgroups of which the ROLE_SUBADMIN is a member.
|
|
37263
|
+
* @summary Delete Role(s)
|
|
37264
|
+
* @param {RoleBulkDeleteRequestBeta} roleBulkDeleteRequestBeta
|
|
37265
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
37266
|
+
* @throws {RequiredError}
|
|
37267
|
+
*/
|
|
37268
|
+
bulkDeleteRoles(roleBulkDeleteRequestBeta: RoleBulkDeleteRequestBeta, axiosOptions?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<BaseReferenceDtoBeta>>;
|
|
37216
37269
|
/**
|
|
37217
37270
|
* This API creates a Role. There is a soft limit of 800 roles per org in IdentityNow. You will receive an error if you attempt to add more than 800 roles via the API or the UI. If you need to add roles above this limit, please create a support ticket. A token with API, ORG_ADMIN, ROLE_ADMIN, or ROLE_SUBADMIN authority is required to call this API. In addition, a ROLE_SUBADMIN may not create a Role including an Access Profile if that Access Profile is associated with a Source with which the ROLE_SUBADMIN is not themselves associated. The maximum supported length for the description field is 2000 characters. Longer descriptions will be preserved for existing roles, however, any new roles as well as any updates to existing descriptions will be limited to 2000 characters.
|
|
37218
37271
|
* @summary Create a Role
|
|
@@ -37239,7 +37292,7 @@ export declare const RolesBetaApiFp: (configuration?: Configuration) => {
|
|
|
37239
37292
|
getRole(id: string, axiosOptions?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RoleBeta>>;
|
|
37240
37293
|
/**
|
|
37241
37294
|
*
|
|
37242
|
-
* @summary
|
|
37295
|
+
* @summary Identities assigned a Role
|
|
37243
37296
|
* @param {string} id ID of the Role for which the assigned Identities are to be listed
|
|
37244
37297
|
* @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.
|
|
37245
37298
|
* @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.
|
|
@@ -37280,6 +37333,14 @@ export declare const RolesBetaApiFp: (configuration?: Configuration) => {
|
|
|
37280
37333
|
* @export
|
|
37281
37334
|
*/
|
|
37282
37335
|
export declare const RolesBetaApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
37336
|
+
/**
|
|
37337
|
+
* This API initiates a bulk deletion of one or more Roles. A token with API, ORG_ADMIN, ROLE_ADMIN, or ROLE_SUBADMIN authority is required to call this API. In addition, a token with ROLE_SUBADMIN authority may only call this API if all Roles included in the request are associated to Sources with management workgroups of which the ROLE_SUBADMIN is a member.
|
|
37338
|
+
* @summary Delete Role(s)
|
|
37339
|
+
* @param {RoleBulkDeleteRequestBeta} roleBulkDeleteRequestBeta
|
|
37340
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
37341
|
+
* @throws {RequiredError}
|
|
37342
|
+
*/
|
|
37343
|
+
bulkDeleteRoles(roleBulkDeleteRequestBeta: RoleBulkDeleteRequestBeta, axiosOptions?: any): AxiosPromise<BaseReferenceDtoBeta>;
|
|
37283
37344
|
/**
|
|
37284
37345
|
* This API creates a Role. There is a soft limit of 800 roles per org in IdentityNow. You will receive an error if you attempt to add more than 800 roles via the API or the UI. If you need to add roles above this limit, please create a support ticket. A token with API, ORG_ADMIN, ROLE_ADMIN, or ROLE_SUBADMIN authority is required to call this API. In addition, a ROLE_SUBADMIN may not create a Role including an Access Profile if that Access Profile is associated with a Source with which the ROLE_SUBADMIN is not themselves associated. The maximum supported length for the description field is 2000 characters. Longer descriptions will be preserved for existing roles, however, any new roles as well as any updates to existing descriptions will be limited to 2000 characters.
|
|
37285
37346
|
* @summary Create a Role
|
|
@@ -37306,7 +37367,7 @@ export declare const RolesBetaApiFactory: (configuration?: Configuration, basePa
|
|
|
37306
37367
|
getRole(id: string, axiosOptions?: any): AxiosPromise<RoleBeta>;
|
|
37307
37368
|
/**
|
|
37308
37369
|
*
|
|
37309
|
-
* @summary
|
|
37370
|
+
* @summary Identities assigned a Role
|
|
37310
37371
|
* @param {string} id ID of the Role for which the assigned Identities are to be listed
|
|
37311
37372
|
* @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.
|
|
37312
37373
|
* @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.
|
|
@@ -37342,6 +37403,19 @@ export declare const RolesBetaApiFactory: (configuration?: Configuration, basePa
|
|
|
37342
37403
|
*/
|
|
37343
37404
|
patchRole(id: string, jsonPatchOperationBeta: Array<JsonPatchOperationBeta>, axiosOptions?: any): AxiosPromise<RoleBeta>;
|
|
37344
37405
|
};
|
|
37406
|
+
/**
|
|
37407
|
+
* Request parameters for bulkDeleteRoles operation in RolesBetaApi.
|
|
37408
|
+
* @export
|
|
37409
|
+
* @interface RolesBetaApiBulkDeleteRolesRequest
|
|
37410
|
+
*/
|
|
37411
|
+
export interface RolesBetaApiBulkDeleteRolesRequest {
|
|
37412
|
+
/**
|
|
37413
|
+
*
|
|
37414
|
+
* @type {RoleBulkDeleteRequestBeta}
|
|
37415
|
+
* @memberof RolesBetaApiBulkDeleteRoles
|
|
37416
|
+
*/
|
|
37417
|
+
readonly roleBulkDeleteRequestBeta: RoleBulkDeleteRequestBeta;
|
|
37418
|
+
}
|
|
37345
37419
|
/**
|
|
37346
37420
|
* Request parameters for createRole operation in RolesBetaApi.
|
|
37347
37421
|
* @export
|
|
@@ -37505,6 +37579,15 @@ export interface RolesBetaApiPatchRoleRequest {
|
|
|
37505
37579
|
* @extends {BaseAPI}
|
|
37506
37580
|
*/
|
|
37507
37581
|
export declare class RolesBetaApi extends BaseAPI {
|
|
37582
|
+
/**
|
|
37583
|
+
* This API initiates a bulk deletion of one or more Roles. A token with API, ORG_ADMIN, ROLE_ADMIN, or ROLE_SUBADMIN authority is required to call this API. In addition, a token with ROLE_SUBADMIN authority may only call this API if all Roles included in the request are associated to Sources with management workgroups of which the ROLE_SUBADMIN is a member.
|
|
37584
|
+
* @summary Delete Role(s)
|
|
37585
|
+
* @param {RolesBetaApiBulkDeleteRolesRequest} requestParameters Request parameters.
|
|
37586
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
37587
|
+
* @throws {RequiredError}
|
|
37588
|
+
* @memberof RolesBetaApi
|
|
37589
|
+
*/
|
|
37590
|
+
bulkDeleteRoles(requestParameters: RolesBetaApiBulkDeleteRolesRequest, axiosOptions?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<BaseReferenceDtoBeta, any>>;
|
|
37508
37591
|
/**
|
|
37509
37592
|
* This API creates a Role. There is a soft limit of 800 roles per org in IdentityNow. You will receive an error if you attempt to add more than 800 roles via the API or the UI. If you need to add roles above this limit, please create a support ticket. A token with API, ORG_ADMIN, ROLE_ADMIN, or ROLE_SUBADMIN authority is required to call this API. In addition, a ROLE_SUBADMIN may not create a Role including an Access Profile if that Access Profile is associated with a Source with which the ROLE_SUBADMIN is not themselves associated. The maximum supported length for the description field is 2000 characters. Longer descriptions will be preserved for existing roles, however, any new roles as well as any updates to existing descriptions will be limited to 2000 characters.
|
|
37510
37593
|
* @summary Create a Role
|
|
@@ -37534,7 +37617,7 @@ export declare class RolesBetaApi extends BaseAPI {
|
|
|
37534
37617
|
getRole(requestParameters: RolesBetaApiGetRoleRequest, axiosOptions?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<RoleBeta, any>>;
|
|
37535
37618
|
/**
|
|
37536
37619
|
*
|
|
37537
|
-
* @summary
|
|
37620
|
+
* @summary Identities assigned a Role
|
|
37538
37621
|
* @param {RolesBetaApiGetRoleAssignedIdentitiesRequest} requestParameters Request parameters.
|
|
37539
37622
|
* @param {*} [axiosOptions] Override http request option.
|
|
37540
37623
|
* @throws {RequiredError}
|
|
@@ -38455,7 +38538,7 @@ export declare class SODViolationsBetaApi extends BaseAPI {
|
|
|
38455
38538
|
*/
|
|
38456
38539
|
export declare const SPConfigBetaApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
38457
38540
|
/**
|
|
38458
|
-
* This post will export objects from the tenant to a JSON configuration file.
|
|
38541
|
+
* This post will export objects from the tenant to a JSON configuration file.
|
|
38459
38542
|
* @summary Initiates Configuration Objects Export Job.
|
|
38460
38543
|
* @param {ExportPayloadBeta} exportPayloadBeta Export options control what will be included in the export.
|
|
38461
38544
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -38505,7 +38588,7 @@ export declare const SPConfigBetaApiAxiosParamCreator: (configuration?: Configur
|
|
|
38505
38588
|
*/
|
|
38506
38589
|
importSpConfigJobStatus: (id: string, axiosOptions?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
38507
38590
|
/**
|
|
38508
|
-
* This gets the list of object configurations which are known to the tenant export/import service. Object configurations that contain \"importUrl\" and \"exportUrl\" are available for export/import.
|
|
38591
|
+
* This gets the list of object configurations which are known to the tenant export/import service. Object configurations that contain \"importUrl\" and \"exportUrl\" are available for export/import.
|
|
38509
38592
|
* @summary Get Config Object details
|
|
38510
38593
|
* @param {*} [axiosOptions] Override http request option.
|
|
38511
38594
|
* @throws {RequiredError}
|
|
@@ -38518,7 +38601,7 @@ export declare const SPConfigBetaApiAxiosParamCreator: (configuration?: Configur
|
|
|
38518
38601
|
*/
|
|
38519
38602
|
export declare const SPConfigBetaApiFp: (configuration?: Configuration) => {
|
|
38520
38603
|
/**
|
|
38521
|
-
* This post will export objects from the tenant to a JSON configuration file.
|
|
38604
|
+
* This post will export objects from the tenant to a JSON configuration file.
|
|
38522
38605
|
* @summary Initiates Configuration Objects Export Job.
|
|
38523
38606
|
* @param {ExportPayloadBeta} exportPayloadBeta Export options control what will be included in the export.
|
|
38524
38607
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -38568,7 +38651,7 @@ export declare const SPConfigBetaApiFp: (configuration?: Configuration) => {
|
|
|
38568
38651
|
*/
|
|
38569
38652
|
importSpConfigJobStatus(id: string, axiosOptions?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SpConfigJobBeta>>;
|
|
38570
38653
|
/**
|
|
38571
|
-
* This gets the list of object configurations which are known to the tenant export/import service. Object configurations that contain \"importUrl\" and \"exportUrl\" are available for export/import.
|
|
38654
|
+
* This gets the list of object configurations which are known to the tenant export/import service. Object configurations that contain \"importUrl\" and \"exportUrl\" are available for export/import.
|
|
38572
38655
|
* @summary Get Config Object details
|
|
38573
38656
|
* @param {*} [axiosOptions] Override http request option.
|
|
38574
38657
|
* @throws {RequiredError}
|
|
@@ -38581,7 +38664,7 @@ export declare const SPConfigBetaApiFp: (configuration?: Configuration) => {
|
|
|
38581
38664
|
*/
|
|
38582
38665
|
export declare const SPConfigBetaApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
38583
38666
|
/**
|
|
38584
|
-
* This post will export objects from the tenant to a JSON configuration file.
|
|
38667
|
+
* This post will export objects from the tenant to a JSON configuration file.
|
|
38585
38668
|
* @summary Initiates Configuration Objects Export Job.
|
|
38586
38669
|
* @param {ExportPayloadBeta} exportPayloadBeta Export options control what will be included in the export.
|
|
38587
38670
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -38631,7 +38714,7 @@ export declare const SPConfigBetaApiFactory: (configuration?: Configuration, bas
|
|
|
38631
38714
|
*/
|
|
38632
38715
|
importSpConfigJobStatus(id: string, axiosOptions?: any): AxiosPromise<SpConfigJobBeta>;
|
|
38633
38716
|
/**
|
|
38634
|
-
* This gets the list of object configurations which are known to the tenant export/import service. Object configurations that contain \"importUrl\" and \"exportUrl\" are available for export/import.
|
|
38717
|
+
* This gets the list of object configurations which are known to the tenant export/import service. Object configurations that contain \"importUrl\" and \"exportUrl\" are available for export/import.
|
|
38635
38718
|
* @summary Get Config Object details
|
|
38636
38719
|
* @param {*} [axiosOptions] Override http request option.
|
|
38637
38720
|
* @throws {RequiredError}
|
|
@@ -38736,7 +38819,7 @@ export interface SPConfigBetaApiImportSpConfigJobStatusRequest {
|
|
|
38736
38819
|
*/
|
|
38737
38820
|
export declare class SPConfigBetaApi extends BaseAPI {
|
|
38738
38821
|
/**
|
|
38739
|
-
* This post will export objects from the tenant to a JSON configuration file.
|
|
38822
|
+
* This post will export objects from the tenant to a JSON configuration file.
|
|
38740
38823
|
* @summary Initiates Configuration Objects Export Job.
|
|
38741
38824
|
* @param {SPConfigBetaApiExportSpConfigRequest} requestParameters Request parameters.
|
|
38742
38825
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -38790,7 +38873,7 @@ export declare class SPConfigBetaApi extends BaseAPI {
|
|
|
38790
38873
|
*/
|
|
38791
38874
|
importSpConfigJobStatus(requestParameters: SPConfigBetaApiImportSpConfigJobStatusRequest, axiosOptions?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SpConfigJobBeta, any>>;
|
|
38792
38875
|
/**
|
|
38793
|
-
* This gets the list of object configurations which are known to the tenant export/import service. Object configurations that contain \"importUrl\" and \"exportUrl\" are available for export/import.
|
|
38876
|
+
* This gets the list of object configurations which are known to the tenant export/import service. Object configurations that contain \"importUrl\" and \"exportUrl\" are available for export/import.
|
|
38794
38877
|
* @summary Get Config Object details
|
|
38795
38878
|
* @param {*} [axiosOptions] Override http request option.
|
|
38796
38879
|
* @throws {RequiredError}
|
|
@@ -39336,7 +39419,7 @@ export declare class SegmentsBetaApi extends BaseAPI {
|
|
|
39336
39419
|
export declare const ServiceDeskIntegrationBetaApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
39337
39420
|
/**
|
|
39338
39421
|
* Create a new Service Desk Integrations. A token with Org Admin or Service Desk Admin authority is required to access this endpoint.
|
|
39339
|
-
* @summary Create
|
|
39422
|
+
* @summary Create new Service Desk integration
|
|
39340
39423
|
* @param {ServiceDeskIntegrationDtoBeta} serviceDeskIntegrationDtoBeta The specifics of a new integration to create
|
|
39341
39424
|
* @param {*} [axiosOptions] Override http request option.
|
|
39342
39425
|
* @throws {RequiredError}
|
|
@@ -39344,7 +39427,7 @@ export declare const ServiceDeskIntegrationBetaApiAxiosParamCreator: (configurat
|
|
|
39344
39427
|
createServiceDeskIntegration: (serviceDeskIntegrationDtoBeta: ServiceDeskIntegrationDtoBeta, axiosOptions?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
39345
39428
|
/**
|
|
39346
39429
|
* Delete an existing Service Desk integration by ID. A token with Org Admin or Service Desk Admin authority is required to access this endpoint.
|
|
39347
|
-
* @summary Delete a Service Desk integration
|
|
39430
|
+
* @summary Delete a Service Desk integration
|
|
39348
39431
|
* @param {string} id ID of Service Desk integration to delete
|
|
39349
39432
|
* @param {*} [axiosOptions] Override http request option.
|
|
39350
39433
|
* @throws {RequiredError}
|
|
@@ -39352,7 +39435,7 @@ export declare const ServiceDeskIntegrationBetaApiAxiosParamCreator: (configurat
|
|
|
39352
39435
|
deleteServiceDeskIntegration: (id: string, axiosOptions?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
39353
39436
|
/**
|
|
39354
39437
|
* Get an existing Service Desk integration by ID. A token with Org Admin or Service Desk Admin authority is required to access this endpoint.
|
|
39355
|
-
* @summary Get a Service Desk integration
|
|
39438
|
+
* @summary Get a Service Desk integration
|
|
39356
39439
|
* @param {string} id ID of the Service Desk integration to get
|
|
39357
39440
|
* @param {*} [axiosOptions] Override http request option.
|
|
39358
39441
|
* @throws {RequiredError}
|
|
@@ -39387,14 +39470,14 @@ export declare const ServiceDeskIntegrationBetaApiAxiosParamCreator: (configurat
|
|
|
39387
39470
|
getServiceDeskIntegrationTypes: (axiosOptions?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
39388
39471
|
/**
|
|
39389
39472
|
* Get the time check configuration of queued SDIM tickets. A token with Org Admin or Service Desk Admin authority is required to access this endpoint.
|
|
39390
|
-
* @summary Get the time check configuration
|
|
39473
|
+
* @summary Get the time check configuration
|
|
39391
39474
|
* @param {*} [axiosOptions] Override http request option.
|
|
39392
39475
|
* @throws {RequiredError}
|
|
39393
39476
|
*/
|
|
39394
39477
|
getStatusCheckDetails: (axiosOptions?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
39395
39478
|
/**
|
|
39396
39479
|
* Update an existing ServiceDeskIntegration by ID with a PATCH request.
|
|
39397
|
-
* @summary Service Desk Integration Update
|
|
39480
|
+
* @summary Service Desk Integration Update PATCH
|
|
39398
39481
|
* @param {string} id ID of the Service Desk integration to update
|
|
39399
39482
|
* @param {JsonPatchBeta} jsonPatchBeta A list of SDIM update operations according to the [JSON Patch](https://tools.ietf.org/html/rfc6902) standard. PATCH can only be applied to the following fields: * \"beforeProvisioningRule\" A 403 Forbidden Error indicates that you attempted to PATCH a field that is not allowed.
|
|
39400
39483
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -39403,7 +39486,7 @@ export declare const ServiceDeskIntegrationBetaApiAxiosParamCreator: (configurat
|
|
|
39403
39486
|
patchServiceDeskIntegration: (id: string, jsonPatchBeta: JsonPatchBeta, axiosOptions?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
39404
39487
|
/**
|
|
39405
39488
|
* Update an existing Service Desk integration by ID with updated value in JSON form as the request body. A token with Org Admin or Service Desk Admin authority is required to access this endpoint.
|
|
39406
|
-
* @summary Update a Service Desk integration
|
|
39489
|
+
* @summary Update a Service Desk integration
|
|
39407
39490
|
* @param {string} id ID of the Service Desk integration to update
|
|
39408
39491
|
* @param {ServiceDeskIntegrationDtoBeta} serviceDeskIntegrationDtoBeta The specifics of the integration to update
|
|
39409
39492
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -39412,7 +39495,7 @@ export declare const ServiceDeskIntegrationBetaApiAxiosParamCreator: (configurat
|
|
|
39412
39495
|
updateServiceDeskIntegration: (id: string, serviceDeskIntegrationDtoBeta: ServiceDeskIntegrationDtoBeta, axiosOptions?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
39413
39496
|
/**
|
|
39414
39497
|
* Update the time check configuration of queued SDIM tickets. A token with Org Admin or Service Desk Admin authority is required to access this endpoint.
|
|
39415
|
-
* @summary Update the time check configuration
|
|
39498
|
+
* @summary Update the time check configuration
|
|
39416
39499
|
* @param {QueuedCheckConfigDetailsBeta} queuedCheckConfigDetailsBeta the modified time check configuration
|
|
39417
39500
|
* @param {*} [axiosOptions] Override http request option.
|
|
39418
39501
|
* @throws {RequiredError}
|
|
@@ -39426,7 +39509,7 @@ export declare const ServiceDeskIntegrationBetaApiAxiosParamCreator: (configurat
|
|
|
39426
39509
|
export declare const ServiceDeskIntegrationBetaApiFp: (configuration?: Configuration) => {
|
|
39427
39510
|
/**
|
|
39428
39511
|
* Create a new Service Desk Integrations. A token with Org Admin or Service Desk Admin authority is required to access this endpoint.
|
|
39429
|
-
* @summary Create
|
|
39512
|
+
* @summary Create new Service Desk integration
|
|
39430
39513
|
* @param {ServiceDeskIntegrationDtoBeta} serviceDeskIntegrationDtoBeta The specifics of a new integration to create
|
|
39431
39514
|
* @param {*} [axiosOptions] Override http request option.
|
|
39432
39515
|
* @throws {RequiredError}
|
|
@@ -39434,7 +39517,7 @@ export declare const ServiceDeskIntegrationBetaApiFp: (configuration?: Configura
|
|
|
39434
39517
|
createServiceDeskIntegration(serviceDeskIntegrationDtoBeta: ServiceDeskIntegrationDtoBeta, axiosOptions?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ServiceDeskIntegrationDtoBeta>>;
|
|
39435
39518
|
/**
|
|
39436
39519
|
* Delete an existing Service Desk integration by ID. A token with Org Admin or Service Desk Admin authority is required to access this endpoint.
|
|
39437
|
-
* @summary Delete a Service Desk integration
|
|
39520
|
+
* @summary Delete a Service Desk integration
|
|
39438
39521
|
* @param {string} id ID of Service Desk integration to delete
|
|
39439
39522
|
* @param {*} [axiosOptions] Override http request option.
|
|
39440
39523
|
* @throws {RequiredError}
|
|
@@ -39442,7 +39525,7 @@ export declare const ServiceDeskIntegrationBetaApiFp: (configuration?: Configura
|
|
|
39442
39525
|
deleteServiceDeskIntegration(id: string, axiosOptions?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
39443
39526
|
/**
|
|
39444
39527
|
* Get an existing Service Desk integration by ID. A token with Org Admin or Service Desk Admin authority is required to access this endpoint.
|
|
39445
|
-
* @summary Get a Service Desk integration
|
|
39528
|
+
* @summary Get a Service Desk integration
|
|
39446
39529
|
* @param {string} id ID of the Service Desk integration to get
|
|
39447
39530
|
* @param {*} [axiosOptions] Override http request option.
|
|
39448
39531
|
* @throws {RequiredError}
|
|
@@ -39477,14 +39560,14 @@ export declare const ServiceDeskIntegrationBetaApiFp: (configuration?: Configura
|
|
|
39477
39560
|
getServiceDeskIntegrationTypes(axiosOptions?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<ServiceDeskIntegrationTemplateTypeBeta>>>;
|
|
39478
39561
|
/**
|
|
39479
39562
|
* Get the time check configuration of queued SDIM tickets. A token with Org Admin or Service Desk Admin authority is required to access this endpoint.
|
|
39480
|
-
* @summary Get the time check configuration
|
|
39563
|
+
* @summary Get the time check configuration
|
|
39481
39564
|
* @param {*} [axiosOptions] Override http request option.
|
|
39482
39565
|
* @throws {RequiredError}
|
|
39483
39566
|
*/
|
|
39484
39567
|
getStatusCheckDetails(axiosOptions?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<QueuedCheckConfigDetailsBeta>>;
|
|
39485
39568
|
/**
|
|
39486
39569
|
* Update an existing ServiceDeskIntegration by ID with a PATCH request.
|
|
39487
|
-
* @summary Service Desk Integration Update
|
|
39570
|
+
* @summary Service Desk Integration Update PATCH
|
|
39488
39571
|
* @param {string} id ID of the Service Desk integration to update
|
|
39489
39572
|
* @param {JsonPatchBeta} jsonPatchBeta A list of SDIM update operations according to the [JSON Patch](https://tools.ietf.org/html/rfc6902) standard. PATCH can only be applied to the following fields: * \"beforeProvisioningRule\" A 403 Forbidden Error indicates that you attempted to PATCH a field that is not allowed.
|
|
39490
39573
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -39493,7 +39576,7 @@ export declare const ServiceDeskIntegrationBetaApiFp: (configuration?: Configura
|
|
|
39493
39576
|
patchServiceDeskIntegration(id: string, jsonPatchBeta: JsonPatchBeta, axiosOptions?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ServiceDeskIntegrationDtoBeta>>;
|
|
39494
39577
|
/**
|
|
39495
39578
|
* Update an existing Service Desk integration by ID with updated value in JSON form as the request body. A token with Org Admin or Service Desk Admin authority is required to access this endpoint.
|
|
39496
|
-
* @summary Update a Service Desk integration
|
|
39579
|
+
* @summary Update a Service Desk integration
|
|
39497
39580
|
* @param {string} id ID of the Service Desk integration to update
|
|
39498
39581
|
* @param {ServiceDeskIntegrationDtoBeta} serviceDeskIntegrationDtoBeta The specifics of the integration to update
|
|
39499
39582
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -39502,7 +39585,7 @@ export declare const ServiceDeskIntegrationBetaApiFp: (configuration?: Configura
|
|
|
39502
39585
|
updateServiceDeskIntegration(id: string, serviceDeskIntegrationDtoBeta: ServiceDeskIntegrationDtoBeta, axiosOptions?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ServiceDeskIntegrationDtoBeta>>;
|
|
39503
39586
|
/**
|
|
39504
39587
|
* Update the time check configuration of queued SDIM tickets. A token with Org Admin or Service Desk Admin authority is required to access this endpoint.
|
|
39505
|
-
* @summary Update the time check configuration
|
|
39588
|
+
* @summary Update the time check configuration
|
|
39506
39589
|
* @param {QueuedCheckConfigDetailsBeta} queuedCheckConfigDetailsBeta the modified time check configuration
|
|
39507
39590
|
* @param {*} [axiosOptions] Override http request option.
|
|
39508
39591
|
* @throws {RequiredError}
|
|
@@ -39516,7 +39599,7 @@ export declare const ServiceDeskIntegrationBetaApiFp: (configuration?: Configura
|
|
|
39516
39599
|
export declare const ServiceDeskIntegrationBetaApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
39517
39600
|
/**
|
|
39518
39601
|
* Create a new Service Desk Integrations. A token with Org Admin or Service Desk Admin authority is required to access this endpoint.
|
|
39519
|
-
* @summary Create
|
|
39602
|
+
* @summary Create new Service Desk integration
|
|
39520
39603
|
* @param {ServiceDeskIntegrationDtoBeta} serviceDeskIntegrationDtoBeta The specifics of a new integration to create
|
|
39521
39604
|
* @param {*} [axiosOptions] Override http request option.
|
|
39522
39605
|
* @throws {RequiredError}
|
|
@@ -39524,7 +39607,7 @@ export declare const ServiceDeskIntegrationBetaApiFactory: (configuration?: Conf
|
|
|
39524
39607
|
createServiceDeskIntegration(serviceDeskIntegrationDtoBeta: ServiceDeskIntegrationDtoBeta, axiosOptions?: any): AxiosPromise<ServiceDeskIntegrationDtoBeta>;
|
|
39525
39608
|
/**
|
|
39526
39609
|
* Delete an existing Service Desk integration by ID. A token with Org Admin or Service Desk Admin authority is required to access this endpoint.
|
|
39527
|
-
* @summary Delete a Service Desk integration
|
|
39610
|
+
* @summary Delete a Service Desk integration
|
|
39528
39611
|
* @param {string} id ID of Service Desk integration to delete
|
|
39529
39612
|
* @param {*} [axiosOptions] Override http request option.
|
|
39530
39613
|
* @throws {RequiredError}
|
|
@@ -39532,7 +39615,7 @@ export declare const ServiceDeskIntegrationBetaApiFactory: (configuration?: Conf
|
|
|
39532
39615
|
deleteServiceDeskIntegration(id: string, axiosOptions?: any): AxiosPromise<void>;
|
|
39533
39616
|
/**
|
|
39534
39617
|
* Get an existing Service Desk integration by ID. A token with Org Admin or Service Desk Admin authority is required to access this endpoint.
|
|
39535
|
-
* @summary Get a Service Desk integration
|
|
39618
|
+
* @summary Get a Service Desk integration
|
|
39536
39619
|
* @param {string} id ID of the Service Desk integration to get
|
|
39537
39620
|
* @param {*} [axiosOptions] Override http request option.
|
|
39538
39621
|
* @throws {RequiredError}
|
|
@@ -39567,14 +39650,14 @@ export declare const ServiceDeskIntegrationBetaApiFactory: (configuration?: Conf
|
|
|
39567
39650
|
getServiceDeskIntegrationTypes(axiosOptions?: any): AxiosPromise<Array<ServiceDeskIntegrationTemplateTypeBeta>>;
|
|
39568
39651
|
/**
|
|
39569
39652
|
* Get the time check configuration of queued SDIM tickets. A token with Org Admin or Service Desk Admin authority is required to access this endpoint.
|
|
39570
|
-
* @summary Get the time check configuration
|
|
39653
|
+
* @summary Get the time check configuration
|
|
39571
39654
|
* @param {*} [axiosOptions] Override http request option.
|
|
39572
39655
|
* @throws {RequiredError}
|
|
39573
39656
|
*/
|
|
39574
39657
|
getStatusCheckDetails(axiosOptions?: any): AxiosPromise<QueuedCheckConfigDetailsBeta>;
|
|
39575
39658
|
/**
|
|
39576
39659
|
* Update an existing ServiceDeskIntegration by ID with a PATCH request.
|
|
39577
|
-
* @summary Service Desk Integration Update
|
|
39660
|
+
* @summary Service Desk Integration Update PATCH
|
|
39578
39661
|
* @param {string} id ID of the Service Desk integration to update
|
|
39579
39662
|
* @param {JsonPatchBeta} jsonPatchBeta A list of SDIM update operations according to the [JSON Patch](https://tools.ietf.org/html/rfc6902) standard. PATCH can only be applied to the following fields: * \"beforeProvisioningRule\" A 403 Forbidden Error indicates that you attempted to PATCH a field that is not allowed.
|
|
39580
39663
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -39583,7 +39666,7 @@ export declare const ServiceDeskIntegrationBetaApiFactory: (configuration?: Conf
|
|
|
39583
39666
|
patchServiceDeskIntegration(id: string, jsonPatchBeta: JsonPatchBeta, axiosOptions?: any): AxiosPromise<ServiceDeskIntegrationDtoBeta>;
|
|
39584
39667
|
/**
|
|
39585
39668
|
* Update an existing Service Desk integration by ID with updated value in JSON form as the request body. A token with Org Admin or Service Desk Admin authority is required to access this endpoint.
|
|
39586
|
-
* @summary Update a Service Desk integration
|
|
39669
|
+
* @summary Update a Service Desk integration
|
|
39587
39670
|
* @param {string} id ID of the Service Desk integration to update
|
|
39588
39671
|
* @param {ServiceDeskIntegrationDtoBeta} serviceDeskIntegrationDtoBeta The specifics of the integration to update
|
|
39589
39672
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -39592,7 +39675,7 @@ export declare const ServiceDeskIntegrationBetaApiFactory: (configuration?: Conf
|
|
|
39592
39675
|
updateServiceDeskIntegration(id: string, serviceDeskIntegrationDtoBeta: ServiceDeskIntegrationDtoBeta, axiosOptions?: any): AxiosPromise<ServiceDeskIntegrationDtoBeta>;
|
|
39593
39676
|
/**
|
|
39594
39677
|
* Update the time check configuration of queued SDIM tickets. A token with Org Admin or Service Desk Admin authority is required to access this endpoint.
|
|
39595
|
-
* @summary Update the time check configuration
|
|
39678
|
+
* @summary Update the time check configuration
|
|
39596
39679
|
* @param {QueuedCheckConfigDetailsBeta} queuedCheckConfigDetailsBeta the modified time check configuration
|
|
39597
39680
|
* @param {*} [axiosOptions] Override http request option.
|
|
39598
39681
|
* @throws {RequiredError}
|
|
@@ -39748,7 +39831,7 @@ export interface ServiceDeskIntegrationBetaApiUpdateStatusCheckDetailsRequest {
|
|
|
39748
39831
|
export declare class ServiceDeskIntegrationBetaApi extends BaseAPI {
|
|
39749
39832
|
/**
|
|
39750
39833
|
* Create a new Service Desk Integrations. A token with Org Admin or Service Desk Admin authority is required to access this endpoint.
|
|
39751
|
-
* @summary Create
|
|
39834
|
+
* @summary Create new Service Desk integration
|
|
39752
39835
|
* @param {ServiceDeskIntegrationBetaApiCreateServiceDeskIntegrationRequest} requestParameters Request parameters.
|
|
39753
39836
|
* @param {*} [axiosOptions] Override http request option.
|
|
39754
39837
|
* @throws {RequiredError}
|
|
@@ -39757,7 +39840,7 @@ export declare class ServiceDeskIntegrationBetaApi extends BaseAPI {
|
|
|
39757
39840
|
createServiceDeskIntegration(requestParameters: ServiceDeskIntegrationBetaApiCreateServiceDeskIntegrationRequest, axiosOptions?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ServiceDeskIntegrationDtoBeta, any>>;
|
|
39758
39841
|
/**
|
|
39759
39842
|
* Delete an existing Service Desk integration by ID. A token with Org Admin or Service Desk Admin authority is required to access this endpoint.
|
|
39760
|
-
* @summary Delete a Service Desk integration
|
|
39843
|
+
* @summary Delete a Service Desk integration
|
|
39761
39844
|
* @param {ServiceDeskIntegrationBetaApiDeleteServiceDeskIntegrationRequest} requestParameters Request parameters.
|
|
39762
39845
|
* @param {*} [axiosOptions] Override http request option.
|
|
39763
39846
|
* @throws {RequiredError}
|
|
@@ -39766,7 +39849,7 @@ export declare class ServiceDeskIntegrationBetaApi extends BaseAPI {
|
|
|
39766
39849
|
deleteServiceDeskIntegration(requestParameters: ServiceDeskIntegrationBetaApiDeleteServiceDeskIntegrationRequest, axiosOptions?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
39767
39850
|
/**
|
|
39768
39851
|
* Get an existing Service Desk integration by ID. A token with Org Admin or Service Desk Admin authority is required to access this endpoint.
|
|
39769
|
-
* @summary Get a Service Desk integration
|
|
39852
|
+
* @summary Get a Service Desk integration
|
|
39770
39853
|
* @param {ServiceDeskIntegrationBetaApiGetServiceDeskIntegrationRequest} requestParameters Request parameters.
|
|
39771
39854
|
* @param {*} [axiosOptions] Override http request option.
|
|
39772
39855
|
* @throws {RequiredError}
|
|
@@ -39801,7 +39884,7 @@ export declare class ServiceDeskIntegrationBetaApi extends BaseAPI {
|
|
|
39801
39884
|
getServiceDeskIntegrationTypes(axiosOptions?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ServiceDeskIntegrationTemplateTypeBeta[], any>>;
|
|
39802
39885
|
/**
|
|
39803
39886
|
* Get the time check configuration of queued SDIM tickets. A token with Org Admin or Service Desk Admin authority is required to access this endpoint.
|
|
39804
|
-
* @summary Get the time check configuration
|
|
39887
|
+
* @summary Get the time check configuration
|
|
39805
39888
|
* @param {*} [axiosOptions] Override http request option.
|
|
39806
39889
|
* @throws {RequiredError}
|
|
39807
39890
|
* @memberof ServiceDeskIntegrationBetaApi
|
|
@@ -39809,7 +39892,7 @@ export declare class ServiceDeskIntegrationBetaApi extends BaseAPI {
|
|
|
39809
39892
|
getStatusCheckDetails(axiosOptions?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<QueuedCheckConfigDetailsBeta, any>>;
|
|
39810
39893
|
/**
|
|
39811
39894
|
* Update an existing ServiceDeskIntegration by ID with a PATCH request.
|
|
39812
|
-
* @summary Service Desk Integration Update
|
|
39895
|
+
* @summary Service Desk Integration Update PATCH
|
|
39813
39896
|
* @param {ServiceDeskIntegrationBetaApiPatchServiceDeskIntegrationRequest} requestParameters Request parameters.
|
|
39814
39897
|
* @param {*} [axiosOptions] Override http request option.
|
|
39815
39898
|
* @throws {RequiredError}
|
|
@@ -39818,7 +39901,7 @@ export declare class ServiceDeskIntegrationBetaApi extends BaseAPI {
|
|
|
39818
39901
|
patchServiceDeskIntegration(requestParameters: ServiceDeskIntegrationBetaApiPatchServiceDeskIntegrationRequest, axiosOptions?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ServiceDeskIntegrationDtoBeta, any>>;
|
|
39819
39902
|
/**
|
|
39820
39903
|
* Update an existing Service Desk integration by ID with updated value in JSON form as the request body. A token with Org Admin or Service Desk Admin authority is required to access this endpoint.
|
|
39821
|
-
* @summary Update a Service Desk integration
|
|
39904
|
+
* @summary Update a Service Desk integration
|
|
39822
39905
|
* @param {ServiceDeskIntegrationBetaApiUpdateServiceDeskIntegrationRequest} requestParameters Request parameters.
|
|
39823
39906
|
* @param {*} [axiosOptions] Override http request option.
|
|
39824
39907
|
* @throws {RequiredError}
|
|
@@ -39827,7 +39910,7 @@ export declare class ServiceDeskIntegrationBetaApi extends BaseAPI {
|
|
|
39827
39910
|
updateServiceDeskIntegration(requestParameters: ServiceDeskIntegrationBetaApiUpdateServiceDeskIntegrationRequest, axiosOptions?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ServiceDeskIntegrationDtoBeta, any>>;
|
|
39828
39911
|
/**
|
|
39829
39912
|
* Update the time check configuration of queued SDIM tickets. A token with Org Admin or Service Desk Admin authority is required to access this endpoint.
|
|
39830
|
-
* @summary Update the time check configuration
|
|
39913
|
+
* @summary Update the time check configuration
|
|
39831
39914
|
* @param {ServiceDeskIntegrationBetaApiUpdateStatusCheckDetailsRequest} requestParameters Request parameters.
|
|
39832
39915
|
* @param {*} [axiosOptions] Override http request option.
|
|
39833
39916
|
* @throws {RequiredError}
|
|
@@ -39853,7 +39936,7 @@ export declare const SourcesBetaApiAxiosParamCreator: (configuration?: Configura
|
|
|
39853
39936
|
* This creates a specific source with a full source JSON representation. Any passwords are submitted as plain-text and encrypted upon receipt in IdentityNow. A token with ORG_ADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API.
|
|
39854
39937
|
* @summary Creates a source in IdentityNow.
|
|
39855
39938
|
* @param {SourceBeta} sourceBeta
|
|
39856
|
-
* @param {boolean} [provisionAsCsv]
|
|
39939
|
+
* @param {boolean} [provisionAsCsv] If this parameter is `true`, it configures the source as a Delimited File (CSV) source. Setting this to `true` will automatically set the `type` of the source to `DelimitedFile`. You must use this query parameter to create a Delimited File source as you would in the UI. If you don\'t set this query parameter and you attempt to set the `type` attribute directly, the request won\'t correctly generate the source.
|
|
39857
39940
|
* @param {*} [axiosOptions] Override http request option.
|
|
39858
39941
|
* @throws {RequiredError}
|
|
39859
39942
|
*/
|
|
@@ -39992,7 +40075,7 @@ export declare const SourcesBetaApiAxiosParamCreator: (configuration?: Configura
|
|
|
39992
40075
|
listSources: (limit?: number, offset?: number, count?: boolean, filters?: string, sorters?: string, forSubadmin?: string, axiosOptions?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
39993
40076
|
/**
|
|
39994
40077
|
* Retrieves a sample of data returned from account and group aggregation requests. A token with ORG_ADMIN authority is required to call this API.
|
|
39995
|
-
* @summary Peek resource objects
|
|
40078
|
+
* @summary Peek source connector\'s resource objects
|
|
39996
40079
|
* @param {string} sourceId The ID of the Source
|
|
39997
40080
|
* @param {ResourceObjectsRequestBeta} resourceObjectsRequestBeta
|
|
39998
40081
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -40001,7 +40084,7 @@ export declare const SourcesBetaApiAxiosParamCreator: (configuration?: Configura
|
|
|
40001
40084
|
peekResourceObjects: (sourceId: string, resourceObjectsRequestBeta: ResourceObjectsRequestBeta, axiosOptions?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
40002
40085
|
/**
|
|
40003
40086
|
* This endpoint validates that the cluster being used by the source is reachable from IdentityNow. A token with ORG_ADMIN authority is required to call this API.
|
|
40004
|
-
* @summary Ping cluster for
|
|
40087
|
+
* @summary Ping cluster for source connector
|
|
40005
40088
|
* @param {string} sourceId The ID of the Source
|
|
40006
40089
|
* @param {*} [axiosOptions] Override http request option.
|
|
40007
40090
|
* @throws {RequiredError}
|
|
@@ -40055,7 +40138,7 @@ export declare const SourcesBetaApiAxiosParamCreator: (configuration?: Configura
|
|
|
40055
40138
|
syncAttributesForSource: (id: string, axiosOptions?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
40056
40139
|
/**
|
|
40057
40140
|
* This endpoint performs a more detailed validation of the source\'s configuration that can take longer than the lighter weight credential validation performed by the checkConnection API. A token with ORG_ADMIN authority is required to call this API.
|
|
40058
|
-
* @summary Test configuration for
|
|
40141
|
+
* @summary Test configuration for source connector
|
|
40059
40142
|
* @param {string} sourceId The ID of the Source
|
|
40060
40143
|
* @param {*} [axiosOptions] Override http request option.
|
|
40061
40144
|
* @throws {RequiredError}
|
|
@@ -40063,7 +40146,7 @@ export declare const SourcesBetaApiAxiosParamCreator: (configuration?: Configura
|
|
|
40063
40146
|
testSourceConfiguration: (sourceId: string, axiosOptions?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
40064
40147
|
/**
|
|
40065
40148
|
* This endpoint validates that the configured credentials are valid and will properly authenticate with the source identified by the sourceId path parameter. A token with ORG_ADMIN authority is required to call this API.
|
|
40066
|
-
* @summary Check connection for
|
|
40149
|
+
* @summary Check connection for source connector.
|
|
40067
40150
|
* @param {string} sourceId The ID of the Source.
|
|
40068
40151
|
* @param {*} [axiosOptions] Override http request option.
|
|
40069
40152
|
* @throws {RequiredError}
|
|
@@ -40162,7 +40245,7 @@ export declare const SourcesBetaApiFp: (configuration?: Configuration) => {
|
|
|
40162
40245
|
* This creates a specific source with a full source JSON representation. Any passwords are submitted as plain-text and encrypted upon receipt in IdentityNow. A token with ORG_ADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API.
|
|
40163
40246
|
* @summary Creates a source in IdentityNow.
|
|
40164
40247
|
* @param {SourceBeta} sourceBeta
|
|
40165
|
-
* @param {boolean} [provisionAsCsv]
|
|
40248
|
+
* @param {boolean} [provisionAsCsv] If this parameter is `true`, it configures the source as a Delimited File (CSV) source. Setting this to `true` will automatically set the `type` of the source to `DelimitedFile`. You must use this query parameter to create a Delimited File source as you would in the UI. If you don\'t set this query parameter and you attempt to set the `type` attribute directly, the request won\'t correctly generate the source.
|
|
40166
40249
|
* @param {*} [axiosOptions] Override http request option.
|
|
40167
40250
|
* @throws {RequiredError}
|
|
40168
40251
|
*/
|
|
@@ -40301,7 +40384,7 @@ export declare const SourcesBetaApiFp: (configuration?: Configuration) => {
|
|
|
40301
40384
|
listSources(limit?: number, offset?: number, count?: boolean, filters?: string, sorters?: string, forSubadmin?: string, axiosOptions?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<SourceBeta>>>;
|
|
40302
40385
|
/**
|
|
40303
40386
|
* Retrieves a sample of data returned from account and group aggregation requests. A token with ORG_ADMIN authority is required to call this API.
|
|
40304
|
-
* @summary Peek resource objects
|
|
40387
|
+
* @summary Peek source connector\'s resource objects
|
|
40305
40388
|
* @param {string} sourceId The ID of the Source
|
|
40306
40389
|
* @param {ResourceObjectsRequestBeta} resourceObjectsRequestBeta
|
|
40307
40390
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -40310,7 +40393,7 @@ export declare const SourcesBetaApiFp: (configuration?: Configuration) => {
|
|
|
40310
40393
|
peekResourceObjects(sourceId: string, resourceObjectsRequestBeta: ResourceObjectsRequestBeta, axiosOptions?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ResourceObjectsResponseBeta>>;
|
|
40311
40394
|
/**
|
|
40312
40395
|
* This endpoint validates that the cluster being used by the source is reachable from IdentityNow. A token with ORG_ADMIN authority is required to call this API.
|
|
40313
|
-
* @summary Ping cluster for
|
|
40396
|
+
* @summary Ping cluster for source connector
|
|
40314
40397
|
* @param {string} sourceId The ID of the Source
|
|
40315
40398
|
* @param {*} [axiosOptions] Override http request option.
|
|
40316
40399
|
* @throws {RequiredError}
|
|
@@ -40364,7 +40447,7 @@ export declare const SourcesBetaApiFp: (configuration?: Configuration) => {
|
|
|
40364
40447
|
syncAttributesForSource(id: string, axiosOptions?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SourceSyncJobBeta>>;
|
|
40365
40448
|
/**
|
|
40366
40449
|
* This endpoint performs a more detailed validation of the source\'s configuration that can take longer than the lighter weight credential validation performed by the checkConnection API. A token with ORG_ADMIN authority is required to call this API.
|
|
40367
|
-
* @summary Test configuration for
|
|
40450
|
+
* @summary Test configuration for source connector
|
|
40368
40451
|
* @param {string} sourceId The ID of the Source
|
|
40369
40452
|
* @param {*} [axiosOptions] Override http request option.
|
|
40370
40453
|
* @throws {RequiredError}
|
|
@@ -40372,7 +40455,7 @@ export declare const SourcesBetaApiFp: (configuration?: Configuration) => {
|
|
|
40372
40455
|
testSourceConfiguration(sourceId: string, axiosOptions?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<StatusResponseBeta>>;
|
|
40373
40456
|
/**
|
|
40374
40457
|
* This endpoint validates that the configured credentials are valid and will properly authenticate with the source identified by the sourceId path parameter. A token with ORG_ADMIN authority is required to call this API.
|
|
40375
|
-
* @summary Check connection for
|
|
40458
|
+
* @summary Check connection for source connector.
|
|
40376
40459
|
* @param {string} sourceId The ID of the Source.
|
|
40377
40460
|
* @param {*} [axiosOptions] Override http request option.
|
|
40378
40461
|
* @throws {RequiredError}
|
|
@@ -40471,7 +40554,7 @@ export declare const SourcesBetaApiFactory: (configuration?: Configuration, base
|
|
|
40471
40554
|
* This creates a specific source with a full source JSON representation. Any passwords are submitted as plain-text and encrypted upon receipt in IdentityNow. A token with ORG_ADMIN, SOURCE_ADMIN, or SOURCE_SUBADMIN authority is required to call this API.
|
|
40472
40555
|
* @summary Creates a source in IdentityNow.
|
|
40473
40556
|
* @param {SourceBeta} sourceBeta
|
|
40474
|
-
* @param {boolean} [provisionAsCsv]
|
|
40557
|
+
* @param {boolean} [provisionAsCsv] If this parameter is `true`, it configures the source as a Delimited File (CSV) source. Setting this to `true` will automatically set the `type` of the source to `DelimitedFile`. You must use this query parameter to create a Delimited File source as you would in the UI. If you don\'t set this query parameter and you attempt to set the `type` attribute directly, the request won\'t correctly generate the source.
|
|
40475
40558
|
* @param {*} [axiosOptions] Override http request option.
|
|
40476
40559
|
* @throws {RequiredError}
|
|
40477
40560
|
*/
|
|
@@ -40610,7 +40693,7 @@ export declare const SourcesBetaApiFactory: (configuration?: Configuration, base
|
|
|
40610
40693
|
listSources(limit?: number, offset?: number, count?: boolean, filters?: string, sorters?: string, forSubadmin?: string, axiosOptions?: any): AxiosPromise<Array<SourceBeta>>;
|
|
40611
40694
|
/**
|
|
40612
40695
|
* Retrieves a sample of data returned from account and group aggregation requests. A token with ORG_ADMIN authority is required to call this API.
|
|
40613
|
-
* @summary Peek resource objects
|
|
40696
|
+
* @summary Peek source connector\'s resource objects
|
|
40614
40697
|
* @param {string} sourceId The ID of the Source
|
|
40615
40698
|
* @param {ResourceObjectsRequestBeta} resourceObjectsRequestBeta
|
|
40616
40699
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -40619,7 +40702,7 @@ export declare const SourcesBetaApiFactory: (configuration?: Configuration, base
|
|
|
40619
40702
|
peekResourceObjects(sourceId: string, resourceObjectsRequestBeta: ResourceObjectsRequestBeta, axiosOptions?: any): AxiosPromise<ResourceObjectsResponseBeta>;
|
|
40620
40703
|
/**
|
|
40621
40704
|
* This endpoint validates that the cluster being used by the source is reachable from IdentityNow. A token with ORG_ADMIN authority is required to call this API.
|
|
40622
|
-
* @summary Ping cluster for
|
|
40705
|
+
* @summary Ping cluster for source connector
|
|
40623
40706
|
* @param {string} sourceId The ID of the Source
|
|
40624
40707
|
* @param {*} [axiosOptions] Override http request option.
|
|
40625
40708
|
* @throws {RequiredError}
|
|
@@ -40673,7 +40756,7 @@ export declare const SourcesBetaApiFactory: (configuration?: Configuration, base
|
|
|
40673
40756
|
syncAttributesForSource(id: string, axiosOptions?: any): AxiosPromise<SourceSyncJobBeta>;
|
|
40674
40757
|
/**
|
|
40675
40758
|
* This endpoint performs a more detailed validation of the source\'s configuration that can take longer than the lighter weight credential validation performed by the checkConnection API. A token with ORG_ADMIN authority is required to call this API.
|
|
40676
|
-
* @summary Test configuration for
|
|
40759
|
+
* @summary Test configuration for source connector
|
|
40677
40760
|
* @param {string} sourceId The ID of the Source
|
|
40678
40761
|
* @param {*} [axiosOptions] Override http request option.
|
|
40679
40762
|
* @throws {RequiredError}
|
|
@@ -40681,7 +40764,7 @@ export declare const SourcesBetaApiFactory: (configuration?: Configuration, base
|
|
|
40681
40764
|
testSourceConfiguration(sourceId: string, axiosOptions?: any): AxiosPromise<StatusResponseBeta>;
|
|
40682
40765
|
/**
|
|
40683
40766
|
* This endpoint validates that the configured credentials are valid and will properly authenticate with the source identified by the sourceId path parameter. A token with ORG_ADMIN authority is required to call this API.
|
|
40684
|
-
* @summary Check connection for
|
|
40767
|
+
* @summary Check connection for source connector.
|
|
40685
40768
|
* @param {string} sourceId The ID of the Source.
|
|
40686
40769
|
* @param {*} [axiosOptions] Override http request option.
|
|
40687
40770
|
* @throws {RequiredError}
|
|
@@ -40794,7 +40877,7 @@ export interface SourcesBetaApiCreateSourceRequest {
|
|
|
40794
40877
|
*/
|
|
40795
40878
|
readonly sourceBeta: SourceBeta;
|
|
40796
40879
|
/**
|
|
40797
|
-
*
|
|
40880
|
+
* If this parameter is `true`, it configures the source as a Delimited File (CSV) source. Setting this to `true` will automatically set the `type` of the source to `DelimitedFile`. You must use this query parameter to create a Delimited File source as you would in the UI. If you don\'t set this query parameter and you attempt to set the `type` attribute directly, the request won\'t correctly generate the source.
|
|
40798
40881
|
* @type {boolean}
|
|
40799
40882
|
* @memberof SourcesBetaApiCreateSource
|
|
40800
40883
|
*/
|
|
@@ -41544,7 +41627,7 @@ export declare class SourcesBetaApi extends BaseAPI {
|
|
|
41544
41627
|
listSources(requestParameters?: SourcesBetaApiListSourcesRequest, axiosOptions?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SourceBeta[], any>>;
|
|
41545
41628
|
/**
|
|
41546
41629
|
* Retrieves a sample of data returned from account and group aggregation requests. A token with ORG_ADMIN authority is required to call this API.
|
|
41547
|
-
* @summary Peek resource objects
|
|
41630
|
+
* @summary Peek source connector\'s resource objects
|
|
41548
41631
|
* @param {SourcesBetaApiPeekResourceObjectsRequest} requestParameters Request parameters.
|
|
41549
41632
|
* @param {*} [axiosOptions] Override http request option.
|
|
41550
41633
|
* @throws {RequiredError}
|
|
@@ -41553,7 +41636,7 @@ export declare class SourcesBetaApi extends BaseAPI {
|
|
|
41553
41636
|
peekResourceObjects(requestParameters: SourcesBetaApiPeekResourceObjectsRequest, axiosOptions?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ResourceObjectsResponseBeta, any>>;
|
|
41554
41637
|
/**
|
|
41555
41638
|
* This endpoint validates that the cluster being used by the source is reachable from IdentityNow. A token with ORG_ADMIN authority is required to call this API.
|
|
41556
|
-
* @summary Ping cluster for
|
|
41639
|
+
* @summary Ping cluster for source connector
|
|
41557
41640
|
* @param {SourcesBetaApiPingClusterRequest} requestParameters Request parameters.
|
|
41558
41641
|
* @param {*} [axiosOptions] Override http request option.
|
|
41559
41642
|
* @throws {RequiredError}
|
|
@@ -41607,7 +41690,7 @@ export declare class SourcesBetaApi extends BaseAPI {
|
|
|
41607
41690
|
syncAttributesForSource(requestParameters: SourcesBetaApiSyncAttributesForSourceRequest, axiosOptions?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SourceSyncJobBeta, any>>;
|
|
41608
41691
|
/**
|
|
41609
41692
|
* This endpoint performs a more detailed validation of the source\'s configuration that can take longer than the lighter weight credential validation performed by the checkConnection API. A token with ORG_ADMIN authority is required to call this API.
|
|
41610
|
-
* @summary Test configuration for
|
|
41693
|
+
* @summary Test configuration for source connector
|
|
41611
41694
|
* @param {SourcesBetaApiTestSourceConfigurationRequest} requestParameters Request parameters.
|
|
41612
41695
|
* @param {*} [axiosOptions] Override http request option.
|
|
41613
41696
|
* @throws {RequiredError}
|
|
@@ -41616,7 +41699,7 @@ export declare class SourcesBetaApi extends BaseAPI {
|
|
|
41616
41699
|
testSourceConfiguration(requestParameters: SourcesBetaApiTestSourceConfigurationRequest, axiosOptions?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<StatusResponseBeta, any>>;
|
|
41617
41700
|
/**
|
|
41618
41701
|
* This endpoint validates that the configured credentials are valid and will properly authenticate with the source identified by the sourceId path parameter. A token with ORG_ADMIN authority is required to call this API.
|
|
41619
|
-
* @summary Check connection for
|
|
41702
|
+
* @summary Check connection for source connector.
|
|
41620
41703
|
* @param {SourcesBetaApiTestSourceConnectionRequest} requestParameters Request parameters.
|
|
41621
41704
|
* @param {*} [axiosOptions] Override http request option.
|
|
41622
41705
|
* @throws {RequiredError}
|