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
@@ -250,12 +250,12 @@ var createRequestFunction = function (axiosArgs, globalAxios, BASE_PATH, configu
250
250
  if (axios === void 0) { axios = globalAxios; }
251
251
  if (basePath === void 0) { basePath = BASE_PATH; }
252
252
  (0, axios_retry_1.default)(axios, configuration.retriesConfig);
253
- var userAgent = "SailPoint-SDK-TypeScript/1.8.24";
253
+ var userAgent = "SailPoint-SDK-TypeScript/1.8.26";
254
254
  if ((configuration === null || configuration === void 0 ? void 0 : configuration.consumerIdentifier) && (configuration === null || configuration === void 0 ? void 0 : configuration.consumerVersion)) {
255
255
  userAgent += " (".concat(configuration.consumerIdentifier, "/").concat(configuration.consumerVersion, ")");
256
256
  }
257
257
  userAgent += " (".concat(process.platform, "; ").concat(process.arch, ") Node/").concat(process.versions.node, " (openapi-generator/7.12.0)");
258
- var headers = __assign(__assign(__assign({}, axiosArgs.axiosOptions.headers), { 'X-SailPoint-SDK': 'typescript-1.8.24' }), { 'User-Agent': userAgent });
258
+ var headers = __assign(__assign(__assign({}, axiosArgs.axiosOptions.headers), { 'X-SailPoint-SDK': 'typescript-1.8.26' }), { 'User-Agent': userAgent });
259
259
  if (!configuration.experimental && ("X-SailPoint-Experimental" in headers)) {
260
260
  throw new Error("You are using Experimental APIs. Set configuration.experimental = True to enable these APIs in the SDK.");
261
261
  }
@@ -6720,6 +6720,22 @@ export interface ActivateCampaignOptionsV2026 {
6720
6720
  */
6721
6721
  'timeZone'?: string;
6722
6722
  }
6723
+ /**
6724
+ * JIT activation workflow status.
6725
+ * @export
6726
+ * @enum {string}
6727
+ */
6728
+ export declare const ActivationWorkflowStatusV2026: {
6729
+ readonly Creating: "CREATING";
6730
+ readonly Activating: "ACTIVATING";
6731
+ readonly Invalid: "INVALID";
6732
+ readonly Error: "ERROR";
6733
+ readonly Provisioned: "PROVISIONED";
6734
+ readonly Deprovisioning: "DEPROVISIONING";
6735
+ readonly Completed: "COMPLETED";
6736
+ readonly Revoked: "REVOKED";
6737
+ };
6738
+ export type ActivationWorkflowStatusV2026 = typeof ActivationWorkflowStatusV2026[keyof typeof ActivationWorkflowStatusV2026];
6723
6739
  /**
6724
6740
  *
6725
6741
  * @export
@@ -9888,6 +9904,7 @@ export declare const AuthUserV2026CapabilitiesV2026: {
9888
9904
  readonly CloudGovAdmin: "CLOUD_GOV_ADMIN";
9889
9905
  readonly CloudGovUser: "CLOUD_GOV_USER";
9890
9906
  readonly Helpdesk: "HELPDESK";
9907
+ readonly Internal: "INTERNAL";
9891
9908
  readonly OrgAdmin: "ORG_ADMIN";
9892
9909
  readonly PolicyAdmin: "POLICY_ADMIN";
9893
9910
  readonly ReportAdmin: "REPORT_ADMIN";
@@ -25694,6 +25711,162 @@ export type JitAccessOperationRequestV2026PathV2026 = typeof JitAccessOperationR
25694
25711
  * @export
25695
25712
  */
25696
25713
  export type JitAccessOperationRequestValueV2026 = Array<string> | boolean | number | string;
25714
+ /**
25715
+ *
25716
+ * @export
25717
+ * @interface JitActivationActivateRequestV2026
25718
+ */
25719
+ export interface JitActivationActivateRequestV2026 {
25720
+ /**
25721
+ * Entitlement connection identifier for the activation.
25722
+ * @type {string}
25723
+ * @memberof JitActivationActivateRequestV2026
25724
+ */
25725
+ 'connectionId': string;
25726
+ /**
25727
+ * Requested activation duration in minutes.
25728
+ * @type {number}
25729
+ * @memberof JitActivationActivateRequestV2026
25730
+ */
25731
+ 'activationPeriodMins': number;
25732
+ }
25733
+ /**
25734
+ *
25735
+ * @export
25736
+ * @interface JitActivationActivateResponseV2026
25737
+ */
25738
+ export interface JitActivationActivateResponseV2026 {
25739
+ /**
25740
+ * Workflow or business identifier for this activation.
25741
+ * @type {string}
25742
+ * @memberof JitActivationActivateResponseV2026
25743
+ */
25744
+ 'id': string;
25745
+ /**
25746
+ * Entitlement connection identifier for the activation.
25747
+ * @type {string}
25748
+ * @memberof JitActivationActivateResponseV2026
25749
+ */
25750
+ 'connectionId': string;
25751
+ /**
25752
+ * Activation duration in minutes for this workflow.
25753
+ * @type {number}
25754
+ * @memberof JitActivationActivateResponseV2026
25755
+ */
25756
+ 'activationPeriodMins': number;
25757
+ /**
25758
+ *
25759
+ * @type {ActivationWorkflowStatusV2026}
25760
+ * @memberof JitActivationActivateResponseV2026
25761
+ */
25762
+ 'status': ActivationWorkflowStatusV2026;
25763
+ /**
25764
+ * Time when the activation workflow was started (ISO-8601).
25765
+ * @type {string}
25766
+ * @memberof JitActivationActivateResponseV2026
25767
+ */
25768
+ 'startTime': string;
25769
+ }
25770
+ /**
25771
+ *
25772
+ * @export
25773
+ * @interface JitActivationDeactivateRequestV2026
25774
+ */
25775
+ export interface JitActivationDeactivateRequestV2026 {
25776
+ /**
25777
+ * Entitlement connection identifier for the activation to deactivate.
25778
+ * @type {string}
25779
+ * @memberof JitActivationDeactivateRequestV2026
25780
+ */
25781
+ 'connectionId': string;
25782
+ }
25783
+ /**
25784
+ *
25785
+ * @export
25786
+ * @interface JitActivationDeactivateResponseV2026
25787
+ */
25788
+ export interface JitActivationDeactivateResponseV2026 {
25789
+ /**
25790
+ * Workflow or business identifier for this activation.
25791
+ * @type {string}
25792
+ * @memberof JitActivationDeactivateResponseV2026
25793
+ */
25794
+ 'id': string;
25795
+ /**
25796
+ * Entitlement connection identifier for the activation.
25797
+ * @type {string}
25798
+ * @memberof JitActivationDeactivateResponseV2026
25799
+ */
25800
+ 'connectionId': string;
25801
+ /**
25802
+ *
25803
+ * @type {ActivationWorkflowStatusV2026}
25804
+ * @memberof JitActivationDeactivateResponseV2026
25805
+ */
25806
+ 'status': ActivationWorkflowStatusV2026;
25807
+ /**
25808
+ * Time associated with this deactivation request (ISO-8601).
25809
+ * @type {string}
25810
+ * @memberof JitActivationDeactivateResponseV2026
25811
+ */
25812
+ 'startTime': string;
25813
+ }
25814
+ /**
25815
+ *
25816
+ * @export
25817
+ * @interface JitActivationExtendRequestV2026
25818
+ */
25819
+ export interface JitActivationExtendRequestV2026 {
25820
+ /**
25821
+ * Entitlement connection identifier for the activation to extend.
25822
+ * @type {string}
25823
+ * @memberof JitActivationExtendRequestV2026
25824
+ */
25825
+ 'connectionId': string;
25826
+ /**
25827
+ * Number of minutes to extend the activation period.
25828
+ * @type {number}
25829
+ * @memberof JitActivationExtendRequestV2026
25830
+ */
25831
+ 'activationPeriodExtensionMins': number;
25832
+ }
25833
+ /**
25834
+ *
25835
+ * @export
25836
+ * @interface JitActivationExtendResponseV2026
25837
+ */
25838
+ export interface JitActivationExtendResponseV2026 {
25839
+ /**
25840
+ * Workflow or business identifier for this activation.
25841
+ * @type {string}
25842
+ * @memberof JitActivationExtendResponseV2026
25843
+ */
25844
+ 'id': string;
25845
+ /**
25846
+ * Entitlement connection identifier for the activation.
25847
+ * @type {string}
25848
+ * @memberof JitActivationExtendResponseV2026
25849
+ */
25850
+ 'connectionId': string;
25851
+ /**
25852
+ * Extension applied to the activation period, in minutes.
25853
+ * @type {number}
25854
+ * @memberof JitActivationExtendResponseV2026
25855
+ */
25856
+ 'activationPeriodExtensionMins': number;
25857
+ /**
25858
+ *
25859
+ * @type {ActivationWorkflowStatusV2026}
25860
+ * @memberof JitActivationExtendResponseV2026
25861
+ */
25862
+ 'status': ActivationWorkflowStatusV2026;
25863
+ /**
25864
+ * Time associated with this extend request (ISO-8601).
25865
+ * @type {string}
25866
+ * @memberof JitActivationExtendResponseV2026
25867
+ */
25868
+ 'startTime': string;
25869
+ }
25697
25870
  /**
25698
25871
  * 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)
25699
25872
  * @export
@@ -41113,6 +41286,50 @@ export interface RoleMiningSessionStatusV2026 {
41113
41286
  */
41114
41287
  'state'?: RoleMiningSessionStateV2026;
41115
41288
  }
