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/beta/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
## sailpoint-sdk@1.8.
|
|
1
|
+
## sailpoint-sdk@1.8.9
|
|
2
2
|
|
|
3
3
|
This generator creates TypeScript/JavaScript client that utilizes [axios](https://github.com/axios/axios). The generated Node module can be used in the following environments:
|
|
4
4
|
|
|
@@ -36,7 +36,7 @@ navigate to the folder of your consuming project and run one of the following co
|
|
|
36
36
|
_published:_
|
|
37
37
|
|
|
38
38
|
```
|
|
39
|
-
npm install sailpoint-sdk@1.8.
|
|
39
|
+
npm install sailpoint-sdk@1.8.9 --save
|
|
40
40
|
```
|
|
41
41
|
|
|
42
42
|
_unPublished (not recommended):_
|
package/beta/common.ts
CHANGED
|
@@ -146,14 +146,14 @@ export const toPathString = function (url: URL) {
|
|
|
146
146
|
export const createRequestFunction = function (axiosArgs: RequestArgs, globalAxios: AxiosInstance, BASE_PATH: string, configuration?: Configuration) {
|
|
147
147
|
return <T = unknown, R = AxiosResponse<T>>(axios: AxiosInstance = globalAxios, basePath: string = BASE_PATH) => {
|
|
148
148
|
axiosRetry(axios, configuration.retriesConfig)
|
|
149
|
-
let userAgent = `SailPoint-SDK-TypeScript/1.8.
|
|
149
|
+
let userAgent = `SailPoint-SDK-TypeScript/1.8.9`;
|
|
150
150
|
if (configuration?.consumerIdentifier && configuration?.consumerVersion) {
|
|
151
151
|
userAgent += ` (${configuration.consumerIdentifier}/${configuration.consumerVersion})`;
|
|
152
152
|
}
|
|
153
153
|
userAgent += ` (${process.platform}; ${process.arch}) Node/${process.versions.node} (openapi-generator/7.12.0)`;
|
|
154
154
|
const headers = {
|
|
155
155
|
...axiosArgs.axiosOptions.headers,
|
|
156
|
-
...{'X-SailPoint-SDK':'typescript-1.8.
|
|
156
|
+
...{'X-SailPoint-SDK':'typescript-1.8.9'},
|
|
157
157
|
...{'User-Agent': userAgent},
|
|
158
158
|
}
|
|
159
159
|
|
package/beta/package.json
CHANGED
package/dist/beta/common.js
CHANGED
|
@@ -250,12 +250,12 @@ var createRequestFunction = function (axiosArgs, globalAxios, BASE_PATH, configu
|
|
|
250
250
|
if (axios === void 0) { axios = globalAxios; }
|
|
251
251
|
if (basePath === void 0) { basePath = BASE_PATH; }
|
|
252
252
|
(0, axios_retry_1.default)(axios, configuration.retriesConfig);
|
|
253
|
-
var userAgent = "SailPoint-SDK-TypeScript/1.8.
|
|
253
|
+
var userAgent = "SailPoint-SDK-TypeScript/1.8.9";
|
|
254
254
|
if ((configuration === null || configuration === void 0 ? void 0 : configuration.consumerIdentifier) && (configuration === null || configuration === void 0 ? void 0 : configuration.consumerVersion)) {
|
|
255
255
|
userAgent += " (".concat(configuration.consumerIdentifier, "/").concat(configuration.consumerVersion, ")");
|
|
256
256
|
}
|
|
257
257
|
userAgent += " (".concat(process.platform, "; ").concat(process.arch, ") Node/").concat(process.versions.node, " (openapi-generator/7.12.0)");
|
|
258
|
-
var headers = __assign(__assign(__assign({}, axiosArgs.axiosOptions.headers), { 'X-SailPoint-SDK': 'typescript-1.8.
|
|
258
|
+
var headers = __assign(__assign(__assign({}, axiosArgs.axiosOptions.headers), { 'X-SailPoint-SDK': 'typescript-1.8.9' }), { 'User-Agent': userAgent });
|
|
259
259
|
if (!configuration.experimental && ("X-SailPoint-Experimental" in headers)) {
|
|
260
260
|
throw new Error("You are using Experimental APIs. Set configuration.experimental = True to enable these APIs in the SDK.");
|
|
261
261
|
}
|
package/dist/nerm/common.js
CHANGED
|
@@ -250,12 +250,12 @@ var createRequestFunction = function (axiosArgs, globalAxios, BASE_PATH, configu
|
|
|
250
250
|
if (axios === void 0) { axios = globalAxios; }
|
|
251
251
|
if (basePath === void 0) { basePath = BASE_PATH; }
|
|
252
252
|
(0, axios_retry_1.default)(axios, configuration.retriesConfig);
|
|
253
|
-
var userAgent = "SailPoint-SDK-TypeScript/1.8.
|
|
253
|
+
var userAgent = "SailPoint-SDK-TypeScript/1.8.9";
|
|
254
254
|
if ((configuration === null || configuration === void 0 ? void 0 : configuration.consumerIdentifier) && (configuration === null || configuration === void 0 ? void 0 : configuration.consumerVersion)) {
|
|
255
255
|
userAgent += " (".concat(configuration.consumerIdentifier, "/").concat(configuration.consumerVersion, ")");
|
|
256
256
|
}
|
|
257
257
|
userAgent += " (".concat(process.platform, "; ").concat(process.arch, ") Node/").concat(process.versions.node, " (openapi-generator/7.12.0)");
|
|
258
|
-
var headers = __assign(__assign(__assign({ 'Accept': 'application/json' }, axiosArgs.axiosOptions.headers), { 'X-SailPoint-SDK': 'typescript-1.8.
|
|
258
|
+
var headers = __assign(__assign(__assign({ 'Accept': 'application/json' }, axiosArgs.axiosOptions.headers), { 'X-SailPoint-SDK': 'typescript-1.8.9' }), { 'User-Agent': userAgent });
|
|
259
259
|
if (!configuration.experimental && ("X-SailPoint-Experimental" in headers)) {
|
|
260
260
|
throw new Error("You are using Experimental APIs. Set configuration.experimental = True to enable these APIs in the SDK.");
|
|
261
261
|
}
|
package/dist/nermv2025/common.js
CHANGED
|
@@ -250,12 +250,12 @@ var createRequestFunction = function (axiosArgs, globalAxios, BASE_PATH, configu
|
|
|
250
250
|
if (axios === void 0) { axios = globalAxios; }
|
|
251
251
|
if (basePath === void 0) { basePath = BASE_PATH; }
|
|
252
252
|
(0, axios_retry_1.default)(axios, configuration.retriesConfig);
|
|
253
|
-
var userAgent = "SailPoint-SDK-TypeScript/1.8.
|
|
253
|
+
var userAgent = "SailPoint-SDK-TypeScript/1.8.9";
|
|
254
254
|
if ((configuration === null || configuration === void 0 ? void 0 : configuration.consumerIdentifier) && (configuration === null || configuration === void 0 ? void 0 : configuration.consumerVersion)) {
|
|
255
255
|
userAgent += " (".concat(configuration.consumerIdentifier, "/").concat(configuration.consumerVersion, ")");
|
|
256
256
|
}
|
|
257
257
|
userAgent += " (".concat(process.platform, "; ").concat(process.arch, ") Node/").concat(process.versions.node, " (openapi-generator/7.12.0)");
|
|
258
|
-
var headers = __assign(__assign(__assign({ 'Accept': 'application/json' }, axiosArgs.axiosOptions.headers), { 'X-SailPoint-SDK': 'typescript-1.8.
|
|
258
|
+
var headers = __assign(__assign(__assign({ 'Accept': 'application/json' }, axiosArgs.axiosOptions.headers), { 'X-SailPoint-SDK': 'typescript-1.8.9' }), { 'User-Agent': userAgent });
|
|
259
259
|
if (!configuration.experimental && ("X-SailPoint-Experimental" in headers)) {
|
|
260
260
|
throw new Error("You are using Experimental APIs. Set configuration.experimental = True to enable these APIs in the SDK.");
|
|
261
261
|
}
|
package/dist/v2024/common.js
CHANGED
|
@@ -250,12 +250,12 @@ var createRequestFunction = function (axiosArgs, globalAxios, BASE_PATH, configu
|
|
|
250
250
|
if (axios === void 0) { axios = globalAxios; }
|
|
251
251
|
if (basePath === void 0) { basePath = BASE_PATH; }
|
|
252
252
|
(0, axios_retry_1.default)(axios, configuration.retriesConfig);
|
|
253
|
-
var userAgent = "SailPoint-SDK-TypeScript/1.8.
|
|
253
|
+
var userAgent = "SailPoint-SDK-TypeScript/1.8.9";
|
|
254
254
|
if ((configuration === null || configuration === void 0 ? void 0 : configuration.consumerIdentifier) && (configuration === null || configuration === void 0 ? void 0 : configuration.consumerVersion)) {
|
|
255
255
|
userAgent += " (".concat(configuration.consumerIdentifier, "/").concat(configuration.consumerVersion, ")");
|
|
256
256
|
}
|
|
257
257
|
userAgent += " (".concat(process.platform, "; ").concat(process.arch, ") Node/").concat(process.versions.node, " (openapi-generator/7.12.0)");
|
|
258
|
-
var headers = __assign(__assign(__assign({}, axiosArgs.axiosOptions.headers), { 'X-SailPoint-SDK': 'typescript-1.8.
|
|
258
|
+
var headers = __assign(__assign(__assign({}, axiosArgs.axiosOptions.headers), { 'X-SailPoint-SDK': 'typescript-1.8.9' }), { 'User-Agent': userAgent });
|
|
259
259
|
if (!configuration.experimental && ("X-SailPoint-Experimental" in headers)) {
|
|
260
260
|
throw new Error("You are using Experimental APIs. Set configuration.experimental = True to enable these APIs in the SDK.");
|
|
261
261
|
}
|
package/dist/v2025/api.d.ts
CHANGED
|
@@ -77101,11 +77101,10 @@ export declare const MachineAccountsV2025ApiAxiosParamCreator: (configuration?:
|
|
|
77101
77101
|
* Use this API to return the details for a single machine account by its ID.
|
|
77102
77102
|
* @summary Machine account details
|
|
77103
77103
|
* @param {string} id Machine Account ID.
|
|
77104
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
77105
77104
|
* @param {*} [axiosOptions] Override http request option.
|
|
77106
77105
|
* @throws {RequiredError}
|
|
77107
77106
|
*/
|
|
77108
|
-
getMachineAccount: (id: string,
|
|
77107
|
+
getMachineAccount: (id: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
77109
77108
|
/**
|
|
77110
77109
|
* Get a machine account subtype by its unique ID.
|
|
77111
77110
|
* @summary Retrieve subtype by subtype id
|
|
@@ -77147,11 +77146,10 @@ export declare const MachineAccountsV2025ApiAxiosParamCreator: (configuration?:
|
|
|
77147
77146
|
* @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.
|
|
77148
77147
|
* @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*
|
|
77149
77148
|
* @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**
|
|
77150
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
77151
77149
|
* @param {*} [axiosOptions] Override http request option.
|
|
77152
77150
|
* @throws {RequiredError}
|
|
77153
77151
|
*/
|
|
77154
|
-
listMachineAccounts: (limit?: number, offset?: number, count?: boolean, filters?: string, sorters?: string,
|
|
77152
|
+
listMachineAccounts: (limit?: number, offset?: number, count?: boolean, filters?: string, sorters?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
77155
77153
|
/**
|
|
77156
77154
|
* Update fields of a machine account subtype by source ID and technical name. Patchable fields include: `displayName`, `description`.
|
|
77157
77155
|
* @summary Patch subtype
|
|
@@ -77168,11 +77166,10 @@ export declare const MachineAccountsV2025ApiAxiosParamCreator: (configuration?:
|
|
|
77168
77166
|
* @summary Update a machine account
|
|
77169
77167
|
* @param {string} id Machine Account ID.
|
|
77170
77168
|
* @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
|
|
77171
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
77172
77169
|
* @param {*} [axiosOptions] Override http request option.
|
|
77173
77170
|
* @throws {RequiredError}
|
|
77174
77171
|
*/
|
|
77175
|
-
updateMachineAccount: (id: string, requestBody: Array<object>,
|
|
77172
|
+
updateMachineAccount: (id: string, requestBody: Array<object>, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
77176
77173
|
};
|
|
77177
77174
|
/**
|
|
77178
77175
|
* MachineAccountsV2025Api - functional programming interface
|
|
@@ -77203,11 +77200,10 @@ export declare const MachineAccountsV2025ApiFp: (configuration?: Configuration)
|
|
|
77203
77200
|
* Use this API to return the details for a single machine account by its ID.
|
|
77204
77201
|
* @summary Machine account details
|
|
77205
77202
|
* @param {string} id Machine Account ID.
|
|
77206
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
77207
77203
|
* @param {*} [axiosOptions] Override http request option.
|
|
77208
77204
|
* @throws {RequiredError}
|
|
77209
77205
|
*/
|
|
77210
|
-
getMachineAccount(id: string,
|
|
77206
|
+
getMachineAccount(id: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MachineAccountV2025>>;
|
|
77211
77207
|
/**
|
|
77212
77208
|
* Get a machine account subtype by its unique ID.
|
|
77213
77209
|
* @summary Retrieve subtype by subtype id
|
|
@@ -77249,11 +77245,10 @@ export declare const MachineAccountsV2025ApiFp: (configuration?: Configuration)
|
|
|
77249
77245
|
* @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.
|
|
77250
77246
|
* @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*
|
|
77251
77247
|
* @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**
|
|
77252
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
77253
77248
|
* @param {*} [axiosOptions] Override http request option.
|
|
77254
77249
|
* @throws {RequiredError}
|
|
77255
77250
|
*/
|
|
77256
|
-
listMachineAccounts(limit?: number, offset?: number, count?: boolean, filters?: string, sorters?: string,
|
|
77251
|
+
listMachineAccounts(limit?: number, offset?: number, count?: boolean, filters?: string, sorters?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<MachineAccountV2025>>>;
|
|
77257
77252
|
/**
|
|
77258
77253
|
* Update fields of a machine account subtype by source ID and technical name. Patchable fields include: `displayName`, `description`.
|
|
77259
77254
|
* @summary Patch subtype
|
|
@@ -77270,11 +77265,10 @@ export declare const MachineAccountsV2025ApiFp: (configuration?: Configuration)
|
|
|
77270
77265
|
* @summary Update a machine account
|
|
77271
77266
|
* @param {string} id Machine Account ID.
|
|
77272
77267
|
* @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
|
|
77273
|
-
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
77274
77268
|
* @param {*} [axiosOptions] Override http request option.
|
|
77275
77269
|
* @throws {RequiredError}
|
|
77276
77270
|
*/
|
|
77277
|
-
updateMachineAccount(id: string, requestBody: Array<object>,
|
|
77271
|
+
updateMachineAccount(id: string, requestBody: Array<object>, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MachineAccountV2025>>;
|
|
77278
77272
|
};
|
|
77279
77273
|
/**
|
|
77280
77274
|
* MachineAccountsV2025Api - factory interface
|
|
@@ -77416,12 +77410,6 @@ export interface MachineAccountsV2025ApiGetMachineAccountRequest {
|
|
|
77416
77410
|
* @memberof MachineAccountsV2025ApiGetMachineAccount
|
|
77417
77411
|
*/
|
|
77418
77412
|
readonly id: string;
|
|
77419
|
-
/**
|
|
77420
|
-
* Use this header to enable this experimental API.
|
|
77421
|
-
* @type {string}
|
|
77422
|
-
* @memberof MachineAccountsV2025ApiGetMachineAccount
|
|
77423
|
-
*/
|
|
77424
|
-
readonly xSailPointExperimental?: string;
|
|
77425
77413
|
}
|
|
77426
77414
|
/**
|
|
77427
77415
|
* Request parameters for getMachineAccountSubtypeById operation in MachineAccountsV2025Api.
|
|
@@ -77552,12 +77540,6 @@ export interface MachineAccountsV2025ApiListMachineAccountsRequest {
|
|
|
77552
77540
|
* @memberof MachineAccountsV2025ApiListMachineAccounts
|
|
77553
77541
|
*/
|
|
77554
77542
|
readonly sorters?: string;
|
|
77555
|
-
/**
|
|
77556
|
-
* Use this header to enable this experimental API.
|
|
77557
|
-
* @type {string}
|
|
77558
|
-
* @memberof MachineAccountsV2025ApiListMachineAccounts
|
|
77559
|
-
*/
|
|
77560
|
-
readonly xSailPointExperimental?: string;
|
|
77561
77543
|
}
|
|
77562
77544
|
/**
|
|
77563
77545
|
* Request parameters for patchMachineAccountSubtype operation in MachineAccountsV2025Api.
|
|
@@ -77608,12 +77590,6 @@ export interface MachineAccountsV2025ApiUpdateMachineAccountRequest {
|
|
|
77608
77590
|
* @memberof MachineAccountsV2025ApiUpdateMachineAccount
|
|
77609
77591
|
*/
|
|
77610
77592
|
readonly requestBody: Array<object>;
|
|
77611
|
-
/**
|
|
77612
|
-
* Use this header to enable this experimental API.
|
|
77613
|
-
* @type {string}
|
|
77614
|
-
* @memberof MachineAccountsV2025ApiUpdateMachineAccount
|
|
77615
|
-
*/
|
|
77616
|
-
readonly xSailPointExperimental?: string;
|
|
77617
77593
|
}
|
|
77618
77594
|
/**
|
|
77619
77595
|
* MachineAccountsV2025Api - object-oriented interface
|
|
@@ -96379,7 +96355,7 @@ export declare class TagsV2025Api extends BaseAPI {
|
|
|
96379
96355
|
*/
|
|
96380
96356
|
export declare const TaskManagementV2025ApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
96381
96357
|
/**
|
|
96382
|
-
* This API is being deprecated. Please use the [task-status-list](https://developer.sailpoint.com/docs/api/
|
|
96358
|
+
* 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.
|
|
96383
96359
|
* @summary Retrieve pending task list headers
|
|
96384
96360
|
* @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.
|
|
96385
96361
|
* @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.
|
|
@@ -96390,7 +96366,7 @@ export declare const TaskManagementV2025ApiAxiosParamCreator: (configuration?: C
|
|
|
96390
96366
|
*/
|
|
96391
96367
|
getPendingTaskHeaders: (offset?: number, limit?: number, count?: boolean, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
96392
96368
|
/**
|
|
96393
|
-
* This API is being deprecated. Please use the [task-status-list](https://developer.sailpoint.com/docs/api/
|
|
96369
|
+
* 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.
|
|
96394
96370
|
* @summary Retrieve pending task status list
|
|
96395
96371
|
* @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.
|
|
96396
96372
|
* @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.
|
|
@@ -96436,7 +96412,7 @@ export declare const TaskManagementV2025ApiAxiosParamCreator: (configuration?: C
|
|
|
96436
96412
|
*/
|
|
96437
96413
|
export declare const TaskManagementV2025ApiFp: (configuration?: Configuration) => {
|
|
96438
96414
|
/**
|
|
96439
|
-
* This API is being deprecated. Please use the [task-status-list](https://developer.sailpoint.com/docs/api/
|
|
96415
|
+
* 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.
|
|
96440
96416
|
* @summary Retrieve pending task list headers
|
|
96441
96417
|
* @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.
|
|
96442
96418
|
* @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.
|
|
@@ -96447,7 +96423,7 @@ export declare const TaskManagementV2025ApiFp: (configuration?: Configuration) =
|
|
|
96447
96423
|
*/
|
|
96448
96424
|
getPendingTaskHeaders(offset?: number, limit?: number, count?: boolean, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
96449
96425
|
/**
|
|
96450
|
-
* This API is being deprecated. Please use the [task-status-list](https://developer.sailpoint.com/docs/api/
|
|
96426
|
+
* 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.
|
|
96451
96427
|
* @summary Retrieve pending task status list
|
|
96452
96428
|
* @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.
|
|
96453
96429
|
* @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.
|
|
@@ -96493,7 +96469,7 @@ export declare const TaskManagementV2025ApiFp: (configuration?: Configuration) =
|
|
|
96493
96469
|
*/
|
|
96494
96470
|
export declare const TaskManagementV2025ApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
96495
96471
|
/**
|
|
96496
|
-
* This API is being deprecated. Please use the [task-status-list](https://developer.sailpoint.com/docs/api/
|
|
96472
|
+
* 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.
|
|
96497
96473
|
* @summary Retrieve pending task list headers
|
|
96498
96474
|
* @param {TaskManagementV2025ApiGetPendingTaskHeadersRequest} requestParameters Request parameters.
|
|
96499
96475
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -96502,7 +96478,7 @@ export declare const TaskManagementV2025ApiFactory: (configuration?: Configurati
|
|
|
96502
96478
|
*/
|
|
96503
96479
|
getPendingTaskHeaders(requestParameters?: TaskManagementV2025ApiGetPendingTaskHeadersRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
96504
96480
|
/**
|
|
96505
|
-
* This API is being deprecated. Please use the [task-status-list](https://developer.sailpoint.com/docs/api/
|
|
96481
|
+
* 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.
|
|
96506
96482
|
* @summary Retrieve pending task status list
|
|
96507
96483
|
* @param {TaskManagementV2025ApiGetPendingTasksRequest} requestParameters Request parameters.
|
|
96508
96484
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -96662,7 +96638,7 @@ export interface TaskManagementV2025ApiUpdateTaskStatusRequest {
|
|
|
96662
96638
|
*/
|
|
96663
96639
|
export declare class TaskManagementV2025Api extends BaseAPI {
|
|
96664
96640
|
/**
|
|
96665
|
-
* This API is being deprecated. Please use the [task-status-list](https://developer.sailpoint.com/docs/api/
|
|
96641
|
+
* 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.
|
|
96666
96642
|
* @summary Retrieve pending task list headers
|
|
96667
96643
|
* @param {TaskManagementV2025ApiGetPendingTaskHeadersRequest} requestParameters Request parameters.
|
|
96668
96644
|
* @param {*} [axiosOptions] Override http request option.
|
|
@@ -96672,7 +96648,7 @@ export declare class TaskManagementV2025Api extends BaseAPI {
|
|
|
96672
96648
|
*/
|
|
96673
96649
|
getPendingTaskHeaders(requestParameters?: TaskManagementV2025ApiGetPendingTaskHeadersRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
96674
96650
|
/**
|
|
96675
|
-
* This API is being deprecated. Please use the [task-status-list](https://developer.sailpoint.com/docs/api/
|
|
96651
|
+
* 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.
|
|
96676
96652
|
* @summary Retrieve pending task status list
|
|
96677
96653
|
* @param {TaskManagementV2025ApiGetPendingTasksRequest} requestParameters Request parameters.
|
|
96678
96654
|
* @param {*} [axiosOptions] Override http request option.
|