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/v2026/api.ts
CHANGED
|
@@ -59001,19 +59001,12 @@ export const AccountDeletionRequestsV2026ApiAxiosParamCreator = function (config
|
|
|
59001
59001
|
/**
|
|
59002
59002
|
* 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**
|
|
59003
59003
|
* @summary Delete account
|
|
59004
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
59005
59004
|
* @param {string} accountId Account ID.
|
|
59006
59005
|
* @param {AccountDeleteRequestInputV2026} [accountDeleteRequestInputV2026]
|
|
59007
59006
|
* @param {*} [axiosOptions] Override http request option.
|
|
59008
59007
|
* @throws {RequiredError}
|
|
59009
59008
|
*/
|
|
59010
|
-
deleteAccountRequest: async (
|
|
59011
|
-
if (xSailPointExperimental === undefined) {
|
|
59012
|
-
xSailPointExperimental = 'true';
|
|
59013
|
-
}
|
|
59014
|
-
|
|
59015
|
-
// verify required parameter 'xSailPointExperimental' is not null or undefined
|
|
59016
|
-
assertParamExists('deleteAccountRequest', 'xSailPointExperimental', xSailPointExperimental)
|
|
59009
|
+
deleteAccountRequest: async (accountId: string, accountDeleteRequestInputV2026?: AccountDeleteRequestInputV2026, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
59017
59010
|
// verify required parameter 'accountId' is not null or undefined
|
|
59018
59011
|
assertParamExists('deleteAccountRequest', 'accountId', accountId)
|
|
59019
59012
|
const localVarPath = `/account-requests/account/{accountId}/delete`
|
|
@@ -59041,9 +59034,6 @@ export const AccountDeletionRequestsV2026ApiAxiosParamCreator = function (config
|
|
|
59041
59034
|
|
|
59042
59035
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
59043
59036
|
|
|
59044
|
-
if (xSailPointExperimental != null) {
|
|
59045
|
-
localVarHeaderParameter['X-SailPoint-Experimental'] = String(xSailPointExperimental);
|
|
59046
|
-
}
|
|
59047
59037
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
59048
59038
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
59049
59039
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
|
|
@@ -59057,7 +59047,6 @@ export const AccountDeletionRequestsV2026ApiAxiosParamCreator = function (config
|
|
|
59057
59047
|
/**
|
|
59058
59048
|
* 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.
|
|
59059
59049
|
* @summary List of Account Deletion Requests
|
|
59060
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
59061
59050
|
* @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.
|
|
59062
59051
|
* @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.
|
|
59063
59052
|
* @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.
|
|
@@ -59065,13 +59054,7 @@ export const AccountDeletionRequestsV2026ApiAxiosParamCreator = function (config
|
|
|
59065
59054
|
* @param {*} [axiosOptions] Override http request option.
|
|
59066
59055
|
* @throws {RequiredError}
|
|
59067
59056
|
*/
|
|
59068
|
-
getAccountDeletionRequests: async (
|
|
59069
|
-
if (xSailPointExperimental === undefined) {
|
|
59070
|
-
xSailPointExperimental = 'true';
|
|
59071
|
-
}
|
|
59072
|
-
|
|
59073
|
-
// verify required parameter 'xSailPointExperimental' is not null or undefined
|
|
59074
|
-
assertParamExists('getAccountDeletionRequests', 'xSailPointExperimental', xSailPointExperimental)
|
|
59057
|
+
getAccountDeletionRequests: async (limit?: number, offset?: number, count?: boolean, mine?: boolean, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
59075
59058
|
const localVarPath = `/account-requests/deletion`;
|
|
59076
59059
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
59077
59060
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -59110,9 +59093,6 @@ export const AccountDeletionRequestsV2026ApiAxiosParamCreator = function (config
|
|
|
59110
59093
|
|
|
59111
59094
|
|
|
59112
59095
|
|
|
59113
|
-
if (xSailPointExperimental != null) {
|
|
59114
|
-
localVarHeaderParameter['X-SailPoint-Experimental'] = String(xSailPointExperimental);
|
|
59115
|
-
}
|
|
59116
59096
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
59117
59097
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
59118
59098
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
|
|
@@ -59135,14 +59115,13 @@ export const AccountDeletionRequestsV2026ApiFp = function(configuration?: Config
|
|
|
59135
59115
|
/**
|
|
59136
59116
|
* 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**
|
|
59137
59117
|
* @summary Delete account
|
|
59138
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
59139
59118
|
* @param {string} accountId Account ID.
|
|
59140
59119
|
* @param {AccountDeleteRequestInputV2026} [accountDeleteRequestInputV2026]
|
|
59141
59120
|
* @param {*} [axiosOptions] Override http request option.
|
|
59142
59121
|
* @throws {RequiredError}
|
|
59143
59122
|
*/
|
|
59144
|
-
async deleteAccountRequest(
|
|
59145
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteAccountRequest(
|
|
59123
|
+
async deleteAccountRequest(accountId: string, accountDeleteRequestInputV2026?: AccountDeleteRequestInputV2026, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AccountDeleteAsyncResultV2026>> {
|
|
59124
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.deleteAccountRequest(accountId, accountDeleteRequestInputV2026, axiosOptions);
|
|
59146
59125
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
59147
59126
|
const localVarOperationServerBasePath = operationServerMap['AccountDeletionRequestsV2026Api.deleteAccountRequest']?.[localVarOperationServerIndex]?.url;
|
|
59148
59127
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -59150,7 +59129,6 @@ export const AccountDeletionRequestsV2026ApiFp = function(configuration?: Config
|
|
|
59150
59129
|
/**
|
|
59151
59130
|
* 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.
|
|
59152
59131
|
* @summary List of Account Deletion Requests
|
|
59153
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
59154
59132
|
* @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.
|
|
59155
59133
|
* @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.
|
|
59156
59134
|
* @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.
|
|
@@ -59158,8 +59136,8 @@ export const AccountDeletionRequestsV2026ApiFp = function(configuration?: Config
|
|
|
59158
59136
|
* @param {*} [axiosOptions] Override http request option.
|
|
59159
59137
|
* @throws {RequiredError}
|
|
59160
59138
|
*/
|
|
59161
|
-
async getAccountDeletionRequests(
|
|
59162
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.getAccountDeletionRequests(
|
|
59139
|
+
async getAccountDeletionRequests(limit?: number, offset?: number, count?: boolean, mine?: boolean, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<AccountActionRequestDtoV2026>>> {
|
|
59140
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getAccountDeletionRequests(limit, offset, count, mine, axiosOptions);
|
|
59163
59141
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
59164
59142
|
const localVarOperationServerBasePath = operationServerMap['AccountDeletionRequestsV2026Api.getAccountDeletionRequests']?.[localVarOperationServerIndex]?.url;
|
|
59165
59143
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -59182,7 +59160,7 @@ export const AccountDeletionRequestsV2026ApiFactory = function (configuration?:
|
|
|
59182
59160
|
* @throws {RequiredError}
|
|
59183
59161
|
*/
|
|
59184
59162
|
deleteAccountRequest(requestParameters: AccountDeletionRequestsV2026ApiDeleteAccountRequestRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<AccountDeleteAsyncResultV2026> {
|
|
59185
|
-
return localVarFp.deleteAccountRequest(requestParameters.
|
|
59163
|
+
return localVarFp.deleteAccountRequest(requestParameters.accountId, requestParameters.accountDeleteRequestInputV2026, axiosOptions).then((request) => request(axios, basePath));
|
|
59186
59164
|
},
|
|
59187
59165
|
/**
|
|
59188
59166
|
* 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.
|
|
@@ -59191,8 +59169,8 @@ export const AccountDeletionRequestsV2026ApiFactory = function (configuration?:
|
|
|
59191
59169
|
* @param {*} [axiosOptions] Override http request option.
|
|
59192
59170
|
* @throws {RequiredError}
|
|
59193
59171
|
*/
|
|
59194
|
-
getAccountDeletionRequests(requestParameters: AccountDeletionRequestsV2026ApiGetAccountDeletionRequestsRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<AccountActionRequestDtoV2026>> {
|
|
59195
|
-
return localVarFp.getAccountDeletionRequests(requestParameters.
|
|
59172
|
+
getAccountDeletionRequests(requestParameters: AccountDeletionRequestsV2026ApiGetAccountDeletionRequestsRequest = {}, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<AccountActionRequestDtoV2026>> {
|
|
59173
|
+
return localVarFp.getAccountDeletionRequests(requestParameters.limit, requestParameters.offset, requestParameters.count, requestParameters.mine, axiosOptions).then((request) => request(axios, basePath));
|
|
59196
59174
|
},
|
|
59197
59175
|
};
|
|
59198
59176
|
};
|
|
@@ -59203,13 +59181,6 @@ export const AccountDeletionRequestsV2026ApiFactory = function (configuration?:
|
|
|
59203
59181
|
* @interface AccountDeletionRequestsV2026ApiDeleteAccountRequestRequest
|
|
59204
59182
|
*/
|
|
59205
59183
|
export interface AccountDeletionRequestsV2026ApiDeleteAccountRequestRequest {
|
|
59206
|
-
/**
|
|
59207
|
-
* Use this header to enable this experimental API.
|
|
59208
|
-
* @type {string}
|
|
59209
|
-
* @memberof AccountDeletionRequestsV2026ApiDeleteAccountRequest
|
|
59210
|
-
*/
|
|
59211
|
-
readonly xSailPointExperimental: string
|
|
59212
|
-
|
|
59213
59184
|
/**
|
|
59214
59185
|
* Account ID.
|
|
59215
59186
|
* @type {string}
|
|
@@ -59231,13 +59202,6 @@ export interface AccountDeletionRequestsV2026ApiDeleteAccountRequestRequest {
|
|
|
59231
59202
|
* @interface AccountDeletionRequestsV2026ApiGetAccountDeletionRequestsRequest
|
|
59232
59203
|
*/
|
|
59233
59204
|
export interface AccountDeletionRequestsV2026ApiGetAccountDeletionRequestsRequest {
|
|
59234
|
-
/**
|
|
59235
|
-
* Use this header to enable this experimental API.
|
|
59236
|
-
* @type {string}
|
|
59237
|
-
* @memberof AccountDeletionRequestsV2026ApiGetAccountDeletionRequests
|
|
59238
|
-
*/
|
|
59239
|
-
readonly xSailPointExperimental: string
|
|
59240
|
-
|
|
59241
59205
|
/**
|
|
59242
59206
|
* Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
|
|
59243
59207
|
* @type {number}
|
|
@@ -59283,7 +59247,7 @@ export class AccountDeletionRequestsV2026Api extends BaseAPI {
|
|
|
59283
59247
|
* @memberof AccountDeletionRequestsV2026Api
|
|
59284
59248
|
*/
|
|
59285
59249
|
public deleteAccountRequest(requestParameters: AccountDeletionRequestsV2026ApiDeleteAccountRequestRequest, axiosOptions?: RawAxiosRequestConfig) {
|
|
59286
|
-
return AccountDeletionRequestsV2026ApiFp(this.configuration).deleteAccountRequest(requestParameters.
|
|
59250
|
+
return AccountDeletionRequestsV2026ApiFp(this.configuration).deleteAccountRequest(requestParameters.accountId, requestParameters.accountDeleteRequestInputV2026, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
59287
59251
|
}
|
|
59288
59252
|
|
|
59289
59253
|
/**
|
|
@@ -59294,8 +59258,8 @@ export class AccountDeletionRequestsV2026Api extends BaseAPI {
|
|
|
59294
59258
|
* @throws {RequiredError}
|
|
59295
59259
|
* @memberof AccountDeletionRequestsV2026Api
|
|
59296
59260
|
*/
|
|
59297
|
-
public getAccountDeletionRequests(requestParameters: AccountDeletionRequestsV2026ApiGetAccountDeletionRequestsRequest, axiosOptions?: RawAxiosRequestConfig) {
|
|
59298
|
-
return AccountDeletionRequestsV2026ApiFp(this.configuration).getAccountDeletionRequests(requestParameters.
|
|
59261
|
+
public getAccountDeletionRequests(requestParameters: AccountDeletionRequestsV2026ApiGetAccountDeletionRequestsRequest = {}, axiosOptions?: RawAxiosRequestConfig) {
|
|
59262
|
+
return AccountDeletionRequestsV2026ApiFp(this.configuration).getAccountDeletionRequests(requestParameters.limit, requestParameters.offset, requestParameters.count, requestParameters.mine, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
59299
59263
|
}
|
|
59300
59264
|
}
|
|
59301
59265
|
|
|
@@ -103902,18 +103866,11 @@ export const MachineAccountsV2026ApiAxiosParamCreator = function (configuration?
|
|
|
103902
103866
|
/**
|
|
103903
103867
|
* 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.
|
|
103904
103868
|
* @summary Machine Subtype Approval Config
|
|
103905
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
103906
103869
|
* @param {string} subtypeId machine subtype id.
|
|
103907
103870
|
* @param {*} [axiosOptions] Override http request option.
|
|
103908
103871
|
* @throws {RequiredError}
|
|
103909
103872
|
*/
|
|
103910
|
-
getMachineAccountDeletionSubTypeApprovalConfig: async (
|
|
103911
|
-
if (xSailPointExperimental === undefined) {
|
|
103912
|
-
xSailPointExperimental = 'true';
|
|
103913
|
-
}
|
|
103914
|
-
|
|
103915
|
-
// verify required parameter 'xSailPointExperimental' is not null or undefined
|
|
103916
|
-
assertParamExists('getMachineAccountDeletionSubTypeApprovalConfig', 'xSailPointExperimental', xSailPointExperimental)
|
|
103873
|
+
getMachineAccountDeletionSubTypeApprovalConfig: async (subtypeId: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
103917
103874
|
// verify required parameter 'subtypeId' is not null or undefined
|
|
103918
103875
|
assertParamExists('getMachineAccountDeletionSubTypeApprovalConfig', 'subtypeId', subtypeId)
|
|
103919
103876
|
const localVarPath = `/source-subtypes/{subtypeId}/machine-config`
|
|
@@ -103939,9 +103896,6 @@ export const MachineAccountsV2026ApiAxiosParamCreator = function (configuration?
|
|
|
103939
103896
|
|
|
103940
103897
|
|
|
103941
103898
|
|
|
103942
|
-
if (xSailPointExperimental != null) {
|
|
103943
|
-
localVarHeaderParameter['X-SailPoint-Experimental'] = String(xSailPointExperimental);
|
|
103944
|
-
}
|
|
103945
103899
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
103946
103900
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
103947
103901
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
|
|
@@ -104340,19 +104294,12 @@ export const MachineAccountsV2026ApiAxiosParamCreator = function (configuration?
|
|
|
104340
104294
|
/**
|
|
104341
104295
|
* 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.
|
|
104342
104296
|
* @summary Machine Subtype Approval Config
|
|
104343
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
104344
104297
|
* @param {string} subtypeId machine account subtype ID.
|
|
104345
104298
|
* @param {Array<JsonPatchOperationV2026>} jsonPatchOperationV2026 The JSONPatch payload used to update the object.
|
|
104346
104299
|
* @param {*} [axiosOptions] Override http request option.
|
|
104347
104300
|
* @throws {RequiredError}
|
|
104348
104301
|
*/
|
|
104349
|
-
updateMachineAccountDeletionBySubTypeApprovalConfig: async (
|
|
104350
|
-
if (xSailPointExperimental === undefined) {
|
|
104351
|
-
xSailPointExperimental = 'true';
|
|
104352
|
-
}
|
|
104353
|
-
|
|
104354
|
-
// verify required parameter 'xSailPointExperimental' is not null or undefined
|
|
104355
|
-
assertParamExists('updateMachineAccountDeletionBySubTypeApprovalConfig', 'xSailPointExperimental', xSailPointExperimental)
|
|
104302
|
+
updateMachineAccountDeletionBySubTypeApprovalConfig: async (subtypeId: string, jsonPatchOperationV2026: Array<JsonPatchOperationV2026>, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
104356
104303
|
// verify required parameter 'subtypeId' is not null or undefined
|
|
104357
104304
|
assertParamExists('updateMachineAccountDeletionBySubTypeApprovalConfig', 'subtypeId', subtypeId)
|
|
104358
104305
|
// verify required parameter 'jsonPatchOperationV2026' is not null or undefined
|
|
@@ -104382,9 +104329,6 @@ export const MachineAccountsV2026ApiAxiosParamCreator = function (configuration?
|
|
|
104382
104329
|
|
|
104383
104330
|
localVarHeaderParameter['Content-Type'] = 'application/json-patch+json';
|
|
104384
104331
|
|
|
104385
|
-
if (xSailPointExperimental != null) {
|
|
104386
|
-
localVarHeaderParameter['X-SailPoint-Experimental'] = String(xSailPointExperimental);
|
|
104387
|
-
}
|
|
104388
104332
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
104389
104333
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
104390
104334
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
|
|
@@ -104452,13 +104396,12 @@ export const MachineAccountsV2026ApiFp = function(configuration?: Configuration)
|
|
|
104452
104396
|
/**
|
|
104453
104397
|
* 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.
|
|
104454
104398
|
* @summary Machine Subtype Approval Config
|
|
104455
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
104456
104399
|
* @param {string} subtypeId machine subtype id.
|
|
104457
104400
|
* @param {*} [axiosOptions] Override http request option.
|
|
104458
104401
|
* @throws {RequiredError}
|
|
104459
104402
|
*/
|
|
104460
|
-
async getMachineAccountDeletionSubTypeApprovalConfig(
|
|
104461
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.getMachineAccountDeletionSubTypeApprovalConfig(
|
|
104403
|
+
async getMachineAccountDeletionSubTypeApprovalConfig(subtypeId: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MachineAccountSubTypeConfigDtoV2026>> {
|
|
104404
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getMachineAccountDeletionSubTypeApprovalConfig(subtypeId, axiosOptions);
|
|
104462
104405
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
104463
104406
|
const localVarOperationServerBasePath = operationServerMap['MachineAccountsV2026Api.getMachineAccountDeletionSubTypeApprovalConfig']?.[localVarOperationServerIndex]?.url;
|
|
104464
104407
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -104563,14 +104506,13 @@ export const MachineAccountsV2026ApiFp = function(configuration?: Configuration)
|
|
|
104563
104506
|
/**
|
|
104564
104507
|
* 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.
|
|
104565
104508
|
* @summary Machine Subtype Approval Config
|
|
104566
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
104567
104509
|
* @param {string} subtypeId machine account subtype ID.
|
|
104568
104510
|
* @param {Array<JsonPatchOperationV2026>} jsonPatchOperationV2026 The JSONPatch payload used to update the object.
|
|
104569
104511
|
* @param {*} [axiosOptions] Override http request option.
|
|
104570
104512
|
* @throws {RequiredError}
|
|
104571
104513
|
*/
|
|
104572
|
-
async updateMachineAccountDeletionBySubTypeApprovalConfig(
|
|
104573
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.updateMachineAccountDeletionBySubTypeApprovalConfig(
|
|
104514
|
+
async updateMachineAccountDeletionBySubTypeApprovalConfig(subtypeId: string, jsonPatchOperationV2026: Array<JsonPatchOperationV2026>, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MachineAccountSubTypeConfigDtoV2026>> {
|
|
104515
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.updateMachineAccountDeletionBySubTypeApprovalConfig(subtypeId, jsonPatchOperationV2026, axiosOptions);
|
|
104574
104516
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
104575
104517
|
const localVarOperationServerBasePath = operationServerMap['MachineAccountsV2026Api.updateMachineAccountDeletionBySubTypeApprovalConfig']?.[localVarOperationServerIndex]?.url;
|
|
104576
104518
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -104623,7 +104565,7 @@ export const MachineAccountsV2026ApiFactory = function (configuration?: Configur
|
|
|
104623
104565
|
* @throws {RequiredError}
|
|
104624
104566
|
*/
|
|
104625
104567
|
getMachineAccountDeletionSubTypeApprovalConfig(requestParameters: MachineAccountsV2026ApiGetMachineAccountDeletionSubTypeApprovalConfigRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<MachineAccountSubTypeConfigDtoV2026> {
|
|
104626
|
-
return localVarFp.getMachineAccountDeletionSubTypeApprovalConfig(requestParameters.
|
|
104568
|
+
return localVarFp.getMachineAccountDeletionSubTypeApprovalConfig(requestParameters.subtypeId, axiosOptions).then((request) => request(axios, basePath));
|
|
104627
104569
|
},
|
|
104628
104570
|
/**
|
|
104629
104571
|
* Get a machine account subtype by its unique ID.
|
|
@@ -104693,7 +104635,7 @@ export const MachineAccountsV2026ApiFactory = function (configuration?: Configur
|
|
|
104693
104635
|
* @throws {RequiredError}
|
|
104694
104636
|
*/
|
|
104695
104637
|
updateMachineAccountDeletionBySubTypeApprovalConfig(requestParameters: MachineAccountsV2026ApiUpdateMachineAccountDeletionBySubTypeApprovalConfigRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<MachineAccountSubTypeConfigDtoV2026> {
|
|
104696
|
-
return localVarFp.updateMachineAccountDeletionBySubTypeApprovalConfig(requestParameters.
|
|
104638
|
+
return localVarFp.updateMachineAccountDeletionBySubTypeApprovalConfig(requestParameters.subtypeId, requestParameters.jsonPatchOperationV2026, axiosOptions).then((request) => request(axios, basePath));
|
|
104697
104639
|
},
|
|
104698
104640
|
};
|
|
104699
104641
|
};
|
|
@@ -104781,13 +104723,6 @@ export interface MachineAccountsV2026ApiGetMachineAccountRequest {
|
|
|
104781
104723
|
* @interface MachineAccountsV2026ApiGetMachineAccountDeletionSubTypeApprovalConfigRequest
|
|
104782
104724
|
*/
|
|
104783
104725
|
export interface MachineAccountsV2026ApiGetMachineAccountDeletionSubTypeApprovalConfigRequest {
|
|
104784
|
-
/**
|
|
104785
|
-
* Use this header to enable this experimental API.
|
|
104786
|
-
* @type {string}
|
|
104787
|
-
* @memberof MachineAccountsV2026ApiGetMachineAccountDeletionSubTypeApprovalConfig
|
|
104788
|
-
*/
|
|
104789
|
-
readonly xSailPointExperimental: string
|
|
104790
|
-
|
|
104791
104726
|
/**
|
|
104792
104727
|
* machine subtype id.
|
|
104793
104728
|
* @type {string}
|
|
@@ -105019,13 +104954,6 @@ export interface MachineAccountsV2026ApiUpdateMachineAccountRequest {
|
|
|
105019
104954
|
* @interface MachineAccountsV2026ApiUpdateMachineAccountDeletionBySubTypeApprovalConfigRequest
|
|
105020
104955
|
*/
|
|
105021
104956
|
export interface MachineAccountsV2026ApiUpdateMachineAccountDeletionBySubTypeApprovalConfigRequest {
|
|
105022
|
-
/**
|
|
105023
|
-
* Use this header to enable this experimental API.
|
|
105024
|
-
* @type {string}
|
|
105025
|
-
* @memberof MachineAccountsV2026ApiUpdateMachineAccountDeletionBySubTypeApprovalConfig
|
|
105026
|
-
*/
|
|
105027
|
-
readonly xSailPointExperimental: string
|
|
105028
|
-
|
|
105029
104957
|
/**
|
|
105030
104958
|
* machine account subtype ID.
|
|
105031
104959
|
* @type {string}
|
|
@@ -105093,7 +105021,7 @@ export class MachineAccountsV2026Api extends BaseAPI {
|
|
|
105093
105021
|
* @memberof MachineAccountsV2026Api
|
|
105094
105022
|
*/
|
|
105095
105023
|
public getMachineAccountDeletionSubTypeApprovalConfig(requestParameters: MachineAccountsV2026ApiGetMachineAccountDeletionSubTypeApprovalConfigRequest, axiosOptions?: RawAxiosRequestConfig) {
|
|
105096
|
-
return MachineAccountsV2026ApiFp(this.configuration).getMachineAccountDeletionSubTypeApprovalConfig(requestParameters.
|
|
105024
|
+
return MachineAccountsV2026ApiFp(this.configuration).getMachineAccountDeletionSubTypeApprovalConfig(requestParameters.subtypeId, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
105097
105025
|
}
|
|
105098
105026
|
|
|
105099
105027
|
/**
|
|
@@ -105177,7 +105105,7 @@ export class MachineAccountsV2026Api extends BaseAPI {
|
|
|
105177
105105
|
* @memberof MachineAccountsV2026Api
|
|
105178
105106
|
*/
|
|
105179
105107
|
public updateMachineAccountDeletionBySubTypeApprovalConfig(requestParameters: MachineAccountsV2026ApiUpdateMachineAccountDeletionBySubTypeApprovalConfigRequest, axiosOptions?: RawAxiosRequestConfig) {
|
|
105180
|
-
return MachineAccountsV2026ApiFp(this.configuration).updateMachineAccountDeletionBySubTypeApprovalConfig(requestParameters.
|
|
105108
|
+
return MachineAccountsV2026ApiFp(this.configuration).updateMachineAccountDeletionBySubTypeApprovalConfig(requestParameters.subtypeId, requestParameters.jsonPatchOperationV2026, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
105181
105109
|
}
|
|
105182
105110
|
}
|
|
105183
105111
|
|
|
@@ -134277,18 +134205,11 @@ export const SourcesV2026ApiAxiosParamCreator = function (configuration?: Config
|
|
|
134277
134205
|
/**
|
|
134278
134206
|
* 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.
|
|
134279
134207
|
* @summary Human Account Deletion Approval Config
|
|
134280
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
134281
134208
|
* @param {string} sourceId The Source id
|
|
134282
134209
|
* @param {*} [axiosOptions] Override http request option.
|
|
134283
134210
|
* @throws {RequiredError}
|
|
134284
134211
|
*/
|
|
134285
|
-
getAccountDeleteApprovalConfig: async (
|
|
134286
|
-
if (xSailPointExperimental === undefined) {
|
|
134287
|
-
xSailPointExperimental = 'true';
|
|
134288
|
-
}
|
|
134289
|
-
|
|
134290
|
-
// verify required parameter 'xSailPointExperimental' is not null or undefined
|
|
134291
|
-
assertParamExists('getAccountDeleteApprovalConfig', 'xSailPointExperimental', xSailPointExperimental)
|
|
134212
|
+
getAccountDeleteApprovalConfig: async (sourceId: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
134292
134213
|
// verify required parameter 'sourceId' is not null or undefined
|
|
134293
134214
|
assertParamExists('getAccountDeleteApprovalConfig', 'sourceId', sourceId)
|
|
134294
134215
|
const localVarPath = `/sources/{sourceId}/approval-config/account-delete`
|
|
@@ -134314,9 +134235,6 @@ export const SourcesV2026ApiAxiosParamCreator = function (configuration?: Config
|
|
|
134314
134235
|
|
|
134315
134236
|
|
|
134316
134237
|
|
|
134317
|
-
if (xSailPointExperimental != null) {
|
|
134318
|
-
localVarHeaderParameter['X-SailPoint-Experimental'] = String(xSailPointExperimental);
|
|
134319
|
-
}
|
|
134320
134238
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
134321
134239
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
134322
134240
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
|
|
@@ -134464,18 +134382,11 @@ export const SourcesV2026ApiAxiosParamCreator = function (configuration?: Config
|
|
|
134464
134382
|
/**
|
|
134465
134383
|
* 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.
|
|
134466
134384
|
* @summary Machine Account Deletion Approval Config
|
|
134467
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
134468
134385
|
* @param {string} sourceId source id.
|
|
134469
134386
|
* @param {*} [axiosOptions] Override http request option.
|
|
134470
134387
|
* @throws {RequiredError}
|
|
134471
134388
|
*/
|
|
134472
|
-
getMachineAccountDeletionApprovalConfigBySource: async (
|
|
134473
|
-
if (xSailPointExperimental === undefined) {
|
|
134474
|
-
xSailPointExperimental = 'true';
|
|
134475
|
-
}
|
|
134476
|
-
|
|
134477
|
-
// verify required parameter 'xSailPointExperimental' is not null or undefined
|
|
134478
|
-
assertParamExists('getMachineAccountDeletionApprovalConfigBySource', 'xSailPointExperimental', xSailPointExperimental)
|
|
134389
|
+
getMachineAccountDeletionApprovalConfigBySource: async (sourceId: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
134479
134390
|
// verify required parameter 'sourceId' is not null or undefined
|
|
134480
134391
|
assertParamExists('getMachineAccountDeletionApprovalConfigBySource', 'sourceId', sourceId)
|
|
134481
134392
|
const localVarPath = `/sources/{sourceId}/approval-config/machine-account-delete`
|
|
@@ -134501,9 +134412,6 @@ export const SourcesV2026ApiAxiosParamCreator = function (configuration?: Config
|
|
|
134501
134412
|
|
|
134502
134413
|
|
|
134503
134414
|
|
|
134504
|
-
if (xSailPointExperimental != null) {
|
|
134505
|
-
localVarHeaderParameter['X-SailPoint-Experimental'] = String(xSailPointExperimental);
|
|
134506
|
-
}
|
|
134507
134415
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
134508
134416
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
134509
134417
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
|
|
@@ -136155,19 +136063,12 @@ export const SourcesV2026ApiAxiosParamCreator = function (configuration?: Config
|
|
|
136155
136063
|
/**
|
|
136156
136064
|
* 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.
|
|
136157
136065
|
* @summary Human Account Deletion Approval Config
|
|
136158
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
136159
136066
|
* @param {string} sourceId Human account source ID.
|
|
136160
136067
|
* @param {Array<JsonPatchOperationV2026>} jsonPatchOperationV2026 The JSONPatch payload used to update the object.
|
|
136161
136068
|
* @param {*} [axiosOptions] Override http request option.
|
|
136162
136069
|
* @throws {RequiredError}
|
|
136163
136070
|
*/
|
|
136164
|
-
updateAccountDeletionApprovalConfig: async (
|
|
136165
|
-
if (xSailPointExperimental === undefined) {
|
|
136166
|
-
xSailPointExperimental = 'true';
|
|
136167
|
-
}
|
|
136168
|
-
|
|
136169
|
-
// verify required parameter 'xSailPointExperimental' is not null or undefined
|
|
136170
|
-
assertParamExists('updateAccountDeletionApprovalConfig', 'xSailPointExperimental', xSailPointExperimental)
|
|
136071
|
+
updateAccountDeletionApprovalConfig: async (sourceId: string, jsonPatchOperationV2026: Array<JsonPatchOperationV2026>, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
136171
136072
|
// verify required parameter 'sourceId' is not null or undefined
|
|
136172
136073
|
assertParamExists('updateAccountDeletionApprovalConfig', 'sourceId', sourceId)
|
|
136173
136074
|
// verify required parameter 'jsonPatchOperationV2026' is not null or undefined
|
|
@@ -136197,9 +136098,6 @@ export const SourcesV2026ApiAxiosParamCreator = function (configuration?: Config
|
|
|
136197
136098
|
|
|
136198
136099
|
localVarHeaderParameter['Content-Type'] = 'application/json-patch+json';
|
|
136199
136100
|
|
|
136200
|
-
if (xSailPointExperimental != null) {
|
|
136201
|
-
localVarHeaderParameter['X-SailPoint-Experimental'] = String(xSailPointExperimental);
|
|
136202
|
-
}
|
|
136203
136101
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
136204
136102
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
136205
136103
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
|
|
@@ -136213,19 +136111,12 @@ export const SourcesV2026ApiAxiosParamCreator = function (configuration?: Config
|
|
|
136213
136111
|
/**
|
|
136214
136112
|
* 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.
|
|
136215
136113
|
* @summary Machine Account Deletion Approval Config
|
|
136216
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
136217
136114
|
* @param {string} sourceId machine account source ID.
|
|
136218
136115
|
* @param {Array<JsonPatchOperationV2026>} jsonPatchOperationV2026 The JSONPatch payload used to update the object.
|
|
136219
136116
|
* @param {*} [axiosOptions] Override http request option.
|
|
136220
136117
|
* @throws {RequiredError}
|
|
136221
136118
|
*/
|
|
136222
|
-
updateMachineAccountDeletionApprovalConfig: async (
|
|
136223
|
-
if (xSailPointExperimental === undefined) {
|
|
136224
|
-
xSailPointExperimental = 'true';
|
|
136225
|
-
}
|
|
136226
|
-
|
|
136227
|
-
// verify required parameter 'xSailPointExperimental' is not null or undefined
|
|
136228
|
-
assertParamExists('updateMachineAccountDeletionApprovalConfig', 'xSailPointExperimental', xSailPointExperimental)
|
|
136119
|
+
updateMachineAccountDeletionApprovalConfig: async (sourceId: string, jsonPatchOperationV2026: Array<JsonPatchOperationV2026>, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
136229
136120
|
// verify required parameter 'sourceId' is not null or undefined
|
|
136230
136121
|
assertParamExists('updateMachineAccountDeletionApprovalConfig', 'sourceId', sourceId)
|
|
136231
136122
|
// verify required parameter 'jsonPatchOperationV2026' is not null or undefined
|
|
@@ -136255,9 +136146,6 @@ export const SourcesV2026ApiAxiosParamCreator = function (configuration?: Config
|
|
|
136255
136146
|
|
|
136256
136147
|
localVarHeaderParameter['Content-Type'] = 'application/json-patch+json';
|
|
136257
136148
|
|
|
136258
|
-
if (xSailPointExperimental != null) {
|
|
136259
|
-
localVarHeaderParameter['X-SailPoint-Experimental'] = String(xSailPointExperimental);
|
|
136260
|
-
}
|
|
136261
136149
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
136262
136150
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
136263
136151
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
|
|
@@ -136794,13 +136682,12 @@ export const SourcesV2026ApiFp = function(configuration?: Configuration) {
|
|
|
136794
136682
|
/**
|
|
136795
136683
|
* 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.
|
|
136796
136684
|
* @summary Human Account Deletion Approval Config
|
|
136797
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
136798
136685
|
* @param {string} sourceId The Source id
|
|
136799
136686
|
* @param {*} [axiosOptions] Override http request option.
|
|
136800
136687
|
* @throws {RequiredError}
|
|
136801
136688
|
*/
|
|
136802
|
-
async getAccountDeleteApprovalConfig(
|
|
136803
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.getAccountDeleteApprovalConfig(
|
|
136689
|
+
async getAccountDeleteApprovalConfig(sourceId: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AccountDeleteConfigDtoV2026>> {
|
|
136690
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getAccountDeleteApprovalConfig(sourceId, axiosOptions);
|
|
136804
136691
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
136805
136692
|
const localVarOperationServerBasePath = operationServerMap['SourcesV2026Api.getAccountDeleteApprovalConfig']?.[localVarOperationServerIndex]?.url;
|
|
136806
136693
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -136848,13 +136735,12 @@ export const SourcesV2026ApiFp = function(configuration?: Configuration) {
|
|
|
136848
136735
|
/**
|
|
136849
136736
|
* 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.
|
|
136850
136737
|
* @summary Machine Account Deletion Approval Config
|
|
136851
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
136852
136738
|
* @param {string} sourceId source id.
|
|
136853
136739
|
* @param {*} [axiosOptions] Override http request option.
|
|
136854
136740
|
* @throws {RequiredError}
|
|
136855
136741
|
*/
|
|
136856
|
-
async getMachineAccountDeletionApprovalConfigBySource(
|
|
136857
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.getMachineAccountDeletionApprovalConfigBySource(
|
|
136742
|
+
async getMachineAccountDeletionApprovalConfigBySource(sourceId: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AccountDeleteConfigDtoV2026>> {
|
|
136743
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getMachineAccountDeletionApprovalConfigBySource(sourceId, axiosOptions);
|
|
136858
136744
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
136859
136745
|
const localVarOperationServerBasePath = operationServerMap['SourcesV2026Api.getMachineAccountDeletionApprovalConfigBySource']?.[localVarOperationServerIndex]?.url;
|
|
136860
136746
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -137313,14 +137199,13 @@ export const SourcesV2026ApiFp = function(configuration?: Configuration) {
|
|
|
137313
137199
|
/**
|
|
137314
137200
|
* 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.
|
|
137315
137201
|
* @summary Human Account Deletion Approval Config
|
|
137316
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
137317
137202
|
* @param {string} sourceId Human account source ID.
|
|
137318
137203
|
* @param {Array<JsonPatchOperationV2026>} jsonPatchOperationV2026 The JSONPatch payload used to update the object.
|
|
137319
137204
|
* @param {*} [axiosOptions] Override http request option.
|
|
137320
137205
|
* @throws {RequiredError}
|
|
137321
137206
|
*/
|
|
137322
|
-
async updateAccountDeletionApprovalConfig(
|
|
137323
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.updateAccountDeletionApprovalConfig(
|
|
137207
|
+
async updateAccountDeletionApprovalConfig(sourceId: string, jsonPatchOperationV2026: Array<JsonPatchOperationV2026>, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AccountDeleteConfigDtoV2026>> {
|
|
137208
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.updateAccountDeletionApprovalConfig(sourceId, jsonPatchOperationV2026, axiosOptions);
|
|
137324
137209
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
137325
137210
|
const localVarOperationServerBasePath = operationServerMap['SourcesV2026Api.updateAccountDeletionApprovalConfig']?.[localVarOperationServerIndex]?.url;
|
|
137326
137211
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -137328,14 +137213,13 @@ export const SourcesV2026ApiFp = function(configuration?: Configuration) {
|
|
|
137328
137213
|
/**
|
|
137329
137214
|
* 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.
|
|
137330
137215
|
* @summary Machine Account Deletion Approval Config
|
|
137331
|
-
* @param {string} xSailPointExperimental Use this header to enable this experimental API.
|
|
137332
137216
|
* @param {string} sourceId machine account source ID.
|
|
137333
137217
|
* @param {Array<JsonPatchOperationV2026>} jsonPatchOperationV2026 The JSONPatch payload used to update the object.
|
|
137334
137218
|
* @param {*} [axiosOptions] Override http request option.
|
|
137335
137219
|
* @throws {RequiredError}
|
|
137336
137220
|
*/
|
|
137337
|
-
async updateMachineAccountDeletionApprovalConfig(
|
|
137338
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.updateMachineAccountDeletionApprovalConfig(
|
|
137221
|
+
async updateMachineAccountDeletionApprovalConfig(sourceId: string, jsonPatchOperationV2026: Array<JsonPatchOperationV2026>, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AccountDeleteConfigDtoV2026>> {
|
|
137222
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.updateMachineAccountDeletionApprovalConfig(sourceId, jsonPatchOperationV2026, axiosOptions);
|
|
137339
137223
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
137340
137224
|
const localVarOperationServerBasePath = operationServerMap['SourcesV2026Api.updateMachineAccountDeletionApprovalConfig']?.[localVarOperationServerIndex]?.url;
|
|
137341
137225
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -137559,7 +137443,7 @@ export const SourcesV2026ApiFactory = function (configuration?: Configuration, b
|
|
|
137559
137443
|
* @throws {RequiredError}
|
|
137560
137444
|
*/
|
|
137561
137445
|
getAccountDeleteApprovalConfig(requestParameters: SourcesV2026ApiGetAccountDeleteApprovalConfigRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<AccountDeleteConfigDtoV2026> {
|
|
137562
|
-
return localVarFp.getAccountDeleteApprovalConfig(requestParameters.
|
|
137446
|
+
return localVarFp.getAccountDeleteApprovalConfig(requestParameters.sourceId, axiosOptions).then((request) => request(axios, basePath));
|
|
137563
137447
|
},
|
|
137564
137448
|
/**
|
|
137565
137449
|
* This API downloads the CSV schema that defines the account attributes on a source. >**NOTE: This API is designated only for Delimited File sources.**
|
|
@@ -137599,7 +137483,7 @@ export const SourcesV2026ApiFactory = function (configuration?: Configuration, b
|
|
|
137599
137483
|
* @throws {RequiredError}
|
|
137600
137484
|
*/
|
|
137601
137485
|
getMachineAccountDeletionApprovalConfigBySource(requestParameters: SourcesV2026ApiGetMachineAccountDeletionApprovalConfigBySourceRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<AccountDeleteConfigDtoV2026> {
|
|
137602
|
-
return localVarFp.getMachineAccountDeletionApprovalConfigBySource(requestParameters.
|
|
137486
|
+
return localVarFp.getMachineAccountDeletionApprovalConfigBySource(requestParameters.sourceId, axiosOptions).then((request) => request(axios, basePath));
|
|
137603
137487
|
},
|
|
137604
137488
|
/**
|
|
137605
137489
|
* This API returns the existing native change detection configuration for a source specified by the given ID.
|
|
@@ -137929,7 +137813,7 @@ export const SourcesV2026ApiFactory = function (configuration?: Configuration, b
|
|
|
137929
137813
|
* @throws {RequiredError}
|
|
137930
137814
|
*/
|
|
137931
137815
|
updateAccountDeletionApprovalConfig(requestParameters: SourcesV2026ApiUpdateAccountDeletionApprovalConfigRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<AccountDeleteConfigDtoV2026> {
|
|
137932
|
-
return localVarFp.updateAccountDeletionApprovalConfig(requestParameters.
|
|
137816
|
+
return localVarFp.updateAccountDeletionApprovalConfig(requestParameters.sourceId, requestParameters.jsonPatchOperationV2026, axiosOptions).then((request) => request(axios, basePath));
|
|
137933
137817
|
},
|
|
137934
137818
|
/**
|
|
137935
137819
|
* 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.
|
|
@@ -137939,7 +137823,7 @@ export const SourcesV2026ApiFactory = function (configuration?: Configuration, b
|
|
|
137939
137823
|
* @throws {RequiredError}
|
|
137940
137824
|
*/
|
|
137941
137825
|
updateMachineAccountDeletionApprovalConfig(requestParameters: SourcesV2026ApiUpdateMachineAccountDeletionApprovalConfigRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<AccountDeleteConfigDtoV2026> {
|
|
137942
|
-
return localVarFp.updateMachineAccountDeletionApprovalConfig(requestParameters.
|
|
137826
|
+
return localVarFp.updateMachineAccountDeletionApprovalConfig(requestParameters.sourceId, requestParameters.jsonPatchOperationV2026, axiosOptions).then((request) => request(axios, basePath));
|
|
137943
137827
|
},
|
|
137944
137828
|
/**
|
|
137945
137829
|
* This API can be used to set up or update Password Policy in IdentityNow for the specified Source. Source must support PASSWORD feature.
|
|
@@ -138209,13 +138093,6 @@ export interface SourcesV2026ApiDeleteSourceSchemaRequest {
|
|
|
138209
138093
|
* @interface SourcesV2026ApiGetAccountDeleteApprovalConfigRequest
|
|
138210
138094
|
*/
|
|
138211
138095
|
export interface SourcesV2026ApiGetAccountDeleteApprovalConfigRequest {
|
|
138212
|
-
/**
|
|
138213
|
-
* Use this header to enable this experimental API.
|
|
138214
|
-
* @type {string}
|
|
138215
|
-
* @memberof SourcesV2026ApiGetAccountDeleteApprovalConfig
|
|
138216
|
-
*/
|
|
138217
|
-
readonly xSailPointExperimental: string
|
|
138218
|
-
|
|
138219
138096
|
/**
|
|
138220
138097
|
* The Source id
|
|
138221
138098
|
* @type {string}
|
|
@@ -138279,13 +138156,6 @@ export interface SourcesV2026ApiGetEntitlementsSchemaRequest {
|
|
|
138279
138156
|
* @interface SourcesV2026ApiGetMachineAccountDeletionApprovalConfigBySourceRequest
|
|
138280
138157
|
*/
|
|
138281
138158
|
export interface SourcesV2026ApiGetMachineAccountDeletionApprovalConfigBySourceRequest {
|
|
138282
|
-
/**
|
|
138283
|
-
* Use this header to enable this experimental API.
|
|
138284
|
-
* @type {string}
|
|
138285
|
-
* @memberof SourcesV2026ApiGetMachineAccountDeletionApprovalConfigBySource
|
|
138286
|
-
*/
|
|
138287
|
-
readonly xSailPointExperimental: string
|
|
138288
|
-
|
|
138289
138159
|
/**
|
|
138290
138160
|
* source id.
|
|
138291
138161
|
* @type {string}
|
|
@@ -138993,13 +138863,6 @@ export interface SourcesV2026ApiTestSourceConnectionRequest {
|
|
|
138993
138863
|
* @interface SourcesV2026ApiUpdateAccountDeletionApprovalConfigRequest
|
|
138994
138864
|
*/
|
|
138995
138865
|
export interface SourcesV2026ApiUpdateAccountDeletionApprovalConfigRequest {
|
|
138996
|
-
/**
|
|
138997
|
-
* Use this header to enable this experimental API.
|
|
138998
|
-
* @type {string}
|
|
138999
|
-
* @memberof SourcesV2026ApiUpdateAccountDeletionApprovalConfig
|
|
139000
|
-
*/
|
|
139001
|
-
readonly xSailPointExperimental: string
|
|
139002
|
-
|
|
139003
138866
|
/**
|
|
139004
138867
|
* Human account source ID.
|
|
139005
138868
|
* @type {string}
|
|
@@ -139021,13 +138884,6 @@ export interface SourcesV2026ApiUpdateAccountDeletionApprovalConfigRequest {
|
|
|
139021
138884
|
* @interface SourcesV2026ApiUpdateMachineAccountDeletionApprovalConfigRequest
|
|
139022
138885
|
*/
|
|
139023
138886
|
export interface SourcesV2026ApiUpdateMachineAccountDeletionApprovalConfigRequest {
|
|
139024
|
-
/**
|
|
139025
|
-
* Use this header to enable this experimental API.
|
|
139026
|
-
* @type {string}
|
|
139027
|
-
* @memberof SourcesV2026ApiUpdateMachineAccountDeletionApprovalConfig
|
|
139028
|
-
*/
|
|
139029
|
-
readonly xSailPointExperimental: string
|
|
139030
|
-
|
|
139031
138887
|
/**
|
|
139032
138888
|
* machine account source ID.
|
|
139033
138889
|
* @type {string}
|
|
@@ -139347,7 +139203,7 @@ export class SourcesV2026Api extends BaseAPI {
|
|
|
139347
139203
|
* @memberof SourcesV2026Api
|
|
139348
139204
|
*/
|
|
139349
139205
|
public getAccountDeleteApprovalConfig(requestParameters: SourcesV2026ApiGetAccountDeleteApprovalConfigRequest, axiosOptions?: RawAxiosRequestConfig) {
|
|
139350
|
-
return SourcesV2026ApiFp(this.configuration).getAccountDeleteApprovalConfig(requestParameters.
|
|
139206
|
+
return SourcesV2026ApiFp(this.configuration).getAccountDeleteApprovalConfig(requestParameters.sourceId, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
139351
139207
|
}
|
|
139352
139208
|
|
|
139353
139209
|
/**
|
|
@@ -139395,7 +139251,7 @@ export class SourcesV2026Api extends BaseAPI {
|
|
|
139395
139251
|
* @memberof SourcesV2026Api
|
|
139396
139252
|
*/
|
|
139397
139253
|
public getMachineAccountDeletionApprovalConfigBySource(requestParameters: SourcesV2026ApiGetMachineAccountDeletionApprovalConfigBySourceRequest, axiosOptions?: RawAxiosRequestConfig) {
|
|
139398
|
-
return SourcesV2026ApiFp(this.configuration).getMachineAccountDeletionApprovalConfigBySource(requestParameters.
|
|
139254
|
+
return SourcesV2026ApiFp(this.configuration).getMachineAccountDeletionApprovalConfigBySource(requestParameters.sourceId, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
139399
139255
|
}
|
|
139400
139256
|
|
|
139401
139257
|
/**
|
|
@@ -139791,7 +139647,7 @@ export class SourcesV2026Api extends BaseAPI {
|
|
|
139791
139647
|
* @memberof SourcesV2026Api
|
|
139792
139648
|
*/
|
|
139793
139649
|
public updateAccountDeletionApprovalConfig(requestParameters: SourcesV2026ApiUpdateAccountDeletionApprovalConfigRequest, axiosOptions?: RawAxiosRequestConfig) {
|
|
139794
|
-
return SourcesV2026ApiFp(this.configuration).updateAccountDeletionApprovalConfig(requestParameters.
|
|
139650
|
+
return SourcesV2026ApiFp(this.configuration).updateAccountDeletionApprovalConfig(requestParameters.sourceId, requestParameters.jsonPatchOperationV2026, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
139795
139651
|
}
|
|
139796
139652
|
|
|
139797
139653
|
/**
|
|
@@ -139803,7 +139659,7 @@ export class SourcesV2026Api extends BaseAPI {
|
|
|
139803
139659
|
* @memberof SourcesV2026Api
|
|
139804
139660
|
*/
|
|
139805
139661
|
public updateMachineAccountDeletionApprovalConfig(requestParameters: SourcesV2026ApiUpdateMachineAccountDeletionApprovalConfigRequest, axiosOptions?: RawAxiosRequestConfig) {
|
|
139806
|
-
return SourcesV2026ApiFp(this.configuration).updateMachineAccountDeletionApprovalConfig(requestParameters.
|
|
139662
|
+
return SourcesV2026ApiFp(this.configuration).updateMachineAccountDeletionApprovalConfig(requestParameters.sourceId, requestParameters.jsonPatchOperationV2026, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
139807
139663
|
}
|
|
139808
139664
|
|
|
139809
139665
|
/**
|