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.
Files changed (45) hide show
  1. package/beta/README.md +2 -2
  2. package/beta/common.ts +2 -2
  3. package/beta/package.json +1 -1
  4. package/dist/beta/common.js +2 -2
  5. package/dist/nerm/common.js +2 -2
  6. package/dist/nermv2025/common.js +2 -2
  7. package/dist/paginator.d.ts +1 -1
  8. package/dist/paginator.js +144 -87
  9. package/dist/paginator.js.map +1 -1
  10. package/dist/paginator.spec.d.ts +1 -0
  11. package/dist/paginator.spec.js +273 -0
  12. package/dist/paginator.spec.js.map +1 -0
  13. package/dist/v2024/common.js +2 -2
  14. package/dist/v2025/api.d.ts +144 -0
  15. package/dist/v2025/api.js +230 -0
  16. package/dist/v2025/api.js.map +1 -1
  17. package/dist/v2025/common.js +2 -2
  18. package/dist/v2026/api.d.ts +481 -0
  19. package/dist/v2026/api.js +607 -20
  20. package/dist/v2026/api.js.map +1 -1
  21. package/dist/v2026/common.js +2 -2
  22. package/dist/v3/common.js +2 -2
  23. package/nerm/README.md +2 -2
  24. package/nerm/common.ts +2 -2
  25. package/nerm/package.json +1 -1
  26. package/nermv2025/README.md +2 -2
  27. package/nermv2025/common.ts +2 -2
  28. package/nermv2025/package.json +1 -1
  29. package/package.json +1 -1
  30. package/paginator.spec.ts +158 -0
  31. package/paginator.ts +101 -62
  32. package/v2024/README.md +2 -2
  33. package/v2024/common.ts +2 -2
  34. package/v2024/package.json +1 -1
  35. package/v2025/README.md +2 -2
  36. package/v2025/api.ts +256 -0
  37. package/v2025/common.ts +2 -2
  38. package/v2025/package.json +1 -1
  39. package/v2026/README.md +2 -2
  40. package/v2026/api.ts +757 -0
  41. package/v2026/common.ts +2 -2
  42. package/v2026/package.json +1 -1
  43. package/v3/README.md +2 -2
  44. package/v3/common.ts +2 -2
  45. package/v3/package.json +1 -1
package/v2026/api.ts CHANGED
@@ -6946,6 +6946,26 @@ export interface ActivateCampaignOptionsV2026 {
6946
6946
  */
6947
6947
  'timeZone'?: string;
6948
6948
  }
6949
+ /**
6950
+ * JIT activation workflow status.
6951
+ * @export
6952
+ * @enum {string}
6953
+ */
6954
+
6955
+ export const ActivationWorkflowStatusV2026 = {
6956
+ Creating: 'CREATING',
6957
+ Activating: 'ACTIVATING',
6958
+ Invalid: 'INVALID',
6959
+ Error: 'ERROR',
6960
+ Provisioned: 'PROVISIONED',
6961
+ Deprovisioning: 'DEPROVISIONING',
6962
+ Completed: 'COMPLETED',
6963
+ Revoked: 'REVOKED'
6964
+ } as const;
6965
+
6966
+ export type ActivationWorkflowStatusV2026 = typeof ActivationWorkflowStatusV2026[keyof typeof ActivationWorkflowStatusV2026];
6967
+
6968
+
6949
6969
  /**
6950
6970
  *
6951
6971
  * @export
@@ -10204,6 +10224,7 @@ export const AuthUserV2026CapabilitiesV2026 = {
10204
10224
  CloudGovAdmin: 'CLOUD_GOV_ADMIN',
10205
10225
  CloudGovUser: 'CLOUD_GOV_USER',
10206
10226
  Helpdesk: 'HELPDESK',
10227
+ Internal: 'INTERNAL',
10207
10228
  OrgAdmin: 'ORG_ADMIN',
10208
10229
  PolicyAdmin: 'POLICY_ADMIN',
10209
10230
  ReportAdmin: 'REPORT_ADMIN',
@@ -26442,6 +26463,168 @@ export type JitAccessOperationRequestV2026PathV2026 = typeof JitAccessOperationR
26442
26463
  */
26443
26464
  export type JitAccessOperationRequestValueV2026 = Array<string> | boolean | number | string;
26444
26465
 
