sailpoint-api-client 1.6.7 → 1.6.9

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 (68) hide show
  1. package/beta/README.md +2 -2
  2. package/beta/api.ts +87 -577
  3. package/beta/common.ts +2 -2
  4. package/beta/package.json +1 -1
  5. package/dist/beta/api.d.ts +81 -452
  6. package/dist/beta/api.js +30 -300
  7. package/dist/beta/api.js.map +1 -1
  8. package/dist/beta/common.js +1 -1
  9. package/dist/generic/api.d.ts +386 -0
  10. package/dist/generic/api.js +689 -0
  11. package/dist/generic/api.js.map +1 -0
  12. package/dist/generic/base.d.ts +66 -0
  13. package/dist/generic/base.js +89 -0
  14. package/dist/generic/base.js.map +1 -0
  15. package/dist/generic/common.d.ts +65 -0
  16. package/dist/generic/common.js +260 -0
  17. package/dist/generic/common.js.map +1 -0
  18. package/dist/generic/configuration.d.ts +91 -0
  19. package/dist/generic/configuration.js +46 -0
  20. package/dist/generic/configuration.js.map +1 -0
  21. package/dist/generic/index.d.ts +13 -0
  22. package/dist/generic/index.js +32 -0
  23. package/dist/generic/index.js.map +1 -0
  24. package/dist/index.d.ts +5 -4
  25. package/dist/index.js +1 -0
  26. package/dist/index.js.map +1 -1
  27. package/dist/paginator.d.ts +3 -1
  28. package/dist/paginator.js +146 -0
  29. package/dist/paginator.js.map +1 -1
  30. package/dist/v2024/api.d.ts +1838 -575
  31. package/dist/v2024/api.js +1894 -593
  32. package/dist/v2024/api.js.map +1 -1
  33. package/dist/v2024/common.js +1 -1
  34. package/dist/v2025/api.d.ts +4368 -679
  35. package/dist/v2025/api.js +3866 -904
  36. package/dist/v2025/api.js.map +1 -1
  37. package/dist/v2025/common.js +1 -1
  38. package/dist/v3/api.d.ts +45 -83
  39. package/dist/v3/api.js +31 -30
  40. package/dist/v3/api.js.map +1 -1
  41. package/dist/v3/common.js +1 -1
  42. package/generic/.openapi-generator/FILES +11 -0
  43. package/generic/.openapi-generator/VERSION +1 -0
  44. package/generic/.openapi-generator-ignore +23 -0
  45. package/generic/README.md +46 -0
  46. package/generic/api.ts +681 -0
  47. package/generic/base.ts +86 -0
  48. package/generic/common.ts +159 -0
  49. package/generic/configuration.ts +110 -0
  50. package/generic/git_push.sh +57 -0
  51. package/generic/index.ts +18 -0
  52. package/generic/package.json +34 -0
  53. package/generic/tsconfig.json +21 -0
  54. package/index.ts +9 -7
  55. package/package.json +1 -1
  56. package/paginator.ts +137 -11
  57. package/v2024/README.md +2 -2
  58. package/v2024/api.ts +3049 -1208
  59. package/v2024/common.ts +2 -2
  60. package/v2024/package.json +1 -1
  61. package/v2025/README.md +2 -2
  62. package/v2025/api.ts +7717 -2573
  63. package/v2025/common.ts +2 -2
  64. package/v2025/package.json +1 -1
  65. package/v3/README.md +2 -2
  66. package/v3/api.ts +61 -97
  67. package/v3/common.ts +2 -2
  68. package/v3/package.json +1 -1
@@ -250,7 +250,7 @@ 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 headers = __assign(__assign({ 'User-Agent': 'OpenAPI-Generator/1.6.7/ts' }, axiosArgs.axiosOptions.headers), { 'X-SailPoint-SDK': 'typescript-1.6.7' });
253
+ var headers = __assign(__assign({ 'User-Agent': 'OpenAPI-Generator/1.6.9/ts' }, axiosArgs.axiosOptions.headers), { 'X-SailPoint-SDK': 'typescript-1.6.9' });
254
254
  if (!configuration.experimental && ("X-SailPoint-Experimental" in headers)) {
255
255
  throw new Error("You are using Experimental APIs. Set configuration.experimental = True to enable these APIs in the SDK.");
256
256
  }
package/dist/v3/api.d.ts CHANGED
@@ -8252,35 +8252,6 @@ export declare const EntitlementRefTypeV3: {
8252
8252
  readonly Entitlement: "ENTITLEMENT";
8253
8253
  };
8254
8254
  export type EntitlementRefTypeV3 = typeof EntitlementRefTypeV3[keyof typeof EntitlementRefTypeV3];
8255
- /**
8256
- * Entitlement including a specific set of access.
8257
- * @export
8258
- * @interface EntitlementRef1
8259
- */
8260
- export interface EntitlementRef1 {
8261
- /**
8262
- * Entitlement\'s DTO type.
8263
- * @type {string}
8264
- * @memberof EntitlementRef1
8265
- */
8266
- 'type'?: EntitlementRef1TypeV3;
8267
- /**
8268
- * Entitlement\'s ID.
8269
- * @type {string}
8270
- * @memberof EntitlementRef1
8271
- */
8272
- 'id'?: string;
8273
- /**
8274
- * Entitlement\'s display name.
8275
- * @type {string}
8276
- * @memberof EntitlementRef1
8277
- */
8278
- 'name'?: string;
8279
- }
8280
- export declare const EntitlementRef1TypeV3: {
8281
- readonly Entitlement: "ENTITLEMENT";
8282
- };
8283
- export type EntitlementRef1TypeV3 = typeof EntitlementRef1TypeV3[keyof typeof EntitlementRef1TypeV3];
8284
8255
  /**
8285
8256
  *
8286
8257
  * @export
@@ -11499,33 +11470,6 @@ export interface IdentityWithNewAccess {
11499
11470
  */
11500
11471
  'accessRefs': Array<IdentityWithNewAccessAccessRefsInner>;
11501
11472
  }
