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/beta/api.ts
CHANGED
|
@@ -1689,83 +1689,89 @@ export type AccountAggregationStatusBetaStatusEnum = typeof AccountAggregationSt
|
|
|
1689
1689
|
*/
|
|
1690
1690
|
export interface AccountAllOfBeta {
|
|
1691
1691
|
/**
|
|
1692
|
-
*
|
|
1692
|
+
* The unique ID of the source this account belongs to
|
|
1693
1693
|
* @type {string}
|
|
1694
1694
|
* @memberof AccountAllOfBeta
|
|
1695
1695
|
*/
|
|
1696
|
-
'sourceId'
|
|
1696
|
+
'sourceId': string;
|
|
1697
1697
|
/**
|
|
1698
|
-
*
|
|
1698
|
+
* The display name of the source this account belongs to
|
|
1699
|
+
* @type {string}
|
|
1700
|
+
* @memberof AccountAllOfBeta
|
|
1701
|
+
*/
|
|
1702
|
+
'sourceName': string;
|
|
1703
|
+
/**
|
|
1704
|
+
* The unique ID of the identity this account is correlated to
|
|
1699
1705
|
* @type {string}
|
|
1700
1706
|
* @memberof AccountAllOfBeta
|
|
1701
1707
|
*/
|
|
1702
1708
|
'identityId'?: string;
|
|
1703
1709
|
/**
|
|
1704
|
-
*
|
|
1705
|
-
* @type {
|
|
1710
|
+
* The account attributes that are aggregated
|
|
1711
|
+
* @type {{ [key: string]: any; }}
|
|
1706
1712
|
* @memberof AccountAllOfBeta
|
|
1707
1713
|
*/
|
|
1708
|
-
'attributes'
|
|
1714
|
+
'attributes': { [key: string]: any; };
|
|
1709
1715
|
/**
|
|
1710
|
-
*
|
|
1716
|
+
* Indicates if this account is from an authoritative source
|
|
1711
1717
|
* @type {boolean}
|
|
1712
1718
|
* @memberof AccountAllOfBeta
|
|
1713
1719
|
*/
|
|
1714
|
-
'authoritative'
|
|
1720
|
+
'authoritative': boolean;
|
|
1715
1721
|
/**
|
|
1716
|
-
*
|
|
1722
|
+
* A description of the account
|
|
1717
1723
|
* @type {string}
|
|
1718
1724
|
* @memberof AccountAllOfBeta
|
|
1719
1725
|
*/
|
|
1720
|
-
'description'?: string;
|
|
1726
|
+
'description'?: string | null;
|
|
1721
1727
|
/**
|
|
1722
|
-
*
|
|
1728
|
+
* Indicates if the account is currently disabled
|
|
1723
1729
|
* @type {boolean}
|
|
1724
1730
|
* @memberof AccountAllOfBeta
|
|
1725
1731
|
*/
|
|
1726
|
-
'disabled'
|
|
1732
|
+
'disabled': boolean;
|
|
1727
1733
|
/**
|
|
1728
|
-
*
|
|
1734
|
+
* Indicates if the account is currently locked
|
|
1729
1735
|
* @type {boolean}
|
|
1730
1736
|
* @memberof AccountAllOfBeta
|
|
1731
1737
|
*/
|
|
1732
|
-
'locked'
|
|
1738
|
+
'locked': boolean;
|
|
1733
1739
|
/**
|
|
1734
|
-
*
|
|
1740
|
+
* The unique ID of the account generated by the source system
|
|
1735
1741
|
* @type {string}
|
|
1736
1742
|
* @memberof AccountAllOfBeta
|
|
1737
1743
|
*/
|
|
1738
|
-
'nativeIdentity'
|
|
1744
|
+
'nativeIdentity': string;
|
|
1739
1745
|
/**
|
|
1740
|
-
*
|
|
1746
|
+
* If true, this is a user account within IdentityNow. If false, this is an account from a source system.
|
|
1741
1747
|
* @type {boolean}
|
|
1742
1748
|
* @memberof AccountAllOfBeta
|
|
1743
1749
|
*/
|
|
1744
|
-
'systemAccount'
|
|
1750
|
+
'systemAccount': boolean;
|
|
1745
1751
|
/**
|
|
1746
|
-
*
|
|
1752
|
+
* Indicates if this account is not correlated to an identity
|
|
1747
1753
|
* @type {boolean}
|
|
1748
1754
|
* @memberof AccountAllOfBeta
|
|
1749
1755
|
*/
|
|
1750
|
-
'uncorrelated'
|
|
1756
|
+
'uncorrelated': boolean;
|
|
1751
1757
|
/**
|
|
1752
|
-
*
|
|
1758
|
+
* The unique ID of the account as determined by the account schema
|
|
1753
1759
|
* @type {string}
|
|
1754
1760
|
* @memberof AccountAllOfBeta
|
|
1755
1761
|
*/
|
|
1756
|
-
'uuid'?: string;
|
|
1762
|
+
'uuid'?: string | null;
|
|
1757
1763
|
/**
|
|
1758
|
-
*
|
|
1764
|
+
* Indicates if the account has been manually correlated to an identity
|
|
1759
1765
|
* @type {boolean}
|
|
1760
1766
|
* @memberof AccountAllOfBeta
|
|
1761
1767
|
*/
|
|
1762
|
-
'manuallyCorrelated'
|
|
1768
|
+
'manuallyCorrelated': boolean;
|
|
1763
1769
|
/**
|
|
1764
|
-
*
|
|
1770
|
+
* Indicates if the account has entitlements
|
|
1765
1771
|
* @type {boolean}
|
|
1766
1772
|
* @memberof AccountAllOfBeta
|
|
1767
1773
|
*/
|
|
1768
|
-
'hasEntitlements'
|
|
1774
|
+
'hasEntitlements': boolean;
|
|
1769
1775
|
}
|
|
1770
1776
|
/**
|
|
1771
1777
|
*
|
|
@@ -1842,83 +1848,89 @@ export interface AccountBeta {
|
|
|
1842
1848
|
*/
|
|
1843
1849
|
'modified'?: string;
|
|
1844
1850
|
/**
|
|
1845
|
-
*
|
|
1851
|
+
* The unique ID of the source this account belongs to
|
|
1846
1852
|
* @type {string}
|
|
1847
1853
|
* @memberof AccountBeta
|
|
1848
1854
|
*/
|
|
1849
|
-
'sourceId'
|
|
1855
|
+
'sourceId': string;
|
|
1850
1856
|
/**
|
|
1851
|
-
*
|
|
1857
|
+
* The display name of the source this account belongs to
|
|
1858
|
+
* @type {string}
|
|
1859
|
+
* @memberof AccountBeta
|
|
1860
|
+
*/
|
|
1861
|
+
'sourceName': string;
|
|
1862
|
+
/**
|
|
1863
|
+
* The unique ID of the identity this account is correlated to
|
|
1852
1864
|
* @type {string}
|
|
1853
1865
|
* @memberof AccountBeta
|
|
1854
1866
|
*/
|
|
1855
1867
|
'identityId'?: string;
|
|
1856
1868
|
/**
|
|
1857
|
-
*
|
|
1858
|
-
* @type {
|
|
1869
|
+
* The account attributes that are aggregated
|
|
1870
|
+
* @type {{ [key: string]: any; }}
|
|
1859
1871
|
* @memberof AccountBeta
|
|
1860
1872
|
*/
|
|
1861
|
-
'attributes'
|
|
1873
|
+
'attributes': { [key: string]: any; };
|
|
1862
1874
|
/**
|
|
1863
|
-
*
|
|
1875
|
+
* Indicates if this account is from an authoritative source
|
|
1864
1876
|
* @type {boolean}
|
|
1865
1877
|
* @memberof AccountBeta
|
|
1866
1878
|
*/
|
|
1867
|
-
'authoritative'
|
|
1879
|
+
'authoritative': boolean;
|
|
1868
1880
|
/**
|
|
1869
|
-
*
|
|
1881
|
+
* A description of the account
|
|
1870
1882
|
* @type {string}
|
|
1871
1883
|
* @memberof AccountBeta
|
|
1872
1884
|
*/
|
|
1873
|
-
'description'?: string;
|
|
1885
|
+
'description'?: string | null;
|
|
1874
1886
|
/**
|
|
1875
|
-
*
|
|
1887
|
+
* Indicates if the account is currently disabled
|
|
1876
1888
|
* @type {boolean}
|
|
1877
1889
|
* @memberof AccountBeta
|
|
1878
1890
|
*/
|
|
1879
|
-
'disabled'
|
|
1891
|
+
'disabled': boolean;
|
|
1880
1892
|
/**
|
|
1881
|
-
*
|
|
1893
|
+
* Indicates if the account is currently locked
|
|
1882
1894
|
* @type {boolean}
|
|
1883
1895
|
* @memberof AccountBeta
|
|
1884
1896
|
*/
|
|
1885
|
-
'locked'
|
|
1897
|
+
'locked': boolean;
|
|
1886
1898
|
/**
|
|
1887
|
-
*
|
|
1899
|
+
* The unique ID of the account generated by the source system
|
|
1888
1900
|
* @type {string}
|
|
1889
1901
|
* @memberof AccountBeta
|
|
1890
1902
|
*/
|
|
1891
|
-
'nativeIdentity'
|
|
1903
|
+
'nativeIdentity': string;
|
|
1892
1904
|
/**
|
|
1893
|
-
*
|
|
1905
|
+
* If true, this is a user account within IdentityNow. If false, this is an account from a source system.
|
|
1894
1906
|
* @type {boolean}
|
|
1895
1907
|
* @memberof AccountBeta
|
|
1896
1908
|
*/
|
|
1897
|
-
'systemAccount'
|
|
1909
|
+
'systemAccount': boolean;
|
|
1898
1910
|
/**
|
|
1899
|
-
*
|
|
1911
|
+
* Indicates if this account is not correlated to an identity
|
|
1900
1912
|
* @type {boolean}
|
|
1901
1913
|
* @memberof AccountBeta
|
|
1902
1914
|
*/
|
|
1903
|
-
'uncorrelated'
|
|
1915
|
+
'uncorrelated': boolean;
|
|
1904
1916
|
/**
|
|
1905
|
-
*
|
|
1917
|
+
* The unique ID of the account as determined by the account schema
|
|
1906
1918
|
* @type {string}
|
|
1907
1919
|
* @memberof AccountBeta
|
|
1908
1920
|
*/
|
|
1909
|
-
'uuid'?: string;
|
|
1921
|
+
'uuid'?: string | null;
|
|
1910
1922
|
/**
|
|
1911
|
-
*
|
|
1923
|
+
* Indicates if the account has been manually correlated to an identity
|
|
1912
1924
|
* @type {boolean}
|
|
1913
1925
|
* @memberof AccountBeta
|
|
1914
1926
|
*/
|
|
1915
|
-
'manuallyCorrelated'
|
|
1927
|
+
'manuallyCorrelated': boolean;
|
|
1916
1928
|
/**
|
|
1917
|
-
*
|
|
1929
|
+
* Indicates if the account has entitlements
|
|
1918
1930
|
* @type {boolean}
|
|
1919
1931
|
* @memberof AccountBeta
|
|
1920
1932
|
*/
|
|
1921
|
-
'hasEntitlements'
|
|
1933
|
+
'hasEntitlements': boolean;
|
|
1922
1934
|
}
|
|
1923
1935
|
/**
|
|
1924
1936
|
*
|
|
@@ -2689,7 +2701,7 @@ export interface ArgumentBeta {
|
|
|
2689
2701
|
* @type {string}
|
|
2690
2702
|
* @memberof ArgumentBeta
|
|
2691
2703
|
*/
|
|
2692
|
-
'type'?: string;
|
|
2704
|
+
'type'?: string | null;
|
|
2693
2705
|
}
|
|
2694
2706
|
/**
|
|
2695
2707
|
* Specification of source attribute sync mapping configuration for an identity attribute
|
|
@@ -4723,7 +4735,7 @@ export interface ConnectorRuleCreateRequestBeta {
|
|
|
4723
4735
|
* @type {object}
|
|
4724
4736
|
* @memberof ConnectorRuleCreateRequestBeta
|
|
4725
4737
|
*/
|
|
4726
|
-
'attributes'?: object;
|
|
4738
|
+
'attributes'?: object | null;
|
|
4727
4739
|
}
|
|
4728
4740
|
|
|
4729
4741
|
export const ConnectorRuleCreateRequestBetaTypeEnum = {
|
|
@@ -4769,7 +4781,7 @@ export interface ConnectorRuleCreateRequestSignatureBeta {
|
|
|
4769
4781
|
* @type {ArgumentBeta}
|
|
4770
4782
|
* @memberof ConnectorRuleCreateRequestSignatureBeta
|
|
4771
4783
|
*/
|
|
4772
|
-
'output'?: ArgumentBeta;
|
|
4784
|
+
'output'?: ArgumentBeta | null;
|
|
4773
4785
|
}
|
|
4774
4786
|
/**
|
|
4775
4787
|
*
|
|
@@ -4794,7 +4806,7 @@ export interface ConnectorRuleResponseAllOfBeta {
|
|
|
4794
4806
|
* @type {string}
|
|
4795
4807
|
* @memberof ConnectorRuleResponseAllOfBeta
|
|
4796
4808
|
*/
|
|
4797
|
-
'modified'?: string;
|
|
4809
|
+
'modified'?: string | null;
|
|
4798
4810
|
}
|
|
4799
4811
|
/**
|
|
4800
4812
|
* ConnectorRuleResponse
|
|
@@ -4837,7 +4849,7 @@ export interface ConnectorRuleResponseBeta {
|
|
|
4837
4849
|
* @type {object}
|
|
4838
4850
|
* @memberof ConnectorRuleResponseBeta
|
|
4839
4851
|
*/
|
|
4840
|
-
'attributes'?: object;
|
|
4852
|
+
'attributes'?: object | null;
|
|
4841
4853
|
/**
|
|
4842
4854
|
* the ID of the rule
|
|
4843
4855
|
* @type {string}
|
|
@@ -4855,7 +4867,7 @@ export interface ConnectorRuleResponseBeta {
|
|
|
4855
4867
|
* @type {string}
|
|
4856
4868
|
* @memberof ConnectorRuleResponseBeta
|
|
4857
4869
|
*/
|
|
4858
|
-
'modified'?: string;
|
|
4870
|
+
'modified'?: string | null;
|
|
4859
4871
|
}
|
|
4860
4872
|
|
|
4861
4873
|
export const ConnectorRuleResponseBetaTypeEnum = {
|
|
@@ -4944,7 +4956,7 @@ export interface ConnectorRuleUpdateRequestBeta {
|
|
|
4944
4956
|
* @type {object}
|
|
4945
4957
|
* @memberof ConnectorRuleUpdateRequestBeta
|
|
4946
4958
|
*/
|
|
4947
|
-
'attributes'?: object;
|
|
4959
|
+
'attributes'?: object | null;
|
|
4948
4960
|
}
|
|
4949
4961
|
|
|
4950
4962
|
export const ConnectorRuleUpdateRequestBetaTypeEnum = {
|
|
@@ -6734,10 +6746,10 @@ export interface FullAccountBeta {
|
|
|
6734
6746
|
'identityId'?: string;
|
|
6735
6747
|
/**
|
|
6736
6748
|
* A map containing attributes associated with the account
|
|
6737
|
-
* @type {
|
|
6749
|
+
* @type {{ [key: string]: any; }}
|
|
6738
6750
|
* @memberof FullAccountBeta
|
|
6739
6751
|
*/
|
|
6740
|
-
'attributes'?:
|
|
6752
|
+
'attributes'?: { [key: string]: any; };
|
|
6741
6753
|
/**
|
|
6742
6754
|
* Whether this account belongs to an authoritative source
|
|
6743
6755
|
* @type {boolean}
|
|
@@ -7536,13 +7548,13 @@ export interface HttpConfigBeta {
|
|
|
7536
7548
|
* @type {BasicAuthConfigBeta}
|
|
7537
7549
|
* @memberof HttpConfigBeta
|
|
7538
7550
|
*/
|
|
7539
|
-
'basicAuthConfig'?: BasicAuthConfigBeta;
|
|
7551
|
+
'basicAuthConfig'?: BasicAuthConfigBeta | null;
|
|
7540
7552
|
/**
|
|
7541
7553
|
*
|
|
7542
7554
|
* @type {BearerTokenAuthConfigBeta}
|
|
7543
7555
|
* @memberof HttpConfigBeta
|
|
7544
7556
|
*/
|
|
7545
|
-
'bearerTokenAuthConfig'?: BearerTokenAuthConfigBeta;
|
|
7557
|
+
'bearerTokenAuthConfig'?: BearerTokenAuthConfigBeta | null;
|
|
7546
7558
|
}
|
|
7547
7559
|
/**
|
|
7548
7560
|
* HTTP response modes, i.e. SYNC, ASYNC, or DYNAMIC.
|
|
@@ -8417,7 +8429,7 @@ export interface IdentityProfileAllOfBeta {
|
|
|
8417
8429
|
* @type {string}
|
|
8418
8430
|
* @memberof IdentityProfileAllOfBeta
|
|
8419
8431
|
*/
|
|
8420
|
-
'description'?: string;
|
|
8432
|
+
'description'?: string | null;
|
|
8421
8433
|
/**
|
|
8422
8434
|
*
|
|
8423
8435
|
* @type {IdentityProfileAllOfOwnerBeta}
|
|
@@ -8459,7 +8471,7 @@ export interface IdentityProfileAllOfBeta {
|
|
|
8459
8471
|
* @type {IdentityExceptionReportReferenceBeta}
|
|
8460
8472
|
* @memberof IdentityProfileAllOfBeta
|
|
8461
8473
|
*/
|
|
8462
|
-
'identityExceptionReportReference'?: IdentityExceptionReportReferenceBeta;
|
|
8474
|
+
'identityExceptionReportReference'?: IdentityExceptionReportReferenceBeta | null;
|
|
8463
8475
|
/**
|
|
8464
8476
|
* Indicates the value of requiresPeriodicRefresh attribute for the Identity Profile.
|
|
8465
8477
|
* @type {boolean}
|
|
@@ -8534,7 +8546,7 @@ export interface IdentityProfileBeta {
|
|
|
8534
8546
|
* @type {string}
|
|
8535
8547
|
* @memberof IdentityProfileBeta
|
|
8536
8548
|
*/
|
|
8537
|
-
'description'?: string;
|
|
8549
|
+
'description'?: string | null;
|
|
8538
8550
|
/**
|
|
8539
8551
|
*
|
|
8540
8552
|
* @type {IdentityProfileAllOfOwnerBeta}
|
|
@@ -8576,7 +8588,7 @@ export interface IdentityProfileBeta {
|
|
|
8576
8588
|
* @type {IdentityExceptionReportReferenceBeta}
|
|
8577
8589
|
* @memberof IdentityProfileBeta
|
|
8578
8590
|
*/
|
|
8579
|
-
'identityExceptionReportReference'?: IdentityExceptionReportReferenceBeta;
|
|
8591
|
+
'identityExceptionReportReference'?: IdentityExceptionReportReferenceBeta | null;
|
|
8580
8592
|
/**
|
|
8581
8593
|
* Indicates the value of requiresPeriodicRefresh attribute for the Identity Profile.
|
|
8582
8594
|
* @type {boolean}
|
|
@@ -9198,10 +9210,10 @@ export interface ListAccessProfiles429ResponseBeta {
|
|
|
9198
9210
|
'message'?: object;
|
|
9199
9211
|
}
|
|
9200
9212
|
/**
|
|
9201
|
-
* @type
|
|
9213
|
+
* @type ListAccounts200ResponseBeta
|
|
9202
9214
|
* @export
|
|
9203
9215
|
*/
|
|
9204
|
-
export type
|
|
9216
|
+
export type ListAccounts200ResponseBeta = Array<FullAccountBeta> | Array<SlimAccountBeta>;
|
|
9205
9217
|
|
|
9206
9218
|
/**
|
|
9207
9219
|
*
|
|
@@ -9429,7 +9441,7 @@ export interface ManagedClientStatusAggResponseBeta {
|
|
|
9429
9441
|
* @type {ManagedClientTypeBeta}
|
|
9430
9442
|
* @memberof ManagedClientStatusAggResponseBeta
|
|
9431
9443
|
*/
|
|
9432
|
-
'type': ManagedClientTypeBeta;
|
|
9444
|
+
'type': ManagedClientTypeBeta | null;
|
|
9433
9445
|
/**
|
|
9434
9446
|
* timestamp on the Client Status update
|
|
9435
9447
|
* @type {string}
|
|
@@ -9460,7 +9472,7 @@ export interface ManagedClientStatusBeta {
|
|
|
9460
9472
|
* @type {ManagedClientTypeBeta}
|
|
9461
9473
|
* @memberof ManagedClientStatusBeta
|
|
9462
9474
|
*/
|
|
9463
|
-
'type': ManagedClientTypeBeta;
|
|
9475
|
+
'type': ManagedClientTypeBeta | null;
|
|
9464
9476
|
/**
|
|
9465
9477
|
* timestamp on the Client Status update
|
|
9466
9478
|
* @type {string}
|
|
@@ -9496,7 +9508,8 @@ export type ManagedClientStatusEnumBeta = typeof ManagedClientStatusEnumBeta[key
|
|
|
9496
9508
|
export const ManagedClientTypeBeta = {
|
|
9497
9509
|
Ccg: 'CCG',
|
|
9498
9510
|
Va: 'VA',
|
|
9499
|
-
Internal: 'INTERNAL'
|
|
9511
|
+
Internal: 'INTERNAL',
|
|
9512
|
+
Null: 'null'
|
|
9500
9513
|
} as const;
|
|
9501
9514
|
|
|
9502
9515
|
export type ManagedClientTypeBeta = typeof ManagedClientTypeBeta[keyof typeof ManagedClientTypeBeta];
|
|
@@ -9519,7 +9532,7 @@ export interface ManagedClusterAttributesBeta {
|
|
|
9519
9532
|
* @type {string}
|
|
9520
9533
|
* @memberof ManagedClusterAttributesBeta
|
|
9521
9534
|
*/
|
|
9522
|
-
'keystore'?: string;
|
|
9535
|
+
'keystore'?: string | null;
|
|
9523
9536
|
}
|
|
9524
9537
|
/**
|
|
9525
9538
|
* Managed Cluster
|
|
@@ -9592,7 +9605,7 @@ export interface ManagedClusterBeta {
|
|
|
9592
9605
|
* @type {ManagedClientTypeBeta}
|
|
9593
9606
|
* @memberof ManagedClusterBeta
|
|
9594
9607
|
*/
|
|
9595
|
-
'clientType': ManagedClientTypeBeta;
|
|
9608
|
+
'clientType': ManagedClientTypeBeta | null;
|
|
9596
9609
|
/**
|
|
9597
9610
|
* CCG version used by the ManagedCluster
|
|
9598
9611
|
* @type {string}
|
|
@@ -9610,7 +9623,7 @@ export interface ManagedClusterBeta {
|
|
|
9610
9623
|
* @type {ClientLogConfigurationBeta}
|
|
9611
9624
|
* @memberof ManagedClusterBeta
|
|
9612
9625
|
*/
|
|
9613
|
-
'logConfiguration'?: ClientLogConfigurationBeta;
|
|
9626
|
+
'logConfiguration'?: ClientLogConfigurationBeta | null;
|
|
9614
9627
|
/**
|
|
9615
9628
|
* Whether or not the cluster is operational or not
|
|
9616
9629
|
* @type {boolean}
|
|
@@ -9628,19 +9641,19 @@ export interface ManagedClusterBeta {
|
|
|
9628
9641
|
* @type {string}
|
|
9629
9642
|
* @memberof ManagedClusterBeta
|
|
9630
9643
|
*/
|
|
9631
|
-
'publicKeyCertificate'?: string;
|
|
9644
|
+
'publicKeyCertificate'?: string | null;
|
|
9632
9645
|
/**
|
|
9633
9646
|
* Public key thumbprint
|
|
9634
9647
|
* @type {string}
|
|
9635
9648
|
* @memberof ManagedClusterBeta
|
|
9636
9649
|
*/
|
|
9637
|
-
'publicKeyThumbprint'?: string;
|
|
9650
|
+
'publicKeyThumbprint'?: string | null;
|
|
9638
9651
|
/**
|
|
9639
9652
|
* Public key
|
|
9640
9653
|
* @type {string}
|
|
9641
9654
|
* @memberof ManagedClusterBeta
|
|
9642
9655
|
*/
|
|
9643
|
-
'publicKey'?: string;
|
|
9656
|
+
'publicKey'?: string | null;
|
|
9644
9657
|
/**
|
|
9645
9658
|
* Key describing any immediate cluster alerts
|
|
9646
9659
|
* @type {string}
|
|
@@ -9677,19 +9690,19 @@ export interface ManagedClusterKeyPairBeta {
|
|
|
9677
9690
|
* @type {string}
|
|
9678
9691
|
* @memberof ManagedClusterKeyPairBeta
|
|
9679
9692
|
*/
|
|
9680
|
-
'publicKey'?: string;
|
|
9693
|
+
'publicKey'?: string | null;
|
|
9681
9694
|
/**
|
|
9682
9695
|
* ManagedCluster publicKeyThumbprint
|
|
9683
9696
|
* @type {string}
|
|
9684
9697
|
* @memberof ManagedClusterKeyPairBeta
|
|
9685
9698
|
*/
|
|
9686
|
-
'publicKeyThumbprint'?: string;
|
|
9699
|
+
'publicKeyThumbprint'?: string | null;
|
|
9687
9700
|
/**
|
|
9688
9701
|
* ManagedCluster publicKeyCertificate
|
|
9689
9702
|
* @type {string}
|
|
9690
9703
|
* @memberof ManagedClusterKeyPairBeta
|
|
9691
9704
|
*/
|
|
9692
|
-
'publicKeyCertificate'?: string;
|
|
9705
|
+
'publicKeyCertificate'?: string | null;
|
|
9693
9706
|
}
|
|
9694
9707
|
/**
|
|
9695
9708
|
* Managed Cluster key pair for Cluster
|
|
@@ -14033,6 +14046,19 @@ export interface RoleBeta {
|
|
|
14033
14046
|
*/
|
|
14034
14047
|
'segments'?: Array<string> | null;
|
|
14035
14048
|
}
|
|
14049
|
+
/**
|
|
14050
|
+
*
|
|
14051
|
+
* @export
|
|
14052
|
+
* @interface RoleBulkDeleteRequestBeta
|
|
14053
|
+
*/
|
|
14054
|
+
export interface RoleBulkDeleteRequestBeta {
|
|
14055
|
+
/**
|
|
14056
|
+
* List of IDs of Roles to be deleted.
|
|
14057
|
+
* @type {Array<string>}
|
|
14058
|
+
* @memberof RoleBulkDeleteRequestBeta
|
|
14059
|
+
*/
|
|
14060
|
+
'roleIds': Array<string>;
|
|
14061
|
+
}
|
|
14036
14062
|
/**
|
|
14037
14063
|
* Refers to a specific Identity attribute, Account attibute, or Entitlement used in Role membership criteria
|
|
14038
14064
|
* @export
|
|
@@ -16252,10 +16278,10 @@ export interface SlimAccountAllOfBeta {
|
|
|
16252
16278
|
'identityId'?: string;
|
|
16253
16279
|
/**
|
|
16254
16280
|
* A map containing attributes associated with the account
|
|
16255
|
-
* @type {
|
|
16281
|
+
* @type {{ [key: string]: any; }}
|
|
16256
16282
|
* @memberof SlimAccountAllOfBeta
|
|
16257
16283
|
*/
|
|
16258
|
-
'attributes'?:
|
|
16284
|
+
'attributes'?: { [key: string]: any; };
|
|
16259
16285
|
}
|
|
16260
16286
|
/**
|
|
16261
16287
|
*
|
|
@@ -16349,10 +16375,10 @@ export interface SlimAccountBeta {
|
|
|
16349
16375
|
'identityId'?: string;
|
|
16350
16376
|
/**
|
|
16351
16377
|
* A map containing attributes associated with the account
|
|
16352
|
-
* @type {
|
|
16378
|
+
* @type {{ [key: string]: any; }}
|
|
16353
16379
|
* @memberof SlimAccountBeta
|
|
16354
16380
|
*/
|
|
16355
|
-
'attributes'?:
|
|
16381
|
+
'attributes'?: { [key: string]: any; };
|
|
16356
16382
|
}
|
|
16357
16383
|
/**
|
|
16358
16384
|
*
|
|
@@ -17168,7 +17194,7 @@ export interface SourceBeta {
|
|
|
17168
17194
|
*/
|
|
17169
17195
|
'features'?: Array<SourceFeatureBeta>;
|
|
17170
17196
|
/**
|
|
17171
|
-
* Specifies the type of system being managed e.g. Active Directory, Workday, etc..
|
|
17197
|
+
* 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`.
|
|
17172
17198
|
* @type {string}
|
|
17173
17199
|
* @memberof SourceBeta
|
|
17174
17200
|
*/
|
|
@@ -17881,17 +17907,17 @@ export interface SpConfigObjectBeta {
|
|
|
17881
17907
|
*/
|
|
17882
17908
|
'resolveByIdUrl'?: SpConfigUrlBeta;
|
|
17883
17909
|
/**
|
|
17884
|
-
*
|
|
17885
|
-
* @type {SpConfigUrlBeta}
|
|
17910
|
+
* Url and query parameters to be used to resolve this type of object by name.
|
|
17911
|
+
* @type {Array<SpConfigUrlBeta>}
|
|
17886
17912
|
* @memberof SpConfigObjectBeta
|
|
17887
17913
|
*/
|
|
17888
|
-
'resolveByNameUrl'?: SpConfigUrlBeta
|
|
17914
|
+
'resolveByNameUrl'?: Array<SpConfigUrlBeta>;
|
|
17889
17915
|
/**
|
|
17890
|
-
*
|
|
17891
|
-
* @type {
|
|
17916
|
+
*
|
|
17917
|
+
* @type {SpConfigUrlBeta}
|
|
17892
17918
|
* @memberof SpConfigObjectBeta
|
|
17893
17919
|
*/
|
|
17894
|
-
'exportUrl'?:
|
|
17920
|
+
'exportUrl'?: SpConfigUrlBeta;
|
|
17895
17921
|
/**
|
|
17896
17922
|
* Rights needed by the invoker of sp-config/export in order to export this type of object.
|
|
17897
17923
|
* @type {string}
|
|
@@ -17905,11 +17931,11 @@ export interface SpConfigObjectBeta {
|
|
|
17905
17931
|
*/
|
|
17906
17932
|
'exportLimit'?: number;
|
|
17907
17933
|
/**
|
|
17908
|
-
*
|
|
17909
|
-
* @type {
|
|
17934
|
+
*
|
|
17935
|
+
* @type {SpConfigUrlBeta}
|
|
17910
17936
|
* @memberof SpConfigObjectBeta
|
|
17911
17937
|
*/
|
|
17912
|
-
'importUrl'?:
|
|
17938
|
+
'importUrl'?: SpConfigUrlBeta;
|
|
17913
17939
|
/**
|
|
17914
17940
|
* Rights needed by the invoker of sp-config/import in order to import this type of object.
|
|
17915
17941
|
* @type {string}
|
|
@@ -18276,7 +18302,10 @@ export interface SubscriptionPutRequestBeta {
|
|
|
18276
18302
|
|
|
18277
18303
|
export const SubscriptionTypeBeta = {
|
|
18278
18304
|
Http: 'HTTP',
|
|
18279
|
-
Eventbridge: 'EVENTBRIDGE'
|
|
18305
|
+
Eventbridge: 'EVENTBRIDGE',
|
|
18306
|
+
Inline: 'INLINE',
|
|
18307
|
+
Script: 'SCRIPT',
|
|
18308
|
+
Workflow: 'WORKFLOW'
|
|
18280
18309
|
} as const;
|
|
18281
18310
|
|
|
18282
18311
|
export type SubscriptionTypeBeta = typeof SubscriptionTypeBeta[keyof typeof SubscriptionTypeBeta];
|
|
@@ -18630,10 +18659,10 @@ export interface TransformBeta {
|
|
|
18630
18659
|
'type': string;
|
|
18631
18660
|
/**
|
|
18632
18661
|
* Meta-data about the transform. Values in this list are specific to the type of transform to be executed.
|
|
18633
|
-
* @type {
|
|
18662
|
+
* @type {object}
|
|
18634
18663
|
* @memberof TransformBeta
|
|
18635
18664
|
*/
|
|
18636
|
-
'attributes':
|
|
18665
|
+
'attributes': object | null;
|
|
18637
18666
|
/**
|
|
18638
18667
|
* Indicates whether this is an internal SailPoint-created transform or a customer-created transform
|
|
18639
18668
|
* @type {boolean}
|
|
@@ -18681,10 +18710,10 @@ export interface TransformDefinitionBeta {
|
|
|
18681
18710
|
'type'?: string;
|
|
18682
18711
|
/**
|
|
18683
18712
|
* Arbitrary key-value pairs to store any metadata for the object
|
|
18684
|
-
* @type {{ [key: string]:
|
|
18713
|
+
* @type {{ [key: string]: any; }}
|
|
18685
18714
|
* @memberof TransformDefinitionBeta
|
|
18686
18715
|
*/
|
|
18687
|
-
'attributes'?: { [key: string]:
|
|
18716
|
+
'attributes'?: { [key: string]: any; } | null;
|
|
18688
18717
|
}
|
|
18689
18718
|
/**
|
|
18690
18719
|
*
|
|
@@ -26296,7 +26325,7 @@ export const AccountsBetaApiFp = function(configuration?: Configuration) {
|
|
|
26296
26325
|
* @param {*} [axiosOptions] Override http request option.
|
|
26297
26326
|
* @throws {RequiredError}
|
|
26298
26327
|
*/
|
|
26299
|
-
async listAccounts(detailLevel?: 'SLIM' | 'FULL', limit?: number, offset?: number, count?: boolean, filters?: string, axiosOptions?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
26328
|
+
async listAccounts(detailLevel?: 'SLIM' | 'FULL', limit?: number, offset?: number, count?: boolean, filters?: string, axiosOptions?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListAccounts200ResponseBeta>> {
|
|
26300
26329
|
const localVarAxiosArgs = await localVarAxiosParamCreator.listAccounts(detailLevel, limit, offset, count, filters, axiosOptions);
|
|
26301
26330
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
26302
26331
|
},
|
|
@@ -26473,7 +26502,7 @@ export const AccountsBetaApiFactory = function (configuration?: Configuration, b
|
|
|
26473
26502
|
* @param {*} [axiosOptions] Override http request option.
|
|
26474
26503
|
* @throws {RequiredError}
|
|
26475
26504
|
*/
|
|
26476
|
-
listAccounts(detailLevel?: 'SLIM' | 'FULL', limit?: number, offset?: number, count?: boolean, filters?: string, axiosOptions?: any): AxiosPromise<
|
|
26505
|
+
listAccounts(detailLevel?: 'SLIM' | 'FULL', limit?: number, offset?: number, count?: boolean, filters?: string, axiosOptions?: any): AxiosPromise<ListAccounts200ResponseBeta> {
|
|
26477
26506
|
return localVarFp.listAccounts(detailLevel, limit, offset, count, filters, axiosOptions).then((request) => request(axios, basePath));
|
|
26478
26507
|
},
|
|
26479
26508
|
/**
|
|
@@ -31165,7 +31194,7 @@ export const EntitlementsBetaApiAxiosParamCreator = function (configuration?: Co
|
|
|
31165
31194
|
* @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.
|
|
31166
31195
|
* @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.
|
|
31167
31196
|
* @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**
|
|
31168
|
-
* @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*
|
|
31197
|
+
* @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*
|
|
31169
31198
|
* @param {*} [axiosOptions] Override http request option.
|
|
31170
31199
|
* @throws {RequiredError}
|
|
31171
31200
|
*/
|
|
@@ -31446,7 +31475,7 @@ export const EntitlementsBetaApiFp = function(configuration?: Configuration) {
|
|
|
31446
31475
|
* @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.
|
|
31447
31476
|
* @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.
|
|
31448
31477
|
* @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**
|
|
31449
|
-
* @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*
|
|
31478
|
+
* @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*
|
|
31450
31479
|
* @param {*} [axiosOptions] Override http request option.
|
|
31451
31480
|
* @throws {RequiredError}
|
|
31452
31481
|
*/
|
|
@@ -31556,7 +31585,7 @@ export const EntitlementsBetaApiFactory = function (configuration?: Configuratio
|
|
|
31556
31585
|
* @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.
|
|
31557
31586
|
* @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.
|
|
31558
31587
|
* @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**
|
|
31559
|
-
* @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*
|
|
31588
|
+
* @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*
|
|
31560
31589
|
* @param {*} [axiosOptions] Override http request option.
|
|
31561
31590
|
* @throws {RequiredError}
|
|
31562
31591
|
*/
|
|
@@ -31759,7 +31788,7 @@ export interface EntitlementsBetaApiListEntitlementsRequest {
|
|
|
31759
31788
|
readonly sorters?: string
|
|
31760
31789
|
|
|
31761
31790
|
/**
|
|
31762
|
-
* 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*
|
|
31791
|
+
* 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*
|
|
31763
31792
|
* @type {string}
|
|
31764
31793
|
* @memberof EntitlementsBetaApiListEntitlements
|
|
31765
31794
|
*/
|
|
@@ -37252,15 +37281,15 @@ export const IdentitiesBetaApiAxiosParamCreator = function (configuration?: Conf
|
|
|
37252
37281
|
/**
|
|
37253
37282
|
* The API returns successful response if the requested identity was deleted.
|
|
37254
37283
|
* @summary Deletes an identity.
|
|
37255
|
-
* @param {string}
|
|
37284
|
+
* @param {string} id Identity Id
|
|
37256
37285
|
* @param {*} [axiosOptions] Override http request option.
|
|
37257
37286
|
* @throws {RequiredError}
|
|
37258
37287
|
*/
|
|
37259
|
-
deleteIdentity: async (
|
|
37260
|
-
// verify required parameter '
|
|
37261
|
-
assertParamExists('deleteIdentity', '
|
|
37288
|
+
deleteIdentity: async (id: string, axiosOptions: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
37289
|
+
// verify required parameter 'id' is not null or undefined
|
|
37290
|
+
assertParamExists('deleteIdentity', 'id', id)
|
|
37262
37291
|
const localVarPath = `/identities/{id}`
|
|
37263
|
-
.replace(`{${"
|
|
37292
|
+
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
37264
37293
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
37265
37294
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
37266
37295
|
let baseOptions;
|
|
@@ -37294,15 +37323,15 @@ export const IdentitiesBetaApiAxiosParamCreator = function (configuration?: Conf
|
|
|
37294
37323
|
/**
|
|
37295
37324
|
* This API returns a single identity using the Identity ID.
|
|
37296
37325
|
* @summary Identity Details
|
|
37297
|
-
* @param {string}
|
|
37326
|
+
* @param {string} id Identity Id
|
|
37298
37327
|
* @param {*} [axiosOptions] Override http request option.
|
|
37299
37328
|
* @throws {RequiredError}
|
|
37300
37329
|
*/
|
|
37301
|
-
getIdentity: async (
|
|
37302
|
-
// verify required parameter '
|
|
37303
|
-
assertParamExists('getIdentity', '
|
|
37330
|
+
getIdentity: async (id: string, axiosOptions: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
37331
|
+
// verify required parameter 'id' is not null or undefined
|
|
37332
|
+
assertParamExists('getIdentity', 'id', id)
|
|
37304
37333
|
const localVarPath = `/identities/{id}`
|
|
37305
|
-
.replace(`{${"
|
|
37334
|
+
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
37306
37335
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
37307
37336
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
37308
37337
|
let baseOptions;
|
|
@@ -37456,23 +37485,23 @@ export const IdentitiesBetaApiFp = function(configuration?: Configuration) {
|
|
|
37456
37485
|
/**
|
|
37457
37486
|
* The API returns successful response if the requested identity was deleted.
|
|
37458
37487
|
* @summary Deletes an identity.
|
|
37459
|
-
* @param {string}
|
|
37488
|
+
* @param {string} id Identity Id
|
|
37460
37489
|
* @param {*} [axiosOptions] Override http request option.
|
|
37461
37490
|
* @throws {RequiredError}
|
|
37462
37491
|
*/
|
|
37463
|
-
async deleteIdentity(
|
|
37464
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteIdentity(
|
|
37492
|
+
async deleteIdentity(id: string, axiosOptions?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
|
|
37493
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteIdentity(id, axiosOptions);
|
|
37465
37494
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
37466
37495
|
},
|
|
37467
37496
|
/**
|
|
37468
37497
|
* This API returns a single identity using the Identity ID.
|
|
37469
37498
|
* @summary Identity Details
|
|
37470
|
-
* @param {string}
|
|
37499
|
+
* @param {string} id Identity Id
|
|
37471
37500
|
* @param {*} [axiosOptions] Override http request option.
|
|
37472
37501
|
* @throws {RequiredError}
|
|
37473
37502
|
*/
|
|
37474
|
-
async getIdentity(
|
|
37475
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.getIdentity(
|
|
37503
|
+
async getIdentity(id: string, axiosOptions?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<IdentityBeta>> {
|
|
37504
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getIdentity(id, axiosOptions);
|
|
37476
37505
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
37477
37506
|
},
|
|
37478
37507
|
/**
|
|
@@ -37515,22 +37544,22 @@ export const IdentitiesBetaApiFactory = function (configuration?: Configuration,
|
|
|
37515
37544
|
/**
|
|
37516
37545
|
* The API returns successful response if the requested identity was deleted.
|
|
37517
37546
|
* @summary Deletes an identity.
|
|
37518
|
-
* @param {string}
|
|
37547
|
+
* @param {string} id Identity Id
|
|
37519
37548
|
* @param {*} [axiosOptions] Override http request option.
|
|
37520
37549
|
* @throws {RequiredError}
|
|
37521
37550
|
*/
|
|
37522
|
-
deleteIdentity(
|
|
37523
|
-
return localVarFp.deleteIdentity(
|
|
37551
|
+
deleteIdentity(id: string, axiosOptions?: any): AxiosPromise<void> {
|
|
37552
|
+
return localVarFp.deleteIdentity(id, axiosOptions).then((request) => request(axios, basePath));
|
|
37524
37553
|
},
|
|
37525
37554
|
/**
|
|
37526
37555
|
* This API returns a single identity using the Identity ID.
|
|
37527
37556
|
* @summary Identity Details
|
|
37528
|
-
* @param {string}
|
|
37557
|
+
* @param {string} id Identity Id
|
|
37529
37558
|
* @param {*} [axiosOptions] Override http request option.
|
|
37530
37559
|
* @throws {RequiredError}
|
|
37531
37560
|
*/
|
|
37532
|
-
getIdentity(
|
|
37533
|
-
return localVarFp.getIdentity(
|
|
37561
|
+
getIdentity(id: string, axiosOptions?: any): AxiosPromise<IdentityBeta> {
|
|
37562
|
+
return localVarFp.getIdentity(id, axiosOptions).then((request) => request(axios, basePath));
|
|
37534
37563
|
},
|
|
37535
37564
|
/**
|
|
37536
37565
|
* This API returns a list of identities.
|
|
@@ -37571,7 +37600,7 @@ export interface IdentitiesBetaApiDeleteIdentityRequest {
|
|
|
37571
37600
|
* @type {string}
|
|
37572
37601
|
* @memberof IdentitiesBetaApiDeleteIdentity
|
|
37573
37602
|
*/
|
|
37574
|
-
readonly
|
|
37603
|
+
readonly id: string
|
|
37575
37604
|
}
|
|
37576
37605
|
|
|
37577
37606
|
/**
|
|
@@ -37585,7 +37614,7 @@ export interface IdentitiesBetaApiGetIdentityRequest {
|
|
|
37585
37614
|
* @type {string}
|
|
37586
37615
|
* @memberof IdentitiesBetaApiGetIdentity
|
|
37587
37616
|
*/
|
|
37588
|
-
readonly
|
|
37617
|
+
readonly id: string
|
|
37589
37618
|
}
|
|
37590
37619
|
|
|
37591
37620
|
/**
|
|
@@ -37667,7 +37696,7 @@ export class IdentitiesBetaApi extends BaseAPI {
|
|
|
37667
37696
|
* @memberof IdentitiesBetaApi
|
|
37668
37697
|
*/
|
|
37669
37698
|
public deleteIdentity(requestParameters: IdentitiesBetaApiDeleteIdentityRequest, axiosOptions?: AxiosRequestConfig) {
|
|
37670
|
-
return IdentitiesBetaApiFp(this.configuration).deleteIdentity(requestParameters.
|
|
37699
|
+
return IdentitiesBetaApiFp(this.configuration).deleteIdentity(requestParameters.id, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
37671
37700
|
}
|
|
37672
37701
|
|
|
37673
37702
|
/**
|
|
@@ -37679,7 +37708,7 @@ export class IdentitiesBetaApi extends BaseAPI {
|
|
|
37679
37708
|
* @memberof IdentitiesBetaApi
|
|
37680
37709
|
*/
|
|
37681
37710
|
public getIdentity(requestParameters: IdentitiesBetaApiGetIdentityRequest, axiosOptions?: AxiosRequestConfig) {
|
|
37682
|
-
return IdentitiesBetaApiFp(this.configuration).getIdentity(requestParameters.
|
|
37711
|
+
return IdentitiesBetaApiFp(this.configuration).getIdentity(requestParameters.id, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
37683
37712
|
}
|
|
37684
37713
|
|
|
37685
37714
|
/**
|
|
@@ -39500,7 +39529,7 @@ export const IdentityProfilesBetaApiAxiosParamCreator = function (configuration?
|
|
|
39500
39529
|
},
|
|
39501
39530
|
/**
|
|
39502
39531
|
* 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.
|
|
39503
|
-
* @summary
|
|
39532
|
+
* @summary Default identity attribute config
|
|
39504
39533
|
* @param {string} identityProfileId The Identity Profile ID
|
|
39505
39534
|
* @param {*} [axiosOptions] Override http request option.
|
|
39506
39535
|
* @throws {RequiredError}
|
|
@@ -39691,7 +39720,7 @@ export const IdentityProfilesBetaApiAxiosParamCreator = function (configuration?
|
|
|
39691
39720
|
},
|
|
39692
39721
|
/**
|
|
39693
39722
|
* 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.
|
|
39694
|
-
* @summary Refreshes all
|
|
39723
|
+
* @summary Refreshes all identities under profile
|
|
39695
39724
|
* @param {string} identityProfileId The Identity Profile ID to be refreshed
|
|
39696
39725
|
* @param {*} [axiosOptions] Override http request option.
|
|
39697
39726
|
* @throws {RequiredError}
|
|
@@ -39850,7 +39879,7 @@ export const IdentityProfilesBetaApiFp = function(configuration?: Configuration)
|
|
|
39850
39879
|
},
|
|
39851
39880
|
/**
|
|
39852
39881
|
* 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.
|
|
39853
|
-
* @summary
|
|
39882
|
+
* @summary Default identity attribute config
|
|
39854
39883
|
* @param {string} identityProfileId The Identity Profile ID
|
|
39855
39884
|
* @param {*} [axiosOptions] Override http request option.
|
|
39856
39885
|
* @throws {RequiredError}
|
|
@@ -39898,7 +39927,7 @@ export const IdentityProfilesBetaApiFp = function(configuration?: Configuration)
|
|
|
39898
39927
|
},
|
|
39899
39928
|
/**
|
|
39900
39929
|
* 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.
|
|
39901
|
-
* @summary Refreshes all
|
|
39930
|
+
* @summary Refreshes all identities under profile
|
|
39902
39931
|
* @param {string} identityProfileId The Identity Profile ID to be refreshed
|
|
39903
39932
|
* @param {*} [axiosOptions] Override http request option.
|
|
39904
39933
|
* @throws {RequiredError}
|
|
@@ -39985,7 +40014,7 @@ export const IdentityProfilesBetaApiFactory = function (configuration?: Configur
|
|
|
39985
40014
|
},
|
|
39986
40015
|
/**
|
|
39987
40016
|
* 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.
|
|
39988
|
-
* @summary
|
|
40017
|
+
* @summary Default identity attribute config
|
|
39989
40018
|
* @param {string} identityProfileId The Identity Profile ID
|
|
39990
40019
|
* @param {*} [axiosOptions] Override http request option.
|
|
39991
40020
|
* @throws {RequiredError}
|
|
@@ -40029,7 +40058,7 @@ export const IdentityProfilesBetaApiFactory = function (configuration?: Configur
|
|
|
40029
40058
|
},
|
|
40030
40059
|
/**
|
|
40031
40060
|
* 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.
|
|
40032
|
-
* @summary Refreshes all
|
|
40061
|
+
* @summary Refreshes all identities under profile
|
|
40033
40062
|
* @param {string} identityProfileId The Identity Profile ID to be refreshed
|
|
40034
40063
|
* @param {*} [axiosOptions] Override http request option.
|
|
40035
40064
|
* @throws {RequiredError}
|
|
@@ -40337,7 +40366,7 @@ export class IdentityProfilesBetaApi extends BaseAPI {
|
|
|
40337
40366
|
|
|
40338
40367
|
/**
|
|
40339
40368
|
* 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.
|
|
40340
|
-
* @summary
|
|
40369
|
+
* @summary Default identity attribute config
|
|
40341
40370
|
* @param {IdentityProfilesBetaApiGetDefaultIdentityAttributeConfigRequest} requestParameters Request parameters.
|
|
40342
40371
|
* @param {*} [axiosOptions] Override http request option.
|
|
40343
40372
|
* @throws {RequiredError}
|
|
@@ -40385,7 +40414,7 @@ export class IdentityProfilesBetaApi extends BaseAPI {
|
|
|
40385
40414
|
|
|
40386
40415
|
/**
|
|
40387
40416
|
* 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.
|
|
40388
|
-
* @summary Refreshes all
|
|
40417
|
+
* @summary Refreshes all identities under profile
|
|
40389
40418
|
* @param {IdentityProfilesBetaApiRefreshIdentityProfileRequest} requestParameters Request parameters.
|
|
40390
40419
|
* @param {*} [axiosOptions] Override http request option.
|
|
40391
40420
|
* @throws {RequiredError}
|
|
@@ -40674,7 +40703,7 @@ export const MFAConfigurationBetaApiAxiosParamCreator = function (configuration?
|
|
|
40674
40703
|
return {
|
|
40675
40704
|
/**
|
|
40676
40705
|
* This API returns the configuration of a given MFA method. A token with ORG_ADMIN authority is required to call this API.
|
|
40677
|
-
* @summary
|
|
40706
|
+
* @summary Configuration of a MFA method
|
|
40678
40707
|
* @param {string} method The name of the MFA method. The currently supported method name is okta-verify.
|
|
40679
40708
|
* @param {*} [axiosOptions] Override http request option.
|
|
40680
40709
|
* @throws {RequiredError}
|
|
@@ -40716,7 +40745,7 @@ export const MFAConfigurationBetaApiAxiosParamCreator = function (configuration?
|
|
|
40716
40745
|
},
|
|
40717
40746
|
/**
|
|
40718
40747
|
* This API sets the configuration of a given MFA method. A token with ORG_ADMIN authority is required to call this API.
|
|
40719
|
-
* @summary Set
|
|
40748
|
+
* @summary Set MFA method configuration
|
|
40720
40749
|
* @param {string} method The name of the MFA method. The currently supported method name is okta-verify.
|
|
40721
40750
|
* @param {MfaConfigBeta} mfaConfigBeta
|
|
40722
40751
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -40764,7 +40793,7 @@ export const MFAConfigurationBetaApiAxiosParamCreator = function (configuration?
|
|
|
40764
40793
|
},
|
|
40765
40794
|
/**
|
|
40766
40795
|
* 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.
|
|
40767
|
-
* @summary
|
|
40796
|
+
* @summary MFA method\'s test configuration
|
|
40768
40797
|
* @param {string} method The name of the MFA method. The currently supported method name is okta-verify.
|
|
40769
40798
|
* @param {*} [axiosOptions] Override http request option.
|
|
40770
40799
|
* @throws {RequiredError}
|
|
@@ -40816,7 +40845,7 @@ export const MFAConfigurationBetaApiFp = function(configuration?: Configuration)
|
|
|
40816
40845
|
return {
|
|
40817
40846
|
/**
|
|
40818
40847
|
* This API returns the configuration of a given MFA method. A token with ORG_ADMIN authority is required to call this API.
|
|
40819
|
-
* @summary
|
|
40848
|
+
* @summary Configuration of a MFA method
|
|
40820
40849
|
* @param {string} method The name of the MFA method. The currently supported method name is okta-verify.
|
|
40821
40850
|
* @param {*} [axiosOptions] Override http request option.
|
|
40822
40851
|
* @throws {RequiredError}
|
|
@@ -40827,7 +40856,7 @@ export const MFAConfigurationBetaApiFp = function(configuration?: Configuration)
|
|
|
40827
40856
|
},
|
|
40828
40857
|
/**
|
|
40829
40858
|
* This API sets the configuration of a given MFA method. A token with ORG_ADMIN authority is required to call this API.
|
|
40830
|
-
* @summary Set
|
|
40859
|
+
* @summary Set MFA method configuration
|
|
40831
40860
|
* @param {string} method The name of the MFA method. The currently supported method name is okta-verify.
|
|
40832
40861
|
* @param {MfaConfigBeta} mfaConfigBeta
|
|
40833
40862
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -40839,7 +40868,7 @@ export const MFAConfigurationBetaApiFp = function(configuration?: Configuration)
|
|
|
40839
40868
|
},
|
|
40840
40869
|
/**
|
|
40841
40870
|
* 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.
|
|
40842
|
-
* @summary
|
|
40871
|
+
* @summary MFA method\'s test configuration
|
|
40843
40872
|
* @param {string} method The name of the MFA method. The currently supported method name is okta-verify.
|
|
40844
40873
|
* @param {*} [axiosOptions] Override http request option.
|
|
40845
40874
|
* @throws {RequiredError}
|
|
@@ -40860,7 +40889,7 @@ export const MFAConfigurationBetaApiFactory = function (configuration?: Configur
|
|
|
40860
40889
|
return {
|
|
40861
40890
|
/**
|
|
40862
40891
|
* This API returns the configuration of a given MFA method. A token with ORG_ADMIN authority is required to call this API.
|
|
40863
|
-
* @summary
|
|
40892
|
+
* @summary Configuration of a MFA method
|
|
40864
40893
|
* @param {string} method The name of the MFA method. The currently supported method name is okta-verify.
|
|
40865
40894
|
* @param {*} [axiosOptions] Override http request option.
|
|
40866
40895
|
* @throws {RequiredError}
|
|
@@ -40870,7 +40899,7 @@ export const MFAConfigurationBetaApiFactory = function (configuration?: Configur
|
|
|
40870
40899
|
},
|
|
40871
40900
|
/**
|
|
40872
40901
|
* This API sets the configuration of a given MFA method. A token with ORG_ADMIN authority is required to call this API.
|
|
40873
|
-
* @summary Set
|
|
40902
|
+
* @summary Set MFA method configuration
|
|
40874
40903
|
* @param {string} method The name of the MFA method. The currently supported method name is okta-verify.
|
|
40875
40904
|
* @param {MfaConfigBeta} mfaConfigBeta
|
|
40876
40905
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -40881,7 +40910,7 @@ export const MFAConfigurationBetaApiFactory = function (configuration?: Configur
|
|
|
40881
40910
|
},
|
|
40882
40911
|
/**
|
|
40883
40912
|
* 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.
|
|
40884
|
-
* @summary
|
|
40913
|
+
* @summary MFA method\'s test configuration
|
|
40885
40914
|
* @param {string} method The name of the MFA method. The currently supported method name is okta-verify.
|
|
40886
40915
|
* @param {*} [axiosOptions] Override http request option.
|
|
40887
40916
|
* @throws {RequiredError}
|
|
@@ -40950,7 +40979,7 @@ export interface MFAConfigurationBetaApiTestMFAConfigRequest {
|
|
|
40950
40979
|
export class MFAConfigurationBetaApi extends BaseAPI {
|
|
40951
40980
|
/**
|
|
40952
40981
|
* This API returns the configuration of a given MFA method. A token with ORG_ADMIN authority is required to call this API.
|
|
40953
|
-
* @summary
|
|
40982
|
+
* @summary Configuration of a MFA method
|
|
40954
40983
|
* @param {MFAConfigurationBetaApiGetMFAConfigRequest} requestParameters Request parameters.
|
|
40955
40984
|
* @param {*} [axiosOptions] Override http request option.
|
|
40956
40985
|
* @throws {RequiredError}
|
|
@@ -40962,7 +40991,7 @@ export class MFAConfigurationBetaApi extends BaseAPI {
|
|
|
40962
40991
|
|
|
40963
40992
|
/**
|
|
40964
40993
|
* This API sets the configuration of a given MFA method. A token with ORG_ADMIN authority is required to call this API.
|
|
40965
|
-
* @summary Set
|
|
40994
|
+
* @summary Set MFA method configuration
|
|
40966
40995
|
* @param {MFAConfigurationBetaApiSetMFAConfigRequest} requestParameters Request parameters.
|
|
40967
40996
|
* @param {*} [axiosOptions] Override http request option.
|
|
40968
40997
|
* @throws {RequiredError}
|
|
@@ -40974,7 +41003,7 @@ export class MFAConfigurationBetaApi extends BaseAPI {
|
|
|
40974
41003
|
|
|
40975
41004
|
/**
|
|
40976
41005
|
* 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.
|
|
40977
|
-
* @summary
|
|
41006
|
+
* @summary MFA method\'s test configuration
|
|
40978
41007
|
* @param {MFAConfigurationBetaApiTestMFAConfigRequest} requestParameters Request parameters.
|
|
40979
41008
|
* @param {*} [axiosOptions] Override http request option.
|
|
40980
41009
|
* @throws {RequiredError}
|
|
@@ -40994,7 +41023,7 @@ export const ManagedClientsBetaApiAxiosParamCreator = function (configuration?:
|
|
|
40994
41023
|
return {
|
|
40995
41024
|
/**
|
|
40996
41025
|
* Retrieve Managed Client Status by ID.
|
|
40997
|
-
* @summary
|
|
41026
|
+
* @summary Specified Managed Client Status.
|
|
40998
41027
|
* @param {string} id ID of the Managed Client Status to get
|
|
40999
41028
|
* @param {ManagedClientTypeBeta} type Type of the Managed Client Status to get
|
|
41000
41029
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -41043,7 +41072,7 @@ export const ManagedClientsBetaApiAxiosParamCreator = function (configuration?:
|
|
|
41043
41072
|
},
|
|
41044
41073
|
/**
|
|
41045
41074
|
* Update a status detail passed in from the client
|
|
41046
|
-
* @summary Handle
|
|
41075
|
+
* @summary Handle status request from client
|
|
41047
41076
|
* @param {string} id ID of the Managed Client Status to update
|
|
41048
41077
|
* @param {ManagedClientStatusBeta} managedClientStatusBeta
|
|
41049
41078
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -41101,7 +41130,7 @@ export const ManagedClientsBetaApiFp = function(configuration?: Configuration) {
|
|
|
41101
41130
|
return {
|
|
41102
41131
|
/**
|
|
41103
41132
|
* Retrieve Managed Client Status by ID.
|
|
41104
|
-
* @summary
|
|
41133
|
+
* @summary Specified Managed Client Status.
|
|
41105
41134
|
* @param {string} id ID of the Managed Client Status to get
|
|
41106
41135
|
* @param {ManagedClientTypeBeta} type Type of the Managed Client Status to get
|
|
41107
41136
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -41113,7 +41142,7 @@ export const ManagedClientsBetaApiFp = function(configuration?: Configuration) {
|
|
|
41113
41142
|
},
|
|
41114
41143
|
/**
|
|
41115
41144
|
* Update a status detail passed in from the client
|
|
41116
|
-
* @summary Handle
|
|
41145
|
+
* @summary Handle status request from client
|
|
41117
41146
|
* @param {string} id ID of the Managed Client Status to update
|
|
41118
41147
|
* @param {ManagedClientStatusBeta} managedClientStatusBeta
|
|
41119
41148
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -41135,7 +41164,7 @@ export const ManagedClientsBetaApiFactory = function (configuration?: Configurat
|
|
|
41135
41164
|
return {
|
|
41136
41165
|
/**
|
|
41137
41166
|
* Retrieve Managed Client Status by ID.
|
|
41138
|
-
* @summary
|
|
41167
|
+
* @summary Specified Managed Client Status.
|
|
41139
41168
|
* @param {string} id ID of the Managed Client Status to get
|
|
41140
41169
|
* @param {ManagedClientTypeBeta} type Type of the Managed Client Status to get
|
|
41141
41170
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -41146,7 +41175,7 @@ export const ManagedClientsBetaApiFactory = function (configuration?: Configurat
|
|
|
41146
41175
|
},
|
|
41147
41176
|
/**
|
|
41148
41177
|
* Update a status detail passed in from the client
|
|
41149
|
-
* @summary Handle
|
|
41178
|
+
* @summary Handle status request from client
|
|
41150
41179
|
* @param {string} id ID of the Managed Client Status to update
|
|
41151
41180
|
* @param {ManagedClientStatusBeta} managedClientStatusBeta
|
|
41152
41181
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -41209,7 +41238,7 @@ export interface ManagedClientsBetaApiUpdateManagedClientStatusRequest {
|
|
|
41209
41238
|
export class ManagedClientsBetaApi extends BaseAPI {
|
|
41210
41239
|
/**
|
|
41211
41240
|
* Retrieve Managed Client Status by ID.
|
|
41212
|
-
* @summary
|
|
41241
|
+
* @summary Specified Managed Client Status.
|
|
41213
41242
|
* @param {ManagedClientsBetaApiGetManagedClientStatusRequest} requestParameters Request parameters.
|
|
41214
41243
|
* @param {*} [axiosOptions] Override http request option.
|
|
41215
41244
|
* @throws {RequiredError}
|
|
@@ -41221,7 +41250,7 @@ export class ManagedClientsBetaApi extends BaseAPI {
|
|
|
41221
41250
|
|
|
41222
41251
|
/**
|
|
41223
41252
|
* Update a status detail passed in from the client
|
|
41224
|
-
* @summary Handle
|
|
41253
|
+
* @summary Handle status request from client
|
|
41225
41254
|
* @param {ManagedClientsBetaApiUpdateManagedClientStatusRequest} requestParameters Request parameters.
|
|
41226
41255
|
* @param {*} [axiosOptions] Override http request option.
|
|
41227
41256
|
* @throws {RequiredError}
|
|
@@ -41872,8 +41901,8 @@ export const NonEmployeeLifecycleManagementBetaApiAxiosParamCreator = function (
|
|
|
41872
41901
|
};
|
|
41873
41902
|
},
|
|
41874
41903
|
/**
|
|
41875
|
-
* 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.
|
|
41876
|
-
* @summary Create
|
|
41904
|
+
* 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.
|
|
41905
|
+
* @summary Create Non-Employee Source Schema Attribute
|
|
41877
41906
|
* @param {string} sourceId The Source id
|
|
41878
41907
|
* @param {NonEmployeeSchemaAttributeBodyBeta} nonEmployeeSchemaAttributeBodyBeta
|
|
41879
41908
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -41920,7 +41949,7 @@ export const NonEmployeeLifecycleManagementBetaApiAxiosParamCreator = function (
|
|
|
41920
41949
|
};
|
|
41921
41950
|
},
|
|
41922
41951
|
/**
|
|
41923
|
-
* This request will delete a non-employee record.
|
|
41952
|
+
* This request will delete a non-employee record.
|
|
41924
41953
|
* @summary Delete Non-Employee Record
|
|
41925
41954
|
* @param {string} id Non-Employee record id (UUID)
|
|
41926
41955
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -42006,7 +42035,7 @@ export const NonEmployeeLifecycleManagementBetaApiAxiosParamCreator = function (
|
|
|
42006
42035
|
};
|
|
42007
42036
|
},
|
|
42008
42037
|
/**
|
|
42009
|
-
* This request will delete a non-employee request.
|
|
42038
|
+
* This request will delete a non-employee request.
|
|
42010
42039
|
* @summary Delete Non-Employee Request
|
|
42011
42040
|
* @param {string} id Non-Employee request id in the UUID format
|
|
42012
42041
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -42048,8 +42077,8 @@ export const NonEmployeeLifecycleManagementBetaApiAxiosParamCreator = function (
|
|
|
42048
42077
|
};
|
|
42049
42078
|
},
|
|
42050
42079
|
/**
|
|
42051
|
-
* This end-point deletes a specific schema attribute for a non-employee source.
|
|
42052
|
-
* @summary Delete
|
|
42080
|
+
* This end-point deletes a specific schema attribute for a non-employee source.
|
|
42081
|
+
* @summary Delete Non-Employee Source\'s Schema Attribute
|
|
42053
42082
|
* @param {string} attributeId The Schema Attribute Id (UUID)
|
|
42054
42083
|
* @param {string} sourceId The Source id
|
|
42055
42084
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -42094,7 +42123,7 @@ export const NonEmployeeLifecycleManagementBetaApiAxiosParamCreator = function (
|
|
|
42094
42123
|
};
|
|
42095
42124
|
},
|
|
42096
42125
|
/**
|
|
42097
|
-
* This request will delete a non-employee source.
|
|
42126
|
+
* This request will delete a non-employee source.
|
|
42098
42127
|
* @summary Delete Non-Employee Source
|
|
42099
42128
|
* @param {string} sourceId Source Id
|
|
42100
42129
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -42136,8 +42165,8 @@ export const NonEmployeeLifecycleManagementBetaApiAxiosParamCreator = function (
|
|
|
42136
42165
|
};
|
|
42137
42166
|
},
|
|
42138
42167
|
/**
|
|
42139
|
-
* This end-point deletes all custom schema attributes for a non-employee source.
|
|
42140
|
-
* @summary Delete all custom schema attributes
|
|
42168
|
+
* This end-point deletes all custom schema attributes for a non-employee source.
|
|
42169
|
+
* @summary Delete all custom schema attributes
|
|
42141
42170
|
* @param {string} sourceId The Source id
|
|
42142
42171
|
* @param {*} [axiosOptions] Override http request option.
|
|
42143
42172
|
* @throws {RequiredError}
|
|
@@ -42178,7 +42207,7 @@ export const NonEmployeeLifecycleManagementBetaApiAxiosParamCreator = function (
|
|
|
42178
42207
|
};
|
|
42179
42208
|
},
|
|
42180
42209
|
/**
|
|
42181
|
-
* This requests a CSV download for all non-employees from a provided source.
|
|
42210
|
+
* This requests a CSV download for all non-employees from a provided source.
|
|
42182
42211
|
* @summary Exports Non-Employee Records to CSV
|
|
42183
42212
|
* @param {string} id Source Id (UUID)
|
|
42184
42213
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -42351,8 +42380,8 @@ export const NonEmployeeLifecycleManagementBetaApiAxiosParamCreator = function (
|
|
|
42351
42380
|
};
|
|
42352
42381
|
},
|
|
42353
42382
|
/**
|
|
42354
|
-
* The nonEmployeeBulkUploadStatus API returns the status of the newest bulk upload job for the specified source.
|
|
42355
|
-
* @summary
|
|
42383
|
+
* The nonEmployeeBulkUploadStatus API returns the status of the newest bulk upload job for the specified source.
|
|
42384
|
+
* @summary Bulk upload status on source
|
|
42356
42385
|
* @param {string} id Source ID (UUID)
|
|
42357
42386
|
* @param {*} [axiosOptions] Override http request option.
|
|
42358
42387
|
* @throws {RequiredError}
|
|
@@ -42393,7 +42422,7 @@ export const NonEmployeeLifecycleManagementBetaApiAxiosParamCreator = function (
|
|
|
42393
42422
|
};
|
|
42394
42423
|
},
|
|
42395
42424
|
/**
|
|
42396
|
-
* This gets a non-employee record.
|
|
42425
|
+
* This gets a non-employee record.
|
|
42397
42426
|
* @summary Get a Non-Employee Record
|
|
42398
42427
|
* @param {string} id Non-Employee record id (UUID)
|
|
42399
42428
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -42970,8 +42999,8 @@ export const NonEmployeeLifecycleManagementBetaApiAxiosParamCreator = function (
|
|
|
42970
42999
|
};
|
|
42971
43000
|
},
|
|
42972
43001
|
/**
|
|
42973
|
-
* This end-point patches a specific schema attribute for a non-employee SourceId.
|
|
42974
|
-
* @summary Patch
|
|
43002
|
+
* This end-point patches a specific schema attribute for a non-employee SourceId.
|
|
43003
|
+
* @summary Patch Non-Employee Source\'s Schema Attribute
|
|
42975
43004
|
* @param {string} attributeId The Schema Attribute Id (UUID)
|
|
42976
43005
|
* @param {string} sourceId The Source id
|
|
42977
43006
|
* @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\'.
|
|
@@ -43022,7 +43051,7 @@ export const NonEmployeeLifecycleManagementBetaApiAxiosParamCreator = function (
|
|
|
43022
43051
|
};
|
|
43023
43052
|
},
|
|
43024
43053
|
/**
|
|
43025
|
-
* patch a non-employee source. (Partial Update) Patchable field: **name, description, approvers, accountManagers**
|
|
43054
|
+
* patch a non-employee source. (Partial Update) Patchable field: **name, description, approvers, accountManagers**
|
|
43026
43055
|
* @summary Patch a Non-Employee Source
|
|
43027
43056
|
* @param {string} sourceId Source Id
|
|
43028
43057
|
* @param {Array<JsonPatchOperationBeta>} jsonPatchOperationBeta A list of non-employee source update operations according to the [JSON Patch](https://tools.ietf.org/html/rfc6902) standard.
|
|
@@ -43274,8 +43303,8 @@ export const NonEmployeeLifecycleManagementBetaApiFp = function(configuration?:
|
|
|
43274
43303
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
43275
43304
|
},
|
|
43276
43305
|
/**
|
|
43277
|
-
* 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.
|
|
43278
|
-
* @summary Create
|
|
43306
|
+
* 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.
|
|
43307
|
+
* @summary Create Non-Employee Source Schema Attribute
|
|
43279
43308
|
* @param {string} sourceId The Source id
|
|
43280
43309
|
* @param {NonEmployeeSchemaAttributeBodyBeta} nonEmployeeSchemaAttributeBodyBeta
|
|
43281
43310
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -43286,7 +43315,7 @@ export const NonEmployeeLifecycleManagementBetaApiFp = function(configuration?:
|
|
|
43286
43315
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
43287
43316
|
},
|
|
43288
43317
|
/**
|
|
43289
|
-
* This request will delete a non-employee record.
|
|
43318
|
+
* This request will delete a non-employee record.
|
|
43290
43319
|
* @summary Delete Non-Employee Record
|
|
43291
43320
|
* @param {string} id Non-Employee record id (UUID)
|
|
43292
43321
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -43308,7 +43337,7 @@ export const NonEmployeeLifecycleManagementBetaApiFp = function(configuration?:
|
|
|
43308
43337
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
43309
43338
|
},
|
|
43310
43339
|
/**
|
|
43311
|
-
* This request will delete a non-employee request.
|
|
43340
|
+
* This request will delete a non-employee request.
|
|
43312
43341
|
* @summary Delete Non-Employee Request
|
|
43313
43342
|
* @param {string} id Non-Employee request id in the UUID format
|
|
43314
43343
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -43319,8 +43348,8 @@ export const NonEmployeeLifecycleManagementBetaApiFp = function(configuration?:
|
|
|
43319
43348
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
43320
43349
|
},
|
|
43321
43350
|
/**
|
|
43322
|
-
* This end-point deletes a specific schema attribute for a non-employee source.
|
|
43323
|
-
* @summary Delete
|
|
43351
|
+
* This end-point deletes a specific schema attribute for a non-employee source.
|
|
43352
|
+
* @summary Delete Non-Employee Source\'s Schema Attribute
|
|
43324
43353
|
* @param {string} attributeId The Schema Attribute Id (UUID)
|
|
43325
43354
|
* @param {string} sourceId The Source id
|
|
43326
43355
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -43331,7 +43360,7 @@ export const NonEmployeeLifecycleManagementBetaApiFp = function(configuration?:
|
|
|
43331
43360
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
43332
43361
|
},
|
|
43333
43362
|
/**
|
|
43334
|
-
* This request will delete a non-employee source.
|
|
43363
|
+
* This request will delete a non-employee source.
|
|
43335
43364
|
* @summary Delete Non-Employee Source
|
|
43336
43365
|
* @param {string} sourceId Source Id
|
|
43337
43366
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -43342,8 +43371,8 @@ export const NonEmployeeLifecycleManagementBetaApiFp = function(configuration?:
|
|
|
43342
43371
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
43343
43372
|
},
|
|
43344
43373
|
/**
|
|
43345
|
-
* This end-point deletes all custom schema attributes for a non-employee source.
|
|
43346
|
-
* @summary Delete all custom schema attributes
|
|
43374
|
+
* This end-point deletes all custom schema attributes for a non-employee source.
|
|
43375
|
+
* @summary Delete all custom schema attributes
|
|
43347
43376
|
* @param {string} sourceId The Source id
|
|
43348
43377
|
* @param {*} [axiosOptions] Override http request option.
|
|
43349
43378
|
* @throws {RequiredError}
|
|
@@ -43353,7 +43382,7 @@ export const NonEmployeeLifecycleManagementBetaApiFp = function(configuration?:
|
|
|
43353
43382
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
43354
43383
|
},
|
|
43355
43384
|
/**
|
|
43356
|
-
* This requests a CSV download for all non-employees from a provided source.
|
|
43385
|
+
* This requests a CSV download for all non-employees from a provided source.
|
|
43357
43386
|
* @summary Exports Non-Employee Records to CSV
|
|
43358
43387
|
* @param {string} id Source Id (UUID)
|
|
43359
43388
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -43398,8 +43427,8 @@ export const NonEmployeeLifecycleManagementBetaApiFp = function(configuration?:
|
|
|
43398
43427
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
43399
43428
|
},
|
|
43400
43429
|
/**
|
|
43401
|
-
* The nonEmployeeBulkUploadStatus API returns the status of the newest bulk upload job for the specified source.
|
|
43402
|
-
* @summary
|
|
43430
|
+
* The nonEmployeeBulkUploadStatus API returns the status of the newest bulk upload job for the specified source.
|
|
43431
|
+
* @summary Bulk upload status on source
|
|
43403
43432
|
* @param {string} id Source ID (UUID)
|
|
43404
43433
|
* @param {*} [axiosOptions] Override http request option.
|
|
43405
43434
|
* @throws {RequiredError}
|
|
@@ -43409,7 +43438,7 @@ export const NonEmployeeLifecycleManagementBetaApiFp = function(configuration?:
|
|
|
43409
43438
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
43410
43439
|
},
|
|
43411
43440
|
/**
|
|
43412
|
-
* This gets a non-employee record.
|
|
43441
|
+
* This gets a non-employee record.
|
|
43413
43442
|
* @summary Get a Non-Employee Record
|
|
43414
43443
|
* @param {string} id Non-Employee record id (UUID)
|
|
43415
43444
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -43551,8 +43580,8 @@ export const NonEmployeeLifecycleManagementBetaApiFp = function(configuration?:
|
|
|
43551
43580
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
43552
43581
|
},
|
|
43553
43582
|
/**
|
|
43554
|
-
* This end-point patches a specific schema attribute for a non-employee SourceId.
|
|
43555
|
-
* @summary Patch
|
|
43583
|
+
* This end-point patches a specific schema attribute for a non-employee SourceId.
|
|
43584
|
+
* @summary Patch Non-Employee Source\'s Schema Attribute
|
|
43556
43585
|
* @param {string} attributeId The Schema Attribute Id (UUID)
|
|
43557
43586
|
* @param {string} sourceId The Source id
|
|
43558
43587
|
* @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\'.
|
|
@@ -43564,7 +43593,7 @@ export const NonEmployeeLifecycleManagementBetaApiFp = function(configuration?:
|
|
|
43564
43593
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
43565
43594
|
},
|
|
43566
43595
|
/**
|
|
43567
|
-
* patch a non-employee source. (Partial Update) Patchable field: **name, description, approvers, accountManagers**
|
|
43596
|
+
* patch a non-employee source. (Partial Update) Patchable field: **name, description, approvers, accountManagers**
|
|
43568
43597
|
* @summary Patch a Non-Employee Source
|
|
43569
43598
|
* @param {string} sourceId Source Id
|
|
43570
43599
|
* @param {Array<JsonPatchOperationBeta>} jsonPatchOperationBeta A list of non-employee source update operations according to the [JSON Patch](https://tools.ietf.org/html/rfc6902) standard.
|
|
@@ -43663,8 +43692,8 @@ export const NonEmployeeLifecycleManagementBetaApiFactory = function (configurat
|
|
|
43663
43692
|
return localVarFp.createNonEmployeeSource(nonEmployeeSourceRequestBodyBeta, axiosOptions).then((request) => request(axios, basePath));
|
|
43664
43693
|
},
|
|
43665
43694
|
/**
|
|
43666
|
-
* 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.
|
|
43667
|
-
* @summary Create
|
|
43695
|
+
* 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.
|
|
43696
|
+
* @summary Create Non-Employee Source Schema Attribute
|
|
43668
43697
|
* @param {string} sourceId The Source id
|
|
43669
43698
|
* @param {NonEmployeeSchemaAttributeBodyBeta} nonEmployeeSchemaAttributeBodyBeta
|
|
43670
43699
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -43674,7 +43703,7 @@ export const NonEmployeeLifecycleManagementBetaApiFactory = function (configurat
|
|
|
43674
43703
|
return localVarFp.createNonEmployeeSourceSchemaAttributes(sourceId, nonEmployeeSchemaAttributeBodyBeta, axiosOptions).then((request) => request(axios, basePath));
|
|
43675
43704
|
},
|
|
43676
43705
|
/**
|
|
43677
|
-
* This request will delete a non-employee record.
|
|
43706
|
+
* This request will delete a non-employee record.
|
|
43678
43707
|
* @summary Delete Non-Employee Record
|
|
43679
43708
|
* @param {string} id Non-Employee record id (UUID)
|
|
43680
43709
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -43694,7 +43723,7 @@ export const NonEmployeeLifecycleManagementBetaApiFactory = function (configurat
|
|
|
43694
43723
|
return localVarFp.deleteNonEmployeeRecordInBulk(deleteNonEmployeeRecordInBulkRequestBeta, axiosOptions).then((request) => request(axios, basePath));
|
|
43695
43724
|
},
|
|
43696
43725
|
/**
|
|
43697
|
-
* This request will delete a non-employee request.
|
|
43726
|
+
* This request will delete a non-employee request.
|
|
43698
43727
|
* @summary Delete Non-Employee Request
|
|
43699
43728
|
* @param {string} id Non-Employee request id in the UUID format
|
|
43700
43729
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -43704,8 +43733,8 @@ export const NonEmployeeLifecycleManagementBetaApiFactory = function (configurat
|
|
|
43704
43733
|
return localVarFp.deleteNonEmployeeRequest(id, axiosOptions).then((request) => request(axios, basePath));
|
|
43705
43734
|
},
|
|
43706
43735
|
/**
|
|
43707
|
-
* This end-point deletes a specific schema attribute for a non-employee source.
|
|
43708
|
-
* @summary Delete
|
|
43736
|
+
* This end-point deletes a specific schema attribute for a non-employee source.
|
|
43737
|
+
* @summary Delete Non-Employee Source\'s Schema Attribute
|
|
43709
43738
|
* @param {string} attributeId The Schema Attribute Id (UUID)
|
|
43710
43739
|
* @param {string} sourceId The Source id
|
|
43711
43740
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -43715,7 +43744,7 @@ export const NonEmployeeLifecycleManagementBetaApiFactory = function (configurat
|
|
|
43715
43744
|
return localVarFp.deleteNonEmployeeSchemaAttribute(attributeId, sourceId, axiosOptions).then((request) => request(axios, basePath));
|
|
43716
43745
|
},
|
|
43717
43746
|
/**
|
|
43718
|
-
* This request will delete a non-employee source.
|
|
43747
|
+
* This request will delete a non-employee source.
|
|
43719
43748
|
* @summary Delete Non-Employee Source
|
|
43720
43749
|
* @param {string} sourceId Source Id
|
|
43721
43750
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -43725,8 +43754,8 @@ export const NonEmployeeLifecycleManagementBetaApiFactory = function (configurat
|
|
|
43725
43754
|
return localVarFp.deleteNonEmployeeSource(sourceId, axiosOptions).then((request) => request(axios, basePath));
|
|
43726
43755
|
},
|
|
43727
43756
|
/**
|
|
43728
|
-
* This end-point deletes all custom schema attributes for a non-employee source.
|
|
43729
|
-
* @summary Delete all custom schema attributes
|
|
43757
|
+
* This end-point deletes all custom schema attributes for a non-employee source.
|
|
43758
|
+
* @summary Delete all custom schema attributes
|
|
43730
43759
|
* @param {string} sourceId The Source id
|
|
43731
43760
|
* @param {*} [axiosOptions] Override http request option.
|
|
43732
43761
|
* @throws {RequiredError}
|
|
@@ -43735,7 +43764,7 @@ export const NonEmployeeLifecycleManagementBetaApiFactory = function (configurat
|
|
|
43735
43764
|
return localVarFp.deleteNonEmployeeSourceSchemaAttributes(sourceId, axiosOptions).then((request) => request(axios, basePath));
|
|
43736
43765
|
},
|
|
43737
43766
|
/**
|
|
43738
|
-
* This requests a CSV download for all non-employees from a provided source.
|
|
43767
|
+
* This requests a CSV download for all non-employees from a provided source.
|
|
43739
43768
|
* @summary Exports Non-Employee Records to CSV
|
|
43740
43769
|
* @param {string} id Source Id (UUID)
|
|
43741
43770
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -43776,8 +43805,8 @@ export const NonEmployeeLifecycleManagementBetaApiFactory = function (configurat
|
|
|
43776
43805
|
return localVarFp.getNonEmployeeApprovalSummary(requestedFor, axiosOptions).then((request) => request(axios, basePath));
|
|
43777
43806
|
},
|
|
43778
43807
|
/**
|
|
43779
|
-
* The nonEmployeeBulkUploadStatus API returns the status of the newest bulk upload job for the specified source.
|
|
43780
|
-
* @summary
|
|
43808
|
+
* The nonEmployeeBulkUploadStatus API returns the status of the newest bulk upload job for the specified source.
|
|
43809
|
+
* @summary Bulk upload status on source
|
|
43781
43810
|
* @param {string} id Source ID (UUID)
|
|
43782
43811
|
* @param {*} [axiosOptions] Override http request option.
|
|
43783
43812
|
* @throws {RequiredError}
|
|
@@ -43786,7 +43815,7 @@ export const NonEmployeeLifecycleManagementBetaApiFactory = function (configurat
|
|
|
43786
43815
|
return localVarFp.getNonEmployeeBulkUploadStatus(id, axiosOptions).then((request) => request(axios, basePath));
|
|
43787
43816
|
},
|
|
43788
43817
|
/**
|
|
43789
|
-
* This gets a non-employee record.
|
|
43818
|
+
* This gets a non-employee record.
|
|
43790
43819
|
* @summary Get a Non-Employee Record
|
|
43791
43820
|
* @param {string} id Non-Employee record id (UUID)
|
|
43792
43821
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -43917,8 +43946,8 @@ export const NonEmployeeLifecycleManagementBetaApiFactory = function (configurat
|
|
|
43917
43946
|
return localVarFp.patchNonEmployeeRecord(id, jsonPatchOperationBeta, axiosOptions).then((request) => request(axios, basePath));
|
|
43918
43947
|
},
|
|
43919
43948
|
/**
|
|
43920
|
-
* This end-point patches a specific schema attribute for a non-employee SourceId.
|
|
43921
|
-
* @summary Patch
|
|
43949
|
+
* This end-point patches a specific schema attribute for a non-employee SourceId.
|
|
43950
|
+
* @summary Patch Non-Employee Source\'s Schema Attribute
|
|
43922
43951
|
* @param {string} attributeId The Schema Attribute Id (UUID)
|
|
43923
43952
|
* @param {string} sourceId The Source id
|
|
43924
43953
|
* @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\'.
|
|
@@ -43929,7 +43958,7 @@ export const NonEmployeeLifecycleManagementBetaApiFactory = function (configurat
|
|
|
43929
43958
|
return localVarFp.patchNonEmployeeSchemaAttribute(attributeId, sourceId, jsonPatchOperationBeta, axiosOptions).then((request) => request(axios, basePath));
|
|
43930
43959
|
},
|
|
43931
43960
|
/**
|
|
43932
|
-
* patch a non-employee source. (Partial Update) Patchable field: **name, description, approvers, accountManagers**
|
|
43961
|
+
* patch a non-employee source. (Partial Update) Patchable field: **name, description, approvers, accountManagers**
|
|
43933
43962
|
* @summary Patch a Non-Employee Source
|
|
43934
43963
|
* @param {string} sourceId Source Id
|
|
43935
43964
|
* @param {Array<JsonPatchOperationBeta>} jsonPatchOperationBeta A list of non-employee source update operations according to the [JSON Patch](https://tools.ietf.org/html/rfc6902) standard.
|
|
@@ -44696,8 +44725,8 @@ export class NonEmployeeLifecycleManagementBetaApi extends BaseAPI {
|
|
|
44696
44725
|
}
|
|
44697
44726
|
|
|
44698
44727
|
/**
|
|
44699
|
-
* 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.
|
|
44700
|
-
* @summary Create
|
|
44728
|
+
* 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.
|
|
44729
|
+
* @summary Create Non-Employee Source Schema Attribute
|
|
44701
44730
|
* @param {NonEmployeeLifecycleManagementBetaApiCreateNonEmployeeSourceSchemaAttributesRequest} requestParameters Request parameters.
|
|
44702
44731
|
* @param {*} [axiosOptions] Override http request option.
|
|
44703
44732
|
* @throws {RequiredError}
|
|
@@ -44708,7 +44737,7 @@ export class NonEmployeeLifecycleManagementBetaApi extends BaseAPI {
|
|
|
44708
44737
|
}
|
|
44709
44738
|
|
|
44710
44739
|
/**
|
|
44711
|
-
* This request will delete a non-employee record.
|
|
44740
|
+
* This request will delete a non-employee record.
|
|
44712
44741
|
* @summary Delete Non-Employee Record
|
|
44713
44742
|
* @param {NonEmployeeLifecycleManagementBetaApiDeleteNonEmployeeRecordRequest} requestParameters Request parameters.
|
|
44714
44743
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -44732,7 +44761,7 @@ export class NonEmployeeLifecycleManagementBetaApi extends BaseAPI {
|
|
|
44732
44761
|
}
|
|
44733
44762
|
|
|
44734
44763
|
/**
|
|
44735
|
-
* This request will delete a non-employee request.
|
|
44764
|
+
* This request will delete a non-employee request.
|
|
44736
44765
|
* @summary Delete Non-Employee Request
|
|
44737
44766
|
* @param {NonEmployeeLifecycleManagementBetaApiDeleteNonEmployeeRequestRequest} requestParameters Request parameters.
|
|
44738
44767
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -44744,8 +44773,8 @@ export class NonEmployeeLifecycleManagementBetaApi extends BaseAPI {
|
|
|
44744
44773
|
}
|
|
44745
44774
|
|
|
44746
44775
|
/**
|
|
44747
|
-
* This end-point deletes a specific schema attribute for a non-employee source.
|
|
44748
|
-
* @summary Delete
|
|
44776
|
+
* This end-point deletes a specific schema attribute for a non-employee source.
|
|
44777
|
+
* @summary Delete Non-Employee Source\'s Schema Attribute
|
|
44749
44778
|
* @param {NonEmployeeLifecycleManagementBetaApiDeleteNonEmployeeSchemaAttributeRequest} requestParameters Request parameters.
|
|
44750
44779
|
* @param {*} [axiosOptions] Override http request option.
|
|
44751
44780
|
* @throws {RequiredError}
|
|
@@ -44756,7 +44785,7 @@ export class NonEmployeeLifecycleManagementBetaApi extends BaseAPI {
|
|
|
44756
44785
|
}
|
|
44757
44786
|
|
|
44758
44787
|
/**
|
|
44759
|
-
* This request will delete a non-employee source.
|
|
44788
|
+
* This request will delete a non-employee source.
|
|
44760
44789
|
* @summary Delete Non-Employee Source
|
|
44761
44790
|
* @param {NonEmployeeLifecycleManagementBetaApiDeleteNonEmployeeSourceRequest} requestParameters Request parameters.
|
|
44762
44791
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -44768,8 +44797,8 @@ export class NonEmployeeLifecycleManagementBetaApi extends BaseAPI {
|
|
|
44768
44797
|
}
|
|
44769
44798
|
|
|
44770
44799
|
/**
|
|
44771
|
-
* This end-point deletes all custom schema attributes for a non-employee source.
|
|
44772
|
-
* @summary Delete all custom schema attributes
|
|
44800
|
+
* This end-point deletes all custom schema attributes for a non-employee source.
|
|
44801
|
+
* @summary Delete all custom schema attributes
|
|
44773
44802
|
* @param {NonEmployeeLifecycleManagementBetaApiDeleteNonEmployeeSourceSchemaAttributesRequest} requestParameters Request parameters.
|
|
44774
44803
|
* @param {*} [axiosOptions] Override http request option.
|
|
44775
44804
|
* @throws {RequiredError}
|
|
@@ -44780,7 +44809,7 @@ export class NonEmployeeLifecycleManagementBetaApi extends BaseAPI {
|
|
|
44780
44809
|
}
|
|
44781
44810
|
|
|
44782
44811
|
/**
|
|
44783
|
-
* This requests a CSV download for all non-employees from a provided source.
|
|
44812
|
+
* This requests a CSV download for all non-employees from a provided source.
|
|
44784
44813
|
* @summary Exports Non-Employee Records to CSV
|
|
44785
44814
|
* @param {NonEmployeeLifecycleManagementBetaApiExportNonEmployeeRecordsRequest} requestParameters Request parameters.
|
|
44786
44815
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -44828,8 +44857,8 @@ export class NonEmployeeLifecycleManagementBetaApi extends BaseAPI {
|
|
|
44828
44857
|
}
|
|
44829
44858
|
|
|
44830
44859
|
/**
|
|
44831
|
-
* The nonEmployeeBulkUploadStatus API returns the status of the newest bulk upload job for the specified source.
|
|
44832
|
-
* @summary
|
|
44860
|
+
* The nonEmployeeBulkUploadStatus API returns the status of the newest bulk upload job for the specified source.
|
|
44861
|
+
* @summary Bulk upload status on source
|
|
44833
44862
|
* @param {NonEmployeeLifecycleManagementBetaApiGetNonEmployeeBulkUploadStatusRequest} requestParameters Request parameters.
|
|
44834
44863
|
* @param {*} [axiosOptions] Override http request option.
|
|
44835
44864
|
* @throws {RequiredError}
|
|
@@ -44840,7 +44869,7 @@ export class NonEmployeeLifecycleManagementBetaApi extends BaseAPI {
|
|
|
44840
44869
|
}
|
|
44841
44870
|
|
|
44842
44871
|
/**
|
|
44843
|
-
* This gets a non-employee record.
|
|
44872
|
+
* This gets a non-employee record.
|
|
44844
44873
|
* @summary Get a Non-Employee Record
|
|
44845
44874
|
* @param {NonEmployeeLifecycleManagementBetaApiGetNonEmployeeRecordRequest} requestParameters Request parameters.
|
|
44846
44875
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -44972,8 +45001,8 @@ export class NonEmployeeLifecycleManagementBetaApi extends BaseAPI {
|
|
|
44972
45001
|
}
|
|
44973
45002
|
|
|
44974
45003
|
/**
|
|
44975
|
-
* This end-point patches a specific schema attribute for a non-employee SourceId.
|
|
44976
|
-
* @summary Patch
|
|
45004
|
+
* This end-point patches a specific schema attribute for a non-employee SourceId.
|
|
45005
|
+
* @summary Patch Non-Employee Source\'s Schema Attribute
|
|
44977
45006
|
* @param {NonEmployeeLifecycleManagementBetaApiPatchNonEmployeeSchemaAttributeRequest} requestParameters Request parameters.
|
|
44978
45007
|
* @param {*} [axiosOptions] Override http request option.
|
|
44979
45008
|
* @throws {RequiredError}
|
|
@@ -44984,7 +45013,7 @@ export class NonEmployeeLifecycleManagementBetaApi extends BaseAPI {
|
|
|
44984
45013
|
}
|
|
44985
45014
|
|
|
44986
45015
|
/**
|
|
44987
|
-
* patch a non-employee source. (Partial Update) Patchable field: **name, description, approvers, accountManagers**
|
|
45016
|
+
* patch a non-employee source. (Partial Update) Patchable field: **name, description, approvers, accountManagers**
|
|
44988
45017
|
* @summary Patch a Non-Employee Source
|
|
44989
45018
|
* @param {NonEmployeeLifecycleManagementBetaApiPatchNonEmployeeSourceRequest} requestParameters Request parameters.
|
|
44990
45019
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -47830,7 +47859,7 @@ export const PasswordManagementBetaApiAxiosParamCreator = function (configuratio
|
|
|
47830
47859
|
};
|
|
47831
47860
|
},
|
|
47832
47861
|
/**
|
|
47833
|
-
* 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.
|
|
47862
|
+
* 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.
|
|
47834
47863
|
* @summary Set Identity\'s Password
|
|
47835
47864
|
* @param {PasswordChangeRequestBeta} passwordChangeRequestBeta
|
|
47836
47865
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -47917,7 +47946,7 @@ export const PasswordManagementBetaApiFp = function(configuration?: Configuratio
|
|
|
47917
47946
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
47918
47947
|
},
|
|
47919
47948
|
/**
|
|
47920
|
-
* 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.
|
|
47949
|
+
* 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.
|
|
47921
47950
|
* @summary Set Identity\'s Password
|
|
47922
47951
|
* @param {PasswordChangeRequestBeta} passwordChangeRequestBeta
|
|
47923
47952
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -47968,7 +47997,7 @@ export const PasswordManagementBetaApiFactory = function (configuration?: Config
|
|
|
47968
47997
|
return localVarFp.queryPasswordInfo(passwordInfoQueryDTOBeta, axiosOptions).then((request) => request(axios, basePath));
|
|
47969
47998
|
},
|
|
47970
47999
|
/**
|
|
47971
|
-
* 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.
|
|
48000
|
+
* 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.
|
|
47972
48001
|
* @summary Set Identity\'s Password
|
|
47973
48002
|
* @param {PasswordChangeRequestBeta} passwordChangeRequestBeta
|
|
47974
48003
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -48080,7 +48109,7 @@ export class PasswordManagementBetaApi extends BaseAPI {
|
|
|
48080
48109
|
}
|
|
48081
48110
|
|
|
48082
48111
|
/**
|
|
48083
|
-
* 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.
|
|
48112
|
+
* 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.
|
|
48084
48113
|
* @summary Set Identity\'s Password
|
|
48085
48114
|
* @param {PasswordManagementBetaApiSetIdentityPasswordRequest} requestParameters Request parameters.
|
|
48086
48115
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -50512,6 +50541,50 @@ export class RoleInsightsBetaApi extends BaseAPI {
|
|
|
50512
50541
|
*/
|
|
50513
50542
|
export const RolesBetaApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
50514
50543
|
return {
|
|
50544
|
+
/**
|
|
50545
|
+
* 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.
|
|
50546
|
+
* @summary Delete Role(s)
|
|
50547
|
+
* @param {RoleBulkDeleteRequestBeta} roleBulkDeleteRequestBeta
|
|
50548
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
50549
|
+
* @throws {RequiredError}
|
|
50550
|
+
*/
|
|
50551
|
+
bulkDeleteRoles: async (roleBulkDeleteRequestBeta: RoleBulkDeleteRequestBeta, axiosOptions: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
50552
|
+
// verify required parameter 'roleBulkDeleteRequestBeta' is not null or undefined
|
|
50553
|
+
assertParamExists('bulkDeleteRoles', 'roleBulkDeleteRequestBeta', roleBulkDeleteRequestBeta)
|
|
50554
|
+
const localVarPath = `/roles/bulk-delete`;
|
|
50555
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
50556
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
50557
|
+
let baseOptions;
|
|
50558
|
+
if (configuration) {
|
|
50559
|
+
baseOptions = configuration.baseOptions;
|
|
50560
|
+
}
|
|
50561
|
+
|
|
50562
|
+
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...axiosOptions};
|
|
50563
|
+
const localVarHeaderParameter = {} as any;
|
|
50564
|
+
const localVarQueryParameter = {} as any;
|
|
50565
|
+
|
|
50566
|
+
// authentication oauth2 required
|
|
50567
|
+
// oauth required
|
|
50568
|
+
await setOAuthToObject(localVarHeaderParameter, "oauth2", [], configuration)
|
|
50569
|
+
|
|
50570
|
+
// authentication oauth2 required
|
|
50571
|
+
// oauth required
|
|
50572
|
+
await setOAuthToObject(localVarHeaderParameter, "oauth2", [], configuration)
|
|
50573
|
+
|
|
50574
|
+
|
|
50575
|
+
|
|
50576
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
50577
|
+
|
|
50578
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
50579
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
50580
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
|
|
50581
|
+
localVarRequestOptions.data = serializeDataIfNeeded(roleBulkDeleteRequestBeta, localVarRequestOptions, configuration)
|
|
50582
|
+
|
|
50583
|
+
return {
|
|
50584
|
+
url: toPathString(localVarUrlObj),
|
|
50585
|
+
axiosOptions: localVarRequestOptions,
|
|
50586
|
+
};
|
|
50587
|
+
},
|
|
50515
50588
|
/**
|
|
50516
50589
|
* 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.
|
|
50517
50590
|
* @summary Create a Role
|
|
@@ -50642,7 +50715,7 @@ export const RolesBetaApiAxiosParamCreator = function (configuration?: Configura
|
|
|
50642
50715
|
},
|
|
50643
50716
|
/**
|
|
50644
50717
|
*
|
|
50645
|
-
* @summary
|
|
50718
|
+
* @summary Identities assigned a Role
|
|
50646
50719
|
* @param {string} id ID of the Role for which the assigned Identities are to be listed
|
|
50647
50720
|
* @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.
|
|
50648
50721
|
* @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.
|
|
@@ -50843,6 +50916,17 @@ export const RolesBetaApiAxiosParamCreator = function (configuration?: Configura
|
|
|
50843
50916
|
export const RolesBetaApiFp = function(configuration?: Configuration) {
|
|
50844
50917
|
const localVarAxiosParamCreator = RolesBetaApiAxiosParamCreator(configuration)
|
|
50845
50918
|
return {
|
|
50919
|
+
/**
|
|
50920
|
+
* 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.
|
|
50921
|
+
* @summary Delete Role(s)
|
|
50922
|
+
* @param {RoleBulkDeleteRequestBeta} roleBulkDeleteRequestBeta
|
|
50923
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
50924
|
+
* @throws {RequiredError}
|
|
50925
|
+
*/
|
|
50926
|
+
async bulkDeleteRoles(roleBulkDeleteRequestBeta: RoleBulkDeleteRequestBeta, axiosOptions?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<BaseReferenceDtoBeta>> {
|
|
50927
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.bulkDeleteRoles(roleBulkDeleteRequestBeta, axiosOptions);
|
|
50928
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
50929
|
+
},
|
|
50846
50930
|
/**
|
|
50847
50931
|
* 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.
|
|
50848
50932
|
* @summary Create a Role
|
|
@@ -50878,7 +50962,7 @@ export const RolesBetaApiFp = function(configuration?: Configuration) {
|
|
|
50878
50962
|
},
|
|
50879
50963
|
/**
|
|
50880
50964
|
*
|
|
50881
|
-
* @summary
|
|
50965
|
+
* @summary Identities assigned a Role
|
|
50882
50966
|
* @param {string} id ID of the Role for which the assigned Identities are to be listed
|
|
50883
50967
|
* @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.
|
|
50884
50968
|
* @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.
|
|
@@ -50932,6 +51016,16 @@ export const RolesBetaApiFp = function(configuration?: Configuration) {
|
|
|
50932
51016
|
export const RolesBetaApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {
|
|
50933
51017
|
const localVarFp = RolesBetaApiFp(configuration)
|
|
50934
51018
|
return {
|
|
51019
|
+
/**
|
|
51020
|
+
* 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.
|
|
51021
|
+
* @summary Delete Role(s)
|
|
51022
|
+
* @param {RoleBulkDeleteRequestBeta} roleBulkDeleteRequestBeta
|
|
51023
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
51024
|
+
* @throws {RequiredError}
|
|
51025
|
+
*/
|
|
51026
|
+
bulkDeleteRoles(roleBulkDeleteRequestBeta: RoleBulkDeleteRequestBeta, axiosOptions?: any): AxiosPromise<BaseReferenceDtoBeta> {
|
|
51027
|
+
return localVarFp.bulkDeleteRoles(roleBulkDeleteRequestBeta, axiosOptions).then((request) => request(axios, basePath));
|
|
51028
|
+
},
|
|
50935
51029
|
/**
|
|
50936
51030
|
* 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.
|
|
50937
51031
|
* @summary Create a Role
|
|
@@ -50964,7 +51058,7 @@ export const RolesBetaApiFactory = function (configuration?: Configuration, base
|
|
|
50964
51058
|
},
|
|
50965
51059
|
/**
|
|
50966
51060
|
*
|
|
50967
|
-
* @summary
|
|
51061
|
+
* @summary Identities assigned a Role
|
|
50968
51062
|
* @param {string} id ID of the Role for which the assigned Identities are to be listed
|
|
50969
51063
|
* @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.
|
|
50970
51064
|
* @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.
|
|
@@ -51008,6 +51102,20 @@ export const RolesBetaApiFactory = function (configuration?: Configuration, base
|
|
|
51008
51102
|
};
|
|
51009
51103
|
};
|
|
51010
51104
|
|
|
51105
|
+
/**
|
|
51106
|
+
* Request parameters for bulkDeleteRoles operation in RolesBetaApi.
|
|
51107
|
+
* @export
|
|
51108
|
+
* @interface RolesBetaApiBulkDeleteRolesRequest
|
|
51109
|
+
*/
|
|
51110
|
+
export interface RolesBetaApiBulkDeleteRolesRequest {
|
|
51111
|
+
/**
|
|
51112
|
+
*
|
|
51113
|
+
* @type {RoleBulkDeleteRequestBeta}
|
|
51114
|
+
* @memberof RolesBetaApiBulkDeleteRoles
|
|
51115
|
+
*/
|
|
51116
|
+
readonly roleBulkDeleteRequestBeta: RoleBulkDeleteRequestBeta
|
|
51117
|
+
}
|
|
51118
|
+
|
|
51011
51119
|
/**
|
|
51012
51120
|
* Request parameters for createRole operation in RolesBetaApi.
|
|
51013
51121
|
* @export
|
|
@@ -51190,6 +51298,18 @@ export interface RolesBetaApiPatchRoleRequest {
|
|
|
51190
51298
|
* @extends {BaseAPI}
|
|
51191
51299
|
*/
|
|
51192
51300
|
export class RolesBetaApi extends BaseAPI {
|
|
51301
|
+
/**
|
|
51302
|
+
* 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.
|
|
51303
|
+
* @summary Delete Role(s)
|
|
51304
|
+
* @param {RolesBetaApiBulkDeleteRolesRequest} requestParameters Request parameters.
|
|
51305
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
51306
|
+
* @throws {RequiredError}
|
|
51307
|
+
* @memberof RolesBetaApi
|
|
51308
|
+
*/
|
|
51309
|
+
public bulkDeleteRoles(requestParameters: RolesBetaApiBulkDeleteRolesRequest, axiosOptions?: AxiosRequestConfig) {
|
|
51310
|
+
return RolesBetaApiFp(this.configuration).bulkDeleteRoles(requestParameters.roleBulkDeleteRequestBeta, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
51311
|
+
}
|
|
51312
|
+
|
|
51193
51313
|
/**
|
|
51194
51314
|
* 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.
|
|
51195
51315
|
* @summary Create a Role
|
|
@@ -51228,7 +51348,7 @@ export class RolesBetaApi extends BaseAPI {
|
|
|
51228
51348
|
|
|
51229
51349
|
/**
|
|
51230
51350
|
*
|
|
51231
|
-
* @summary
|
|
51351
|
+
* @summary Identities assigned a Role
|
|
51232
51352
|
* @param {RolesBetaApiGetRoleAssignedIdentitiesRequest} requestParameters Request parameters.
|
|
51233
51353
|
* @param {*} [axiosOptions] Override http request option.
|
|
51234
51354
|
* @throws {RequiredError}
|
|
@@ -52958,7 +53078,7 @@ export class SODViolationsBetaApi extends BaseAPI {
|
|
|
52958
53078
|
export const SPConfigBetaApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
52959
53079
|
return {
|
|
52960
53080
|
/**
|
|
52961
|
-
* This post will export objects from the tenant to a JSON configuration file.
|
|
53081
|
+
* This post will export objects from the tenant to a JSON configuration file.
|
|
52962
53082
|
* @summary Initiates Configuration Objects Export Job.
|
|
52963
53083
|
* @param {ExportPayloadBeta} exportPayloadBeta Export options control what will be included in the export.
|
|
52964
53084
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -53229,7 +53349,7 @@ export const SPConfigBetaApiAxiosParamCreator = function (configuration?: Config
|
|
|
53229
53349
|
};
|
|
53230
53350
|
},
|
|
53231
53351
|
/**
|
|
53232
|
-
* 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.
|
|
53352
|
+
* 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.
|
|
53233
53353
|
* @summary Get Config Object details
|
|
53234
53354
|
* @param {*} [axiosOptions] Override http request option.
|
|
53235
53355
|
* @throws {RequiredError}
|
|
@@ -53277,7 +53397,7 @@ export const SPConfigBetaApiFp = function(configuration?: Configuration) {
|
|
|
53277
53397
|
const localVarAxiosParamCreator = SPConfigBetaApiAxiosParamCreator(configuration)
|
|
53278
53398
|
return {
|
|
53279
53399
|
/**
|
|
53280
|
-
* This post will export objects from the tenant to a JSON configuration file.
|
|
53400
|
+
* This post will export objects from the tenant to a JSON configuration file.
|
|
53281
53401
|
* @summary Initiates Configuration Objects Export Job.
|
|
53282
53402
|
* @param {ExportPayloadBeta} exportPayloadBeta Export options control what will be included in the export.
|
|
53283
53403
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -53345,7 +53465,7 @@ export const SPConfigBetaApiFp = function(configuration?: Configuration) {
|
|
|
53345
53465
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
53346
53466
|
},
|
|
53347
53467
|
/**
|
|
53348
|
-
* 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.
|
|
53468
|
+
* 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.
|
|
53349
53469
|
* @summary Get Config Object details
|
|
53350
53470
|
* @param {*} [axiosOptions] Override http request option.
|
|
53351
53471
|
* @throws {RequiredError}
|
|
@@ -53365,7 +53485,7 @@ export const SPConfigBetaApiFactory = function (configuration?: Configuration, b
|
|
|
53365
53485
|
const localVarFp = SPConfigBetaApiFp(configuration)
|
|
53366
53486
|
return {
|
|
53367
53487
|
/**
|
|
53368
|
-
* This post will export objects from the tenant to a JSON configuration file.
|
|
53488
|
+
* This post will export objects from the tenant to a JSON configuration file.
|
|
53369
53489
|
* @summary Initiates Configuration Objects Export Job.
|
|
53370
53490
|
* @param {ExportPayloadBeta} exportPayloadBeta Export options control what will be included in the export.
|
|
53371
53491
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -53427,7 +53547,7 @@ export const SPConfigBetaApiFactory = function (configuration?: Configuration, b
|
|
|
53427
53547
|
return localVarFp.importSpConfigJobStatus(id, axiosOptions).then((request) => request(axios, basePath));
|
|
53428
53548
|
},
|
|
53429
53549
|
/**
|
|
53430
|
-
* 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.
|
|
53550
|
+
* 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.
|
|
53431
53551
|
* @summary Get Config Object details
|
|
53432
53552
|
* @param {*} [axiosOptions] Override http request option.
|
|
53433
53553
|
* @throws {RequiredError}
|
|
@@ -53544,7 +53664,7 @@ export interface SPConfigBetaApiImportSpConfigJobStatusRequest {
|
|
|
53544
53664
|
*/
|
|
53545
53665
|
export class SPConfigBetaApi extends BaseAPI {
|
|
53546
53666
|
/**
|
|
53547
|
-
* This post will export objects from the tenant to a JSON configuration file.
|
|
53667
|
+
* This post will export objects from the tenant to a JSON configuration file.
|
|
53548
53668
|
* @summary Initiates Configuration Objects Export Job.
|
|
53549
53669
|
* @param {SPConfigBetaApiExportSpConfigRequest} requestParameters Request parameters.
|
|
53550
53670
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -53616,7 +53736,7 @@ export class SPConfigBetaApi extends BaseAPI {
|
|
|
53616
53736
|
}
|
|
53617
53737
|
|
|
53618
53738
|
/**
|
|
53619
|
-
* 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.
|
|
53739
|
+
* 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.
|
|
53620
53740
|
* @summary Get Config Object details
|
|
53621
53741
|
* @param {*} [axiosOptions] Override http request option.
|
|
53622
53742
|
* @throws {RequiredError}
|
|
@@ -54644,7 +54764,7 @@ export const ServiceDeskIntegrationBetaApiAxiosParamCreator = function (configur
|
|
|
54644
54764
|
return {
|
|
54645
54765
|
/**
|
|
54646
54766
|
* Create a new Service Desk Integrations. A token with Org Admin or Service Desk Admin authority is required to access this endpoint.
|
|
54647
|
-
* @summary Create
|
|
54767
|
+
* @summary Create new Service Desk integration
|
|
54648
54768
|
* @param {ServiceDeskIntegrationDtoBeta} serviceDeskIntegrationDtoBeta The specifics of a new integration to create
|
|
54649
54769
|
* @param {*} [axiosOptions] Override http request option.
|
|
54650
54770
|
* @throws {RequiredError}
|
|
@@ -54688,7 +54808,7 @@ export const ServiceDeskIntegrationBetaApiAxiosParamCreator = function (configur
|
|
|
54688
54808
|
},
|
|
54689
54809
|
/**
|
|
54690
54810
|
* Delete an existing Service Desk integration by ID. A token with Org Admin or Service Desk Admin authority is required to access this endpoint.
|
|
54691
|
-
* @summary Delete a Service Desk integration
|
|
54811
|
+
* @summary Delete a Service Desk integration
|
|
54692
54812
|
* @param {string} id ID of Service Desk integration to delete
|
|
54693
54813
|
* @param {*} [axiosOptions] Override http request option.
|
|
54694
54814
|
* @throws {RequiredError}
|
|
@@ -54730,7 +54850,7 @@ export const ServiceDeskIntegrationBetaApiAxiosParamCreator = function (configur
|
|
|
54730
54850
|
},
|
|
54731
54851
|
/**
|
|
54732
54852
|
* Get an existing Service Desk integration by ID. A token with Org Admin or Service Desk Admin authority is required to access this endpoint.
|
|
54733
|
-
* @summary Get a Service Desk integration
|
|
54853
|
+
* @summary Get a Service Desk integration
|
|
54734
54854
|
* @param {string} id ID of the Service Desk integration to get
|
|
54735
54855
|
* @param {*} [axiosOptions] Override http request option.
|
|
54736
54856
|
* @throws {RequiredError}
|
|
@@ -54915,7 +55035,7 @@ export const ServiceDeskIntegrationBetaApiAxiosParamCreator = function (configur
|
|
|
54915
55035
|
},
|
|
54916
55036
|
/**
|
|
54917
55037
|
* 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.
|
|
54918
|
-
* @summary Get the time check configuration
|
|
55038
|
+
* @summary Get the time check configuration
|
|
54919
55039
|
* @param {*} [axiosOptions] Override http request option.
|
|
54920
55040
|
* @throws {RequiredError}
|
|
54921
55041
|
*/
|
|
@@ -54953,7 +55073,7 @@ export const ServiceDeskIntegrationBetaApiAxiosParamCreator = function (configur
|
|
|
54953
55073
|
},
|
|
54954
55074
|
/**
|
|
54955
55075
|
* Update an existing ServiceDeskIntegration by ID with a PATCH request.
|
|
54956
|
-
* @summary Service Desk Integration Update
|
|
55076
|
+
* @summary Service Desk Integration Update PATCH
|
|
54957
55077
|
* @param {string} id ID of the Service Desk integration to update
|
|
54958
55078
|
* @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.
|
|
54959
55079
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -55001,7 +55121,7 @@ export const ServiceDeskIntegrationBetaApiAxiosParamCreator = function (configur
|
|
|
55001
55121
|
},
|
|
55002
55122
|
/**
|
|
55003
55123
|
* 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.
|
|
55004
|
-
* @summary Update a Service Desk integration
|
|
55124
|
+
* @summary Update a Service Desk integration
|
|
55005
55125
|
* @param {string} id ID of the Service Desk integration to update
|
|
55006
55126
|
* @param {ServiceDeskIntegrationDtoBeta} serviceDeskIntegrationDtoBeta The specifics of the integration to update
|
|
55007
55127
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -55049,7 +55169,7 @@ export const ServiceDeskIntegrationBetaApiAxiosParamCreator = function (configur
|
|
|
55049
55169
|
},
|
|
55050
55170
|
/**
|
|
55051
55171
|
* 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.
|
|
55052
|
-
* @summary Update the time check configuration
|
|
55172
|
+
* @summary Update the time check configuration
|
|
55053
55173
|
* @param {QueuedCheckConfigDetailsBeta} queuedCheckConfigDetailsBeta the modified time check configuration
|
|
55054
55174
|
* @param {*} [axiosOptions] Override http request option.
|
|
55055
55175
|
* @throws {RequiredError}
|
|
@@ -55103,7 +55223,7 @@ export const ServiceDeskIntegrationBetaApiFp = function(configuration?: Configur
|
|
|
55103
55223
|
return {
|
|
55104
55224
|
/**
|
|
55105
55225
|
* Create a new Service Desk Integrations. A token with Org Admin or Service Desk Admin authority is required to access this endpoint.
|
|
55106
|
-
* @summary Create
|
|
55226
|
+
* @summary Create new Service Desk integration
|
|
55107
55227
|
* @param {ServiceDeskIntegrationDtoBeta} serviceDeskIntegrationDtoBeta The specifics of a new integration to create
|
|
55108
55228
|
* @param {*} [axiosOptions] Override http request option.
|
|
55109
55229
|
* @throws {RequiredError}
|
|
@@ -55114,7 +55234,7 @@ export const ServiceDeskIntegrationBetaApiFp = function(configuration?: Configur
|
|
|
55114
55234
|
},
|
|
55115
55235
|
/**
|
|
55116
55236
|
* Delete an existing Service Desk integration by ID. A token with Org Admin or Service Desk Admin authority is required to access this endpoint.
|
|
55117
|
-
* @summary Delete a Service Desk integration
|
|
55237
|
+
* @summary Delete a Service Desk integration
|
|
55118
55238
|
* @param {string} id ID of Service Desk integration to delete
|
|
55119
55239
|
* @param {*} [axiosOptions] Override http request option.
|
|
55120
55240
|
* @throws {RequiredError}
|
|
@@ -55125,7 +55245,7 @@ export const ServiceDeskIntegrationBetaApiFp = function(configuration?: Configur
|
|
|
55125
55245
|
},
|
|
55126
55246
|
/**
|
|
55127
55247
|
* Get an existing Service Desk integration by ID. A token with Org Admin or Service Desk Admin authority is required to access this endpoint.
|
|
55128
|
-
* @summary Get a Service Desk integration
|
|
55248
|
+
* @summary Get a Service Desk integration
|
|
55129
55249
|
* @param {string} id ID of the Service Desk integration to get
|
|
55130
55250
|
* @param {*} [axiosOptions] Override http request option.
|
|
55131
55251
|
* @throws {RequiredError}
|
|
@@ -55172,7 +55292,7 @@ export const ServiceDeskIntegrationBetaApiFp = function(configuration?: Configur
|
|
|
55172
55292
|
},
|
|
55173
55293
|
/**
|
|
55174
55294
|
* 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.
|
|
55175
|
-
* @summary Get the time check configuration
|
|
55295
|
+
* @summary Get the time check configuration
|
|
55176
55296
|
* @param {*} [axiosOptions] Override http request option.
|
|
55177
55297
|
* @throws {RequiredError}
|
|
55178
55298
|
*/
|
|
@@ -55182,7 +55302,7 @@ export const ServiceDeskIntegrationBetaApiFp = function(configuration?: Configur
|
|
|
55182
55302
|
},
|
|
55183
55303
|
/**
|
|
55184
55304
|
* Update an existing ServiceDeskIntegration by ID with a PATCH request.
|
|
55185
|
-
* @summary Service Desk Integration Update
|
|
55305
|
+
* @summary Service Desk Integration Update PATCH
|
|
55186
55306
|
* @param {string} id ID of the Service Desk integration to update
|
|
55187
55307
|
* @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.
|
|
55188
55308
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -55194,7 +55314,7 @@ export const ServiceDeskIntegrationBetaApiFp = function(configuration?: Configur
|
|
|
55194
55314
|
},
|
|
55195
55315
|
/**
|
|
55196
55316
|
* 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.
|
|
55197
|
-
* @summary Update a Service Desk integration
|
|
55317
|
+
* @summary Update a Service Desk integration
|
|
55198
55318
|
* @param {string} id ID of the Service Desk integration to update
|
|
55199
55319
|
* @param {ServiceDeskIntegrationDtoBeta} serviceDeskIntegrationDtoBeta The specifics of the integration to update
|
|
55200
55320
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -55206,7 +55326,7 @@ export const ServiceDeskIntegrationBetaApiFp = function(configuration?: Configur
|
|
|
55206
55326
|
},
|
|
55207
55327
|
/**
|
|
55208
55328
|
* 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.
|
|
55209
|
-
* @summary Update the time check configuration
|
|
55329
|
+
* @summary Update the time check configuration
|
|
55210
55330
|
* @param {QueuedCheckConfigDetailsBeta} queuedCheckConfigDetailsBeta the modified time check configuration
|
|
55211
55331
|
* @param {*} [axiosOptions] Override http request option.
|
|
55212
55332
|
* @throws {RequiredError}
|
|
@@ -55227,7 +55347,7 @@ export const ServiceDeskIntegrationBetaApiFactory = function (configuration?: Co
|
|
|
55227
55347
|
return {
|
|
55228
55348
|
/**
|
|
55229
55349
|
* Create a new Service Desk Integrations. A token with Org Admin or Service Desk Admin authority is required to access this endpoint.
|
|
55230
|
-
* @summary Create
|
|
55350
|
+
* @summary Create new Service Desk integration
|
|
55231
55351
|
* @param {ServiceDeskIntegrationDtoBeta} serviceDeskIntegrationDtoBeta The specifics of a new integration to create
|
|
55232
55352
|
* @param {*} [axiosOptions] Override http request option.
|
|
55233
55353
|
* @throws {RequiredError}
|
|
@@ -55237,7 +55357,7 @@ export const ServiceDeskIntegrationBetaApiFactory = function (configuration?: Co
|
|
|
55237
55357
|
},
|
|
55238
55358
|
/**
|
|
55239
55359
|
* Delete an existing Service Desk integration by ID. A token with Org Admin or Service Desk Admin authority is required to access this endpoint.
|
|
55240
|
-
* @summary Delete a Service Desk integration
|
|
55360
|
+
* @summary Delete a Service Desk integration
|
|
55241
55361
|
* @param {string} id ID of Service Desk integration to delete
|
|
55242
55362
|
* @param {*} [axiosOptions] Override http request option.
|
|
55243
55363
|
* @throws {RequiredError}
|
|
@@ -55247,7 +55367,7 @@ export const ServiceDeskIntegrationBetaApiFactory = function (configuration?: Co
|
|
|
55247
55367
|
},
|
|
55248
55368
|
/**
|
|
55249
55369
|
* Get an existing Service Desk integration by ID. A token with Org Admin or Service Desk Admin authority is required to access this endpoint.
|
|
55250
|
-
* @summary Get a Service Desk integration
|
|
55370
|
+
* @summary Get a Service Desk integration
|
|
55251
55371
|
* @param {string} id ID of the Service Desk integration to get
|
|
55252
55372
|
* @param {*} [axiosOptions] Override http request option.
|
|
55253
55373
|
* @throws {RequiredError}
|
|
@@ -55290,7 +55410,7 @@ export const ServiceDeskIntegrationBetaApiFactory = function (configuration?: Co
|
|
|
55290
55410
|
},
|
|
55291
55411
|
/**
|
|
55292
55412
|
* 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.
|
|
55293
|
-
* @summary Get the time check configuration
|
|
55413
|
+
* @summary Get the time check configuration
|
|
55294
55414
|
* @param {*} [axiosOptions] Override http request option.
|
|
55295
55415
|
* @throws {RequiredError}
|
|
55296
55416
|
*/
|
|
@@ -55299,7 +55419,7 @@ export const ServiceDeskIntegrationBetaApiFactory = function (configuration?: Co
|
|
|
55299
55419
|
},
|
|
55300
55420
|
/**
|
|
55301
55421
|
* Update an existing ServiceDeskIntegration by ID with a PATCH request.
|
|
55302
|
-
* @summary Service Desk Integration Update
|
|
55422
|
+
* @summary Service Desk Integration Update PATCH
|
|
55303
55423
|
* @param {string} id ID of the Service Desk integration to update
|
|
55304
55424
|
* @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.
|
|
55305
55425
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -55310,7 +55430,7 @@ export const ServiceDeskIntegrationBetaApiFactory = function (configuration?: Co
|
|
|
55310
55430
|
},
|
|
55311
55431
|
/**
|
|
55312
55432
|
* 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.
|
|
55313
|
-
* @summary Update a Service Desk integration
|
|
55433
|
+
* @summary Update a Service Desk integration
|
|
55314
55434
|
* @param {string} id ID of the Service Desk integration to update
|
|
55315
55435
|
* @param {ServiceDeskIntegrationDtoBeta} serviceDeskIntegrationDtoBeta The specifics of the integration to update
|
|
55316
55436
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -55321,7 +55441,7 @@ export const ServiceDeskIntegrationBetaApiFactory = function (configuration?: Co
|
|
|
55321
55441
|
},
|
|
55322
55442
|
/**
|
|
55323
55443
|
* 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.
|
|
55324
|
-
* @summary Update the time check configuration
|
|
55444
|
+
* @summary Update the time check configuration
|
|
55325
55445
|
* @param {QueuedCheckConfigDetailsBeta} queuedCheckConfigDetailsBeta the modified time check configuration
|
|
55326
55446
|
* @param {*} [axiosOptions] Override http request option.
|
|
55327
55447
|
* @throws {RequiredError}
|
|
@@ -55495,7 +55615,7 @@ export interface ServiceDeskIntegrationBetaApiUpdateStatusCheckDetailsRequest {
|
|
|
55495
55615
|
export class ServiceDeskIntegrationBetaApi extends BaseAPI {
|
|
55496
55616
|
/**
|
|
55497
55617
|
* Create a new Service Desk Integrations. A token with Org Admin or Service Desk Admin authority is required to access this endpoint.
|
|
55498
|
-
* @summary Create
|
|
55618
|
+
* @summary Create new Service Desk integration
|
|
55499
55619
|
* @param {ServiceDeskIntegrationBetaApiCreateServiceDeskIntegrationRequest} requestParameters Request parameters.
|
|
55500
55620
|
* @param {*} [axiosOptions] Override http request option.
|
|
55501
55621
|
* @throws {RequiredError}
|
|
@@ -55507,7 +55627,7 @@ export class ServiceDeskIntegrationBetaApi extends BaseAPI {
|
|
|
55507
55627
|
|
|
55508
55628
|
/**
|
|
55509
55629
|
* Delete an existing Service Desk integration by ID. A token with Org Admin or Service Desk Admin authority is required to access this endpoint.
|
|
55510
|
-
* @summary Delete a Service Desk integration
|
|
55630
|
+
* @summary Delete a Service Desk integration
|
|
55511
55631
|
* @param {ServiceDeskIntegrationBetaApiDeleteServiceDeskIntegrationRequest} requestParameters Request parameters.
|
|
55512
55632
|
* @param {*} [axiosOptions] Override http request option.
|
|
55513
55633
|
* @throws {RequiredError}
|
|
@@ -55519,7 +55639,7 @@ export class ServiceDeskIntegrationBetaApi extends BaseAPI {
|
|
|
55519
55639
|
|
|
55520
55640
|
/**
|
|
55521
55641
|
* Get an existing Service Desk integration by ID. A token with Org Admin or Service Desk Admin authority is required to access this endpoint.
|
|
55522
|
-
* @summary Get a Service Desk integration
|
|
55642
|
+
* @summary Get a Service Desk integration
|
|
55523
55643
|
* @param {ServiceDeskIntegrationBetaApiGetServiceDeskIntegrationRequest} requestParameters Request parameters.
|
|
55524
55644
|
* @param {*} [axiosOptions] Override http request option.
|
|
55525
55645
|
* @throws {RequiredError}
|
|
@@ -55566,7 +55686,7 @@ export class ServiceDeskIntegrationBetaApi extends BaseAPI {
|
|
|
55566
55686
|
|
|
55567
55687
|
/**
|
|
55568
55688
|
* 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.
|
|
55569
|
-
* @summary Get the time check configuration
|
|
55689
|
+
* @summary Get the time check configuration
|
|
55570
55690
|
* @param {*} [axiosOptions] Override http request option.
|
|
55571
55691
|
* @throws {RequiredError}
|
|
55572
55692
|
* @memberof ServiceDeskIntegrationBetaApi
|
|
@@ -55577,7 +55697,7 @@ export class ServiceDeskIntegrationBetaApi extends BaseAPI {
|
|
|
55577
55697
|
|
|
55578
55698
|
/**
|
|
55579
55699
|
* Update an existing ServiceDeskIntegration by ID with a PATCH request.
|
|
55580
|
-
* @summary Service Desk Integration Update
|
|
55700
|
+
* @summary Service Desk Integration Update PATCH
|
|
55581
55701
|
* @param {ServiceDeskIntegrationBetaApiPatchServiceDeskIntegrationRequest} requestParameters Request parameters.
|
|
55582
55702
|
* @param {*} [axiosOptions] Override http request option.
|
|
55583
55703
|
* @throws {RequiredError}
|
|
@@ -55589,7 +55709,7 @@ export class ServiceDeskIntegrationBetaApi extends BaseAPI {
|
|
|
55589
55709
|
|
|
55590
55710
|
/**
|
|
55591
55711
|
* 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.
|
|
55592
|
-
* @summary Update a Service Desk integration
|
|
55712
|
+
* @summary Update a Service Desk integration
|
|
55593
55713
|
* @param {ServiceDeskIntegrationBetaApiUpdateServiceDeskIntegrationRequest} requestParameters Request parameters.
|
|
55594
55714
|
* @param {*} [axiosOptions] Override http request option.
|
|
55595
55715
|
* @throws {RequiredError}
|
|
@@ -55601,7 +55721,7 @@ export class ServiceDeskIntegrationBetaApi extends BaseAPI {
|
|
|
55601
55721
|
|
|
55602
55722
|
/**
|
|
55603
55723
|
* 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.
|
|
55604
|
-
* @summary Update the time check configuration
|
|
55724
|
+
* @summary Update the time check configuration
|
|
55605
55725
|
* @param {ServiceDeskIntegrationBetaApiUpdateStatusCheckDetailsRequest} requestParameters Request parameters.
|
|
55606
55726
|
* @param {*} [axiosOptions] Override http request option.
|
|
55607
55727
|
* @throws {RequiredError}
|
|
@@ -55671,7 +55791,7 @@ export const SourcesBetaApiAxiosParamCreator = function (configuration?: Configu
|
|
|
55671
55791
|
* 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.
|
|
55672
55792
|
* @summary Creates a source in IdentityNow.
|
|
55673
55793
|
* @param {SourceBeta} sourceBeta
|
|
55674
|
-
* @param {boolean} [provisionAsCsv]
|
|
55794
|
+
* @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.
|
|
55675
55795
|
* @param {*} [axiosOptions] Override http request option.
|
|
55676
55796
|
* @throws {RequiredError}
|
|
55677
55797
|
*/
|
|
@@ -56407,7 +56527,7 @@ export const SourcesBetaApiAxiosParamCreator = function (configuration?: Configu
|
|
|
56407
56527
|
},
|
|
56408
56528
|
/**
|
|
56409
56529
|
* Retrieves a sample of data returned from account and group aggregation requests. A token with ORG_ADMIN authority is required to call this API.
|
|
56410
|
-
* @summary Peek resource objects
|
|
56530
|
+
* @summary Peek source connector\'s resource objects
|
|
56411
56531
|
* @param {string} sourceId The ID of the Source
|
|
56412
56532
|
* @param {ResourceObjectsRequestBeta} resourceObjectsRequestBeta
|
|
56413
56533
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -56455,7 +56575,7 @@ export const SourcesBetaApiAxiosParamCreator = function (configuration?: Configu
|
|
|
56455
56575
|
},
|
|
56456
56576
|
/**
|
|
56457
56577
|
* 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.
|
|
56458
|
-
* @summary Ping cluster for
|
|
56578
|
+
* @summary Ping cluster for source connector
|
|
56459
56579
|
* @param {string} sourceId The ID of the Source
|
|
56460
56580
|
* @param {*} [axiosOptions] Override http request option.
|
|
56461
56581
|
* @throws {RequiredError}
|
|
@@ -56739,7 +56859,7 @@ export const SourcesBetaApiAxiosParamCreator = function (configuration?: Configu
|
|
|
56739
56859
|
},
|
|
56740
56860
|
/**
|
|
56741
56861
|
* 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.
|
|
56742
|
-
* @summary Test configuration for
|
|
56862
|
+
* @summary Test configuration for source connector
|
|
56743
56863
|
* @param {string} sourceId The ID of the Source
|
|
56744
56864
|
* @param {*} [axiosOptions] Override http request option.
|
|
56745
56865
|
* @throws {RequiredError}
|
|
@@ -56781,7 +56901,7 @@ export const SourcesBetaApiAxiosParamCreator = function (configuration?: Configu
|
|
|
56781
56901
|
},
|
|
56782
56902
|
/**
|
|
56783
56903
|
* 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.
|
|
56784
|
-
* @summary Check connection for
|
|
56904
|
+
* @summary Check connection for source connector.
|
|
56785
56905
|
* @param {string} sourceId The ID of the Source.
|
|
56786
56906
|
* @param {*} [axiosOptions] Override http request option.
|
|
56787
56907
|
* @throws {RequiredError}
|
|
@@ -57249,7 +57369,7 @@ export const SourcesBetaApiFp = function(configuration?: Configuration) {
|
|
|
57249
57369
|
* 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.
|
|
57250
57370
|
* @summary Creates a source in IdentityNow.
|
|
57251
57371
|
* @param {SourceBeta} sourceBeta
|
|
57252
|
-
* @param {boolean} [provisionAsCsv]
|
|
57372
|
+
* @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.
|
|
57253
57373
|
* @param {*} [axiosOptions] Override http request option.
|
|
57254
57374
|
* @throws {RequiredError}
|
|
57255
57375
|
*/
|
|
@@ -57436,7 +57556,7 @@ export const SourcesBetaApiFp = function(configuration?: Configuration) {
|
|
|
57436
57556
|
},
|
|
57437
57557
|
/**
|
|
57438
57558
|
* Retrieves a sample of data returned from account and group aggregation requests. A token with ORG_ADMIN authority is required to call this API.
|
|
57439
|
-
* @summary Peek resource objects
|
|
57559
|
+
* @summary Peek source connector\'s resource objects
|
|
57440
57560
|
* @param {string} sourceId The ID of the Source
|
|
57441
57561
|
* @param {ResourceObjectsRequestBeta} resourceObjectsRequestBeta
|
|
57442
57562
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -57448,7 +57568,7 @@ export const SourcesBetaApiFp = function(configuration?: Configuration) {
|
|
|
57448
57568
|
},
|
|
57449
57569
|
/**
|
|
57450
57570
|
* 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.
|
|
57451
|
-
* @summary Ping cluster for
|
|
57571
|
+
* @summary Ping cluster for source connector
|
|
57452
57572
|
* @param {string} sourceId The ID of the Source
|
|
57453
57573
|
* @param {*} [axiosOptions] Override http request option.
|
|
57454
57574
|
* @throws {RequiredError}
|
|
@@ -57520,7 +57640,7 @@ export const SourcesBetaApiFp = function(configuration?: Configuration) {
|
|
|
57520
57640
|
},
|
|
57521
57641
|
/**
|
|
57522
57642
|
* 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.
|
|
57523
|
-
* @summary Test configuration for
|
|
57643
|
+
* @summary Test configuration for source connector
|
|
57524
57644
|
* @param {string} sourceId The ID of the Source
|
|
57525
57645
|
* @param {*} [axiosOptions] Override http request option.
|
|
57526
57646
|
* @throws {RequiredError}
|
|
@@ -57531,7 +57651,7 @@ export const SourcesBetaApiFp = function(configuration?: Configuration) {
|
|
|
57531
57651
|
},
|
|
57532
57652
|
/**
|
|
57533
57653
|
* 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.
|
|
57534
|
-
* @summary Check connection for
|
|
57654
|
+
* @summary Check connection for source connector.
|
|
57535
57655
|
* @param {string} sourceId The ID of the Source.
|
|
57536
57656
|
* @param {*} [axiosOptions] Override http request option.
|
|
57537
57657
|
* @throws {RequiredError}
|
|
@@ -57663,7 +57783,7 @@ export const SourcesBetaApiFactory = function (configuration?: Configuration, ba
|
|
|
57663
57783
|
* 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.
|
|
57664
57784
|
* @summary Creates a source in IdentityNow.
|
|
57665
57785
|
* @param {SourceBeta} sourceBeta
|
|
57666
|
-
* @param {boolean} [provisionAsCsv]
|
|
57786
|
+
* @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.
|
|
57667
57787
|
* @param {*} [axiosOptions] Override http request option.
|
|
57668
57788
|
* @throws {RequiredError}
|
|
57669
57789
|
*/
|
|
@@ -57834,7 +57954,7 @@ export const SourcesBetaApiFactory = function (configuration?: Configuration, ba
|
|
|
57834
57954
|
},
|
|
57835
57955
|
/**
|
|
57836
57956
|
* Retrieves a sample of data returned from account and group aggregation requests. A token with ORG_ADMIN authority is required to call this API.
|
|
57837
|
-
* @summary Peek resource objects
|
|
57957
|
+
* @summary Peek source connector\'s resource objects
|
|
57838
57958
|
* @param {string} sourceId The ID of the Source
|
|
57839
57959
|
* @param {ResourceObjectsRequestBeta} resourceObjectsRequestBeta
|
|
57840
57960
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -57845,7 +57965,7 @@ export const SourcesBetaApiFactory = function (configuration?: Configuration, ba
|
|
|
57845
57965
|
},
|
|
57846
57966
|
/**
|
|
57847
57967
|
* 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.
|
|
57848
|
-
* @summary Ping cluster for
|
|
57968
|
+
* @summary Ping cluster for source connector
|
|
57849
57969
|
* @param {string} sourceId The ID of the Source
|
|
57850
57970
|
* @param {*} [axiosOptions] Override http request option.
|
|
57851
57971
|
* @throws {RequiredError}
|
|
@@ -57911,7 +58031,7 @@ export const SourcesBetaApiFactory = function (configuration?: Configuration, ba
|
|
|
57911
58031
|
},
|
|
57912
58032
|
/**
|
|
57913
58033
|
* 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.
|
|
57914
|
-
* @summary Test configuration for
|
|
58034
|
+
* @summary Test configuration for source connector
|
|
57915
58035
|
* @param {string} sourceId The ID of the Source
|
|
57916
58036
|
* @param {*} [axiosOptions] Override http request option.
|
|
57917
58037
|
* @throws {RequiredError}
|
|
@@ -57921,7 +58041,7 @@ export const SourcesBetaApiFactory = function (configuration?: Configuration, ba
|
|
|
57921
58041
|
},
|
|
57922
58042
|
/**
|
|
57923
58043
|
* 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.
|
|
57924
|
-
* @summary Check connection for
|
|
58044
|
+
* @summary Check connection for source connector.
|
|
57925
58045
|
* @param {string} sourceId The ID of the Source.
|
|
57926
58046
|
* @param {*} [axiosOptions] Override http request option.
|
|
57927
58047
|
* @throws {RequiredError}
|
|
@@ -58057,7 +58177,7 @@ export interface SourcesBetaApiCreateSourceRequest {
|
|
|
58057
58177
|
readonly sourceBeta: SourceBeta
|
|
58058
58178
|
|
|
58059
58179
|
/**
|
|
58060
|
-
*
|
|
58180
|
+
* 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.
|
|
58061
58181
|
* @type {boolean}
|
|
58062
58182
|
* @memberof SourcesBetaApiCreateSource
|
|
58063
58183
|
*/
|
|
@@ -58920,7 +59040,7 @@ export class SourcesBetaApi extends BaseAPI {
|
|
|
58920
59040
|
|
|
58921
59041
|
/**
|
|
58922
59042
|
* Retrieves a sample of data returned from account and group aggregation requests. A token with ORG_ADMIN authority is required to call this API.
|
|
58923
|
-
* @summary Peek resource objects
|
|
59043
|
+
* @summary Peek source connector\'s resource objects
|
|
58924
59044
|
* @param {SourcesBetaApiPeekResourceObjectsRequest} requestParameters Request parameters.
|
|
58925
59045
|
* @param {*} [axiosOptions] Override http request option.
|
|
58926
59046
|
* @throws {RequiredError}
|
|
@@ -58932,7 +59052,7 @@ export class SourcesBetaApi extends BaseAPI {
|
|
|
58932
59052
|
|
|
58933
59053
|
/**
|
|
58934
59054
|
* 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.
|
|
58935
|
-
* @summary Ping cluster for
|
|
59055
|
+
* @summary Ping cluster for source connector
|
|
58936
59056
|
* @param {SourcesBetaApiPingClusterRequest} requestParameters Request parameters.
|
|
58937
59057
|
* @param {*} [axiosOptions] Override http request option.
|
|
58938
59058
|
* @throws {RequiredError}
|
|
@@ -59004,7 +59124,7 @@ export class SourcesBetaApi extends BaseAPI {
|
|
|
59004
59124
|
|
|
59005
59125
|
/**
|
|
59006
59126
|
* 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.
|
|
59007
|
-
* @summary Test configuration for
|
|
59127
|
+
* @summary Test configuration for source connector
|
|
59008
59128
|
* @param {SourcesBetaApiTestSourceConfigurationRequest} requestParameters Request parameters.
|
|
59009
59129
|
* @param {*} [axiosOptions] Override http request option.
|
|
59010
59130
|
* @throws {RequiredError}
|
|
@@ -59016,7 +59136,7 @@ export class SourcesBetaApi extends BaseAPI {
|
|
|
59016
59136
|
|
|
59017
59137
|
/**
|
|
59018
59138
|
* 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.
|
|
59019
|
-
* @summary Check connection for
|
|
59139
|
+
* @summary Check connection for source connector.
|
|
59020
59140
|
* @param {SourcesBetaApiTestSourceConnectionRequest} requestParameters Request parameters.
|
|
59021
59141
|
* @param {*} [axiosOptions] Override http request option.
|
|
59022
59142
|
* @throws {RequiredError}
|