sailpoint-api-client 1.8.11 → 1.8.13
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/common.js +2 -2
- package/dist/v2026/api.d.ts +18 -82
- package/dist/v2026/api.js +42 -120
- 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/common.ts +2 -2
- package/v2025/package.json +1 -1
- package/v2026/README.md +2 -2
- package/v2026/api.ts +42 -186
- 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.13
|
|
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.13 --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.13`;
|
|
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.13'},
|
|
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.13";
|
|
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.13' }), { '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.13";
|
|
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.13' }), { '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.13";
|
|
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.13' }), { '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.13";
|
|
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.13' }), { '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/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.13";
|
|
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.13' }), { '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/v2026/api.d.ts
CHANGED
|
@@ -55115,17 +55115,15 @@ export declare const AccountDeletionRequestsV2026ApiAxiosParamCreator: (configur
|
|
|
55115
55115
|
/**
|
|
55116
55116
|
* Initiates an account deletion request for the specified account. This method validates the input data, processes the deletion request, and generates an asynchronous result containing a tracking ID. >**NOTE: You can only delete accounts from sources of the \"Connected\" type. which supports account deletion**
|
|
55117
55117
|
* @summary Delete account
|
|
55118
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
55119
55118
|
* @param {string} accountId Account ID.
|
|
55120
55119
|
* @param {AccountDeleteRequestInputV2026} [accountDeleteRequestInputV2026]
|
|
55121
55120
|
* @param {*} [axiosOptions] Override http request option.
|
|
55122
55121
|
* @throws {RequiredError}
|
|
55123
55122
|
*/
|
|
55124
|
-
deleteAccountRequest: (
|
|
55123
|
+
deleteAccountRequest: (accountId: string, accountDeleteRequestInputV2026?: AccountDeleteRequestInputV2026, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
55125
55124
|
/**
|
|
55126
55125
|
* Retrieves a paginated list of account deletion requests filtered by the provided query parameters. When the \"mine\" parameter is set to true, the response includes only those deletion requests that were initiated by the currently authenticated user. If \"mine\" is false or not specified, the endpoint returns all account deletion requests associated with the current tenant, regardless of the initiator. This allows both users and administrators to view relevant deletion requests based on their access level and intent.
|
|
55127
55126
|
* @summary List of Account Deletion Requests
|
|
55128
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
55129
55127
|
* @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.
|
|
55130
55128
|
* @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.
|
|
55131
55129
|
* @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.
|
|
@@ -55133,7 +55131,7 @@ export declare const AccountDeletionRequestsV2026ApiAxiosParamCreator: (configur
|
|
|
55133
55131
|
* @param {*} [axiosOptions] Override http request option.
|
|
55134
55132
|
* @throws {RequiredError}
|
|
55135
55133
|
*/
|
|
55136
|
-
getAccountDeletionRequests: (
|
|
55134
|
+
getAccountDeletionRequests: (limit?: number, offset?: number, count?: boolean, mine?: boolean, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
55137
55135
|
};
|
|
55138
55136
|
/**
|
|
55139
55137
|
* AccountDeletionRequestsV2026Api - functional programming interface
|
|
@@ -55143,17 +55141,15 @@ export declare const AccountDeletionRequestsV2026ApiFp: (configuration?: Configu
|
|
|
55143
55141
|
/**
|
|
55144
55142
|
* Initiates an account deletion request for the specified account. This method validates the input data, processes the deletion request, and generates an asynchronous result containing a tracking ID. >**NOTE: You can only delete accounts from sources of the \"Connected\" type. which supports account deletion**
|
|
55145
55143
|
* @summary Delete account
|
|
55146
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
55147
55144
|
* @param {string} accountId Account ID.
|
|
55148
55145
|
* @param {AccountDeleteRequestInputV2026} [accountDeleteRequestInputV2026]
|
|
55149
55146
|
* @param {*} [axiosOptions] Override http request option.
|
|
55150
55147
|
* @throws {RequiredError}
|
|
55151
55148
|
*/
|
|
55152
|
-
deleteAccountRequest(
|
|
55149
|
+
deleteAccountRequest(accountId: string, accountDeleteRequestInputV2026?: AccountDeleteRequestInputV2026, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AccountDeleteAsyncResultV2026>>;
|
|
55153
55150
|
/**
|
|
55154
55151
|
* Retrieves a paginated list of account deletion requests filtered by the provided query parameters. When the \"mine\" parameter is set to true, the response includes only those deletion requests that were initiated by the currently authenticated user. If \"mine\" is false or not specified, the endpoint returns all account deletion requests associated with the current tenant, regardless of the initiator. This allows both users and administrators to view relevant deletion requests based on their access level and intent.
|
|
55155
55152
|
* @summary List of Account Deletion Requests
|
|
55156
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
55157
55153
|
* @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.
|
|
55158
55154
|
* @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.
|
|
55159
55155
|
* @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.
|
|
@@ -55161,7 +55157,7 @@ export declare const AccountDeletionRequestsV2026ApiFp: (configuration?: Configu
|
|
|
55161
55157
|
* @param {*} [axiosOptions] Override http request option.
|
|
55162
55158
|
* @throws {RequiredError}
|
|
55163
55159
|
*/
|
|
55164
|
-
getAccountDeletionRequests(
|
|
55160
|
+
getAccountDeletionRequests(limit?: number, offset?: number, count?: boolean, mine?: boolean, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<AccountActionRequestDtoV2026>>>;
|
|
55165
55161
|
};
|
|
55166
55162
|
/**
|
|
55167
55163
|
* AccountDeletionRequestsV2026Api - factory interface
|
|
@@ -55183,7 +55179,7 @@ export declare const AccountDeletionRequestsV2026ApiFactory: (configuration?: Co
|
|
|
55183
55179
|
* @param {*} [axiosOptions] Override http request option.
|
|
55184
55180
|
* @throws {RequiredError}
|
|
55185
55181
|
*/
|
|
55186
|
-
getAccountDeletionRequests(requestParameters
|
|
55182
|
+
getAccountDeletionRequests(requestParameters?: AccountDeletionRequestsV2026ApiGetAccountDeletionRequestsRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<AccountActionRequestDtoV2026>>;
|
|
55187
55183
|
};
|
|
55188
55184
|
/**
|
|
55189
55185
|
* Request parameters for deleteAccountRequest operation in AccountDeletionRequestsV2026Api.
|
|
@@ -55191,12 +55187,6 @@ export declare const AccountDeletionRequestsV2026ApiFactory: (configuration?: Co
|
|
|
55191
55187
|
* @interface AccountDeletionRequestsV2026ApiDeleteAccountRequestRequest
|
|
55192
55188
|
*/
|
|
55193
55189
|
export interface AccountDeletionRequestsV2026ApiDeleteAccountRequestRequest {
|
|
55194
|
-
/**
|
|
55195
|
-
* Use this header to enable this experimental API.
|
|
55196
|
-
* @type {string}
|
|
55197
|
-
* @memberof AccountDeletionRequestsV2026ApiDeleteAccountRequest
|
|
55198
|
-
*/
|
|
55199
|
-
readonly xSailPointExperimental: string;
|
|
55200
55190
|
/**
|
|
55201
55191
|
* Account ID.
|
|
55202
55192
|
* @type {string}
|
|
@@ -55216,12 +55206,6 @@ export interface AccountDeletionRequestsV2026ApiDeleteAccountRequestRequest {
|
|
|
55216
55206
|
* @interface AccountDeletionRequestsV2026ApiGetAccountDeletionRequestsRequest
|
|
55217
55207
|
*/
|
|
55218
55208
|
export interface AccountDeletionRequestsV2026ApiGetAccountDeletionRequestsRequest {
|
|
55219
|
-
/**
|
|
55220
|
-
* Use this header to enable this experimental API.
|
|
55221
|
-
* @type {string}
|
|
55222
|
-
* @memberof AccountDeletionRequestsV2026ApiGetAccountDeletionRequests
|
|
55223
|
-
*/
|
|
55224
|
-
readonly xSailPointExperimental: string;
|
|
55225
55209
|
/**
|
|
55226
55210
|
* Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
55227
55211
|
* @type {number}
|
|
@@ -55271,7 +55255,7 @@ export declare class AccountDeletionRequestsV2026Api extends BaseAPI {
|
|
|
55271
55255
|
* @throws {RequiredError}
|
|
55272
55256
|
* @memberof AccountDeletionRequestsV2026Api
|
|
55273
55257
|
*/
|
|
55274
|
-
getAccountDeletionRequests(requestParameters
|
|
55258
|
+
getAccountDeletionRequests(requestParameters?: AccountDeletionRequestsV2026ApiGetAccountDeletionRequestsRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AccountActionRequestDtoV2026[], any>>;
|
|
55275
55259
|
}
|
|
55276
55260
|
/**
|
|
55277
55261
|
* AccountUsagesV2026Api - axios parameter creator
|
|
@@ -78422,12 +78406,11 @@ export declare const MachineAccountsV2026ApiAxiosParamCreator: (configuration?:
|
|
|
78422
78406
|
/**
|
|
78423
78407
|
* This endpoint retrieves the approval configuration for machine account deletion at the machine subtype level. By providing a specific subtypeId in the path, clients can fetch the approval rules and settings (such as required approvers and comments policy) that govern account deletion for that particular machine subtype. The response includes a MachineAccountSubtypeConfigDto object detailing these configurations, enabling clients to understand or display the approval workflow required for deleting machine accounts of the given subtype. Use this endpoint to get machine subtype level approval config for account deletion.
|
|
78424
78408
|
* @summary Machine Subtype Approval Config
|
|
78425
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
78426
78409
|
* @param {string} subtypeId machine subtype id.
|
|
78427
78410
|
* @param {*} [axiosOptions] Override http request option.
|
|
78428
78411
|
* @throws {RequiredError}
|
|
78429
78412
|
*/
|
|
78430
|
-
getMachineAccountDeletionSubTypeApprovalConfig: (
|
|
78413
|
+
getMachineAccountDeletionSubTypeApprovalConfig: (subtypeId: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
78431
78414
|
/**
|
|
78432
78415
|
* Get a machine account subtype by its unique ID.
|
|
78433
78416
|
* @summary Retrieve subtype by subtype id
|
|
@@ -78498,13 +78481,12 @@ export declare const MachineAccountsV2026ApiAxiosParamCreator: (configuration?:
|
|
|
78498
78481
|
/**
|
|
78499
78482
|
* Updates the approval configuration for machine account deletion at the specified machine subtype level. This endpoint allows clients to modify approval rules and settings (such as required approvers and comments policy) for account deletion workflows associated with a given subtypeId. Use this to customize or enforce approval requirements for deleting machine accounts of a particular subtype.
|
|
78500
78483
|
* @summary Machine Subtype Approval Config
|
|
78501
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
78502
78484
|
* @param {string} subtypeId machine account subtype ID.
|
|
78503
78485
|
* @param {Array<JsonPatchOperationV2026>} jsonPatchOperationV2026 The JSONPatch payload used to update the object.
|
|
78504
78486
|
* @param {*} [axiosOptions] Override http request option.
|
|
78505
78487
|
* @throws {RequiredError}
|
|
78506
78488
|
*/
|
|
78507
|
-
updateMachineAccountDeletionBySubTypeApprovalConfig: (
|
|
78489
|
+
updateMachineAccountDeletionBySubTypeApprovalConfig: (subtypeId: string, jsonPatchOperationV2026: Array<JsonPatchOperationV2026>, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
78508
78490
|
};
|
|
78509
78491
|
/**
|
|
78510
78492
|
* MachineAccountsV2026Api - functional programming interface
|
|
@@ -78543,12 +78525,11 @@ export declare const MachineAccountsV2026ApiFp: (configuration?: Configuration)
|
|
|
78543
78525
|
/**
|
|
78544
78526
|
* This endpoint retrieves the approval configuration for machine account deletion at the machine subtype level. By providing a specific subtypeId in the path, clients can fetch the approval rules and settings (such as required approvers and comments policy) that govern account deletion for that particular machine subtype. The response includes a MachineAccountSubtypeConfigDto object detailing these configurations, enabling clients to understand or display the approval workflow required for deleting machine accounts of the given subtype. Use this endpoint to get machine subtype level approval config for account deletion.
|
|
78545
78527
|
* @summary Machine Subtype Approval Config
|
|
78546
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
78547
78528
|
* @param {string} subtypeId machine subtype id.
|
|
78548
78529
|
* @param {*} [axiosOptions] Override http request option.
|
|
78549
78530
|
* @throws {RequiredError}
|
|
78550
78531
|
*/
|
|
78551
|
-
getMachineAccountDeletionSubTypeApprovalConfig(
|
|
78532
|
+
getMachineAccountDeletionSubTypeApprovalConfig(subtypeId: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MachineAccountSubTypeConfigDtoV2026>>;
|
|
78552
78533
|
/**
|
|
78553
78534
|
* Get a machine account subtype by its unique ID.
|
|
78554
78535
|
* @summary Retrieve subtype by subtype id
|
|
@@ -78619,13 +78600,12 @@ export declare const MachineAccountsV2026ApiFp: (configuration?: Configuration)
|
|
|
78619
78600
|
/**
|
|
78620
78601
|
* Updates the approval configuration for machine account deletion at the specified machine subtype level. This endpoint allows clients to modify approval rules and settings (such as required approvers and comments policy) for account deletion workflows associated with a given subtypeId. Use this to customize or enforce approval requirements for deleting machine accounts of a particular subtype.
|
|
78621
78602
|
* @summary Machine Subtype Approval Config
|
|
78622
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
78623
78603
|
* @param {string} subtypeId machine account subtype ID.
|
|
78624
78604
|
* @param {Array<JsonPatchOperationV2026>} jsonPatchOperationV2026 The JSONPatch payload used to update the object.
|
|
78625
78605
|
* @param {*} [axiosOptions] Override http request option.
|
|
78626
78606
|
* @throws {RequiredError}
|
|
78627
78607
|
*/
|
|
78628
|
-
updateMachineAccountDeletionBySubTypeApprovalConfig(
|
|
78608
|
+
updateMachineAccountDeletionBySubTypeApprovalConfig(subtypeId: string, jsonPatchOperationV2026: Array<JsonPatchOperationV2026>, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MachineAccountSubTypeConfigDtoV2026>>;
|
|
78629
78609
|
};
|
|
78630
78610
|
/**
|
|
78631
78611
|
* MachineAccountsV2026Api - factory interface
|
|
@@ -78796,12 +78776,6 @@ export interface MachineAccountsV2026ApiGetMachineAccountRequest {
|
|
|
78796
78776
|
* @interface MachineAccountsV2026ApiGetMachineAccountDeletionSubTypeApprovalConfigRequest
|
|
78797
78777
|
*/
|
|
78798
78778
|
export interface MachineAccountsV2026ApiGetMachineAccountDeletionSubTypeApprovalConfigRequest {
|
|
78799
|
-
/**
|
|
78800
|
-
* Use this header to enable this experimental API.
|
|
78801
|
-
* @type {string}
|
|
78802
|
-
* @memberof MachineAccountsV2026ApiGetMachineAccountDeletionSubTypeApprovalConfig
|
|
78803
|
-
*/
|
|
78804
|
-
readonly xSailPointExperimental: string;
|
|
78805
78779
|
/**
|
|
78806
78780
|
* machine subtype id.
|
|
78807
78781
|
* @type {string}
|
|
@@ -79007,12 +78981,6 @@ export interface MachineAccountsV2026ApiUpdateMachineAccountRequest {
|
|
|
79007
78981
|
* @interface MachineAccountsV2026ApiUpdateMachineAccountDeletionBySubTypeApprovalConfigRequest
|
|
79008
78982
|
*/
|
|
79009
78983
|
export interface MachineAccountsV2026ApiUpdateMachineAccountDeletionBySubTypeApprovalConfigRequest {
|
|
79010
|
-
/**
|
|
79011
|
-
* Use this header to enable this experimental API.
|
|
79012
|
-
* @type {string}
|
|
79013
|
-
* @memberof MachineAccountsV2026ApiUpdateMachineAccountDeletionBySubTypeApprovalConfig
|
|
79014
|
-
*/
|
|
79015
|
-
readonly xSailPointExperimental: string;
|
|
79016
78984
|
/**
|
|
79017
78985
|
* machine account subtype ID.
|
|
79018
78986
|
* @type {string}
|
|
@@ -93845,12 +93813,11 @@ export declare const SourcesV2026ApiAxiosParamCreator: (configuration?: Configur
|
|
|
93845
93813
|
/**
|
|
93846
93814
|
* The endpoint retrieves the approval configuration for deleting human accounts from a specified source. It returns details such as whether approval is required, who the approvers are, and any additional approval settings. This helps administrators understand and manage the approval workflow for human account deletions in their organization. The response is provided as an AccountDeleteConfigDto object.
|
|
93847
93815
|
* @summary Human Account Deletion Approval Config
|
|
93848
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
93849
93816
|
* @param {string} sourceId The Source id
|
|
93850
93817
|
* @param {*} [axiosOptions] Override http request option.
|
|
93851
93818
|
* @throws {RequiredError}
|
|
93852
93819
|
*/
|
|
93853
|
-
getAccountDeleteApprovalConfig: (
|
|
93820
|
+
getAccountDeleteApprovalConfig: (sourceId: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
93854
93821
|
/**
|
|
93855
93822
|
* This API downloads the CSV schema that defines the account attributes on a source. >**NOTE: This API is designated only for Delimited File sources.**
|
|
93856
93823
|
* @summary Downloads source accounts schema template
|
|
@@ -93879,12 +93846,11 @@ export declare const SourcesV2026ApiAxiosParamCreator: (configuration?: Configur
|
|
|
93879
93846
|
/**
|
|
93880
93847
|
* Retrieves the machine account deletion approval configuration for a specific source. This endpoint returns details about the approval requirements, approvers, and comment settings that govern the deletion of machine accounts associated with the given source ID.
|
|
93881
93848
|
* @summary Machine Account Deletion Approval Config
|
|
93882
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
93883
93849
|
* @param {string} sourceId source id.
|
|
93884
93850
|
* @param {*} [axiosOptions] Override http request option.
|
|
93885
93851
|
* @throws {RequiredError}
|
|
93886
93852
|
*/
|
|
93887
|
-
getMachineAccountDeletionApprovalConfigBySource: (
|
|
93853
|
+
getMachineAccountDeletionApprovalConfigBySource: (sourceId: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
93888
93854
|
/**
|
|
93889
93855
|
* This API returns the existing native change detection configuration for a source specified by the given ID.
|
|
93890
93856
|
* @summary Native change detection configuration
|
|
@@ -94179,23 +94145,21 @@ export declare const SourcesV2026ApiAxiosParamCreator: (configuration?: Configur
|
|
|
94179
94145
|
/**
|
|
94180
94146
|
* Updates the approval configuration for deleting human accounts for a specific source, identified by source ID. This endpoint allows administrators to modify settings such as whether approval is required, who the approvers are, and other approval-related options. The update is performed using a JSON Patch payload, and the response returns the updated AccountDeleteConfigDto object reflecting the new approval workflow configuration.
|
|
94181
94147
|
* @summary Human Account Deletion Approval Config
|
|
94182
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
94183
94148
|
* @param {string} sourceId Human account source ID.
|
|
94184
94149
|
* @param {Array<JsonPatchOperationV2026>} jsonPatchOperationV2026 The JSONPatch payload used to update the object.
|
|
94185
94150
|
* @param {*} [axiosOptions] Override http request option.
|
|
94186
94151
|
* @throws {RequiredError}
|
|
94187
94152
|
*/
|
|
94188
|
-
updateAccountDeletionApprovalConfig: (
|
|
94153
|
+
updateAccountDeletionApprovalConfig: (sourceId: string, jsonPatchOperationV2026: Array<JsonPatchOperationV2026>, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
94189
94154
|
/**
|
|
94190
94155
|
* Use this endpoint to update the machine account deletion approval configuration for a specific source. The update is performed using a JSON Patch payload, which allows partial modifications to the approval config. This operation is typically used to change approval requirements, approvers, or comments settings for machine account deletion. The endpoint expects the source ID as a path parameter and a valid JSON Patch array in the request body.
|
|
94191
94156
|
* @summary Machine Account Deletion Approval Config
|
|
94192
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
94193
94157
|
* @param {string} sourceId machine account source ID.
|
|
94194
94158
|
* @param {Array<JsonPatchOperationV2026>} jsonPatchOperationV2026 The JSONPatch payload used to update the object.
|
|
94195
94159
|
* @param {*} [axiosOptions] Override http request option.
|
|
94196
94160
|
* @throws {RequiredError}
|
|
94197
94161
|
*/
|
|
94198
|
-
updateMachineAccountDeletionApprovalConfig: (
|
|
94162
|
+
updateMachineAccountDeletionApprovalConfig: (sourceId: string, jsonPatchOperationV2026: Array<JsonPatchOperationV2026>, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
94199
94163
|
/**
|
|
94200
94164
|
* This API can be used to set up or update Password Policy in IdentityNow for the specified Source. Source must support PASSWORD feature.
|
|
94201
94165
|
* @summary Update password policy
|
|
@@ -94358,12 +94322,11 @@ export declare const SourcesV2026ApiFp: (configuration?: Configuration) => {
|
|
|
94358
94322
|
/**
|
|
94359
94323
|
* The endpoint retrieves the approval configuration for deleting human accounts from a specified source. It returns details such as whether approval is required, who the approvers are, and any additional approval settings. This helps administrators understand and manage the approval workflow for human account deletions in their organization. The response is provided as an AccountDeleteConfigDto object.
|
|
94360
94324
|
* @summary Human Account Deletion Approval Config
|
|
94361
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
94362
94325
|
* @param {string} sourceId The Source id
|
|
94363
94326
|
* @param {*} [axiosOptions] Override http request option.
|
|
94364
94327
|
* @throws {RequiredError}
|
|
94365
94328
|
*/
|
|
94366
|
-
getAccountDeleteApprovalConfig(
|
|
94329
|
+
getAccountDeleteApprovalConfig(sourceId: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AccountDeleteConfigDtoV2026>>;
|
|
94367
94330
|
/**
|
|
94368
94331
|
* This API downloads the CSV schema that defines the account attributes on a source. >**NOTE: This API is designated only for Delimited File sources.**
|
|
94369
94332
|
* @summary Downloads source accounts schema template
|
|
@@ -94392,12 +94355,11 @@ export declare const SourcesV2026ApiFp: (configuration?: Configuration) => {
|
|
|
94392
94355
|
/**
|
|
94393
94356
|
* Retrieves the machine account deletion approval configuration for a specific source. This endpoint returns details about the approval requirements, approvers, and comment settings that govern the deletion of machine accounts associated with the given source ID.
|
|
94394
94357
|
* @summary Machine Account Deletion Approval Config
|
|
94395
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
94396
94358
|
* @param {string} sourceId source id.
|
|
94397
94359
|
* @param {*} [axiosOptions] Override http request option.
|
|
94398
94360
|
* @throws {RequiredError}
|
|
94399
94361
|
*/
|
|
94400
|
-
getMachineAccountDeletionApprovalConfigBySource(
|
|
94362
|
+
getMachineAccountDeletionApprovalConfigBySource(sourceId: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AccountDeleteConfigDtoV2026>>;
|
|
94401
94363
|
/**
|
|
94402
94364
|
* This API returns the existing native change detection configuration for a source specified by the given ID.
|
|
94403
94365
|
* @summary Native change detection configuration
|
|
@@ -94692,23 +94654,21 @@ export declare const SourcesV2026ApiFp: (configuration?: Configuration) => {
|
|
|
94692
94654
|
/**
|
|
94693
94655
|
* Updates the approval configuration for deleting human accounts for a specific source, identified by source ID. This endpoint allows administrators to modify settings such as whether approval is required, who the approvers are, and other approval-related options. The update is performed using a JSON Patch payload, and the response returns the updated AccountDeleteConfigDto object reflecting the new approval workflow configuration.
|
|
94694
94656
|
* @summary Human Account Deletion Approval Config
|
|
94695
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
94696
94657
|
* @param {string} sourceId Human account source ID.
|
|
94697
94658
|
* @param {Array<JsonPatchOperationV2026>} jsonPatchOperationV2026 The JSONPatch payload used to update the object.
|
|
94698
94659
|
* @param {*} [axiosOptions] Override http request option.
|
|
94699
94660
|
* @throws {RequiredError}
|
|
94700
94661
|
*/
|
|
94701
|
-
updateAccountDeletionApprovalConfig(
|
|
94662
|
+
updateAccountDeletionApprovalConfig(sourceId: string, jsonPatchOperationV2026: Array<JsonPatchOperationV2026>, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AccountDeleteConfigDtoV2026>>;
|
|
94702
94663
|
/**
|
|
94703
94664
|
* Use this endpoint to update the machine account deletion approval configuration for a specific source. The update is performed using a JSON Patch payload, which allows partial modifications to the approval config. This operation is typically used to change approval requirements, approvers, or comments settings for machine account deletion. The endpoint expects the source ID as a path parameter and a valid JSON Patch array in the request body.
|
|
94704
94665
|
* @summary Machine Account Deletion Approval Config
|
|
94705
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
94706
94666
|
* @param {string} sourceId machine account source ID.
|
|
94707
94667
|
* @param {Array<JsonPatchOperationV2026>} jsonPatchOperationV2026 The JSONPatch payload used to update the object.
|
|
94708
94668
|
* @param {*} [axiosOptions] Override http request option.
|
|
94709
94669
|
* @throws {RequiredError}
|
|
94710
94670
|
*/
|
|
94711
|
-
updateMachineAccountDeletionApprovalConfig(
|
|
94671
|
+
updateMachineAccountDeletionApprovalConfig(sourceId: string, jsonPatchOperationV2026: Array<JsonPatchOperationV2026>, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AccountDeleteConfigDtoV2026>>;
|
|
94712
94672
|
/**
|
|
94713
94673
|
* This API can be used to set up or update Password Policy in IdentityNow for the specified Source. Source must support PASSWORD feature.
|
|
94714
94674
|
* @summary Update password policy
|
|
@@ -95408,12 +95368,6 @@ export interface SourcesV2026ApiDeleteSourceSchemaRequest {
|
|
|
95408
95368
|
* @interface SourcesV2026ApiGetAccountDeleteApprovalConfigRequest
|
|
95409
95369
|
*/
|
|
95410
95370
|
export interface SourcesV2026ApiGetAccountDeleteApprovalConfigRequest {
|
|
95411
|
-
/**
|
|
95412
|
-
* Use this header to enable this experimental API.
|
|
95413
|
-
* @type {string}
|
|
95414
|
-
* @memberof SourcesV2026ApiGetAccountDeleteApprovalConfig
|
|
95415
|
-
*/
|
|
95416
|
-
readonly xSailPointExperimental: string;
|
|
95417
95371
|
/**
|
|
95418
95372
|
* The Source id
|
|
95419
95373
|
* @type {string}
|
|
@@ -95472,12 +95426,6 @@ export interface SourcesV2026ApiGetEntitlementsSchemaRequest {
|
|
|
95472
95426
|
* @interface SourcesV2026ApiGetMachineAccountDeletionApprovalConfigBySourceRequest
|
|
95473
95427
|
*/
|
|
95474
95428
|
export interface SourcesV2026ApiGetMachineAccountDeletionApprovalConfigBySourceRequest {
|
|
95475
|
-
/**
|
|
95476
|
-
* Use this header to enable this experimental API.
|
|
95477
|
-
* @type {string}
|
|
95478
|
-
* @memberof SourcesV2026ApiGetMachineAccountDeletionApprovalConfigBySource
|
|
95479
|
-
*/
|
|
95480
|
-
readonly xSailPointExperimental: string;
|
|
95481
95429
|
/**
|
|
95482
95430
|
* source id.
|
|
95483
95431
|
* @type {string}
|
|
@@ -96117,12 +96065,6 @@ export interface SourcesV2026ApiTestSourceConnectionRequest {
|
|
|
96117
96065
|
* @interface SourcesV2026ApiUpdateAccountDeletionApprovalConfigRequest
|
|
96118
96066
|
*/
|
|
96119
96067
|
export interface SourcesV2026ApiUpdateAccountDeletionApprovalConfigRequest {
|
|
96120
|
-
/**
|
|
96121
|
-
* Use this header to enable this experimental API.
|
|
96122
|
-
* @type {string}
|
|
96123
|
-
* @memberof SourcesV2026ApiUpdateAccountDeletionApprovalConfig
|
|
96124
|
-
*/
|
|
96125
|
-
readonly xSailPointExperimental: string;
|
|
96126
96068
|
/**
|
|
96127
96069
|
* Human account source ID.
|
|
96128
96070
|
* @type {string}
|
|
@@ -96142,12 +96084,6 @@ export interface SourcesV2026ApiUpdateAccountDeletionApprovalConfigRequest {
|
|
|
96142
96084
|
* @interface SourcesV2026ApiUpdateMachineAccountDeletionApprovalConfigRequest
|
|
96143
96085
|
*/
|
|
96144
96086
|
export interface SourcesV2026ApiUpdateMachineAccountDeletionApprovalConfigRequest {
|
|
96145
|
-
/**
|
|
96146
|
-
* Use this header to enable this experimental API.
|
|
96147
|
-
* @type {string}
|
|
96148
|
-
* @memberof SourcesV2026ApiUpdateMachineAccountDeletionApprovalConfig
|
|
96149
|
-
*/
|
|
96150
|
-
readonly xSailPointExperimental: string;
|
|
96151
96087
|
/**
|
|
96152
96088
|
* machine account source ID.
|
|
96153
96089
|
* @type {string}
|