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/v2024/api.ts CHANGED
@@ -1058,13 +1058,13 @@ export interface AccessModelMetadataValuesInnerV2024 {
1058
1058
  */
1059
1059
  export interface AccessProfileApprovalSchemeV2024 {
1060
1060
  /**
1061
- * 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
1061
+ * 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.
1062
1062
  * @type {string}
1063
1063
  * @memberof AccessProfileApprovalSchemeV2024
1064
1064
  */
1065
1065
  'approverType'?: AccessProfileApprovalSchemeV2024ApproverTypeV2024;
1066
1066
  /**
1067
- * Specific approver ID. Only use this when the `approverType` is `GOVERNANCE_GROUP`.
1067
+ * Id of the specific approver, used when approverType is GOVERNANCE_GROUP or WORKFLOW.
1068
1068
  * @type {string}
1069
1069
  * @memberof AccessProfileApprovalSchemeV2024
1070
1070
  */
@@ -1076,7 +1076,8 @@ export const AccessProfileApprovalSchemeV2024ApproverTypeV2024 = {
1076
1076
  Owner: 'OWNER',
1077
1077
  SourceOwner: 'SOURCE_OWNER',
1078
1078
  Manager: 'MANAGER',
1079
- GovernanceGroup: 'GOVERNANCE_GROUP'
1079
+ GovernanceGroup: 'GOVERNANCE_GROUP',
1080
+ Workflow: 'WORKFLOW'
1080
1081
  } as const;
1081
1082
 
1082
1083
  export type AccessProfileApprovalSchemeV2024ApproverTypeV2024 = typeof AccessProfileApprovalSchemeV2024ApproverTypeV2024[keyof typeof AccessProfileApprovalSchemeV2024ApproverTypeV2024];
@@ -3397,7 +3398,7 @@ export interface AccessV2024 {
3397
3398
  */
3398
3399
  export interface AccountActionV2024 {
3399
3400
  /**
3400
- * Describes if action will be enabled or disabled
3401
+ * Describes if action will be enable, disable or delete.
3401
3402
  * @type {string}
3402
3403
  * @memberof AccountActionV2024
3403
3404
  */
@@ -3412,7 +3413,8 @@ export interface AccountActionV2024 {
3412
3413
 
3413
3414
  export const AccountActionV2024ActionV2024 = {
3414
3415
  Enable: 'ENABLE',
3415
- Disable: 'DISABLE'
3416
+ Disable: 'DISABLE',
3417
+ Delete: 'DELETE'
3416
3418
  } as const;
3417
3419
 
3418
3420
  export type AccountActionV2024ActionV2024 = typeof AccountActionV2024ActionV2024[keyof typeof AccountActionV2024ActionV2024];
@@ -6315,13 +6317,13 @@ export interface ApprovalReminderAndEscalationConfigV2024 {
6315
6317
  */
6316
6318
  export interface ApprovalSchemeForRoleV2024 {
6317
6319
  /**
6318
- * 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
6320
+ * 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.
6319
6321
  * @type {string}
6320
6322
  * @memberof ApprovalSchemeForRoleV2024
6321
6323
  */
6322
6324
  'approverType'?: ApprovalSchemeForRoleV2024ApproverTypeV2024;
6323
6325
  /**
6324
- * Id of the specific approver, used only when approverType is GOVERNANCE_GROUP
6326
+ * Id of the specific approver, used when approverType is GOVERNANCE_GROUP or WORKFLOW.
6325
6327
  * @type {string}
6326
6328
  * @memberof ApprovalSchemeForRoleV2024
6327
6329
  */
@@ -6331,7 +6333,8 @@ export interface ApprovalSchemeForRoleV2024 {
6331
6333
  export const ApprovalSchemeForRoleV2024ApproverTypeV2024 = {
6332
6334
  Owner: 'OWNER',
6333
6335
  Manager: 'MANAGER',
6334
- GovernanceGroup: 'GOVERNANCE_GROUP'
6336
+ GovernanceGroup: 'GOVERNANCE_GROUP',
6337
+ Workflow: 'WORKFLOW'
6335
6338
  } as const;
6336
6339
 
6337
6340
  export type ApprovalSchemeForRoleV2024ApproverTypeV2024 = typeof ApprovalSchemeForRoleV2024ApproverTypeV2024[keyof typeof ApprovalSchemeForRoleV2024ApproverTypeV2024];
@@ -6953,6 +6956,12 @@ export interface AttributeDefinitionV2024 {
6953
6956
  * @memberof AttributeDefinitionV2024
6954
6957
  */
6955
6958
  'name'?: string;
6959
+ /**
6960
+ * Attribute name in the native system.
6961
+ * @type {string}
6962
+ * @memberof AttributeDefinitionV2024
6963
+ */
6964
+ 'nativeName'?: string | null;
6956
6965
  /**
6957
6966
  *
6958
6967
  * @type {AttributeDefinitionTypeV2024}
@@ -11258,6 +11267,12 @@ export interface CompletedApprovalV2024 {
11258
11267
  * @memberof CompletedApprovalV2024
11259
11268
  */
11260
11269
  'requestedAccounts'?: Array<RequestedAccountRefV2024> | null;
11270
+ /**
11271
+ * The privilege level of the requested access item, if applicable.
11272
+ * @type {string}
11273
+ * @memberof CompletedApprovalV2024
11274
+ */
11275
+ 'privilegeLevel'?: string | null;
11261
11276
  }
11262
11277
 
11263
11278
 
@@ -13633,19 +13648,6 @@ export const DeleteSource202ResponseV2024TypeV2024 = {
13633
13648
 
13634
13649
  export type DeleteSource202ResponseV2024TypeV2024 = typeof DeleteSource202ResponseV2024TypeV2024[keyof typeof DeleteSource202ResponseV2024TypeV2024];
13635
13650
 
13636
- /**
13637
- *
13638
- * @export
13639
- * @interface DeleteVendorConnectorMapping200ResponseV2024
13640
- */
13641
- export interface DeleteVendorConnectorMapping200ResponseV2024 {
13642
- /**
13643
- * The number of vendor connector mappings successfully deleted.
13644
- * @type {number}
13645
- * @memberof DeleteVendorConnectorMapping200ResponseV2024
13646
- */
13647
- 'count'?: number;
13648
- }
13649
13651
  /**
13650
13652
  *
13651
13653
  * @export
@@ -14676,13 +14678,13 @@ export interface EntitlementAccessRequestConfigV2024 {
14676
14678
  */
14677
14679
  export interface EntitlementApprovalSchemeV2024 {
14678
14680
  /**
14679
- * Describes the individual or group that is responsible for an approval step. Values are as follows. **ENTITLEMENT_OWNER**: Owner of the associated Entitlement **SOURCE_OWNER**: Owner of the associated Source **MANAGER**: Manager of the Identity for whom the request is being made **GOVERNANCE_GROUP**: A Governance Group, the ID of which is specified by the **approverId** field
14681
+ * Describes the individual or group that is responsible for an approval step. Values are as follows. **ENTITLEMENT_OWNER**: Owner of the associated Entitlement **SOURCE_OWNER**: Owner of the associated Source **MANAGER**: Manager of the Identity for whom the request is being made **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, Workflows are exclusive to other types of approvals and License required.
14680
14682
  * @type {string}
14681
14683
  * @memberof EntitlementApprovalSchemeV2024
14682
14684
  */
14683
14685
  'approverType'?: EntitlementApprovalSchemeV2024ApproverTypeV2024;
14684
14686
  /**
14685
- * Id of the specific approver, used only when approverType is GOVERNANCE_GROUP
14687
+ * Id of the specific approver, used only when approverType is GOVERNANCE_GROUP or WORKFLOW
14686
14688
  * @type {string}
14687
14689
  * @memberof EntitlementApprovalSchemeV2024
14688
14690
  */
@@ -14693,7 +14695,8 @@ export const EntitlementApprovalSchemeV2024ApproverTypeV2024 = {
14693
14695
  EntitlementOwner: 'ENTITLEMENT_OWNER',
14694
14696
  SourceOwner: 'SOURCE_OWNER',
14695
14697
  Manager: 'MANAGER',
14696
- GovernanceGroup: 'GOVERNANCE_GROUP'
14698
+ GovernanceGroup: 'GOVERNANCE_GROUP',
14699
+ Workflow: 'WORKFLOW'
14697
14700
  } as const;
14698
14701
 
14699
14702
  export type EntitlementApprovalSchemeV2024ApproverTypeV2024 = typeof EntitlementApprovalSchemeV2024ApproverTypeV2024[keyof typeof EntitlementApprovalSchemeV2024ApproverTypeV2024];
@@ -16670,11 +16673,11 @@ export interface FieldDetailsDtoV2024 {
16670
16673
  */
16671
16674
  'isRequired'?: boolean;
16672
16675
  /**
16673
- * The type of the attribute.
16676
+ * 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.
16674
16677
  * @type {string}
16675
16678
  * @memberof FieldDetailsDtoV2024
16676
16679
  */
16677
- 'type'?: string;
16680
+ 'type'?: FieldDetailsDtoV2024TypeV2024;
16678
16681
  /**
16679
16682
  * Flag indicating whether or not the attribute is multi-valued.
16680
16683
  * @type {boolean}
@@ -16682,6 +16685,18 @@ export interface FieldDetailsDtoV2024 {
16682
16685
  */
16683
16686
  'isMultiValued'?: boolean;
16684
16687
  }
16688
+
16689
+ export const FieldDetailsDtoV2024TypeV2024 = {
16690
+ String: 'string',
16691
+ Int: 'int',
16692
+ Long: 'long',
16693
+ Date: 'date',
16694
+ Boolean: 'boolean',
16695
+ Secret: 'secret'
16696
+ } as const;
16697
+
16698
+ export type FieldDetailsDtoV2024TypeV2024 = typeof FieldDetailsDtoV2024TypeV2024[keyof typeof FieldDetailsDtoV2024TypeV2024];
16699
+
16685
16700
  /**
16686
16701
  * An additional filter to constrain the results of the search query.
16687
16702
  * @export
@@ -18432,6 +18447,12 @@ export interface GetRoleAssignments200ResponseInnerV2024 {
18432
18447
  * @memberof GetRoleAssignments200ResponseInnerV2024
18433
18448
  */
18434
18449
  'role'?: BaseReferenceDtoV2024;
18450
+ /**
18451
+ * Date that the assignment was added
18452
+ * @type {string}
18453
+ * @memberof GetRoleAssignments200ResponseInnerV2024
18454
+ */
18455
+ 'addedDate'?: string;
18435
18456
  /**
18436
18457
  * Comments added by the user when the assignment was made
18437
18458
  * @type {string}
@@ -25375,7 +25396,8 @@ export const MultiHostIntegrationsV2024FeaturesV2024 = {
25375
25396
  ArmUtilizationExtract: 'ARM_UTILIZATION_EXTRACT',
25376
25397
  ArmChangelogExtract: 'ARM_CHANGELOG_EXTRACT',
25377
25398
  UsesUuid: 'USES_UUID',
25378
- ApplicationDiscovery: 'APPLICATION_DISCOVERY'
25399
+ ApplicationDiscovery: 'APPLICATION_DISCOVERY',
25400
+ Delete: 'DELETE'
25379
25401
  } as const;
25380
25402
 
25381
25403
  export type MultiHostIntegrationsV2024FeaturesV2024 = typeof MultiHostIntegrationsV2024FeaturesV2024[keyof typeof MultiHostIntegrationsV2024FeaturesV2024];
@@ -25627,7 +25649,8 @@ export const MultiHostSourcesV2024FeaturesV2024 = {
25627
25649
  ArmUtilizationExtract: 'ARM_UTILIZATION_EXTRACT',
25628
25650
  ArmChangelogExtract: 'ARM_CHANGELOG_EXTRACT',
25629
25651
  UsesUuid: 'USES_UUID',
25630
- ApplicationDiscovery: 'APPLICATION_DISCOVERY'
25652
+ ApplicationDiscovery: 'APPLICATION_DISCOVERY',
25653
+ Delete: 'DELETE'
25631
25654
  } as const;
25632
25655
 
25633
25656
  export type MultiHostSourcesV2024FeaturesV2024 = typeof MultiHostSourcesV2024FeaturesV2024[keyof typeof MultiHostSourcesV2024FeaturesV2024];
@@ -28817,6 +28840,12 @@ export interface PendingApprovalV2024 {
28817
28840
  * @memberof PendingApprovalV2024
28818
28841
  */
28819
28842
  'requestedAccounts'?: Array<RequestedAccountRefV2024> | null;
28843
+ /**
28844
+ * The privilege level of the requested access item, if applicable.
28845
+ * @type {string}
28846
+ * @memberof PendingApprovalV2024
28847
+ */
28848
+ 'privilegeLevel'?: string | null;
28820
28849
  }
28821
28850
 
28822
28851
 
@@ -31591,6 +31620,12 @@ export interface RequestedItemStatusV2024 {
31591
31620
  * @memberof RequestedItemStatusV2024
31592
31621
  */
31593
31622
  'requestedAccounts'?: Array<RequestedAccountRefV2024> | null;
31623
+ /**
31624
+ * The privilege level of the requested access item, if applicable.
31625
+ * @type {string}
31626
+ * @memberof RequestedItemStatusV2024
31627
+ */
31628
+ 'privilegeLevel'?: string | null;
31594
31629
  }
31595
31630
 
31596
31631
  export const RequestedItemStatusV2024TypeV2024 = {
@@ -32443,6 +32478,12 @@ export interface RoleAssignmentDtoV2024 {
32443
32478
  * @memberof RoleAssignmentDtoV2024
32444
32479
  */
32445
32480
  'removeDate'?: string | null;
32481
+ /**
32482
+ * Date that the assignment was added
32483
+ * @type {string}
32484
+ * @memberof RoleAssignmentDtoV2024
32485
+ */
32486
+ 'addedDate'?: string;
32446
32487
  }
32447
32488
  /**
32448
32489
  *
@@ -32462,6 +32503,12 @@ export interface RoleAssignmentRefV2024 {
32462
32503
  * @memberof RoleAssignmentRefV2024
32463
32504
  */
32464
32505
  'role'?: BaseReferenceDtoV2024;
32506
+ /**
32507
+ * Date that the assignment was added
32508
+ * @type {string}
32509
+ * @memberof RoleAssignmentRefV2024
32510
+ */
32511
+ 'addedDate'?: string;
32465
32512
  }
32466
32513
  /**
32467
32514
  * Type which indicates how a particular Identity obtained a particular Role
@@ -36325,7 +36372,8 @@ export const SchemaV2024FeaturesV2024 = {
36325
36372
  ArmUtilizationExtract: 'ARM_UTILIZATION_EXTRACT',
36326
36373
  ArmChangelogExtract: 'ARM_CHANGELOG_EXTRACT',
36327
36374
  UsesUuid: 'USES_UUID',
36328
- ApplicationDiscovery: 'APPLICATION_DISCOVERY'
36375
+ ApplicationDiscovery: 'APPLICATION_DISCOVERY',
36376
+ Delete: 'DELETE'
36329
36377
  } as const;
36330
36378
 
36331
36379
  export type SchemaV2024FeaturesV2024 = typeof SchemaV2024FeaturesV2024[keyof typeof SchemaV2024FeaturesV2024];
@@ -40437,7 +40485,8 @@ export const SourceV2024FeaturesV2024 = {
40437
40485
  ArmUtilizationExtract: 'ARM_UTILIZATION_EXTRACT',
40438
40486
  ArmChangelogExtract: 'ARM_CHANGELOG_EXTRACT',
40439
40487
  UsesUuid: 'USES_UUID',
40440
- ApplicationDiscovery: 'APPLICATION_DISCOVERY'
40488
+ ApplicationDiscovery: 'APPLICATION_DISCOVERY',
40489
+ Delete: 'DELETE'
40441
40490
  } as const;
40442
40491
 
40443
40492
  export type SourceV2024FeaturesV2024 = typeof SourceV2024FeaturesV2024[keyof typeof SourceV2024FeaturesV2024];
@@ -44037,143 +44086,6 @@ export interface ValueV2024 {
44037
44086
  */
44038
44087
  'value'?: string;
44039
44088
  }
44040
- /**
44041
- * An object representing the nullable timestamp of when the mapping was deleted.
44042
- * @export
44043
- * @interface VendorConnectorMappingDeletedAtV2024
44044
- */
44045
- export interface VendorConnectorMappingDeletedAtV2024 {
44046
- /**
44047
- * The timestamp when the mapping was deleted, represented in ISO 8601 format, if applicable.
44048
- * @type {string}
44049
- * @memberof VendorConnectorMappingDeletedAtV2024
44050
- */
44051
- 'Time'?: string;
44052
- /**
44053
- * A flag indicating if the \'Time\' field is set and valid, i.e., if the mapping has been deleted.
44054
- * @type {boolean}
44055
- * @memberof VendorConnectorMappingDeletedAtV2024
44056
- */
44057
- 'Valid'?: boolean;
44058
- }
44059
- /**
44060
- * An object representing the nullable identifier of the user who deleted the mapping.
44061
- * @export
44062
- * @interface VendorConnectorMappingDeletedByV2024
44063
- */
44064
- export interface VendorConnectorMappingDeletedByV2024 {
44065
- /**
44066
- * The identifier of the user who deleted the mapping, if applicable.
44067
- * @type {string}
44068
- * @memberof VendorConnectorMappingDeletedByV2024
44069
- */
44070
- 'String'?: string;
44071
- /**
44072
- * A flag indicating if the \'String\' field is set and valid, i.e., if the mapping has been deleted.
44073
- * @type {boolean}
44074
- * @memberof VendorConnectorMappingDeletedByV2024
44075
- */
44076
- 'Valid'?: boolean;
44077
- }
44078
- /**
44079
- * An object representing the nullable timestamp of the last update.
44080
- * @export
44081
- * @interface VendorConnectorMappingUpdatedAtV2024
44082
- */
44083
- export interface VendorConnectorMappingUpdatedAtV2024 {
44084
- /**
44085
- * The timestamp when the mapping was last updated, represented in ISO 8601 format.
44086
- * @type {string}
44087
- * @memberof VendorConnectorMappingUpdatedAtV2024
44088
- */
44089
- 'Time'?: string;
44090
- /**
44091
- * A flag indicating if the \'Time\' field is set and valid.
44092
- * @type {boolean}
44093
- * @memberof VendorConnectorMappingUpdatedAtV2024
44094
- */
44095
- 'Valid'?: boolean;
44096
- }
44097
- /**
44098
- * An object representing the nullable identifier of the user who last updated the mapping.
44099
- * @export
44100
- * @interface VendorConnectorMappingUpdatedByV2024
44101
- */
44102
- export interface VendorConnectorMappingUpdatedByV2024 {
44103
- /**
44104
- * The identifier of the user who last updated the mapping, if available.
44105
- * @type {string}
44106
- * @memberof VendorConnectorMappingUpdatedByV2024
44107
- */
44108
- 'String'?: string;
44109
- /**
44110
- * A flag indicating if the \'String\' field is set and valid.
44111
- * @type {boolean}
44112
- * @memberof VendorConnectorMappingUpdatedByV2024
44113
- */
44114
- 'Valid'?: boolean;
44115
- }
44116
- /**
44117
- *
44118
- * @export
44119
- * @interface VendorConnectorMappingV2024
44120
- */
44121
- export interface VendorConnectorMappingV2024 {
44122
- /**
44123
- * The unique identifier for the vendor-connector mapping.
44124
- * @type {string}
44125
- * @memberof VendorConnectorMappingV2024
44126
- */
44127
- 'id'?: string;
44128
- /**
44129
- * The name of the vendor.
44130
- * @type {string}
44131
- * @memberof VendorConnectorMappingV2024
44132
- */
44133
- 'vendor'?: string;
44134
- /**
44135
- * The name of the connector.
44136
- * @type {string}
44137
- * @memberof VendorConnectorMappingV2024
44138
- */
44139
- 'connector'?: string;
44140
- /**
44141
- * The creation timestamp of the mapping.
44142
- * @type {string}
44143
- * @memberof VendorConnectorMappingV2024
44144
- */
44145
- 'createdAt'?: string;
44146
- /**
44147
- * The identifier of the user who created the mapping.
44148
- * @type {string}
44149
- * @memberof VendorConnectorMappingV2024
44150
- */
44151
- 'createdBy'?: string;
44152
- /**
44153
- *
44154
- * @type {VendorConnectorMappingUpdatedAtV2024}
44155
- * @memberof VendorConnectorMappingV2024
44156
- */
44157
- 'updatedAt'?: VendorConnectorMappingUpdatedAtV2024 | null;
44158
- /**
44159
- *
44160
- * @type {VendorConnectorMappingUpdatedByV2024}
44161
- * @memberof VendorConnectorMappingV2024
44162
- */
44163
- 'updatedBy'?: VendorConnectorMappingUpdatedByV2024 | null;
44164
- /**
44165
- *
44166
- * @type {VendorConnectorMappingDeletedAtV2024}
44167
- * @memberof VendorConnectorMappingV2024
44168
- */
44169
- 'deletedAt'?: VendorConnectorMappingDeletedAtV2024 | null;
44170
- /**
44171
- *
44172
- * @type {VendorConnectorMappingDeletedByV2024}
44173
- * @memberof VendorConnectorMappingV2024
44174
- */
44175
- 'deletedBy'?: VendorConnectorMappingDeletedByV2024 | null;
44176
- }
44177
44089
  /**
44178
44090
  * The types of objects supported for SOD violations
44179
44091
  * @export
@@ -48344,7 +48256,7 @@ export const AccessRequestsV2024ApiAxiosParamCreator = function (configuration?:
48344
48256
  };
48345
48257
  },
48346
48258
  /**
48347
- * This endpoint closes access requests that are stuck in a pending state. It can be used throughout a request\'s lifecycle even after the approval state, unlike the [Cancel Access Request endpoint](https://developer.sailpoint.com/idn/api/v3/cancel-access-request/). To find pending access requests with the UI, navigate to Search and use this query: status: Pending AND \"Access Request\". Use the Column Chooser to select \'Tracking Number\', and use the \'Download\' button to export a CSV containing the tracking numbers. To find pending access requests with the API, use the [List Account Activities endpoint](https://developer.sailpoint.com/idn/api/v3/list-account-activities/). Input the IDs from either source. To track the status of endpoint requests, navigate to Search and use this query: name:\"Close Identity Requests\". Search will include \"Close Identity Requests Started\" audits when requests are initiated and \"Close Identity Requests Completed\" audits when requests are completed. The completion audit will list the identity request IDs that finished in error. This API triggers the [Provisioning Completed event trigger](https://developer.sailpoint.com/idn/docs/event-triggers/triggers/provisioning-completed/) for each access request that is closed.
48259
+ * This endpoint closes access requests that are stuck in a pending state. It can be used throughout a request\'s lifecycle even after the approval state, unlike the [Cancel Access Request endpoint](https://developer.sailpoint.com/idn/api/v3/cancel-access-request/). To find pending access requests with the UI, navigate to Search and use this query: status: Pending AND \"Access Request\". Use the Column Chooser to select \'Tracking Number\', and use the \'Download\' button to export a CSV containing the tracking numbers. To find pending access requests with the API, use the [List Account Activities endpoint](https://developer.sailpoint.com/idn/api/v3/list-account-activities/). Input the IDs from either source. To track the status of endpoint requests, navigate to Search and use this query: name:\"Close Identity Requests\". Search will include \"Close Identity Requests Started\" audits when requests are initiated and \"Close Identity Requests Completed\" audits when requests are completed. The completion audit will list the identity request IDs that finished in error. This API triggers the [Provisioning Completed event trigger](https://developer.sailpoint.com/docs/extensibility/event-triggers/triggers/provisioning-completed/) for each access request that is closed.
48348
48260
  * @summary Close access request
48349
48261
  * @param {CloseAccessRequestV2024} closeAccessRequestV2024
48350
48262
  * @param {*} [axiosOptions] Override http request option.
@@ -48855,7 +48767,7 @@ export const AccessRequestsV2024ApiFp = function(configuration?: Configuration)
48855
48767
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
48856
48768
  },
48857
48769
  /**
48858
- * This endpoint closes access requests that are stuck in a pending state. It can be used throughout a request\'s lifecycle even after the approval state, unlike the [Cancel Access Request endpoint](https://developer.sailpoint.com/idn/api/v3/cancel-access-request/). To find pending access requests with the UI, navigate to Search and use this query: status: Pending AND \"Access Request\". Use the Column Chooser to select \'Tracking Number\', and use the \'Download\' button to export a CSV containing the tracking numbers. To find pending access requests with the API, use the [List Account Activities endpoint](https://developer.sailpoint.com/idn/api/v3/list-account-activities/). Input the IDs from either source. To track the status of endpoint requests, navigate to Search and use this query: name:\"Close Identity Requests\". Search will include \"Close Identity Requests Started\" audits when requests are initiated and \"Close Identity Requests Completed\" audits when requests are completed. The completion audit will list the identity request IDs that finished in error. This API triggers the [Provisioning Completed event trigger](https://developer.sailpoint.com/idn/docs/event-triggers/triggers/provisioning-completed/) for each access request that is closed.
48770
+ * This endpoint closes access requests that are stuck in a pending state. It can be used throughout a request\'s lifecycle even after the approval state, unlike the [Cancel Access Request endpoint](https://developer.sailpoint.com/idn/api/v3/cancel-access-request/). To find pending access requests with the UI, navigate to Search and use this query: status: Pending AND \"Access Request\". Use the Column Chooser to select \'Tracking Number\', and use the \'Download\' button to export a CSV containing the tracking numbers. To find pending access requests with the API, use the [List Account Activities endpoint](https://developer.sailpoint.com/idn/api/v3/list-account-activities/). Input the IDs from either source. To track the status of endpoint requests, navigate to Search and use this query: name:\"Close Identity Requests\". Search will include \"Close Identity Requests Started\" audits when requests are initiated and \"Close Identity Requests Completed\" audits when requests are completed. The completion audit will list the identity request IDs that finished in error. This API triggers the [Provisioning Completed event trigger](https://developer.sailpoint.com/docs/extensibility/event-triggers/triggers/provisioning-completed/) for each access request that is closed.
48859
48771
  * @summary Close access request
48860
48772
  * @param {CloseAccessRequestV2024} closeAccessRequestV2024
48861
48773
  * @param {*} [axiosOptions] Override http request option.
@@ -49020,7 +48932,7 @@ export const AccessRequestsV2024ApiFactory = function (configuration?: Configura
49020
48932
  return localVarFp.cancelAccessRequestInBulk(requestParameters.bulkCancelAccessRequestV2024, axiosOptions).then((request) => request(axios, basePath));
49021
48933
  },
49022
48934
  /**
49023
- * This endpoint closes access requests that are stuck in a pending state. It can be used throughout a request\'s lifecycle even after the approval state, unlike the [Cancel Access Request endpoint](https://developer.sailpoint.com/idn/api/v3/cancel-access-request/). To find pending access requests with the UI, navigate to Search and use this query: status: Pending AND \"Access Request\". Use the Column Chooser to select \'Tracking Number\', and use the \'Download\' button to export a CSV containing the tracking numbers. To find pending access requests with the API, use the [List Account Activities endpoint](https://developer.sailpoint.com/idn/api/v3/list-account-activities/). Input the IDs from either source. To track the status of endpoint requests, navigate to Search and use this query: name:\"Close Identity Requests\". Search will include \"Close Identity Requests Started\" audits when requests are initiated and \"Close Identity Requests Completed\" audits when requests are completed. The completion audit will list the identity request IDs that finished in error. This API triggers the [Provisioning Completed event trigger](https://developer.sailpoint.com/idn/docs/event-triggers/triggers/provisioning-completed/) for each access request that is closed.
48935
+ * This endpoint closes access requests that are stuck in a pending state. It can be used throughout a request\'s lifecycle even after the approval state, unlike the [Cancel Access Request endpoint](https://developer.sailpoint.com/idn/api/v3/cancel-access-request/). To find pending access requests with the UI, navigate to Search and use this query: status: Pending AND \"Access Request\". Use the Column Chooser to select \'Tracking Number\', and use the \'Download\' button to export a CSV containing the tracking numbers. To find pending access requests with the API, use the [List Account Activities endpoint](https://developer.sailpoint.com/idn/api/v3/list-account-activities/). Input the IDs from either source. To track the status of endpoint requests, navigate to Search and use this query: name:\"Close Identity Requests\". Search will include \"Close Identity Requests Started\" audits when requests are initiated and \"Close Identity Requests Completed\" audits when requests are completed. The completion audit will list the identity request IDs that finished in error. This API triggers the [Provisioning Completed event trigger](https://developer.sailpoint.com/docs/extensibility/event-triggers/triggers/provisioning-completed/) for each access request that is closed.
49024
48936
  * @summary Close access request
49025
48937
  * @param {AccessRequestsV2024ApiCloseAccessRequestRequest} requestParameters Request parameters.
49026
48938
  * @param {*} [axiosOptions] Override http request option.
@@ -49439,7 +49351,7 @@ export class AccessRequestsV2024Api extends BaseAPI {
49439
49351
  }
49440
49352
 
49441
49353
  /**
49442
- * This endpoint closes access requests that are stuck in a pending state. It can be used throughout a request\'s lifecycle even after the approval state, unlike the [Cancel Access Request endpoint](https://developer.sailpoint.com/idn/api/v3/cancel-access-request/). To find pending access requests with the UI, navigate to Search and use this query: status: Pending AND \"Access Request\". Use the Column Chooser to select \'Tracking Number\', and use the \'Download\' button to export a CSV containing the tracking numbers. To find pending access requests with the API, use the [List Account Activities endpoint](https://developer.sailpoint.com/idn/api/v3/list-account-activities/). Input the IDs from either source. To track the status of endpoint requests, navigate to Search and use this query: name:\"Close Identity Requests\". Search will include \"Close Identity Requests Started\" audits when requests are initiated and \"Close Identity Requests Completed\" audits when requests are completed. The completion audit will list the identity request IDs that finished in error. This API triggers the [Provisioning Completed event trigger](https://developer.sailpoint.com/idn/docs/event-triggers/triggers/provisioning-completed/) for each access request that is closed.
49354
+ * This endpoint closes access requests that are stuck in a pending state. It can be used throughout a request\'s lifecycle even after the approval state, unlike the [Cancel Access Request endpoint](https://developer.sailpoint.com/idn/api/v3/cancel-access-request/). To find pending access requests with the UI, navigate to Search and use this query: status: Pending AND \"Access Request\". Use the Column Chooser to select \'Tracking Number\', and use the \'Download\' button to export a CSV containing the tracking numbers. To find pending access requests with the API, use the [List Account Activities endpoint](https://developer.sailpoint.com/idn/api/v3/list-account-activities/). Input the IDs from either source. To track the status of endpoint requests, navigate to Search and use this query: name:\"Close Identity Requests\". Search will include \"Close Identity Requests Started\" audits when requests are initiated and \"Close Identity Requests Completed\" audits when requests are completed. The completion audit will list the identity request IDs that finished in error. This API triggers the [Provisioning Completed event trigger](https://developer.sailpoint.com/docs/extensibility/event-triggers/triggers/provisioning-completed/) for each access request that is closed.
49443
49355
  * @summary Close access request
49444
49356
  * @param {AccessRequestsV2024ApiCloseAccessRequestRequest} requestParameters Request parameters.
49445
49357
  * @param {*} [axiosOptions] Override http request option.
@@ -60691,7 +60603,7 @@ export const ConfigurationHubV2024ApiAxiosParamCreator = function (configuration
60691
60603
  };
60692
60604
  },
60693
60605
  /**
60694
- * 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.
60606
+ * 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.
60695
60607
  * @summary Upload a configuration
60696
60608
  * @param {File} data JSON file containing the objects to be imported.
60697
60609
  * @param {string} name Name that will be assigned to the uploaded configuration file.
@@ -61452,7 +61364,7 @@ export const ConfigurationHubV2024ApiFp = function(configuration?: Configuration
61452
61364
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
61453
61365
  },
61454
61366
  /**
61455
- * 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.
61367
+ * 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.
61456
61368
  * @summary Upload a configuration
61457
61369
  * @param {File} data JSON file containing the objects to be imported.
61458
61370
  * @param {string} name Name that will be assigned to the uploaded configuration file.
@@ -61712,7 +61624,7 @@ export const ConfigurationHubV2024ApiFactory = function (configuration?: Configu
61712
61624
  return localVarFp.createScheduledAction(requestParameters.scheduledActionPayloadV2024, axiosOptions).then((request) => request(axios, basePath));
61713
61625
  },
61714
61626
  /**
61715
- * 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.
61627
+ * 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.
61716
61628
  * @summary Upload a configuration
61717
61629
  * @param {ConfigurationHubV2024ApiCreateUploadedConfigurationRequest} requestParameters Request parameters.
61718
61630
  * @param {*} [axiosOptions] Override http request option.
@@ -62222,7 +62134,7 @@ export class ConfigurationHubV2024Api extends BaseAPI {
62222
62134
  }
62223
62135
 
62224
62136
  /**
62225
- * 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.
62137
+ * 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.
62226
62138
  * @summary Upload a configuration
62227
62139
  * @param {ConfigurationHubV2024ApiCreateUploadedConfigurationRequest} requestParameters Request parameters.
62228
62140
  * @param {*} [axiosOptions] Override http request option.
@@ -70155,7 +70067,7 @@ export const EntitlementsV2024ApiAxiosParamCreator = function (configuration?: C
70155
70067
  };
70156
70068
  },
70157
70069
  /**
70158
- * This API applies an update to every entitlement of the list. The number of entitlements to update is limited to 50 items maximum. The JsonPatch update follows the [JSON Patch](https://tools.ietf.org/html/rfc6902) standard. examples of allowed operations : `**{ \"op\": \"replace\", \"path\": \"/privileged\", \"value\": boolean }**` `**{ \"op\": \"replace\", \"path\": \"/requestable\",\"value\": boolean }**` `**{ \"op\": \"replace\", \"path\": \"/privilegeOverride/overrideLevel\",\"value\": string }**` A token with ORG_ADMIN or API authority is required to call this API.
70070
+ * This API applies an update to every entitlement of the list. The number of entitlements to update is limited to 50 items maximum. The JsonPatch update follows the [JSON Patch](https://tools.ietf.org/html/rfc6902) standard. examples of allowed operations : `**{ \"op\": \"replace\", \"path\": \"/privileged\", \"value\": boolean }**` `**{ \"op\": \"replace\", \"path\": \"/requestable\",\"value\": boolean }**` A token with ORG_ADMIN or API authority is required to call this API.
70159
70071
  * @summary Bulk update an entitlement list
70160
70072
  * @param {EntitlementBulkUpdateRequestV2024} entitlementBulkUpdateRequestV2024
70161
70073
  * @param {*} [axiosOptions] Override http request option.
@@ -70378,7 +70290,7 @@ export const EntitlementsV2024ApiFp = function(configuration?: Configuration) {
70378
70290
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
70379
70291
  },
70380
70292
  /**
70381
- * This API applies an update to every entitlement of the list. The number of entitlements to update is limited to 50 items maximum. The JsonPatch update follows the [JSON Patch](https://tools.ietf.org/html/rfc6902) standard. examples of allowed operations : `**{ \"op\": \"replace\", \"path\": \"/privileged\", \"value\": boolean }**` `**{ \"op\": \"replace\", \"path\": \"/requestable\",\"value\": boolean }**` `**{ \"op\": \"replace\", \"path\": \"/privilegeOverride/overrideLevel\",\"value\": string }**` A token with ORG_ADMIN or API authority is required to call this API.
70293
+ * This API applies an update to every entitlement of the list. The number of entitlements to update is limited to 50 items maximum. The JsonPatch update follows the [JSON Patch](https://tools.ietf.org/html/rfc6902) standard. examples of allowed operations : `**{ \"op\": \"replace\", \"path\": \"/privileged\", \"value\": boolean }**` `**{ \"op\": \"replace\", \"path\": \"/requestable\",\"value\": boolean }**` A token with ORG_ADMIN or API authority is required to call this API.
70382
70294
  * @summary Bulk update an entitlement list
70383
70295
  * @param {EntitlementBulkUpdateRequestV2024} entitlementBulkUpdateRequestV2024
70384
70296
  * @param {*} [axiosOptions] Override http request option.
@@ -70512,7 +70424,7 @@ export const EntitlementsV2024ApiFactory = function (configuration?: Configurati
70512
70424
  return localVarFp.resetSourceEntitlements(requestParameters.id, axiosOptions).then((request) => request(axios, basePath));
70513
70425
  },
70514
70426
  /**
70515
- * This API applies an update to every entitlement of the list. The number of entitlements to update is limited to 50 items maximum. The JsonPatch update follows the [JSON Patch](https://tools.ietf.org/html/rfc6902) standard. examples of allowed operations : `**{ \"op\": \"replace\", \"path\": \"/privileged\", \"value\": boolean }**` `**{ \"op\": \"replace\", \"path\": \"/requestable\",\"value\": boolean }**` `**{ \"op\": \"replace\", \"path\": \"/privilegeOverride/overrideLevel\",\"value\": string }**` A token with ORG_ADMIN or API authority is required to call this API.
70427
+ * This API applies an update to every entitlement of the list. The number of entitlements to update is limited to 50 items maximum. The JsonPatch update follows the [JSON Patch](https://tools.ietf.org/html/rfc6902) standard. examples of allowed operations : `**{ \"op\": \"replace\", \"path\": \"/privileged\", \"value\": boolean }**` `**{ \"op\": \"replace\", \"path\": \"/requestable\",\"value\": boolean }**` A token with ORG_ADMIN or API authority is required to call this API.
70516
70428
  * @summary Bulk update an entitlement list
70517
70429
  * @param {EntitlementsV2024ApiUpdateEntitlementsInBulkRequest} requestParameters Request parameters.
70518
70430
  * @param {*} [axiosOptions] Override http request option.
@@ -71008,7 +70920,7 @@ export class EntitlementsV2024Api extends BaseAPI {
71008
70920
  }
71009
70921
 
71010
70922
  /**
71011
- * This API applies an update to every entitlement of the list. The number of entitlements to update is limited to 50 items maximum. The JsonPatch update follows the [JSON Patch](https://tools.ietf.org/html/rfc6902) standard. examples of allowed operations : `**{ \"op\": \"replace\", \"path\": \"/privileged\", \"value\": boolean }**` `**{ \"op\": \"replace\", \"path\": \"/requestable\",\"value\": boolean }**` `**{ \"op\": \"replace\", \"path\": \"/privilegeOverride/overrideLevel\",\"value\": string }**` A token with ORG_ADMIN or API authority is required to call this API.
70923
+ * This API applies an update to every entitlement of the list. The number of entitlements to update is limited to 50 items maximum. The JsonPatch update follows the [JSON Patch](https://tools.ietf.org/html/rfc6902) standard. examples of allowed operations : `**{ \"op\": \"replace\", \"path\": \"/privileged\", \"value\": boolean }**` `**{ \"op\": \"replace\", \"path\": \"/requestable\",\"value\": boolean }**` A token with ORG_ADMIN or API authority is required to call this API.
71012
70924
  * @summary Bulk update an entitlement list
71013
70925
  * @param {EntitlementsV2024ApiUpdateEntitlementsInBulkRequest} requestParameters Request parameters.
71014
70926
  * @param {*} [axiosOptions] Override http request option.
@@ -72228,7 +72140,7 @@ export const GovernanceGroupsV2024ApiAxiosParamCreator = function (configuration
72228
72140
  * This API returns list of Governance Groups
72229
72141
  * @summary List governance groups
72230
72142
  * @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.
72231
- * @param {number} [limit] Note that for this API the maximum value for limit is 50. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
72143
+ * @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.
72232
72144
  * @param {boolean} [count] If *true* it will populate the *X-Total-Count* response header with the number of results that would be returned if *limit* and *offset* were ignored. Since requesting a total count can have a performance impact, it is recommended not to send **count&#x3D;true** if that value will not be used. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
72233
72145
  * @param {string} [filters] Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **id**: *eq, in, sw* **name**: *eq, sw, in* **memberships.identityId**: *eq, in*
72234
72146
  * @param {string} [sorters] Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) Sorting is supported for the following fields: **name, created, modified, id, description**
@@ -72530,7 +72442,7 @@ export const GovernanceGroupsV2024ApiFp = function(configuration?: Configuration
72530
72442
  * This API returns list of Governance Groups
72531
72443
  * @summary List governance groups
72532
72444
  * @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.
72533
- * @param {number} [limit] Note that for this API the maximum value for limit is 50. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
72445
+ * @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.
72534
72446
  * @param {boolean} [count] If *true* it will populate the *X-Total-Count* response header with the number of results that would be returned if *limit* and *offset* were ignored. Since requesting a total count can have a performance impact, it is recommended not to send **count&#x3D;true** if that value will not be used. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
72535
72447
  * @param {string} [filters] Filter results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#filtering-results) Filtering is supported for the following fields and operators: **id**: *eq, in, sw* **name**: *eq, sw, in* **memberships.identityId**: *eq, in*
72536
72448
  * @param {string} [sorters] Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) Sorting is supported for the following fields: **name, created, modified, id, description**
@@ -72911,7 +72823,7 @@ export interface GovernanceGroupsV2024ApiListWorkgroupsRequest {
72911
72823
  readonly offset?: number
72912
72824
 
72913
72825
  /**
72914
- * Note that for this API the maximum value for limit is 50. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
72826
+ * Max number of results to return. See [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters) for more information.
72915
72827
  * @type {number}
72916
72828
  * @memberof GovernanceGroupsV2024ApiListWorkgroups
72917
72829
  */
@@ -108581,7 +108493,7 @@ export class SODViolationsV2024Api extends BaseAPI {
108581
108493
  export const SPConfigV2024ApiAxiosParamCreator = function (configuration?: Configuration) {
108582
108494
  return {
108583
108495
  /**
108584
- * This post will export objects from the tenant to a JSON configuration file. For more information about the object types that currently support export functionality, refer to [SaaS Configuration](https://developer.sailpoint.com/idn/docs/saas-configuration/#supported-objects).
108496
+ * This post will export objects from the tenant to a JSON configuration file. For more information about the object types that currently support export functionality, refer to [SaaS Configuration](https://developer.sailpoint.com/docs/extensibility/configuration-management/saas-configuration#supported-objects).
108585
108497
  * @summary Initiates configuration objects export job
108586
108498
  * @param {ExportPayloadV2024} exportPayloadV2024 Export options control what will be included in the export.
108587
108499
  * @param {*} [axiosOptions] Override http request option.
@@ -108751,7 +108663,7 @@ export const SPConfigV2024ApiAxiosParamCreator = function (configuration?: Confi
108751
108663
  };
108752
108664
  },
108753
108665
  /**
108754
- * \'This gets the status of the import job identified by the `id` parameter. For more information about the object types that currently support import functionality, refer to [SaaS Configuration](https://developer.sailpoint.com/idn/docs/saas-configuration/#supported-objects).\'
108666
+ * \'This gets the status of the import job identified by the `id` parameter. For more information about the object types that currently support import functionality, refer to [SaaS Configuration](https://developer.sailpoint.com/docs/extensibility/configuration-management/saas-configuration#supported-objects).\'
108755
108667
  * @summary Get import job status
108756
108668
  * @param {string} id The ID of the import job whose status will be returned.
108757
108669
  * @param {*} [axiosOptions] Override http request option.
@@ -108793,7 +108705,7 @@ export const SPConfigV2024ApiAxiosParamCreator = function (configuration?: Confi
108793
108705
  };
108794
108706
  },
108795
108707
  /**
108796
- * This post will import objects from a JSON configuration file into a tenant. By default, every import will first export all existing objects supported by sp-config as a backup before the import is attempted. The backup is provided so that the state of the configuration prior to the import is available for inspection or restore if needed. The backup can be skipped by setting \"excludeBackup\" to true in the import options. If a backup is performed, the id of the backup will be provided in the ImportResult as the \"exportJobId\". This can be downloaded using the `/sp-config/export/{exportJobId}/download` endpoint. You cannot currently import from the Non-Employee Lifecycle Management (NELM) source. You cannot use this endpoint to back up or store NELM data. For more information about the object types that currently support import functionality, refer to [SaaS Configuration](https://developer.sailpoint.com/idn/docs/saas-configuration/#supported-objects).
108708
+ * This post will import objects from a JSON configuration file into a tenant. By default, every import will first export all existing objects supported by sp-config as a backup before the import is attempted. The backup is provided so that the state of the configuration prior to the import is available for inspection or restore if needed. The backup can be skipped by setting \"excludeBackup\" to true in the import options. If a backup is performed, the id of the backup will be provided in the ImportResult as the \"exportJobId\". This can be downloaded using the `/sp-config/export/{exportJobId}/download` endpoint. You cannot currently import from the Non-Employee Lifecycle Management (NELM) source. You cannot use this endpoint to back up or store NELM data. For more information about the object types that currently support import functionality, refer to [SaaS Configuration](https://developer.sailpoint.com/docs/extensibility/configuration-management/saas-configuration#supported-objects).
108797
108709
  * @summary Initiates configuration objects import job
108798
108710
  * @param {File} data JSON file containing the objects to be imported.
108799
108711
  * @param {boolean} [preview] This option is intended to give the user information about how an import operation would proceed, without having any effect on the target tenant. If this parameter is \&quot;true\&quot;, no objects will be imported. Instead, the import process will pre-process the import file and attempt to resolve references within imported objects. The import result file will contain messages pertaining to how specific references were resolved, any errors associated with the preprocessing, and messages indicating which objects would be imported.
@@ -108900,7 +108812,7 @@ export const SPConfigV2024ApiFp = function(configuration?: Configuration) {
108900
108812
  const localVarAxiosParamCreator = SPConfigV2024ApiAxiosParamCreator(configuration)
108901
108813
  return {
108902
108814
  /**
108903
- * This post will export objects from the tenant to a JSON configuration file. For more information about the object types that currently support export functionality, refer to [SaaS Configuration](https://developer.sailpoint.com/idn/docs/saas-configuration/#supported-objects).
108815
+ * This post will export objects from the tenant to a JSON configuration file. For more information about the object types that currently support export functionality, refer to [SaaS Configuration](https://developer.sailpoint.com/docs/extensibility/configuration-management/saas-configuration#supported-objects).
108904
108816
  * @summary Initiates configuration objects export job
108905
108817
  * @param {ExportPayloadV2024} exportPayloadV2024 Export options control what will be included in the export.
108906
108818
  * @param {*} [axiosOptions] Override http request option.
@@ -108952,7 +108864,7 @@ export const SPConfigV2024ApiFp = function(configuration?: Configuration) {
108952
108864
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
108953
108865
  },
108954
108866
  /**
108955
- * \'This gets the status of the import job identified by the `id` parameter. For more information about the object types that currently support import functionality, refer to [SaaS Configuration](https://developer.sailpoint.com/idn/docs/saas-configuration/#supported-objects).\'
108867
+ * \'This gets the status of the import job identified by the `id` parameter. For more information about the object types that currently support import functionality, refer to [SaaS Configuration](https://developer.sailpoint.com/docs/extensibility/configuration-management/saas-configuration#supported-objects).\'
108956
108868
  * @summary Get import job status
108957
108869
  * @param {string} id The ID of the import job whose status will be returned.
108958
108870
  * @param {*} [axiosOptions] Override http request option.
@@ -108965,7 +108877,7 @@ export const SPConfigV2024ApiFp = function(configuration?: Configuration) {
108965
108877
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
108966
108878
  },
108967
108879
  /**
108968
- * This post will import objects from a JSON configuration file into a tenant. By default, every import will first export all existing objects supported by sp-config as a backup before the import is attempted. The backup is provided so that the state of the configuration prior to the import is available for inspection or restore if needed. The backup can be skipped by setting \"excludeBackup\" to true in the import options. If a backup is performed, the id of the backup will be provided in the ImportResult as the \"exportJobId\". This can be downloaded using the `/sp-config/export/{exportJobId}/download` endpoint. You cannot currently import from the Non-Employee Lifecycle Management (NELM) source. You cannot use this endpoint to back up or store NELM data. For more information about the object types that currently support import functionality, refer to [SaaS Configuration](https://developer.sailpoint.com/idn/docs/saas-configuration/#supported-objects).
108880
+ * This post will import objects from a JSON configuration file into a tenant. By default, every import will first export all existing objects supported by sp-config as a backup before the import is attempted. The backup is provided so that the state of the configuration prior to the import is available for inspection or restore if needed. The backup can be skipped by setting \"excludeBackup\" to true in the import options. If a backup is performed, the id of the backup will be provided in the ImportResult as the \"exportJobId\". This can be downloaded using the `/sp-config/export/{exportJobId}/download` endpoint. You cannot currently import from the Non-Employee Lifecycle Management (NELM) source. You cannot use this endpoint to back up or store NELM data. For more information about the object types that currently support import functionality, refer to [SaaS Configuration](https://developer.sailpoint.com/docs/extensibility/configuration-management/saas-configuration#supported-objects).
108969
108881
  * @summary Initiates configuration objects import job
108970
108882
  * @param {File} data JSON file containing the objects to be imported.
108971
108883
  * @param {boolean} [preview] This option is intended to give the user information about how an import operation would proceed, without having any effect on the target tenant. If this parameter is \&quot;true\&quot;, no objects will be imported. Instead, the import process will pre-process the import file and attempt to resolve references within imported objects. The import result file will contain messages pertaining to how specific references were resolved, any errors associated with the preprocessing, and messages indicating which objects would be imported.
@@ -109002,7 +108914,7 @@ export const SPConfigV2024ApiFactory = function (configuration?: Configuration,
109002
108914
  const localVarFp = SPConfigV2024ApiFp(configuration)
109003
108915
  return {
109004
108916
  /**
109005
- * This post will export objects from the tenant to a JSON configuration file. For more information about the object types that currently support export functionality, refer to [SaaS Configuration](https://developer.sailpoint.com/idn/docs/saas-configuration/#supported-objects).
108917
+ * This post will export objects from the tenant to a JSON configuration file. For more information about the object types that currently support export functionality, refer to [SaaS Configuration](https://developer.sailpoint.com/docs/extensibility/configuration-management/saas-configuration#supported-objects).
109006
108918
  * @summary Initiates configuration objects export job
109007
108919
  * @param {SPConfigV2024ApiExportSpConfigRequest} requestParameters Request parameters.
109008
108920
  * @param {*} [axiosOptions] Override http request option.
@@ -109042,7 +108954,7 @@ export const SPConfigV2024ApiFactory = function (configuration?: Configuration,
109042
108954
  return localVarFp.getSpConfigImport(requestParameters.id, axiosOptions).then((request) => request(axios, basePath));
109043
108955
  },
109044
108956
  /**
109045
- * \'This gets the status of the import job identified by the `id` parameter. For more information about the object types that currently support import functionality, refer to [SaaS Configuration](https://developer.sailpoint.com/idn/docs/saas-configuration/#supported-objects).\'
108957
+ * \'This gets the status of the import job identified by the `id` parameter. For more information about the object types that currently support import functionality, refer to [SaaS Configuration](https://developer.sailpoint.com/docs/extensibility/configuration-management/saas-configuration#supported-objects).\'
109046
108958
  * @summary Get import job status
109047
108959
  * @param {SPConfigV2024ApiGetSpConfigImportStatusRequest} requestParameters Request parameters.
109048
108960
  * @param {*} [axiosOptions] Override http request option.
@@ -109052,7 +108964,7 @@ export const SPConfigV2024ApiFactory = function (configuration?: Configuration,
109052
108964
  return localVarFp.getSpConfigImportStatus(requestParameters.id, axiosOptions).then((request) => request(axios, basePath));
109053
108965
  },
109054
108966
  /**
109055
- * This post will import objects from a JSON configuration file into a tenant. By default, every import will first export all existing objects supported by sp-config as a backup before the import is attempted. The backup is provided so that the state of the configuration prior to the import is available for inspection or restore if needed. The backup can be skipped by setting \"excludeBackup\" to true in the import options. If a backup is performed, the id of the backup will be provided in the ImportResult as the \"exportJobId\". This can be downloaded using the `/sp-config/export/{exportJobId}/download` endpoint. You cannot currently import from the Non-Employee Lifecycle Management (NELM) source. You cannot use this endpoint to back up or store NELM data. For more information about the object types that currently support import functionality, refer to [SaaS Configuration](https://developer.sailpoint.com/idn/docs/saas-configuration/#supported-objects).
108967
+ * This post will import objects from a JSON configuration file into a tenant. By default, every import will first export all existing objects supported by sp-config as a backup before the import is attempted. The backup is provided so that the state of the configuration prior to the import is available for inspection or restore if needed. The backup can be skipped by setting \"excludeBackup\" to true in the import options. If a backup is performed, the id of the backup will be provided in the ImportResult as the \"exportJobId\". This can be downloaded using the `/sp-config/export/{exportJobId}/download` endpoint. You cannot currently import from the Non-Employee Lifecycle Management (NELM) source. You cannot use this endpoint to back up or store NELM data. For more information about the object types that currently support import functionality, refer to [SaaS Configuration](https://developer.sailpoint.com/docs/extensibility/configuration-management/saas-configuration#supported-objects).
109056
108968
  * @summary Initiates configuration objects import job
109057
108969
  * @param {SPConfigV2024ApiImportSpConfigRequest} requestParameters Request parameters.
109058
108970
  * @param {*} [axiosOptions] Override http request option.
@@ -109179,7 +109091,7 @@ export interface SPConfigV2024ApiImportSpConfigRequest {
109179
109091
  */
109180
109092
  export class SPConfigV2024Api extends BaseAPI {
109181
109093
  /**
109182
- * This post will export objects from the tenant to a JSON configuration file. For more information about the object types that currently support export functionality, refer to [SaaS Configuration](https://developer.sailpoint.com/idn/docs/saas-configuration/#supported-objects).
109094
+ * This post will export objects from the tenant to a JSON configuration file. For more information about the object types that currently support export functionality, refer to [SaaS Configuration](https://developer.sailpoint.com/docs/extensibility/configuration-management/saas-configuration#supported-objects).
109183
109095
  * @summary Initiates configuration objects export job
109184
109096
  * @param {SPConfigV2024ApiExportSpConfigRequest} requestParameters Request parameters.
109185
109097
  * @param {*} [axiosOptions] Override http request option.
@@ -109227,7 +109139,7 @@ export class SPConfigV2024Api extends BaseAPI {
109227
109139
  }
109228
109140
 
109229
109141
  /**
109230
- * \'This gets the status of the import job identified by the `id` parameter. For more information about the object types that currently support import functionality, refer to [SaaS Configuration](https://developer.sailpoint.com/idn/docs/saas-configuration/#supported-objects).\'
109142
+ * \'This gets the status of the import job identified by the `id` parameter. For more information about the object types that currently support import functionality, refer to [SaaS Configuration](https://developer.sailpoint.com/docs/extensibility/configuration-management/saas-configuration#supported-objects).\'
109231
109143
  * @summary Get import job status
109232
109144
  * @param {SPConfigV2024ApiGetSpConfigImportStatusRequest} requestParameters Request parameters.
109233
109145
  * @param {*} [axiosOptions] Override http request option.
@@ -109239,7 +109151,7 @@ export class SPConfigV2024Api extends BaseAPI {
109239
109151
  }
109240
109152
 
109241
109153
  /**
109242
- * This post will import objects from a JSON configuration file into a tenant. By default, every import will first export all existing objects supported by sp-config as a backup before the import is attempted. The backup is provided so that the state of the configuration prior to the import is available for inspection or restore if needed. The backup can be skipped by setting \"excludeBackup\" to true in the import options. If a backup is performed, the id of the backup will be provided in the ImportResult as the \"exportJobId\". This can be downloaded using the `/sp-config/export/{exportJobId}/download` endpoint. You cannot currently import from the Non-Employee Lifecycle Management (NELM) source. You cannot use this endpoint to back up or store NELM data. For more information about the object types that currently support import functionality, refer to [SaaS Configuration](https://developer.sailpoint.com/idn/docs/saas-configuration/#supported-objects).
109154
+ * This post will import objects from a JSON configuration file into a tenant. By default, every import will first export all existing objects supported by sp-config as a backup before the import is attempted. The backup is provided so that the state of the configuration prior to the import is available for inspection or restore if needed. The backup can be skipped by setting \"excludeBackup\" to true in the import options. If a backup is performed, the id of the backup will be provided in the ImportResult as the \"exportJobId\". This can be downloaded using the `/sp-config/export/{exportJobId}/download` endpoint. You cannot currently import from the Non-Employee Lifecycle Management (NELM) source. You cannot use this endpoint to back up or store NELM data. For more information about the object types that currently support import functionality, refer to [SaaS Configuration](https://developer.sailpoint.com/docs/extensibility/configuration-management/saas-configuration#supported-objects).
109243
109155
  * @summary Initiates configuration objects import job
109244
109156
  * @param {SPConfigV2024ApiImportSpConfigRequest} requestParameters Request parameters.
109245
109157
  * @param {*} [axiosOptions] Override http request option.
@@ -113526,7 +113438,7 @@ export class SourceUsagesV2024Api extends BaseAPI {
113526
113438
  export const SourcesV2024ApiAxiosParamCreator = function (configuration?: Configuration) {
113527
113439
  return {
113528
113440
  /**
113529
- * 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.
113441
+ * 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.
113530
113442
  * @summary Create provisioning policy
113531
113443
  * @param {string} sourceId The Source id
113532
113444
  * @param {ProvisioningPolicyDtoV2024} provisioningPolicyDtoV2024
@@ -115246,7 +115158,7 @@ export const SourcesV2024ApiAxiosParamCreator = function (configuration?: Config
115246
115158
  };
115247
115159
  },
115248
115160
  /**
115249
- * 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.
115161
+ * 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.
115250
115162
  * @summary Update provisioning policy by usagetype
115251
115163
  * @param {string} sourceId The Source ID.
115252
115164
  * @param {UsageTypeV2024} 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.
@@ -115740,7 +115652,7 @@ export const SourcesV2024ApiAxiosParamCreator = function (configuration?: Config
115740
115652
  };
115741
115653
  },
115742
115654
  /**
115743
- * 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.
115655
+ * 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.
115744
115656
  * @summary Partial update of provisioning policy
115745
115657
  * @param {string} sourceId The Source id.
115746
115658
  * @param {UsageTypeV2024} 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.
@@ -116010,7 +115922,7 @@ export const SourcesV2024ApiFp = function(configuration?: Configuration) {
116010
115922
  const localVarAxiosParamCreator = SourcesV2024ApiAxiosParamCreator(configuration)
116011
115923
  return {
116012
115924
  /**
116013
- * 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.
115925
+ * 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.
116014
115926
  * @summary Create provisioning policy
116015
115927
  * @param {string} sourceId The Source id
116016
115928
  * @param {ProvisioningPolicyDtoV2024} provisioningPolicyDtoV2024
@@ -116509,7 +116421,7 @@ export const SourcesV2024ApiFp = function(configuration?: Configuration) {
116509
116421
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
116510
116422
  },
116511
116423
  /**
116512
- * 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.
116424
+ * 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.
116513
116425
  * @summary Update provisioning policy by usagetype
116514
116426
  * @param {string} sourceId The Source ID.
116515
116427
  * @param {UsageTypeV2024} 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.
@@ -116650,7 +116562,7 @@ export const SourcesV2024ApiFp = function(configuration?: Configuration) {
116650
116562
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
116651
116563
  },
116652
116564
  /**
116653
- * 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.
116565
+ * 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.
116654
116566
  * @summary Partial update of provisioning policy
116655
116567
  * @param {string} sourceId The Source id.
116656
116568
  * @param {UsageTypeV2024} 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.
@@ -116733,7 +116645,7 @@ export const SourcesV2024ApiFactory = function (configuration?: Configuration, b
116733
116645
  const localVarFp = SourcesV2024ApiFp(configuration)
116734
116646
  return {
116735
116647
  /**
116736
- * 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.
116648
+ * 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.
116737
116649
  * @summary Create provisioning policy
116738
116650
  * @param {SourcesV2024ApiCreateProvisioningPolicyRequest} requestParameters Request parameters.
116739
116651
  * @param {*} [axiosOptions] Override http request option.
@@ -117093,7 +117005,7 @@ export const SourcesV2024ApiFactory = function (configuration?: Configuration, b
117093
117005
  return localVarFp.putNativeChangeDetectionConfig(requestParameters.id, requestParameters.nativeChangeDetectionConfigV2024, axiosOptions).then((request) => request(axios, basePath));
117094
117006
  },
117095
117007
  /**
117096
- * 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.
117008
+ * 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.
117097
117009
  * @summary Update provisioning policy by usagetype
117098
117010
  * @param {SourcesV2024ApiPutProvisioningPolicyRequest} requestParameters Request parameters.
117099
117011
  * @param {*} [axiosOptions] Override http request option.
@@ -117193,7 +117105,7 @@ export const SourcesV2024ApiFactory = function (configuration?: Configuration, b
117193
117105
  return localVarFp.updateProvisioningPoliciesInBulk(requestParameters.sourceId, requestParameters.provisioningPolicyDtoV2024, axiosOptions).then((request) => request(axios, basePath));
117194
117106
  },
117195
117107
  /**
117196
- * 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.
117108
+ * 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.
117197
117109
  * @summary Partial update of provisioning policy
117198
117110
  * @param {SourcesV2024ApiUpdateProvisioningPolicyRequest} requestParameters Request parameters.
117199
117111
  * @param {*} [axiosOptions] Override http request option.
@@ -118317,7 +118229,7 @@ export interface SourcesV2024ApiUpdateSourceSchemaRequest {
118317
118229
  */
118318
118230
  export class SourcesV2024Api extends BaseAPI {
118319
118231
  /**
118320
- * 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.
118232
+ * 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.
118321
118233
  * @summary Create provisioning policy
118322
118234
  * @param {SourcesV2024ApiCreateProvisioningPolicyRequest} requestParameters Request parameters.
118323
118235
  * @param {*} [axiosOptions] Override http request option.
@@ -118749,7 +118661,7 @@ export class SourcesV2024Api extends BaseAPI {
118749
118661
  }
118750
118662
 
118751
118663
  /**
118752
- * 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.
118664
+ * 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.
118753
118665
  * @summary Update provisioning policy by usagetype
118754
118666
  * @param {SourcesV2024ApiPutProvisioningPolicyRequest} requestParameters Request parameters.
118755
118667
  * @param {*} [axiosOptions] Override http request option.
@@ -118869,7 +118781,7 @@ export class SourcesV2024Api extends BaseAPI {
118869
118781
  }
118870
118782
 
118871
118783
  /**
118872
- * 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.
118784
+ * 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.
118873
118785
  * @summary Partial update of provisioning policy
118874
118786
  * @param {SourcesV2024ApiUpdateProvisioningPolicyRequest} requestParameters Request parameters.
118875
118787
  * @param {*} [axiosOptions] Override http request option.
@@ -119974,7 +119886,7 @@ export const TaggedObjectsV2024ApiAxiosParamCreator = function (configuration?:
119974
119886
  };
119975
119887
  },
119976
119888
  /**
119977
- * This API returns a list of all tagged objects. Any authenticated token may be used to call this API.
119889
+ * This API returns a list of all tagged objects.
119978
119890
  * @summary List tagged objects
119979
119891
  * @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.
119980
119892
  * @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.
@@ -120032,7 +119944,7 @@ export const TaggedObjectsV2024ApiAxiosParamCreator = function (configuration?:
120032
119944
  };
120033
119945
  },
120034
119946
  /**
120035
- * This API returns a list of all tagged objects by type. Any authenticated token may be used to call this API.
119947
+ * This API returns a list of all tagged objects by type.
120036
119948
  * @summary List tagged objects by type
120037
119949
  * @param {ListTaggedObjectsByTypeTypeV2024} type The type of tagged object to retrieve.
120038
119950
  * @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.
@@ -120146,7 +120058,7 @@ export const TaggedObjectsV2024ApiAxiosParamCreator = function (configuration?:
120146
120058
  };
120147
120059
  },
120148
120060
  /**
120149
- * This adds a tag to an object. Any authenticated token may be used to call this API.
120061
+ * This adds a tag to an object.
120150
120062
  * @summary Add tag to object
120151
120063
  * @param {TaggedObjectV2024} taggedObjectV2024
120152
120064
  * @param {*} [axiosOptions] Override http request option.
@@ -120289,7 +120201,7 @@ export const TaggedObjectsV2024ApiFp = function(configuration?: Configuration) {
120289
120201
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
120290
120202
  },
120291
120203
  /**
120292
- * This API returns a list of all tagged objects. Any authenticated token may be used to call this API.
120204
+ * This API returns a list of all tagged objects.
120293
120205
  * @summary List tagged objects
120294
120206
  * @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.
120295
120207
  * @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.
@@ -120305,7 +120217,7 @@ export const TaggedObjectsV2024ApiFp = function(configuration?: Configuration) {
120305
120217
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
120306
120218
  },
120307
120219
  /**
120308
- * This API returns a list of all tagged objects by type. Any authenticated token may be used to call this API.
120220
+ * This API returns a list of all tagged objects by type.
120309
120221
  * @summary List tagged objects by type
120310
120222
  * @param {ListTaggedObjectsByTypeTypeV2024} type The type of tagged object to retrieve.
120311
120223
  * @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.
@@ -120337,7 +120249,7 @@ export const TaggedObjectsV2024ApiFp = function(configuration?: Configuration) {
120337
120249
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
120338
120250
  },
120339
120251
  /**
120340
- * This adds a tag to an object. Any authenticated token may be used to call this API.
120252
+ * This adds a tag to an object.
120341
120253
  * @summary Add tag to object
120342
120254
  * @param {TaggedObjectV2024} taggedObjectV2024
120343
120255
  * @param {*} [axiosOptions] Override http request option.
@@ -120403,7 +120315,7 @@ export const TaggedObjectsV2024ApiFactory = function (configuration?: Configurat
120403
120315
  return localVarFp.getTaggedObject(requestParameters.type, requestParameters.id, axiosOptions).then((request) => request(axios, basePath));
120404
120316
  },
120405
120317
  /**
120406
- * This API returns a list of all tagged objects. Any authenticated token may be used to call this API.
120318
+ * This API returns a list of all tagged objects.
120407
120319
  * @summary List tagged objects
120408
120320
  * @param {TaggedObjectsV2024ApiListTaggedObjectsRequest} requestParameters Request parameters.
120409
120321
  * @param {*} [axiosOptions] Override http request option.
@@ -120413,7 +120325,7 @@ export const TaggedObjectsV2024ApiFactory = function (configuration?: Configurat
120413
120325
  return localVarFp.listTaggedObjects(requestParameters.limit, requestParameters.offset, requestParameters.count, requestParameters.filters, axiosOptions).then((request) => request(axios, basePath));
120414
120326
  },
120415
120327
  /**
120416
- * This API returns a list of all tagged objects by type. Any authenticated token may be used to call this API.
120328
+ * This API returns a list of all tagged objects by type.
120417
120329
  * @summary List tagged objects by type
120418
120330
  * @param {TaggedObjectsV2024ApiListTaggedObjectsByTypeRequest} requestParameters Request parameters.
120419
120331
  * @param {*} [axiosOptions] Override http request option.
@@ -120433,7 +120345,7 @@ export const TaggedObjectsV2024ApiFactory = function (configuration?: Configurat
120433
120345
  return localVarFp.putTaggedObject(requestParameters.type, requestParameters.id, requestParameters.taggedObjectV2024, axiosOptions).then((request) => request(axios, basePath));
120434
120346
  },
120435
120347
  /**
120436
- * This adds a tag to an object. Any authenticated token may be used to call this API.
120348
+ * This adds a tag to an object.
120437
120349
  * @summary Add tag to object
120438
120350
  * @param {TaggedObjectsV2024ApiSetTagToObjectRequest} requestParameters Request parameters.
120439
120351
  * @param {*} [axiosOptions] Override http request option.
@@ -120688,7 +120600,7 @@ export class TaggedObjectsV2024Api extends BaseAPI {
120688
120600
  }
120689
120601
 
120690
120602
  /**
120691
- * This API returns a list of all tagged objects. Any authenticated token may be used to call this API.
120603
+ * This API returns a list of all tagged objects.
120692
120604
  * @summary List tagged objects
120693
120605
  * @param {TaggedObjectsV2024ApiListTaggedObjectsRequest} requestParameters Request parameters.
120694
120606
  * @param {*} [axiosOptions] Override http request option.
@@ -120700,7 +120612,7 @@ export class TaggedObjectsV2024Api extends BaseAPI {
120700
120612
  }
120701
120613
 
120702
120614
  /**
120703
- * This API returns a list of all tagged objects by type. Any authenticated token may be used to call this API.
120615
+ * This API returns a list of all tagged objects by type.
120704
120616
  * @summary List tagged objects by type
120705
120617
  * @param {TaggedObjectsV2024ApiListTaggedObjectsByTypeRequest} requestParameters Request parameters.
120706
120618
  * @param {*} [axiosOptions] Override http request option.
@@ -120724,7 +120636,7 @@ export class TaggedObjectsV2024Api extends BaseAPI {
120724
120636
  }
120725
120637
 
120726
120638
  /**
120727
- * This adds a tag to an object. Any authenticated token may be used to call this API.
120639
+ * This adds a tag to an object.
120728
120640
  * @summary Add tag to object
120729
120641
  * @param {TaggedObjectsV2024ApiSetTagToObjectRequest} requestParameters Request parameters.
120730
120642
  * @param {*} [axiosOptions] Override http request option.
@@ -124367,301 +124279,6 @@ export class UIMetadataV2024Api extends BaseAPI {
124367
124279
 
124368
124280
 
124369
124281
 
124370
- /**
124371
- * VendorConnectorMappingsV2024Api - axios parameter creator
124372
- * @export
124373
- */
124374
- export const VendorConnectorMappingsV2024ApiAxiosParamCreator = function (configuration?: Configuration) {
124375
- return {
124376
- /**
124377
- * Create a new mapping between a SaaS vendor and an ISC connector to establish correlation paths.
124378
- * @summary Create vendor connector mapping
124379
- * @param {VendorConnectorMappingV2024} vendorConnectorMappingV2024
124380
- * @param {*} [axiosOptions] Override http request option.
124381
- * @throws {RequiredError}
124382
- */
124383
- createVendorConnectorMapping: async (vendorConnectorMappingV2024: VendorConnectorMappingV2024, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
124384
- // verify required parameter 'vendorConnectorMappingV2024' is not null or undefined
124385
- assertParamExists('createVendorConnectorMapping', 'vendorConnectorMappingV2024', vendorConnectorMappingV2024)
124386
- const localVarPath = `/vendor-connector-mappings`;
124387
- // use dummy base URL string because the URL constructor only accepts absolute URLs.
124388
- const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
124389
- let baseOptions;
124390
- if (configuration) {
124391
- baseOptions = configuration.baseOptions;
124392
- }
124393
-
124394
- const localVarRequestOptions = { method: 'POST', ...baseOptions, ...axiosOptions};
124395
- const localVarHeaderParameter = {} as any;
124396
- const localVarQueryParameter = {} as any;
124397
-
124398
- // authentication userAuth required
124399
- // oauth required
124400
- await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
124401
-
124402
- // authentication userAuth required
124403
- // oauth required
124404
- await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
124405
-
124406
-
124407
-
124408
- localVarHeaderParameter['Content-Type'] = 'application/json';
124409
-
124410
- setSearchParams(localVarUrlObj, localVarQueryParameter);
124411
- let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
124412
- localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
124413
- localVarRequestOptions.data = serializeDataIfNeeded(vendorConnectorMappingV2024, localVarRequestOptions, configuration)
124414
-
124415
- return {
124416
- url: toPathString(localVarUrlObj),
124417
- axiosOptions: localVarRequestOptions,
124418
- };
124419
- },
124420
- /**
124421
- * Soft delete a mapping between a SaaS vendor and an ISC connector, removing the established correlation.
124422
- * @summary Delete vendor connector mapping
124423
- * @param {VendorConnectorMappingV2024} vendorConnectorMappingV2024
124424
- * @param {*} [axiosOptions] Override http request option.
124425
- * @throws {RequiredError}
124426
- */
124427
- deleteVendorConnectorMapping: async (vendorConnectorMappingV2024: VendorConnectorMappingV2024, axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
124428
- // verify required parameter 'vendorConnectorMappingV2024' is not null or undefined
124429
- assertParamExists('deleteVendorConnectorMapping', 'vendorConnectorMappingV2024', vendorConnectorMappingV2024)
124430
- const localVarPath = `/vendor-connector-mappings`;
124431
- // use dummy base URL string because the URL constructor only accepts absolute URLs.
124432
- const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
124433
- let baseOptions;
124434
- if (configuration) {
124435
- baseOptions = configuration.baseOptions;
124436
- }
124437
-
124438
- const localVarRequestOptions = { method: 'DELETE', ...baseOptions, ...axiosOptions};
124439
- const localVarHeaderParameter = {} as any;
124440
- const localVarQueryParameter = {} as any;
124441
-
124442
- // authentication userAuth required
124443
- // oauth required
124444
- await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
124445
-
124446
- // authentication userAuth required
124447
- // oauth required
124448
- await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
124449
-
124450
-
124451
-
124452
- localVarHeaderParameter['Content-Type'] = 'application/json';
124453
-
124454
- setSearchParams(localVarUrlObj, localVarQueryParameter);
124455
- let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
124456
- localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
124457
- localVarRequestOptions.data = serializeDataIfNeeded(vendorConnectorMappingV2024, localVarRequestOptions, configuration)
124458
-
124459
- return {
124460
- url: toPathString(localVarUrlObj),
124461
- axiosOptions: localVarRequestOptions,
124462
- };
124463
- },
124464
- /**
124465
- * Get a list of mappings between SaaS vendors and ISC connectors, detailing the connections established for correlation.
124466
- * @summary List vendor connector mappings
124467
- * @param {*} [axiosOptions] Override http request option.
124468
- * @throws {RequiredError}
124469
- */
124470
- getVendorConnectorMappings: async (axiosOptions: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
124471
- const localVarPath = `/vendor-connector-mappings`;
124472
- // use dummy base URL string because the URL constructor only accepts absolute URLs.
124473
- const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
124474
- let baseOptions;
124475
- if (configuration) {
124476
- baseOptions = configuration.baseOptions;
124477
- }
124478
-
124479
- const localVarRequestOptions = { method: 'GET', ...baseOptions, ...axiosOptions};
124480
- const localVarHeaderParameter = {} as any;
124481
- const localVarQueryParameter = {} as any;
124482
-
124483
- // authentication userAuth required
124484
- // oauth required
124485
- await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
124486
-
124487
- // authentication userAuth required
124488
- // oauth required
124489
- await setOAuthToObject(localVarHeaderParameter, "userAuth", [], configuration)
124490
-
124491
-
124492
-
124493
- setSearchParams(localVarUrlObj, localVarQueryParameter);
124494
- let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
124495
- localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...axiosOptions.headers};
124496
-
124497
- return {
124498
- url: toPathString(localVarUrlObj),
124499
- axiosOptions: localVarRequestOptions,
124500
- };
124501
- },
124502
- }
124503
- };
124504
-
124505
- /**
124506
- * VendorConnectorMappingsV2024Api - functional programming interface
124507
- * @export
124508
- */
124509
- export const VendorConnectorMappingsV2024ApiFp = function(configuration?: Configuration) {
124510
- const localVarAxiosParamCreator = VendorConnectorMappingsV2024ApiAxiosParamCreator(configuration)
124511
- return {
124512
- /**
124513
- * Create a new mapping between a SaaS vendor and an ISC connector to establish correlation paths.
124514
- * @summary Create vendor connector mapping
124515
- * @param {VendorConnectorMappingV2024} vendorConnectorMappingV2024
124516
- * @param {*} [axiosOptions] Override http request option.
124517
- * @throws {RequiredError}
124518
- */
124519
- async createVendorConnectorMapping(vendorConnectorMappingV2024: VendorConnectorMappingV2024, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<VendorConnectorMappingV2024>> {
124520
- const localVarAxiosArgs = await localVarAxiosParamCreator.createVendorConnectorMapping(vendorConnectorMappingV2024, axiosOptions);
124521
- const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
124522
- const localVarOperationServerBasePath = operationServerMap['VendorConnectorMappingsV2024Api.createVendorConnectorMapping']?.[localVarOperationServerIndex]?.url;
124523
- return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
124524
- },
124525
- /**
124526
- * Soft delete a mapping between a SaaS vendor and an ISC connector, removing the established correlation.
124527
- * @summary Delete vendor connector mapping
124528
- * @param {VendorConnectorMappingV2024} vendorConnectorMappingV2024
124529
- * @param {*} [axiosOptions] Override http request option.
124530
- * @throws {RequiredError}
124531
- */
124532
- async deleteVendorConnectorMapping(vendorConnectorMappingV2024: VendorConnectorMappingV2024, axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DeleteVendorConnectorMapping200ResponseV2024>> {
124533
- const localVarAxiosArgs = await localVarAxiosParamCreator.deleteVendorConnectorMapping(vendorConnectorMappingV2024, axiosOptions);
124534
- const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
124535
- const localVarOperationServerBasePath = operationServerMap['VendorConnectorMappingsV2024Api.deleteVendorConnectorMapping']?.[localVarOperationServerIndex]?.url;
124536
- return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
124537
- },
124538
- /**
124539
- * Get a list of mappings between SaaS vendors and ISC connectors, detailing the connections established for correlation.
124540
- * @summary List vendor connector mappings
124541
- * @param {*} [axiosOptions] Override http request option.
124542
- * @throws {RequiredError}
124543
- */
124544
- async getVendorConnectorMappings(axiosOptions?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<VendorConnectorMappingV2024>>> {
124545
- const localVarAxiosArgs = await localVarAxiosParamCreator.getVendorConnectorMappings(axiosOptions);
124546
- const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
124547
- const localVarOperationServerBasePath = operationServerMap['VendorConnectorMappingsV2024Api.getVendorConnectorMappings']?.[localVarOperationServerIndex]?.url;
124548
- return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
124549
- },
124550
- }
124551
- };
124552
-
124553
- /**
124554
- * VendorConnectorMappingsV2024Api - factory interface
124555
- * @export
124556
- */
124557
- export const VendorConnectorMappingsV2024ApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {
124558
- const localVarFp = VendorConnectorMappingsV2024ApiFp(configuration)
124559
- return {
124560
- /**
124561
- * Create a new mapping between a SaaS vendor and an ISC connector to establish correlation paths.
124562
- * @summary Create vendor connector mapping
124563
- * @param {VendorConnectorMappingsV2024ApiCreateVendorConnectorMappingRequest} requestParameters Request parameters.
124564
- * @param {*} [axiosOptions] Override http request option.
124565
- * @throws {RequiredError}
124566
- */
124567
- createVendorConnectorMapping(requestParameters: VendorConnectorMappingsV2024ApiCreateVendorConnectorMappingRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<VendorConnectorMappingV2024> {
124568
- return localVarFp.createVendorConnectorMapping(requestParameters.vendorConnectorMappingV2024, axiosOptions).then((request) => request(axios, basePath));
124569
- },
124570
- /**
124571
- * Soft delete a mapping between a SaaS vendor and an ISC connector, removing the established correlation.
124572
- * @summary Delete vendor connector mapping
124573
- * @param {VendorConnectorMappingsV2024ApiDeleteVendorConnectorMappingRequest} requestParameters Request parameters.
124574
- * @param {*} [axiosOptions] Override http request option.
124575
- * @throws {RequiredError}
124576
- */
124577
- deleteVendorConnectorMapping(requestParameters: VendorConnectorMappingsV2024ApiDeleteVendorConnectorMappingRequest, axiosOptions?: RawAxiosRequestConfig): AxiosPromise<DeleteVendorConnectorMapping200ResponseV2024> {
124578
- return localVarFp.deleteVendorConnectorMapping(requestParameters.vendorConnectorMappingV2024, axiosOptions).then((request) => request(axios, basePath));
124579
- },
124580
- /**
124581
- * Get a list of mappings between SaaS vendors and ISC connectors, detailing the connections established for correlation.
124582
- * @summary List vendor connector mappings
124583
- * @param {*} [axiosOptions] Override http request option.
124584
- * @throws {RequiredError}
124585
- */
124586
- getVendorConnectorMappings(axiosOptions?: RawAxiosRequestConfig): AxiosPromise<Array<VendorConnectorMappingV2024>> {
124587
- return localVarFp.getVendorConnectorMappings(axiosOptions).then((request) => request(axios, basePath));
124588
- },
124589
- };
124590
- };
124591
-
124592
- /**
124593
- * Request parameters for createVendorConnectorMapping operation in VendorConnectorMappingsV2024Api.
124594
- * @export
124595
- * @interface VendorConnectorMappingsV2024ApiCreateVendorConnectorMappingRequest
124596
- */
124597
- export interface VendorConnectorMappingsV2024ApiCreateVendorConnectorMappingRequest {
124598
- /**
124599
- *
124600
- * @type {VendorConnectorMappingV2024}
124601
- * @memberof VendorConnectorMappingsV2024ApiCreateVendorConnectorMapping
124602
- */
124603
- readonly vendorConnectorMappingV2024: VendorConnectorMappingV2024
124604
- }
124605
-
124606
- /**
124607
- * Request parameters for deleteVendorConnectorMapping operation in VendorConnectorMappingsV2024Api.
124608
- * @export
124609
- * @interface VendorConnectorMappingsV2024ApiDeleteVendorConnectorMappingRequest
124610
- */
124611
- export interface VendorConnectorMappingsV2024ApiDeleteVendorConnectorMappingRequest {
124612
- /**
124613
- *
124614
- * @type {VendorConnectorMappingV2024}
124615
- * @memberof VendorConnectorMappingsV2024ApiDeleteVendorConnectorMapping
124616
- */
124617
- readonly vendorConnectorMappingV2024: VendorConnectorMappingV2024
124618
- }
124619
-
124620
- /**
124621
- * VendorConnectorMappingsV2024Api - object-oriented interface
124622
- * @export
124623
- * @class VendorConnectorMappingsV2024Api
124624
- * @extends {BaseAPI}
124625
- */
124626
- export class VendorConnectorMappingsV2024Api extends BaseAPI {
124627
- /**
124628
- * Create a new mapping between a SaaS vendor and an ISC connector to establish correlation paths.
124629
- * @summary Create vendor connector mapping
124630
- * @param {VendorConnectorMappingsV2024ApiCreateVendorConnectorMappingRequest} requestParameters Request parameters.
124631
- * @param {*} [axiosOptions] Override http request option.
124632
- * @throws {RequiredError}
124633
- * @memberof VendorConnectorMappingsV2024Api
124634
- */
124635
- public createVendorConnectorMapping(requestParameters: VendorConnectorMappingsV2024ApiCreateVendorConnectorMappingRequest, axiosOptions?: RawAxiosRequestConfig) {
124636
- return VendorConnectorMappingsV2024ApiFp(this.configuration).createVendorConnectorMapping(requestParameters.vendorConnectorMappingV2024, axiosOptions).then((request) => request(this.axios, this.basePath));
124637
- }
124638
-
124639
- /**
124640
- * Soft delete a mapping between a SaaS vendor and an ISC connector, removing the established correlation.
124641
- * @summary Delete vendor connector mapping
124642
- * @param {VendorConnectorMappingsV2024ApiDeleteVendorConnectorMappingRequest} requestParameters Request parameters.
124643
- * @param {*} [axiosOptions] Override http request option.
124644
- * @throws {RequiredError}
124645
- * @memberof VendorConnectorMappingsV2024Api
124646
- */
124647
- public deleteVendorConnectorMapping(requestParameters: VendorConnectorMappingsV2024ApiDeleteVendorConnectorMappingRequest, axiosOptions?: RawAxiosRequestConfig) {
124648
- return VendorConnectorMappingsV2024ApiFp(this.configuration).deleteVendorConnectorMapping(requestParameters.vendorConnectorMappingV2024, axiosOptions).then((request) => request(this.axios, this.basePath));
124649
- }
124650
-
124651
- /**
124652
- * Get a list of mappings between SaaS vendors and ISC connectors, detailing the connections established for correlation.
124653
- * @summary List vendor connector mappings
124654
- * @param {*} [axiosOptions] Override http request option.
124655
- * @throws {RequiredError}
124656
- * @memberof VendorConnectorMappingsV2024Api
124657
- */
124658
- public getVendorConnectorMappings(axiosOptions?: RawAxiosRequestConfig) {
124659
- return VendorConnectorMappingsV2024ApiFp(this.configuration).getVendorConnectorMappings(axiosOptions).then((request) => request(this.axios, this.basePath));
124660
- }
124661
- }
124662
-
124663
-
124664
-
124665
124282
  /**
124666
124283
  * WorkItemsV2024Api - axios parameter creator
124667
124284
  * @export
@@ -127862,7 +127479,7 @@ export const WorkflowsV2024ApiAxiosParamCreator = function (configuration?: Conf
127862
127479
  };
127863
127480
  },
127864
127481
  /**
127865
- * :::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.**
127482
+ * :::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.**
127866
127483
  * @summary Test workflow by id
127867
127484
  * @param {string} id Id of the workflow
127868
127485
  * @param {TestWorkflowRequestV2024} testWorkflowRequestV2024
@@ -128151,7 +127768,7 @@ export const WorkflowsV2024ApiFp = function(configuration?: Configuration) {
128151
127768
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
128152
127769
  },
128153
127770
  /**
128154
- * :::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.**
127771
+ * :::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.**
128155
127772
  * @summary Test workflow by id
128156
127773
  * @param {string} id Id of the workflow
128157
127774
  * @param {TestWorkflowRequestV2024} testWorkflowRequestV2024
@@ -128343,7 +127960,7 @@ export const WorkflowsV2024ApiFactory = function (configuration?: Configuration,
128343
127960
  return localVarFp.testExternalExecuteWorkflow(requestParameters.id, requestParameters.testExternalExecuteWorkflowRequestV2024, axiosOptions).then((request) => request(axios, basePath));
128344
127961
  },
128345
127962
  /**
128346
- * :::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.**
127963
+ * :::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.**
128347
127964
  * @summary Test workflow by id
128348
127965
  * @param {WorkflowsV2024ApiTestWorkflowRequest} requestParameters Request parameters.
128349
127966
  * @param {*} [axiosOptions] Override http request option.
@@ -128880,7 +128497,7 @@ export class WorkflowsV2024Api extends BaseAPI {
128880
128497
  }
128881
128498
 
128882
128499
  /**
128883
- * :::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.**
128500
+ * :::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.**
128884
128501
  * @summary Test workflow by id
128885
128502
  * @param {WorkflowsV2024ApiTestWorkflowRequest} requestParameters Request parameters.
128886
128503
  * @param {*} [axiosOptions] Override http request option.