11502
- /**
11503
- * An identity with a set of access to be added
11504
- * @export
11505
- * @interface IdentityWithNewAccess1
11506
- */
11507
- export interface IdentityWithNewAccess1 {
11508
- /**
11509
- * Set of identity IDs to be checked.
11510
- * @type {string}
11511
- * @memberof IdentityWithNewAccess1
11512
- */
11513
- 'identityId': string;
11514
- /**
11515
- * The bundle of access profiles to be added to the identities specified. All references must be ENTITLEMENT type.
11516
- * @type {Array<EntitlementRef1>}
11517
- * @memberof IdentityWithNewAccess1
11518
- */
11519
- 'accessRefs': Array<EntitlementRef1>;
11520
- /**
11521
- * Arbitrary key-value pairs. They will never be processed by the IdentityNow system but will be returned on completion of the violation check.
11522
- * @type {{ [key: string]: string; }}
11523
- * @memberof IdentityWithNewAccess1
11524
- */
11525
- 'clientMetadata'?: {
11526
- [key: string]: string;
11527
- };
11528
- }
11529
11473
  /**
11530
11474
  * Entitlement including a specific set of access.
11531
11475
  * @export
@@ -11544,12 +11488,6 @@ export interface IdentityWithNewAccessAccessRefsInner {
11544
11488
  * @memberof IdentityWithNewAccessAccessRefsInner
11545
11489
  */
11546
11490
  'id'?: string;
11547
- /**
11548
- * Entitlement\'s display name.
11549
- * @type {string}
11550
- * @memberof IdentityWithNewAccessAccessRefsInner
11551
- */
11552
- 'name'?: string;
11553
11491
  }