41289
+ /**
41290
+ * Role Change Propagation Config Input
41291
+ * @export
41292
+ * @interface RolePropagationConfigInputV2026
41293
+ */
41294
+ export interface RolePropagationConfigInputV2026 {
41295
+ /**
41296
+ * Indicates if the Role Change Propagation process should be enabled for the tenant
41297
+ * @type {boolean}
41298
+ * @memberof RolePropagationConfigInputV2026
41299
+ */
41300
+ 'enabled'?: boolean;
41301
+ }
41302
+ /**
41303
+ * Role Change Propagation Config Response
41304
+ * @export
41305
+ * @interface RolePropagationConfigResponseV2026
41306
+ */
41307
+ export interface RolePropagationConfigResponseV2026 {
41308
+ /**
41309
+ * Indicates if the Role Change Propagation process is enabled for the tenant
41310
+ * @type {boolean}
41311
+ * @memberof RolePropagationConfigResponseV2026
41312
+ */
41313
+ 'enabled'?: boolean;
41314
+ /**
41315
+ * The time when Role Change Propagation Process was last enabled on the tenant
41316
+ * @type {string}
41317
+ * @memberof RolePropagationConfigResponseV2026
41318
+ */
41319
+ 'enabledDate'?: string;
41320
+ /**
41321
+ * The time when Role Change Propagation Configuration was first created for the tenant
41322
+ * @type {string}
41323
+ * @memberof RolePropagationConfigResponseV2026
41324
+ */
41325
+ 'createdDate'?: string;
41326
+ /**
41327
+ * The time when Role Change Propagation Config was updated on the tenant
41328
+ * @type {string}
41329
+ * @memberof RolePropagationConfigResponseV2026
41330
+ */
41331
+ 'modifiedDate'?: string;
41332
+ }
41116
41333
  /**
41117
41334
  * Details of the ongoing role propagation process
41118
41335
  * @export
@@ -77776,6 +77993,170 @@ export declare const PatchJitActivationConfigConfigTypeV2026: {
77776
77993
  readonly Policy: "policy";
77777
77994
  };
77778
77995
  export type PatchJitActivationConfigConfigTypeV2026 = typeof PatchJitActivationConfigConfigTypeV2026[keyof typeof PatchJitActivationConfigConfigTypeV2026];
77996
+ /**
77997
+ * JITActivationsV2026Api - axios parameter creator
77998
+ * @export
77999
+ */
78000
+ export declare const JITActivationsV2026ApiAxiosParamCreator: (configuration?: Configuration) => {
78001
+ /**
78002
+ * 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.
78003
+ * @summary Start JIT activation workflow
78004
+ * @param {JitActivationActivateRequestV2026} jitActivationActivateRequestV2026
78005
+ * @param {*} [axiosOptions] Override http request option.
78006
+ * @throws {RequiredError}
78007
+ */
78008
+ startActivateWorkflow: (jitActivationActivateRequestV2026: JitActivationActivateRequestV2026, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
78009
+ /**
78010
+ * 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.
78011
+ * @summary Deactivate JIT activation workflow
78012
+ * @param {JitActivationDeactivateRequestV2026} jitActivationDeactivateRequestV2026
78013
+ * @param {*} [axiosOptions] Override http request option.
78014
+ * @throws {RequiredError}
78015
+ */
78016
+ startDeactivateWorkflow: (jitActivationDeactivateRequestV2026: JitActivationDeactivateRequestV2026, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
78017
+ /**
78018
+ * 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.
78019
+ * @summary Extend JIT activation workflow
78020
+ * @param {JitActivationExtendRequestV2026} jitActivationExtendRequestV2026
78021
+ * @param {*} [axiosOptions] Override http request option.
78022
+ * @throws {RequiredError}
78023
+ */
78024
+ startExtendWorkflow: (jitActivationExtendRequestV2026: JitActivationExtendRequestV2026, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
78025
+ };
78026
+ /**
78027
+ * JITActivationsV2026Api - functional programming interface
78028
+ * @export
78029
+ */
78030
+ export declare const JITActivationsV2026ApiFp: (configuration?: Configuration) => {
78031
+ /**
78032
+ * 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.
78033
+ * @summary Start JIT activation workflow
78034
+ * @param {JitActivationActivateRequestV2026} jitActivationActivateRequestV2026
78035
+ * @param {*} [axiosOptions] Override http request option.
78036
+ * @throws {RequiredError}
78037
+ */
78038
+ startActivateWorkflow(jitActivationActivateRequestV2026: JitActivationActivateRequestV2026, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JitActivationActivateResponseV2026>>;
78039
+ /**
78040
+ * 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.
78041
+ * @summary Deactivate JIT activation workflow
78042
+ * @param {JitActivationDeactivateRequestV2026} jitActivationDeactivateRequestV2026
78043
+ * @param {*} [axiosOptions] Override http request option.
78044
+ * @throws {RequiredError}
78045
+ */
78046
+ startDeactivateWorkflow(jitActivationDeactivateRequestV2026: JitActivationDeactivateRequestV2026, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JitActivationDeactivateResponseV2026>>;
78047
+ /**
78048
+ * 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.
78049
+ * @summary Extend JIT activation workflow
78050
+ * @param {JitActivationExtendRequestV2026} jitActivationExtendRequestV2026
78051
+ * @param {*} [axiosOptions] Override http request option.
78052
+ * @throws {RequiredError}
78053
+ */
78054
+ startExtendWorkflow(jitActivationExtendRequestV2026: JitActivationExtendRequestV2026, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JitActivationExtendResponseV2026>>;
78055
+ };
78056
+ /**
78057
+ * JITActivationsV2026Api - factory interface
78058
+ * @export
78059
+ */
78060
+ export declare const JITActivationsV2026ApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
78061
+ /**
78062
+ * 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.
78063
+ * @summary Start JIT activation workflow
78064
+ * @param {JITActivationsV2026ApiStartActivateWorkflowRequest} requestParameters Request parameters.
78065
+ * @param {*} [axiosOptions] Override http request option.
78066
+ * @throws {RequiredError}
78067
+ */
78068
+ startActivateWorkflow(requestParameters: JITActivationsV2026ApiStartActivateWorkflowRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<JitActivationActivateResponseV2026>;
78069
+ /**
78070
+ * 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.
78071
+ * @summary Deactivate JIT activation workflow
78072
+ * @param {JITActivationsV2026ApiStartDeactivateWorkflowRequest} requestParameters Request parameters.
78073
+ * @param {*} [axiosOptions] Override http request option.
78074
+ * @throws {RequiredError}
78075
+ */
78076
+ startDeactivateWorkflow(requestParameters: JITActivationsV2026ApiStartDeactivateWorkflowRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<JitActivationDeactivateResponseV2026>;
78077
+ /**
78078
+ * 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.
78079
+ * @summary Extend JIT activation workflow
78080
+ * @param {JITActivationsV2026ApiStartExtendWorkflowRequest} requestParameters Request parameters.
78081
+ * @param {*} [axiosOptions] Override http request option.
78082
+ * @throws {RequiredError}
78083
+ */
78084
+ startExtendWorkflow(requestParameters: JITActivationsV2026ApiStartExtendWorkflowRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<JitActivationExtendResponseV2026>;
78085
+ };
78086
+ /**
78087
+ * Request parameters for startActivateWorkflow operation in JITActivationsV2026Api.
78088
+ * @export
78089
+ * @interface JITActivationsV2026ApiStartActivateWorkflowRequest
78090
+ */
78091
+ export interface JITActivationsV2026ApiStartActivateWorkflowRequest {
78092
+ /**
78093
+ *
78094
+ * @type {JitActivationActivateRequestV2026}
78095
+ * @memberof JITActivationsV2026ApiStartActivateWorkflow
78096
+ */
78097
+ readonly jitActivationActivateRequestV2026: JitActivationActivateRequestV2026;
78098
+ }
78099
+ /**
78100
+ * Request parameters for startDeactivateWorkflow operation in JITActivationsV2026Api.
78101
+ * @export
78102
+ * @interface JITActivationsV2026ApiStartDeactivateWorkflowRequest
78103
+ */
78104
+ export interface JITActivationsV2026ApiStartDeactivateWorkflowRequest {
78105
+ /**
78106
+ *
78107
+ * @type {JitActivationDeactivateRequestV2026}
78108
+ * @memberof JITActivationsV2026ApiStartDeactivateWorkflow
78109
+ */
78110
+ readonly jitActivationDeactivateRequestV2026: JitActivationDeactivateRequestV2026;
78111
+ }
78112
+ /**
78113
+ * Request parameters for startExtendWorkflow operation in JITActivationsV2026Api.
78114
+ * @export
78115
+ * @interface JITActivationsV2026ApiStartExtendWorkflowRequest
78116
+ */
78117
+ export interface JITActivationsV2026ApiStartExtendWorkflowRequest {
78118
+ /**
78119
+ *
78120
+ * @type {JitActivationExtendRequestV2026}
78121
+ * @memberof JITActivationsV2026ApiStartExtendWorkflow
78122
+ */
78123
+ readonly jitActivationExtendRequestV2026: JitActivationExtendRequestV2026;
78124
+ }
78125
+ /**
78126
+ * JITActivationsV2026Api - object-oriented interface
78127
+ * @export
78128
+ * @class JITActivationsV2026Api
78129
+ * @extends {BaseAPI}
78130
+ */
78131
+ export declare class JITActivationsV2026Api extends BaseAPI {
78132
+ /**
78133
+ * 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.
78134
+ * @summary Start JIT activation workflow
78135
+ * @param {JITActivationsV2026ApiStartActivateWorkflowRequest} requestParameters Request parameters.
78136
+ * @param {*} [axiosOptions] Override http request option.
78137
+ * @throws {RequiredError}
78138
+ * @memberof JITActivationsV2026Api
78139
+ */
78140
+ startActivateWorkflow(requestParameters: JITActivationsV2026ApiStartActivateWorkflowRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<JitActivationActivateResponseV2026, any>>;
78141
+ /**
78142
+ * 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.
78143
+ * @summary Deactivate JIT activation workflow
78144
+ * @param {JITActivationsV2026ApiStartDeactivateWorkflowRequest} requestParameters Request parameters.
78145
+ * @param {*} [axiosOptions] Override http request option.
78146
+ * @throws {RequiredError}
78147
+ * @memberof JITActivationsV2026Api
78148
+ */
78149
+ startDeactivateWorkflow(requestParameters: JITActivationsV2026ApiStartDeactivateWorkflowRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<JitActivationDeactivateResponseV2026, any>>;
78150
+ /**
78151
+ * 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.
78152
+ * @summary Extend JIT activation workflow
78153
+ * @param {JITActivationsV2026ApiStartExtendWorkflowRequest} requestParameters Request parameters.
78154
+ * @param {*} [axiosOptions] Override http request option.
78155
+ * @throws {RequiredError}
78156
+ * @memberof JITActivationsV2026Api
78157
+ */
78158
+ startExtendWorkflow(requestParameters: JITActivationsV2026ApiStartExtendWorkflowRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<JitActivationExtendResponseV2026, any>>;
78159
+ }
77779
78160
  /**
77780
78161
  * LaunchersV2026Api - axios parameter creator
77781
78162
  * @export
@@ -89331,6 +89712,14 @@ export declare const RolePropagationV2026ApiAxiosParamCreator: (configuration?:
89331
89712
  * @throws {RequiredError}
89332
89713
  */
89333
89714
  getOngoingRolePropagation: (xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
89715
+ /**
89716
+ * This endpoint fetches the Role Change Propagation Configuration for the tenant
89717
+ * @summary Get Role Change Propagation Configuration
89718
+ * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
89719
+ * @param {*} [axiosOptions] Override http request option.
89720
+ * @throws {RequiredError}
89721
+ */
89722
+ getRolePropagationConfig: (xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
89334
89723
  /**
89335
89724
  * 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.
89336
89725
  * @summary Get status of Role-Propagation process
@@ -89340,6 +89729,15 @@ export declare const RolePropagationV2026ApiAxiosParamCreator: (configuration?:
89340
89729
  * @throws {RequiredError}
89341
89730
  */
89342
89731
  getRolePropagationStatus: (rolePropagationId: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
89732
+ /**
89733
+ * This endpoint enables or disables the Role Change Propagation Process for the tenant
89734
+ * @summary Update Role Change Propagation Configuration
89735
+ * @param {RolePropagationConfigInputV2026} rolePropagationConfigInputV2026
89736
+ * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
89737
+ * @param {*} [axiosOptions] Override http request option.
89738
+ * @throws {RequiredError}
89739
+ */
89740
+ setRolePropagationConfig: (rolePropagationConfigInputV2026: RolePropagationConfigInputV2026, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
89343
89741
  /**
89344
89742
  * 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
89345
89743
  * @summary Initiate Role Propagation process
@@ -89371,6 +89769,14 @@ export declare const RolePropagationV2026ApiFp: (configuration?: Configuration)
89371
89769
  * @throws {RequiredError}
89372
89770
  */
89373
89771
  getOngoingRolePropagation(xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RolePropagationOngoingResponseV2026>>;
89772
+ /**
89773
+ * This endpoint fetches the Role Change Propagation Configuration for the tenant
89774
+ * @summary Get Role Change Propagation Configuration
89775
+ * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
89776
+ * @param {*} [axiosOptions] Override http request option.
89777
+ * @throws {RequiredError}
89778
+ */
89779
+ getRolePropagationConfig(xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RolePropagationConfigResponseV2026>>;
89374
89780
  /**
89375
89781
  * 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.
89376
89782
  * @summary Get status of Role-Propagation process
@@ -89380,6 +89786,15 @@ export declare const RolePropagationV2026ApiFp: (configuration?: Configuration)
89380
89786
  * @throws {RequiredError}
89381
89787
  */
89382
89788
  getRolePropagationStatus(rolePropagationId: string, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RolePropagationStatusResponseV2026>>;
89789
+ /**
89790
+ * This endpoint enables or disables the Role Change Propagation Process for the tenant
89791
+ * @summary Update Role Change Propagation Configuration
89792
+ * @param {RolePropagationConfigInputV2026} rolePropagationConfigInputV2026
89793
+ * @param {string} [xSailPointExperimental] Use this header to enable this experimental API.
89794
+ * @param {*} [axiosOptions] Override http request option.
89795
+ * @throws {RequiredError}
89796
+ */
89797
+ setRolePropagationConfig(rolePropagationConfigInputV2026: RolePropagationConfigInputV2026, xSailPointExperimental?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RolePropagationConfigResponseV2026>>;
89383
89798
  /**
89384
89799
  * 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
89385
89800
  * @summary Initiate Role Propagation process
@@ -89411,6 +89826,14 @@ export declare const RolePropagationV2026ApiFactory: (configuration?: Configurat
89411
89826
  * @throws {RequiredError}
89412
89827
  */
89413
89828
  getOngoingRolePropagation(requestParameters?: RolePropagationV2026ApiGetOngoingRolePropagationRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<RolePropagationOngoingResponseV2026>;
89829
+ /**
89830
+ * This endpoint fetches the Role Change Propagation Configuration for the tenant
89831
+ * @summary Get Role Change Propagation Configuration
89832
+ * @param {RolePropagationV2026ApiGetRolePropagationConfigRequest} requestParameters Request parameters.
89833
+ * @param {*} [axiosOptions] Override http request option.
89834
+ * @throws {RequiredError}
89835
+ */
89836
+ getRolePropagationConfig(requestParameters?: RolePropagationV2026ApiGetRolePropagationConfigRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<RolePropagationConfigResponseV2026>;
89414
89837
  /**
89415
89838
  * 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.
89416
89839
  * @summary Get status of Role-Propagation process
@@ -89419,6 +89842,14 @@ export declare const RolePropagationV2026ApiFactory: (configuration?: Configurat
89419
89842
  * @throws {RequiredError}
89420
89843
  */
89421
89844
  getRolePropagationStatus(requestParameters: RolePropagationV2026ApiGetRolePropagationStatusRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<RolePropagationStatusResponseV2026>;
89845
+ /**
89846
+ * This endpoint enables or disables the Role Change Propagation Process for the tenant
89847
+ * @summary Update Role Change Propagation Configuration
89848
+ * @param {RolePropagationV2026ApiSetRolePropagationConfigRequest} requestParameters Request parameters.
89849
+ * @param {*} [axiosOptions] Override http request option.
89850
+ * @throws {RequiredError}
89851
+ */
89852
+ setRolePropagationConfig(requestParameters: RolePropagationV2026ApiSetRolePropagationConfigRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<RolePropagationConfigResponseV2026>;
89422
89853
  /**
89423
89854
  * 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
89424
89855
  * @summary Initiate Role Propagation process
@@ -89454,6 +89885,19 @@ export interface RolePropagationV2026ApiGetOngoingRolePropagationRequest {
89454
89885
  */
89455
89886
  readonly xSailPointExperimental?: string;
89456
89887
  }
89888
+ /**
89889
+ * Request parameters for getRolePropagationConfig operation in RolePropagationV2026Api.
89890
+ * @export
89891
+ * @interface RolePropagationV2026ApiGetRolePropagationConfigRequest
89892
+ */
89893
+ export interface RolePropagationV2026ApiGetRolePropagationConfigRequest {
89894
+ /**
89895
+ * Use this header to enable this experimental API.
89896
+ * @type {string}
89897
+ * @memberof RolePropagationV2026ApiGetRolePropagationConfig
89898
+ */
89899
+ readonly xSailPointExperimental?: string;
89900
+ }
89457
89901
  /**
89458
89902
  * Request parameters for getRolePropagationStatus operation in RolePropagationV2026Api.
89459
89903
  * @export
@@ -89473,6 +89917,25 @@ export interface RolePropagationV2026ApiGetRolePropagationStatusRequest {
89473
89917
  */
89474
89918
  readonly xSailPointExperimental?: string;
89475
89919
  }
89920
+ /**
89921
+ * Request parameters for setRolePropagationConfig operation in RolePropagationV2026Api.
89922
+ * @export
89923
+ * @interface RolePropagationV2026ApiSetRolePropagationConfigRequest
89924
+ */
89925
+ export interface RolePropagationV2026ApiSetRolePropagationConfigRequest {
89926
+ /**
89927
+ *
89928
+ * @type {RolePropagationConfigInputV2026}
89929
+ * @memberof RolePropagationV2026ApiSetRolePropagationConfig
89930
+ */
89931
+ readonly rolePropagationConfigInputV2026: RolePropagationConfigInputV2026;
89932
+ /**
89933
+ * Use this header to enable this experimental API.
89934
+ * @type {string}
89935
+ * @memberof RolePropagationV2026ApiSetRolePropagationConfig
89936
+ */
89937
+ readonly xSailPointExperimental?: string;
89938
+ }
89476
89939
  /**
89477
89940
  * Request parameters for startRolePropagation operation in RolePropagationV2026Api.
89478
89941
  * @export
@@ -89517,6 +89980,15 @@ export declare class RolePropagationV2026Api extends BaseAPI {
89517
89980
  * @memberof RolePropagationV2026Api
89518
89981
  */
89519
89982
  getOngoingRolePropagation(requestParameters?: RolePropagationV2026ApiGetOngoingRolePropagationRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<RolePropagationOngoingResponseV2026, any>>;
89983
+ /**
89984
+ * This endpoint fetches the Role Change Propagation Configuration for the tenant
89985
+ * @summary Get Role Change Propagation Configuration
89986
+ * @param {RolePropagationV2026ApiGetRolePropagationConfigRequest} requestParameters Request parameters.
89987
+ * @param {*} [axiosOptions] Override http request option.
89988
+ * @throws {RequiredError}
89989
+ * @memberof RolePropagationV2026Api
89990
+ */
89991
+ getRolePropagationConfig(requestParameters?: RolePropagationV2026ApiGetRolePropagationConfigRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<RolePropagationConfigResponseV2026, any>>;
89520
89992
  /**
89521
89993
  * 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.
89522
89994
  * @summary Get status of Role-Propagation process
@@ -89526,6 +89998,15 @@ export declare class RolePropagationV2026Api extends BaseAPI {
89526
89998
  * @memberof RolePropagationV2026Api
89527
89999
  */
89528
90000
  getRolePropagationStatus(requestParameters: RolePropagationV2026ApiGetRolePropagationStatusRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<RolePropagationStatusResponseV2026, any>>;
90001
+ /**
90002
+ * This endpoint enables or disables the Role Change Propagation Process for the tenant
90003
+ * @summary Update Role Change Propagation Configuration
90004
+ * @param {RolePropagationV2026ApiSetRolePropagationConfigRequest} requestParameters Request parameters.
90005
+ * @param {*} [axiosOptions] Override http request option.
90006
+ * @throws {RequiredError}
90007
+ * @memberof RolePropagationV2026Api
90008
+ */
90009
+ setRolePropagationConfig(requestParameters: RolePropagationV2026ApiSetRolePropagationConfigRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<RolePropagationConfigResponseV2026, any>>;
89529
90010
  /**
89530
90011
  * 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
89531
90012
  * @summary Initiate Role Propagation process