sailpoint-api-client 1.6.9 → 1.7.0

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 (67) hide show
  1. package/beta/README.md +2 -2
  2. package/beta/api.ts +264 -550
  3. package/beta/common.ts +2 -2
  4. package/beta/package.json +1 -1
  5. package/dist/beta/api.d.ts +248 -392
  6. package/dist/beta/api.js +104 -416
  7. package/dist/beta/api.js.map +1 -1
  8. package/dist/beta/common.js +1 -1
  9. package/dist/index.d.ts +2 -0
  10. package/dist/index.js +6 -3
  11. package/dist/index.js.map +1 -1
  12. package/dist/index.spec.js +18 -0
  13. package/dist/index.spec.js.map +1 -1
  14. package/dist/v2024/api.d.ts +123 -361
  15. package/dist/v2024/api.js +93 -410
  16. package/dist/v2024/api.js.map +1 -1
  17. package/dist/v2024/common.js +1 -1
  18. package/dist/v2025/api.d.ts +1643 -412
  19. package/dist/v2025/api.js +2844 -1167
  20. package/dist/v2025/api.js.map +1 -1
  21. package/dist/v2025/common.js +1 -1
  22. package/dist/v2026/api.d.ts +810 -0
  23. package/dist/v2026/api.js +792 -0
  24. package/dist/v2026/api.js.map +1 -0
  25. package/dist/v2026/base.d.ts +66 -0
  26. package/dist/v2026/base.js +89 -0
  27. package/dist/v2026/base.js.map +1 -0
  28. package/dist/v2026/common.d.ts +65 -0
  29. package/dist/v2026/common.js +266 -0
  30. package/dist/v2026/common.js.map +1 -0
  31. package/dist/v2026/configuration.d.ts +91 -0
  32. package/dist/v2026/configuration.js +46 -0
  33. package/dist/v2026/configuration.js.map +1 -0
  34. package/dist/v2026/index.d.ts +13 -0
  35. package/dist/v2026/index.js +32 -0
  36. package/dist/v2026/index.js.map +1 -0
  37. package/dist/v3/api.d.ts +85 -365
  38. package/dist/v3/api.js +67 -383
  39. package/dist/v3/api.js.map +1 -1
  40. package/dist/v3/common.js +1 -1
  41. package/index.spec.ts +11 -1
  42. package/index.ts +3 -0
  43. package/package.json +1 -1
  44. package/v2024/README.md +2 -2
  45. package/v2024/api.ts +134 -517
  46. package/v2024/common.ts +2 -2
  47. package/v2024/package.json +1 -1
  48. package/v2025/README.md +2 -2
  49. package/v2025/api.ts +2816 -770
  50. package/v2025/common.ts +2 -2
  51. package/v2025/package.json +1 -1
  52. package/v2026/.openapi-generator/FILES +12 -0
  53. package/v2026/.openapi-generator/VERSION +1 -0
  54. package/v2026/.openapi-generator-ignore +23 -0
  55. package/v2026/README.md +46 -0
  56. package/v2026/api.ts +1180 -0
  57. package/v2026/base.ts +86 -0
  58. package/v2026/common.ts +165 -0
  59. package/v2026/configuration.ts +110 -0
  60. package/v2026/git_push.sh +57 -0
  61. package/v2026/index.ts +18 -0
  62. package/v2026/package.json +34 -0
  63. package/v2026/tsconfig.json +21 -0
  64. package/v3/README.md +2 -2
  65. package/v3/api.ts +93 -518
  66. package/v3/common.ts +2 -2
  67. package/v3/package.json +1 -1
