sailpoint-api-client 1.8.8 → 1.8.9
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/common.ts +2 -2
- package/beta/package.json +1 -1
- package/dist/beta/common.js +2 -2
- package/dist/nerm/common.js +2 -2
- package/dist/nermv2025/common.js +2 -2
- package/dist/v2024/common.js +2 -2
- package/dist/v2025/api.d.ts +14 -38
- package/dist/v2025/api.js +23 -47
- package/dist/v2025/api.js.map +1 -1
- package/dist/v2025/common.js +2 -2
- package/dist/v2026/api.d.ts +499 -561
- package/dist/v2026/api.js +292 -395
- package/dist/v2026/api.js.map +1 -1
- package/dist/v2026/common.js +2 -2
- package/dist/v3/common.js +2 -2
- package/nerm/README.md +2 -2
- package/nerm/common.ts +2 -2
- package/nerm/package.json +1 -1
- package/nermv2025/README.md +2 -2
- package/nermv2025/common.ts +2 -2
- package/nermv2025/package.json +1 -1
- package/package.json +1 -1
- package/v2024/README.md +2 -2
- package/v2024/common.ts +2 -2
- package/v2024/package.json +1 -1
- package/v2025/README.md +2 -2
- package/v2025/api.ts +23 -71
- package/v2025/common.ts +2 -2
- package/v2025/package.json +1 -1
- package/v2026/README.md +2 -2
- package/v2026/api.ts +793 -911
- package/v2026/common.ts +2 -2
- package/v2026/package.json +1 -1
- package/v3/README.md +2 -2
- package/v3/common.ts +2 -2
- package/v3/package.json +1 -1
package/dist/v2025/api.js
CHANGED
|
@@ -52295,11 +52295,10 @@ var MachineAccountsV2025ApiAxiosParamCreator = function (configuration) {
|
|
|
52295
52295
|
* Use this API to return the details for a single machine account by its ID.
|
|
52296
52296
|
* @summary Machine account details
|
|
52297
52297
|
* @param {string} id Machine Account ID.
|
|
52298
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
52299
52298
|
* @param {*} [axiosOptions] Override http request option.
|
|
52300
52299
|
* @throws {RequiredError}
|
|
52301
52300
|
*/
|
|
52302
|
-
getMachineAccount: function (id,
|
|
52301
|
+
getMachineAccount: function (id, axiosOptions) {
|
|
52303
52302
|
if (axiosOptions === void 0) { axiosOptions = {}; }
|
|
52304
52303
|
return __awaiter(_this, void 0, void 0, function () {
|
|
52305
52304
|
var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
@@ -52308,9 +52307,6 @@ var MachineAccountsV2025ApiAxiosParamCreator = function (configuration) {
|
|
|
52308
52307
|
case 0:
|
|
52309
52308
|
// verify required parameter 'id' is not null or undefined
|
|
52310
52309
|
(0, common_1.assertParamExists)('getMachineAccount', 'id', id);
|
|
52311
|
-
if (xSailPointExperimental === undefined) {
|
|
52312
|
-
xSailPointExperimental = 'true';
|
|
52313
|
-
}
|
|
52314
52310
|
localVarPath = "/machine-accounts/{id}"
|
|
52315
52311
|
.replace("{".concat("id", "}"), encodeURIComponent(String(id)));
|
|
52316
52312
|
localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
@@ -52337,9 +52333,6 @@ var MachineAccountsV2025ApiAxiosParamCreator = function (configuration) {
|
|
|
52337
52333
|
// authentication userAuth required
|
|
52338
52334
|
// oauth required
|
|
52339
52335
|
_a.sent();
|
|
52340
|
-
if (xSailPointExperimental != null) {
|
|
52341
|
-
localVarHeaderParameter['X-SailPoint-Experimental'] = String(xSailPointExperimental);
|
|
52342
|
-
}
|
|
52343
52336
|
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
52344
52337
|
headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
52345
52338
|
localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), axiosOptions.headers);
|
|
@@ -52593,20 +52586,16 @@ var MachineAccountsV2025ApiAxiosParamCreator = function (configuration) {
|
|
|
52593
52586
|
* @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.
|
|
52594
52587
|
* @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* **nativeIdentity**: *eq, in, sw* **uuid**: *eq, in* **description**: *eq, in, sw* **machineIdentity.id**: *eq, in* **machineIdentity.name**: *eq, in, sw* **subtype.technicalName**: *eq, in, sw* **subtype.displayName**: *eq, in, sw* **accessType**: *eq, in, sw* **environment**: *eq, in, sw* **ownerIdentity**: *eq, in* **ownerIdentity.id**: *eq, in* **ownerIdentity.name**: *eq, in, sw* **manuallyCorrelated**: *eq* **enabled**: *eq* **locked**: *eq* **hasEntitlements**: *eq* **attributes**: *eq* **source.id**: *eq, in* **source.name**: *eq, in, sw* **created**: *eq, gt, lt, ge, le* **modified**: *eq, gt, lt, ge, le*
|
|
52595
52588
|
* @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, nativeIdentity, ownerIdentity, uuid, description, machineIdentity.id, machineIdentity.name, subtype.technicalName, subtype.displayName, accessType, environment, manuallyCorrelated, enabled, locked, hasEntitlements, ownerIdentity.id, ownerIdentity.name, attributes, source.id, source.name, created, modified**
|
|
52596
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
52597
52589
|
* @param {*} [axiosOptions] Override http request option.
|
|
52598
52590
|
* @throws {RequiredError}
|
|
52599
52591
|
*/
|
|
52600
|
-
listMachineAccounts: function (limit, offset, count, filters, sorters,
|
|
52592
|
+
listMachineAccounts: function (limit, offset, count, filters, sorters, axiosOptions) {
|
|
52601
52593
|
if (axiosOptions === void 0) { axiosOptions = {}; }
|
|
52602
52594
|
return __awaiter(_this, void 0, void 0, function () {
|
|
52603
52595
|
var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
52604
52596
|
return __generator(this, function (_a) {
|
|
52605
52597
|
switch (_a.label) {
|
|
52606
52598
|
case 0:
|
|
52607
|
-
if (xSailPointExperimental === undefined) {
|
|
52608
|
-
xSailPointExperimental = 'true';
|
|
52609
|
-
}
|
|
52610
52599
|
localVarPath = "/machine-accounts";
|
|
52611
52600
|
localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
52612
52601
|
if (configuration) {
|
|
@@ -52647,9 +52636,6 @@ var MachineAccountsV2025ApiAxiosParamCreator = function (configuration) {
|
|
|
52647
52636
|
if (sorters !== undefined) {
|
|
52648
52637
|
localVarQueryParameter['sorters'] = sorters;
|
|
52649
52638
|
}
|
|
52650
|
-
if (xSailPointExperimental != null) {
|
|
52651
|
-
localVarHeaderParameter['X-SailPoint-Experimental'] = String(xSailPointExperimental);
|
|
52652
|
-
}
|
|
52653
52639
|
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
52654
52640
|
headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
52655
52641
|
localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), axiosOptions.headers);
|
|
@@ -52745,11 +52731,10 @@ var MachineAccountsV2025ApiAxiosParamCreator = function (configuration) {
|
|
|
52745
52731
|
* @summary Update a machine account
|
|
52746
52732
|
* @param {string} id Machine Account ID.
|
|
52747
52733
|
* @param {Array<object>} requestBody A JSON of updated values [JSON Patch](https://tools.ietf.org/html/rfc6902) standard. The following fields are patchable: * description * ownerIdentity * subType * accessType * environment * attributes * classificationMethod * manuallyEdited * nativeIdentity * uuid * source * manuallyCorrelated * enabled * locked * hasEntitlements * connectorAttributes
|
|
52748
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
52749
52734
|
* @param {*} [axiosOptions] Override http request option.
|
|
52750
52735
|
* @throws {RequiredError}
|
|
52751
52736
|
*/
|
|
52752
|
-
updateMachineAccount: function (id, requestBody,
|
|
52737
|
+
updateMachineAccount: function (id, requestBody, axiosOptions) {
|
|
52753
52738
|
if (axiosOptions === void 0) { axiosOptions = {}; }
|
|
52754
52739
|
return __awaiter(_this, void 0, void 0, function () {
|
|
52755
52740
|
var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
@@ -52760,9 +52745,6 @@ var MachineAccountsV2025ApiAxiosParamCreator = function (configuration) {
|
|
|
52760
52745
|
(0, common_1.assertParamExists)('updateMachineAccount', 'id', id);
|
|
52761
52746
|
// verify required parameter 'requestBody' is not null or undefined
|
|
52762
52747
|
(0, common_1.assertParamExists)('updateMachineAccount', 'requestBody', requestBody);
|
|
52763
|
-
if (xSailPointExperimental === undefined) {
|
|
52764
|
-
xSailPointExperimental = 'true';
|
|
52765
|
-
}
|
|
52766
52748
|
localVarPath = "/machine-accounts/{id}"
|
|
52767
52749
|
.replace("{".concat("id", "}"), encodeURIComponent(String(id)));
|
|
52768
52750
|
localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
@@ -52800,9 +52782,6 @@ var MachineAccountsV2025ApiAxiosParamCreator = function (configuration) {
|
|
|
52800
52782
|
// oauth required
|
|
52801
52783
|
_a.sent();
|
|
52802
52784
|
localVarHeaderParameter['Content-Type'] = 'application/json-patch+json';
|
|
52803
|
-
if (xSailPointExperimental != null) {
|
|
52804
|
-
localVarHeaderParameter['X-SailPoint-Experimental'] = String(xSailPointExperimental);
|
|
52805
|
-
}
|
|
52806
52785
|
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
52807
52786
|
headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
52808
52787
|
localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), axiosOptions.headers);
|
|
@@ -52879,17 +52858,16 @@ var MachineAccountsV2025ApiFp = function (configuration) {
|
|
|
52879
52858
|
* Use this API to return the details for a single machine account by its ID.
|
|
52880
52859
|
* @summary Machine account details
|
|
52881
52860
|
* @param {string} id Machine Account ID.
|
|
52882
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
52883
52861
|
* @param {*} [axiosOptions] Override http request option.
|
|
52884
52862
|
* @throws {RequiredError}
|
|
52885
52863
|
*/
|
|
52886
|
-
getMachineAccount: function (id,
|
|
52864
|
+
getMachineAccount: function (id, axiosOptions) {
|
|
52887
52865
|
var _a, _b, _c;
|
|
52888
52866
|
return __awaiter(this, void 0, void 0, function () {
|
|
52889
52867
|
var localVarAxiosArgs, localVarOperationServerIndex, localVarOperationServerBasePath;
|
|
52890
52868
|
return __generator(this, function (_d) {
|
|
52891
52869
|
switch (_d.label) {
|
|
52892
|
-
case 0: return [4 /*yield*/, localVarAxiosParamCreator.getMachineAccount(id,
|
|
52870
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.getMachineAccount(id, axiosOptions)];
|
|
52893
52871
|
case 1:
|
|
52894
52872
|
localVarAxiosArgs = _d.sent();
|
|
52895
52873
|
localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
@@ -52985,17 +52963,16 @@ var MachineAccountsV2025ApiFp = function (configuration) {
|
|
|
52985
52963
|
* @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.
|
|
52986
52964
|
* @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* **nativeIdentity**: *eq, in, sw* **uuid**: *eq, in* **description**: *eq, in, sw* **machineIdentity.id**: *eq, in* **machineIdentity.name**: *eq, in, sw* **subtype.technicalName**: *eq, in, sw* **subtype.displayName**: *eq, in, sw* **accessType**: *eq, in, sw* **environment**: *eq, in, sw* **ownerIdentity**: *eq, in* **ownerIdentity.id**: *eq, in* **ownerIdentity.name**: *eq, in, sw* **manuallyCorrelated**: *eq* **enabled**: *eq* **locked**: *eq* **hasEntitlements**: *eq* **attributes**: *eq* **source.id**: *eq, in* **source.name**: *eq, in, sw* **created**: *eq, gt, lt, ge, le* **modified**: *eq, gt, lt, ge, le*
|
|
52987
52965
|
* @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, nativeIdentity, ownerIdentity, uuid, description, machineIdentity.id, machineIdentity.name, subtype.technicalName, subtype.displayName, accessType, environment, manuallyCorrelated, enabled, locked, hasEntitlements, ownerIdentity.id, ownerIdentity.name, attributes, source.id, source.name, created, modified**
|
|
52988
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
52989
52966
|
* @param {*} [axiosOptions] Override http request option.
|
|
52990
52967
|
* @throws {RequiredError}
|
|
52991
52968
|
*/
|
|
52992
|
-
listMachineAccounts: function (limit, offset, count, filters, sorters,
|
|
52969
|
+
listMachineAccounts: function (limit, offset, count, filters, sorters, axiosOptions) {
|
|
52993
52970
|
var _a, _b, _c;
|
|
52994
52971
|
return __awaiter(this, void 0, void 0, function () {
|
|
52995
52972
|
var localVarAxiosArgs, localVarOperationServerIndex, localVarOperationServerBasePath;
|
|
52996
52973
|
return __generator(this, function (_d) {
|
|
52997
52974
|
switch (_d.label) {
|
|
52998
|
-
case 0: return [4 /*yield*/, localVarAxiosParamCreator.listMachineAccounts(limit, offset, count, filters, sorters,
|
|
52975
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.listMachineAccounts(limit, offset, count, filters, sorters, axiosOptions)];
|
|
52999
52976
|
case 1:
|
|
53000
52977
|
localVarAxiosArgs = _d.sent();
|
|
53001
52978
|
localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
@@ -53036,17 +53013,16 @@ var MachineAccountsV2025ApiFp = function (configuration) {
|
|
|
53036
53013
|
* @summary Update a machine account
|
|
53037
53014
|
* @param {string} id Machine Account ID.
|
|
53038
53015
|
* @param {Array<object>} requestBody A JSON of updated values [JSON Patch](https://tools.ietf.org/html/rfc6902) standard. The following fields are patchable: * description * ownerIdentity * subType * accessType * environment * attributes * classificationMethod * manuallyEdited * nativeIdentity * uuid * source * manuallyCorrelated * enabled * locked * hasEntitlements * connectorAttributes
|
|
53039
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
53040
53016
|
* @param {*} [axiosOptions] Override http request option.
|
|
53041
53017
|
* @throws {RequiredError}
|
|
53042
53018
|
*/
|
|
53043
|
-
updateMachineAccount: function (id, requestBody,
|
|
53019
|
+
updateMachineAccount: function (id, requestBody, axiosOptions) {
|
|
53044
53020
|
var _a, _b, _c;
|
|
53045
53021
|
return __awaiter(this, void 0, void 0, function () {
|
|
53046
53022
|
var localVarAxiosArgs, localVarOperationServerIndex, localVarOperationServerBasePath;
|
|
53047
53023
|
return __generator(this, function (_d) {
|
|
53048
53024
|
switch (_d.label) {
|
|
53049
|
-
case 0: return [4 /*yield*/, localVarAxiosParamCreator.updateMachineAccount(id, requestBody,
|
|
53025
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.updateMachineAccount(id, requestBody, axiosOptions)];
|
|
53050
53026
|
case 1:
|
|
53051
53027
|
localVarAxiosArgs = _d.sent();
|
|
53052
53028
|
localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
@@ -53094,7 +53070,7 @@ var MachineAccountsV2025ApiFactory = function (configuration, basePath, axios) {
|
|
|
53094
53070
|
* @throws {RequiredError}
|
|
53095
53071
|
*/
|
|
53096
53072
|
getMachineAccount: function (requestParameters, axiosOptions) {
|
|
53097
|
-
return localVarFp.getMachineAccount(requestParameters.id,
|
|
53073
|
+
return localVarFp.getMachineAccount(requestParameters.id, axiosOptions).then(function (request) { return request(axios, basePath); });
|
|
53098
53074
|
},
|
|
53099
53075
|
/**
|
|
53100
53076
|
* Get a machine account subtype by its unique ID.
|
|
@@ -53135,7 +53111,7 @@ var MachineAccountsV2025ApiFactory = function (configuration, basePath, axios) {
|
|
|
53135
53111
|
*/
|
|
53136
53112
|
listMachineAccounts: function (requestParameters, axiosOptions) {
|
|
53137
53113
|
if (requestParameters === void 0) { requestParameters = {}; }
|
|
53138
|
-
return localVarFp.listMachineAccounts(requestParameters.limit, requestParameters.offset, requestParameters.count, requestParameters.filters, requestParameters.sorters,
|
|
53114
|
+
return localVarFp.listMachineAccounts(requestParameters.limit, requestParameters.offset, requestParameters.count, requestParameters.filters, requestParameters.sorters, axiosOptions).then(function (request) { return request(axios, basePath); });
|
|
53139
53115
|
},
|
|
53140
53116
|
/**
|
|
53141
53117
|
* Update fields of a machine account subtype by source ID and technical name. Patchable fields include: `displayName`, `description`.
|
|
@@ -53155,7 +53131,7 @@ var MachineAccountsV2025ApiFactory = function (configuration, basePath, axios) {
|
|
|
53155
53131
|
* @throws {RequiredError}
|
|
53156
53132
|
*/
|
|
53157
53133
|
updateMachineAccount: function (requestParameters, axiosOptions) {
|
|
53158
|
-
return localVarFp.updateMachineAccount(requestParameters.id, requestParameters.requestBody,
|
|
53134
|
+
return localVarFp.updateMachineAccount(requestParameters.id, requestParameters.requestBody, axiosOptions).then(function (request) { return request(axios, basePath); });
|
|
53159
53135
|
},
|
|
53160
53136
|
};
|
|
53161
53137
|
};
|
|
@@ -53205,7 +53181,7 @@ var MachineAccountsV2025Api = /** @class */ (function (_super) {
|
|
|
53205
53181
|
*/
|
|
53206
53182
|
MachineAccountsV2025Api.prototype.getMachineAccount = function (requestParameters, axiosOptions) {
|
|
53207
53183
|
var _this = this;
|
|
53208
|
-
return (0, exports.MachineAccountsV2025ApiFp)(this.configuration).getMachineAccount(requestParameters.id,
|
|
53184
|
+
return (0, exports.MachineAccountsV2025ApiFp)(this.configuration).getMachineAccount(requestParameters.id, axiosOptions).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
53209
53185
|
};
|
|
53210
53186
|
/**
|
|
53211
53187
|
* Get a machine account subtype by its unique ID.
|
|
@@ -53254,7 +53230,7 @@ var MachineAccountsV2025Api = /** @class */ (function (_super) {
|
|
|
53254
53230
|
MachineAccountsV2025Api.prototype.listMachineAccounts = function (requestParameters, axiosOptions) {
|
|
53255
53231
|
var _this = this;
|
|
53256
53232
|
if (requestParameters === void 0) { requestParameters = {}; }
|
|
53257
|
-
return (0, exports.MachineAccountsV2025ApiFp)(this.configuration).listMachineAccounts(requestParameters.limit, requestParameters.offset, requestParameters.count, requestParameters.filters, requestParameters.sorters,
|
|
53233
|
+
return (0, exports.MachineAccountsV2025ApiFp)(this.configuration).listMachineAccounts(requestParameters.limit, requestParameters.offset, requestParameters.count, requestParameters.filters, requestParameters.sorters, axiosOptions).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
53258
53234
|
};
|
|
53259
53235
|
/**
|
|
53260
53236
|
* Update fields of a machine account subtype by source ID and technical name. Patchable fields include: `displayName`, `description`.
|
|
@@ -53278,7 +53254,7 @@ var MachineAccountsV2025Api = /** @class */ (function (_super) {
|
|
|
53278
53254
|
*/
|
|
53279
53255
|
MachineAccountsV2025Api.prototype.updateMachineAccount = function (requestParameters, axiosOptions) {
|
|
53280
53256
|
var _this = this;
|
|
53281
|
-
return (0, exports.MachineAccountsV2025ApiFp)(this.configuration).updateMachineAccount(requestParameters.id, requestParameters.requestBody,
|
|
53257
|
+
return (0, exports.MachineAccountsV2025ApiFp)(this.configuration).updateMachineAccount(requestParameters.id, requestParameters.requestBody, axiosOptions).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
53282
53258
|
};
|
|
53283
53259
|
return MachineAccountsV2025Api;
|
|
53284
53260
|
}(base_1.BaseAPI));
|
|
@@ -90786,7 +90762,7 @@ var TaskManagementV2025ApiAxiosParamCreator = function (configuration) {
|
|
|
90786
90762
|
var _this = this;
|
|
90787
90763
|
return {
|
|
90788
90764
|
/**
|
|
90789
|
-
* This API is being deprecated. Please use the [task-status-list](https://developer.sailpoint.com/docs/api/
|
|
90765
|
+
* This API is being deprecated. Please use the [task-status-list](https://developer.sailpoint.com/docs/api/v2026/get-task-status-list) endpoint with isnull filtering on the completionStatus field and count=true. Example: /v2026/task-status?count=true&filters=completionStatus isnull Responds with headers only for list of task statuses for pending tasks.
|
|
90790
90766
|
* @summary Retrieve pending task list headers
|
|
90791
90767
|
* @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.
|
|
90792
90768
|
* @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.
|
|
@@ -90858,7 +90834,7 @@ var TaskManagementV2025ApiAxiosParamCreator = function (configuration) {
|
|
|
90858
90834
|
});
|
|
90859
90835
|
},
|
|
90860
90836
|
/**
|
|
90861
|
-
* This API is being deprecated. Please use the [task-status-list](https://developer.sailpoint.com/docs/api/
|
|
90837
|
+
* This API is being deprecated. Please use the [task-status-list](https://developer.sailpoint.com/docs/api/v2026/get-task-status-list) endpoint with isnull filtering on the completionStatus field to retrieve pending tasks. Example: /v2026/task-status?filters=completionStatus isnull Retrieve a list of statuses for pending tasks. Types of tasks include account and entitlement aggregation and other general background processing tasks. Data for tasks older than 90 days will not be returned.
|
|
90862
90838
|
* @summary Retrieve pending task status list
|
|
90863
90839
|
* @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.
|
|
90864
90840
|
* @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.
|
|
@@ -91140,7 +91116,7 @@ var TaskManagementV2025ApiFp = function (configuration) {
|
|
|
91140
91116
|
var localVarAxiosParamCreator = (0, exports.TaskManagementV2025ApiAxiosParamCreator)(configuration);
|
|
91141
91117
|
return {
|
|
91142
91118
|
/**
|
|
91143
|
-
* This API is being deprecated. Please use the [task-status-list](https://developer.sailpoint.com/docs/api/
|
|
91119
|
+
* This API is being deprecated. Please use the [task-status-list](https://developer.sailpoint.com/docs/api/v2026/get-task-status-list) endpoint with isnull filtering on the completionStatus field and count=true. Example: /v2026/task-status?count=true&filters=completionStatus isnull Responds with headers only for list of task statuses for pending tasks.
|
|
91144
91120
|
* @summary Retrieve pending task list headers
|
|
91145
91121
|
* @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.
|
|
91146
91122
|
* @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.
|
|
@@ -91166,7 +91142,7 @@ var TaskManagementV2025ApiFp = function (configuration) {
|
|
|
91166
91142
|
});
|
|
91167
91143
|
},
|
|
91168
91144
|
/**
|
|
91169
|
-
* This API is being deprecated. Please use the [task-status-list](https://developer.sailpoint.com/docs/api/
|
|
91145
|
+
* This API is being deprecated. Please use the [task-status-list](https://developer.sailpoint.com/docs/api/v2026/get-task-status-list) endpoint with isnull filtering on the completionStatus field to retrieve pending tasks. Example: /v2026/task-status?filters=completionStatus isnull Retrieve a list of statuses for pending tasks. Types of tasks include account and entitlement aggregation and other general background processing tasks. Data for tasks older than 90 days will not be returned.
|
|
91170
91146
|
* @summary Retrieve pending task status list
|
|
91171
91147
|
* @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.
|
|
91172
91148
|
* @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.
|
|
@@ -91276,7 +91252,7 @@ var TaskManagementV2025ApiFactory = function (configuration, basePath, axios) {
|
|
|
91276
91252
|
var localVarFp = (0, exports.TaskManagementV2025ApiFp)(configuration);
|
|
91277
91253
|
return {
|
|
91278
91254
|
/**
|
|
91279
|
-
* This API is being deprecated. Please use the [task-status-list](https://developer.sailpoint.com/docs/api/
|
|
91255
|
+
* This API is being deprecated. Please use the [task-status-list](https://developer.sailpoint.com/docs/api/v2026/get-task-status-list) endpoint with isnull filtering on the completionStatus field and count=true. Example: /v2026/task-status?count=true&filters=completionStatus isnull Responds with headers only for list of task statuses for pending tasks.
|
|
91280
91256
|
* @summary Retrieve pending task list headers
|
|
91281
91257
|
* @param {TaskManagementV2025ApiGetPendingTaskHeadersRequest} requestParameters Request parameters.
|
|
91282
91258
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -91288,7 +91264,7 @@ var TaskManagementV2025ApiFactory = function (configuration, basePath, axios) {
|
|
|
91288
91264
|
return localVarFp.getPendingTaskHeaders(requestParameters.offset, requestParameters.limit, requestParameters.count, axiosOptions).then(function (request) { return request(axios, basePath); });
|
|
91289
91265
|
},
|
|
91290
91266
|
/**
|
|
91291
|
-
* This API is being deprecated. Please use the [task-status-list](https://developer.sailpoint.com/docs/api/
|
|
91267
|
+
* This API is being deprecated. Please use the [task-status-list](https://developer.sailpoint.com/docs/api/v2026/get-task-status-list) endpoint with isnull filtering on the completionStatus field to retrieve pending tasks. Example: /v2026/task-status?filters=completionStatus isnull Retrieve a list of statuses for pending tasks. Types of tasks include account and entitlement aggregation and other general background processing tasks. Data for tasks older than 90 days will not be returned.
|
|
91292
91268
|
* @summary Retrieve pending task status list
|
|
91293
91269
|
* @param {TaskManagementV2025ApiGetPendingTasksRequest} requestParameters Request parameters.
|
|
91294
91270
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -91345,7 +91321,7 @@ var TaskManagementV2025Api = /** @class */ (function (_super) {
|
|
|
91345
91321
|
return _super !== null && _super.apply(this, arguments) || this;
|
|
91346
91322
|
}
|
|
91347
91323
|
/**
|
|
91348
|
-
* This API is being deprecated. Please use the [task-status-list](https://developer.sailpoint.com/docs/api/
|
|
91324
|
+
* This API is being deprecated. Please use the [task-status-list](https://developer.sailpoint.com/docs/api/v2026/get-task-status-list) endpoint with isnull filtering on the completionStatus field and count=true. Example: /v2026/task-status?count=true&filters=completionStatus isnull Responds with headers only for list of task statuses for pending tasks.
|
|
91349
91325
|
* @summary Retrieve pending task list headers
|
|
91350
91326
|
* @param {TaskManagementV2025ApiGetPendingTaskHeadersRequest} requestParameters Request parameters.
|
|
91351
91327
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -91359,7 +91335,7 @@ var TaskManagementV2025Api = /** @class */ (function (_super) {
|
|
|
91359
91335
|
return (0, exports.TaskManagementV2025ApiFp)(this.configuration).getPendingTaskHeaders(requestParameters.offset, requestParameters.limit, requestParameters.count, axiosOptions).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
91360
91336
|
};
|
|
91361
91337
|
/**
|
|
91362
|
-
* This API is being deprecated. Please use the [task-status-list](https://developer.sailpoint.com/docs/api/
|
|
91338
|
+
* This API is being deprecated. Please use the [task-status-list](https://developer.sailpoint.com/docs/api/v2026/get-task-status-list) endpoint with isnull filtering on the completionStatus field to retrieve pending tasks. Example: /v2026/task-status?filters=completionStatus isnull Retrieve a list of statuses for pending tasks. Types of tasks include account and entitlement aggregation and other general background processing tasks. Data for tasks older than 90 days will not be returned.
|
|
91363
91339
|
* @summary Retrieve pending task status list
|
|
91364
91340
|
* @param {TaskManagementV2025ApiGetPendingTasksRequest} requestParameters Request parameters.
|
|
91365
91341
|
* @param {*} [axiosOptions] Override http request option.
|