26466
+ /**
26467
+ *
26468
+ * @export
26469
+ * @interface JitActivationActivateRequestV2026
26470
+ */
26471
+ export interface JitActivationActivateRequestV2026 {
26472
+ /**
26473
+ * Entitlement connection identifier for the activation.
26474
+ * @type {string}
26475
+ * @memberof JitActivationActivateRequestV2026
26476
+ */
26477
+ 'connectionId': string;
26478
+ /**
26479
+ * Requested activation duration in minutes.
26480
+ * @type {number}
26481
+ * @memberof JitActivationActivateRequestV2026
26482
+ */
26483
+ 'activationPeriodMins': number;
26484
+ }
26485
+ /**
26486
+ *
26487
+ * @export
26488
+ * @interface JitActivationActivateResponseV2026
26489
+ */
26490
+ export interface JitActivationActivateResponseV2026 {
26491
+ /**
26492
+ * Workflow or business identifier for this activation.
26493
+ * @type {string}
26494
+ * @memberof JitActivationActivateResponseV2026
26495
+ */
26496
+ 'id': string;
26497
+ /**
26498
+ * Entitlement connection identifier for the activation.
26499
+ * @type {string}
26500
+ * @memberof JitActivationActivateResponseV2026
26501
+ */
26502
+ 'connectionId': string;
26503
+ /**
26504
+ * Activation duration in minutes for this workflow.
26505
+ * @type {number}
26506
+ * @memberof JitActivationActivateResponseV2026
26507
+ */
26508
+ 'activationPeriodMins': number;
26509
+ /**
26510
+ *
26511
+ * @type {ActivationWorkflowStatusV2026}
26512
+ * @memberof JitActivationActivateResponseV2026
26513
+ */
26514
+ 'status': ActivationWorkflowStatusV2026;
26515
+ /**
26516
+ * Time when the activation workflow was started (ISO-8601).
26517
+ * @type {string}
26518
+ * @memberof JitActivationActivateResponseV2026
26519
+ */
26520
+ 'startTime': string;
26521
+ }
26522
+
26523
+
26524
+ /**
26525
+ *
26526
+ * @export
26527
+ * @interface JitActivationDeactivateRequestV2026
26528
+ */
26529
+ export interface JitActivationDeactivateRequestV2026 {
26530
+ /**
26531
+ * Entitlement connection identifier for the activation to deactivate.
26532
+ * @type {string}
26533
+ * @memberof JitActivationDeactivateRequestV2026
26534
+ */
26535
+ 'connectionId': string;
26536
+ }
26537
+ /**
26538
+ *
26539
+ * @export
26540
+ * @interface JitActivationDeactivateResponseV2026
26541
+ */
26542
+ export interface JitActivationDeactivateResponseV2026 {
26543
+ /**
26544
+ * Workflow or business identifier for this activation.
26545
+ * @type {string}
26546
+ * @memberof JitActivationDeactivateResponseV2026
26547
+ */
26548
+ 'id': string;
26549
+ /**
26550
+ * Entitlement connection identifier for the activation.
26551
+ * @type {string}
26552
+ * @memberof JitActivationDeactivateResponseV2026
26553
+ */
26554
+ 'connectionId': string;
26555
+ /**
26556
+ *
26557
+ * @type {ActivationWorkflowStatusV2026}
26558
+ * @memberof JitActivationDeactivateResponseV2026
26559
+ */
26560
+ 'status': ActivationWorkflowStatusV2026;
26561
+ /**
26562
+ * Time associated with this deactivation request (ISO-8601).
26563
+ * @type {string}
26564
+ * @memberof JitActivationDeactivateResponseV2026
26565
+ */
26566
+ 'startTime': string;
26567
+ }
26568
+
26569
+
26570
+ /**
26571
+ *
26572
+ * @export
26573
+ * @interface JitActivationExtendRequestV2026
26574
+ */
26575
+ export interface JitActivationExtendRequestV2026 {
26576
+ /**
26577
+ * Entitlement connection identifier for the activation to extend.
26578
+ * @type {string}
26579
+ * @memberof JitActivationExtendRequestV2026
26580
+ */
26581
+ 'connectionId': string;
26582
+ /**
26583
+ * Number of minutes to extend the activation period.
26584
+ * @type {number}
26585
+ * @memberof JitActivationExtendRequestV2026
26586
+ */
26587
+ 'activationPeriodExtensionMins': number;
26588
+ }
26589
+ /**
26590
+ *
26591
+ * @export
26592
+ * @interface JitActivationExtendResponseV2026
26593
+ */
26594
+ export interface JitActivationExtendResponseV2026 {
26595
+ /**
26596
+ * Workflow or business identifier for this activation.
26597
+ * @type {string}
26598
+ * @memberof JitActivationExtendResponseV2026
26599
+ */
26600
+ 'id': string;
26601
+ /**
26602
+ * Entitlement connection identifier for the activation.
26603
+ * @type {string}
26604
+ * @memberof JitActivationExtendResponseV2026
26605
+ */
26606
+ 'connectionId': string;
26607
+ /**
26608
+ * Extension applied to the activation period, in minutes.
26609
+ * @type {number}
26610
+ * @memberof JitActivationExtendResponseV2026
26611
+ */
26612
+ 'activationPeriodExtensionMins': number;
26613
+ /**
26614
+ *
26615
+ * @type {ActivationWorkflowStatusV2026}
26616
+ * @memberof JitActivationExtendResponseV2026
26617
+ */
26618
+ 'status': ActivationWorkflowStatusV2026;
26619
+ /**
26620
+ * Time associated with this extend request (ISO-8601).
26621
+ * @type {string}
26622
+ * @memberof JitActivationExtendResponseV2026
26623
+ */
26624
+ 'startTime': string;
26625
+ }
26626
+
26627
+
26445
26628
  /**
26446
26629
  * A JSONPatch Operation for Role Mining endpoints, supporting only remove and replace operations as defined by [RFC 6902 - JSON Patch](https://tools.ietf.org/html/rfc6902)
26447
26630
  * @export
@@ -42312,6 +42495,50 @@ export interface RoleMiningSessionStatusV2026 {
42312
42495
  }
42313
42496
 
42314
42497
 
42498
+ /**
42499
+ * Role Change Propagation Config Input
42500
+ * @export
42501
+ * @interface RolePropagationConfigInputV2026
42502
+ */
42503
+ export interface RolePropagationConfigInputV2026 {
42504
+ /**
42505
+ * Indicates if the Role Change Propagation process should be enabled for the tenant
42506
+ * @type {boolean}
42507
+ * @memberof RolePropagationConfigInputV2026
42508
+ */
42509
+ 'enabled'?: boolean;
42510
+ }
42511
+ /**
42512
+ * Role Change Propagation Config Response
42513
+ * @export
42514
+ * @interface RolePropagationConfigResponseV2026
42515
+ */
42516
+ export interface RolePropagationConfigResponseV2026 {
42517
+ /**
42518
+ * Indicates if the Role Change Propagation process is enabled for the tenant
42519
+ * @type {boolean}
42520
+ * @memberof RolePropagationConfigResponseV2026
42521
+ */
42522
+ 'enabled'?: boolean;
42523
+ /**
42524
+ * The time when Role Change Propagation Process was last enabled on the tenant
42525
+ * @type {string}
42526
+ * @memberof RolePropagationConfigResponseV2026
42527
+ */
42528
+ 'enabledDate'?: string;
42529
+ /**
42530
+ * The time when Role Change Propagation Configuration was first created for the tenant
42531
+ * @type {string}
42532
+ * @memberof RolePropagationConfigResponseV2026
42533
+ */
42534
+ 'createdDate'?: string;
42535
+ /**
42536
+ * The time when Role Change Propagation Config was updated on the tenant
42537
+ * @type {string}
42538
+ * @memberof RolePropagationConfigResponseV2026
42539
+ */
42540
+ 'modifiedDate'?: string;
42541
+ }
42315
42542
  /**
42316
42543
  * Details of the ongoing role propagation process
42317
42544
  * @export
@@ -102003,6 +102230,324 @@ export const PatchJitActivationConfigConfigTypeV2026 = {
102003
102230
  export type PatchJitActivationConfigConfigTypeV2026 = typeof PatchJitActivationConfigConfigTypeV2026[keyof typeof PatchJitActivationConfigConfigTypeV2026];
102004
102231
 
102005
102232
 
102233
+ /**
102234
+ * JITActivationsV2026Api - axios parameter creator
102235
+ * @export
102236
+ */
102237
+ export const JITActivationsV2026ApiAxiosParamCreator = function (configuration?: Configuration) {
102238
+ return {
102239
+ /**
102240
+ * Starts a JIT Privileged (JIT P) activation workflow for the given entitlement connection and duration. The service performs quick validation; the workflow performs additional validation. The response is returned with HTTP 202 Accepted while the workflow initializes.
102241
+ * @summary Start JIT activation workflow
102242
+ * @param {JitActivationActivateRequestV2026} jitActivationActivateRequestV2026
102243
+ * @param {*} [axiosOptions] Override http request option.
102244
+ * @throws {RequiredError}
102245
+ */
102246
+ startActivateWorkflow: async (jitActivationActivateRequestV2026: JitActivationActivateRequestV2026, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
102247
+ // verify required parameter 'jitActivationActivateRequestV2026' is not null or undefined
102248
+ assertParamExists('startActivateWorkflow', 'jitActivationActivateRequestV2026', jitActivationActivateRequestV2026)
102249
+ const localVarPath = `/jit-activations/activate`;
102250
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
102251
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
102252
+ let baseOptions;
102253
+ if (configuration) {
102254
+ baseOptions = configuration.baseOptions;
102255
+ }
102256
+
102257
+ const localVarRequestOptions = { method: 'POST', ...baseOptions, ...axiosOptions};
102258
+ const localVarHeaderParameter = {} as any;
102259
+ const localVarQueryParameter = {} as any;
102260
+
102261
+ // authentication userAuth required
102262
+ // oauth required
102263
+ await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
102264
+
102265
+ // authentication userAuth required
102266
+ // oauth required
102267
+ await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
102268
+
102269
+
102270
+
102271
+ localVarHeaderParameter['Content-Type'] = 'application/json';
102272
+
102273
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
102274
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
102275
+ localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
102276
+ localVarRequestOptions.data = serializeDataIfNeeded(jitActivationActivateRequestV2026, localVarRequestOptions, configuration)
102277
+
102278
+ return {
102279
+ url: toPathString(localVarUrlObj),
102280
+ axiosOptions: localVarRequestOptions,
102281
+ };
102282
+ },
102283
+ /**
102284
+ * Sends a signal to a running JIT Privileged (JIT P) activation workflow to deactivate. This request cannot be applied to a workflow that does not exist or whose execution has already completed. The client receives an error response in those cases. The response is returned with HTTP 202 Accepted after the signal is sent.
102285
+ * @summary Deactivate JIT activation workflow
102286
+ * @param {JitActivationDeactivateRequestV2026} jitActivationDeactivateRequestV2026
102287
+ * @param {*} [axiosOptions] Override http request option.
102288
+ * @throws {RequiredError}
102289
+ */
102290
+ startDeactivateWorkflow: async (jitActivationDeactivateRequestV2026: JitActivationDeactivateRequestV2026, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
102291
+ // verify required parameter 'jitActivationDeactivateRequestV2026' is not null or undefined
102292
+ assertParamExists('startDeactivateWorkflow', 'jitActivationDeactivateRequestV2026', jitActivationDeactivateRequestV2026)
102293
+ const localVarPath = `/jit-activations/deactivate`;
102294
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
102295
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
102296
+ let baseOptions;
102297
+ if (configuration) {
102298
+ baseOptions = configuration.baseOptions;
102299
+ }
102300
+
102301
+ const localVarRequestOptions = { method: 'POST', ...baseOptions, ...axiosOptions};
102302
+ const localVarHeaderParameter = {} as any;
102303
+ const localVarQueryParameter = {} as any;
102304
+
102305
+ // authentication userAuth required
102306
+ // oauth required
102307
+ await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
102308
+
102309
+ // authentication userAuth required
102310
+ // oauth required
102311
+ await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
102312
+
102313
+
102314
+
102315
+ localVarHeaderParameter['Content-Type'] = 'application/json';
102316
+
102317
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
102318
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
102319
+ localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
102320
+ localVarRequestOptions.data = serializeDataIfNeeded(jitActivationDeactivateRequestV2026, localVarRequestOptions, configuration)
102321
+
102322
+ return {
102323
+ url: toPathString(localVarUrlObj),
102324
+ axiosOptions: localVarRequestOptions,
102325
+ };
102326
+ },
102327
+ /**
102328
+ * Sends a signal to a running JIT Privileged (JIT P) activation workflow to extend the activation period by the requested number of minutes. This request cannot be applied to a workflow that does not exist or whose execution has already completed. The client receives an error response in those cases. The response is returned with HTTP 202 Accepted after the signal is sent.
102329
+ * @summary Extend JIT activation workflow
102330
+ * @param {JitActivationExtendRequestV2026} jitActivationExtendRequestV2026
102331
+ * @param {*} [axiosOptions] Override http request option.
102332
+ * @throws {RequiredError}
102333
+ */
102334
+ startExtendWorkflow: async (jitActivationExtendRequestV2026: JitActivationExtendRequestV2026, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
102335
+ // verify required parameter 'jitActivationExtendRequestV2026' is not null or undefined
102336
+ assertParamExists('startExtendWorkflow', 'jitActivationExtendRequestV2026', jitActivationExtendRequestV2026)
102337
+ const localVarPath = `/jit-activations/extend`;
102338
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
102339
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
102340
+ let baseOptions;
102341
+ if (configuration) {
102342
+ baseOptions = configuration.baseOptions;
102343
+ }
102344
+
102345
+ const localVarRequestOptions = { method: 'POST', ...baseOptions, ...axiosOptions};
102346
+ const localVarHeaderParameter = {} as any;
102347
+ const localVarQueryParameter = {} as any;
102348
+
102349
+ // authentication userAuth required
102350
+ // oauth required
102351
+ await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
102352
+
102353
+ // authentication userAuth required
102354
+ // oauth required
102355
+ await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
102356
+
102357
+
102358
+
102359
+ localVarHeaderParameter['Content-Type'] = 'application/json';
102360
+
102361
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
102362
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
102363
+ localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
102364
+ localVarRequestOptions.data = serializeDataIfNeeded(jitActivationExtendRequestV2026, localVarRequestOptions, configuration)
102365
+
102366
+ return {
102367
+ url: toPathString(localVarUrlObj),
102368
+ axiosOptions: localVarRequestOptions,
102369
+ };
102370
+ },
102371
+ }
102372
+ };
102373
+
102374
+ /**
102375
+ * JITActivationsV2026Api - functional programming interface
102376
+ * @export
102377
+ */
102378
+ export const JITActivationsV2026ApiFp = function(configuration?: Configuration) {
102379
+ const localVarAxiosParamCreator = JITActivationsV2026ApiAxiosParamCreator(configuration)
102380
+ return {
102381
+ /**
102382
+ * Starts a JIT Privileged (JIT P) activation workflow for the given entitlement connection and duration. The service performs quick validation; the workflow performs additional validation. The response is returned with HTTP 202 Accepted while the workflow initializes.
102383
+ * @summary Start JIT activation workflow
102384
+ * @param {JitActivationActivateRequestV2026} jitActivationActivateRequestV2026
102385
+ * @param {*} [axiosOptions] Override http request option.
102386
+ * @throws {RequiredError}
102387
+ */
102388
+ async startActivateWorkflow(jitActivationActivateRequestV2026: JitActivationActivateRequestV2026, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JitActivationActivateResponseV2026>> {
102389
+ const localVarAxiosArgs = await localVarAxiosParamCreator.startActivateWorkflow(jitActivationActivateRequestV2026, axiosOptions);
102390
+ const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
102391
+ const localVarOperationServerBasePath = operationServerMap['JITActivationsV2026Api.startActivateWorkflow']?.[localVarOperationServerIndex]?.url;
102392
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
102393
+ },
102394
+ /**
102395
+ * Sends a signal to a running JIT Privileged (JIT P) activation workflow to deactivate. This request cannot be applied to a workflow that does not exist or whose execution has already completed. The client receives an error response in those cases. The response is returned with HTTP 202 Accepted after the signal is sent.
102396
+ * @summary Deactivate JIT activation workflow
102397
+ * @param {JitActivationDeactivateRequestV2026} jitActivationDeactivateRequestV2026
102398
+ * @param {*} [axiosOptions] Override http request option.
102399
+ * @throws {RequiredError}
102400
+ */
102401
+ async startDeactivateWorkflow(jitActivationDeactivateRequestV2026: JitActivationDeactivateRequestV2026, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JitActivationDeactivateResponseV2026>> {
102402
+ const localVarAxiosArgs = await localVarAxiosParamCreator.startDeactivateWorkflow(jitActivationDeactivateRequestV2026, axiosOptions);
102403
+ const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
102404
+ const localVarOperationServerBasePath = operationServerMap['JITActivationsV2026Api.startDeactivateWorkflow']?.[localVarOperationServerIndex]?.url;
102405
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
102406
+ },
102407
+ /**
102408
+ * Sends a signal to a running JIT Privileged (JIT P) activation workflow to extend the activation period by the requested number of minutes. This request cannot be applied to a workflow that does not exist or whose execution has already completed. The client receives an error response in those cases. The response is returned with HTTP 202 Accepted after the signal is sent.
102409
+ * @summary Extend JIT activation workflow
102410
+ * @param {JitActivationExtendRequestV2026} jitActivationExtendRequestV2026
102411
+ * @param {*} [axiosOptions] Override http request option.
102412
+ * @throws {RequiredError}
102413
+ */
102414
+ async startExtendWorkflow(jitActivationExtendRequestV2026: JitActivationExtendRequestV2026, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JitActivationExtendResponseV2026>> {
102415
+ const localVarAxiosArgs = await localVarAxiosParamCreator.startExtendWorkflow(jitActivationExtendRequestV2026, axiosOptions);
102416
+ const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
102417
+ const localVarOperationServerBasePath = operationServerMap['JITActivationsV2026Api.startExtendWorkflow']?.[localVarOperationServerIndex]?.url;
102418
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
102419
+ },
102420
+ }
102421
+ };
102422
+
102423
+ /**
102424
+ * JITActivationsV2026Api - factory interface
102425
+ * @export
102426
+ */
102427
+ export const JITActivationsV2026ApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {
102428
+ const localVarFp = JITActivationsV2026ApiFp(configuration)
102429
+ return {
102430
+ /**
102431
+ * Starts a JIT Privileged (JIT P) activation workflow for the given entitlement connection and duration. The service performs quick validation; the workflow performs additional validation. The response is returned with HTTP 202 Accepted while the workflow initializes.
102432
+ * @summary Start JIT activation workflow
102433
+ * @param {JITActivationsV2026ApiStartActivateWorkflowRequest} requestParameters Request parameters.
102434
+ * @param {*} [axiosOptions] Override http request option.
102435
+ * @throws {RequiredError}
102436
+ */
102437
+ startActivateWorkflow(requestParameters: JITActivationsV2026ApiStartActivateWorkflowRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<JitActivationActivateResponseV2026> {
102438
+ return localVarFp.startActivateWorkflow(requestParameters.jitActivationActivateRequestV2026, axiosOptions).then((request) => request(axios, basePath));
102439
+ },
102440
+ /**
102441
+ * Sends a signal to a running JIT Privileged (JIT P) activation workflow to deactivate. This request cannot be applied to a workflow that does not exist or whose execution has already completed. The client receives an error response in those cases. The response is returned with HTTP 202 Accepted after the signal is sent.
102442
+ * @summary Deactivate JIT activation workflow
102443
+ * @param {JITActivationsV2026ApiStartDeactivateWorkflowRequest} requestParameters Request parameters.
102444
+ * @param {*} [axiosOptions] Override http request option.
102445
+ * @throws {RequiredError}
102446
+ */
102447
+ startDeactivateWorkflow(requestParameters: JITActivationsV2026ApiStartDeactivateWorkflowRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<JitActivationDeactivateResponseV2026> {
102448
+ return localVarFp.startDeactivateWorkflow(requestParameters.jitActivationDeactivateRequestV2026, axiosOptions).then((request) => request(axios, basePath));
102449
+ },
102450
+ /**
102451
+ * Sends a signal to a running JIT Privileged (JIT P) activation workflow to extend the activation period by the requested number of minutes. This request cannot be applied to a workflow that does not exist or whose execution has already completed. The client receives an error response in those cases. The response is returned with HTTP 202 Accepted after the signal is sent.
102452
+ * @summary Extend JIT activation workflow
102453
+ * @param {JITActivationsV2026ApiStartExtendWorkflowRequest} requestParameters Request parameters.
102454
+ * @param {*} [axiosOptions] Override http request option.
102455
+ * @throws {RequiredError}
102456
+ */
102457
+ startExtendWorkflow(requestParameters: JITActivationsV2026ApiStartExtendWorkflowRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<JitActivationExtendResponseV2026> {
102458
+ return localVarFp.startExtendWorkflow(requestParameters.jitActivationExtendRequestV2026, axiosOptions).then((request) => request(axios, basePath));
102459
+ },
102460
+ };
102461
+ };
102462
+
102463
+ /**
102464
+ * Request parameters for startActivateWorkflow operation in JITActivationsV2026Api.
102465
+ * @export
102466
+ * @interface JITActivationsV2026ApiStartActivateWorkflowRequest
102467
+ */
102468
+ export interface JITActivationsV2026ApiStartActivateWorkflowRequest {
102469
+ /**
102470
+ *
102471
+ * @type {JitActivationActivateRequestV2026}
102472
+ * @memberof JITActivationsV2026ApiStartActivateWorkflow
102473
+ */
102474
+ readonly jitActivationActivateRequestV2026: JitActivationActivateRequestV2026
102475
+ }
102476
+
102477
+ /**
102478
+ * Request parameters for startDeactivateWorkflow operation in JITActivationsV2026Api.
102479
+ * @export
102480
+ * @interface JITActivationsV2026ApiStartDeactivateWorkflowRequest
102481
+ */
102482
+ export interface JITActivationsV2026ApiStartDeactivateWorkflowRequest {
102483
+ /**
102484
+ *
102485
+ * @type {JitActivationDeactivateRequestV2026}
102486
+ * @memberof JITActivationsV2026ApiStartDeactivateWorkflow
102487
+ */
102488
+ readonly jitActivationDeactivateRequestV2026: JitActivationDeactivateRequestV2026
102489
+ }
102490
+
102491
+ /**
102492
+ * Request parameters for startExtendWorkflow operation in JITActivationsV2026Api.
102493
+ * @export
102494
+ * @interface JITActivationsV2026ApiStartExtendWorkflowRequest
102495
+ */
102496
+ export interface JITActivationsV2026ApiStartExtendWorkflowRequest {
102497
+ /**
102498
+ *
102499
+ * @type {JitActivationExtendRequestV2026}
102500
+ * @memberof JITActivationsV2026ApiStartExtendWorkflow
102501
+ */
102502
+ readonly jitActivationExtendRequestV2026: JitActivationExtendRequestV2026
102503
+ }
102504
+
102505
+ /**
102506
+ * JITActivationsV2026Api - object-oriented interface
102507
+ * @export
102508
+ * @class JITActivationsV2026Api
102509
+ * @extends {BaseAPI}
102510
+ */
102511
+ export class JITActivationsV2026Api extends BaseAPI {
102512
+ /**
102513
+ * Starts a JIT Privileged (JIT P) activation workflow for the given entitlement connection and duration. The service performs quick validation; the workflow performs additional validation. The response is returned with HTTP 202 Accepted while the workflow initializes.
102514
+ * @summary Start JIT activation workflow
102515
+ * @param {JITActivationsV2026ApiStartActivateWorkflowRequest} requestParameters Request parameters.
102516
+ * @param {*} [axiosOptions] Override http request option.
102517
+ * @throws {RequiredError}
102518
+ * @memberof JITActivationsV2026Api
102519
+ */
102520
+ public startActivateWorkflow(requestParameters: JITActivationsV2026ApiStartActivateWorkflowRequest, axiosOptions?: RawAxiosRequestConfig) {
102521
+ return JITActivationsV2026ApiFp(this.configuration).startActivateWorkflow(requestParameters.jitActivationActivateRequestV2026, axiosOptions).then((request) => request(this.axios, this.basePath));
102522
+ }
102523
+
102524
+ /**
102525
+ * Sends a signal to a running JIT Privileged (JIT P) activation workflow to deactivate. This request cannot be applied to a workflow that does not exist or whose execution has already completed. The client receives an error response in those cases. The response is returned with HTTP 202 Accepted after the signal is sent.
102526
+ * @summary Deactivate JIT activation workflow
102527
+ * @param {JITActivationsV2026ApiStartDeactivateWorkflowRequest} requestParameters Request parameters.
102528
+ * @param {*} [axiosOptions] Override http request option.
102529
+ * @throws {RequiredError}
102530
+ * @memberof JITActivationsV2026Api
102531
+ */
102532
+ public startDeactivateWorkflow(requestParameters: JITActivationsV2026ApiStartDeactivateWorkflowRequest, axiosOptions?: RawAxiosRequestConfig) {
102533
+ return JITActivationsV2026ApiFp(this.configuration).startDeactivateWorkflow(requestParameters.jitActivationDeactivateRequestV2026, axiosOptions).then((request) => request(this.axios, this.basePath));
102534
+ }
102535
+
102536
+ /**
102537
+ * Sends a signal to a running JIT Privileged (JIT P) activation workflow to extend the activation period by the requested number of minutes. This request cannot be applied to a workflow that does not exist or whose execution has already completed. The client receives an error response in those cases. The response is returned with HTTP 202 Accepted after the signal is sent.
102538
+ * @summary Extend JIT activation workflow
102539
+ * @param {JITActivationsV2026ApiStartExtendWorkflowRequest} requestParameters Request parameters.
102540
+ * @param {*} [axiosOptions] Override http request option.
102541
+ * @throws {RequiredError}
102542
+ * @memberof JITActivationsV2026Api
102543
+ */
102544
+ public startExtendWorkflow(requestParameters: JITActivationsV2026ApiStartExtendWorkflowRequest, axiosOptions?: RawAxiosRequestConfig) {
102545
+ return JITActivationsV2026ApiFp(this.configuration).startExtendWorkflow(requestParameters.jitActivationExtendRequestV2026, axiosOptions).then((request) => request(this.axios, this.basePath));
102546
+ }
102547
+ }
102548
+
102549
+
102550
+
102006
102551
  /**
102007
102552
  * LaunchersV2026Api - axios parameter creator
102008
102553
  * @export
@@ -124634,6 +125179,56 @@ export const RolePropagationV2026ApiAxiosParamCreator = function (configuration?
124634
125179
 
124635
125180
 
124636
125181
 
125182
+ if (xSailPointExperimental != null) {
125183
+ localVarHeaderParameter['X-SailPoint-Experimental'] = String(xSailPointExperimental);
125184
+ }
125185
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
125186
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
125187
+ localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
125188
+
125189
+ return {
125190
+ url: toPathString(localVarUrlObj),
125191
+ axiosOptions: localVarRequestOptions,
125192
+ };
125193
+ },
125194
+ /**
125195
+ * This endpoint fetches the Role Change Propagation Configuration for the tenant
125196
+ * @summary Get Role Change Propagation Configuration
125197
+ * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
125198
+ * @param {*} [axiosOptions] Override http request option.
125199
+ * @throws {RequiredError}
125200
+ */
125201
+ getRolePropagationConfig: async (xSailPointExperimental?: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
125202
+ if (xSailPointExperimental === undefined) {
125203
+ xSailPointExperimental = 'true';
125204
+ }
125205
+
125206
+ const localVarPath = `/role-propagation-config`;
125207
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
125208
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
125209
+ let baseOptions;
125210
+ if (configuration) {
125211
+ baseOptions = configuration.baseOptions;
125212
+ }
125213
+
125214
+ const localVarRequestOptions = { method: 'GET', ...baseOptions, ...axiosOptions};
125215
+ const localVarHeaderParameter = {} as any;
125216
+ const localVarQueryParameter = {} as any;
125217
+
125218
+ // authentication userAuth required
125219
+ // oauth required
125220
+ await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
125221
+
125222
+ // authentication userAuth required
125223
+ // oauth required
125224
+ await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
125225
+
125226
+ // authentication applicationAuth required
125227
+ // oauth required
125228
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
125229
+
125230
+
125231
+
124637
125232
  if (xSailPointExperimental != null) {
124638
125233
  localVarHeaderParameter['X-SailPoint-Experimental'] = String(xSailPointExperimental);
124639
125234
  }
@@ -124700,6 +125295,62 @@ export const RolePropagationV2026ApiAxiosParamCreator = function (configuration?
124700
125295
  axiosOptions: localVarRequestOptions,
124701
125296
  };
124702
125297
  },
125298
+ /**
125299
+ * This endpoint enables or disables the Role Change Propagation Process for the tenant
125300
+ * @summary Update Role Change Propagation Configuration
125301
+ * @param {RolePropagationConfigInputV2026} rolePropagationConfigInputV2026
125302
+ * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
125303
+ * @param {*} [axiosOptions] Override http request option.
125304
+ * @throws {RequiredError}
125305
+ */
125306
+ setRolePropagationConfig: async (rolePropagationConfigInputV2026: RolePropagationConfigInputV2026, xSailPointExperimental?: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
125307
+ // verify required parameter 'rolePropagationConfigInputV2026' is not null or undefined
125308
+ assertParamExists('setRolePropagationConfig', 'rolePropagationConfigInputV2026', rolePropagationConfigInputV2026)
125309
+ if (xSailPointExperimental === undefined) {
125310
+ xSailPointExperimental = 'true';
125311
+ }
125312
+
125313
+ const localVarPath = `/role-propagation-config`;
125314
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
125315
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
125316
+ let baseOptions;
125317
+ if (configuration) {
125318
+ baseOptions = configuration.baseOptions;
125319
+ }
125320
+
125321
+ const localVarRequestOptions = { method: 'PUT', ...baseOptions, ...axiosOptions};
125322
+ const localVarHeaderParameter = {} as any;
125323
+ const localVarQueryParameter = {} as any;
125324
+
125325
+ // authentication userAuth required
125326
+ // oauth required
125327
+ await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
125328
+
125329
+ // authentication userAuth required
125330
+ // oauth required
125331
+ await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
125332
+
125333
+ // authentication applicationAuth required
125334
+ // oauth required
125335
+ await setOAuthToObject(localVarHeaderParameter, "applicationAuth", [], configuration)
125336
+
125337
+
125338
+
125339
+ localVarHeaderParameter['Content-Type'] = 'application/json';
125340
+
125341
+ if (xSailPointExperimental != null) {
125342
+ localVarHeaderParameter['X-SailPoint-Experimental'] = String(xSailPointExperimental);
125343
+ }
125344
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
125345
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
125346
+ localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
125347
+ localVarRequestOptions.data = serializeDataIfNeeded(rolePropagationConfigInputV2026, localVarRequestOptions, configuration)
125348
+
125349
+ return {
125350
+ url: toPathString(localVarUrlObj),
125351
+ axiosOptions: localVarRequestOptions,
125352
+ };
125353
+ },
124703
125354
  /**
124704
125355
  * 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
124705
125356
  * @summary Initiate Role Propagation process
@@ -124791,6 +125442,19 @@ export const RolePropagationV2026ApiFp = function(configuration?: Configuration)
124791
125442
  const localVarOperationServerBasePath = operationServerMap['RolePropagationV2026Api.getOngoingRolePropagation']?.[localVarOperationServerIndex]?.url;
124792
125443
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
124793
125444
  },
125445
+ /**
125446
+ * This endpoint fetches the Role Change Propagation Configuration for the tenant
125447
+ * @summary Get Role Change Propagation Configuration
125448
+ * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
125449
+ * @param {*} [axiosOptions] Override http request option.
125450
+ * @throws {RequiredError}
125451
+ */
125452
+ async getRolePropagationConfig(xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RolePropagationConfigResponseV2026>> {
125453
+ const localVarAxiosArgs = await localVarAxiosParamCreator.getRolePropagationConfig(xSailPointExperimental, axiosOptions);
125454
+ const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
125455
+ const localVarOperationServerBasePath = operationServerMap['RolePropagationV2026Api.getRolePropagationConfig']?.[localVarOperationServerIndex]?.url;
125456
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
125457
+ },
124794
125458
  /**
124795
125459
  * 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.
124796
125460
  * @summary Get status of Role-Propagation process
@@ -124805,6 +125469,20 @@ export const RolePropagationV2026ApiFp = function(configuration?: Configuration)
124805
125469
  const localVarOperationServerBasePath = operationServerMap['RolePropagationV2026Api.getRolePropagationStatus']?.[localVarOperationServerIndex]?.url;
124806
125470
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
124807
125471
  },
125472
+ /**
125473
+ * This endpoint enables or disables the Role Change Propagation Process for the tenant
125474
+ * @summary Update Role Change Propagation Configuration
125475
+ * @param {RolePropagationConfigInputV2026} rolePropagationConfigInputV2026
125476
+ * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
125477
+ * @param {*} [axiosOptions] Override http request option.
125478
+ * @throws {RequiredError}
125479
+ */
125480
+ async setRolePropagationConfig(rolePropagationConfigInputV2026: RolePropagationConfigInputV2026, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RolePropagationConfigResponseV2026>> {
125481
+ const localVarAxiosArgs = await localVarAxiosParamCreator.setRolePropagationConfig(rolePropagationConfigInputV2026, xSailPointExperimental, axiosOptions);
125482
+ const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
125483
+ const localVarOperationServerBasePath = operationServerMap['RolePropagationV2026Api.setRolePropagationConfig']?.[localVarOperationServerIndex]?.url;
125484
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
125485
+ },
124808
125486
  /**
124809
125487
  * 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
124810
125488
  * @summary Initiate Role Propagation process
@@ -124849,6 +125527,16 @@ export const RolePropagationV2026ApiFactory = function (configuration?: Configur
124849
125527
  getOngoingRolePropagation(requestParameters: RolePropagationV2026ApiGetOngoingRolePropagationRequest = {}, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<RolePropagationOngoingResponseV2026> {
124850
125528
  return localVarFp.getOngoingRolePropagation(requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(axios, basePath));
124851
125529
  },
125530
+ /**
125531
+ * This endpoint fetches the Role Change Propagation Configuration for the tenant
125532
+ * @summary Get Role Change Propagation Configuration
125533
+ * @param {RolePropagationV2026ApiGetRolePropagationConfigRequest} requestParameters Request parameters.
125534
+ * @param {*} [axiosOptions] Override http request option.
125535
+ * @throws {RequiredError}
125536
+ */
125537
+ getRolePropagationConfig(requestParameters: RolePropagationV2026ApiGetRolePropagationConfigRequest = {}, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<RolePropagationConfigResponseV2026> {
125538
+ return localVarFp.getRolePropagationConfig(requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(axios, basePath));
125539
+ },
124852
125540
  /**
124853
125541
  * 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.
124854
125542
  * @summary Get status of Role-Propagation process
@@ -124859,6 +125547,16 @@ export const RolePropagationV2026ApiFactory = function (configuration?: Configur
124859
125547
  getRolePropagationStatus(requestParameters: RolePropagationV2026ApiGetRolePropagationStatusRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<RolePropagationStatusResponseV2026> {
124860
125548
  return localVarFp.getRolePropagationStatus(requestParameters.rolePropagationId, requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(axios, basePath));
124861
125549
  },
125550
+ /**
125551
+ * This endpoint enables or disables the Role Change Propagation Process for the tenant
125552
+ * @summary Update Role Change Propagation Configuration
125553
+ * @param {RolePropagationV2026ApiSetRolePropagationConfigRequest} requestParameters Request parameters.
125554
+ * @param {*} [axiosOptions] Override http request option.
125555
+ * @throws {RequiredError}
125556
+ */
125557
+ setRolePropagationConfig(requestParameters: RolePropagationV2026ApiSetRolePropagationConfigRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<RolePropagationConfigResponseV2026> {
125558
+ return localVarFp.setRolePropagationConfig(requestParameters.rolePropagationConfigInputV2026, requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(axios, basePath));
125559
+ },
124862
125560
  /**
124863
125561
  * 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
124864
125562
  * @summary Initiate Role Propagation process
@@ -124900,6 +125598,20 @@ export interface RolePropagationV2026ApiGetOngoingRolePropagationRequest {
124900
125598
  readonly xSailPointExperimental?: string
124901
125599
  }
124902
125600
 
125601
+ /**
125602
+ * Request parameters for getRolePropagationConfig operation in RolePropagationV2026Api.
125603
+ * @export
125604
+ * @interface RolePropagationV2026ApiGetRolePropagationConfigRequest
125605
+ */
125606
+ export interface RolePropagationV2026ApiGetRolePropagationConfigRequest {
125607
+ /**
125608
+ * Use this header to enable this experimental API.
125609
+ * @type {string}
125610
+ * @memberof RolePropagationV2026ApiGetRolePropagationConfig
125611
+ */
125612
+ readonly xSailPointExperimental?: string
125613
+ }
125614
+
124903
125615
  /**
124904
125616
  * Request parameters for getRolePropagationStatus operation in RolePropagationV2026Api.
124905
125617
  * @export
@@ -124921,6 +125633,27 @@ export interface RolePropagationV2026ApiGetRolePropagationStatusRequest {
124921
125633
  readonly xSailPointExperimental?: string
124922
125634
  }
124923
125635
 
125636
+ /**
125637
+ * Request parameters for setRolePropagationConfig operation in RolePropagationV2026Api.
125638
+ * @export
125639
+ * @interface RolePropagationV2026ApiSetRolePropagationConfigRequest
125640
+ */
125641
+ export interface RolePropagationV2026ApiSetRolePropagationConfigRequest {
125642
+ /**
125643
+ *
125644
+ * @type {RolePropagationConfigInputV2026}
125645
+ * @memberof RolePropagationV2026ApiSetRolePropagationConfig
125646
+ */
125647
+ readonly rolePropagationConfigInputV2026: RolePropagationConfigInputV2026
125648
+
125649
+ /**
125650
+ * Use this header to enable this experimental API.
125651
+ * @type {string}
125652
+ * @memberof RolePropagationV2026ApiSetRolePropagationConfig
125653
+ */
125654
+ readonly xSailPointExperimental?: string
125655
+ }
125656
+
124924
125657
  /**
124925
125658
  * Request parameters for startRolePropagation operation in RolePropagationV2026Api.
124926
125659
  * @export
@@ -124973,6 +125706,18 @@ export class RolePropagationV2026Api extends BaseAPI {
124973
125706
  return RolePropagationV2026ApiFp(this.configuration).getOngoingRolePropagation(requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(this.axios, this.basePath));
124974
125707
  }
124975
125708
 
125709
+ /**
125710
+ * This endpoint fetches the Role Change Propagation Configuration for the tenant
125711
+ * @summary Get Role Change Propagation Configuration
125712
+ * @param {RolePropagationV2026ApiGetRolePropagationConfigRequest} requestParameters Request parameters.
125713
+ * @param {*} [axiosOptions] Override http request option.
125714
+ * @throws {RequiredError}
125715
+ * @memberof RolePropagationV2026Api
125716
+ */
125717
+ public getRolePropagationConfig(requestParameters: RolePropagationV2026ApiGetRolePropagationConfigRequest = {}, axiosOptions?: RawAxiosRequestConfig) {
125718
+ return RolePropagationV2026ApiFp(this.configuration).getRolePropagationConfig(requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(this.axios, this.basePath));
125719
+ }
125720
+
124976
125721
  /**
124977
125722
  * 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.
124978
125723
  * @summary Get status of Role-Propagation process
@@ -124985,6 +125730,18 @@ export class RolePropagationV2026Api extends BaseAPI {
124985
125730
  return RolePropagationV2026ApiFp(this.configuration).getRolePropagationStatus(requestParameters.rolePropagationId, requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(this.axios, this.basePath));
124986
125731
  }
124987
125732
 
125733
+ /**
125734
+ * This endpoint enables or disables the Role Change Propagation Process for the tenant
125735
+ * @summary Update Role Change Propagation Configuration
125736
+ * @param {RolePropagationV2026ApiSetRolePropagationConfigRequest} requestParameters Request parameters.
125737
+ * @param {*} [axiosOptions] Override http request option.
125738
+ * @throws {RequiredError}
125739
+ * @memberof RolePropagationV2026Api
125740
+ */
125741
+ public setRolePropagationConfig(requestParameters: RolePropagationV2026ApiSetRolePropagationConfigRequest, axiosOptions?: RawAxiosRequestConfig) {
125742
+ return RolePropagationV2026ApiFp(this.configuration).setRolePropagationConfig(requestParameters.rolePropagationConfigInputV2026, requestParameters.xSailPointExperimental, axiosOptions).then((request) => request(this.axios, this.basePath));
125743
+ }
125744
+
124988
125745
  /**
124989
125746
  * 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
124990
125747
  * @summary Initiate Role Propagation process