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/dist/v3/api.d.ts CHANGED
@@ -501,13 +501,13 @@ export interface AccessProfile {
501
501
  */
502
502
  export interface AccessProfileApprovalScheme {
503
503
  /**
504
- * 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
504
+ * 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.
505
505
  * @type {string}
506
506
  * @memberof AccessProfileApprovalScheme
507
507
  */
508
508
  'approverType'?: AccessProfileApprovalSchemeApproverTypeV3;
509
509
  /**
510
- * Specific approver ID. Only use this when the `approverType` is `GOVERNANCE_GROUP`.
510
+ * Id of the specific approver, used when approverType is GOVERNANCE_GROUP or WORKFLOW.
511
511
  * @type {string}
512
512
  * @memberof AccessProfileApprovalScheme
513
513
  */
@@ -519,6 +519,7 @@ export declare const AccessProfileApprovalSchemeApproverTypeV3: {
519
519
  readonly SourceOwner: "SOURCE_OWNER";
520
520
  readonly Manager: "MANAGER";
521
521
  readonly GovernanceGroup: "GOVERNANCE_GROUP";
522
+ readonly Workflow: "WORKFLOW";
522
523
  };
523
524
  export type AccessProfileApprovalSchemeApproverTypeV3 = typeof AccessProfileApprovalSchemeApproverTypeV3[keyof typeof AccessProfileApprovalSchemeApproverTypeV3];
524
525
  /**
@@ -1699,7 +1700,7 @@ export type AccountOriginV3 = typeof AccountOriginV3[keyof typeof AccountOriginV
1699
1700
  */
1700
1701
  export interface AccountAction {
1701
1702
  /**
1702
- * Describes if action will be enabled or disabled
1703
+ * Describes if action will be enable, disable or delete.
1703
1704
  * @type {string}
1704
1705
  * @memberof AccountAction
1705
1706
  */
@@ -1714,6 +1715,7 @@ export interface AccountAction {
1714
1715
  export declare const AccountActionActionV3: {
1715
1716
  readonly Enable: "ENABLE";
1716
1717
  readonly Disable: "DISABLE";
1718
+ readonly Delete: "DELETE";
1717
1719
  };
1718
1720
  export type AccountActionActionV3 = typeof AccountActionActionV3[keyof typeof AccountActionActionV3];
1719
1721
  /**
@@ -3241,13 +3243,13 @@ export type ApprovalScheme = typeof ApprovalScheme[keyof typeof ApprovalScheme];
3241
3243
  */
3242
3244
  export interface ApprovalSchemeForRole {
3243
3245
  /**
3244
- * 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
3246
+ * 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.
3245
3247
  * @type {string}
3246
3248
  * @memberof ApprovalSchemeForRole
3247
3249
  */
3248
3250
  'approverType'?: ApprovalSchemeForRoleApproverTypeV3;
3249
3251
  /**
3250
- * Id of the specific approver, used only when approverType is GOVERNANCE_GROUP
3252
+ * Id of the specific approver, used when approverType is GOVERNANCE_GROUP or WORKFLOW.
3251
3253
  * @type {string}
3252
3254
  * @memberof ApprovalSchemeForRole
3253
3255
  */
@@ -3257,6 +3259,7 @@ export declare const ApprovalSchemeForRoleApproverTypeV3: {
3257
3259
  readonly Owner: "OWNER";
3258
3260
  readonly Manager: "MANAGER";
3259
3261
  readonly GovernanceGroup: "GOVERNANCE_GROUP";
3262
+ readonly Workflow: "WORKFLOW";
3260
3263
  };
3261
3264
  export type ApprovalSchemeForRoleApproverTypeV3 = typeof ApprovalSchemeForRoleApproverTypeV3[keyof typeof ApprovalSchemeForRoleApproverTypeV3];
3262
3265
  /**
@@ -3510,6 +3513,12 @@ export interface AttributeDefinition {
3510
3513
  * @memberof AttributeDefinition
3511
3514
  */
3512
3515
  'name'?: string;
3516
+ /**
3517
+ * Attribute name in the native system.
3518
+ * @type {string}
3519
+ * @memberof AttributeDefinition
3520
+ */
3521
+ 'nativeName'?: string | null;
3513
3522
  /**
3514
3523
  *
3515
3524
  * @type {AttributeDefinitionType}
@@ -6146,6 +6155,12 @@ export interface CompletedApproval {
6146
6155
  * @memberof CompletedApproval
6147
6156
  */
6148
6157
  'requestedAccounts'?: Array<RequestedAccountRef> | null;
6158
+ /**
6159
+ * The privilege level of the requested access item, if applicable.
6160
+ * @type {string}
6161
+ * @memberof CompletedApproval
6162
+ */
6163
+ 'privilegeLevel'?: string | null;
6149
6164
  }
6150
6165
  /**
6151
6166
  * If the access request submitted event trigger is configured and this access request was intercepted by it, then this is the result of the trigger\'s decision to either approve or deny the request.
@@ -7310,19 +7325,6 @@ export declare const DeleteSource202ResponseTypeV3: {
7310
7325
  readonly TaskResult: "TASK_RESULT";
7311
7326
  };
7312
7327
  export type DeleteSource202ResponseTypeV3 = typeof DeleteSource202ResponseTypeV3[keyof typeof DeleteSource202ResponseTypeV3];
7313
- /**
7314
- *
7315
- * @export
7316
- * @interface DeleteVendorConnectorMapping200Response
7317
- */
7318
- export interface DeleteVendorConnectorMapping200Response {
7319
- /**
7320
- * The number of vendor connector mappings successfully deleted.
7321
- * @type {number}
7322
- * @memberof DeleteVendorConnectorMapping200Response
7323
- */
7324
- 'count'?: number;
7325
- }
7326
7328
  /**
7327
7329
  *
7328
7330
  * @export
@@ -9168,11 +9170,11 @@ export interface FieldDetailsDto {
9168
9170
  */
9169
9171
  'isRequired'?: boolean;
9170
9172
  /**
9171
- * The type of the attribute.
9173
+ * 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.
9172
9174
  * @type {string}
9173
9175
  * @memberof FieldDetailsDto
9174
9176
  */
9175
- 'type'?: string;
9177
+ 'type'?: FieldDetailsDtoTypeV3;
9176
9178
  /**
9177
9179
  * Flag indicating whether or not the attribute is multi-valued.
9178
9180
  * @type {boolean}
@@ -9180,6 +9182,15 @@ export interface FieldDetailsDto {
9180
9182
  */
9181
9183
  'isMultiValued'?: boolean;
9182
9184
  }
9185
+ export declare const FieldDetailsDtoTypeV3: {
9186
+ readonly String: "string";
9187
+ readonly Int: "int";
9188
+ readonly Long: "long";
9189
+ readonly Date: "date";
9190
+ readonly Boolean: "boolean";
9191
+ readonly Secret: "secret";
9192
+ };
9193
+ export type FieldDetailsDtoTypeV3 = typeof FieldDetailsDtoTypeV3[keyof typeof FieldDetailsDtoTypeV3];
9183
9194
  /**
9184
9195
  *
9185
9196
  * @export
@@ -10045,31 +10056,6 @@ export interface GetReferenceIdentityAttribute {
10045
10056
  */
10046
10057
  'requiresPeriodicRefresh'?: boolean;
10047
10058
  }
10048
- /**
10049
- *
10050
- * @export
10051
- * @interface GetVendorConnectorMappings405Response
10052
- */
10053
- export interface GetVendorConnectorMappings405Response {
10054
- /**
10055
- * A message describing the error
10056
- * @type {object}
10057
- * @memberof GetVendorConnectorMappings405Response
10058
- */
10059
- 'errorName'?: object;
10060
- /**
10061
- * Description of the error
10062
- * @type {object}
10063
- * @memberof GetVendorConnectorMappings405Response
10064
- */
10065
- 'errorMessage'?: object;
10066
- /**
10067
- * Unique tracking id for the error.
10068
- * @type {string}
10069
- * @memberof GetVendorConnectorMappings405Response
10070
- */
10071
- 'trackingId'?: string;
10072
- }
10073
10059
  /**
10074
10060
  * OAuth2 Grant Type
10075
10061
  * @export
@@ -15483,6 +15469,12 @@ export interface PendingApproval {
15483
15469
  * @memberof PendingApproval
15484
15470
  */
15485
15471
  'requestedAccounts'?: Array<RequestedAccountRef> | null;
15472
+ /**
15473
+ * The privilege level of the requested access item, if applicable.
15474
+ * @type {string}
15475
+ * @memberof PendingApproval
15476
+ */
15477
+ 'privilegeLevel'?: string | null;
15486
15478
  }
15487
15479
  /**
15488
15480
  * Enum represents action that is being processed on an approval.
@@ -17281,6 +17273,12 @@ export interface RequestedItemStatus {
17281
17273
  * @memberof RequestedItemStatus
17282
17274
  */
17283
17275
  'requestedAccounts'?: Array<RequestedAccountRef> | null;
17276
+ /**
17277
+ * The privilege level of the requested access item, if applicable.
17278
+ * @type {string}
17279
+ * @memberof RequestedItemStatus
17280
+ */
17281
+ 'privilegeLevel'?: string | null;
17284
17282
  }
