sailpoint-api-client 1.0.3 → 1.0.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/beta/README.md +2 -2
- package/beta/api.ts +408 -288
- package/beta/common.ts +2 -2
- package/beta/package.json +1 -1
- package/cc/README.md +2 -2
- package/cc/api.ts +1096 -9
- package/cc/common.ts +2 -2
- package/cc/package.json +1 -1
- package/dist/beta/api.d.ts +361 -278
- package/dist/beta/api.js +284 -184
- package/dist/beta/api.js.map +1 -1
- package/dist/beta/common.js +2 -2
- package/dist/cc/api.d.ts +1055 -11
- package/dist/cc/api.js +95 -0
- package/dist/cc/api.js.map +1 -1
- package/dist/cc/common.js +2 -2
- package/dist/v2/common.js +2 -2
- package/dist/v3/api.d.ts +90 -78
- package/dist/v3/api.js +43 -43
- package/dist/v3/api.js.map +1 -1
- package/dist/v3/common.js +2 -2
- package/package.json +1 -1
- package/v2/README.md +2 -2
- package/v2/common.ts +2 -2
- package/v2/package.json +1 -1
- package/v3/README.md +2 -2
- package/v3/api.ts +90 -78
- package/v3/common.ts +2 -2
- package/v3/package.json +1 -1
package/dist/beta/api.js
CHANGED
|
@@ -791,7 +791,8 @@ exports.ManagedClientStatusEnumBeta = {
|
|
|
791
791
|
exports.ManagedClientTypeBeta = {
|
|
792
792
|
Ccg: 'CCG',
|
|
793
793
|
Va: 'VA',
|
|
794
|
-
Internal: 'INTERNAL'
|
|
794
|
+
Internal: 'INTERNAL',
|
|
795
|
+
Null: 'null'
|
|
795
796
|
};
|
|
796
797
|
/**
|
|
797
798
|
* The Type of Cluster
|
|
@@ -1297,7 +1298,10 @@ exports.SubscriptionPatchRequestInnerBetaOpEnum = {
|
|
|
1297
1298
|
*/
|
|
1298
1299
|
exports.SubscriptionTypeBeta = {
|
|
1299
1300
|
Http: 'HTTP',
|
|
1300
|
-
Eventbridge: 'EVENTBRIDGE'
|
|
1301
|
+
Eventbridge: 'EVENTBRIDGE',
|
|
1302
|
+
Inline: 'INLINE',
|
|
1303
|
+
Script: 'SCRIPT',
|
|
1304
|
+
Workflow: 'WORKFLOW'
|
|
1301
1305
|
};
|
|
1302
1306
|
exports.TemplateBulkDeleteDtoBetaMediumEnum = {
|
|
1303
1307
|
Email: 'EMAIL',
|
|
@@ -9936,7 +9940,7 @@ var EntitlementsBetaApiAxiosParamCreator = function (configuration) {
|
|
|
9936
9940
|
* @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.
|
|
9937
9941
|
* @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.
|
|
9938
9942
|
* @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**
|
|
9939
|
-
* @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*
|
|
9943
|
+
* @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*
|
|
9940
9944
|
* @param {*} [axiosOptions] Override http request option.
|
|
9941
9945
|
* @throws {RequiredError}
|
|
9942
9946
|
*/
|
|
@@ -10285,7 +10289,7 @@ var EntitlementsBetaApiFp = function (configuration) {
|
|
|
10285
10289
|
* @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.
|
|
10286
10290
|
* @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.
|
|
10287
10291
|
* @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**
|
|
10288
|
-
* @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*
|
|
10292
|
+
* @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*
|
|
10289
10293
|
* @param {*} [axiosOptions] Override http request option.
|
|
10290
10294
|
* @throws {RequiredError}
|
|
10291
10295
|
*/
|
|
@@ -10431,7 +10435,7 @@ var EntitlementsBetaApiFactory = function (configuration, basePath, axios) {
|
|
|
10431
10435
|
* @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.
|
|
10432
10436
|
* @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.
|
|
10433
10437
|
* @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**
|
|
10434
|
-
* @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*
|
|
10438
|
+
* @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*
|
|
10435
10439
|
* @param {*} [axiosOptions] Override http request option.
|
|
10436
10440
|
* @throws {RequiredError}
|
|
10437
10441
|
*/
|
|
@@ -15502,21 +15506,21 @@ var IdentitiesBetaApiAxiosParamCreator = function (configuration) {
|
|
|
15502
15506
|
/**
|
|
15503
15507
|
* The API returns successful response if the requested identity was deleted.
|
|
15504
15508
|
* @summary Deletes an identity.
|
|
15505
|
-
* @param {string}
|
|
15509
|
+
* @param {string} id Identity Id
|
|
15506
15510
|
* @param {*} [axiosOptions] Override http request option.
|
|
15507
15511
|
* @throws {RequiredError}
|
|
15508
15512
|
*/
|
|
15509
|
-
deleteIdentity: function (
|
|
15513
|
+
deleteIdentity: function (id, axiosOptions) {
|
|
15510
15514
|
if (axiosOptions === void 0) { axiosOptions = {}; }
|
|
15511
15515
|
return __awaiter(_this, void 0, void 0, function () {
|
|
15512
15516
|
var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
15513
15517
|
return __generator(this, function (_a) {
|
|
15514
15518
|
switch (_a.label) {
|
|
15515
15519
|
case 0:
|
|
15516
|
-
// verify required parameter '
|
|
15517
|
-
(0, common_1.assertParamExists)('deleteIdentity', '
|
|
15520
|
+
// verify required parameter 'id' is not null or undefined
|
|
15521
|
+
(0, common_1.assertParamExists)('deleteIdentity', 'id', id);
|
|
15518
15522
|
localVarPath = "/identities/{id}"
|
|
15519
|
-
.replace("{".concat("
|
|
15523
|
+
.replace("{".concat("id", "}"), encodeURIComponent(String(id)));
|
|
15520
15524
|
localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
15521
15525
|
if (configuration) {
|
|
15522
15526
|
baseOptions = configuration.baseOptions;
|
|
@@ -15555,21 +15559,21 @@ var IdentitiesBetaApiAxiosParamCreator = function (configuration) {
|
|
|
15555
15559
|
/**
|
|
15556
15560
|
* This API returns a single identity using the Identity ID.
|
|
15557
15561
|
* @summary Identity Details
|
|
15558
|
-
* @param {string}
|
|
15562
|
+
* @param {string} id Identity Id
|
|
15559
15563
|
* @param {*} [axiosOptions] Override http request option.
|
|
15560
15564
|
* @throws {RequiredError}
|
|
15561
15565
|
*/
|
|
15562
|
-
getIdentity: function (
|
|
15566
|
+
getIdentity: function (id, axiosOptions) {
|
|
15563
15567
|
if (axiosOptions === void 0) { axiosOptions = {}; }
|
|
15564
15568
|
return __awaiter(_this, void 0, void 0, function () {
|
|
15565
15569
|
var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
15566
15570
|
return __generator(this, function (_a) {
|
|
15567
15571
|
switch (_a.label) {
|
|
15568
15572
|
case 0:
|
|
15569
|
-
// verify required parameter '
|
|
15570
|
-
(0, common_1.assertParamExists)('getIdentity', '
|
|
15573
|
+
// verify required parameter 'id' is not null or undefined
|
|
15574
|
+
(0, common_1.assertParamExists)('getIdentity', 'id', id);
|
|
15571
15575
|
localVarPath = "/identities/{id}"
|
|
15572
|
-
.replace("{".concat("
|
|
15576
|
+
.replace("{".concat("id", "}"), encodeURIComponent(String(id)));
|
|
15573
15577
|
localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
15574
15578
|
if (configuration) {
|
|
15575
15579
|
baseOptions = configuration.baseOptions;
|
|
@@ -15744,16 +15748,16 @@ var IdentitiesBetaApiFp = function (configuration) {
|
|
|
15744
15748
|
/**
|
|
15745
15749
|
* The API returns successful response if the requested identity was deleted.
|
|
15746
15750
|
* @summary Deletes an identity.
|
|
15747
|
-
* @param {string}
|
|
15751
|
+
* @param {string} id Identity Id
|
|
15748
15752
|
* @param {*} [axiosOptions] Override http request option.
|
|
15749
15753
|
* @throws {RequiredError}
|
|
15750
15754
|
*/
|
|
15751
|
-
deleteIdentity: function (
|
|
15755
|
+
deleteIdentity: function (id, axiosOptions) {
|
|
15752
15756
|
return __awaiter(this, void 0, void 0, function () {
|
|
15753
15757
|
var localVarAxiosArgs;
|
|
15754
15758
|
return __generator(this, function (_a) {
|
|
15755
15759
|
switch (_a.label) {
|
|
15756
|
-
case 0: return [4 /*yield*/, localVarAxiosParamCreator.deleteIdentity(
|
|
15760
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.deleteIdentity(id, axiosOptions)];
|
|
15757
15761
|
case 1:
|
|
15758
15762
|
localVarAxiosArgs = _a.sent();
|
|
15759
15763
|
return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
|
|
@@ -15764,16 +15768,16 @@ var IdentitiesBetaApiFp = function (configuration) {
|
|
|
15764
15768
|
/**
|
|
15765
15769
|
* This API returns a single identity using the Identity ID.
|
|
15766
15770
|
* @summary Identity Details
|
|
15767
|
-
* @param {string}
|
|
15771
|
+
* @param {string} id Identity Id
|
|
15768
15772
|
* @param {*} [axiosOptions] Override http request option.
|
|
15769
15773
|
* @throws {RequiredError}
|
|
15770
15774
|
*/
|
|
15771
|
-
getIdentity: function (
|
|
15775
|
+
getIdentity: function (id, axiosOptions) {
|
|
15772
15776
|
return __awaiter(this, void 0, void 0, function () {
|
|
15773
15777
|
var localVarAxiosArgs;
|
|
15774
15778
|
return __generator(this, function (_a) {
|
|
15775
15779
|
switch (_a.label) {
|
|
15776
|
-
case 0: return [4 /*yield*/, localVarAxiosParamCreator.getIdentity(
|
|
15780
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.getIdentity(id, axiosOptions)];
|
|
15777
15781
|
case 1:
|
|
15778
15782
|
localVarAxiosArgs = _a.sent();
|
|
15779
15783
|
return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
|
|
@@ -15839,22 +15843,22 @@ var IdentitiesBetaApiFactory = function (configuration, basePath, axios) {
|
|
|
15839
15843
|
/**
|
|
15840
15844
|
* The API returns successful response if the requested identity was deleted.
|
|
15841
15845
|
* @summary Deletes an identity.
|
|
15842
|
-
* @param {string}
|
|
15846
|
+
* @param {string} id Identity Id
|
|
15843
15847
|
* @param {*} [axiosOptions] Override http request option.
|
|
15844
15848
|
* @throws {RequiredError}
|
|
15845
15849
|
*/
|
|
15846
|
-
deleteIdentity: function (
|
|
15847
|
-
return localVarFp.deleteIdentity(
|
|
15850
|
+
deleteIdentity: function (id, axiosOptions) {
|
|
15851
|
+
return localVarFp.deleteIdentity(id, axiosOptions).then(function (request) { return request(axios, basePath); });
|
|
15848
15852
|
},
|
|
15849
15853
|
/**
|
|
15850
15854
|
* This API returns a single identity using the Identity ID.
|
|
15851
15855
|
* @summary Identity Details
|
|
15852
|
-
* @param {string}
|
|
15856
|
+
* @param {string} id Identity Id
|
|
15853
15857
|
* @param {*} [axiosOptions] Override http request option.
|
|
15854
15858
|
* @throws {RequiredError}
|
|
15855
15859
|
*/
|
|
15856
|
-
getIdentity: function (
|
|
15857
|
-
return localVarFp.getIdentity(
|
|
15860
|
+
getIdentity: function (id, axiosOptions) {
|
|
15861
|
+
return localVarFp.getIdentity(id, axiosOptions).then(function (request) { return request(axios, basePath); });
|
|
15858
15862
|
},
|
|
15859
15863
|
/**
|
|
15860
15864
|
* This API returns a list of identities.
|
|
@@ -15905,7 +15909,7 @@ var IdentitiesBetaApi = /** @class */ (function (_super) {
|
|
|
15905
15909
|
*/
|
|
15906
15910
|
IdentitiesBetaApi.prototype.deleteIdentity = function (requestParameters, axiosOptions) {
|
|
15907
15911
|
var _this = this;
|
|
15908
|
-
return (0, exports.IdentitiesBetaApiFp)(this.configuration).deleteIdentity(requestParameters.
|
|
15912
|
+
return (0, exports.IdentitiesBetaApiFp)(this.configuration).deleteIdentity(requestParameters.id, axiosOptions).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
15909
15913
|
};
|
|
15910
15914
|
/**
|
|
15911
15915
|
* This API returns a single identity using the Identity ID.
|
|
@@ -15917,7 +15921,7 @@ var IdentitiesBetaApi = /** @class */ (function (_super) {
|
|
|
15917
15921
|
*/
|
|
15918
15922
|
IdentitiesBetaApi.prototype.getIdentity = function (requestParameters, axiosOptions) {
|
|
15919
15923
|
var _this = this;
|
|
15920
|
-
return (0, exports.IdentitiesBetaApiFp)(this.configuration).getIdentity(requestParameters.
|
|
15924
|
+
return (0, exports.IdentitiesBetaApiFp)(this.configuration).getIdentity(requestParameters.id, axiosOptions).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
15921
15925
|
};
|
|
15922
15926
|
/**
|
|
15923
15927
|
* This API returns a list of identities.
|
|
@@ -17558,7 +17562,7 @@ var IdentityProfilesBetaApiAxiosParamCreator = function (configuration) {
|
|
|
17558
17562
|
},
|
|
17559
17563
|
/**
|
|
17560
17564
|
* 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.
|
|
17561
|
-
* @summary
|
|
17565
|
+
* @summary Default identity attribute config
|
|
17562
17566
|
* @param {string} identityProfileId The Identity Profile ID
|
|
17563
17567
|
* @param {*} [axiosOptions] Override http request option.
|
|
17564
17568
|
* @throws {RequiredError}
|
|
@@ -17787,7 +17791,7 @@ var IdentityProfilesBetaApiAxiosParamCreator = function (configuration) {
|
|
|
17787
17791
|
},
|
|
17788
17792
|
/**
|
|
17789
17793
|
* 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.
|
|
17790
|
-
* @summary Refreshes all
|
|
17794
|
+
* @summary Refreshes all identities under profile
|
|
17791
17795
|
* @param {string} identityProfileId The Identity Profile ID to be refreshed
|
|
17792
17796
|
* @param {*} [axiosOptions] Override http request option.
|
|
17793
17797
|
* @throws {RequiredError}
|
|
@@ -18012,7 +18016,7 @@ var IdentityProfilesBetaApiFp = function (configuration) {
|
|
|
18012
18016
|
},
|
|
18013
18017
|
/**
|
|
18014
18018
|
* 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.
|
|
18015
|
-
* @summary
|
|
18019
|
+
* @summary Default identity attribute config
|
|
18016
18020
|
* @param {string} identityProfileId The Identity Profile ID
|
|
18017
18021
|
* @param {*} [axiosOptions] Override http request option.
|
|
18018
18022
|
* @throws {RequiredError}
|
|
@@ -18096,7 +18100,7 @@ var IdentityProfilesBetaApiFp = function (configuration) {
|
|
|
18096
18100
|
},
|
|
18097
18101
|
/**
|
|
18098
18102
|
* 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.
|
|
18099
|
-
* @summary Refreshes all
|
|
18103
|
+
* @summary Refreshes all identities under profile
|
|
18100
18104
|
* @param {string} identityProfileId The Identity Profile ID to be refreshed
|
|
18101
18105
|
* @param {*} [axiosOptions] Override http request option.
|
|
18102
18106
|
* @throws {RequiredError}
|
|
@@ -18201,7 +18205,7 @@ var IdentityProfilesBetaApiFactory = function (configuration, basePath, axios) {
|
|
|
18201
18205
|
},
|
|
18202
18206
|
/**
|
|
18203
18207
|
* 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.
|
|
18204
|
-
* @summary
|
|
18208
|
+
* @summary Default identity attribute config
|
|
18205
18209
|
* @param {string} identityProfileId The Identity Profile ID
|
|
18206
18210
|
* @param {*} [axiosOptions] Override http request option.
|
|
18207
18211
|
* @throws {RequiredError}
|
|
@@ -18245,7 +18249,7 @@ var IdentityProfilesBetaApiFactory = function (configuration, basePath, axios) {
|
|
|
18245
18249
|
},
|
|
18246
18250
|
/**
|
|
18247
18251
|
* 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.
|
|
18248
|
-
* @summary Refreshes all
|
|
18252
|
+
* @summary Refreshes all identities under profile
|
|
18249
18253
|
* @param {string} identityProfileId The Identity Profile ID to be refreshed
|
|
18250
18254
|
* @param {*} [axiosOptions] Override http request option.
|
|
18251
18255
|
* @throws {RequiredError}
|
|
@@ -18341,7 +18345,7 @@ var IdentityProfilesBetaApi = /** @class */ (function (_super) {
|
|
|
18341
18345
|
};
|
|
18342
18346
|
/**
|
|
18343
18347
|
* 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.
|
|
18344
|
-
* @summary
|
|
18348
|
+
* @summary Default identity attribute config
|
|
18345
18349
|
* @param {IdentityProfilesBetaApiGetDefaultIdentityAttributeConfigRequest} requestParameters Request parameters.
|
|
18346
18350
|
* @param {*} [axiosOptions] Override http request option.
|
|
18347
18351
|
* @throws {RequiredError}
|
|
@@ -18390,7 +18394,7 @@ var IdentityProfilesBetaApi = /** @class */ (function (_super) {
|
|
|
18390
18394
|
};
|
|
18391
18395
|
/**
|
|
18392
18396
|
* 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.
|
|
18393
|
-
* @summary Refreshes all
|
|
18397
|
+
* @summary Refreshes all identities under profile
|
|
18394
18398
|
* @param {IdentityProfilesBetaApiRefreshIdentityProfileRequest} requestParameters Request parameters.
|
|
18395
18399
|
* @param {*} [axiosOptions] Override http request option.
|
|
18396
18400
|
* @throws {RequiredError}
|
|
@@ -18677,7 +18681,7 @@ var MFAConfigurationBetaApiAxiosParamCreator = function (configuration) {
|
|
|
18677
18681
|
return {
|
|
18678
18682
|
/**
|
|
18679
18683
|
* This API returns the configuration of a given MFA method. A token with ORG_ADMIN authority is required to call this API.
|
|
18680
|
-
* @summary
|
|
18684
|
+
* @summary Configuration of a MFA method
|
|
18681
18685
|
* @param {string} method The name of the MFA method. The currently supported method name is okta-verify.
|
|
18682
18686
|
* @param {*} [axiosOptions] Override http request option.
|
|
18683
18687
|
* @throws {RequiredError}
|
|
@@ -18730,7 +18734,7 @@ var MFAConfigurationBetaApiAxiosParamCreator = function (configuration) {
|
|
|
18730
18734
|
},
|
|
18731
18735
|
/**
|
|
18732
18736
|
* This API sets the configuration of a given MFA method. A token with ORG_ADMIN authority is required to call this API.
|
|
18733
|
-
* @summary Set
|
|
18737
|
+
* @summary Set MFA method configuration
|
|
18734
18738
|
* @param {string} method The name of the MFA method. The currently supported method name is okta-verify.
|
|
18735
18739
|
* @param {MfaConfigBeta} mfaConfigBeta
|
|
18736
18740
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -18788,7 +18792,7 @@ var MFAConfigurationBetaApiAxiosParamCreator = function (configuration) {
|
|
|
18788
18792
|
},
|
|
18789
18793
|
/**
|
|
18790
18794
|
* 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.
|
|
18791
|
-
* @summary
|
|
18795
|
+
* @summary MFA method\'s test configuration
|
|
18792
18796
|
* @param {string} method The name of the MFA method. The currently supported method name is okta-verify.
|
|
18793
18797
|
* @param {*} [axiosOptions] Override http request option.
|
|
18794
18798
|
* @throws {RequiredError}
|
|
@@ -18851,7 +18855,7 @@ var MFAConfigurationBetaApiFp = function (configuration) {
|
|
|
18851
18855
|
return {
|
|
18852
18856
|
/**
|
|
18853
18857
|
* This API returns the configuration of a given MFA method. A token with ORG_ADMIN authority is required to call this API.
|
|
18854
|
-
* @summary
|
|
18858
|
+
* @summary Configuration of a MFA method
|
|
18855
18859
|
* @param {string} method The name of the MFA method. The currently supported method name is okta-verify.
|
|
18856
18860
|
* @param {*} [axiosOptions] Override http request option.
|
|
18857
18861
|
* @throws {RequiredError}
|
|
@@ -18871,7 +18875,7 @@ var MFAConfigurationBetaApiFp = function (configuration) {
|
|
|
18871
18875
|
},
|
|
18872
18876
|
/**
|
|
18873
18877
|
* This API sets the configuration of a given MFA method. A token with ORG_ADMIN authority is required to call this API.
|
|
18874
|
-
* @summary Set
|
|
18878
|
+
* @summary Set MFA method configuration
|
|
18875
18879
|
* @param {string} method The name of the MFA method. The currently supported method name is okta-verify.
|
|
18876
18880
|
* @param {MfaConfigBeta} mfaConfigBeta
|
|
18877
18881
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -18892,7 +18896,7 @@ var MFAConfigurationBetaApiFp = function (configuration) {
|
|
|
18892
18896
|
},
|
|
18893
18897
|
/**
|
|
18894
18898
|
* 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.
|
|
18895
|
-
* @summary
|
|
18899
|
+
* @summary MFA method\'s test configuration
|
|
18896
18900
|
* @param {string} method The name of the MFA method. The currently supported method name is okta-verify.
|
|
18897
18901
|
* @param {*} [axiosOptions] Override http request option.
|
|
18898
18902
|
* @throws {RequiredError}
|
|
@@ -18922,7 +18926,7 @@ var MFAConfigurationBetaApiFactory = function (configuration, basePath, axios) {
|
|
|
18922
18926
|
return {
|
|
18923
18927
|
/**
|
|
18924
18928
|
* This API returns the configuration of a given MFA method. A token with ORG_ADMIN authority is required to call this API.
|
|
18925
|
-
* @summary
|
|
18929
|
+
* @summary Configuration of a MFA method
|
|
18926
18930
|
* @param {string} method The name of the MFA method. The currently supported method name is okta-verify.
|
|
18927
18931
|
* @param {*} [axiosOptions] Override http request option.
|
|
18928
18932
|
* @throws {RequiredError}
|
|
@@ -18932,7 +18936,7 @@ var MFAConfigurationBetaApiFactory = function (configuration, basePath, axios) {
|
|
|
18932
18936
|
},
|
|
18933
18937
|
/**
|
|
18934
18938
|
* This API sets the configuration of a given MFA method. A token with ORG_ADMIN authority is required to call this API.
|
|
18935
|
-
* @summary Set
|
|
18939
|
+
* @summary Set MFA method configuration
|
|
18936
18940
|
* @param {string} method The name of the MFA method. The currently supported method name is okta-verify.
|
|
18937
18941
|
* @param {MfaConfigBeta} mfaConfigBeta
|
|
18938
18942
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -18943,7 +18947,7 @@ var MFAConfigurationBetaApiFactory = function (configuration, basePath, axios) {
|
|
|
18943
18947
|
},
|
|
18944
18948
|
/**
|
|
18945
18949
|
* 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.
|
|
18946
|
-
* @summary
|
|
18950
|
+
* @summary MFA method\'s test configuration
|
|
18947
18951
|
* @param {string} method The name of the MFA method. The currently supported method name is okta-verify.
|
|
18948
18952
|
* @param {*} [axiosOptions] Override http request option.
|
|
18949
18953
|
* @throws {RequiredError}
|
|
@@ -18967,7 +18971,7 @@ var MFAConfigurationBetaApi = /** @class */ (function (_super) {
|
|
|
18967
18971
|
}
|
|
18968
18972
|
/**
|
|
18969
18973
|
* This API returns the configuration of a given MFA method. A token with ORG_ADMIN authority is required to call this API.
|
|
18970
|
-
* @summary
|
|
18974
|
+
* @summary Configuration of a MFA method
|
|
18971
18975
|
* @param {MFAConfigurationBetaApiGetMFAConfigRequest} requestParameters Request parameters.
|
|
18972
18976
|
* @param {*} [axiosOptions] Override http request option.
|
|
18973
18977
|
* @throws {RequiredError}
|
|
@@ -18979,7 +18983,7 @@ var MFAConfigurationBetaApi = /** @class */ (function (_super) {
|
|
|
18979
18983
|
};
|
|
18980
18984
|
/**
|
|
18981
18985
|
* This API sets the configuration of a given MFA method. A token with ORG_ADMIN authority is required to call this API.
|
|
18982
|
-
* @summary Set
|
|
18986
|
+
* @summary Set MFA method configuration
|
|
18983
18987
|
* @param {MFAConfigurationBetaApiSetMFAConfigRequest} requestParameters Request parameters.
|
|
18984
18988
|
* @param {*} [axiosOptions] Override http request option.
|
|
18985
18989
|
* @throws {RequiredError}
|
|
@@ -18991,7 +18995,7 @@ var MFAConfigurationBetaApi = /** @class */ (function (_super) {
|
|
|
18991
18995
|
};
|
|
18992
18996
|
/**
|
|
18993
18997
|
* 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.
|
|
18994
|
-
* @summary
|
|
18998
|
+
* @summary MFA method\'s test configuration
|
|
18995
18999
|
* @param {MFAConfigurationBetaApiTestMFAConfigRequest} requestParameters Request parameters.
|
|
18996
19000
|
* @param {*} [axiosOptions] Override http request option.
|
|
18997
19001
|
* @throws {RequiredError}
|
|
@@ -19013,7 +19017,7 @@ var ManagedClientsBetaApiAxiosParamCreator = function (configuration) {
|
|
|
19013
19017
|
return {
|
|
19014
19018
|
/**
|
|
19015
19019
|
* Retrieve Managed Client Status by ID.
|
|
19016
|
-
* @summary
|
|
19020
|
+
* @summary Specified Managed Client Status.
|
|
19017
19021
|
* @param {string} id ID of the Managed Client Status to get
|
|
19018
19022
|
* @param {ManagedClientTypeBeta} type Type of the Managed Client Status to get
|
|
19019
19023
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -19072,7 +19076,7 @@ var ManagedClientsBetaApiAxiosParamCreator = function (configuration) {
|
|
|
19072
19076
|
},
|
|
19073
19077
|
/**
|
|
19074
19078
|
* Update a status detail passed in from the client
|
|
19075
|
-
* @summary Handle
|
|
19079
|
+
* @summary Handle status request from client
|
|
19076
19080
|
* @param {string} id ID of the Managed Client Status to update
|
|
19077
19081
|
* @param {ManagedClientStatusBeta} managedClientStatusBeta
|
|
19078
19082
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -19140,7 +19144,7 @@ var ManagedClientsBetaApiFp = function (configuration) {
|
|
|
19140
19144
|
return {
|
|
19141
19145
|
/**
|
|
19142
19146
|
* Retrieve Managed Client Status by ID.
|
|
19143
|
-
* @summary
|
|
19147
|
+
* @summary Specified Managed Client Status.
|
|
19144
19148
|
* @param {string} id ID of the Managed Client Status to get
|
|
19145
19149
|
* @param {ManagedClientTypeBeta} type Type of the Managed Client Status to get
|
|
19146
19150
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -19161,7 +19165,7 @@ var ManagedClientsBetaApiFp = function (configuration) {
|
|
|
19161
19165
|
},
|
|
19162
19166
|
/**
|
|
19163
19167
|
* Update a status detail passed in from the client
|
|
19164
|
-
* @summary Handle
|
|
19168
|
+
* @summary Handle status request from client
|
|
19165
19169
|
* @param {string} id ID of the Managed Client Status to update
|
|
19166
19170
|
* @param {ManagedClientStatusBeta} managedClientStatusBeta
|
|
19167
19171
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -19192,7 +19196,7 @@ var ManagedClientsBetaApiFactory = function (configuration, basePath, axios) {
|
|
|
19192
19196
|
return {
|
|
19193
19197
|
/**
|
|
19194
19198
|
* Retrieve Managed Client Status by ID.
|
|
19195
|
-
* @summary
|
|
19199
|
+
* @summary Specified Managed Client Status.
|
|
19196
19200
|
* @param {string} id ID of the Managed Client Status to get
|
|
19197
19201
|
* @param {ManagedClientTypeBeta} type Type of the Managed Client Status to get
|
|
19198
19202
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -19203,7 +19207,7 @@ var ManagedClientsBetaApiFactory = function (configuration, basePath, axios) {
|
|
|
19203
19207
|
},
|
|
19204
19208
|
/**
|
|
19205
19209
|
* Update a status detail passed in from the client
|
|
19206
|
-
* @summary Handle
|
|
19210
|
+
* @summary Handle status request from client
|
|
19207
19211
|
* @param {string} id ID of the Managed Client Status to update
|
|
19208
19212
|
* @param {ManagedClientStatusBeta} managedClientStatusBeta
|
|
19209
19213
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -19228,7 +19232,7 @@ var ManagedClientsBetaApi = /** @class */ (function (_super) {
|
|
|
19228
19232
|
}
|
|
19229
19233
|
/**
|
|
19230
19234
|
* Retrieve Managed Client Status by ID.
|
|
19231
|
-
* @summary
|
|
19235
|
+
* @summary Specified Managed Client Status.
|
|
19232
19236
|
* @param {ManagedClientsBetaApiGetManagedClientStatusRequest} requestParameters Request parameters.
|
|
19233
19237
|
* @param {*} [axiosOptions] Override http request option.
|
|
19234
19238
|
* @throws {RequiredError}
|
|
@@ -19240,7 +19244,7 @@ var ManagedClientsBetaApi = /** @class */ (function (_super) {
|
|
|
19240
19244
|
};
|
|
19241
19245
|
/**
|
|
19242
19246
|
* Update a status detail passed in from the client
|
|
19243
|
-
* @summary Handle
|
|
19247
|
+
* @summary Handle status request from client
|
|
19244
19248
|
* @param {ManagedClientsBetaApiUpdateManagedClientStatusRequest} requestParameters Request parameters.
|
|
19245
19249
|
* @param {*} [axiosOptions] Override http request option.
|
|
19246
19250
|
* @throws {RequiredError}
|
|
@@ -19931,8 +19935,8 @@ var NonEmployeeLifecycleManagementBetaApiAxiosParamCreator = function (configura
|
|
|
19931
19935
|
});
|
|
19932
19936
|
},
|
|
19933
19937
|
/**
|
|
19934
|
-
* 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.
|
|
19935
|
-
* @summary Create
|
|
19938
|
+
* 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.
|
|
19939
|
+
* @summary Create Non-Employee Source Schema Attribute
|
|
19936
19940
|
* @param {string} sourceId The Source id
|
|
19937
19941
|
* @param {NonEmployeeSchemaAttributeBodyBeta} nonEmployeeSchemaAttributeBodyBeta
|
|
19938
19942
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -19989,7 +19993,7 @@ var NonEmployeeLifecycleManagementBetaApiAxiosParamCreator = function (configura
|
|
|
19989
19993
|
});
|
|
19990
19994
|
},
|
|
19991
19995
|
/**
|
|
19992
|
-
* This request will delete a non-employee record.
|
|
19996
|
+
* This request will delete a non-employee record.
|
|
19993
19997
|
* @summary Delete Non-Employee Record
|
|
19994
19998
|
* @param {string} id Non-Employee record id (UUID)
|
|
19995
19999
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -20096,7 +20100,7 @@ var NonEmployeeLifecycleManagementBetaApiAxiosParamCreator = function (configura
|
|
|
20096
20100
|
});
|
|
20097
20101
|
},
|
|
20098
20102
|
/**
|
|
20099
|
-
* This request will delete a non-employee request.
|
|
20103
|
+
* This request will delete a non-employee request.
|
|
20100
20104
|
* @summary Delete Non-Employee Request
|
|
20101
20105
|
* @param {string} id Non-Employee request id in the UUID format
|
|
20102
20106
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -20149,8 +20153,8 @@ var NonEmployeeLifecycleManagementBetaApiAxiosParamCreator = function (configura
|
|
|
20149
20153
|
});
|
|
20150
20154
|
},
|
|
20151
20155
|
/**
|
|
20152
|
-
* This end-point deletes a specific schema attribute for a non-employee source.
|
|
20153
|
-
* @summary Delete
|
|
20156
|
+
* This end-point deletes a specific schema attribute for a non-employee source.
|
|
20157
|
+
* @summary Delete Non-Employee Source\'s Schema Attribute
|
|
20154
20158
|
* @param {string} attributeId The Schema Attribute Id (UUID)
|
|
20155
20159
|
* @param {string} sourceId The Source id
|
|
20156
20160
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -20206,7 +20210,7 @@ var NonEmployeeLifecycleManagementBetaApiAxiosParamCreator = function (configura
|
|
|
20206
20210
|
});
|
|
20207
20211
|
},
|
|
20208
20212
|
/**
|
|
20209
|
-
* This request will delete a non-employee source.
|
|
20213
|
+
* This request will delete a non-employee source.
|
|
20210
20214
|
* @summary Delete Non-Employee Source
|
|
20211
20215
|
* @param {string} sourceId Source Id
|
|
20212
20216
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -20259,8 +20263,8 @@ var NonEmployeeLifecycleManagementBetaApiAxiosParamCreator = function (configura
|
|
|
20259
20263
|
});
|
|
20260
20264
|
},
|
|
20261
20265
|
/**
|
|
20262
|
-
* This end-point deletes all custom schema attributes for a non-employee source.
|
|
20263
|
-
* @summary Delete all custom schema attributes
|
|
20266
|
+
* This end-point deletes all custom schema attributes for a non-employee source.
|
|
20267
|
+
* @summary Delete all custom schema attributes
|
|
20264
20268
|
* @param {string} sourceId The Source id
|
|
20265
20269
|
* @param {*} [axiosOptions] Override http request option.
|
|
20266
20270
|
* @throws {RequiredError}
|
|
@@ -20312,7 +20316,7 @@ var NonEmployeeLifecycleManagementBetaApiAxiosParamCreator = function (configura
|
|
|
20312
20316
|
});
|
|
20313
20317
|
},
|
|
20314
20318
|
/**
|
|
20315
|
-
* This requests a CSV download for all non-employees from a provided source.
|
|
20319
|
+
* This requests a CSV download for all non-employees from a provided source.
|
|
20316
20320
|
* @summary Exports Non-Employee Records to CSV
|
|
20317
20321
|
* @param {string} id Source Id (UUID)
|
|
20318
20322
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -20528,8 +20532,8 @@ var NonEmployeeLifecycleManagementBetaApiAxiosParamCreator = function (configura
|
|
|
20528
20532
|
});
|
|
20529
20533
|
},
|
|
20530
20534
|
/**
|
|
20531
|
-
* The nonEmployeeBulkUploadStatus API returns the status of the newest bulk upload job for the specified source.
|
|
20532
|
-
* @summary
|
|
20535
|
+
* The nonEmployeeBulkUploadStatus API returns the status of the newest bulk upload job for the specified source.
|
|
20536
|
+
* @summary Bulk upload status on source
|
|
20533
20537
|
* @param {string} id Source ID (UUID)
|
|
20534
20538
|
* @param {*} [axiosOptions] Override http request option.
|
|
20535
20539
|
* @throws {RequiredError}
|
|
@@ -20581,7 +20585,7 @@ var NonEmployeeLifecycleManagementBetaApiAxiosParamCreator = function (configura
|
|
|
20581
20585
|
});
|
|
20582
20586
|
},
|
|
20583
20587
|
/**
|
|
20584
|
-
* This gets a non-employee record.
|
|
20588
|
+
* This gets a non-employee record.
|
|
20585
20589
|
* @summary Get a Non-Employee Record
|
|
20586
20590
|
* @param {string} id Non-Employee record id (UUID)
|
|
20587
20591
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -21255,8 +21259,8 @@ var NonEmployeeLifecycleManagementBetaApiAxiosParamCreator = function (configura
|
|
|
21255
21259
|
});
|
|
21256
21260
|
},
|
|
21257
21261
|
/**
|
|
21258
|
-
* This end-point patches a specific schema attribute for a non-employee SourceId.
|
|
21259
|
-
* @summary Patch
|
|
21262
|
+
* This end-point patches a specific schema attribute for a non-employee SourceId.
|
|
21263
|
+
* @summary Patch Non-Employee Source\'s Schema Attribute
|
|
21260
21264
|
* @param {string} attributeId The Schema Attribute Id (UUID)
|
|
21261
21265
|
* @param {string} sourceId The Source id
|
|
21262
21266
|
* @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\'.
|
|
@@ -21317,7 +21321,7 @@ var NonEmployeeLifecycleManagementBetaApiAxiosParamCreator = function (configura
|
|
|
21317
21321
|
});
|
|
21318
21322
|
},
|
|
21319
21323
|
/**
|
|
21320
|
-
* patch a non-employee source. (Partial Update) Patchable field: **name, description, approvers, accountManagers**
|
|
21324
|
+
* patch a non-employee source. (Partial Update) Patchable field: **name, description, approvers, accountManagers**
|
|
21321
21325
|
* @summary Patch a Non-Employee Source
|
|
21322
21326
|
* @param {string} sourceId Source Id
|
|
21323
21327
|
* @param {Array<JsonPatchOperationBeta>} jsonPatchOperationBeta A list of non-employee source update operations according to the [JSON Patch](https://tools.ietf.org/html/rfc6902) standard.
|
|
@@ -21644,8 +21648,8 @@ var NonEmployeeLifecycleManagementBetaApiFp = function (configuration) {
|
|
|
21644
21648
|
});
|
|
21645
21649
|
},
|
|
21646
21650
|
/**
|
|
21647
|
-
* 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.
|
|
21648
|
-
* @summary Create
|
|
21651
|
+
* 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.
|
|
21652
|
+
* @summary Create Non-Employee Source Schema Attribute
|
|
21649
21653
|
* @param {string} sourceId The Source id
|
|
21650
21654
|
* @param {NonEmployeeSchemaAttributeBodyBeta} nonEmployeeSchemaAttributeBodyBeta
|
|
21651
21655
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -21665,7 +21669,7 @@ var NonEmployeeLifecycleManagementBetaApiFp = function (configuration) {
|
|
|
21665
21669
|
});
|
|
21666
21670
|
},
|
|
21667
21671
|
/**
|
|
21668
|
-
* This request will delete a non-employee record.
|
|
21672
|
+
* This request will delete a non-employee record.
|
|
21669
21673
|
* @summary Delete Non-Employee Record
|
|
21670
21674
|
* @param {string} id Non-Employee record id (UUID)
|
|
21671
21675
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -21705,7 +21709,7 @@ var NonEmployeeLifecycleManagementBetaApiFp = function (configuration) {
|
|
|
21705
21709
|
});
|
|
21706
21710
|
},
|
|
21707
21711
|
/**
|
|
21708
|
-
* This request will delete a non-employee request.
|
|
21712
|
+
* This request will delete a non-employee request.
|
|
21709
21713
|
* @summary Delete Non-Employee Request
|
|
21710
21714
|
* @param {string} id Non-Employee request id in the UUID format
|
|
21711
21715
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -21725,8 +21729,8 @@ var NonEmployeeLifecycleManagementBetaApiFp = function (configuration) {
|
|
|
21725
21729
|
});
|
|
21726
21730
|
},
|
|
21727
21731
|
/**
|
|
21728
|
-
* This end-point deletes a specific schema attribute for a non-employee source.
|
|
21729
|
-
* @summary Delete
|
|
21732
|
+
* This end-point deletes a specific schema attribute for a non-employee source.
|
|
21733
|
+
* @summary Delete Non-Employee Source\'s Schema Attribute
|
|
21730
21734
|
* @param {string} attributeId The Schema Attribute Id (UUID)
|
|
21731
21735
|
* @param {string} sourceId The Source id
|
|
21732
21736
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -21746,7 +21750,7 @@ var NonEmployeeLifecycleManagementBetaApiFp = function (configuration) {
|
|
|
21746
21750
|
});
|
|
21747
21751
|
},
|
|
21748
21752
|
/**
|
|
21749
|
-
* This request will delete a non-employee source.
|
|
21753
|
+
* This request will delete a non-employee source.
|
|
21750
21754
|
* @summary Delete Non-Employee Source
|
|
21751
21755
|
* @param {string} sourceId Source Id
|
|
21752
21756
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -21766,8 +21770,8 @@ var NonEmployeeLifecycleManagementBetaApiFp = function (configuration) {
|
|
|
21766
21770
|
});
|
|
21767
21771
|
},
|
|
21768
21772
|
/**
|
|
21769
|
-
* This end-point deletes all custom schema attributes for a non-employee source.
|
|
21770
|
-
* @summary Delete all custom schema attributes
|
|
21773
|
+
* This end-point deletes all custom schema attributes for a non-employee source.
|
|
21774
|
+
* @summary Delete all custom schema attributes
|
|
21771
21775
|
* @param {string} sourceId The Source id
|
|
21772
21776
|
* @param {*} [axiosOptions] Override http request option.
|
|
21773
21777
|
* @throws {RequiredError}
|
|
@@ -21786,7 +21790,7 @@ var NonEmployeeLifecycleManagementBetaApiFp = function (configuration) {
|
|
|
21786
21790
|
});
|
|
21787
21791
|
},
|
|
21788
21792
|
/**
|
|
21789
|
-
* This requests a CSV download for all non-employees from a provided source.
|
|
21793
|
+
* This requests a CSV download for all non-employees from a provided source.
|
|
21790
21794
|
* @summary Exports Non-Employee Records to CSV
|
|
21791
21795
|
* @param {string} id Source Id (UUID)
|
|
21792
21796
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -21867,8 +21871,8 @@ var NonEmployeeLifecycleManagementBetaApiFp = function (configuration) {
|
|
|
21867
21871
|
});
|
|
21868
21872
|
},
|
|
21869
21873
|
/**
|
|
21870
|
-
* The nonEmployeeBulkUploadStatus API returns the status of the newest bulk upload job for the specified source.
|
|
21871
|
-
* @summary
|
|
21874
|
+
* The nonEmployeeBulkUploadStatus API returns the status of the newest bulk upload job for the specified source.
|
|
21875
|
+
* @summary Bulk upload status on source
|
|
21872
21876
|
* @param {string} id Source ID (UUID)
|
|
21873
21877
|
* @param {*} [axiosOptions] Override http request option.
|
|
21874
21878
|
* @throws {RequiredError}
|
|
@@ -21887,7 +21891,7 @@ var NonEmployeeLifecycleManagementBetaApiFp = function (configuration) {
|
|
|
21887
21891
|
});
|
|
21888
21892
|
},
|
|
21889
21893
|
/**
|
|
21890
|
-
* This gets a non-employee record.
|
|
21894
|
+
* This gets a non-employee record.
|
|
21891
21895
|
* @summary Get a Non-Employee Record
|
|
21892
21896
|
* @param {string} id Non-Employee record id (UUID)
|
|
21893
21897
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -22128,8 +22132,8 @@ var NonEmployeeLifecycleManagementBetaApiFp = function (configuration) {
|
|
|
22128
22132
|
});
|
|
22129
22133
|
},
|
|
22130
22134
|
/**
|
|
22131
|
-
* This end-point patches a specific schema attribute for a non-employee SourceId.
|
|
22132
|
-
* @summary Patch
|
|
22135
|
+
* This end-point patches a specific schema attribute for a non-employee SourceId.
|
|
22136
|
+
* @summary Patch Non-Employee Source\'s Schema Attribute
|
|
22133
22137
|
* @param {string} attributeId The Schema Attribute Id (UUID)
|
|
22134
22138
|
* @param {string} sourceId The Source id
|
|
22135
22139
|
* @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\'.
|
|
@@ -22150,7 +22154,7 @@ var NonEmployeeLifecycleManagementBetaApiFp = function (configuration) {
|
|
|
22150
22154
|
});
|
|
22151
22155
|
},
|
|
22152
22156
|
/**
|
|
22153
|
-
* patch a non-employee source. (Partial Update) Patchable field: **name, description, approvers, accountManagers**
|
|
22157
|
+
* patch a non-employee source. (Partial Update) Patchable field: **name, description, approvers, accountManagers**
|
|
22154
22158
|
* @summary Patch a Non-Employee Source
|
|
22155
22159
|
* @param {string} sourceId Source Id
|
|
22156
22160
|
* @param {Array<JsonPatchOperationBeta>} jsonPatchOperationBeta A list of non-employee source update operations according to the [JSON Patch](https://tools.ietf.org/html/rfc6902) standard.
|
|
@@ -22285,8 +22289,8 @@ var NonEmployeeLifecycleManagementBetaApiFactory = function (configuration, base
|
|
|
22285
22289
|
return localVarFp.createNonEmployeeSource(nonEmployeeSourceRequestBodyBeta, axiosOptions).then(function (request) { return request(axios, basePath); });
|
|
22286
22290
|
},
|
|
22287
22291
|
/**
|
|
22288
|
-
* 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.
|
|
22289
|
-
* @summary Create
|
|
22292
|
+
* 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.
|
|
22293
|
+
* @summary Create Non-Employee Source Schema Attribute
|
|
22290
22294
|
* @param {string} sourceId The Source id
|
|
22291
22295
|
* @param {NonEmployeeSchemaAttributeBodyBeta} nonEmployeeSchemaAttributeBodyBeta
|
|
22292
22296
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -22296,7 +22300,7 @@ var NonEmployeeLifecycleManagementBetaApiFactory = function (configuration, base
|
|
|
22296
22300
|
return localVarFp.createNonEmployeeSourceSchemaAttributes(sourceId, nonEmployeeSchemaAttributeBodyBeta, axiosOptions).then(function (request) { return request(axios, basePath); });
|
|
22297
22301
|
},
|
|
22298
22302
|
/**
|
|
22299
|
-
* This request will delete a non-employee record.
|
|
22303
|
+
* This request will delete a non-employee record.
|
|
22300
22304
|
* @summary Delete Non-Employee Record
|
|
22301
22305
|
* @param {string} id Non-Employee record id (UUID)
|
|
22302
22306
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -22316,7 +22320,7 @@ var NonEmployeeLifecycleManagementBetaApiFactory = function (configuration, base
|
|
|
22316
22320
|
return localVarFp.deleteNonEmployeeRecordInBulk(deleteNonEmployeeRecordInBulkRequestBeta, axiosOptions).then(function (request) { return request(axios, basePath); });
|
|
22317
22321
|
},
|
|
22318
22322
|
/**
|
|
22319
|
-
* This request will delete a non-employee request.
|
|
22323
|
+
* This request will delete a non-employee request.
|
|
22320
22324
|
* @summary Delete Non-Employee Request
|
|
22321
22325
|
* @param {string} id Non-Employee request id in the UUID format
|
|
22322
22326
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -22326,8 +22330,8 @@ var NonEmployeeLifecycleManagementBetaApiFactory = function (configuration, base
|
|
|
22326
22330
|
return localVarFp.deleteNonEmployeeRequest(id, axiosOptions).then(function (request) { return request(axios, basePath); });
|
|
22327
22331
|
},
|
|
22328
22332
|
/**
|
|
22329
|
-
* This end-point deletes a specific schema attribute for a non-employee source.
|
|
22330
|
-
* @summary Delete
|
|
22333
|
+
* This end-point deletes a specific schema attribute for a non-employee source.
|
|
22334
|
+
* @summary Delete Non-Employee Source\'s Schema Attribute
|
|
22331
22335
|
* @param {string} attributeId The Schema Attribute Id (UUID)
|
|
22332
22336
|
* @param {string} sourceId The Source id
|
|
22333
22337
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -22337,7 +22341,7 @@ var NonEmployeeLifecycleManagementBetaApiFactory = function (configuration, base
|
|
|
22337
22341
|
return localVarFp.deleteNonEmployeeSchemaAttribute(attributeId, sourceId, axiosOptions).then(function (request) { return request(axios, basePath); });
|
|
22338
22342
|
},
|
|
22339
22343
|
/**
|
|
22340
|
-
* This request will delete a non-employee source.
|
|
22344
|
+
* This request will delete a non-employee source.
|
|
22341
22345
|
* @summary Delete Non-Employee Source
|
|
22342
22346
|
* @param {string} sourceId Source Id
|
|
22343
22347
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -22347,8 +22351,8 @@ var NonEmployeeLifecycleManagementBetaApiFactory = function (configuration, base
|
|
|
22347
22351
|
return localVarFp.deleteNonEmployeeSource(sourceId, axiosOptions).then(function (request) { return request(axios, basePath); });
|
|
22348
22352
|
},
|
|
22349
22353
|
/**
|
|
22350
|
-
* This end-point deletes all custom schema attributes for a non-employee source.
|
|
22351
|
-
* @summary Delete all custom schema attributes
|
|
22354
|
+
* This end-point deletes all custom schema attributes for a non-employee source.
|
|
22355
|
+
* @summary Delete all custom schema attributes
|
|
22352
22356
|
* @param {string} sourceId The Source id
|
|
22353
22357
|
* @param {*} [axiosOptions] Override http request option.
|
|
22354
22358
|
* @throws {RequiredError}
|
|
@@ -22357,7 +22361,7 @@ var NonEmployeeLifecycleManagementBetaApiFactory = function (configuration, base
|
|
|
22357
22361
|
return localVarFp.deleteNonEmployeeSourceSchemaAttributes(sourceId, axiosOptions).then(function (request) { return request(axios, basePath); });
|
|
22358
22362
|
},
|
|
22359
22363
|
/**
|
|
22360
|
-
* This requests a CSV download for all non-employees from a provided source.
|
|
22364
|
+
* This requests a CSV download for all non-employees from a provided source.
|
|
22361
22365
|
* @summary Exports Non-Employee Records to CSV
|
|
22362
22366
|
* @param {string} id Source Id (UUID)
|
|
22363
22367
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -22398,8 +22402,8 @@ var NonEmployeeLifecycleManagementBetaApiFactory = function (configuration, base
|
|
|
22398
22402
|
return localVarFp.getNonEmployeeApprovalSummary(requestedFor, axiosOptions).then(function (request) { return request(axios, basePath); });
|
|
22399
22403
|
},
|
|
22400
22404
|
/**
|
|
22401
|
-
* The nonEmployeeBulkUploadStatus API returns the status of the newest bulk upload job for the specified source.
|
|
22402
|
-
* @summary
|
|
22405
|
+
* The nonEmployeeBulkUploadStatus API returns the status of the newest bulk upload job for the specified source.
|
|
22406
|
+
* @summary Bulk upload status on source
|
|
22403
22407
|
* @param {string} id Source ID (UUID)
|
|
22404
22408
|
* @param {*} [axiosOptions] Override http request option.
|
|
22405
22409
|
* @throws {RequiredError}
|
|
@@ -22408,7 +22412,7 @@ var NonEmployeeLifecycleManagementBetaApiFactory = function (configuration, base
|
|
|
22408
22412
|
return localVarFp.getNonEmployeeBulkUploadStatus(id, axiosOptions).then(function (request) { return request(axios, basePath); });
|
|
22409
22413
|
},
|
|
22410
22414
|
/**
|
|
22411
|
-
* This gets a non-employee record.
|
|
22415
|
+
* This gets a non-employee record.
|
|
22412
22416
|
* @summary Get a Non-Employee Record
|
|
22413
22417
|
* @param {string} id Non-Employee record id (UUID)
|
|
22414
22418
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -22539,8 +22543,8 @@ var NonEmployeeLifecycleManagementBetaApiFactory = function (configuration, base
|
|
|
22539
22543
|
return localVarFp.patchNonEmployeeRecord(id, jsonPatchOperationBeta, axiosOptions).then(function (request) { return request(axios, basePath); });
|
|
22540
22544
|
},
|
|
22541
22545
|
/**
|
|
22542
|
-
* This end-point patches a specific schema attribute for a non-employee SourceId.
|
|
22543
|
-
* @summary Patch
|
|
22546
|
+
* This end-point patches a specific schema attribute for a non-employee SourceId.
|
|
22547
|
+
* @summary Patch Non-Employee Source\'s Schema Attribute
|
|
22544
22548
|
* @param {string} attributeId The Schema Attribute Id (UUID)
|
|
22545
22549
|
* @param {string} sourceId The Source id
|
|
22546
22550
|
* @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\'.
|
|
@@ -22551,7 +22555,7 @@ var NonEmployeeLifecycleManagementBetaApiFactory = function (configuration, base
|
|
|
22551
22555
|
return localVarFp.patchNonEmployeeSchemaAttribute(attributeId, sourceId, jsonPatchOperationBeta, axiosOptions).then(function (request) { return request(axios, basePath); });
|
|
22552
22556
|
},
|
|
22553
22557
|
/**
|
|
22554
|
-
* patch a non-employee source. (Partial Update) Patchable field: **name, description, approvers, accountManagers**
|
|
22558
|
+
* patch a non-employee source. (Partial Update) Patchable field: **name, description, approvers, accountManagers**
|
|
22555
22559
|
* @summary Patch a Non-Employee Source
|
|
22556
22560
|
* @param {string} sourceId Source Id
|
|
22557
22561
|
* @param {Array<JsonPatchOperationBeta>} jsonPatchOperationBeta A list of non-employee source update operations according to the [JSON Patch](https://tools.ietf.org/html/rfc6902) standard.
|
|
@@ -22657,8 +22661,8 @@ var NonEmployeeLifecycleManagementBetaApi = /** @class */ (function (_super) {
|
|
|
22657
22661
|
return (0, exports.NonEmployeeLifecycleManagementBetaApiFp)(this.configuration).createNonEmployeeSource(requestParameters.nonEmployeeSourceRequestBodyBeta, axiosOptions).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
22658
22662
|
};
|
|
22659
22663
|
/**
|
|
22660
|
-
* 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.
|
|
22661
|
-
* @summary Create
|
|
22664
|
+
* 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.
|
|
22665
|
+
* @summary Create Non-Employee Source Schema Attribute
|
|
22662
22666
|
* @param {NonEmployeeLifecycleManagementBetaApiCreateNonEmployeeSourceSchemaAttributesRequest} requestParameters Request parameters.
|
|
22663
22667
|
* @param {*} [axiosOptions] Override http request option.
|
|
22664
22668
|
* @throws {RequiredError}
|
|
@@ -22669,7 +22673,7 @@ var NonEmployeeLifecycleManagementBetaApi = /** @class */ (function (_super) {
|
|
|
22669
22673
|
return (0, exports.NonEmployeeLifecycleManagementBetaApiFp)(this.configuration).createNonEmployeeSourceSchemaAttributes(requestParameters.sourceId, requestParameters.nonEmployeeSchemaAttributeBodyBeta, axiosOptions).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
22670
22674
|
};
|
|
22671
22675
|
/**
|
|
22672
|
-
* This request will delete a non-employee record.
|
|
22676
|
+
* This request will delete a non-employee record.
|
|
22673
22677
|
* @summary Delete Non-Employee Record
|
|
22674
22678
|
* @param {NonEmployeeLifecycleManagementBetaApiDeleteNonEmployeeRecordRequest} requestParameters Request parameters.
|
|
22675
22679
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -22693,7 +22697,7 @@ var NonEmployeeLifecycleManagementBetaApi = /** @class */ (function (_super) {
|
|
|
22693
22697
|
return (0, exports.NonEmployeeLifecycleManagementBetaApiFp)(this.configuration).deleteNonEmployeeRecordInBulk(requestParameters.deleteNonEmployeeRecordInBulkRequestBeta, axiosOptions).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
22694
22698
|
};
|
|
22695
22699
|
/**
|
|
22696
|
-
* This request will delete a non-employee request.
|
|
22700
|
+
* This request will delete a non-employee request.
|
|
22697
22701
|
* @summary Delete Non-Employee Request
|
|
22698
22702
|
* @param {NonEmployeeLifecycleManagementBetaApiDeleteNonEmployeeRequestRequest} requestParameters Request parameters.
|
|
22699
22703
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -22705,8 +22709,8 @@ var NonEmployeeLifecycleManagementBetaApi = /** @class */ (function (_super) {
|
|
|
22705
22709
|
return (0, exports.NonEmployeeLifecycleManagementBetaApiFp)(this.configuration).deleteNonEmployeeRequest(requestParameters.id, axiosOptions).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
22706
22710
|
};
|
|
22707
22711
|
/**
|
|
22708
|
-
* This end-point deletes a specific schema attribute for a non-employee source.
|
|
22709
|
-
* @summary Delete
|
|
22712
|
+
* This end-point deletes a specific schema attribute for a non-employee source.
|
|
22713
|
+
* @summary Delete Non-Employee Source\'s Schema Attribute
|
|
22710
22714
|
* @param {NonEmployeeLifecycleManagementBetaApiDeleteNonEmployeeSchemaAttributeRequest} requestParameters Request parameters.
|
|
22711
22715
|
* @param {*} [axiosOptions] Override http request option.
|
|
22712
22716
|
* @throws {RequiredError}
|
|
@@ -22717,7 +22721,7 @@ var NonEmployeeLifecycleManagementBetaApi = /** @class */ (function (_super) {
|
|
|
22717
22721
|
return (0, exports.NonEmployeeLifecycleManagementBetaApiFp)(this.configuration).deleteNonEmployeeSchemaAttribute(requestParameters.attributeId, requestParameters.sourceId, axiosOptions).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
22718
22722
|
};
|
|
22719
22723
|
/**
|
|
22720
|
-
* This request will delete a non-employee source.
|
|
22724
|
+
* This request will delete a non-employee source.
|
|
22721
22725
|
* @summary Delete Non-Employee Source
|
|
22722
22726
|
* @param {NonEmployeeLifecycleManagementBetaApiDeleteNonEmployeeSourceRequest} requestParameters Request parameters.
|
|
22723
22727
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -22729,8 +22733,8 @@ var NonEmployeeLifecycleManagementBetaApi = /** @class */ (function (_super) {
|
|
|
22729
22733
|
return (0, exports.NonEmployeeLifecycleManagementBetaApiFp)(this.configuration).deleteNonEmployeeSource(requestParameters.sourceId, axiosOptions).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
22730
22734
|
};
|
|
22731
22735
|
/**
|
|
22732
|
-
* This end-point deletes all custom schema attributes for a non-employee source.
|
|
22733
|
-
* @summary Delete all custom schema attributes
|
|
22736
|
+
* This end-point deletes all custom schema attributes for a non-employee source.
|
|
22737
|
+
* @summary Delete all custom schema attributes
|
|
22734
22738
|
* @param {NonEmployeeLifecycleManagementBetaApiDeleteNonEmployeeSourceSchemaAttributesRequest} requestParameters Request parameters.
|
|
22735
22739
|
* @param {*} [axiosOptions] Override http request option.
|
|
22736
22740
|
* @throws {RequiredError}
|
|
@@ -22741,7 +22745,7 @@ var NonEmployeeLifecycleManagementBetaApi = /** @class */ (function (_super) {
|
|
|
22741
22745
|
return (0, exports.NonEmployeeLifecycleManagementBetaApiFp)(this.configuration).deleteNonEmployeeSourceSchemaAttributes(requestParameters.sourceId, axiosOptions).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
22742
22746
|
};
|
|
22743
22747
|
/**
|
|
22744
|
-
* This requests a CSV download for all non-employees from a provided source.
|
|
22748
|
+
* This requests a CSV download for all non-employees from a provided source.
|
|
22745
22749
|
* @summary Exports Non-Employee Records to CSV
|
|
22746
22750
|
* @param {NonEmployeeLifecycleManagementBetaApiExportNonEmployeeRecordsRequest} requestParameters Request parameters.
|
|
22747
22751
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -22789,8 +22793,8 @@ var NonEmployeeLifecycleManagementBetaApi = /** @class */ (function (_super) {
|
|
|
22789
22793
|
return (0, exports.NonEmployeeLifecycleManagementBetaApiFp)(this.configuration).getNonEmployeeApprovalSummary(requestParameters.requestedFor, axiosOptions).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
22790
22794
|
};
|
|
22791
22795
|
/**
|
|
22792
|
-
* The nonEmployeeBulkUploadStatus API returns the status of the newest bulk upload job for the specified source.
|
|
22793
|
-
* @summary
|
|
22796
|
+
* The nonEmployeeBulkUploadStatus API returns the status of the newest bulk upload job for the specified source.
|
|
22797
|
+
* @summary Bulk upload status on source
|
|
22794
22798
|
* @param {NonEmployeeLifecycleManagementBetaApiGetNonEmployeeBulkUploadStatusRequest} requestParameters Request parameters.
|
|
22795
22799
|
* @param {*} [axiosOptions] Override http request option.
|
|
22796
22800
|
* @throws {RequiredError}
|
|
@@ -22801,7 +22805,7 @@ var NonEmployeeLifecycleManagementBetaApi = /** @class */ (function (_super) {
|
|
|
22801
22805
|
return (0, exports.NonEmployeeLifecycleManagementBetaApiFp)(this.configuration).getNonEmployeeBulkUploadStatus(requestParameters.id, axiosOptions).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
22802
22806
|
};
|
|
22803
22807
|
/**
|
|
22804
|
-
* This gets a non-employee record.
|
|
22808
|
+
* This gets a non-employee record.
|
|
22805
22809
|
* @summary Get a Non-Employee Record
|
|
22806
22810
|
* @param {NonEmployeeLifecycleManagementBetaApiGetNonEmployeeRecordRequest} requestParameters Request parameters.
|
|
22807
22811
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -22935,8 +22939,8 @@ var NonEmployeeLifecycleManagementBetaApi = /** @class */ (function (_super) {
|
|
|
22935
22939
|
return (0, exports.NonEmployeeLifecycleManagementBetaApiFp)(this.configuration).patchNonEmployeeRecord(requestParameters.id, requestParameters.jsonPatchOperationBeta, axiosOptions).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
22936
22940
|
};
|
|
22937
22941
|
/**
|
|
22938
|
-
* This end-point patches a specific schema attribute for a non-employee SourceId.
|
|
22939
|
-
* @summary Patch
|
|
22942
|
+
* This end-point patches a specific schema attribute for a non-employee SourceId.
|
|
22943
|
+
* @summary Patch Non-Employee Source\'s Schema Attribute
|
|
22940
22944
|
* @param {NonEmployeeLifecycleManagementBetaApiPatchNonEmployeeSchemaAttributeRequest} requestParameters Request parameters.
|
|
22941
22945
|
* @param {*} [axiosOptions] Override http request option.
|
|
22942
22946
|
* @throws {RequiredError}
|
|
@@ -22947,7 +22951,7 @@ var NonEmployeeLifecycleManagementBetaApi = /** @class */ (function (_super) {
|
|
|
22947
22951
|
return (0, exports.NonEmployeeLifecycleManagementBetaApiFp)(this.configuration).patchNonEmployeeSchemaAttribute(requestParameters.attributeId, requestParameters.sourceId, requestParameters.jsonPatchOperationBeta, axiosOptions).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
22948
22952
|
};
|
|
22949
22953
|
/**
|
|
22950
|
-
* patch a non-employee source. (Partial Update) Patchable field: **name, description, approvers, accountManagers**
|
|
22954
|
+
* patch a non-employee source. (Partial Update) Patchable field: **name, description, approvers, accountManagers**
|
|
22951
22955
|
* @summary Patch a Non-Employee Source
|
|
22952
22956
|
* @param {NonEmployeeLifecycleManagementBetaApiPatchNonEmployeeSourceRequest} requestParameters Request parameters.
|
|
22953
22957
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -25997,7 +26001,7 @@ var PasswordManagementBetaApiAxiosParamCreator = function (configuration) {
|
|
|
25997
26001
|
});
|
|
25998
26002
|
},
|
|
25999
26003
|
/**
|
|
26000
|
-
* 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.
|
|
26004
|
+
* 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.
|
|
26001
26005
|
* @summary Set Identity\'s Password
|
|
26002
26006
|
* @param {PasswordChangeRequestBeta} passwordChangeRequestBeta
|
|
26003
26007
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -26121,7 +26125,7 @@ var PasswordManagementBetaApiFp = function (configuration) {
|
|
|
26121
26125
|
});
|
|
26122
26126
|
},
|
|
26123
26127
|
/**
|
|
26124
|
-
* 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.
|
|
26128
|
+
* 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.
|
|
26125
26129
|
* @summary Set Identity\'s Password
|
|
26126
26130
|
* @param {PasswordChangeRequestBeta} passwordChangeRequestBeta
|
|
26127
26131
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -26181,7 +26185,7 @@ var PasswordManagementBetaApiFactory = function (configuration, basePath, axios)
|
|
|
26181
26185
|
return localVarFp.queryPasswordInfo(passwordInfoQueryDTOBeta, axiosOptions).then(function (request) { return request(axios, basePath); });
|
|
26182
26186
|
},
|
|
26183
26187
|
/**
|
|
26184
|
-
* 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.
|
|
26188
|
+
* 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.
|
|
26185
26189
|
* @summary Set Identity\'s Password
|
|
26186
26190
|
* @param {PasswordChangeRequestBeta} passwordChangeRequestBeta
|
|
26187
26191
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -26241,7 +26245,7 @@ var PasswordManagementBetaApi = /** @class */ (function (_super) {
|
|
|
26241
26245
|
return (0, exports.PasswordManagementBetaApiFp)(this.configuration).queryPasswordInfo(requestParameters.passwordInfoQueryDTOBeta, axiosOptions).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
26242
26246
|
};
|
|
26243
26247
|
/**
|
|
26244
|
-
* 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.
|
|
26248
|
+
* 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.
|
|
26245
26249
|
* @summary Set Identity\'s Password
|
|
26246
26250
|
* @param {PasswordManagementBetaApiSetIdentityPasswordRequest} requestParameters Request parameters.
|
|
26247
26251
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -28639,6 +28643,60 @@ exports.RoleInsightsBetaApi = RoleInsightsBetaApi;
|
|
|
28639
28643
|
var RolesBetaApiAxiosParamCreator = function (configuration) {
|
|
28640
28644
|
var _this = this;
|
|
28641
28645
|
return {
|
|
28646
|
+
/**
|
|
28647
|
+
* 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.
|
|
28648
|
+
* @summary Delete Role(s)
|
|
28649
|
+
* @param {RoleBulkDeleteRequestBeta} roleBulkDeleteRequestBeta
|
|
28650
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
28651
|
+
* @throws {RequiredError}
|
|
28652
|
+
*/
|
|
28653
|
+
bulkDeleteRoles: function (roleBulkDeleteRequestBeta, axiosOptions) {
|
|
28654
|
+
if (axiosOptions === void 0) { axiosOptions = {}; }
|
|
28655
|
+
return __awaiter(_this, void 0, void 0, function () {
|
|
28656
|
+
var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
28657
|
+
return __generator(this, function (_a) {
|
|
28658
|
+
switch (_a.label) {
|
|
28659
|
+
case 0:
|
|
28660
|
+
// verify required parameter 'roleBulkDeleteRequestBeta' is not null or undefined
|
|
28661
|
+
(0, common_1.assertParamExists)('bulkDeleteRoles', 'roleBulkDeleteRequestBeta', roleBulkDeleteRequestBeta);
|
|
28662
|
+
localVarPath = "/roles/bulk-delete";
|
|
28663
|
+
localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
28664
|
+
if (configuration) {
|
|
28665
|
+
baseOptions = configuration.baseOptions;
|
|
28666
|
+
}
|
|
28667
|
+
localVarRequestOptions = __assign(__assign({ method: 'POST' }, baseOptions), axiosOptions);
|
|
28668
|
+
localVarHeaderParameter = {};
|
|
28669
|
+
localVarQueryParameter = {};
|
|
28670
|
+
// authentication oauth2 required
|
|
28671
|
+
// oauth required
|
|
28672
|
+
return [4 /*yield*/, (0, common_1.setOAuthToObject)(localVarHeaderParameter, "oauth2", [], configuration)
|
|
28673
|
+
// authentication oauth2 required
|
|
28674
|
+
// oauth required
|
|
28675
|
+
];
|
|
28676
|
+
case 1:
|
|
28677
|
+
// authentication oauth2 required
|
|
28678
|
+
// oauth required
|
|
28679
|
+
_a.sent();
|
|
28680
|
+
// authentication oauth2 required
|
|
28681
|
+
// oauth required
|
|
28682
|
+
return [4 /*yield*/, (0, common_1.setOAuthToObject)(localVarHeaderParameter, "oauth2", [], configuration)];
|
|
28683
|
+
case 2:
|
|
28684
|
+
// authentication oauth2 required
|
|
28685
|
+
// oauth required
|
|
28686
|
+
_a.sent();
|
|
28687
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
28688
|
+
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
28689
|
+
headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
28690
|
+
localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), axiosOptions.headers);
|
|
28691
|
+
localVarRequestOptions.data = (0, common_1.serializeDataIfNeeded)(roleBulkDeleteRequestBeta, localVarRequestOptions, configuration);
|
|
28692
|
+
return [2 /*return*/, {
|
|
28693
|
+
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
28694
|
+
axiosOptions: localVarRequestOptions,
|
|
28695
|
+
}];
|
|
28696
|
+
}
|
|
28697
|
+
});
|
|
28698
|
+
});
|
|
28699
|
+
},
|
|
28642
28700
|
/**
|
|
28643
28701
|
* 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.
|
|
28644
28702
|
* @summary Create a Role
|
|
@@ -28801,7 +28859,7 @@ var RolesBetaApiAxiosParamCreator = function (configuration) {
|
|
|
28801
28859
|
},
|
|
28802
28860
|
/**
|
|
28803
28861
|
*
|
|
28804
|
-
* @summary
|
|
28862
|
+
* @summary Identities assigned a Role
|
|
28805
28863
|
* @param {string} id ID of the Role for which the assigned Identities are to be listed
|
|
28806
28864
|
* @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.
|
|
28807
28865
|
* @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.
|
|
@@ -29021,6 +29079,26 @@ exports.RolesBetaApiAxiosParamCreator = RolesBetaApiAxiosParamCreator;
|
|
|
29021
29079
|
var RolesBetaApiFp = function (configuration) {
|
|
29022
29080
|
var localVarAxiosParamCreator = (0, exports.RolesBetaApiAxiosParamCreator)(configuration);
|
|
29023
29081
|
return {
|
|
29082
|
+
/**
|
|
29083
|
+
* 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.
|
|
29084
|
+
* @summary Delete Role(s)
|
|
29085
|
+
* @param {RoleBulkDeleteRequestBeta} roleBulkDeleteRequestBeta
|
|
29086
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
29087
|
+
* @throws {RequiredError}
|
|
29088
|
+
*/
|
|
29089
|
+
bulkDeleteRoles: function (roleBulkDeleteRequestBeta, axiosOptions) {
|
|
29090
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
29091
|
+
var localVarAxiosArgs;
|
|
29092
|
+
return __generator(this, function (_a) {
|
|
29093
|
+
switch (_a.label) {
|
|
29094
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.bulkDeleteRoles(roleBulkDeleteRequestBeta, axiosOptions)];
|
|
29095
|
+
case 1:
|
|
29096
|
+
localVarAxiosArgs = _a.sent();
|
|
29097
|
+
return [2 /*return*/, (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)];
|
|
29098
|
+
}
|
|
29099
|
+
});
|
|
29100
|
+
});
|
|
29101
|
+
},
|
|
29024
29102
|
/**
|
|
29025
29103
|
* 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.
|
|
29026
29104
|
* @summary Create a Role
|
|
@@ -29083,7 +29161,7 @@ var RolesBetaApiFp = function (configuration) {
|
|
|
29083
29161
|
},
|
|
29084
29162
|
/**
|
|
29085
29163
|
*
|
|
29086
|
-
* @summary
|
|
29164
|
+
* @summary Identities assigned a Role
|
|
29087
29165
|
* @param {string} id ID of the Role for which the assigned Identities are to be listed
|
|
29088
29166
|
* @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.
|
|
29089
29167
|
* @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.
|
|
@@ -29164,6 +29242,16 @@ exports.RolesBetaApiFp = RolesBetaApiFp;
|
|
|
29164
29242
|
var RolesBetaApiFactory = function (configuration, basePath, axios) {
|
|
29165
29243
|
var localVarFp = (0, exports.RolesBetaApiFp)(configuration);
|
|
29166
29244
|
return {
|
|
29245
|
+
/**
|
|
29246
|
+
* 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.
|
|
29247
|
+
* @summary Delete Role(s)
|
|
29248
|
+
* @param {RoleBulkDeleteRequestBeta} roleBulkDeleteRequestBeta
|
|
29249
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
29250
|
+
* @throws {RequiredError}
|
|
29251
|
+
*/
|
|
29252
|
+
bulkDeleteRoles: function (roleBulkDeleteRequestBeta, axiosOptions) {
|
|
29253
|
+
return localVarFp.bulkDeleteRoles(roleBulkDeleteRequestBeta, axiosOptions).then(function (request) { return request(axios, basePath); });
|
|
29254
|
+
},
|
|
29167
29255
|
/**
|
|
29168
29256
|
* 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.
|
|
29169
29257
|
* @summary Create a Role
|
|
@@ -29196,7 +29284,7 @@ var RolesBetaApiFactory = function (configuration, basePath, axios) {
|
|
|
29196
29284
|
},
|
|
29197
29285
|
/**
|
|
29198
29286
|
*
|
|
29199
|
-
* @summary
|
|
29287
|
+
* @summary Identities assigned a Role
|
|
29200
29288
|
* @param {string} id ID of the Role for which the assigned Identities are to be listed
|
|
29201
29289
|
* @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.
|
|
29202
29290
|
* @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.
|
|
@@ -29251,6 +29339,18 @@ var RolesBetaApi = /** @class */ (function (_super) {
|
|
|
29251
29339
|
function RolesBetaApi() {
|
|
29252
29340
|
return _super !== null && _super.apply(this, arguments) || this;
|
|
29253
29341
|
}
|
|
29342
|
+
/**
|
|
29343
|
+
* 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.
|
|
29344
|
+
* @summary Delete Role(s)
|
|
29345
|
+
* @param {RolesBetaApiBulkDeleteRolesRequest} requestParameters Request parameters.
|
|
29346
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
29347
|
+
* @throws {RequiredError}
|
|
29348
|
+
* @memberof RolesBetaApi
|
|
29349
|
+
*/
|
|
29350
|
+
RolesBetaApi.prototype.bulkDeleteRoles = function (requestParameters, axiosOptions) {
|
|
29351
|
+
var _this = this;
|
|
29352
|
+
return (0, exports.RolesBetaApiFp)(this.configuration).bulkDeleteRoles(requestParameters.roleBulkDeleteRequestBeta, axiosOptions).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
29353
|
+
};
|
|
29254
29354
|
/**
|
|
29255
29355
|
* 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.
|
|
29256
29356
|
* @summary Create a Role
|
|
@@ -29289,7 +29389,7 @@ var RolesBetaApi = /** @class */ (function (_super) {
|
|
|
29289
29389
|
};
|
|
29290
29390
|
/**
|
|
29291
29391
|
*
|
|
29292
|
-
* @summary
|
|
29392
|
+
* @summary Identities assigned a Role
|
|
29293
29393
|
* @param {RolesBetaApiGetRoleAssignedIdentitiesRequest} requestParameters Request parameters.
|
|
29294
29394
|
* @param {*} [axiosOptions] Override http request option.
|
|
29295
29395
|
* @throws {RequiredError}
|
|
@@ -31085,7 +31185,7 @@ var SPConfigBetaApiAxiosParamCreator = function (configuration) {
|
|
|
31085
31185
|
var _this = this;
|
|
31086
31186
|
return {
|
|
31087
31187
|
/**
|
|
31088
|
-
* This post will export objects from the tenant to a JSON configuration file.
|
|
31188
|
+
* This post will export objects from the tenant to a JSON configuration file.
|
|
31089
31189
|
* @summary Initiates Configuration Objects Export Job.
|
|
31090
31190
|
* @param {ExportPayloadBeta} exportPayloadBeta Export options control what will be included in the export.
|
|
31091
31191
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -31417,7 +31517,7 @@ var SPConfigBetaApiAxiosParamCreator = function (configuration) {
|
|
|
31417
31517
|
});
|
|
31418
31518
|
},
|
|
31419
31519
|
/**
|
|
31420
|
-
* 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.
|
|
31520
|
+
* 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.
|
|
31421
31521
|
* @summary Get Config Object details
|
|
31422
31522
|
* @param {*} [axiosOptions] Override http request option.
|
|
31423
31523
|
* @throws {RequiredError}
|
|
@@ -31476,7 +31576,7 @@ var SPConfigBetaApiFp = function (configuration) {
|
|
|
31476
31576
|
var localVarAxiosParamCreator = (0, exports.SPConfigBetaApiAxiosParamCreator)(configuration);
|
|
31477
31577
|
return {
|
|
31478
31578
|
/**
|
|
31479
|
-
* This post will export objects from the tenant to a JSON configuration file.
|
|
31579
|
+
* This post will export objects from the tenant to a JSON configuration file.
|
|
31480
31580
|
* @summary Initiates Configuration Objects Export Job.
|
|
31481
31581
|
* @param {ExportPayloadBeta} exportPayloadBeta Export options control what will be included in the export.
|
|
31482
31582
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -31598,7 +31698,7 @@ var SPConfigBetaApiFp = function (configuration) {
|
|
|
31598
31698
|
});
|
|
31599
31699
|
},
|
|
31600
31700
|
/**
|
|
31601
|
-
* 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.
|
|
31701
|
+
* 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.
|
|
31602
31702
|
* @summary Get Config Object details
|
|
31603
31703
|
* @param {*} [axiosOptions] Override http request option.
|
|
31604
31704
|
* @throws {RequiredError}
|
|
@@ -31627,7 +31727,7 @@ var SPConfigBetaApiFactory = function (configuration, basePath, axios) {
|
|
|
31627
31727
|
var localVarFp = (0, exports.SPConfigBetaApiFp)(configuration);
|
|
31628
31728
|
return {
|
|
31629
31729
|
/**
|
|
31630
|
-
* This post will export objects from the tenant to a JSON configuration file.
|
|
31730
|
+
* This post will export objects from the tenant to a JSON configuration file.
|
|
31631
31731
|
* @summary Initiates Configuration Objects Export Job.
|
|
31632
31732
|
* @param {ExportPayloadBeta} exportPayloadBeta Export options control what will be included in the export.
|
|
31633
31733
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -31689,7 +31789,7 @@ var SPConfigBetaApiFactory = function (configuration, basePath, axios) {
|
|
|
31689
31789
|
return localVarFp.importSpConfigJobStatus(id, axiosOptions).then(function (request) { return request(axios, basePath); });
|
|
31690
31790
|
},
|
|
31691
31791
|
/**
|
|
31692
|
-
* 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.
|
|
31792
|
+
* 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.
|
|
31693
31793
|
* @summary Get Config Object details
|
|
31694
31794
|
* @param {*} [axiosOptions] Override http request option.
|
|
31695
31795
|
* @throws {RequiredError}
|
|
@@ -31712,7 +31812,7 @@ var SPConfigBetaApi = /** @class */ (function (_super) {
|
|
|
31712
31812
|
return _super !== null && _super.apply(this, arguments) || this;
|
|
31713
31813
|
}
|
|
31714
31814
|
/**
|
|
31715
|
-
* This post will export objects from the tenant to a JSON configuration file.
|
|
31815
|
+
* This post will export objects from the tenant to a JSON configuration file.
|
|
31716
31816
|
* @summary Initiates Configuration Objects Export Job.
|
|
31717
31817
|
* @param {SPConfigBetaApiExportSpConfigRequest} requestParameters Request parameters.
|
|
31718
31818
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -31784,7 +31884,7 @@ var SPConfigBetaApi = /** @class */ (function (_super) {
|
|
|
31784
31884
|
return (0, exports.SPConfigBetaApiFp)(this.configuration).importSpConfigJobStatus(requestParameters.id, axiosOptions).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
31785
31885
|
};
|
|
31786
31886
|
/**
|
|
31787
|
-
* 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.
|
|
31887
|
+
* 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.
|
|
31788
31888
|
* @summary Get Config Object details
|
|
31789
31889
|
* @param {*} [axiosOptions] Override http request option.
|
|
31790
31890
|
* @throws {RequiredError}
|
|
@@ -32866,7 +32966,7 @@ var ServiceDeskIntegrationBetaApiAxiosParamCreator = function (configuration) {
|
|
|
32866
32966
|
return {
|
|
32867
32967
|
/**
|
|
32868
32968
|
* Create a new Service Desk Integrations. A token with Org Admin or Service Desk Admin authority is required to access this endpoint.
|
|
32869
|
-
* @summary Create
|
|
32969
|
+
* @summary Create new Service Desk integration
|
|
32870
32970
|
* @param {ServiceDeskIntegrationDtoBeta} serviceDeskIntegrationDtoBeta The specifics of a new integration to create
|
|
32871
32971
|
* @param {*} [axiosOptions] Override http request option.
|
|
32872
32972
|
* @throws {RequiredError}
|
|
@@ -32920,7 +33020,7 @@ var ServiceDeskIntegrationBetaApiAxiosParamCreator = function (configuration) {
|
|
|
32920
33020
|
},
|
|
32921
33021
|
/**
|
|
32922
33022
|
* Delete an existing Service Desk integration by ID. A token with Org Admin or Service Desk Admin authority is required to access this endpoint.
|
|
32923
|
-
* @summary Delete a Service Desk integration
|
|
33023
|
+
* @summary Delete a Service Desk integration
|
|
32924
33024
|
* @param {string} id ID of Service Desk integration to delete
|
|
32925
33025
|
* @param {*} [axiosOptions] Override http request option.
|
|
32926
33026
|
* @throws {RequiredError}
|
|
@@ -32973,7 +33073,7 @@ var ServiceDeskIntegrationBetaApiAxiosParamCreator = function (configuration) {
|
|
|
32973
33073
|
},
|
|
32974
33074
|
/**
|
|
32975
33075
|
* Get an existing Service Desk integration by ID. A token with Org Admin or Service Desk Admin authority is required to access this endpoint.
|
|
32976
|
-
* @summary Get a Service Desk integration
|
|
33076
|
+
* @summary Get a Service Desk integration
|
|
32977
33077
|
* @param {string} id ID of the Service Desk integration to get
|
|
32978
33078
|
* @param {*} [axiosOptions] Override http request option.
|
|
32979
33079
|
* @throws {RequiredError}
|
|
@@ -33197,7 +33297,7 @@ var ServiceDeskIntegrationBetaApiAxiosParamCreator = function (configuration) {
|
|
|
33197
33297
|
},
|
|
33198
33298
|
/**
|
|
33199
33299
|
* 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.
|
|
33200
|
-
* @summary Get the time check configuration
|
|
33300
|
+
* @summary Get the time check configuration
|
|
33201
33301
|
* @param {*} [axiosOptions] Override http request option.
|
|
33202
33302
|
* @throws {RequiredError}
|
|
33203
33303
|
*/
|
|
@@ -33246,7 +33346,7 @@ var ServiceDeskIntegrationBetaApiAxiosParamCreator = function (configuration) {
|
|
|
33246
33346
|
},
|
|
33247
33347
|
/**
|
|
33248
33348
|
* Update an existing ServiceDeskIntegration by ID with a PATCH request.
|
|
33249
|
-
* @summary Service Desk Integration Update
|
|
33349
|
+
* @summary Service Desk Integration Update PATCH
|
|
33250
33350
|
* @param {string} id ID of the Service Desk integration to update
|
|
33251
33351
|
* @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.
|
|
33252
33352
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -33304,7 +33404,7 @@ var ServiceDeskIntegrationBetaApiAxiosParamCreator = function (configuration) {
|
|
|
33304
33404
|
},
|
|
33305
33405
|
/**
|
|
33306
33406
|
* 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.
|
|
33307
|
-
* @summary Update a Service Desk integration
|
|
33407
|
+
* @summary Update a Service Desk integration
|
|
33308
33408
|
* @param {string} id ID of the Service Desk integration to update
|
|
33309
33409
|
* @param {ServiceDeskIntegrationDtoBeta} serviceDeskIntegrationDtoBeta The specifics of the integration to update
|
|
33310
33410
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -33362,7 +33462,7 @@ var ServiceDeskIntegrationBetaApiAxiosParamCreator = function (configuration) {
|
|
|
33362
33462
|
},
|
|
33363
33463
|
/**
|
|
33364
33464
|
* 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.
|
|
33365
|
-
* @summary Update the time check configuration
|
|
33465
|
+
* @summary Update the time check configuration
|
|
33366
33466
|
* @param {QueuedCheckConfigDetailsBeta} queuedCheckConfigDetailsBeta the modified time check configuration
|
|
33367
33467
|
* @param {*} [axiosOptions] Override http request option.
|
|
33368
33468
|
* @throws {RequiredError}
|
|
@@ -33426,7 +33526,7 @@ var ServiceDeskIntegrationBetaApiFp = function (configuration) {
|
|
|
33426
33526
|
return {
|
|
33427
33527
|
/**
|
|
33428
33528
|
* Create a new Service Desk Integrations. A token with Org Admin or Service Desk Admin authority is required to access this endpoint.
|
|
33429
|
-
* @summary Create
|
|
33529
|
+
* @summary Create new Service Desk integration
|
|
33430
33530
|
* @param {ServiceDeskIntegrationDtoBeta} serviceDeskIntegrationDtoBeta The specifics of a new integration to create
|
|
33431
33531
|
* @param {*} [axiosOptions] Override http request option.
|
|
33432
33532
|
* @throws {RequiredError}
|
|
@@ -33446,7 +33546,7 @@ var ServiceDeskIntegrationBetaApiFp = function (configuration) {
|
|
|
33446
33546
|
},
|
|
33447
33547
|
/**
|
|
33448
33548
|
* Delete an existing Service Desk integration by ID. A token with Org Admin or Service Desk Admin authority is required to access this endpoint.
|
|
33449
|
-
* @summary Delete a Service Desk integration
|
|
33549
|
+
* @summary Delete a Service Desk integration
|
|
33450
33550
|
* @param {string} id ID of Service Desk integration to delete
|
|
33451
33551
|
* @param {*} [axiosOptions] Override http request option.
|
|
33452
33552
|
* @throws {RequiredError}
|
|
@@ -33466,7 +33566,7 @@ var ServiceDeskIntegrationBetaApiFp = function (configuration) {
|
|
|
33466
33566
|
},
|
|
33467
33567
|
/**
|
|
33468
33568
|
* Get an existing Service Desk integration by ID. A token with Org Admin or Service Desk Admin authority is required to access this endpoint.
|
|
33469
|
-
* @summary Get a Service Desk integration
|
|
33569
|
+
* @summary Get a Service Desk integration
|
|
33470
33570
|
* @param {string} id ID of the Service Desk integration to get
|
|
33471
33571
|
* @param {*} [axiosOptions] Override http request option.
|
|
33472
33572
|
* @throws {RequiredError}
|
|
@@ -33549,7 +33649,7 @@ var ServiceDeskIntegrationBetaApiFp = function (configuration) {
|
|
|
33549
33649
|
},
|
|
33550
33650
|
/**
|
|
33551
33651
|
* 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.
|
|
33552
|
-
* @summary Get the time check configuration
|
|
33652
|
+
* @summary Get the time check configuration
|
|
33553
33653
|
* @param {*} [axiosOptions] Override http request option.
|
|
33554
33654
|
* @throws {RequiredError}
|
|
33555
33655
|
*/
|
|
@@ -33568,7 +33668,7 @@ var ServiceDeskIntegrationBetaApiFp = function (configuration) {
|
|
|
33568
33668
|
},
|
|
33569
33669
|
/**
|
|
33570
33670
|
* Update an existing ServiceDeskIntegration by ID with a PATCH request.
|
|
33571
|
-
* @summary Service Desk Integration Update
|
|
33671
|
+
* @summary Service Desk Integration Update PATCH
|
|
33572
33672
|
* @param {string} id ID of the Service Desk integration to update
|
|
33573
33673
|
* @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.
|
|
33574
33674
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -33589,7 +33689,7 @@ var ServiceDeskIntegrationBetaApiFp = function (configuration) {
|
|
|
33589
33689
|
},
|
|
33590
33690
|
/**
|
|
33591
33691
|
* 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.
|
|
33592
|
-
* @summary Update a Service Desk integration
|
|
33692
|
+
* @summary Update a Service Desk integration
|
|
33593
33693
|
* @param {string} id ID of the Service Desk integration to update
|
|
33594
33694
|
* @param {ServiceDeskIntegrationDtoBeta} serviceDeskIntegrationDtoBeta The specifics of the integration to update
|
|
33595
33695
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -33610,7 +33710,7 @@ var ServiceDeskIntegrationBetaApiFp = function (configuration) {
|
|
|
33610
33710
|
},
|
|
33611
33711
|
/**
|
|
33612
33712
|
* 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.
|
|
33613
|
-
* @summary Update the time check configuration
|
|
33713
|
+
* @summary Update the time check configuration
|
|
33614
33714
|
* @param {QueuedCheckConfigDetailsBeta} queuedCheckConfigDetailsBeta the modified time check configuration
|
|
33615
33715
|
* @param {*} [axiosOptions] Override http request option.
|
|
33616
33716
|
* @throws {RequiredError}
|
|
@@ -33640,7 +33740,7 @@ var ServiceDeskIntegrationBetaApiFactory = function (configuration, basePath, ax
|
|
|
33640
33740
|
return {
|
|
33641
33741
|
/**
|
|
33642
33742
|
* Create a new Service Desk Integrations. A token with Org Admin or Service Desk Admin authority is required to access this endpoint.
|
|
33643
|
-
* @summary Create
|
|
33743
|
+
* @summary Create new Service Desk integration
|
|
33644
33744
|
* @param {ServiceDeskIntegrationDtoBeta} serviceDeskIntegrationDtoBeta The specifics of a new integration to create
|
|
33645
33745
|
* @param {*} [axiosOptions] Override http request option.
|
|
33646
33746
|
* @throws {RequiredError}
|
|
@@ -33650,7 +33750,7 @@ var ServiceDeskIntegrationBetaApiFactory = function (configuration, basePath, ax
|
|
|
33650
33750
|
},
|
|
33651
33751
|
/**
|
|
33652
33752
|
* Delete an existing Service Desk integration by ID. A token with Org Admin or Service Desk Admin authority is required to access this endpoint.
|
|
33653
|
-
* @summary Delete a Service Desk integration
|
|
33753
|
+
* @summary Delete a Service Desk integration
|
|
33654
33754
|
* @param {string} id ID of Service Desk integration to delete
|
|
33655
33755
|
* @param {*} [axiosOptions] Override http request option.
|
|
33656
33756
|
* @throws {RequiredError}
|
|
@@ -33660,7 +33760,7 @@ var ServiceDeskIntegrationBetaApiFactory = function (configuration, basePath, ax
|
|
|
33660
33760
|
},
|
|
33661
33761
|
/**
|
|
33662
33762
|
* Get an existing Service Desk integration by ID. A token with Org Admin or Service Desk Admin authority is required to access this endpoint.
|
|
33663
|
-
* @summary Get a Service Desk integration
|
|
33763
|
+
* @summary Get a Service Desk integration
|
|
33664
33764
|
* @param {string} id ID of the Service Desk integration to get
|
|
33665
33765
|
* @param {*} [axiosOptions] Override http request option.
|
|
33666
33766
|
* @throws {RequiredError}
|
|
@@ -33703,7 +33803,7 @@ var ServiceDeskIntegrationBetaApiFactory = function (configuration, basePath, ax
|
|
|
33703
33803
|
},
|
|
33704
33804
|
/**
|
|
33705
33805
|
* 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.
|
|
33706
|
-
* @summary Get the time check configuration
|
|
33806
|
+
* @summary Get the time check configuration
|
|
33707
33807
|
* @param {*} [axiosOptions] Override http request option.
|
|
33708
33808
|
* @throws {RequiredError}
|
|
33709
33809
|
*/
|
|
@@ -33712,7 +33812,7 @@ var ServiceDeskIntegrationBetaApiFactory = function (configuration, basePath, ax
|
|
|
33712
33812
|
},
|
|
33713
33813
|
/**
|
|
33714
33814
|
* Update an existing ServiceDeskIntegration by ID with a PATCH request.
|
|
33715
|
-
* @summary Service Desk Integration Update
|
|
33815
|
+
* @summary Service Desk Integration Update PATCH
|
|
33716
33816
|
* @param {string} id ID of the Service Desk integration to update
|
|
33717
33817
|
* @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.
|
|
33718
33818
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -33723,7 +33823,7 @@ var ServiceDeskIntegrationBetaApiFactory = function (configuration, basePath, ax
|
|
|
33723
33823
|
},
|
|
33724
33824
|
/**
|
|
33725
33825
|
* 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.
|
|
33726
|
-
* @summary Update a Service Desk integration
|
|
33826
|
+
* @summary Update a Service Desk integration
|
|
33727
33827
|
* @param {string} id ID of the Service Desk integration to update
|
|
33728
33828
|
* @param {ServiceDeskIntegrationDtoBeta} serviceDeskIntegrationDtoBeta The specifics of the integration to update
|
|
33729
33829
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -33734,7 +33834,7 @@ var ServiceDeskIntegrationBetaApiFactory = function (configuration, basePath, ax
|
|
|
33734
33834
|
},
|
|
33735
33835
|
/**
|
|
33736
33836
|
* 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.
|
|
33737
|
-
* @summary Update the time check configuration
|
|
33837
|
+
* @summary Update the time check configuration
|
|
33738
33838
|
* @param {QueuedCheckConfigDetailsBeta} queuedCheckConfigDetailsBeta the modified time check configuration
|
|
33739
33839
|
* @param {*} [axiosOptions] Override http request option.
|
|
33740
33840
|
* @throws {RequiredError}
|
|
@@ -33758,7 +33858,7 @@ var ServiceDeskIntegrationBetaApi = /** @class */ (function (_super) {
|
|
|
33758
33858
|
}
|
|
33759
33859
|
/**
|
|
33760
33860
|
* Create a new Service Desk Integrations. A token with Org Admin or Service Desk Admin authority is required to access this endpoint.
|
|
33761
|
-
* @summary Create
|
|
33861
|
+
* @summary Create new Service Desk integration
|
|
33762
33862
|
* @param {ServiceDeskIntegrationBetaApiCreateServiceDeskIntegrationRequest} requestParameters Request parameters.
|
|
33763
33863
|
* @param {*} [axiosOptions] Override http request option.
|
|
33764
33864
|
* @throws {RequiredError}
|
|
@@ -33770,7 +33870,7 @@ var ServiceDeskIntegrationBetaApi = /** @class */ (function (_super) {
|
|
|
33770
33870
|
};
|
|
33771
33871
|
/**
|
|
33772
33872
|
* Delete an existing Service Desk integration by ID. A token with Org Admin or Service Desk Admin authority is required to access this endpoint.
|
|
33773
|
-
* @summary Delete a Service Desk integration
|
|
33873
|
+
* @summary Delete a Service Desk integration
|
|
33774
33874
|
* @param {ServiceDeskIntegrationBetaApiDeleteServiceDeskIntegrationRequest} requestParameters Request parameters.
|
|
33775
33875
|
* @param {*} [axiosOptions] Override http request option.
|
|
33776
33876
|
* @throws {RequiredError}
|
|
@@ -33782,7 +33882,7 @@ var ServiceDeskIntegrationBetaApi = /** @class */ (function (_super) {
|
|
|
33782
33882
|
};
|
|
33783
33883
|
/**
|
|
33784
33884
|
* Get an existing Service Desk integration by ID. A token with Org Admin or Service Desk Admin authority is required to access this endpoint.
|
|
33785
|
-
* @summary Get a Service Desk integration
|
|
33885
|
+
* @summary Get a Service Desk integration
|
|
33786
33886
|
* @param {ServiceDeskIntegrationBetaApiGetServiceDeskIntegrationRequest} requestParameters Request parameters.
|
|
33787
33887
|
* @param {*} [axiosOptions] Override http request option.
|
|
33788
33888
|
* @throws {RequiredError}
|
|
@@ -33830,7 +33930,7 @@ var ServiceDeskIntegrationBetaApi = /** @class */ (function (_super) {
|
|
|
33830
33930
|
};
|
|
33831
33931
|
/**
|
|
33832
33932
|
* 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.
|
|
33833
|
-
* @summary Get the time check configuration
|
|
33933
|
+
* @summary Get the time check configuration
|
|
33834
33934
|
* @param {*} [axiosOptions] Override http request option.
|
|
33835
33935
|
* @throws {RequiredError}
|
|
33836
33936
|
* @memberof ServiceDeskIntegrationBetaApi
|
|
@@ -33841,7 +33941,7 @@ var ServiceDeskIntegrationBetaApi = /** @class */ (function (_super) {
|
|
|
33841
33941
|
};
|
|
33842
33942
|
/**
|
|
33843
33943
|
* Update an existing ServiceDeskIntegration by ID with a PATCH request.
|
|
33844
|
-
* @summary Service Desk Integration Update
|
|
33944
|
+
* @summary Service Desk Integration Update PATCH
|
|
33845
33945
|
* @param {ServiceDeskIntegrationBetaApiPatchServiceDeskIntegrationRequest} requestParameters Request parameters.
|
|
33846
33946
|
* @param {*} [axiosOptions] Override http request option.
|
|
33847
33947
|
* @throws {RequiredError}
|
|
@@ -33853,7 +33953,7 @@ var ServiceDeskIntegrationBetaApi = /** @class */ (function (_super) {
|
|
|
33853
33953
|
};
|
|
33854
33954
|
/**
|
|
33855
33955
|
* 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.
|
|
33856
|
-
* @summary Update a Service Desk integration
|
|
33956
|
+
* @summary Update a Service Desk integration
|
|
33857
33957
|
* @param {ServiceDeskIntegrationBetaApiUpdateServiceDeskIntegrationRequest} requestParameters Request parameters.
|
|
33858
33958
|
* @param {*} [axiosOptions] Override http request option.
|
|
33859
33959
|
* @throws {RequiredError}
|
|
@@ -33865,7 +33965,7 @@ var ServiceDeskIntegrationBetaApi = /** @class */ (function (_super) {
|
|
|
33865
33965
|
};
|
|
33866
33966
|
/**
|
|
33867
33967
|
* 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.
|
|
33868
|
-
* @summary Update the time check configuration
|
|
33968
|
+
* @summary Update the time check configuration
|
|
33869
33969
|
* @param {ServiceDeskIntegrationBetaApiUpdateStatusCheckDetailsRequest} requestParameters Request parameters.
|
|
33870
33970
|
* @param {*} [axiosOptions] Override http request option.
|
|
33871
33971
|
* @throws {RequiredError}
|
|
@@ -33947,7 +34047,7 @@ var SourcesBetaApiAxiosParamCreator = function (configuration) {
|
|
|
33947
34047
|
* 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.
|
|
33948
34048
|
* @summary Creates a source in IdentityNow.
|
|
33949
34049
|
* @param {SourceBeta} sourceBeta
|
|
33950
|
-
* @param {boolean} [provisionAsCsv]
|
|
34050
|
+
* @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.
|
|
33951
34051
|
* @param {*} [axiosOptions] Override http request option.
|
|
33952
34052
|
* @throws {RequiredError}
|
|
33953
34053
|
*/
|
|
@@ -34847,7 +34947,7 @@ var SourcesBetaApiAxiosParamCreator = function (configuration) {
|
|
|
34847
34947
|
},
|
|
34848
34948
|
/**
|
|
34849
34949
|
* Retrieves a sample of data returned from account and group aggregation requests. A token with ORG_ADMIN authority is required to call this API.
|
|
34850
|
-
* @summary Peek resource objects
|
|
34950
|
+
* @summary Peek source connector\'s resource objects
|
|
34851
34951
|
* @param {string} sourceId The ID of the Source
|
|
34852
34952
|
* @param {ResourceObjectsRequestBeta} resourceObjectsRequestBeta
|
|
34853
34953
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -34905,7 +35005,7 @@ var SourcesBetaApiAxiosParamCreator = function (configuration) {
|
|
|
34905
35005
|
},
|
|
34906
35006
|
/**
|
|
34907
35007
|
* 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.
|
|
34908
|
-
* @summary Ping cluster for
|
|
35008
|
+
* @summary Ping cluster for source connector
|
|
34909
35009
|
* @param {string} sourceId The ID of the Source
|
|
34910
35010
|
* @param {*} [axiosOptions] Override http request option.
|
|
34911
35011
|
* @throws {RequiredError}
|
|
@@ -35251,7 +35351,7 @@ var SourcesBetaApiAxiosParamCreator = function (configuration) {
|
|
|
35251
35351
|
},
|
|
35252
35352
|
/**
|
|
35253
35353
|
* 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.
|
|
35254
|
-
* @summary Test configuration for
|
|
35354
|
+
* @summary Test configuration for source connector
|
|
35255
35355
|
* @param {string} sourceId The ID of the Source
|
|
35256
35356
|
* @param {*} [axiosOptions] Override http request option.
|
|
35257
35357
|
* @throws {RequiredError}
|
|
@@ -35304,7 +35404,7 @@ var SourcesBetaApiAxiosParamCreator = function (configuration) {
|
|
|
35304
35404
|
},
|
|
35305
35405
|
/**
|
|
35306
35406
|
* 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.
|
|
35307
|
-
* @summary Check connection for
|
|
35407
|
+
* @summary Check connection for source connector.
|
|
35308
35408
|
* @param {string} sourceId The ID of the Source.
|
|
35309
35409
|
* @param {*} [axiosOptions] Override http request option.
|
|
35310
35410
|
* @throws {RequiredError}
|
|
@@ -35868,7 +35968,7 @@ var SourcesBetaApiFp = function (configuration) {
|
|
|
35868
35968
|
* 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.
|
|
35869
35969
|
* @summary Creates a source in IdentityNow.
|
|
35870
35970
|
* @param {SourceBeta} sourceBeta
|
|
35871
|
-
* @param {boolean} [provisionAsCsv]
|
|
35971
|
+
* @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.
|
|
35872
35972
|
* @param {*} [axiosOptions] Override http request option.
|
|
35873
35973
|
* @throws {RequiredError}
|
|
35874
35974
|
*/
|
|
@@ -36199,7 +36299,7 @@ var SourcesBetaApiFp = function (configuration) {
|
|
|
36199
36299
|
},
|
|
36200
36300
|
/**
|
|
36201
36301
|
* Retrieves a sample of data returned from account and group aggregation requests. A token with ORG_ADMIN authority is required to call this API.
|
|
36202
|
-
* @summary Peek resource objects
|
|
36302
|
+
* @summary Peek source connector\'s resource objects
|
|
36203
36303
|
* @param {string} sourceId The ID of the Source
|
|
36204
36304
|
* @param {ResourceObjectsRequestBeta} resourceObjectsRequestBeta
|
|
36205
36305
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -36220,7 +36320,7 @@ var SourcesBetaApiFp = function (configuration) {
|
|
|
36220
36320
|
},
|
|
36221
36321
|
/**
|
|
36222
36322
|
* 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.
|
|
36223
|
-
* @summary Ping cluster for
|
|
36323
|
+
* @summary Ping cluster for source connector
|
|
36224
36324
|
* @param {string} sourceId The ID of the Source
|
|
36225
36325
|
* @param {*} [axiosOptions] Override http request option.
|
|
36226
36326
|
* @throws {RequiredError}
|
|
@@ -36346,7 +36446,7 @@ var SourcesBetaApiFp = function (configuration) {
|
|
|
36346
36446
|
},
|
|
36347
36447
|
/**
|
|
36348
36448
|
* 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.
|
|
36349
|
-
* @summary Test configuration for
|
|
36449
|
+
* @summary Test configuration for source connector
|
|
36350
36450
|
* @param {string} sourceId The ID of the Source
|
|
36351
36451
|
* @param {*} [axiosOptions] Override http request option.
|
|
36352
36452
|
* @throws {RequiredError}
|
|
@@ -36366,7 +36466,7 @@ var SourcesBetaApiFp = function (configuration) {
|
|
|
36366
36466
|
},
|
|
36367
36467
|
/**
|
|
36368
36468
|
* 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.
|
|
36369
|
-
* @summary Check connection for
|
|
36469
|
+
* @summary Check connection for source connector.
|
|
36370
36470
|
* @param {string} sourceId The ID of the Source.
|
|
36371
36471
|
* @param {*} [axiosOptions] Override http request option.
|
|
36372
36472
|
* @throws {RequiredError}
|
|
@@ -36579,7 +36679,7 @@ var SourcesBetaApiFactory = function (configuration, basePath, axios) {
|
|
|
36579
36679
|
* 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.
|
|
36580
36680
|
* @summary Creates a source in IdentityNow.
|
|
36581
36681
|
* @param {SourceBeta} sourceBeta
|
|
36582
|
-
* @param {boolean} [provisionAsCsv]
|
|
36682
|
+
* @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.
|
|
36583
36683
|
* @param {*} [axiosOptions] Override http request option.
|
|
36584
36684
|
* @throws {RequiredError}
|
|
36585
36685
|
*/
|
|
@@ -36750,7 +36850,7 @@ var SourcesBetaApiFactory = function (configuration, basePath, axios) {
|
|
|
36750
36850
|
},
|
|
36751
36851
|
/**
|
|
36752
36852
|
* Retrieves a sample of data returned from account and group aggregation requests. A token with ORG_ADMIN authority is required to call this API.
|
|
36753
|
-
* @summary Peek resource objects
|
|
36853
|
+
* @summary Peek source connector\'s resource objects
|
|
36754
36854
|
* @param {string} sourceId The ID of the Source
|
|
36755
36855
|
* @param {ResourceObjectsRequestBeta} resourceObjectsRequestBeta
|
|
36756
36856
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -36761,7 +36861,7 @@ var SourcesBetaApiFactory = function (configuration, basePath, axios) {
|
|
|
36761
36861
|
},
|
|
36762
36862
|
/**
|
|
36763
36863
|
* 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.
|
|
36764
|
-
* @summary Ping cluster for
|
|
36864
|
+
* @summary Ping cluster for source connector
|
|
36765
36865
|
* @param {string} sourceId The ID of the Source
|
|
36766
36866
|
* @param {*} [axiosOptions] Override http request option.
|
|
36767
36867
|
* @throws {RequiredError}
|
|
@@ -36827,7 +36927,7 @@ var SourcesBetaApiFactory = function (configuration, basePath, axios) {
|
|
|
36827
36927
|
},
|
|
36828
36928
|
/**
|
|
36829
36929
|
* 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.
|
|
36830
|
-
* @summary Test configuration for
|
|
36930
|
+
* @summary Test configuration for source connector
|
|
36831
36931
|
* @param {string} sourceId The ID of the Source
|
|
36832
36932
|
* @param {*} [axiosOptions] Override http request option.
|
|
36833
36933
|
* @throws {RequiredError}
|
|
@@ -36837,7 +36937,7 @@ var SourcesBetaApiFactory = function (configuration, basePath, axios) {
|
|
|
36837
36937
|
},
|
|
36838
36938
|
/**
|
|
36839
36939
|
* 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.
|
|
36840
|
-
* @summary Check connection for
|
|
36940
|
+
* @summary Check connection for source connector.
|
|
36841
36941
|
* @param {string} sourceId The ID of the Source.
|
|
36842
36942
|
* @param {*} [axiosOptions] Override http request option.
|
|
36843
36943
|
* @throws {RequiredError}
|
|
@@ -37155,7 +37255,7 @@ var SourcesBetaApi = /** @class */ (function (_super) {
|
|
|
37155
37255
|
};
|
|
37156
37256
|
/**
|
|
37157
37257
|
* Retrieves a sample of data returned from account and group aggregation requests. A token with ORG_ADMIN authority is required to call this API.
|
|
37158
|
-
* @summary Peek resource objects
|
|
37258
|
+
* @summary Peek source connector\'s resource objects
|
|
37159
37259
|
* @param {SourcesBetaApiPeekResourceObjectsRequest} requestParameters Request parameters.
|
|
37160
37260
|
* @param {*} [axiosOptions] Override http request option.
|
|
37161
37261
|
* @throws {RequiredError}
|
|
@@ -37167,7 +37267,7 @@ var SourcesBetaApi = /** @class */ (function (_super) {
|
|
|
37167
37267
|
};
|
|
37168
37268
|
/**
|
|
37169
37269
|
* 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.
|
|
37170
|
-
* @summary Ping cluster for
|
|
37270
|
+
* @summary Ping cluster for source connector
|
|
37171
37271
|
* @param {SourcesBetaApiPingClusterRequest} requestParameters Request parameters.
|
|
37172
37272
|
* @param {*} [axiosOptions] Override http request option.
|
|
37173
37273
|
* @throws {RequiredError}
|
|
@@ -37239,7 +37339,7 @@ var SourcesBetaApi = /** @class */ (function (_super) {
|
|
|
37239
37339
|
};
|
|
37240
37340
|
/**
|
|
37241
37341
|
* 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.
|
|
37242
|
-
* @summary Test configuration for
|
|
37342
|
+
* @summary Test configuration for source connector
|
|
37243
37343
|
* @param {SourcesBetaApiTestSourceConfigurationRequest} requestParameters Request parameters.
|
|
37244
37344
|
* @param {*} [axiosOptions] Override http request option.
|
|
37245
37345
|
* @throws {RequiredError}
|
|
@@ -37251,7 +37351,7 @@ var SourcesBetaApi = /** @class */ (function (_super) {
|
|
|
37251
37351
|
};
|
|
37252
37352
|
/**
|
|
37253
37353
|
* 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.
|
|
37254
|
-
* @summary Check connection for
|
|
37354
|
+
* @summary Check connection for source connector.
|
|
37255
37355
|
* @param {SourcesBetaApiTestSourceConnectionRequest} requestParameters Request parameters.
|
|
37256
37356
|
* @param {*} [axiosOptions] Override http request option.
|
|
37257
37357
|
* @throws {RequiredError}
|