sailpoint-api-client 1.8.24 → 1.8.26
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/paginator.d.ts +1 -1
- package/dist/paginator.js +144 -87
- package/dist/paginator.js.map +1 -1
- package/dist/paginator.spec.d.ts +1 -0
- package/dist/paginator.spec.js +273 -0
- package/dist/paginator.spec.js.map +1 -0
- package/dist/v2024/common.js +2 -2
- package/dist/v2025/api.d.ts +144 -0
- package/dist/v2025/api.js +230 -0
- package/dist/v2025/api.js.map +1 -1
- package/dist/v2025/common.js +2 -2
- package/dist/v2026/api.d.ts +481 -0
- package/dist/v2026/api.js +607 -20
- 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/paginator.spec.ts +158 -0
- package/paginator.ts +101 -62
- package/v2024/README.md +2 -2
- package/v2024/common.ts +2 -2
- package/v2024/package.json +1 -1
- package/v2025/README.md +2 -2
- package/v2025/api.ts +256 -0
- package/v2025/common.ts +2 -2
- package/v2025/package.json +1 -1
- package/v2026/README.md +2 -2
- package/v2026/api.ts +757 -0
- 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/v2025/api.ts
CHANGED
|
@@ -40853,6 +40853,50 @@ export interface RoleMiningSessionStatusV2025 {
|
|
|
40853
40853
|
}
|
|
40854
40854
|
|
|
40855
40855
|
|
|
40856
|
+
/**
|
|
40857
|
+
* Role Change Propagation Config Input
|
|
40858
|
+
* @export
|
|
40859
|
+
* @interface RolePropagationConfigInputV2025
|
|
40860
|
+
*/
|
|
40861
|
+
export interface RolePropagationConfigInputV2025 {
|
|
40862
|
+
/**
|
|
40863
|
+
* Indicates if the Role Change Propagation process should be enabled for the tenant
|
|
40864
|
+
* @type {boolean}
|
|
40865
|
+
* @memberof RolePropagationConfigInputV2025
|
|
40866
|
+
*/
|
|
40867
|
+
'enabled'?: boolean;
|
|
40868
|
+
}
|
|
40869
|
+
/**
|
|
40870
|
+
* Role Change Propagation Config Response
|
|
40871
|
+
* @export
|
|
40872
|
+
* @interface RolePropagationConfigResponseV2025
|
|
40873
|
+
*/
|
|
40874
|
+
export interface RolePropagationConfigResponseV2025 {
|
|
40875
|
+
/**
|
|
40876
|
+
* Indicates if the Role Change Propagation process is enabled for the tenant
|
|
40877
|
+
* @type {boolean}
|
|
40878
|
+
* @memberof RolePropagationConfigResponseV2025
|
|
40879
|
+
*/
|
|
40880
|
+
'enabled'?: boolean;
|
|
40881
|
+
/**
|
|
40882
|
+
* The time when Role Change Propagation Process was last enabled on the tenant
|
|
40883
|
+
* @type {string}
|
|
40884
|
+
* @memberof RolePropagationConfigResponseV2025
|
|
40885
|
+
*/
|
|
40886
|
+
'enabledDate'?: string;
|
|
40887
|
+
/**
|
|
40888
|
+
* The time when Role Change Propagation Configuration was first created for the tenant
|
|
40889
|
+
* @type {string}
|
|
40890
|
+
* @memberof RolePropagationConfigResponseV2025
|
|
40891
|
+
*/
|
|
40892
|
+
'createdDate'?: string;
|
|
40893
|
+
/**
|
|
40894
|
+
* The time when Role Change Propagation Config was updated on the tenant
|
|
40895
|
+
* @type {string}
|
|
40896
|
+
* @memberof RolePropagationConfigResponseV2025
|
|
40897
|
+
*/
|
|
40898
|
+
'modifiedDate'?: string;
|
|
40899
|
+
}
|
|
40856
40900
|
/**
|
|
40857
40901
|
* Details of the ongoing role propagation process
|
|
40858
40902
|
* @export
|
|
@@ -120970,6 +121014,56 @@ export const RolePropagationV2025ApiAxiosParamCreator = function (configuration?
|
|
|
120970
121014
|
|
|
120971
121015
|
|
|
120972
121016
|
|
|
121017
|
+
if (xSailPointExperimental != null) {
|
|
121018
|
+
localVarHeaderParameter['X-SailPoint-Experimental'] = String(xSailPointExperimental);
|
|
121019
|
+
}
|
|
121020
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
121021
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
121022
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
|
|
121023
|
+
|
|
121024
|
+
return {
|
|
121025
|
+
url: toPathString(localVarUrlObj),
|
|
121026
|
+
axiosOptions: localVarRequestOptions,
|
|
121027
|
+
};
|
|
121028
|
+
},
|
|
121029
|
+
/**
|
|
121030
|
+
* This endpoint fetches the Role Change Propagation Configuration for the tenant
|
|
121031
|
+
* @summary Get Role Change Propagation Configuration
|
|
121032
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
121033
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
121034
|
+
* @throws {RequiredError}
|
|
121035
|
+
*/
|
|
121036
|
+
getRolePropagationConfig: async (xSailPointExperimental?: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
121037
|
+
if (xSailPointExperimental === undefined) {
|
|
121038
|
+
xSailPointExperimental = 'true';
|
|
121039
|
+
}
|
|
121040
|
+
|
|
121041
|
+
const localVarPath = `/role-propagation-config`;
|
|
121042
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
121043
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
121044
|
+
let baseOptions;
|
|
121045
|
+
if (configuration) {
|
|
121046
|
+
baseOptions = configuration.baseOptions;
|
|
121047
|
+
}
|
|
121048
|
+
|
|
121049
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...axiosOptions};
|
|
121050
|
+
const localVarHeaderParameter = {} as any;
|
|
121051
|
+
const localVarQueryParameter = {} as any;
|
|
121052
|
+
|
|
121053
|
+
// authentication userAuth required
|
|
121054
|
+
// oauth required
|
|
121055
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
121056
|
+
|
|
121057
|
+
// authentication userAuth required
|
|
121058
|
+
// oauth required
|
|
121059
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
121060
|
+
|
|
121061
|
+
// authentication applicationAuth required
|
|
121062
|
+
// oauth required
|
|
121063
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
121064
|
+
|
|
121065
|
+
|
|
121066
|
+
|
|
120973
121067
|
if (xSailPointExperimental != null) {
|
|
120974
121068
|
localVarHeaderParameter['X-SailPoint-Experimental'] = String(xSailPointExperimental);
|
|
120975
121069
|
}
|
|
@@ -121036,6 +121130,62 @@ export const RolePropagationV2025ApiAxiosParamCreator = function (configuration?
|
|
|
121036
121130
|
axiosOptions: localVarRequestOptions,
|
|
121037
121131
|
};
|
|
121038
121132
|
},
|
|
121133
|
+
/**
|
|
121134
|
+
* This endpoint enables or disables the Role Change Propagation Process for the tenant
|
|
121135
|
+
* @summary Update Role Change Propagation Configuration
|
|
121136
|
+
* @param {RolePropagationConfigInputV2025} rolePropagationConfigInputV2025
|
|
121137
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
121138
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
121139
|
+
* @throws {RequiredError}
|
|
121140
|
+
*/
|
|
121141
|
+
setRolePropagationConfig: async (rolePropagationConfigInputV2025: RolePropagationConfigInputV2025, xSailPointExperimental?: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
121142
|
+
// verify required parameter 'rolePropagationConfigInputV2025' is not null or undefined
|
|
121143
|
+
assertParamExists('setRolePropagationConfig', 'rolePropagationConfigInputV2025', rolePropagationConfigInputV2025)
|
|
121144
|
+
if (xSailPointExperimental === undefined) {
|
|
121145
|
+
xSailPointExperimental = 'true';
|
|
121146
|
+
}
|
|
121147
|
+
|
|
121148
|
+
const localVarPath = `/role-propagation-config`;
|
|
121149
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
121150
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
121151
|
+
let baseOptions;
|
|
121152
|
+
if (configuration) {
|
|
121153
|
+
baseOptions = configuration.baseOptions;
|
|
121154
|
+
}
|
|
121155
|
+
|
|
121156
|
+
const localVarRequestOptions = { method: 'PUT', ...baseOptions, ...axiosOptions};
|
|
121157
|
+
const localVarHeaderParameter = {} as any;
|
|
121158
|
+
const localVarQueryParameter = {} as any;
|
|
121159
|
+
|
|
121160
|
+
// authentication userAuth required
|
|
121161
|
+
// oauth required
|
|
121162
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
121163
|
+
|
|
121164
|
+
// authentication userAuth required
|
|
121165
|
+
// oauth required
|
|
121166
|
+
await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
|
|
121167
|
+
|
|
121168
|
+
// authentication applicationAuth required
|
|
121169
|
+
// oauth required
|
|
121170
|
+
await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
|
|
121171
|
+
|
|
121172
|
+
|
|
121173
|
+
|
|
121174
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
121175
|
+
|
|
121176
|
+
if (xSailPointExperimental != null) {
|
|
121177
|
+
localVarHeaderParameter['X-SailPoint-Experimental'] = String(xSailPointExperimental);
|
|
121178
|
+
}
|
|
121179
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
121180
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
121181
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
|
|
121182
|
+
localVarRequestOptions.data = serializeDataIfNeeded(rolePropagationConfigInputV2025, localVarRequestOptions, configuration)
|
|
121183
|
+
|
|
121184
|
+
return {
|
|
121185
|
+
url: toPathString(localVarUrlObj),
|
|
121186
|
+
axiosOptions: localVarRequestOptions,
|
|
121187
|
+
};
|
|
121188
|
+
},
|
|
121039
121189
|
/**
|
|
121040
121190
|
* This endpoint initiates a role change propagation process for a tenant asynchronously. If all preconditions are met, the request is accepted and a rolePropagationId is returned which can be used to view the status. API throws 4xx if any of the following conditions are met - Role propagation feature is disabled - There is an ongoing role propagation for the tenant - Role refresh needs to be kicked off as part of the role propagation (skipRoleRefresh=false) and there is an ongoing refresh for the tenant
|
|
121041
121191
|
* @summary Initiate Role Propagation process
|
|
@@ -121127,6 +121277,19 @@ export const RolePropagationV2025ApiFp = function(configuration?: Configuration)
|
|
|
121127
121277
|
const localVarOperationServerBasePath = operationServerMap['RolePropagationV2025Api.getOngoingRolePropagation']?.[localVarOperationServerIndex]?.url;
|
|
121128
121278
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
121129
121279
|
},
|
|
121280
|
+
/**
|
|
121281
|
+
* This endpoint fetches the Role Change Propagation Configuration for the tenant
|
|
121282
|
+
* @summary Get Role Change Propagation Configuration
|
|
121283
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
121284
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
121285
|
+
* @throws {RequiredError}
|
|
121286
|
+
*/
|
|
121287
|
+
async getRolePropagationConfig(xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RolePropagationConfigResponseV2025>> {
|
|
121288
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getRolePropagationConfig(xSailPointExperimental, axiosOptions);
|
|
121289
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
121290
|
+
const localVarOperationServerBasePath = operationServerMap['RolePropagationV2025Api.getRolePropagationConfig']?.[localVarOperationServerIndex]?.url;
|
|
121291
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
121292
|
+
},
|
|
121130
121293
|
/**
|
|
121131
121294
|
* This endpoint returns the information of the specified role change propagation process. The execution stage of the role propagation process can be one of the following: - PENDING - The role propagation process is queued to be executed. - DATA_AGGREGATION_RUNNING - The role propagation process is currently aggregating data. - LAUNCH_PROVISIONING - The role propagation process has started to provision the access to the identities. - SUCCEEDED - The role propagation process has successfully completed. - FAILED - The role propagation process has failed. - TERMINATED - The role propagation process was externally terminated.
|
|
121132
121295
|
* @summary Get status of Role-Propagation process
|
|
@@ -121141,6 +121304,20 @@ export const RolePropagationV2025ApiFp = function(configuration?: Configuration)
|
|
|
121141
121304
|
const localVarOperationServerBasePath = operationServerMap['RolePropagationV2025Api.getRolePropagationStatus']?.[localVarOperationServerIndex]?.url;
|
|
121142
121305
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
121143
121306
|
},
|
|
121307
|
+
/**
|
|
121308
|
+
* This endpoint enables or disables the Role Change Propagation Process for the tenant
|
|
121309
|
+
* @summary Update Role Change Propagation Configuration
|
|
121310
|
+
* @param {RolePropagationConfigInputV2025} rolePropagationConfigInputV2025
|
|
121311
|
+
* @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
|
|
121312
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
121313
|
+
* @throws {RequiredError}
|
|
121314
|
+
*/
|
|
121315
|
+
async setRolePropagationConfig(rolePropagationConfigInputV2025: RolePropagationConfigInputV2025, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RolePropagationConfigResponseV2025>> {
|
|
121316
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.setRolePropagationConfig(rolePropagationConfigInputV2025, xSailPointExperimental, axiosOptions);
|
|
121317
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
121318
|
+
const localVarOperationServerBasePath = operationServerMap['RolePropagationV2025Api.setRolePropagationConfig']?.[localVarOperationServerIndex]?.url;
|
|
121319
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
121320
|
+
},
|
|
121144
121321
|
/**
|
|
121145
121322
|
* This endpoint initiates a role change propagation process for a tenant asynchronously. If all preconditions are met, the request is accepted and a rolePropagationId is returned which can be used to view the status. API throws 4xx if any of the following conditions are met - Role propagation feature is disabled - There is an ongoing role propagation for the tenant - Role refresh needs to be kicked off as part of the role propagation (skipRoleRefresh=false) and there is an ongoing refresh for the tenant
|
|
121146
121323
|
* @summary Initiate Role Propagation process
|
|
@@ -121185,6 +121362,16 @@ export const RolePropagationV2025ApiFactory = function (configuration?: Configur
|
|
|
121185
121362
|
getOngoingRolePropagation(requestParameters: RolePropagationV2025ApiGetOngoingRolePropagationRequest = {}, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<RolePropagationOngoingResponseV2025> {
|
|
121186
121363
|
return localVarFp.getOngoingRolePropagation(requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(axios, basePath));
|
|
121187
121364
|
},
|
|
121365
|
+
/**
|
|
121366
|
+
* This endpoint fetches the Role Change Propagation Configuration for the tenant
|
|
121367
|
+
* @summary Get Role Change Propagation Configuration
|
|
121368
|
+
* @param {RolePropagationV2025ApiGetRolePropagationConfigRequest} requestParameters Request parameters.
|
|
121369
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
121370
|
+
* @throws {RequiredError}
|
|
121371
|
+
*/
|
|
121372
|
+
getRolePropagationConfig(requestParameters: RolePropagationV2025ApiGetRolePropagationConfigRequest = {}, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<RolePropagationConfigResponseV2025> {
|
|
121373
|
+
return localVarFp.getRolePropagationConfig(requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(axios, basePath));
|
|
121374
|
+
},
|
|
121188
121375
|
/**
|
|
121189
121376
|
* This endpoint returns the information of the specified role change propagation process. The execution stage of the role propagation process can be one of the following: - PENDING - The role propagation process is queued to be executed. - DATA_AGGREGATION_RUNNING - The role propagation process is currently aggregating data. - LAUNCH_PROVISIONING - The role propagation process has started to provision the access to the identities. - SUCCEEDED - The role propagation process has successfully completed. - FAILED - The role propagation process has failed. - TERMINATED - The role propagation process was externally terminated.
|
|
121190
121377
|
* @summary Get status of Role-Propagation process
|
|
@@ -121195,6 +121382,16 @@ export const RolePropagationV2025ApiFactory = function (configuration?: Configur
|
|
|
121195
121382
|
getRolePropagationStatus(requestParameters: RolePropagationV2025ApiGetRolePropagationStatusRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<RolePropagationStatusResponseV2025> {
|
|
121196
121383
|
return localVarFp.getRolePropagationStatus(requestParameters.rolePropagationId, requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(axios, basePath));
|
|
121197
121384
|
},
|
|
121385
|
+
/**
|
|
121386
|
+
* This endpoint enables or disables the Role Change Propagation Process for the tenant
|
|
121387
|
+
* @summary Update Role Change Propagation Configuration
|
|
121388
|
+
* @param {RolePropagationV2025ApiSetRolePropagationConfigRequest} requestParameters Request parameters.
|
|
121389
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
121390
|
+
* @throws {RequiredError}
|
|
121391
|
+
*/
|
|
121392
|
+
setRolePropagationConfig(requestParameters: RolePropagationV2025ApiSetRolePropagationConfigRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<RolePropagationConfigResponseV2025> {
|
|
121393
|
+
return localVarFp.setRolePropagationConfig(requestParameters.rolePropagationConfigInputV2025, requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(axios, basePath));
|
|
121394
|
+
},
|
|
121198
121395
|
/**
|
|
121199
121396
|
* This endpoint initiates a role change propagation process for a tenant asynchronously. If all preconditions are met, the request is accepted and a rolePropagationId is returned which can be used to view the status. API throws 4xx if any of the following conditions are met - Role propagation feature is disabled - There is an ongoing role propagation for the tenant - Role refresh needs to be kicked off as part of the role propagation (skipRoleRefresh=false) and there is an ongoing refresh for the tenant
|
|
121200
121397
|
* @summary Initiate Role Propagation process
|
|
@@ -121236,6 +121433,20 @@ export interface RolePropagationV2025ApiGetOngoingRolePropagationRequest {
|
|
|
121236
121433
|
readonly xSailPointExperimental?: string
|
|
121237
121434
|
}
|
|
121238
121435
|
|
|
121436
|
+
/**
|
|
121437
|
+
* Request parameters for getRolePropagationConfig operation in RolePropagationV2025Api.
|
|
121438
|
+
* @export
|
|
121439
|
+
* @interface RolePropagationV2025ApiGetRolePropagationConfigRequest
|
|
121440
|
+
*/
|
|
121441
|
+
export interface RolePropagationV2025ApiGetRolePropagationConfigRequest {
|
|
121442
|
+
/**
|
|
121443
|
+
* Use this header to enable this experimental API.
|
|
121444
|
+
* @type {string}
|
|
121445
|
+
* @memberof RolePropagationV2025ApiGetRolePropagationConfig
|
|
121446
|
+
*/
|
|
121447
|
+
readonly xSailPointExperimental?: string
|
|
121448
|
+
}
|
|
121449
|
+
|
|
121239
121450
|
/**
|
|
121240
121451
|
* Request parameters for getRolePropagationStatus operation in RolePropagationV2025Api.
|
|
121241
121452
|
* @export
|
|
@@ -121257,6 +121468,27 @@ export interface RolePropagationV2025ApiGetRolePropagationStatusRequest {
|
|
|
121257
121468
|
readonly xSailPointExperimental?: string
|
|
121258
121469
|
}
|
|
121259
121470
|
|
|
121471
|
+
/**
|
|
121472
|
+
* Request parameters for setRolePropagationConfig operation in RolePropagationV2025Api.
|
|
121473
|
+
* @export
|
|
121474
|
+
* @interface RolePropagationV2025ApiSetRolePropagationConfigRequest
|
|
121475
|
+
*/
|
|
121476
|
+
export interface RolePropagationV2025ApiSetRolePropagationConfigRequest {
|
|
121477
|
+
/**
|
|
121478
|
+
*
|
|
121479
|
+
* @type {RolePropagationConfigInputV2025}
|
|
121480
|
+
* @memberof RolePropagationV2025ApiSetRolePropagationConfig
|
|
121481
|
+
*/
|
|
121482
|
+
readonly rolePropagationConfigInputV2025: RolePropagationConfigInputV2025
|
|
121483
|
+
|
|
121484
|
+
/**
|
|
121485
|
+
* Use this header to enable this experimental API.
|
|
121486
|
+
* @type {string}
|
|
121487
|
+
* @memberof RolePropagationV2025ApiSetRolePropagationConfig
|
|
121488
|
+
*/
|
|
121489
|
+
readonly xSailPointExperimental?: string
|
|
121490
|
+
}
|
|
121491
|
+
|
|
121260
121492
|
/**
|
|
121261
121493
|
* Request parameters for startRolePropagation operation in RolePropagationV2025Api.
|
|
121262
121494
|
* @export
|
|
@@ -121309,6 +121541,18 @@ export class RolePropagationV2025Api extends BaseAPI {
|
|
|
121309
121541
|
return RolePropagationV2025ApiFp(this.configuration).getOngoingRolePropagation(requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
121310
121542
|
}
|
|
121311
121543
|
|
|
121544
|
+
/**
|
|
121545
|
+
* This endpoint fetches the Role Change Propagation Configuration for the tenant
|
|
121546
|
+
* @summary Get Role Change Propagation Configuration
|
|
121547
|
+
* @param {RolePropagationV2025ApiGetRolePropagationConfigRequest} requestParameters Request parameters.
|
|
121548
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
121549
|
+
* @throws {RequiredError}
|
|
121550
|
+
* @memberof RolePropagationV2025Api
|
|
121551
|
+
*/
|
|
121552
|
+
public getRolePropagationConfig(requestParameters: RolePropagationV2025ApiGetRolePropagationConfigRequest = {}, axiosOptions?: RawAxiosRequestConfig) {
|
|
121553
|
+
return RolePropagationV2025ApiFp(this.configuration).getRolePropagationConfig(requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
121554
|
+
}
|
|
121555
|
+
|
|
121312
121556
|
/**
|
|
121313
121557
|
* This endpoint returns the information of the specified role change propagation process. The execution stage of the role propagation process can be one of the following: - PENDING - The role propagation process is queued to be executed. - DATA_AGGREGATION_RUNNING - The role propagation process is currently aggregating data. - LAUNCH_PROVISIONING - The role propagation process has started to provision the access to the identities. - SUCCEEDED - The role propagation process has successfully completed. - FAILED - The role propagation process has failed. - TERMINATED - The role propagation process was externally terminated.
|
|
121314
121558
|
* @summary Get status of Role-Propagation process
|
|
@@ -121321,6 +121565,18 @@ export class RolePropagationV2025Api extends BaseAPI {
|
|
|
121321
121565
|
return RolePropagationV2025ApiFp(this.configuration).getRolePropagationStatus(requestParameters.rolePropagationId, requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
121322
121566
|
}
|
|
121323
121567
|
|
|
121568
|
+
/**
|
|
121569
|
+
* This endpoint enables or disables the Role Change Propagation Process for the tenant
|
|
121570
|
+
* @summary Update Role Change Propagation Configuration
|
|
121571
|
+
* @param {RolePropagationV2025ApiSetRolePropagationConfigRequest} requestParameters Request parameters.
|
|
121572
|
+
* @param {*} [axiosOptions] Override http request option.
|
|
121573
|
+
* @throws {RequiredError}
|
|
121574
|
+
* @memberof RolePropagationV2025Api
|
|
121575
|
+
*/
|
|
121576
|
+
public setRolePropagationConfig(requestParameters: RolePropagationV2025ApiSetRolePropagationConfigRequest, axiosOptions?: RawAxiosRequestConfig) {
|
|
121577
|
+
return RolePropagationV2025ApiFp(this.configuration).setRolePropagationConfig(requestParameters.rolePropagationConfigInputV2025, requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(this.axios, this.basePath));
|
|
121578
|
+
}
|
|
121579
|
+
|
|
121324
121580
|
/**
|
|
121325
121581
|
* This endpoint initiates a role change propagation process for a tenant asynchronously. If all preconditions are met, the request is accepted and a rolePropagationId is returned which can be used to view the status. API throws 4xx if any of the following conditions are met - Role propagation feature is disabled - There is an ongoing role propagation for the tenant - Role refresh needs to be kicked off as part of the role propagation (skipRoleRefresh=false) and there is an ongoing refresh for the tenant
|
|
121326
121582
|
* @summary Initiate Role Propagation process
|
package/v2025/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.26`;
|
|
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.26'},
|
|
157
157
|
...{'User-Agent': userAgent},
|
|
158
158
|
}
|
|
159
159
|
|
package/v2025/package.json
CHANGED
package/v2026/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
## sailpoint-sdk@1.8.
|
|
1
|
+
## sailpoint-sdk@1.8.26
|
|
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.26 --save
|
|
40
40
|
```
|
|
41
41
|
|
|
42
42
|
_unPublished (not recommended):_
|