17285
17283
  export declare const RequestedItemStatusTypeV3: {
17286
17284
  readonly AccessProfile: "ACCESS_PROFILE";
@@ -19743,6 +19741,7 @@ export declare const SchemaFeaturesV3: {
19743
19741
  readonly ArmChangelogExtract: "ARM_CHANGELOG_EXTRACT";
19744
19742
  readonly UsesUuid: "USES_UUID";
19745
19743
  readonly ApplicationDiscovery: "APPLICATION_DISCOVERY";
19744
+ readonly Delete: "DELETE";
19746
19745
  };
19747
19746
  export type SchemaFeaturesV3 = typeof SchemaFeaturesV3[keyof typeof SchemaFeaturesV3];
19748
19747
  /**
@@ -21822,6 +21821,7 @@ export declare const SourceFeaturesV3: {
21822
21821
  readonly ArmChangelogExtract: "ARM_CHANGELOG_EXTRACT";
21823
21822
  readonly UsesUuid: "USES_UUID";
21824
21823
  readonly ApplicationDiscovery: "APPLICATION_DISCOVERY";
21824
+ readonly Delete: "DELETE";
21825
21825
  };
21826
21826
  export type SourceFeaturesV3 = typeof SourceFeaturesV3[keyof typeof SourceFeaturesV3];
21827
21827
  export declare const SourceStatusV3: {
@@ -23526,143 +23526,6 @@ export interface Value {
23526
23526
  */
23527
23527
  'value'?: string;
23528
23528
  }