package/v3/api.ts CHANGED
@@ -533,13 +533,13 @@ export interface AccessProfile {
533
533
  */
534
534
  export interface AccessProfileApprovalScheme {
535
535
  /**
536
- * Describes the individual or group that is responsible for an approval step. These are the possible values: **APP_OWNER**: The owner of the Application **OWNER**: Owner of the associated Access Profile or Role **SOURCE_OWNER**: Owner of the Source associated with an Access Profile **MANAGER**: Manager of the Identity making the request **GOVERNANCE_GROUP**: A Governance Group, the ID of which is specified by the **approverId** field
536
+ * Describes the individual or group that is responsible for an approval step. These are the possible values: **APP_OWNER**: The owner of the Application **OWNER**: Owner of the associated Access Profile or Role **SOURCE_OWNER**: Owner of the Source associated with an Access Profile **MANAGER**: Manager of the Identity making the request **GOVERNANCE_GROUP**: A Governance Group, the ID of which is specified by the **approverId** field **WORKFLOW**: A Workflow, the ID of which is specified by the **approverId** field. Workflow is exclusive to other types of approvals and License required.
537
537
  * @type {string}
538
538
  * @memberof AccessProfileApprovalScheme
539
539
  */
540
540
  'approverType'?: AccessProfileApprovalSchemeApproverTypeV3;
541
541
  /**
542
- * Specific approver ID. Only use this when the `approverType` is `GOVERNANCE_GROUP`.
542
+ * Id of the specific approver, used when approverType is GOVERNANCE_GROUP or WORKFLOW.
543
543
  * @type {string}
544
544
  * @memberof AccessProfileApprovalScheme
545
545
  */
@@ -551,7 +551,8 @@ export const AccessProfileApprovalSchemeApproverTypeV3 = {
551
551
  Owner: 'OWNER',
552
552
  SourceOwner: 'SOURCE_OWNER',
553
553
  Manager: 'MANAGER',
554
- GovernanceGroup: 'GOVERNANCE_GROUP'
554
+ GovernanceGroup: 'GOVERNANCE_GROUP',
555
+ Workflow: 'WORKFLOW'
555
556
  } as const;
556
557
 
557
558
  export type AccessProfileApprovalSchemeApproverTypeV3 = typeof AccessProfileApprovalSchemeApproverTypeV3[keyof typeof AccessProfileApprovalSchemeApproverTypeV3];
@@ -1763,7 +1764,7 @@ export type AccountOriginV3 = typeof AccountOriginV3[keyof typeof AccountOriginV
1763
1764
  */
1764
1765
  export interface AccountAction {
1765
1766
  /**
1766
- * Describes if action will be enabled or disabled
1767
+ * Describes if action will be enable, disable or delete.
1767
1768
  * @type {string}
1768
1769
  * @memberof AccountAction
1769
1770
  */
@@ -1778,7 +1779,8 @@ export interface AccountAction {
1778
1779
 
1779
1780
  export const AccountActionActionV3 = {
1780
1781
  Enable: 'ENABLE',
1781
- Disable: 'DISABLE'
1782
+ Disable: 'DISABLE',
1783
+ Delete: 'DELETE'
1782
1784
  } as const;
1783
1785
 
1784
1786
  export type AccountActionActionV3 = typeof AccountActionActionV3[keyof typeof AccountActionActionV3];
@@ -3345,13 +3347,13 @@ export type ApprovalScheme = typeof ApprovalScheme[keyof typeof ApprovalScheme];
3345
3347
  */
3346
3348
  export interface ApprovalSchemeForRole {
3347
3349
  /**
3348
- * Describes the individual or group that is responsible for an approval step. Values are as follows. **OWNER**: Owner of the associated Role **MANAGER**: Manager of the Identity making the request **GOVERNANCE_GROUP**: A Governance Group, the ID of which is specified by the **approverId** field
3350
+ * Describes the individual or group that is responsible for an approval step. Values are as follows. **OWNER**: Owner of the associated Role **MANAGER**: Manager of the Identity making the request **GOVERNANCE_GROUP**: A Governance Group, the ID of which is specified by the **approverId** field **WORKFLOW**: A Workflow, the ID of which is specified by the **approverId** field. Workflow is exclusive to other types of approvals and License required.
3349
3351
  * @type {string}
3350
3352
  * @memberof ApprovalSchemeForRole
3351
3353
  */
3352
3354
  'approverType'?: ApprovalSchemeForRoleApproverTypeV3;
3353
3355
  /**
3354
- * Id of the specific approver, used only when approverType is GOVERNANCE_GROUP
3356
+ * Id of the specific approver, used when approverType is GOVERNANCE_GROUP or WORKFLOW.
3355
3357
  * @type {string}
3356
3358
  * @memberof ApprovalSchemeForRole
3357
3359
  */
@@ -3361,7 +3363,8 @@ export interface ApprovalSchemeForRole {
3361
3363
  export const ApprovalSchemeForRoleApproverTypeV3 = {
3362
3364
  Owner: 'OWNER',
3363
3365
  Manager: 'MANAGER',
3364
- GovernanceGroup: 'GOVERNANCE_GROUP'
3366
+ GovernanceGroup: 'GOVERNANCE_GROUP',
3367
+ Workflow: 'WORKFLOW'
3365
3368
  } as const;
3366
3369
 
3367
3370
  export type ApprovalSchemeForRoleApproverTypeV3 = typeof ApprovalSchemeForRoleApproverTypeV3[keyof typeof ApprovalSchemeForRoleApproverTypeV3];
@@ -3629,6 +3632,12 @@ export interface AttributeDefinition {
3629
3632
  * @memberof AttributeDefinition
3630
3633
  */
3631
3634
  'name'?: string;
3635
+ /**
3636
+ * Attribute name in the native system.
3637
+ * @type {string}
3638
+ * @memberof AttributeDefinition
3639
+ */
3640
+ 'nativeName'?: string | null;
3632
3641
  /**
3633
3642
  *
3634
3643
  * @type {AttributeDefinitionType}
@@ -6366,6 +6375,12 @@ export interface CompletedApproval {
6366
6375
  * @memberof CompletedApproval
6367
6376
  */
6368
6377
  'requestedAccounts'?: Array<RequestedAccountRef> | null;
6378
+ /**
6379
+ * The privilege level of the requested access item, if applicable.
6380
+ * @type {string}
6381
+ * @memberof CompletedApproval
6382
+ */
6383
+ 'privilegeLevel'?: string | null;
6369
6384
  }
6370
6385
 
6371
6386
 
@@ -7543,19 +7558,6 @@ export const DeleteSource202ResponseTypeV3 = {
7543
7558
 
7544
7559
  export type DeleteSource202ResponseTypeV3 = typeof DeleteSource202ResponseTypeV3[keyof typeof DeleteSource202ResponseTypeV3];
7545
7560
 
7546
- /**
7547
- *
7548
- * @export
7549
- * @interface DeleteVendorConnectorMapping200Response
7550
- */
7551
- export interface DeleteVendorConnectorMapping200Response {
7552
- /**
7553
- * The number of vendor connector mappings successfully deleted.
7554
- * @type {number}
7555
- * @memberof DeleteVendorConnectorMapping200Response
7556
- */
7557
- 'count'?: number;
7558
- }
7559
7561
  /**
7560
7562
  *
7561
7563
  * @export
@@ -9431,11 +9433,11 @@ export interface FieldDetailsDto {
9431
9433
  */
9432
9434
  'isRequired'?: boolean;
9433
9435
  /**
9434
- * The type of the attribute.
9436
+ * The type of the attribute. string: For text-based data. int: For whole numbers. long: For larger whole numbers. date: For date and time values. boolean: For true/false values. secret: For sensitive data like passwords, which will be masked and encrypted.
9435
9437
  * @type {string}
9436
9438
  * @memberof FieldDetailsDto
9437
9439
  */
9438
- 'type'?: string;
9440
+ 'type'?: FieldDetailsDtoTypeV3;
9439
9441
  /**
9440
9442
  * Flag indicating whether or not the attribute is multi-valued.
9441
9443
  * @type {boolean}
@@ -9443,6 +9445,18 @@ export interface FieldDetailsDto {
9443
9445
  */
9444
9446
  'isMultiValued'?: boolean;
9445
9447
  }
9448
+
9449
+ export const FieldDetailsDtoTypeV3 = {
9450
+ String: 'string',
9451
+ Int: 'int',
9452
+ Long: 'long',
9453
+ Date: 'date',
9454
+ Boolean: 'boolean',
9455
+ Secret: 'secret'
9456
+ } as const;
9457
+
9458
+ export type FieldDetailsDtoTypeV3 = typeof FieldDetailsDtoTypeV3[keyof typeof FieldDetailsDtoTypeV3];
9459
+
9446
9460
  /**
9447
9461
  *
9448
9462
  * @export
@@ -10331,31 +10345,6 @@ export interface GetReferenceIdentityAttribute {
10331
10345
  */
10332
10346
  'requiresPeriodicRefresh'?: boolean;
10333
10347
  }
10334
- /**
10335
- *
10336
- * @export
10337
- * @interface GetVendorConnectorMappings405Response
10338
- */
10339
- export interface GetVendorConnectorMappings405Response {
10340
- /**
10341
- * A message describing the error
10342
- * @type {object}
10343
- * @memberof GetVendorConnectorMappings405Response
10344
- */
10345
- 'errorName'?: object;
10346
- /**
10347
- * Description of the error
10348
- * @type {object}
10349
- * @memberof GetVendorConnectorMappings405Response
10350
- */
10351
- 'errorMessage'?: object;
10352
- /**
10353
- * Unique tracking id for the error.
10354
- * @type {string}
10355
- * @memberof GetVendorConnectorMappings405Response
10356
- */
10357
- 'trackingId'?: string;
10358
- }
10359
10348
  /**
10360
10349
  * OAuth2 Grant Type
10361
10350
  * @export
@@ -15884,6 +15873,12 @@ export interface PendingApproval {
15884
15873
  * @memberof PendingApproval
15885
15874
  */
15886
15875
  'requestedAccounts'?: Array<RequestedAccountRef> | null;
15876
+ /**
15877
+ * The privilege level of the requested access item, if applicable.
15878
+ * @type {string}
15879
+ * @memberof PendingApproval
15880
+ */
15881
+ 'privilegeLevel'?: string | null;
15887
15882
  }
15888
15883
 
15889
15884
 
@@ -17758,6 +17753,12 @@ export interface RequestedItemStatus {
17758
17753
  * @memberof RequestedItemStatus
17759
17754
  */
17760
17755
  'requestedAccounts'?: Array<RequestedAccountRef> | null;
17756
+ /**
17757
+ * The privilege level of the requested access item, if applicable.
17758
+ * @type {string}
17759
+ * @memberof RequestedItemStatus
17760
+ */
17761
+ 'privilegeLevel'?: string | null;
17761
17762
  }
17762
17763
 
17763
17764
  export const RequestedItemStatusTypeV3 = {
@@ -20299,7 +20300,8 @@ export const SchemaFeaturesV3 = {
20299
20300
  ArmUtilizationExtract: 'ARM_UTILIZATION_EXTRACT',
20300
20301
  ArmChangelogExtract: 'ARM_CHANGELOG_EXTRACT',
20301
20302
  UsesUuid: 'USES_UUID',
20302
- ApplicationDiscovery: 'APPLICATION_DISCOVERY'
20303
+ ApplicationDiscovery: 'APPLICATION_DISCOVERY',
20304
+ Delete: 'DELETE'
20303
20305
  } as const;
20304
20306
 
20305
20307
  export type SchemaFeaturesV3 = typeof SchemaFeaturesV3[keyof typeof SchemaFeaturesV3];
@@ -22439,7 +22441,8 @@ export const SourceFeaturesV3 = {
22439
22441
  ArmUtilizationExtract: 'ARM_UTILIZATION_EXTRACT',
22440
22442
  ArmChangelogExtract: 'ARM_CHANGELOG_EXTRACT',
22441
22443
  UsesUuid: 'USES_UUID',
22442
- ApplicationDiscovery: 'APPLICATION_DISCOVERY'
22444
+ ApplicationDiscovery: 'APPLICATION_DISCOVERY',
22445
+ Delete: 'DELETE'
22443
22446
  } as const;
22444
22447
 
22445
22448
  export type SourceFeaturesV3 = typeof SourceFeaturesV3[keyof typeof SourceFeaturesV3];
@@ -24224,143 +24227,6 @@ export interface Value {
24224
24227
  */
24225
24228
  'value'?: string;
24226
24229
  }
24227
- /**
24228
- *
24229
- * @export
24230
- * @interface VendorConnectorMapping
24231
- */
24232
- export interface VendorConnectorMapping {
24233
- /**
24234
- * The unique identifier for the vendor-connector mapping.
24235
- * @type {string}
24236
- * @memberof VendorConnectorMapping
24237
- */
24238
- 'id'?: string;
24239
- /**
24240
- * The name of the vendor.
24241
- * @type {string}
24242
- * @memberof VendorConnectorMapping
24243
- */
24244
- 'vendor'?: string;
24245
- /**
24246
- * The name of the connector.
24247
- * @type {string}
24248
- * @memberof VendorConnectorMapping
24249
- */
24250
- 'connector'?: string;
24251
- /**
24252
- * The creation timestamp of the mapping.
24253
- * @type {string}
24254
- * @memberof VendorConnectorMapping
24255
- */
24256
- 'createdAt'?: string;
24257
- /**
24258
- * The identifier of the user who created the mapping.
24259
- * @type {string}
24260
- * @memberof VendorConnectorMapping
24261
- */
24262
- 'createdBy'?: string;
24263
- /**
24264
- *
24265
- * @type {VendorConnectorMappingUpdatedAt}
24266
- * @memberof VendorConnectorMapping
24267
- */
24268
- 'updatedAt'?: VendorConnectorMappingUpdatedAt | null;
24269
- /**
24270
- *
24271
- * @type {VendorConnectorMappingUpdatedBy}
24272
- * @memberof VendorConnectorMapping
24273
- */
24274
- 'updatedBy'?: VendorConnectorMappingUpdatedBy | null;
24275
- /**
24276
- *
24277
- * @type {VendorConnectorMappingDeletedAt}
24278
- * @memberof VendorConnectorMapping
24279
- */
24280
- 'deletedAt'?: VendorConnectorMappingDeletedAt | null;
24281
- /**
24282
- *
24283
- * @type {VendorConnectorMappingDeletedBy}
24284
- * @memberof VendorConnectorMapping
24285
- */
24286
- 'deletedBy'?: VendorConnectorMappingDeletedBy | null;
24287
- }
24288
- /**
24289
- * An object representing the nullable timestamp of when the mapping was deleted.
24290
- * @export
24291
- * @interface VendorConnectorMappingDeletedAt
24292
- */
24293
- export interface VendorConnectorMappingDeletedAt {
24294
- /**
24295
- * The timestamp when the mapping was deleted, represented in ISO 8601 format, if applicable.
24296
- * @type {string}
24297
- * @memberof VendorConnectorMappingDeletedAt
24298
- */
24299
- 'Time'?: string;
24300
- /**
24301
- * A flag indicating if the \'Time\' field is set and valid, i.e., if the mapping has been deleted.
24302
- * @type {boolean}
24303
- * @memberof VendorConnectorMappingDeletedAt
24304
- */
24305
- 'Valid'?: boolean;
24306
- }
24307
- /**
24308
- * An object representing the nullable identifier of the user who deleted the mapping.
24309
- * @export
24310
- * @interface VendorConnectorMappingDeletedBy
24311
- */
24312
- export interface VendorConnectorMappingDeletedBy {
24313
- /**
24314
- * The identifier of the user who deleted the mapping, if applicable.
24315
- * @type {string}
24316
- * @memberof VendorConnectorMappingDeletedBy
24317
- */
24318
- 'String'?: string;
24319
- /**
24320
- * A flag indicating if the \'String\' field is set and valid, i.e., if the mapping has been deleted.
24321
- * @type {boolean}
24322
- * @memberof VendorConnectorMappingDeletedBy
24323
- */
24324
- 'Valid'?: boolean;
24325
- }
24326
- /**
24327
- * An object representing the nullable timestamp of the last update.
24328
- * @export
24329
- * @interface VendorConnectorMappingUpdatedAt
24330
- */
24331
- export interface VendorConnectorMappingUpdatedAt {
24332
- /**
24333
- * The timestamp when the mapping was last updated, represented in ISO 8601 format.
24334
- * @type {string}
24335
- * @memberof VendorConnectorMappingUpdatedAt
24336
- */
24337
- 'Time'?: string;
24338
- /**
24339
- * A flag indicating if the \'Time\' field is set and valid.
24340
- * @type {boolean}
24341
- * @memberof VendorConnectorMappingUpdatedAt
24342
- */
24343
- 'Valid'?: boolean;
24344
- }
24345
- /**
24346
- * An object representing the nullable identifier of the user who last updated the mapping.
24347
- * @export
24348
- * @interface VendorConnectorMappingUpdatedBy
24349
- */
24350
- export interface VendorConnectorMappingUpdatedBy {
24351
- /**
24352
- * The identifier of the user who last updated the mapping, if available.
24353
- * @type {string}
24354
- * @memberof VendorConnectorMappingUpdatedBy
24355
- */
24356
- 'String'?: string;
24357
- /**
24358
- * A flag indicating if the \'String\' field is set and valid.
24359
- * @type {boolean}
24360
- * @memberof VendorConnectorMappingUpdatedBy
24361
- */
24362
- 'Valid'?: boolean;
24363
- }
24364
24230
  /**
24365
24231
  *
24366
24232
  * @export
@@ -35823,7 +35689,7 @@ export const ConfigurationHubApiAxiosParamCreator = function (configuration?: Co
35823
35689
  };
35824
35690
  },
35825
35691
  /**
35826
- * This API uploads a JSON configuration file into a tenant. Configuration files can be managed and deployed via Configuration Hub by uploading a json file which contains configuration data. The JSON file should be the same as the one used by our import endpoints. The object types supported by upload configuration file functionality are the same as the ones supported by our regular backup functionality. Refer to [SaaS Configuration](https://developer.sailpoint.com/idn/docs/saas-configuration/#supported-objects) for more information about supported objects.
35692
+ * This API uploads a JSON configuration file into a tenant. Configuration files can be managed and deployed via Configuration Hub by uploading a json file which contains configuration data. The JSON file should be the same as the one used by our import endpoints. The object types supported by upload configuration file functionality are the same as the ones supported by our regular backup functionality. Refer to [SaaS Configuration](https://developer.sailpoint.com/docs/extensibility/configuration-management/saas-configuration#supported-objects) for more information about supported objects.
35827
35693
  * @summary Upload a configuration
35828
35694
  * @param {File} data JSON file containing the objects to be imported.
35829
35695
  * @param {string} name Name that will be assigned to the uploaded configuration file.
@@ -36180,7 +36046,7 @@ export const ConfigurationHubApiFp = function(configuration?: Configuration) {
36180
36046
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
36181
36047
  },
36182
36048
  /**
36183
- * This API uploads a JSON configuration file into a tenant. Configuration files can be managed and deployed via Configuration Hub by uploading a json file which contains configuration data. The JSON file should be the same as the one used by our import endpoints. The object types supported by upload configuration file functionality are the same as the ones supported by our regular backup functionality. Refer to [SaaS Configuration](https://developer.sailpoint.com/idn/docs/saas-configuration/#supported-objects) for more information about supported objects.
36049
+ * This API uploads a JSON configuration file into a tenant. Configuration files can be managed and deployed via Configuration Hub by uploading a json file which contains configuration data. The JSON file should be the same as the one used by our import endpoints. The object types supported by upload configuration file functionality are the same as the ones supported by our regular backup functionality. Refer to [SaaS Configuration](https://developer.sailpoint.com/docs/extensibility/configuration-management/saas-configuration#supported-objects) for more information about supported objects.
36184
36050
  * @summary Upload a configuration
36185
36051
  * @param {File} data JSON file containing the objects to be imported.
36186
36052
  * @param {string} name Name that will be assigned to the uploaded configuration file.
@@ -36304,7 +36170,7 @@ export const ConfigurationHubApiFactory = function (configuration?: Configuratio
36304
36170
  return localVarFp.createObjectMappings(requestParameters.sourceOrg, requestParameters.objectMappingBulkCreateRequest, axiosOptions).then((request) => request(axios, basePath));
36305
36171
  },
36306
36172
  /**
36307
- * This API uploads a JSON configuration file into a tenant. Configuration files can be managed and deployed via Configuration Hub by uploading a json file which contains configuration data. The JSON file should be the same as the one used by our import endpoints. The object types supported by upload configuration file functionality are the same as the ones supported by our regular backup functionality. Refer to [SaaS Configuration](https://developer.sailpoint.com/idn/docs/saas-configuration/#supported-objects) for more information about supported objects.
36173
+ * This API uploads a JSON configuration file into a tenant. Configuration files can be managed and deployed via Configuration Hub by uploading a json file which contains configuration data. The JSON file should be the same as the one used by our import endpoints. The object types supported by upload configuration file functionality are the same as the ones supported by our regular backup functionality. Refer to [SaaS Configuration](https://developer.sailpoint.com/docs/extensibility/configuration-management/saas-configuration#supported-objects) for more information about supported objects.
36308
36174
  * @summary Upload a configuration
36309
36175
  * @param {ConfigurationHubApiCreateUploadedConfigurationRequest} requestParameters Request parameters.
36310
36176
  * @param {*} [axiosOptions] Override http request option.
@@ -36569,7 +36435,7 @@ export class ConfigurationHubApi extends BaseAPI {
36569
36435
  }
36570
36436
 
36571
36437
  /**
36572
- * This API uploads a JSON configuration file into a tenant. Configuration files can be managed and deployed via Configuration Hub by uploading a json file which contains configuration data. The JSON file should be the same as the one used by our import endpoints. The object types supported by upload configuration file functionality are the same as the ones supported by our regular backup functionality. Refer to [SaaS Configuration](https://developer.sailpoint.com/idn/docs/saas-configuration/#supported-objects) for more information about supported objects.
36438
+ * This API uploads a JSON configuration file into a tenant. Configuration files can be managed and deployed via Configuration Hub by uploading a json file which contains configuration data. The JSON file should be the same as the one used by our import endpoints. The object types supported by upload configuration file functionality are the same as the ones supported by our regular backup functionality. Refer to [SaaS Configuration](https://developer.sailpoint.com/docs/extensibility/configuration-management/saas-configuration#supported-objects) for more information about supported objects.
36573
36439
  * @summary Upload a configuration
36574
36440
  * @param {ConfigurationHubApiCreateUploadedConfigurationRequest} requestParameters Request parameters.
36575
36441
  * @param {*} [axiosOptions] Override http request option.
@@ -57682,7 +57548,7 @@ export class SourceUsagesApi extends BaseAPI {
57682
57548
  export const SourcesApiAxiosParamCreator = function (configuration?: Configuration) {
57683
57549
  return {
57684
57550
  /**
57685
- * This API generates a create policy/template based on field value transforms. This API is intended for use when setting up JDBC Provisioning type sources, but it will also work on other source types. Transforms can be used in the provisioning policy to create a new attribute that you only need during provisioning. Refer to [Transforms in Provisioning Policies](https://developer.sailpoint.com/idn/docs/transforms/guides/transforms-in-provisioning-policies) for more information.
57551
+ * This API generates a create policy/template based on field value transforms. This API is intended for use when setting up JDBC Provisioning type sources, but it will also work on other source types. Transforms can be used in the provisioning policy to create a new attribute that you only need during provisioning. Refer to [Transforms in Provisioning Policies](https://developer.sailpoint.com/docs/extensibility/transforms/guides/transforms-in-provisioning-policies) for more information.
57686
57552
  * @summary Create provisioning policy
57687
57553
  * @param {string} sourceId The Source id
57688
57554
  * @param {ProvisioningPolicyDto} provisioningPolicyDto
@@ -58609,7 +58475,7 @@ export const SourcesApiAxiosParamCreator = function (configuration?: Configurati
58609
58475
  };
58610
58476
  },
58611
58477
  /**
58612
- * This end-point updates the provisioning policy with the specified usage on the specified source in IdentityNow. Transforms can be used in the provisioning policy to create a new attribute that you only need during provisioning. Refer to [Transforms in Provisioning Policies](https://developer.sailpoint.com/idn/docs/transforms/guides/transforms-in-provisioning-policies) for more information.
58478
+ * This end-point updates the provisioning policy with the specified usage on the specified source in IdentityNow. Transforms can be used in the provisioning policy to create a new attribute that you only need during provisioning. Refer to [Transforms in Provisioning Policies](https://developer.sailpoint.com/docs/extensibility/transforms/guides/transforms-in-provisioning-policies) for more information.
58613
58479
  * @summary Update provisioning policy by usagetype
58614
58480
  * @param {string} sourceId The Source ID.
58615
58481
  * @param {UsageType} usageType The type of provisioning policy usage. In IdentityNow, a source can support various provisioning operations. For example, when a joiner is added to a source, this may trigger both CREATE and UPDATE provisioning operations. Each usage type is considered a provisioning policy. A source can have any number of these provisioning policies defined. These are the common usage types: CREATE - This usage type relates to \&#39;Create Account Profile\&#39;, the provisioning template for the account to be created. For example, this would be used for a joiner on a source. UPDATE - This usage type relates to \&#39;Update Account Profile\&#39;, the provisioning template for the \&#39;Update\&#39; connector operations. For example, this would be used for an attribute sync on a source. ENABLE - This usage type relates to \&#39;Enable Account Profile\&#39;, the provisioning template for the account to be enabled. For example, this could be used for a joiner on a source once the joiner\&#39;s account is created. DISABLE - This usage type relates to \&#39;Disable Account Profile\&#39;, the provisioning template for the account to be disabled. For example, this could be used when a leaver is removed temporarily from a source. You can use these four usage types for all your provisioning policy needs.
@@ -58817,7 +58683,7 @@ export const SourcesApiAxiosParamCreator = function (configuration?: Configurati
58817
58683
  };
58818
58684
  },
58819
58685
  /**
58820
- * This API selectively updates an existing Provisioning Policy using a JSONPatch payload. Transforms can be used in the provisioning policy to create a new attribute that you only need during provisioning. Refer to [Transforms in Provisioning Policies](https://developer.sailpoint.com/idn/docs/transforms/guides/transforms-in-provisioning-policies) for more information.
58686
+ * This API selectively updates an existing Provisioning Policy using a JSONPatch payload. Transforms can be used in the provisioning policy to create a new attribute that you only need during provisioning. Refer to [Transforms in Provisioning Policies](https://developer.sailpoint.com/docs/extensibility/transforms/guides/transforms-in-provisioning-policies) for more information.
58821
58687
  * @summary Partial update of provisioning policy
58822
58688
  * @param {string} sourceId The Source id.
58823
58689
  * @param {UsageType} usageType The type of provisioning policy usage. In IdentityNow, a source can support various provisioning operations. For example, when a joiner is added to a source, this may trigger both CREATE and UPDATE provisioning operations. Each usage type is considered a provisioning policy. A source can have any number of these provisioning policies defined. These are the common usage types: CREATE - This usage type relates to \&#39;Create Account Profile\&#39;, the provisioning template for the account to be created. For example, this would be used for a joiner on a source. UPDATE - This usage type relates to \&#39;Update Account Profile\&#39;, the provisioning template for the \&#39;Update\&#39; connector operations. For example, this would be used for an attribute sync on a source. ENABLE - This usage type relates to \&#39;Enable Account Profile\&#39;, the provisioning template for the account to be enabled. For example, this could be used for a joiner on a source once the joiner\&#39;s account is created. DISABLE - This usage type relates to \&#39;Disable Account Profile\&#39;, the provisioning template for the account to be disabled. For example, this could be used when a leaver is removed temporarily from a source. You can use these four usage types for all your provisioning policy needs.
@@ -58983,7 +58849,7 @@ export const SourcesApiFp = function(configuration?: Configuration) {
58983
58849
  const localVarAxiosParamCreator = SourcesApiAxiosParamCreator(configuration)
58984
58850
  return {
58985
58851
  /**
58986
- * This API generates a create policy/template based on field value transforms. This API is intended for use when setting up JDBC Provisioning type sources, but it will also work on other source types. Transforms can be used in the provisioning policy to create a new attribute that you only need during provisioning. Refer to [Transforms in Provisioning Policies](https://developer.sailpoint.com/idn/docs/transforms/guides/transforms-in-provisioning-policies) for more information.
58852
+ * This API generates a create policy/template based on field value transforms. This API is intended for use when setting up JDBC Provisioning type sources, but it will also work on other source types. Transforms can be used in the provisioning policy to create a new attribute that you only need during provisioning. Refer to [Transforms in Provisioning Policies](https://developer.sailpoint.com/docs/extensibility/transforms/guides/transforms-in-provisioning-policies) for more information.
58987
58853
  * @summary Create provisioning policy
58988
58854
  * @param {string} sourceId The Source id
58989
58855
  * @param {ProvisioningPolicyDto} provisioningPolicyDto
@@ -59250,7 +59116,7 @@ export const SourcesApiFp = function(configuration?: Configuration) {
59250
59116
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
59251
59117
  },
59252
59118
  /**
59253
- * This end-point updates the provisioning policy with the specified usage on the specified source in IdentityNow. Transforms can be used in the provisioning policy to create a new attribute that you only need during provisioning. Refer to [Transforms in Provisioning Policies](https://developer.sailpoint.com/idn/docs/transforms/guides/transforms-in-provisioning-policies) for more information.
59119
+ * This end-point updates the provisioning policy with the specified usage on the specified source in IdentityNow. Transforms can be used in the provisioning policy to create a new attribute that you only need during provisioning. Refer to [Transforms in Provisioning Policies](https://developer.sailpoint.com/docs/extensibility/transforms/guides/transforms-in-provisioning-policies) for more information.
59254
59120
  * @summary Update provisioning policy by usagetype
59255
59121
  * @param {string} sourceId The Source ID.
59256
59122
  * @param {UsageType} usageType The type of provisioning policy usage. In IdentityNow, a source can support various provisioning operations. For example, when a joiner is added to a source, this may trigger both CREATE and UPDATE provisioning operations. Each usage type is considered a provisioning policy. A source can have any number of these provisioning policies defined. These are the common usage types: CREATE - This usage type relates to \&#39;Create Account Profile\&#39;, the provisioning template for the account to be created. For example, this would be used for a joiner on a source. UPDATE - This usage type relates to \&#39;Update Account Profile\&#39;, the provisioning template for the \&#39;Update\&#39; connector operations. For example, this would be used for an attribute sync on a source. ENABLE - This usage type relates to \&#39;Enable Account Profile\&#39;, the provisioning template for the account to be enabled. For example, this could be used for a joiner on a source once the joiner\&#39;s account is created. DISABLE - This usage type relates to \&#39;Disable Account Profile\&#39;, the provisioning template for the account to be disabled. For example, this could be used when a leaver is removed temporarily from a source. You can use these four usage types for all your provisioning policy needs.
@@ -59308,7 +59174,7 @@ export const SourcesApiFp = function(configuration?: Configuration) {
59308
59174
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
59309
59175
  },
59310
59176
  /**
59311
- * This API selectively updates an existing Provisioning Policy using a JSONPatch payload. Transforms can be used in the provisioning policy to create a new attribute that you only need during provisioning. Refer to [Transforms in Provisioning Policies](https://developer.sailpoint.com/idn/docs/transforms/guides/transforms-in-provisioning-policies) for more information.
59177
+ * This API selectively updates an existing Provisioning Policy using a JSONPatch payload. Transforms can be used in the provisioning policy to create a new attribute that you only need during provisioning. Refer to [Transforms in Provisioning Policies](https://developer.sailpoint.com/docs/extensibility/transforms/guides/transforms-in-provisioning-policies) for more information.
59312
59178
  * @summary Partial update of provisioning policy
59313
59179
  * @param {string} sourceId The Source id.
59314
59180
  * @param {UsageType} usageType The type of provisioning policy usage. In IdentityNow, a source can support various provisioning operations. For example, when a joiner is added to a source, this may trigger both CREATE and UPDATE provisioning operations. Each usage type is considered a provisioning policy. A source can have any number of these provisioning policies defined. These are the common usage types: CREATE - This usage type relates to \&#39;Create Account Profile\&#39;, the provisioning template for the account to be created. For example, this would be used for a joiner on a source. UPDATE - This usage type relates to \&#39;Update Account Profile\&#39;, the provisioning template for the \&#39;Update\&#39; connector operations. For example, this would be used for an attribute sync on a source. ENABLE - This usage type relates to \&#39;Enable Account Profile\&#39;, the provisioning template for the account to be enabled. For example, this could be used for a joiner on a source once the joiner\&#39;s account is created. DISABLE - This usage type relates to \&#39;Disable Account Profile\&#39;, the provisioning template for the account to be disabled. For example, this could be used when a leaver is removed temporarily from a source. You can use these four usage types for all your provisioning policy needs.
@@ -59362,7 +59228,7 @@ export const SourcesApiFactory = function (configuration?: Configuration, basePa
59362
59228
  const localVarFp = SourcesApiFp(configuration)
59363
59229
  return {
59364
59230
  /**
59365
- * This API generates a create policy/template based on field value transforms. This API is intended for use when setting up JDBC Provisioning type sources, but it will also work on other source types. Transforms can be used in the provisioning policy to create a new attribute that you only need during provisioning. Refer to [Transforms in Provisioning Policies](https://developer.sailpoint.com/idn/docs/transforms/guides/transforms-in-provisioning-policies) for more information.
59231
+ * This API generates a create policy/template based on field value transforms. This API is intended for use when setting up JDBC Provisioning type sources, but it will also work on other source types. Transforms can be used in the provisioning policy to create a new attribute that you only need during provisioning. Refer to [Transforms in Provisioning Policies](https://developer.sailpoint.com/docs/extensibility/transforms/guides/transforms-in-provisioning-policies) for more information.
59366
59232
  * @summary Create provisioning policy
59367
59233
  * @param {SourcesApiCreateProvisioningPolicyRequest} requestParameters Request parameters.
59368
59234
  * @param {*} [axiosOptions] Override http request option.
@@ -59552,7 +59418,7 @@ export const SourcesApiFactory = function (configuration?: Configuration, basePa
59552
59418
  return localVarFp.listSources(requestParameters.limit, requestParameters.offset, requestParameters.count, requestParameters.filters, requestParameters.sorters, requestParameters.forSubadmin, requestParameters.includeIDNSource, axiosOptions).then((request) => request(axios, basePath));
59553
59419
  },
59554
59420
  /**
59555
- * This end-point updates the provisioning policy with the specified usage on the specified source in IdentityNow. Transforms can be used in the provisioning policy to create a new attribute that you only need during provisioning. Refer to [Transforms in Provisioning Policies](https://developer.sailpoint.com/idn/docs/transforms/guides/transforms-in-provisioning-policies) for more information.
59421
+ * This end-point updates the provisioning policy with the specified usage on the specified source in IdentityNow. Transforms can be used in the provisioning policy to create a new attribute that you only need during provisioning. Refer to [Transforms in Provisioning Policies](https://developer.sailpoint.com/docs/extensibility/transforms/guides/transforms-in-provisioning-policies) for more information.
59556
59422
  * @summary Update provisioning policy by usagetype
59557
59423
  * @param {SourcesApiPutProvisioningPolicyRequest} requestParameters Request parameters.
59558
59424
  * @param {*} [axiosOptions] Override http request option.
@@ -59592,7 +59458,7 @@ export const SourcesApiFactory = function (configuration?: Configuration, basePa
59592
59458
  return localVarFp.updateProvisioningPoliciesInBulk(requestParameters.sourceId, requestParameters.provisioningPolicyDto, axiosOptions).then((request) => request(axios, basePath));
59593
59459
  },
59594
59460
  /**
59595
- * This API selectively updates an existing Provisioning Policy using a JSONPatch payload. Transforms can be used in the provisioning policy to create a new attribute that you only need during provisioning. Refer to [Transforms in Provisioning Policies](https://developer.sailpoint.com/idn/docs/transforms/guides/transforms-in-provisioning-policies) for more information.
59461
+ * This API selectively updates an existing Provisioning Policy using a JSONPatch payload. Transforms can be used in the provisioning policy to create a new attribute that you only need during provisioning. Refer to [Transforms in Provisioning Policies](https://developer.sailpoint.com/docs/extensibility/transforms/guides/transforms-in-provisioning-policies) for more information.
59596
59462
  * @summary Partial update of provisioning policy
59597
59463
  * @param {SourcesApiUpdateProvisioningPolicyRequest} requestParameters Request parameters.
59598
59464
  * @param {*} [axiosOptions] Override http request option.
@@ -60213,7 +60079,7 @@ export interface SourcesApiUpdateSourceSchemaRequest {
60213
60079
  */
60214
60080
  export class SourcesApi extends BaseAPI {
60215
60081
  /**
60216
- * This API generates a create policy/template based on field value transforms. This API is intended for use when setting up JDBC Provisioning type sources, but it will also work on other source types. Transforms can be used in the provisioning policy to create a new attribute that you only need during provisioning. Refer to [Transforms in Provisioning Policies](https://developer.sailpoint.com/idn/docs/transforms/guides/transforms-in-provisioning-policies) for more information.
60082
+ * This API generates a create policy/template based on field value transforms. This API is intended for use when setting up JDBC Provisioning type sources, but it will also work on other source types. Transforms can be used in the provisioning policy to create a new attribute that you only need during provisioning. Refer to [Transforms in Provisioning Policies](https://developer.sailpoint.com/docs/extensibility/transforms/guides/transforms-in-provisioning-policies) for more information.
60217
60083
  * @summary Create provisioning policy
60218
60084
  * @param {SourcesApiCreateProvisioningPolicyRequest} requestParameters Request parameters.
60219
60085
  * @param {*} [axiosOptions] Override http request option.
@@ -60441,7 +60307,7 @@ export class SourcesApi extends BaseAPI {
60441
60307
  }
60442
60308
 
60443
60309
  /**
60444
- * This end-point updates the provisioning policy with the specified usage on the specified source in IdentityNow. Transforms can be used in the provisioning policy to create a new attribute that you only need during provisioning. Refer to [Transforms in Provisioning Policies](https://developer.sailpoint.com/idn/docs/transforms/guides/transforms-in-provisioning-policies) for more information.
60310
+ * This end-point updates the provisioning policy with the specified usage on the specified source in IdentityNow. Transforms can be used in the provisioning policy to create a new attribute that you only need during provisioning. Refer to [Transforms in Provisioning Policies](https://developer.sailpoint.com/docs/extensibility/transforms/guides/transforms-in-provisioning-policies) for more information.
60445
60311
  * @summary Update provisioning policy by usagetype
60446
60312
  * @param {SourcesApiPutProvisioningPolicyRequest} requestParameters Request parameters.
60447
60313
  * @param {*} [axiosOptions] Override http request option.
@@ -60489,7 +60355,7 @@ export class SourcesApi extends BaseAPI {
60489
60355
  }
60490
60356
 
60491
60357
  /**
60492
- * This API selectively updates an existing Provisioning Policy using a JSONPatch payload. Transforms can be used in the provisioning policy to create a new attribute that you only need during provisioning. Refer to [Transforms in Provisioning Policies](https://developer.sailpoint.com/idn/docs/transforms/guides/transforms-in-provisioning-policies) for more information.
60358
+ * This API selectively updates an existing Provisioning Policy using a JSONPatch payload. Transforms can be used in the provisioning policy to create a new attribute that you only need during provisioning. Refer to [Transforms in Provisioning Policies](https://developer.sailpoint.com/docs/extensibility/transforms/guides/transforms-in-provisioning-policies) for more information.
60493
60359
  * @summary Partial update of provisioning policy
60494
60360
  * @param {SourcesApiUpdateProvisioningPolicyRequest} requestParameters Request parameters.
60495
60361
  * @param {*} [axiosOptions] Override http request option.
@@ -60682,7 +60548,7 @@ export const TaggedObjectsApiAxiosParamCreator = function (configuration?: Confi
60682
60548
  };
60683
60549
  },
60684
60550
  /**
60685
- * This API returns a list of all tagged objects. Any authenticated token may be used to call this API.
60551
+ * This API returns a list of all tagged objects.
60686
60552
  * @summary List tagged objects
60687
60553
  * @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.
60688
60554
  * @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.
@@ -60740,7 +60606,7 @@ export const TaggedObjectsApiAxiosParamCreator = function (configuration?: Confi
60740
60606
  };
60741
60607
  },
60742
60608
  /**
60743
- * This API returns a list of all tagged objects by type. Any authenticated token may be used to call this API.
60609
+ * This API returns a list of all tagged objects by type.
60744
60610
  * @summary List tagged objects by type
60745
60611
  * @param {ListTaggedObjectsByTypeTypeV3} type The type of tagged object to retrieve.
60746
60612
  * @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.
@@ -60854,7 +60720,7 @@ export const TaggedObjectsApiAxiosParamCreator = function (configuration?: Confi
60854
60720
  };
60855
60721
  },
60856
60722
  /**
60857
- * This adds a tag to an object. Any authenticated token may be used to call this API.
60723
+ * This adds a tag to an object.
60858
60724
  * @summary Add tag to object
60859
60725
  * @param {TaggedObject} taggedObject
60860
60726
  * @param {*} [axiosOptions] Override http request option.
@@ -60997,7 +60863,7 @@ export const TaggedObjectsApiFp = function(configuration?: Configuration) {
60997
60863
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
60998
60864
  },
60999
60865
  /**
61000
- * This API returns a list of all tagged objects. Any authenticated token may be used to call this API.
60866
+ * This API returns a list of all tagged objects.
61001
60867
  * @summary List tagged objects
61002
60868
  * @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.
61003
60869
  * @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.
@@ -61013,7 +60879,7 @@ export const TaggedObjectsApiFp = function(configuration?: Configuration) {
61013
60879
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
61014
60880
  },
61015
60881
  /**
61016
- * This API returns a list of all tagged objects by type. Any authenticated token may be used to call this API.
60882
+ * This API returns a list of all tagged objects by type.
61017
60883
  * @summary List tagged objects by type
61018
60884
  * @param {ListTaggedObjectsByTypeTypeV3} type The type of tagged object to retrieve.
61019
60885
  * @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.
@@ -61045,7 +60911,7 @@ export const TaggedObjectsApiFp = function(configuration?: Configuration) {
61045
60911
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
61046
60912
  },
61047
60913
  /**
61048
- * This adds a tag to an object. Any authenticated token may be used to call this API.
60914
+ * This adds a tag to an object.
61049
60915
  * @summary Add tag to object
61050
60916
  * @param {TaggedObject} taggedObject
61051
60917
  * @param {*} [axiosOptions] Override http request option.
@@ -61111,7 +60977,7 @@ export const TaggedObjectsApiFactory = function (configuration?: Configuration,
61111
60977
  return localVarFp.getTaggedObject(requestParameters.type, requestParameters.id, axiosOptions).then((request) => request(axios, basePath));
61112
60978
  },
61113
60979
  /**
61114
- * This API returns a list of all tagged objects. Any authenticated token may be used to call this API.
60980
+ * This API returns a list of all tagged objects.
61115
60981
  * @summary List tagged objects
61116
60982
  * @param {TaggedObjectsApiListTaggedObjectsRequest} requestParameters Request parameters.
61117
60983
  * @param {*} [axiosOptions] Override http request option.
@@ -61121,7 +60987,7 @@ export const TaggedObjectsApiFactory = function (configuration?: Configuration,
61121
60987
  return localVarFp.listTaggedObjects(requestParameters.limit, requestParameters.offset, requestParameters.count, requestParameters.filters, axiosOptions).then((request) => request(axios, basePath));
61122
60988
  },
61123
60989
  /**
61124
- * This API returns a list of all tagged objects by type. Any authenticated token may be used to call this API.
60990
+ * This API returns a list of all tagged objects by type.
61125
60991
  * @summary List tagged objects by type
61126
60992
  * @param {TaggedObjectsApiListTaggedObjectsByTypeRequest} requestParameters Request parameters.
61127
60993
  * @param {*} [axiosOptions] Override http request option.
@@ -61141,7 +61007,7 @@ export const TaggedObjectsApiFactory = function (configuration?: Configuration,
61141
61007
  return localVarFp.putTaggedObject(requestParameters.type, requestParameters.id, requestParameters.taggedObject, axiosOptions).then((request) => request(axios, basePath));
61142
61008
  },
61143
61009
  /**
61144
- * This adds a tag to an object. Any authenticated token may be used to call this API.
61010
+ * This adds a tag to an object.
61145
61011
  * @summary Add tag to object
61146
61012
  * @param {TaggedObjectsApiSetTagToObjectRequest} requestParameters Request parameters.
61147
61013
  * @param {*} [axiosOptions] Override http request option.
@@ -61396,7 +61262,7 @@ export class TaggedObjectsApi extends BaseAPI {
61396
61262
  }
61397
61263
 
61398
61264
  /**
61399
- * This API returns a list of all tagged objects. Any authenticated token may be used to call this API.
61265
+ * This API returns a list of all tagged objects.
61400
61266
  * @summary List tagged objects
61401
61267
  * @param {TaggedObjectsApiListTaggedObjectsRequest} requestParameters Request parameters.
61402
61268
  * @param {*} [axiosOptions] Override http request option.
@@ -61408,7 +61274,7 @@ export class TaggedObjectsApi extends BaseAPI {
61408
61274
  }
61409
61275
 
61410
61276
  /**
61411
- * This API returns a list of all tagged objects by type. Any authenticated token may be used to call this API.
61277
+ * This API returns a list of all tagged objects by type.
61412
61278
  * @summary List tagged objects by type
61413
61279
  * @param {TaggedObjectsApiListTaggedObjectsByTypeRequest} requestParameters Request parameters.
61414
61280
  * @param {*} [axiosOptions] Override http request option.
@@ -61432,7 +61298,7 @@ export class TaggedObjectsApi extends BaseAPI {
61432
61298
  }
61433
61299
 
61434
61300
  /**
61435
- * This adds a tag to an object. Any authenticated token may be used to call this API.
61301
+ * This adds a tag to an object.
61436
61302
  * @summary Add tag to object
61437
61303
  * @param {TaggedObjectsApiSetTagToObjectRequest} requestParameters Request parameters.
61438
61304
  * @param {*} [axiosOptions] Override http request option.
@@ -62075,301 +61941,6 @@ export class TransformsApi extends BaseAPI {
62075
61941
 
62076
61942
 
62077
61943
 
62078
- /**
62079
- * VendorConnectorMappingsApi - axios parameter creator
62080
- * @export
62081
- */
62082
- export const VendorConnectorMappingsApiAxiosParamCreator = function (configuration?: Configuration) {
62083
- return {
62084
- /**
62085
- * Create a new mapping between a SaaS vendor and an ISC connector to establish correlation paths.
62086
- * @summary Create vendor connector mapping
62087
- * @param {VendorConnectorMapping} vendorConnectorMapping
62088
- * @param {*} [axiosOptions] Override http request option.
62089
- * @throws {RequiredError}
62090
- */
62091
- createVendorConnectorMapping: async (vendorConnectorMapping: VendorConnectorMapping, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
62092
- // verify required parameter 'vendorConnectorMapping' is not null or undefined
62093
- assertParamExists('createVendorConnectorMapping', 'vendorConnectorMapping', vendorConnectorMapping)
62094
- const localVarPath = `/vendor-connector-mappings`;
62095
- // use dummy base URL string because the URL constructor only accepts absolute URLs.
62096
- const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
62097
- let baseOptions;
62098
- if (configuration) {
62099
- baseOptions = configuration.baseOptions;
62100
- }
62101
-
62102
- const localVarRequestOptions = { method: 'POST', ...baseOptions, ...axiosOptions};
62103
- const localVarHeaderParameter = {} as any;
62104
- const localVarQueryParameter = {} as any;
62105
-
62106
- // authentication userAuth required
62107
- // oauth required
62108
- await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
62109
-
62110
- // authentication userAuth required
62111
- // oauth required
62112
- await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
62113
-
62114
-
62115
-
62116
- localVarHeaderParameter['Content-Type'] = 'application/json';
62117
-
62118
- setSearchParams(localVarUrlObj, localVarQueryParameter);
62119
- let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
62120
- localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
62121
- localVarRequestOptions.data = serializeDataIfNeeded(vendorConnectorMapping, localVarRequestOptions, configuration)
62122
-
62123
- return {
62124
- url: toPathString(localVarUrlObj),
62125
- axiosOptions: localVarRequestOptions,
62126
- };
62127
- },
62128
- /**
62129
- * Soft delete a mapping between a SaaS vendor and an ISC connector, removing the established correlation.
62130
- * @summary Delete vendor connector mapping
62131
- * @param {VendorConnectorMapping} vendorConnectorMapping
62132
- * @param {*} [axiosOptions] Override http request option.
62133
- * @throws {RequiredError}
62134
- */
62135
- deleteVendorConnectorMapping: async (vendorConnectorMapping: VendorConnectorMapping, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
62136
- // verify required parameter 'vendorConnectorMapping' is not null or undefined
62137
- assertParamExists('deleteVendorConnectorMapping', 'vendorConnectorMapping', vendorConnectorMapping)
62138
- const localVarPath = `/vendor-connector-mappings`;
62139
- // use dummy base URL string because the URL constructor only accepts absolute URLs.
62140
- const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
62141
- let baseOptions;
62142
- if (configuration) {
62143
- baseOptions = configuration.baseOptions;
62144
- }
62145
-
62146
- const localVarRequestOptions = { method: 'DELETE', ...baseOptions, ...axiosOptions};
62147
- const localVarHeaderParameter = {} as any;
62148
- const localVarQueryParameter = {} as any;
62149
-
62150
- // authentication userAuth required
62151
- // oauth required
62152
- await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
62153
-
62154
- // authentication userAuth required
62155
- // oauth required
62156
- await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
62157
-
62158
-
62159
-
62160
- localVarHeaderParameter['Content-Type'] = 'application/json';
62161
-
62162
- setSearchParams(localVarUrlObj, localVarQueryParameter);
62163
- let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
62164
- localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
62165
- localVarRequestOptions.data = serializeDataIfNeeded(vendorConnectorMapping, localVarRequestOptions, configuration)
62166
-
62167
- return {
62168
- url: toPathString(localVarUrlObj),
62169
- axiosOptions: localVarRequestOptions,
62170
- };
62171
- },
62172
- /**
62173
- * Get a list of mappings between SaaS vendors and ISC connectors, detailing the connections established for correlation.
62174
- * @summary List vendor connector mappings
62175
- * @param {*} [axiosOptions] Override http request option.
62176
- * @throws {RequiredError}
62177
- */
62178
- getVendorConnectorMappings: async (axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
62179
- const localVarPath = `/vendor-connector-mappings`;
62180
- // use dummy base URL string because the URL constructor only accepts absolute URLs.
62181
- const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
62182
- let baseOptions;
62183
- if (configuration) {
62184
- baseOptions = configuration.baseOptions;
62185
- }
62186
-
62187
- const localVarRequestOptions = { method: 'GET', ...baseOptions, ...axiosOptions};
62188
- const localVarHeaderParameter = {} as any;
62189
- const localVarQueryParameter = {} as any;
62190
-
62191
- // authentication userAuth required
62192
- // oauth required
62193
- await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
62194
-
62195
- // authentication userAuth required
62196
- // oauth required
62197
- await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
62198
-
62199
-
62200
-
62201
- setSearchParams(localVarUrlObj, localVarQueryParameter);
62202
- let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
62203
- localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
62204
-
62205
- return {
62206
- url: toPathString(localVarUrlObj),
62207
- axiosOptions: localVarRequestOptions,
62208
- };
62209
- },
62210
- }
62211
- };
62212
-
62213
- /**
62214
- * VendorConnectorMappingsApi - functional programming interface
62215
- * @export
62216
- */
62217
- export const VendorConnectorMappingsApiFp = function(configuration?: Configuration) {
62218
- const localVarAxiosParamCreator = VendorConnectorMappingsApiAxiosParamCreator(configuration)
62219
- return {
62220
- /**
62221
- * Create a new mapping between a SaaS vendor and an ISC connector to establish correlation paths.
62222
- * @summary Create vendor connector mapping
62223
- * @param {VendorConnectorMapping} vendorConnectorMapping
62224
- * @param {*} [axiosOptions] Override http request option.
62225
- * @throws {RequiredError}
62226
- */
62227
- async createVendorConnectorMapping(vendorConnectorMapping: VendorConnectorMapping, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<VendorConnectorMapping>> {
62228
- const localVarAxiosArgs = await localVarAxiosParamCreator.createVendorConnectorMapping(vendorConnectorMapping, axiosOptions);
62229
- const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
62230
- const localVarOperationServerBasePath = operationServerMap['VendorConnectorMappingsApi.createVendorConnectorMapping']?.[localVarOperationServerIndex]?.url;
62231
- return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
62232
- },
62233
- /**
62234
- * Soft delete a mapping between a SaaS vendor and an ISC connector, removing the established correlation.
62235
- * @summary Delete vendor connector mapping
62236
- * @param {VendorConnectorMapping} vendorConnectorMapping
62237
- * @param {*} [axiosOptions] Override http request option.
62238
- * @throws {RequiredError}
62239
- */
62240
- async deleteVendorConnectorMapping(vendorConnectorMapping: VendorConnectorMapping, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DeleteVendorConnectorMapping200Response>> {
62241
- const localVarAxiosArgs = await localVarAxiosParamCreator.deleteVendorConnectorMapping(vendorConnectorMapping, axiosOptions);
62242
- const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
62243
- const localVarOperationServerBasePath = operationServerMap['VendorConnectorMappingsApi.deleteVendorConnectorMapping']?.[localVarOperationServerIndex]?.url;
62244
- return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
62245
- },
62246
- /**
62247
- * Get a list of mappings between SaaS vendors and ISC connectors, detailing the connections established for correlation.
62248
- * @summary List vendor connector mappings
62249
- * @param {*} [axiosOptions] Override http request option.
62250
- * @throws {RequiredError}
62251
- */
62252
- async getVendorConnectorMappings(axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<VendorConnectorMapping>>> {
62253
- const localVarAxiosArgs = await localVarAxiosParamCreator.getVendorConnectorMappings(axiosOptions);
62254
- const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
62255
- const localVarOperationServerBasePath = operationServerMap['VendorConnectorMappingsApi.getVendorConnectorMappings']?.[localVarOperationServerIndex]?.url;
62256
- return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
62257
- },
62258
- }
62259
- };
62260
-
62261
- /**
62262
- * VendorConnectorMappingsApi - factory interface
62263
- * @export
62264
- */
62265
- export const VendorConnectorMappingsApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {
62266
- const localVarFp = VendorConnectorMappingsApiFp(configuration)
62267
- return {
62268
- /**
62269
- * Create a new mapping between a SaaS vendor and an ISC connector to establish correlation paths.
62270
- * @summary Create vendor connector mapping
62271
- * @param {VendorConnectorMappingsApiCreateVendorConnectorMappingRequest} requestParameters Request parameters.
62272
- * @param {*} [axiosOptions] Override http request option.
62273
- * @throws {RequiredError}
62274
- */
62275
- createVendorConnectorMapping(requestParameters: VendorConnectorMappingsApiCreateVendorConnectorMappingRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<VendorConnectorMapping> {
62276
- return localVarFp.createVendorConnectorMapping(requestParameters.vendorConnectorMapping, axiosOptions).then((request) => request(axios, basePath));
62277
- },
62278
- /**
62279
- * Soft delete a mapping between a SaaS vendor and an ISC connector, removing the established correlation.
62280
- * @summary Delete vendor connector mapping
62281
- * @param {VendorConnectorMappingsApiDeleteVendorConnectorMappingRequest} requestParameters Request parameters.
62282
- * @param {*} [axiosOptions] Override http request option.
62283
- * @throws {RequiredError}
62284
- */
62285
- deleteVendorConnectorMapping(requestParameters: VendorConnectorMappingsApiDeleteVendorConnectorMappingRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<DeleteVendorConnectorMapping200Response> {
62286
- return localVarFp.deleteVendorConnectorMapping(requestParameters.vendorConnectorMapping, axiosOptions).then((request) => request(axios, basePath));
62287
- },
62288
- /**
62289
- * Get a list of mappings between SaaS vendors and ISC connectors, detailing the connections established for correlation.
62290
- * @summary List vendor connector mappings
62291
- * @param {*} [axiosOptions] Override http request option.
62292
- * @throws {RequiredError}
62293
- */
62294
- getVendorConnectorMappings(axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<VendorConnectorMapping>> {
62295
- return localVarFp.getVendorConnectorMappings(axiosOptions).then((request) => request(axios, basePath));
62296
- },
62297
- };
62298
- };
62299
-
62300
- /**
62301
- * Request parameters for createVendorConnectorMapping operation in VendorConnectorMappingsApi.
62302
- * @export
62303
- * @interface VendorConnectorMappingsApiCreateVendorConnectorMappingRequest
62304
- */
62305
- export interface VendorConnectorMappingsApiCreateVendorConnectorMappingRequest {
62306
- /**
62307
- *
62308
- * @type {VendorConnectorMapping}
62309
- * @memberof VendorConnectorMappingsApiCreateVendorConnectorMapping
62310
- */
62311
- readonly vendorConnectorMapping: VendorConnectorMapping
62312
- }
62313
-
62314
- /**
62315
- * Request parameters for deleteVendorConnectorMapping operation in VendorConnectorMappingsApi.
62316
- * @export
62317
- * @interface VendorConnectorMappingsApiDeleteVendorConnectorMappingRequest
62318
- */
62319
- export interface VendorConnectorMappingsApiDeleteVendorConnectorMappingRequest {
62320
- /**
62321
- *
62322
- * @type {VendorConnectorMapping}
62323
- * @memberof VendorConnectorMappingsApiDeleteVendorConnectorMapping
62324
- */
62325
- readonly vendorConnectorMapping: VendorConnectorMapping
62326
- }
62327
-
62328
- /**
62329
- * VendorConnectorMappingsApi - object-oriented interface
62330
- * @export
62331
- * @class VendorConnectorMappingsApi
62332
- * @extends {BaseAPI}
62333
- */
62334
- export class VendorConnectorMappingsApi extends BaseAPI {
62335
- /**
62336
- * Create a new mapping between a SaaS vendor and an ISC connector to establish correlation paths.
62337
- * @summary Create vendor connector mapping
62338
- * @param {VendorConnectorMappingsApiCreateVendorConnectorMappingRequest} requestParameters Request parameters.
62339
- * @param {*} [axiosOptions] Override http request option.
62340
- * @throws {RequiredError}
62341
- * @memberof VendorConnectorMappingsApi
62342
- */
62343
- public createVendorConnectorMapping(requestParameters: VendorConnectorMappingsApiCreateVendorConnectorMappingRequest, axiosOptions?: RawAxiosRequestConfig) {
62344
- return VendorConnectorMappingsApiFp(this.configuration).createVendorConnectorMapping(requestParameters.vendorConnectorMapping, axiosOptions).then((request) => request(this.axios, this.basePath));
62345
- }
62346
-
62347
- /**
62348
- * Soft delete a mapping between a SaaS vendor and an ISC connector, removing the established correlation.
62349
- * @summary Delete vendor connector mapping
62350
- * @param {VendorConnectorMappingsApiDeleteVendorConnectorMappingRequest} requestParameters Request parameters.
62351
- * @param {*} [axiosOptions] Override http request option.
62352
- * @throws {RequiredError}
62353
- * @memberof VendorConnectorMappingsApi
62354
- */
62355
- public deleteVendorConnectorMapping(requestParameters: VendorConnectorMappingsApiDeleteVendorConnectorMappingRequest, axiosOptions?: RawAxiosRequestConfig) {
62356
- return VendorConnectorMappingsApiFp(this.configuration).deleteVendorConnectorMapping(requestParameters.vendorConnectorMapping, axiosOptions).then((request) => request(this.axios, this.basePath));
62357
- }
62358
-
62359
- /**
62360
- * Get a list of mappings between SaaS vendors and ISC connectors, detailing the connections established for correlation.
62361
- * @summary List vendor connector mappings
62362
- * @param {*} [axiosOptions] Override http request option.
62363
- * @throws {RequiredError}
62364
- * @memberof VendorConnectorMappingsApi
62365
- */
62366
- public getVendorConnectorMappings(axiosOptions?: RawAxiosRequestConfig) {
62367
- return VendorConnectorMappingsApiFp(this.configuration).getVendorConnectorMappings(axiosOptions).then((request) => request(this.axios, this.basePath));
62368
- }
62369
- }
62370
-
62371
-
62372
-
62373
61944
  /**
62374
61945
  * WorkItemsApi - axios parameter creator
62375
61946
  * @export
@@ -64051,10 +63622,11 @@ export const WorkflowsApiAxiosParamCreator = function (configuration?: Configura
64051
63622
  };
64052
63623
  },
64053
63624
  /**
64054
- * Get a detailed history of a single workflow execution. Workflow executions are available for up to 90 days before being archived. If you attempt to access a workflow execution that has been archived, you will receive a 404 Not Found.
63625
+ * [Deprecated] This endpoint will be removed in October 2027. Please use `/workflow-executions/{id}/history-v2` instead. Retrieves the detailed history of a single workflow execution. Workflow executions are available for up to 90 days before being archived; accessing an archived execution will return a 404 Not Found.
64055
63626
  * @summary Get workflow execution history
64056
63627
  * @param {string} id Id of the workflow execution
64057
63628
  * @param {*} [axiosOptions] Override http request option.
63629
+ * @deprecated
64058
63630
  * @throws {RequiredError}
64059
63631
  */
64060
63632
  getWorkflowExecutionHistory: async (id: string, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
@@ -64542,7 +64114,7 @@ export const WorkflowsApiAxiosParamCreator = function (configuration?: Configura
64542
64114
  };
64543
64115
  },
64544
64116
  /**
64545
- * :::info Workflow must be disabled in order to use this endpoint. ::: Test a workflow with the provided input data. The input data should resemble the input that the trigger will send the workflow. See the [event trigger documentation](https://developer.sailpoint.com/idn/docs/event-triggers/available) for an example input for the trigger that initiates this workflow. This endpoint will return an execution ID, which can be used to lookup more information about the execution using the `Get a Workflow Execution` endpoint. **This will cause a live run of the workflow, which could result in unintended modifications to your IDN tenant.**
64117
+ * :::info Workflow must be disabled in order to use this endpoint. ::: Test a workflow with the provided input data. The input data should resemble the input that the trigger will send the workflow. See the [event trigger documentation](https://developer.sailpoint.com/docs/extensibility/event-triggers/available) for an example input for the trigger that initiates this workflow. This endpoint will return an execution ID, which can be used to lookup more information about the execution using the `Get a Workflow Execution` endpoint. **This will cause a live run of the workflow, which could result in unintended modifications to your IDN tenant.**
64546
64118
  * @summary Test workflow by id
64547
64119
  * @param {string} id Id of the workflow
64548
64120
  * @param {TestWorkflowRequest} testWorkflowRequest
@@ -64693,10 +64265,11 @@ export const WorkflowsApiFp = function(configuration?: Configuration) {
64693
64265
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
64694
64266
  },
64695
64267
  /**
64696
- * Get a detailed history of a single workflow execution. Workflow executions are available for up to 90 days before being archived. If you attempt to access a workflow execution that has been archived, you will receive a 404 Not Found.
64268
+ * [Deprecated] This endpoint will be removed in October 2027. Please use `/workflow-executions/{id}/history-v2` instead. Retrieves the detailed history of a single workflow execution. Workflow executions are available for up to 90 days before being archived; accessing an archived execution will return a 404 Not Found.
64697
64269
  * @summary Get workflow execution history
64698
64270
  * @param {string} id Id of the workflow execution
64699
64271
  * @param {*} [axiosOptions] Override http request option.
64272
+ * @deprecated
64700
64273
  * @throws {RequiredError}
64701
64274
  */
64702
64275
  async getWorkflowExecutionHistory(id: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<WorkflowExecutionEvent>>> {
@@ -64836,7 +64409,7 @@ export const WorkflowsApiFp = function(configuration?: Configuration) {
64836
64409
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
64837
64410
  },
64838
64411
  /**
64839
- * :::info Workflow must be disabled in order to use this endpoint. ::: Test a workflow with the provided input data. The input data should resemble the input that the trigger will send the workflow. See the [event trigger documentation](https://developer.sailpoint.com/idn/docs/event-triggers/available) for an example input for the trigger that initiates this workflow. This endpoint will return an execution ID, which can be used to lookup more information about the execution using the `Get a Workflow Execution` endpoint. **This will cause a live run of the workflow, which could result in unintended modifications to your IDN tenant.**
64412
+ * :::info Workflow must be disabled in order to use this endpoint. ::: Test a workflow with the provided input data. The input data should resemble the input that the trigger will send the workflow. See the [event trigger documentation](https://developer.sailpoint.com/docs/extensibility/event-triggers/available) for an example input for the trigger that initiates this workflow. This endpoint will return an execution ID, which can be used to lookup more information about the execution using the `Get a Workflow Execution` endpoint. **This will cause a live run of the workflow, which could result in unintended modifications to your IDN tenant.**
64840
64413
  * @summary Test workflow by id
64841
64414
  * @param {string} id Id of the workflow
64842
64415
  * @param {TestWorkflowRequest} testWorkflowRequest
@@ -64930,10 +64503,11 @@ export const WorkflowsApiFactory = function (configuration?: Configuration, base
64930
64503
  return localVarFp.getWorkflowExecution(requestParameters.id, axiosOptions).then((request) => request(axios, basePath));
64931
64504
  },
64932
64505
  /**
64933
- * Get a detailed history of a single workflow execution. Workflow executions are available for up to 90 days before being archived. If you attempt to access a workflow execution that has been archived, you will receive a 404 Not Found.
64506
+ * [Deprecated] This endpoint will be removed in October 2027. Please use `/workflow-executions/{id}/history-v2` instead. Retrieves the detailed history of a single workflow execution. Workflow executions are available for up to 90 days before being archived; accessing an archived execution will return a 404 Not Found.
64934
64507
  * @summary Get workflow execution history
64935
64508
  * @param {WorkflowsApiGetWorkflowExecutionHistoryRequest} requestParameters Request parameters.
64936
64509
  * @param {*} [axiosOptions] Override http request option.
64510
+ * @deprecated
64937
64511
  * @throws {RequiredError}
64938
64512
  */
64939
64513
  getWorkflowExecutionHistory(requestParameters: WorkflowsApiGetWorkflowExecutionHistoryRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<WorkflowExecutionEvent>> {
@@ -65029,7 +64603,7 @@ export const WorkflowsApiFactory = function (configuration?: Configuration, base
65029
64603
  return localVarFp.testExternalExecuteWorkflow(requestParameters.id, requestParameters.testExternalExecuteWorkflowRequest, axiosOptions).then((request) => request(axios, basePath));
65030
64604
  },
65031
64605
  /**
65032
- * :::info Workflow must be disabled in order to use this endpoint. ::: Test a workflow with the provided input data. The input data should resemble the input that the trigger will send the workflow. See the [event trigger documentation](https://developer.sailpoint.com/idn/docs/event-triggers/available) for an example input for the trigger that initiates this workflow. This endpoint will return an execution ID, which can be used to lookup more information about the execution using the `Get a Workflow Execution` endpoint. **This will cause a live run of the workflow, which could result in unintended modifications to your IDN tenant.**
64606
+ * :::info Workflow must be disabled in order to use this endpoint. ::: Test a workflow with the provided input data. The input data should resemble the input that the trigger will send the workflow. See the [event trigger documentation](https://developer.sailpoint.com/docs/extensibility/event-triggers/available) for an example input for the trigger that initiates this workflow. This endpoint will return an execution ID, which can be used to lookup more information about the execution using the `Get a Workflow Execution` endpoint. **This will cause a live run of the workflow, which could result in unintended modifications to your IDN tenant.**
65033
64607
  * @summary Test workflow by id
65034
64608
  * @param {WorkflowsApiTestWorkflowRequest} requestParameters Request parameters.
65035
64609
  * @param {*} [axiosOptions] Override http request option.
@@ -65490,10 +65064,11 @@ export class WorkflowsApi extends BaseAPI {
65490
65064
  }
65491
65065
 
65492
65066
  /**
65493
- * Get a detailed history of a single workflow execution. Workflow executions are available for up to 90 days before being archived. If you attempt to access a workflow execution that has been archived, you will receive a 404 Not Found.
65067
+ * [Deprecated] This endpoint will be removed in October 2027. Please use `/workflow-executions/{id}/history-v2` instead. Retrieves the detailed history of a single workflow execution. Workflow executions are available for up to 90 days before being archived; accessing an archived execution will return a 404 Not Found.
65494
65068
  * @summary Get workflow execution history
65495
65069
  * @param {WorkflowsApiGetWorkflowExecutionHistoryRequest} requestParameters Request parameters.
65496
65070
  * @param {*} [axiosOptions] Override http request option.
65071
+ * @deprecated
65497
65072
  * @throws {RequiredError}
65498
65073
  * @memberof WorkflowsApi
65499
65074
  */
@@ -65609,7 +65184,7 @@ export class WorkflowsApi extends BaseAPI {
65609
65184
  }
65610
65185
 
65611
65186
  /**
65612
- * :::info Workflow must be disabled in order to use this endpoint. ::: Test a workflow with the provided input data. The input data should resemble the input that the trigger will send the workflow. See the [event trigger documentation](https://developer.sailpoint.com/idn/docs/event-triggers/available) for an example input for the trigger that initiates this workflow. This endpoint will return an execution ID, which can be used to lookup more information about the execution using the `Get a Workflow Execution` endpoint. **This will cause a live run of the workflow, which could result in unintended modifications to your IDN tenant.**
65187
+ * :::info Workflow must be disabled in order to use this endpoint. ::: Test a workflow with the provided input data. The input data should resemble the input that the trigger will send the workflow. See the [event trigger documentation](https://developer.sailpoint.com/docs/extensibility/event-triggers/available) for an example input for the trigger that initiates this workflow. This endpoint will return an execution ID, which can be used to lookup more information about the execution using the `Get a Workflow Execution` endpoint. **This will cause a live run of the workflow, which could result in unintended modifications to your IDN tenant.**
65613
65188
  * @summary Test workflow by id
65614
65189
  * @param {WorkflowsApiTestWorkflowRequest} requestParameters Request parameters.
65615
65190
  * @param {*} [axiosOptions] Override http request option.