11554
11492
  export declare const IdentityWithNewAccessAccessRefsInnerTypeV3: {
11555
11493
  readonly Entitlement: "ENTITLEMENT";
@@ -12633,7 +12571,7 @@ export interface ManagedCluster {
12633
12571
  */
12634
12572
  'ccgVersion': string;
12635
12573
  /**
12636
- * boolean flag indiacting whether or not the cluster configuration is pinned
12574
+ * boolean flag indicating whether or not the cluster configuration is pinned
12637
12575
  * @type {boolean}
12638
12576
  * @memberof ManagedCluster
12639
12577
  */
@@ -12674,6 +12612,12 @@ export interface ManagedCluster {
12674
12612
  * @memberof ManagedCluster
12675
12613
  */
12676
12614
  'publicKey'?: string | null;
12615
+ /**
12616
+ *
12617
+ * @type {ManagedClusterEncryptionConfig}
12618
+ * @memberof ManagedCluster
12619
+ */
12620
+ 'encryptionConfiguration'?: ManagedClusterEncryptionConfig;
12677
12621
  /**
12678
12622
  * Key describing any immediate cluster alerts
12679
12623
  * @type {string}
@@ -12738,6 +12682,24 @@ export interface ManagedClusterAttributes {
12738
12682
  */
12739
12683
  'keystore'?: string | null;
12740
12684
  }
12685
+ /**
12686
+ * Defines the encryption settings for a managed cluster, including the format used for storing and processing encrypted data.
12687
+ * @export
12688
+ * @interface ManagedClusterEncryptionConfig
12689
+ */
12690
+ export interface ManagedClusterEncryptionConfig {
12691
+ /**
12692
+ * Specifies the format used for encrypted data, such as secrets. The format determines how the encrypted data is structured and processed.
12693
+ * @type {string}
12694
+ * @memberof ManagedClusterEncryptionConfig
12695
+ */
12696
+ 'format'?: ManagedClusterEncryptionConfigFormatV3;
12697
+ }
12698
+ export declare const ManagedClusterEncryptionConfigFormatV3: {
12699
+ readonly V2: "V2";
12700
+ readonly V3: "V3";
12701
+ };
12702
+ export type ManagedClusterEncryptionConfigFormatV3 = typeof ManagedClusterEncryptionConfigFormatV3[keyof typeof ManagedClusterEncryptionConfigFormatV3];
12741
12703
  /**
12742
12704
  * Managed Cluster key pair for Cluster
12743
12705
  * @export
@@ -21663,7 +21625,7 @@ export interface Source {
21663
21625
  * @type {SourceOwner}
21664
21626
  * @memberof Source
21665
21627
  */
21666
- 'owner': SourceOwner;
21628
+ 'owner': SourceOwner | null;
21667
21629
  /**
21668
21630
  *
21669
21631
  * @type {SourceCluster}
@@ -32449,7 +32411,7 @@ export declare const LifecycleStatesApiAxiosParamCreator: (configuration?: Confi
32449
32411
  * @param {number} [limit] Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
32450
32412
  * @param {number} [offset] Offset into the full result set. Usually specified with *limit* to paginate through the results. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
32451
32413
  * @param {boolean} [count] If *true* it will populate the *X-Total-Count* response header with the number of results that would be returned if *limit* and *offset* were ignored. Since requesting a total count can have a performance impact, it is recommended not to send **count&#x3D;true** if that value will not be used. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
32452
- * @param {string} [sorters] Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) Sorting is supported for the following fields: **created, modified**
32414
+ * @param {string} [sorters] Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) Sorting is supported for the following fields: **name, priority, created, modified**
32453
32415
  * @param {*} [axiosOptions] Override http request option.
32454
32416
  * @throws {RequiredError}
32455
32417
  */
@@ -32513,7 +32475,7 @@ export declare const LifecycleStatesApiFp: (configuration?: Configuration) => {
32513
32475
  * @param {number} [limit] Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
32514
32476
  * @param {number} [offset] Offset into the full result set. Usually specified with *limit* to paginate through the results. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
32515
32477
  * @param {boolean} [count] If *true* it will populate the *X-Total-Count* response header with the number of results that would be returned if *limit* and *offset* were ignored. Since requesting a total count can have a performance impact, it is recommended not to send **count&#x3D;true** if that value will not be used. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
32516
- * @param {string} [sorters] Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) Sorting is supported for the following fields: **created, modified**
32478
+ * @param {string} [sorters] Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) Sorting is supported for the following fields: **name, priority, created, modified**
32517
32479
  * @param {*} [axiosOptions] Override http request option.
32518
32480
  * @throws {RequiredError}
32519
32481
  */
@@ -32680,7 +32642,7 @@ export interface LifecycleStatesApiGetLifecycleStatesRequest {
32680
32642
  */
32681
32643
  readonly count?: boolean;
32682
32644
  /**
32683
- * Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) Sorting is supported for the following fields: **created, modified**
32645
+ * Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) Sorting is supported for the following fields: **name, priority, created, modified**
32684
32646
  * @type {string}
32685
32647
  * @memberof LifecycleStatesApiGetLifecycleStates
32686
32648
  */
@@ -39373,11 +39335,11 @@ export declare const SODViolationsApiAxiosParamCreator: (configuration?: Configu
39373
39335
  /**
39374
39336
  * This API initiates a SOD policy verification asynchronously.
39375
39337
  * @summary Check sod violations
39376
- * @param {IdentityWithNewAccess1} identityWithNewAccess1
39338
+ * @param {IdentityWithNewAccess} identityWithNewAccess
39377
39339
  * @param {*} [axiosOptions] Override http request option.
39378
39340
  * @throws {RequiredError}
39379
39341
  */
39380
- startViolationCheck: (identityWithNewAccess1: IdentityWithNewAccess1, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
39342
+ startViolationCheck: (identityWithNewAccess: IdentityWithNewAccess, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
39381
39343
  };
39382
39344
  /**
39383
39345
  * SODViolationsApi - functional programming interface
@@ -39395,11 +39357,11 @@ export declare const SODViolationsApiFp: (configuration?: Configuration) => {
39395
39357
  /**
39396
39358
  * This API initiates a SOD policy verification asynchronously.
39397
39359
  * @summary Check sod violations
39398
- * @param {IdentityWithNewAccess1} identityWithNewAccess1
39360
+ * @param {IdentityWithNewAccess} identityWithNewAccess
39399
39361
  * @param {*} [axiosOptions] Override http request option.
39400
39362
  * @throws {RequiredError}
39401
39363
  */
39402
- startViolationCheck(identityWithNewAccess1: IdentityWithNewAccess1, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SodViolationCheck>>;
39364
+ startViolationCheck(identityWithNewAccess: IdentityWithNewAccess, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SodViolationCheck>>;
39403
39365
  };
39404
39366
  /**
39405
39367
  * SODViolationsApi - factory interface
@@ -39444,10 +39406,10 @@ export interface SODViolationsApiStartPredictSodViolationsRequest {
39444
39406
  export interface SODViolationsApiStartViolationCheckRequest {
39445
39407
  /**
39446
39408
  *
39447
- * @type {IdentityWithNewAccess1}
39409
+ * @type {IdentityWithNewAccess}
39448
39410
  * @memberof SODViolationsApiStartViolationCheck
39449
39411
  */
39450
- readonly identityWithNewAccess1: IdentityWithNewAccess1;
39412
+ readonly identityWithNewAccess: IdentityWithNewAccess;
39451
39413
  }
39452
39414
  /**
39453
39415
  * SODViolationsApi - object-oriented interface
@@ -44937,14 +44899,14 @@ export declare const WorkflowsApiAxiosParamCreator: (configuration?: Configurati
44937
44899
  /**
44938
44900
  * List all workflows in the tenant.
44939
44901
  * @summary List workflows
44940
- * @param {string} [triggerId] Trigger ID
44941
- * @param {string} [connectorInstanceId] Connector Instance ID
44902
+ * @param {string} [filters] Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **enabled**: *eq* **connectorInstanceId**: *eq* **triggerId**: *eq*
44903
+ * @param {string} [sorters] Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) Sorting is supported for the following fields: **modified, name**
44942
44904
  * @param {number} [limit] Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
44943
44905
  * @param {number} [offset] Offset into the full result set. Usually specified with *limit* to paginate through the results. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
44944
44906
  * @param {*} [axiosOptions] Override http request option.
44945
44907
  * @throws {RequiredError}
44946
44908
  */
44947
- listWorkflows: (triggerId?: string, connectorInstanceId?: string, limit?: number, offset?: number, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
44909
+ listWorkflows: (filters?: string, sorters?: string, limit?: number, offset?: number, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
44948
44910
  /**
44949
44911
  * Partially update an existing Workflow using [JSON Patch](https://tools.ietf.org/html/rfc6902) syntax.
44950
44912
  * @summary Patch workflow
@@ -45103,14 +45065,14 @@ export declare const WorkflowsApiFp: (configuration?: Configuration) => {
45103
45065
  /**
45104
45066
  * List all workflows in the tenant.
45105
45067
  * @summary List workflows
45106
- * @param {string} [triggerId] Trigger ID
45107
- * @param {string} [connectorInstanceId] Connector Instance ID
45068
+ * @param {string} [filters] Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **enabled**: *eq* **connectorInstanceId**: *eq* **triggerId**: *eq*
45069
+ * @param {string} [sorters] Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) Sorting is supported for the following fields: **modified, name**
45108
45070
  * @param {number} [limit] Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
45109
45071
  * @param {number} [offset] Offset into the full result set. Usually specified with *limit* to paginate through the results. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
45110
45072
  * @param {*} [axiosOptions] Override http request option.
45111
45073
  * @throws {RequiredError}
45112
45074
  */
45113
- listWorkflows(triggerId?: string, connectorInstanceId?: string, limit?: number, offset?: number, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<Workflow>>>;
45075
+ listWorkflows(filters?: string, sorters?: string, limit?: number, offset?: number, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<Workflow>>>;
45114
45076
  /**
45115
45077
  * Partially update an existing Workflow using [JSON Patch](https://tools.ietf.org/html/rfc6902) syntax.
45116
45078
  * @summary Patch workflow
@@ -45520,17 +45482,17 @@ export interface WorkflowsApiListWorkflowLibraryTriggersRequest {
45520
45482
  */
45521
45483
  export interface WorkflowsApiListWorkflowsRequest {
45522
45484
  /**
45523
- * Trigger ID
45485
+ * Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **enabled**: *eq* **connectorInstanceId**: *eq* **triggerId**: *eq*
45524
45486
  * @type {string}
45525
45487
  * @memberof WorkflowsApiListWorkflows
45526
45488
  */
45527
- readonly triggerId?: string;
45489
+ readonly filters?: string;
45528
45490
  /**
45529
- * Connector Instance ID
45491
+ * Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) Sorting is supported for the following fields: **modified, name**
45530
45492
  * @type {string}
45531
45493
  * @memberof WorkflowsApiListWorkflows
45532
45494
  */
45533
- readonly connectorInstanceId?: string;
45495
+ readonly sorters?: string;
45534
45496
  /**
45535
45497
  * Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
45536
45498
  * @type {number}
package/dist/v3/api.js CHANGED
@@ -79,8 +79,8 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
79
79
  };
80
80
  Object.defineProperty(exports, "__esModule", { value: true });
81
81
  exports.CampaignMandatoryCommentRequirementV3 = exports.CampaignCorrelatedStatusV3 = exports.CampaignStatusV3 = exports.CampaignTypeV3 = exports.BulkAddTaggedObjectOperationV3 = exports.BucketType = exports.BeforeProvisioningRuleDtoTypeV3 = exports.BaseAccessOwnerTypeV3 = exports.BackupResponseCloudStorageStatusV3 = exports.BackupResponseHydrationStatusV3 = exports.BackupResponseBackupTypeV3 = exports.BackupResponseTypeV3 = exports.BackupResponseStatusV3 = exports.BackupOptionsIncludeTypesV3 = exports.AuthUserCapabilitiesV3 = exports.AttributeDefinitionType = exports.AttributeDefinitionSchemaTypeV3 = exports.ApprovalStatusDtoOriginalOwnerTypeV3 = exports.ApprovalStatusDtoCurrentOwnerTypeV3 = exports.ApprovalStatus = exports.ApprovalSchemeForRoleApproverTypeV3 = exports.ApprovalScheme = exports.AggregationType = exports.AdminReviewReassignReassignToTypeV3 = exports.ActivityInsightsUsageDaysStateV3 = exports.AccountAllOfSourceOwnerTypeV3 = exports.AccountAllOfRecommendationMethodV3 = exports.AccountAllOfRecommendationTypeV3 = exports.AccountAllOfIdentityTypeV3 = exports.AccountActivityItemOperation = exports.AccountActivityApprovalStatus = exports.AccountActionActionV3 = exports.AccountOriginV3 = exports.AccessType = exports.AccessRequestType = exports.AccessRequestPhasesResultV3 = exports.AccessRequestPhasesStateV3 = exports.AccessRequestItemTypeV3 = exports.AccessProfileUsageUsedByInnerTypeV3 = exports.AccessProfileSourceRefTypeV3 = exports.AccessProfileRefTypeV3 = exports.AccessProfileApprovalSchemeApproverTypeV3 = exports.AccessItemReviewedByTypeV3 = exports.AccessItemRequesterTypeV3 = exports.AccessItemRequestedForTypeV3 = exports.AccessCriteriaRequestCriteriaListInnerTypeV3 = exports.AccessCriteriaCriteriaListInnerTypeV3 = exports.AccessConstraintOperatorV3 = exports.AccessConstraintTypeV3 = exports.AccessAppsOwnerTypeV3 = void 0;
82
- exports.GetCampaign200ResponseCorrelatedStatusV3 = exports.GetCampaign200ResponseStatusV3 = exports.GetCampaign200ResponseTypeV3 = exports.GetActiveCampaigns200ResponseInnerMandatoryCommentRequirementV3 = exports.GetActiveCampaigns200ResponseInnerCorrelatedStatusV3 = exports.GetActiveCampaigns200ResponseInnerStatusV3 = exports.GetActiveCampaigns200ResponseInnerTypeV3 = exports.FilterType = exports.FederationProtocolDetailsRoleV3 = exports.ExpressionChildrenInnerOperatorV3 = exports.ExpressionOperatorV3 = exports.ExecutionStatus = exports.ExceptionCriteriaCriteriaListInnerTypeV3 = exports.EntitlementRef1TypeV3 = exports.EntitlementRefTypeV3 = exports.EntitlementOwnerTypeV3 = exports.DtoType = exports.DocumentType = exports.DimensionRefTypeV3 = exports.DependantConnectionsMissingDtoDependencyTypeV3 = exports.DeleteSource202ResponseTypeV3 = exports.DateCompareOperatorV3 = exports.CriteriaType = exports.ConnectorDetailStatusV3 = exports.CompletionStatus = exports.CompletedApprovalState = exports.CommentDtoAuthorTypeV3 = exports.ClientType = exports.CertificationTaskStatusV3 = exports.CertificationTaskTargetTypeV3 = exports.CertificationTaskTypeV3 = exports.CertificationReferenceTypeV3 = exports.CertificationPhase = exports.CertificationDecision = exports.CampaignTemplateOwnerRefTypeV3 = exports.CampaignReportStatusV3 = exports.CampaignReportTypeV3 = exports.CampaignReferenceMandatoryCommentRequirementV3 = exports.CampaignReferenceCorrelatedStatusV3 = exports.CampaignReferenceCampaignTypeV3 = exports.CampaignReferenceTypeV3 = exports.CampaignFilterDetailsModeV3 = exports.CampaignCompleteOptionsAutoCompleteActionV3 = exports.CampaignAllOfSourcesWithOrphanEntitlementsTypeV3 = exports.CampaignAllOfSearchCampaignInfoReviewerTypeV3 = exports.CampaignAllOfSearchCampaignInfoTypeV3 = exports.CampaignAllOfRoleCompositionCampaignInfoRemediatorRefTypeV3 = exports.CampaignAllOfMachineAccountCampaignInfoReviewerTypeV3 = exports.CampaignAllOfFilterTypeV3 = exports.CampaignAlertLevelV3 = void 0;
83
- exports.ReassignmentReferenceTypeV3 = exports.ReassignReferenceTypeV3 = exports.QueryType = exports.PublicIdentityIdentityStateV3 = exports.ProvisioningState = exports.ProvisioningCriteriaOperation = exports.PreApprovalTriggerDetailsDecisionV3 = exports.PendingApprovalOwnerTypeV3 = exports.PendingApprovalAction = exports.PatOwnerTypeV3 = exports.PasswordStatusStateV3 = exports.PasswordChangeResponseStateV3 = exports.OwnerReferenceSegmentsTypeV3 = exports.OwnerReferenceTypeV3 = exports.OwnerDtoTypeV3 = exports.OrphanIdentitiesReportArgumentsSelectedFormatsV3 = exports.Operation = exports.ObjectMappingResponseObjectTypeV3 = exports.ObjectMappingRequestObjectTypeV3 = exports.NonEmployeeSchemaAttributeType = exports.NonEmployeeIdentityDtoType = exports.NonEmployeeBulkUploadStatusStatusV3 = exports.NonEmployeeBulkUploadJobStatusV3 = exports.NamedConstructs = exports.MfaConfigTestResponseStateV3 = exports.MetricType = exports.ManualWorkItemState = exports.ManualWorkItemDetailsOriginalOwnerTypeV3 = exports.ManualWorkItemDetailsCurrentOwnerTypeV3 = exports.ManagedClusterTypes = exports.ManagedClusterStatusV3 = exports.ManagedClientType = exports.ManagedClientStatusCode = exports.ManagedClientProvisionStatusV3 = exports.ManagedClientClusterTypeV3 = exports.ManagedClientStatusV3 = exports.LocaleOrigin = exports.LifecyclestateDeletedTypeV3 = exports.KbaAuthResponseStatusV3 = exports.JsonPatchOperationOpV3 = exports.Index = exports.ImportObjectTypeV3 = exports.IdpDetailsRoleV3 = exports.IdentityWithNewAccessAccessRefsInnerTypeV3 = exports.IdentityProfileExportedObjectSelfTypeV3 = exports.IdentityProfileAllOfOwnerTypeV3 = exports.IdentityProfileAllOfAuthoritativeSourceTypeV3 = exports.IdentityPreviewResponseIdentityTypeV3 = exports.GrantType = exports.GetCampaign200ResponseMandatoryCommentRequirementV3 = void 0;
82
+ exports.GetCampaign200ResponseMandatoryCommentRequirementV3 = exports.GetCampaign200ResponseCorrelatedStatusV3 = exports.GetCampaign200ResponseStatusV3 = exports.GetCampaign200ResponseTypeV3 = exports.GetActiveCampaigns200ResponseInnerMandatoryCommentRequirementV3 = exports.GetActiveCampaigns200ResponseInnerCorrelatedStatusV3 = exports.GetActiveCampaigns200ResponseInnerStatusV3 = exports.GetActiveCampaigns200ResponseInnerTypeV3 = exports.FilterType = exports.FederationProtocolDetailsRoleV3 = exports.ExpressionChildrenInnerOperatorV3 = exports.ExpressionOperatorV3 = exports.ExecutionStatus = exports.ExceptionCriteriaCriteriaListInnerTypeV3 = exports.EntitlementRefTypeV3 = exports.EntitlementOwnerTypeV3 = exports.DtoType = exports.DocumentType = exports.DimensionRefTypeV3 = exports.DependantConnectionsMissingDtoDependencyTypeV3 = exports.DeleteSource202ResponseTypeV3 = exports.DateCompareOperatorV3 = exports.CriteriaType = exports.ConnectorDetailStatusV3 = exports.CompletionStatus = exports.CompletedApprovalState = exports.CommentDtoAuthorTypeV3 = exports.ClientType = exports.CertificationTaskStatusV3 = exports.CertificationTaskTargetTypeV3 = exports.CertificationTaskTypeV3 = exports.CertificationReferenceTypeV3 = exports.CertificationPhase = exports.CertificationDecision = exports.CampaignTemplateOwnerRefTypeV3 = exports.CampaignReportStatusV3 = exports.CampaignReportTypeV3 = exports.CampaignReferenceMandatoryCommentRequirementV3 = exports.CampaignReferenceCorrelatedStatusV3 = exports.CampaignReferenceCampaignTypeV3 = exports.CampaignReferenceTypeV3 = exports.CampaignFilterDetailsModeV3 = exports.CampaignCompleteOptionsAutoCompleteActionV3 = exports.CampaignAllOfSourcesWithOrphanEntitlementsTypeV3 = exports.CampaignAllOfSearchCampaignInfoReviewerTypeV3 = exports.CampaignAllOfSearchCampaignInfoTypeV3 = exports.CampaignAllOfRoleCompositionCampaignInfoRemediatorRefTypeV3 = exports.CampaignAllOfMachineAccountCampaignInfoReviewerTypeV3 = exports.CampaignAllOfFilterTypeV3 = exports.CampaignAlertLevelV3 = void 0;
83
+ exports.ReassignmentReferenceTypeV3 = exports.ReassignReferenceTypeV3 = exports.QueryType = exports.PublicIdentityIdentityStateV3 = exports.ProvisioningState = exports.ProvisioningCriteriaOperation = exports.PreApprovalTriggerDetailsDecisionV3 = exports.PendingApprovalOwnerTypeV3 = exports.PendingApprovalAction = exports.PatOwnerTypeV3 = exports.PasswordStatusStateV3 = exports.PasswordChangeResponseStateV3 = exports.OwnerReferenceSegmentsTypeV3 = exports.OwnerReferenceTypeV3 = exports.OwnerDtoTypeV3 = exports.OrphanIdentitiesReportArgumentsSelectedFormatsV3 = exports.Operation = exports.ObjectMappingResponseObjectTypeV3 = exports.ObjectMappingRequestObjectTypeV3 = exports.NonEmployeeSchemaAttributeType = exports.NonEmployeeIdentityDtoType = exports.NonEmployeeBulkUploadStatusStatusV3 = exports.NonEmployeeBulkUploadJobStatusV3 = exports.NamedConstructs = exports.MfaConfigTestResponseStateV3 = exports.MetricType = exports.ManualWorkItemState = exports.ManualWorkItemDetailsOriginalOwnerTypeV3 = exports.ManualWorkItemDetailsCurrentOwnerTypeV3 = exports.ManagedClusterTypes = exports.ManagedClusterEncryptionConfigFormatV3 = exports.ManagedClusterStatusV3 = exports.ManagedClientType = exports.ManagedClientStatusCode = exports.ManagedClientProvisionStatusV3 = exports.ManagedClientClusterTypeV3 = exports.ManagedClientStatusV3 = exports.LocaleOrigin = exports.LifecyclestateDeletedTypeV3 = exports.KbaAuthResponseStatusV3 = exports.JsonPatchOperationOpV3 = exports.Index = exports.ImportObjectTypeV3 = exports.IdpDetailsRoleV3 = exports.IdentityWithNewAccessAccessRefsInnerTypeV3 = exports.IdentityProfileExportedObjectSelfTypeV3 = exports.IdentityProfileAllOfOwnerTypeV3 = exports.IdentityProfileAllOfAuthoritativeSourceTypeV3 = exports.IdentityPreviewResponseIdentityTypeV3 = exports.GrantType = void 0;
84
84
  exports.SodPolicyOwnerRefTypeV3 = exports.SodPolicyDto1TypeV3 = exports.SodPolicyDtoTypeV3 = exports.SodPolicyTypeV3 = exports.SodPolicyStateV3 = exports.SlimCampaignCorrelatedStatusV3 = exports.SlimCampaignStatusV3 = exports.SlimCampaignTypeV3 = exports.ServiceProviderConfigurationFederationProtocolDetailsInnerRoleV3 = exports.ServiceDeskSourceTypeV3 = exports.SendTokenResponseStatusV3 = exports.SendTokenRequestDeliveryTypeV3 = exports.SelectorType = exports.SearchScheduleRecipientsInnerTypeV3 = exports.SearchFilterType = exports.SchemaFeaturesV3 = exports.ScheduledSearchAllOfOwnerTypeV3 = exports.ScheduledAttributesFrequencyV3 = exports.ScheduleType = exports.ScheduleMonthsTypeV3 = exports.ScheduleHoursTypeV3 = exports.ScheduleDaysTypeV3 = exports.ScheduleTypeV3 = exports.RoleMembershipSelectorType = exports.RoleCriteriaOperation = exports.RoleCriteriaKeyType = exports.RoleAssignmentSourceType = exports.ReviewerTypeV3 = exports.ReviewableEntitlementAccountOwnerTypeV3 = exports.RequestedItemStatusSodViolationContextStateV3 = exports.RequestedItemStatusRequestedForTypeV3 = exports.RequestedItemStatusRequestState = exports.RequestedItemStatusPreApprovalTriggerDetailsDecisionV3 = exports.RequestedItemStatusTypeV3 = exports.RequestedItemDtoRefTypeV3 = exports.RequestedItemDetailsTypeV3 = exports.RequestableObjectType = exports.RequestableObjectRequestStatus = exports.RequestableObjectReferenceTypeV3 = exports.ReportType = exports.ReportResultsAvailableFormatsV3 = exports.ReportResultsStatusV3 = exports.ReportResultsReportTypeV3 = exports.ReportResultReferenceStatusV3 = exports.ReportResultReferenceTypeV3 = exports.ReportDetailsArgumentsSelectedFormatsV3 = exports.ReportDetailsReportTypeV3 = exports.RecommendationMethodV3 = exports.RecommendationTypeV3 = exports.ReassignmentType = void 0;
85
85
  exports.WorkflowExecutionEventTypeV3 = exports.WorkflowExecutionStatusV3 = exports.WorkflowBodyOwnerTypeV3 = exports.WorkflowAllOfCreatorTypeV3 = exports.WorkItemTypeManualWorkItems = exports.WorkItemStateManualWorkItems = exports.WorkItemState = exports.ViolationOwnerAssignmentConfigOwnerRefTypeV3 = exports.ViolationOwnerAssignmentConfigAssignmentRuleV3 = exports.ViolationContextPolicyTypeV3 = exports.VerificationResponseStatusV3 = exports.V3CreateConnectorDtoStatusV3 = exports.V3ConnectorDtoStatusV3 = exports.UsageType = exports.UpdateDetailStatusV3 = exports.UncorrelatedAccountsReportArgumentsSelectedFormatsV3 = exports.TransformReadTypeV3 = exports.TransformTypeV3 = exports.TokenAuthResponseStatusV3 = exports.TokenAuthRequestDeliveryTypeV3 = exports.TaskResultSimplifiedCompletionStatusV3 = exports.TaskResultDtoTypeV3 = exports.TaskResultDetailsMessagesInnerTypeV3 = exports.TaskResultDetailsCompletionStatusV3 = exports.TaskResultDetailsReportTypeV3 = exports.TaskResultDetailsTypeV3 = exports.TaggedObjectDtoTypeV3 = exports.StandardLevel = exports.SpDetailsRoleV3 = exports.SourceUsageStatusStatusV3 = exports.SourceSchemasInnerTypeV3 = exports.SourcePasswordPoliciesInnerTypeV3 = exports.SourceOwnerTypeV3 = exports.SourceManagerCorrelationRuleTypeV3 = exports.SourceManagementWorkgroupTypeV3 = exports.SourceHealthDtoStatusV3 = exports.SourceClusterDtoTypeV3 = exports.SourceClusterTypeV3 = exports.SourceBeforeProvisioningRuleTypeV3 = exports.SourceAccountCorrelationRuleTypeV3 = exports.SourceAccountCorrelationConfigTypeV3 = exports.SourceStatusV3 = exports.SourceFeaturesV3 = exports.SodViolationContextCheckCompletedStateV3 = exports.SodReportResultDtoTypeV3 = exports.SodRecipientTypeV3 = exports.SodPolicyRequestTypeV3 = exports.SodPolicyRequestStateV3 = exports.SodPolicyReadTypeV3 = exports.SodPolicyReadStateV3 = void 0;
86
86
  exports.CertificationCampaignsApiFactory = exports.CertificationCampaignsApiFp = exports.CertificationCampaignsApiAxiosParamCreator = exports.CertificationCampaignFiltersApi = exports.CertificationCampaignFiltersApiFactory = exports.CertificationCampaignFiltersApiFp = exports.CertificationCampaignFiltersApiAxiosParamCreator = exports.BrandingApi = exports.BrandingApiFactory = exports.BrandingApiFp = exports.BrandingApiAxiosParamCreator = exports.AuthUsersApi = exports.AuthUsersApiFactory = exports.AuthUsersApiFp = exports.AuthUsersApiAxiosParamCreator = exports.GetDiscoveredApplicationsDetailV3 = exports.ApplicationDiscoveryApi = exports.ApplicationDiscoveryApiFactory = exports.ApplicationDiscoveryApiFp = exports.ApplicationDiscoveryApiAxiosParamCreator = exports.ListAccountsDetailLevelV3 = exports.AccountsApi = exports.AccountsApiFactory = exports.AccountsApiFp = exports.AccountsApiAxiosParamCreator = exports.AccountUsagesApi = exports.AccountUsagesApiFactory = exports.AccountUsagesApiFp = exports.AccountUsagesApiAxiosParamCreator = exports.AccountActivitiesApi = exports.AccountActivitiesApiFactory = exports.AccountActivitiesApiFp = exports.AccountActivitiesApiAxiosParamCreator = exports.AccessRequestsApi = exports.AccessRequestsApiFactory = exports.AccessRequestsApiFp = exports.AccessRequestsApiAxiosParamCreator = exports.AccessRequestApprovalsApi = exports.AccessRequestApprovalsApiFactory = exports.AccessRequestApprovalsApiFp = exports.AccessRequestApprovalsApiAxiosParamCreator = exports.AccessProfilesApi = exports.AccessProfilesApiFactory = exports.AccessProfilesApiFp = exports.AccessProfilesApiAxiosParamCreator = exports.WorkflowTriggerAttributesFrequencyV3 = exports.WorkflowTriggerTypeV3 = exports.WorkflowModifiedByTypeV3 = exports.WorkflowLibraryTriggerTypeV3 = exports.WorkflowLibraryFormFieldsTypeV3 = void 0;
@@ -648,9 +648,6 @@ exports.EntitlementOwnerTypeV3 = {
648
648
  exports.EntitlementRefTypeV3 = {
649
649
  Entitlement: 'ENTITLEMENT'
650
650
  };
651
- exports.EntitlementRef1TypeV3 = {
652
- Entitlement: 'ENTITLEMENT'
653
- };
654
651
  exports.ExceptionCriteriaCriteriaListInnerTypeV3 = {
655
652
  Entitlement: 'ENTITLEMENT'
656
653
  };
@@ -898,6 +895,10 @@ exports.ManagedClusterStatusV3 = {
898
895
  Normal: 'NORMAL',
899
896
  Warning: 'WARNING'
900
897
  };
898
+ exports.ManagedClusterEncryptionConfigFormatV3 = {
899
+ V2: 'V2',
900
+ V3: 'V3'
901
+ };
901
902
  /**
902
903
  * The Type of Cluster
903
904
  * @export
@@ -16224,7 +16225,7 @@ var LifecycleStatesApiAxiosParamCreator = function (configuration) {
16224
16225
  * @param {number} [limit] Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
16225
16226
  * @param {number} [offset] Offset into the full result set. Usually specified with *limit* to paginate through the results. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
16226
16227
  * @param {boolean} [count] If *true* it will populate the *X-Total-Count* response header with the number of results that would be returned if *limit* and *offset* were ignored. Since requesting a total count can have a performance impact, it is recommended not to send **count&#x3D;true** if that value will not be used. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
16227
- * @param {string} [sorters] Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) Sorting is supported for the following fields: **created, modified**
16228
+ * @param {string} [sorters] Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) Sorting is supported for the following fields: **name, priority, created, modified**
16228
16229
  * @param {*} [axiosOptions] Override http request option.
16229
16230
  * @throws {RequiredError}
16230
16231
  */
@@ -16515,7 +16516,7 @@ var LifecycleStatesApiFp = function (configuration) {
16515
16516
  * @param {number} [limit] Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
16516
16517
  * @param {number} [offset] Offset into the full result set. Usually specified with *limit* to paginate through the results. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
16517
16518
  * @param {boolean} [count] If *true* it will populate the *X-Total-Count* response header with the number of results that would be returned if *limit* and *offset* were ignored. Since requesting a total count can have a performance impact, it is recommended not to send **count&#x3D;true** if that value will not be used. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
16518
- * @param {string} [sorters] Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) Sorting is supported for the following fields: **created, modified**
16519
+ * @param {string} [sorters] Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) Sorting is supported for the following fields: **name, priority, created, modified**
16519
16520
  * @param {*} [axiosOptions] Override http request option.
16520
16521
  * @throws {RequiredError}
16521
16522
  */
@@ -29715,19 +29716,19 @@ var SODViolationsApiAxiosParamCreator = function (configuration) {
29715
29716
  /**
29716
29717
  * This API initiates a SOD policy verification asynchronously.
29717
29718
  * @summary Check sod violations
29718
- * @param {IdentityWithNewAccess1} identityWithNewAccess1
29719
+ * @param {IdentityWithNewAccess} identityWithNewAccess
29719
29720
  * @param {*} [axiosOptions] Override http request option.
29720
29721
  * @throws {RequiredError}
29721
29722
  */
29722
- startViolationCheck: function (identityWithNewAccess1, axiosOptions) {
29723
+ startViolationCheck: function (identityWithNewAccess, axiosOptions) {
29723
29724
  if (axiosOptions === void 0) { axiosOptions = {}; }
29724
29725
  return __awaiter(_this, void 0, void 0, function () {
29725
29726
  var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
29726
29727
  return __generator(this, function (_a) {
29727
29728
  switch (_a.label) {
29728
29729
  case 0:
29729
- // verify required parameter 'identityWithNewAccess1' is not null or undefined
29730
- (0, common_1.assertParamExists)('startViolationCheck', 'identityWithNewAccess1', identityWithNewAccess1);
29730
+ // verify required parameter 'identityWithNewAccess' is not null or undefined
29731
+ (0, common_1.assertParamExists)('startViolationCheck', 'identityWithNewAccess', identityWithNewAccess);
29731
29732
  localVarPath = "/sod-violations/check";
29732
29733
  localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
29733
29734
  if (configuration) {
@@ -29757,7 +29758,7 @@ var SODViolationsApiAxiosParamCreator = function (configuration) {
29757
29758
  (0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
29758
29759
  headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
29759
29760
  localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), axiosOptions.headers);
29760
- localVarRequestOptions.data = (0, common_1.serializeDataIfNeeded)(identityWithNewAccess1, localVarRequestOptions, configuration);
29761
+ localVarRequestOptions.data = (0, common_1.serializeDataIfNeeded)(identityWithNewAccess, localVarRequestOptions, configuration);
29761
29762
  return [2 /*return*/, {
29762
29763
  url: (0, common_1.toPathString)(localVarUrlObj),
29763
29764
  axiosOptions: localVarRequestOptions,
@@ -29802,17 +29803,17 @@ var SODViolationsApiFp = function (configuration) {
29802
29803
  /**
29803
29804
  * This API initiates a SOD policy verification asynchronously.
29804
29805
  * @summary Check sod violations
29805
- * @param {IdentityWithNewAccess1} identityWithNewAccess1
29806
+ * @param {IdentityWithNewAccess} identityWithNewAccess
29806
29807
  * @param {*} [axiosOptions] Override http request option.
29807
29808
  * @throws {RequiredError}
29808
29809
  */
29809
- startViolationCheck: function (identityWithNewAccess1, axiosOptions) {
29810
+ startViolationCheck: function (identityWithNewAccess, axiosOptions) {
29810
29811
  var _a, _b, _c;
29811
29812
  return __awaiter(this, void 0, void 0, function () {
29812
29813
  var localVarAxiosArgs, localVarOperationServerIndex, localVarOperationServerBasePath;
29813
29814
  return __generator(this, function (_d) {
29814
29815
  switch (_d.label) {
29815
- case 0: return [4 /*yield*/, localVarAxiosParamCreator.startViolationCheck(identityWithNewAccess1, axiosOptions)];
29816
+ case 0: return [4 /*yield*/, localVarAxiosParamCreator.startViolationCheck(identityWithNewAccess, axiosOptions)];
29816
29817
  case 1:
29817
29818
  localVarAxiosArgs = _d.sent();
29818
29819
  localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
@@ -29850,7 +29851,7 @@ var SODViolationsApiFactory = function (configuration, basePath, axios) {
29850
29851
  * @throws {RequiredError}
29851
29852
  */
29852
29853
  startViolationCheck: function (requestParameters, axiosOptions) {
29853
- return localVarFp.startViolationCheck(requestParameters.identityWithNewAccess1, axiosOptions).then(function (request) { return request(axios, basePath); });
29854
+ return localVarFp.startViolationCheck(requestParameters.identityWithNewAccess, axiosOptions).then(function (request) { return request(axios, basePath); });
29854
29855
  },
29855
29856
  };
29856
29857
  };
@@ -29888,7 +29889,7 @@ var SODViolationsApi = /** @class */ (function (_super) {
29888
29889
  */
29889
29890
  SODViolationsApi.prototype.startViolationCheck = function (requestParameters, axiosOptions) {
29890
29891
  var _this = this;
29891
- return (0, exports.SODViolationsApiFp)(this.configuration).startViolationCheck(requestParameters.identityWithNewAccess1, axiosOptions).then(function (request) { return request(_this.axios, _this.basePath); });
29892
+ return (0, exports.SODViolationsApiFp)(this.configuration).startViolationCheck(requestParameters.identityWithNewAccess, axiosOptions).then(function (request) { return request(_this.axios, _this.basePath); });
29892
29893
  };
29893
29894
  return SODViolationsApi;
29894
29895
  }(base_1.BaseAPI));
@@ -40998,14 +40999,14 @@ var WorkflowsApiAxiosParamCreator = function (configuration) {
40998
40999
  /**
40999
41000
  * List all workflows in the tenant.
41000
41001
  * @summary List workflows
41001
- * @param {string} [triggerId] Trigger ID
41002
- * @param {string} [connectorInstanceId] Connector Instance ID
41002
+ * @param {string} [filters] Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **enabled**: *eq* **connectorInstanceId**: *eq* **triggerId**: *eq*
41003
+ * @param {string} [sorters] Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) Sorting is supported for the following fields: **modified, name**
41003
41004
  * @param {number} [limit] Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
41004
41005
  * @param {number} [offset] Offset into the full result set. Usually specified with *limit* to paginate through the results. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
41005
41006
  * @param {*} [axiosOptions] Override http request option.
41006
41007
  * @throws {RequiredError}
41007
41008
  */
41008
- listWorkflows: function (triggerId, connectorInstanceId, limit, offset, axiosOptions) {
41009
+ listWorkflows: function (filters, sorters, limit, offset, axiosOptions) {
41009
41010
  if (axiosOptions === void 0) { axiosOptions = {}; }
41010
41011
  return __awaiter(_this, void 0, void 0, function () {
41011
41012
  var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
@@ -41037,11 +41038,11 @@ var WorkflowsApiAxiosParamCreator = function (configuration) {
41037
41038
  // authentication userAuth required
41038
41039
  // oauth required
41039
41040
  _a.sent();
41040
- if (triggerId !== undefined) {
41041
- localVarQueryParameter['triggerId'] = triggerId;
41041
+ if (filters !== undefined) {
41042
+ localVarQueryParameter['filters'] = filters;
41042
41043
  }
41043
- if (connectorInstanceId !== undefined) {
41044
- localVarQueryParameter['connectorInstanceId'] = connectorInstanceId;
41044
+ if (sorters !== undefined) {
41045
+ localVarQueryParameter['sorters'] = sorters;
41045
41046
  }
41046
41047
  if (limit !== undefined) {
41047
41048
  localVarQueryParameter['limit'] = limit;
@@ -41611,20 +41612,20 @@ var WorkflowsApiFp = function (configuration) {
41611
41612
  /**
41612
41613
  * List all workflows in the tenant.
41613
41614
  * @summary List workflows
41614
- * @param {string} [triggerId] Trigger ID
41615
- * @param {string} [connectorInstanceId] Connector Instance ID
41615
+ * @param {string} [filters] Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **enabled**: *eq* **connectorInstanceId**: *eq* **triggerId**: *eq*
41616
+ * @param {string} [sorters] Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) Sorting is supported for the following fields: **modified, name**
41616
41617
  * @param {number} [limit] Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
41617
41618
  * @param {number} [offset] Offset into the full result set. Usually specified with *limit* to paginate through the results. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
41618
41619
  * @param {*} [axiosOptions] Override http request option.
41619
41620
  * @throws {RequiredError}
41620
41621
  */
41621
- listWorkflows: function (triggerId, connectorInstanceId, limit, offset, axiosOptions) {
41622
+ listWorkflows: function (filters, sorters, limit, offset, axiosOptions) {
41622
41623
  var _a, _b, _c;
41623
41624
  return __awaiter(this, void 0, void 0, function () {
41624
41625
  var localVarAxiosArgs, localVarOperationServerIndex, localVarOperationServerBasePath;
41625
41626
  return __generator(this, function (_d) {
41626
41627
  switch (_d.label) {
41627
- case 0: return [4 /*yield*/, localVarAxiosParamCreator.listWorkflows(triggerId, connectorInstanceId, limit, offset, axiosOptions)];
41628
+ case 0: return [4 /*yield*/, localVarAxiosParamCreator.listWorkflows(filters, sorters, limit, offset, axiosOptions)];
41628
41629
  case 1:
41629
41630
  localVarAxiosArgs = _d.sent();
41630
41631
  localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
@@ -41881,7 +41882,7 @@ var WorkflowsApiFactory = function (configuration, basePath, axios) {
41881
41882
  */
41882
41883
  listWorkflows: function (requestParameters, axiosOptions) {
41883
41884
  if (requestParameters === void 0) { requestParameters = {}; }
41884
- return localVarFp.listWorkflows(requestParameters.triggerId, requestParameters.connectorInstanceId, requestParameters.limit, requestParameters.offset, axiosOptions).then(function (request) { return request(axios, basePath); });
41885
+ return localVarFp.listWorkflows(requestParameters.filters, requestParameters.sorters, requestParameters.limit, requestParameters.offset, axiosOptions).then(function (request) { return request(axios, basePath); });
41885
41886
  },
41886
41887
  /**
41887
41888
  * Partially update an existing Workflow using [JSON Patch](https://tools.ietf.org/html/rfc6902) syntax.
@@ -42106,7 +42107,7 @@ var WorkflowsApi = /** @class */ (function (_super) {
42106
42107
  WorkflowsApi.prototype.listWorkflows = function (requestParameters, axiosOptions) {
42107
42108
  var _this = this;
42108
42109
  if (requestParameters === void 0) { requestParameters = {}; }
42109
- return (0, exports.WorkflowsApiFp)(this.configuration).listWorkflows(requestParameters.triggerId, requestParameters.connectorInstanceId, requestParameters.limit, requestParameters.offset, axiosOptions).then(function (request) { return request(_this.axios, _this.basePath); });
42110
+ return (0, exports.WorkflowsApiFp)(this.configuration).listWorkflows(requestParameters.filters, requestParameters.sorters, requestParameters.limit, requestParameters.offset, axiosOptions).then(function (request) { return request(_this.axios, _this.basePath); });
42110
42111
  };
42111
42112
  /**
42112
42113
  * Partially update an existing Workflow using [JSON Patch](https://tools.ietf.org/html/rfc6902) syntax.