23529
- /**
23530
- *
23531
- * @export
23532
- * @interface VendorConnectorMapping
23533
- */
23534
- export interface VendorConnectorMapping {
23535
- /**
23536
- * The unique identifier for the vendor-connector mapping.
23537
- * @type {string}
23538
- * @memberof VendorConnectorMapping
23539
- */
23540
- 'id'?: string;
23541
- /**
23542
- * The name of the vendor.
23543
- * @type {string}
23544
- * @memberof VendorConnectorMapping
23545
- */
23546
- 'vendor'?: string;
23547
- /**
23548
- * The name of the connector.
23549
- * @type {string}
23550
- * @memberof VendorConnectorMapping
23551
- */
23552
- 'connector'?: string;
23553
- /**
23554
- * The creation timestamp of the mapping.
23555
- * @type {string}
23556
- * @memberof VendorConnectorMapping
23557
- */
23558
- 'createdAt'?: string;
23559
- /**
23560
- * The identifier of the user who created the mapping.
23561
- * @type {string}
23562
- * @memberof VendorConnectorMapping
23563
- */
23564
- 'createdBy'?: string;
23565
- /**
23566
- *
23567
- * @type {VendorConnectorMappingUpdatedAt}
23568
- * @memberof VendorConnectorMapping
23569
- */
23570
- 'updatedAt'?: VendorConnectorMappingUpdatedAt | null;
23571
- /**
23572
- *
23573
- * @type {VendorConnectorMappingUpdatedBy}
23574
- * @memberof VendorConnectorMapping
23575
- */
23576
- 'updatedBy'?: VendorConnectorMappingUpdatedBy | null;
23577
- /**
23578
- *
23579
- * @type {VendorConnectorMappingDeletedAt}
23580
- * @memberof VendorConnectorMapping
23581
- */
23582
- 'deletedAt'?: VendorConnectorMappingDeletedAt | null;
23583
- /**
23584
- *
23585
- * @type {VendorConnectorMappingDeletedBy}
23586
- * @memberof VendorConnectorMapping
23587
- */
23588
- 'deletedBy'?: VendorConnectorMappingDeletedBy | null;
23589
- }
23590
- /**
23591
- * An object representing the nullable timestamp of when the mapping was deleted.
23592
- * @export
23593
- * @interface VendorConnectorMappingDeletedAt
23594
- */
23595
- export interface VendorConnectorMappingDeletedAt {
23596
- /**
23597
- * The timestamp when the mapping was deleted, represented in ISO 8601 format, if applicable.
23598
- * @type {string}
23599
- * @memberof VendorConnectorMappingDeletedAt
23600
- */
23601
- 'Time'?: string;
23602
- /**
23603
- * A flag indicating if the \'Time\' field is set and valid, i.e., if the mapping has been deleted.
23604
- * @type {boolean}
23605
- * @memberof VendorConnectorMappingDeletedAt
23606
- */
23607
- 'Valid'?: boolean;
23608
- }
23609
- /**
23610
- * An object representing the nullable identifier of the user who deleted the mapping.
23611
- * @export
23612
- * @interface VendorConnectorMappingDeletedBy
23613
- */
23614
- export interface VendorConnectorMappingDeletedBy {
23615
- /**
23616
- * The identifier of the user who deleted the mapping, if applicable.
23617
- * @type {string}
23618
- * @memberof VendorConnectorMappingDeletedBy
23619
- */
23620
- 'String'?: string;
23621
- /**
23622
- * A flag indicating if the \'String\' field is set and valid, i.e., if the mapping has been deleted.
23623
- * @type {boolean}
23624
- * @memberof VendorConnectorMappingDeletedBy
23625
- */
23626
- 'Valid'?: boolean;
23627
- }
23628
- /**
23629
- * An object representing the nullable timestamp of the last update.
23630
- * @export
23631
- * @interface VendorConnectorMappingUpdatedAt
23632
- */
23633
- export interface VendorConnectorMappingUpdatedAt {
23634
- /**
23635
- * The timestamp when the mapping was last updated, represented in ISO 8601 format.
23636
- * @type {string}
23637
- * @memberof VendorConnectorMappingUpdatedAt
23638
- */
23639
- 'Time'?: string;
23640
- /**
23641
- * A flag indicating if the \'Time\' field is set and valid.
23642
- * @type {boolean}
23643
- * @memberof VendorConnectorMappingUpdatedAt
23644
- */
23645
- 'Valid'?: boolean;
23646
- }
23647
- /**
23648
- * An object representing the nullable identifier of the user who last updated the mapping.
23649
- * @export
23650
- * @interface VendorConnectorMappingUpdatedBy
23651
- */
23652
- export interface VendorConnectorMappingUpdatedBy {
23653
- /**
23654
- * The identifier of the user who last updated the mapping, if available.
23655
- * @type {string}
23656
- * @memberof VendorConnectorMappingUpdatedBy
23657
- */
23658
- 'String'?: string;
23659
- /**
23660
- * A flag indicating if the \'String\' field is set and valid.
23661
- * @type {boolean}
23662
- * @memberof VendorConnectorMappingUpdatedBy
23663
- */
23664
- 'Valid'?: boolean;
23665
- }
23666
23529
  /**
23667
23530
  *
23668
23531
  * @export
@@ -30228,7 +30091,7 @@ export declare const ConfigurationHubApiAxiosParamCreator: (configuration?: Conf
30228
30091
  */
30229
30092
  createObjectMappings: (sourceOrg: string, objectMappingBulkCreateRequest: ObjectMappingBulkCreateRequest, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
30230
30093
  /**
30231
- * 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.
30094
+ * 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.
30232
30095
  * @summary Upload a configuration
30233
30096
  * @param {File} data JSON file containing the objects to be imported.
30234
30097
  * @param {string} name Name that will be assigned to the uploaded configuration file.
@@ -30311,7 +30174,7 @@ export declare const ConfigurationHubApiFp: (configuration?: Configuration) => {
30311
30174
  */
30312
30175
  createObjectMappings(sourceOrg: string, objectMappingBulkCreateRequest: ObjectMappingBulkCreateRequest, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ObjectMappingBulkCreateResponse>>;
30313
30176
  /**
30314
- * 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.
30177
+ * 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.
30315
30178
  * @summary Upload a configuration
30316
30179
  * @param {File} data JSON file containing the objects to be imported.
30317
30180
  * @param {string} name Name that will be assigned to the uploaded configuration file.
@@ -30392,7 +30255,7 @@ export declare const ConfigurationHubApiFactory: (configuration?: Configuration,
30392
30255
  */
30393
30256
  createObjectMappings(requestParameters: ConfigurationHubApiCreateObjectMappingsRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<ObjectMappingBulkCreateResponse>;
30394
30257
  /**
30395
- * 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.
30258
+ * 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.
30396
30259
  * @summary Upload a configuration
30397
30260
  * @param {ConfigurationHubApiCreateUploadedConfigurationRequest} requestParameters Request parameters.
30398
30261
  * @param {*} [axiosOptions] Override http request option.
@@ -30621,7 +30484,7 @@ export declare class ConfigurationHubApi extends BaseAPI {
30621
30484
  */
30622
30485
  createObjectMappings(requestParameters: ConfigurationHubApiCreateObjectMappingsRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ObjectMappingBulkCreateResponse, any>>;
30623
30486
  /**
30624
- * 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.
30487
+ * 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.
30625
30488
  * @summary Upload a configuration
30626
30489
  * @param {ConfigurationHubApiCreateUploadedConfigurationRequest} requestParameters Request parameters.
30627
30490
  * @param {*} [axiosOptions] Override http request option.
@@ -41607,7 +41470,7 @@ export declare class SourceUsagesApi extends BaseAPI {
41607
41470
  */
41608
41471
  export declare const SourcesApiAxiosParamCreator: (configuration?: Configuration) => {
41609
41472
  /**
41610
- * 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.
41473
+ * 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.
41611
41474
  * @summary Create provisioning policy
41612
41475
  * @param {string} sourceId The Source id
41613
41476
  * @param {ProvisioningPolicyDto} provisioningPolicyDto
@@ -41779,7 +41642,7 @@ export declare const SourcesApiAxiosParamCreator: (configuration?: Configuration
41779
41642
  */
41780
41643
  listSources: (limit?: number, offset?: number, count?: boolean, filters?: string, sorters?: string, forSubadmin?: string, includeIDNSource?: boolean, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
41781
41644
  /**
41782
- * 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.
41645
+ * 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.
41783
41646
  * @summary Update provisioning policy by usagetype
41784
41647
  * @param {string} sourceId The Source ID.
41785
41648
  * @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.
@@ -41817,7 +41680,7 @@ export declare const SourcesApiAxiosParamCreator: (configuration?: Configuration
41817
41680
  */
41818
41681
  updateProvisioningPoliciesInBulk: (sourceId: string, provisioningPolicyDto: Array<ProvisioningPolicyDto>, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
41819
41682
  /**
41820
- * 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.
41683
+ * 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.
41821
41684
  * @summary Partial update of provisioning policy
41822
41685
  * @param {string} sourceId The Source id.
41823
41686
  * @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.
@@ -41852,7 +41715,7 @@ export declare const SourcesApiAxiosParamCreator: (configuration?: Configuration
41852
41715
  */
41853
41716
  export declare const SourcesApiFp: (configuration?: Configuration) => {
41854
41717
  /**
41855
- * 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.
41718
+ * 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.
41856
41719
  * @summary Create provisioning policy
41857
41720
  * @param {string} sourceId The Source id
41858
41721
  * @param {ProvisioningPolicyDto} provisioningPolicyDto
@@ -42024,7 +41887,7 @@ export declare const SourcesApiFp: (configuration?: Configuration) => {
42024
41887
  */
42025
41888
  listSources(limit?: number, offset?: number, count?: boolean, filters?: string, sorters?: string, forSubadmin?: string, includeIDNSource?: boolean, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<Source>>>;
42026
41889
  /**
42027
- * 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.
41890
+ * 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.
42028
41891
  * @summary Update provisioning policy by usagetype
42029
41892
  * @param {string} sourceId The Source ID.
42030
41893
  * @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.
@@ -42062,7 +41925,7 @@ export declare const SourcesApiFp: (configuration?: Configuration) => {
42062
41925
  */
42063
41926
  updateProvisioningPoliciesInBulk(sourceId: string, provisioningPolicyDto: Array<ProvisioningPolicyDto>, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<ProvisioningPolicyDto>>>;
42064
41927
  /**
42065
- * 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.
41928
+ * 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.
42066
41929
  * @summary Partial update of provisioning policy
42067
41930
  * @param {string} sourceId The Source id.
42068
41931
  * @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.
@@ -42097,7 +41960,7 @@ export declare const SourcesApiFp: (configuration?: Configuration) => {
42097
41960
  */
42098
41961
  export declare const SourcesApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
42099
41962
  /**
42100
- * 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.
41963
+ * 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.
42101
41964
  * @summary Create provisioning policy
42102
41965
  * @param {SourcesApiCreateProvisioningPolicyRequest} requestParameters Request parameters.
42103
41966
  * @param {*} [axiosOptions] Override http request option.
@@ -42249,7 +42112,7 @@ export declare const SourcesApiFactory: (configuration?: Configuration, basePath
42249
42112
  */
42250
42113
  listSources(requestParameters?: SourcesApiListSourcesRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<Source>>;
42251
42114
  /**
42252
- * 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.
42115
+ * 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.
42253
42116
  * @summary Update provisioning policy by usagetype
42254
42117
  * @param {SourcesApiPutProvisioningPolicyRequest} requestParameters Request parameters.
42255
42118
  * @param {*} [axiosOptions] Override http request option.
@@ -42281,7 +42144,7 @@ export declare const SourcesApiFactory: (configuration?: Configuration, basePath
42281
42144
  */
42282
42145
  updateProvisioningPoliciesInBulk(requestParameters: SourcesApiUpdateProvisioningPoliciesInBulkRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<ProvisioningPolicyDto>>;
42283
42146
  /**
42284
- * 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.
42147
+ * 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.
42285
42148
  * @summary Partial update of provisioning policy
42286
42149
  * @param {SourcesApiUpdateProvisioningPolicyRequest} requestParameters Request parameters.
42287
42150
  * @param {*} [axiosOptions] Override http request option.
@@ -42837,7 +42700,7 @@ export interface SourcesApiUpdateSourceSchemaRequest {
42837
42700
  */
42838
42701
  export declare class SourcesApi extends BaseAPI {
42839
42702
  /**
42840
- * 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.
42703
+ * 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.
42841
42704
  * @summary Create provisioning policy
42842
42705
  * @param {SourcesApiCreateProvisioningPolicyRequest} requestParameters Request parameters.
42843
42706
  * @param {*} [axiosOptions] Override http request option.
@@ -43008,7 +42871,7 @@ export declare class SourcesApi extends BaseAPI {
43008
42871
  */
43009
42872
  listSources(requestParameters?: SourcesApiListSourcesRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Source[], any>>;
43010
42873
  /**
43011
- * 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.
42874
+ * 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.
43012
42875
  * @summary Update provisioning policy by usagetype
43013
42876
  * @param {SourcesApiPutProvisioningPolicyRequest} requestParameters Request parameters.
43014
42877
  * @param {*} [axiosOptions] Override http request option.
@@ -43044,7 +42907,7 @@ export declare class SourcesApi extends BaseAPI {
43044
42907
  */
43045
42908
  updateProvisioningPoliciesInBulk(requestParameters: SourcesApiUpdateProvisioningPoliciesInBulkRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProvisioningPolicyDto[], any>>;
43046
42909
  /**
43047
- * 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.
42910
+ * 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.
43048
42911
  * @summary Partial update of provisioning policy
43049
42912
  * @param {SourcesApiUpdateProvisioningPolicyRequest} requestParameters Request parameters.
43050
42913
  * @param {*} [axiosOptions] Override http request option.
@@ -43111,7 +42974,7 @@ export declare const TaggedObjectsApiAxiosParamCreator: (configuration?: Configu
43111
42974
  */
43112
42975
  getTaggedObject: (type: GetTaggedObjectTypeV3, id: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
43113
42976
  /**
43114
- * This API returns a list of all tagged objects. Any authenticated token may be used to call this API.
42977
+ * This API returns a list of all tagged objects.
43115
42978
  * @summary List tagged objects
43116
42979
  * @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.
43117
42980
  * @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.
@@ -43122,7 +42985,7 @@ export declare const TaggedObjectsApiAxiosParamCreator: (configuration?: Configu
43122
42985
  */
43123
42986
  listTaggedObjects: (limit?: number, offset?: number, count?: boolean, filters?: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
43124
42987
  /**
43125
- * This API returns a list of all tagged objects by type. Any authenticated token may be used to call this API.
42988
+ * This API returns a list of all tagged objects by type.
43126
42989
  * @summary List tagged objects by type
43127
42990
  * @param {ListTaggedObjectsByTypeTypeV3} type The type of tagged object to retrieve.
43128
42991
  * @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.
@@ -43144,7 +43007,7 @@ export declare const TaggedObjectsApiAxiosParamCreator: (configuration?: Configu
43144
43007
  */
43145
43008
  putTaggedObject: (type: PutTaggedObjectTypeV3, id: string, taggedObject: TaggedObject, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
43146
43009
  /**
43147
- * This adds a tag to an object. Any authenticated token may be used to call this API.
43010
+ * This adds a tag to an object.
43148
43011
  * @summary Add tag to object
43149
43012
  * @param {TaggedObject} taggedObject
43150
43013
  * @param {*} [axiosOptions] Override http request option.
@@ -43192,7 +43055,7 @@ export declare const TaggedObjectsApiFp: (configuration?: Configuration) => {
43192
43055
  */
43193
43056
  getTaggedObject(type: GetTaggedObjectTypeV3, id: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TaggedObject>>;
43194
43057
  /**
43195
- * This API returns a list of all tagged objects. Any authenticated token may be used to call this API.
43058
+ * This API returns a list of all tagged objects.
43196
43059
  * @summary List tagged objects
43197
43060
  * @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.
43198
43061
  * @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.
@@ -43203,7 +43066,7 @@ export declare const TaggedObjectsApiFp: (configuration?: Configuration) => {
43203
43066
  */
43204
43067
  listTaggedObjects(limit?: number, offset?: number, count?: boolean, filters?: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<TaggedObject>>>;
43205
43068
  /**
43206
- * This API returns a list of all tagged objects by type. Any authenticated token may be used to call this API.
43069
+ * This API returns a list of all tagged objects by type.
43207
43070
  * @summary List tagged objects by type
43208
43071
  * @param {ListTaggedObjectsByTypeTypeV3} type The type of tagged object to retrieve.
43209
43072
  * @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.
@@ -43225,7 +43088,7 @@ export declare const TaggedObjectsApiFp: (configuration?: Configuration) => {
43225
43088
  */
43226
43089
  putTaggedObject(type: PutTaggedObjectTypeV3, id: string, taggedObject: TaggedObject, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TaggedObject>>;
43227
43090
  /**
43228
- * This adds a tag to an object. Any authenticated token may be used to call this API.
43091
+ * This adds a tag to an object.
43229
43092
  * @summary Add tag to object
43230
43093
  * @param {TaggedObject} taggedObject
43231
43094
  * @param {*} [axiosOptions] Override http request option.
@@ -43271,7 +43134,7 @@ export declare const TaggedObjectsApiFactory: (configuration?: Configuration, ba
43271
43134
  */
43272
43135
  getTaggedObject(requestParameters: TaggedObjectsApiGetTaggedObjectRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<TaggedObject>;
43273
43136
  /**
43274
- * This API returns a list of all tagged objects. Any authenticated token may be used to call this API.
43137
+ * This API returns a list of all tagged objects.
43275
43138
  * @summary List tagged objects
43276
43139
  * @param {TaggedObjectsApiListTaggedObjectsRequest} requestParameters Request parameters.
43277
43140
  * @param {*} [axiosOptions] Override http request option.
@@ -43279,7 +43142,7 @@ export declare const TaggedObjectsApiFactory: (configuration?: Configuration, ba
43279
43142
  */
43280
43143
  listTaggedObjects(requestParameters?: TaggedObjectsApiListTaggedObjectsRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<TaggedObject>>;
43281
43144
  /**
43282
- * This API returns a list of all tagged objects by type. Any authenticated token may be used to call this API.
43145
+ * This API returns a list of all tagged objects by type.
43283
43146
  * @summary List tagged objects by type
43284
43147
  * @param {TaggedObjectsApiListTaggedObjectsByTypeRequest} requestParameters Request parameters.
43285
43148
  * @param {*} [axiosOptions] Override http request option.
@@ -43295,7 +43158,7 @@ export declare const TaggedObjectsApiFactory: (configuration?: Configuration, ba
43295
43158
  */
43296
43159
  putTaggedObject(requestParameters: TaggedObjectsApiPutTaggedObjectRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<TaggedObject>;
43297
43160
  /**
43298
- * This adds a tag to an object. Any authenticated token may be used to call this API.
43161
+ * This adds a tag to an object.
43299
43162
  * @summary Add tag to object
43300
43163
  * @param {TaggedObjectsApiSetTagToObjectRequest} requestParameters Request parameters.
43301
43164
  * @param {*} [axiosOptions] Override http request option.
@@ -43516,7 +43379,7 @@ export declare class TaggedObjectsApi extends BaseAPI {
43516
43379
  */
43517
43380
  getTaggedObject(requestParameters: TaggedObjectsApiGetTaggedObjectRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TaggedObject, any>>;
43518
43381
  /**
43519
- * This API returns a list of all tagged objects. Any authenticated token may be used to call this API.
43382
+ * This API returns a list of all tagged objects.
43520
43383
  * @summary List tagged objects
43521
43384
  * @param {TaggedObjectsApiListTaggedObjectsRequest} requestParameters Request parameters.
43522
43385
  * @param {*} [axiosOptions] Override http request option.
@@ -43525,7 +43388,7 @@ export declare class TaggedObjectsApi extends BaseAPI {
43525
43388
  */
43526
43389
  listTaggedObjects(requestParameters?: TaggedObjectsApiListTaggedObjectsRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TaggedObject[], any>>;
43527
43390
  /**
43528
- * This API returns a list of all tagged objects by type. Any authenticated token may be used to call this API.
43391
+ * This API returns a list of all tagged objects by type.
43529
43392
  * @summary List tagged objects by type
43530
43393
  * @param {TaggedObjectsApiListTaggedObjectsByTypeRequest} requestParameters Request parameters.
43531
43394
  * @param {*} [axiosOptions] Override http request option.
@@ -43543,7 +43406,7 @@ export declare class TaggedObjectsApi extends BaseAPI {
43543
43406
  */
43544
43407
  putTaggedObject(requestParameters: TaggedObjectsApiPutTaggedObjectRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TaggedObject, any>>;
43545
43408
  /**
43546
- * This adds a tag to an object. Any authenticated token may be used to call this API.
43409
+ * This adds a tag to an object.
43547
43410
  * @summary Add tag to object
43548
43411
  * @param {TaggedObjectsApiSetTagToObjectRequest} requestParameters Request parameters.
43549
43412
  * @param {*} [axiosOptions] Override http request option.
@@ -43913,153 +43776,6 @@ export declare class TransformsApi extends BaseAPI {
43913
43776
  */
43914
43777
  updateTransform(requestParameters: TransformsApiUpdateTransformRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TransformRead, any>>;
43915
43778
  }
43916
- /**
43917
- * VendorConnectorMappingsApi - axios parameter creator
43918
- * @export
43919
- */
43920
- export declare const VendorConnectorMappingsApiAxiosParamCreator: (configuration?: Configuration) => {
43921
- /**
43922
- * Create a new mapping between a SaaS vendor and an ISC connector to establish correlation paths.
43923
- * @summary Create vendor connector mapping
43924
- * @param {VendorConnectorMapping} vendorConnectorMapping
43925
- * @param {*} [axiosOptions] Override http request option.
43926
- * @throws {RequiredError}
43927
- */
43928
- createVendorConnectorMapping: (vendorConnectorMapping: VendorConnectorMapping, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
43929
- /**
43930
- * Soft delete a mapping between a SaaS vendor and an ISC connector, removing the established correlation.
43931
- * @summary Delete vendor connector mapping
43932
- * @param {VendorConnectorMapping} vendorConnectorMapping
43933
- * @param {*} [axiosOptions] Override http request option.
43934
- * @throws {RequiredError}
43935
- */
43936
- deleteVendorConnectorMapping: (vendorConnectorMapping: VendorConnectorMapping, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
43937
- /**
43938
- * Get a list of mappings between SaaS vendors and ISC connectors, detailing the connections established for correlation.
43939
- * @summary List vendor connector mappings
43940
- * @param {*} [axiosOptions] Override http request option.
43941
- * @throws {RequiredError}
43942
- */
43943
- getVendorConnectorMappings: (axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
43944
- };
43945
- /**
43946
- * VendorConnectorMappingsApi - functional programming interface
43947
- * @export
43948
- */
43949
- export declare const VendorConnectorMappingsApiFp: (configuration?: Configuration) => {
43950
- /**
43951
- * Create a new mapping between a SaaS vendor and an ISC connector to establish correlation paths.
43952
- * @summary Create vendor connector mapping
43953
- * @param {VendorConnectorMapping} vendorConnectorMapping
43954
- * @param {*} [axiosOptions] Override http request option.
43955
- * @throws {RequiredError}
43956
- */
43957
- createVendorConnectorMapping(vendorConnectorMapping: VendorConnectorMapping, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<VendorConnectorMapping>>;
43958
- /**
43959
- * Soft delete a mapping between a SaaS vendor and an ISC connector, removing the established correlation.
43960
- * @summary Delete vendor connector mapping
43961
- * @param {VendorConnectorMapping} vendorConnectorMapping
43962
- * @param {*} [axiosOptions] Override http request option.
43963
- * @throws {RequiredError}
43964
- */
43965
- deleteVendorConnectorMapping(vendorConnectorMapping: VendorConnectorMapping, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DeleteVendorConnectorMapping200Response>>;
43966
- /**
43967
- * Get a list of mappings between SaaS vendors and ISC connectors, detailing the connections established for correlation.
43968
- * @summary List vendor connector mappings
43969
- * @param {*} [axiosOptions] Override http request option.
43970
- * @throws {RequiredError}
43971
- */
43972
- getVendorConnectorMappings(axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<VendorConnectorMapping>>>;
43973
- };
43974
- /**
43975
- * VendorConnectorMappingsApi - factory interface
43976
- * @export
43977
- */
43978
- export declare const VendorConnectorMappingsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
43979
- /**
43980
- * Create a new mapping between a SaaS vendor and an ISC connector to establish correlation paths.
43981
- * @summary Create vendor connector mapping
43982
- * @param {VendorConnectorMappingsApiCreateVendorConnectorMappingRequest} requestParameters Request parameters.
43983
- * @param {*} [axiosOptions] Override http request option.
43984
- * @throws {RequiredError}
43985
- */
43986
- createVendorConnectorMapping(requestParameters: VendorConnectorMappingsApiCreateVendorConnectorMappingRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<VendorConnectorMapping>;
43987
- /**
43988
- * Soft delete a mapping between a SaaS vendor and an ISC connector, removing the established correlation.
43989
- * @summary Delete vendor connector mapping
43990
- * @param {VendorConnectorMappingsApiDeleteVendorConnectorMappingRequest} requestParameters Request parameters.
43991
- * @param {*} [axiosOptions] Override http request option.
43992
- * @throws {RequiredError}
43993
- */
43994
- deleteVendorConnectorMapping(requestParameters: VendorConnectorMappingsApiDeleteVendorConnectorMappingRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<DeleteVendorConnectorMapping200Response>;
43995
- /**
43996
- * Get a list of mappings between SaaS vendors and ISC connectors, detailing the connections established for correlation.
43997
- * @summary List vendor connector mappings
43998
- * @param {*} [axiosOptions] Override http request option.
43999
- * @throws {RequiredError}
44000
- */
44001
- getVendorConnectorMappings(axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<VendorConnectorMapping>>;
44002
- };
44003
- /**
44004
- * Request parameters for createVendorConnectorMapping operation in VendorConnectorMappingsApi.
44005
- * @export
44006
- * @interface VendorConnectorMappingsApiCreateVendorConnectorMappingRequest
44007
- */
44008
- export interface VendorConnectorMappingsApiCreateVendorConnectorMappingRequest {
44009
- /**
44010
- *
44011
- * @type {VendorConnectorMapping}
44012
- * @memberof VendorConnectorMappingsApiCreateVendorConnectorMapping
44013
- */
44014
- readonly vendorConnectorMapping: VendorConnectorMapping;
44015
- }
44016
- /**
44017
- * Request parameters for deleteVendorConnectorMapping operation in VendorConnectorMappingsApi.
44018
- * @export
44019
- * @interface VendorConnectorMappingsApiDeleteVendorConnectorMappingRequest
44020
- */
44021
- export interface VendorConnectorMappingsApiDeleteVendorConnectorMappingRequest {
44022
- /**
44023
- *
44024
- * @type {VendorConnectorMapping}
44025
- * @memberof VendorConnectorMappingsApiDeleteVendorConnectorMapping
44026
- */
44027
- readonly vendorConnectorMapping: VendorConnectorMapping;
44028
- }
44029
- /**
44030
- * VendorConnectorMappingsApi - object-oriented interface
44031
- * @export
44032
- * @class VendorConnectorMappingsApi
44033
- * @extends {BaseAPI}
44034
- */
44035
- export declare class VendorConnectorMappingsApi extends BaseAPI {
44036
- /**
44037
- * Create a new mapping between a SaaS vendor and an ISC connector to establish correlation paths.
44038
- * @summary Create vendor connector mapping
44039
- * @param {VendorConnectorMappingsApiCreateVendorConnectorMappingRequest} requestParameters Request parameters.
44040
- * @param {*} [axiosOptions] Override http request option.
44041
- * @throws {RequiredError}
44042
- * @memberof VendorConnectorMappingsApi
44043
- */
44044
- createVendorConnectorMapping(requestParameters: VendorConnectorMappingsApiCreateVendorConnectorMappingRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<VendorConnectorMapping, any>>;
44045
- /**
44046
- * Soft delete a mapping between a SaaS vendor and an ISC connector, removing the established correlation.
44047
- * @summary Delete vendor connector mapping
44048
- * @param {VendorConnectorMappingsApiDeleteVendorConnectorMappingRequest} requestParameters Request parameters.
44049
- * @param {*} [axiosOptions] Override http request option.
44050
- * @throws {RequiredError}
44051
- * @memberof VendorConnectorMappingsApi
44052
- */
44053
- deleteVendorConnectorMapping(requestParameters: VendorConnectorMappingsApiDeleteVendorConnectorMappingRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DeleteVendorConnectorMapping200Response, any>>;
44054
- /**
44055
- * Get a list of mappings between SaaS vendors and ISC connectors, detailing the connections established for correlation.
44056
- * @summary List vendor connector mappings
44057
- * @param {*} [axiosOptions] Override http request option.
44058
- * @throws {RequiredError}
44059
- * @memberof VendorConnectorMappingsApi
44060
- */
44061
- getVendorConnectorMappings(axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<VendorConnectorMapping[], any>>;
44062
- }
44063
43779
  /**
44064
43780
  * WorkItemsApi - axios parameter creator
44065
43781
  * @export
@@ -44842,10 +44558,11 @@ export declare const WorkflowsApiAxiosParamCreator: (configuration?: Configurati
44842
44558
  */
44843
44559
  getWorkflowExecution: (id: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
44844
44560
  /**
44845
- * 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.
44561
+ * [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.
44846
44562
  * @summary Get workflow execution history
44847
44563
  * @param {string} id Id of the workflow execution
44848
44564
  * @param {*} [axiosOptions] Override http request option.
44565
+ * @deprecated
44849
44566
  * @throws {RequiredError}
44850
44567
  */
44851
44568
  getWorkflowExecutionHistory: (id: string, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
@@ -44935,7 +44652,7 @@ export declare const WorkflowsApiAxiosParamCreator: (configuration?: Configurati
44935
44652
  */
44936
44653
  testExternalExecuteWorkflow: (id: string, testExternalExecuteWorkflowRequest?: TestExternalExecuteWorkflowRequest, axiosOptions?: RawAxiosRequestConfig) => Promise<RequestArgs>;
44937
44654
  /**
44938
- * :::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.**
44655
+ * :::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.**
44939
44656
  * @summary Test workflow by id
44940
44657
  * @param {string} id Id of the workflow
44941
44658
  * @param {TestWorkflowRequest} testWorkflowRequest
@@ -45008,10 +44725,11 @@ export declare const WorkflowsApiFp: (configuration?: Configuration) => {
45008
44725
  */
45009
44726
  getWorkflowExecution(id: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>>;
45010
44727
  /**
45011
- * 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.
44728
+ * [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.
45012
44729
  * @summary Get workflow execution history
45013
44730
  * @param {string} id Id of the workflow execution
45014
44731
  * @param {*} [axiosOptions] Override http request option.
44732
+ * @deprecated
45015
44733
  * @throws {RequiredError}
45016
44734
  */
45017
44735
  getWorkflowExecutionHistory(id: string, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<WorkflowExecutionEvent>>>;
@@ -45101,7 +44819,7 @@ export declare const WorkflowsApiFp: (configuration?: Configuration) => {
45101
44819
  */
45102
44820
  testExternalExecuteWorkflow(id: string, testExternalExecuteWorkflowRequest?: TestExternalExecuteWorkflowRequest, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TestExternalExecuteWorkflow200Response>>;
45103
44821
  /**
45104
- * :::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.**
44822
+ * :::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.**
45105
44823
  * @summary Test workflow by id
45106
44824
  * @param {string} id Id of the workflow
45107
44825
  * @param {TestWorkflowRequest} testWorkflowRequest
@@ -45172,10 +44890,11 @@ export declare const WorkflowsApiFactory: (configuration?: Configuration, basePa
45172
44890
  */
45173
44891
  getWorkflowExecution(requestParameters: WorkflowsApiGetWorkflowExecutionRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<object>;
45174
44892
  /**
45175
- * 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.
44893
+ * [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.
45176
44894
  * @summary Get workflow execution history
45177
44895
  * @param {WorkflowsApiGetWorkflowExecutionHistoryRequest} requestParameters Request parameters.
45178
44896
  * @param {*} [axiosOptions] Override http request option.
44897
+ * @deprecated
45179
44898
  * @throws {RequiredError}
45180
44899
  */
45181
44900
  getWorkflowExecutionHistory(requestParameters: WorkflowsApiGetWorkflowExecutionHistoryRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<WorkflowExecutionEvent>>;
@@ -45251,7 +44970,7 @@ export declare const WorkflowsApiFactory: (configuration?: Configuration, basePa
45251
44970
  */
45252
44971
  testExternalExecuteWorkflow(requestParameters: WorkflowsApiTestExternalExecuteWorkflowRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<TestExternalExecuteWorkflow200Response>;
45253
44972
  /**
45254
- * :::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.**
44973
+ * :::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.**
45255
44974
  * @summary Test workflow by id
45256
44975
  * @param {WorkflowsApiTestWorkflowRequest} requestParameters Request parameters.
45257
44976
  * @param {*} [axiosOptions] Override http request option.
@@ -45653,10 +45372,11 @@ export declare class WorkflowsApi extends BaseAPI {
45653
45372
  */
45654
45373
  getWorkflowExecution(requestParameters: WorkflowsApiGetWorkflowExecutionRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any>>;
45655
45374
  /**
45656
- * 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.
45375
+ * [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.
45657
45376
  * @summary Get workflow execution history
45658
45377
  * @param {WorkflowsApiGetWorkflowExecutionHistoryRequest} requestParameters Request parameters.
45659
45378
  * @param {*} [axiosOptions] Override http request option.
45379
+ * @deprecated
45660
45380
  * @throws {RequiredError}
45661
45381
  * @memberof WorkflowsApi
45662
45382
  */
@@ -45742,7 +45462,7 @@ export declare class WorkflowsApi extends BaseAPI {
45742
45462
  */
45743
45463
  testExternalExecuteWorkflow(requestParameters: WorkflowsApiTestExternalExecuteWorkflowRequest, axiosOptions?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TestExternalExecuteWorkflow200Response, any>>;
45744
45464
  /**
45745
- * :::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.**
45465
+ * :::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.**
45746
45466
  * @summary Test workflow by id
45747
45467
  * @param {WorkflowsApiTestWorkflowRequest} requestParameters Request parameters.
45748
45468
  * @param {*} [axiosOptions] Override http request option.